diff --git a/.gitattributes b/.gitattributes index 28df5f900b358436f0267334b3e3e9af33f917ba..9a65a6dac8b86789e6e35630d80c410ce4adfff3 100644 --- a/.gitattributes +++ b/.gitattributes @@ -53,3 +53,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text *.jpg filter=lfs diff=lfs merge=lfs -text *.jpeg filter=lfs diff=lfs merge=lfs -text *.webp filter=lfs diff=lfs merge=lfs -text +evaluation/mc_data/mc_questions_file.csv filter=lfs diff=lfs merge=lfs -text diff --git a/README.md b/README.md index 340a31bb5f9b74dc06138cb27c713a0410017851..9ed35c6e0c25122047f429c811520b8ece5e7ce0 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,137 @@ ---- -license: cc-by-sa-4.0 ---- +# BLEnD + +This is the official repository of **BLEnD: A Benchmark for LLMs on Everyday Knowledge in Diverse Cultures and Languages** (Submitted to NeurIPS 2024 Datasets and Benchmarks Track). + +## About +![BLEnD Construction & LLM Evaluation Framework](main_figure.png) + +Large language models (LLMs) often lack culture-specific everyday knowledge, especially across diverse regions and non-English languages. Existing benchmarks for evaluating LLMs' cultural sensitivities are usually limited to a single language or online sources like Wikipedia, which may not reflect the daily habits, customs, and lifestyles of different regions. That is, information about the food people eat for their birthday celebrations, spices they typically use, musical instruments youngsters play, or the sports they practice in school is not always explicitly written online. +To address this issue, we introduce **BLEnD**, a hand-crafted benchmark designed to evaluate LLMs' everyday knowledge across diverse cultures and languages. +The benchmark comprises 52.6k question-answer pairs from 16 countries/regions, in 13 different languages, including low-resource ones such as Amharic, Assamese, Azerbaijani, Hausa, and Sundanese. +We evaluate LLMs in two formats: short-answer questions, and multiple-choice questions. +We show that LLMs perform better in cultures that are more present online, with a maximum 57.34% difference in GPT-4, the best-performing model, in the short-answer format. +Furthermore, we find that LLMs perform better in their local languages for mid-to-high-resource languages. Interestingly, for languages deemed to be low-resource, LLMs provide better answers in English. + +## Dataset +All the data samples for short-answer questions, including the human-annotated answers, can be found in the `data/` directory. +Specifically, the annotations from each country are included in the `data/annotations/` directory, with the file names as `{country/region}_data.json`. Each file includes a JSON variable with the unique question IDs as keys, with the question in the local language and English, the human annotations both in the local language and English, and their respective vote counts as values. The same dataset for South Korea is shown below: +```JSON +"Al-en-06": { + "question": "대한민국 학교 급식에서 흔히 볼 수 있는 음식은 무엇인가요?", + "en_question": "What is a common school cafeteria food in your country?", + "annotations": [ + { + "answers": [ + "김치" + ], + "en_answers": [ + "kimchi" + ], + "count": 4 + }, + { + "answers": [ + "밥", + "쌀밥", + "쌀" + ], + "en_answers": [ + "rice" + ], + "count": 3 + }, + ... + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } +}, +``` +We also include the prompts that we used for LLM evaluation in both local languages and English in the data/prompts/ directory. Each file is named `{country/region}_prompts.csv`. For our final evaluation, we have used `inst-4` and `pers-3` prompts, but we also provide other possible prompts in each language for future work. + +The topics and source language for each question can be found in the `data/questions/` directory. Each file is named `{country/region}_questions.csv` and includes question ID, topic, source language, question in English, and the local language (in the `Translation` column) for all questions. + +## Evaluation Codes +### Requirements +We recommend using Python version $\ge$ 3.10. +``` +pip install -r requirements.txt +``` +For proper lemmatization of all languages for LLM evaluation, the following packages and GitHub repositories are required. Copy & paste and run the following lines. +```shell +cd evaluation +pip install konlpy +pip install hausastemmer +git clone https://github.com/aznlp-disc/stemmer.git, +cp stemmer/word.txt ./evaluation +cp stemmer/suffix.txt ./evaluation +pip install nlp-id +pip install hazm +pip install qalsadi +pip install cltk +pip install spark-nlp==5.3.3 pyspark==3.3.1 +pip install jieba +git clone https://github.com/anoopkunchukuttan/indic_nlp_library.git +git clone https://github.com/anoopkunchukuttan/indic_nlp_resources.git +``` + +### Code Execution Details +The code for retrieving answers from LLMs for the short-answer questions is provided at `model_inference.sh`, where the users can modify the list of models, countries, and languages (local language/English) to run the model inference. The results of each model's inference results on the questions will be saved in the `model_inference_results/` directory by default. + +```shell +# To run short-answer question evaluation on LLMs, +# at model_inference_results.sh, change the following by putting in your own API keys and settings: + +export CUDA_VISIBLE_DEVICES="" + +export HF_TOKEN="" +export COHERE_API_KEY="" +export OPENAI_API_KEY="" +export OPENAI_ORG_ID="" +export AZURE_OPENAI_API_KEY="" +export AZURE_OPENAI_API_VER="" +export AZURE_OPENAI_API_ENDPT="" +export CLAUDE_API_KEY="" +export GOOGLE_API_KEY="" +export GOOGLE_APPLICATION_CREDENTIALS="" +export GOOGLE_PROJECT_NAME="" + +# Then, run the code below: +$ bash model_inference_results.sh +``` + +The current set of multiple choice questions and their answers can be found at `evaluation/mc_data/mc_questions_file.csv`. Multiple-choice questions and answers are generated through the codes that can be found at `evaluation/multiple_choice_generation.sh`. +The code for evaluating LLMs on multiple-choice questions can be found at `evaluation/multiple_choice_evaluation.sh`, where the users can modify the list of models to evaluate on. +```shell +$ cd evaluation + +# To run multiple-choice question evaluation on LLMs, +# at multiple_choice_evaluation.sh, change the following: + +export CUDA_VISIBLE_DEVICES="" + +export HF_TOKEN="" +export COHERE_API_KEY="" +export OPENAI_API_KEY="" +export OPENAI_ORG_ID="" +export AZURE_OPENAI_API_KEY="" +export AZURE_OPENAI_API_VER="" +export AZURE_OPENAI_API_ENDPT="" +export CLAUDE_API_KEY="" +export GOOGLE_API_KEY="" +export GOOGLE_APPLICATION_CREDENTIALS="" +export GOOGLE_PROJECT_NAME="" + +# Then, run the code below: +$ bash multiple_choice_evaluation.sh +``` + +To calculate the scores for both short-answer questions and multiple-choice questions, the users can run `evaluation/evaluate.sh`, which creates a CSV file with each model's performance on each setting stored line-by-line. +```shell +$ cd evaluation +$ bash evaluate.sh +``` + +The users will need to input their own API keys within these files for the required models. diff --git a/data/annotations/Algeria_data.json b/data/annotations/Algeria_data.json new file mode 100644 index 0000000000000000000000000000000000000000..a5e8a61c239fd9e3c3a9f28f0145eaaa3c547443 --- /dev/null +++ b/data/annotations/Algeria_data.json @@ -0,0 +1,18546 @@ +{ + "Al-en-01": { + "question": "ماذا يأكل الأطفال كوجبة خفيفة قبل المدرسة في الجزائر؟", + "en_question": "What is a common snack for preschool kids in your country?", + "annotations": [ + { + "answers": [ + "شطائر الخبز بالمربى", + "شطائر الخبز بالمعجون", + "خبز بالمربى والزبدة" + ], + "en_answers": [ + "bread sandwiches with jam", + "sandwich with jam", + "bread with jam and butter" + ], + "count": 2 + }, + { + "answers": [ + "هلالية", + "كرواسان" + ], + "en_answers": [ + "crescent-like or related to a crescent", + "crescent" + ], + "count": 1 + }, + { + "answers": [ + "حليب", + "الحليب" + ], + "en_answers": [ + "milk" + ], + "count": 1 + }, + { + "answers": [ + "اللمجة", + "لمجة" + ], + "en_answers": [ + "snack" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-02": { + "question": "ما هو الطعام الشعبي الذي يتناول مع البيرة في الجزائر؟", + "en_question": "What is a popular food to go with beer in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-04": { + "question": "ما هي الفاكهة الأكثر شعبية في الجزائر؟", + "en_question": "What is the most popular fruit in your country?", + "annotations": [ + { + "answers": [ + "البرتقال" + ], + "en_answers": [ + "orange" + ], + "count": 5 + }, + { + "answers": [ + "التمر" + ], + "en_answers": [ + "dates" + ], + "count": 2 + }, + { + "answers": [ + "الموز" + ], + "en_answers": [ + "bananas" + ], + "count": 1 + }, + { + "answers": [ + "البطيخ" + ], + "en_answers": [ + "watermelon" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-06": { + "question": "ما هو طعام كافتيريا المدرسة الشائع في الجزائر؟", + "en_question": "What is a common school cafeteria food in your country?", + "annotations": [ + { + "answers": [ + "العدس" + ], + "en_answers": [ + "lentils", + "lentil" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-08": { + "question": "ما هي الوجبات الخفيفة التي يتناولها الناس في مراكز التسوق في الجزائر؟", + "en_question": "What are the most commonly eaten snacks at shopping malls in your country?", + "annotations": [ + { + "answers": [ + "البيتزا", + "بيتزا" + ], + "en_answers": [ + "pizza" + ], + "count": 3 + }, + { + "answers": [ + "همبرقر", + "برغر" + ], + "en_answers": [ + "hamburger", + "burger" + ], + "count": 2 + }, + { + "answers": [ + "شوارمة" + ], + "en_answers": [ + "shawarma" + ], + "count": 1 + }, + { + "answers": [ + "الآيس كريم" + ], + "en_answers": [ + "ice cream" + ], + "count": 1 + }, + { + "answers": [ + "سندويتش" + ], + "en_answers": [ + "sandwich" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-09": { + "question": "ما هي الوجبة الخفيفة الشعبية في مدينة الملاهي في الجزائر؟", + "en_question": "What is a popular snack at an amusement park in your country?", + "annotations": [ + { + "answers": [ + "غزل البنات", + "لحية بابا" + ], + "en_answers": [ + "cotton candy" + ], + "count": 2 + }, + { + "answers": [ + "الآيس كريم" + ], + "en_answers": [ + "ice cream" + ], + "count": 1 + }, + { + "answers": [ + "الكعك المقلي" + ], + "en_answers": [ + "donuts" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-16": { + "question": "في أي سن يبدأ الأطفال الذهاب للروضة في الجزائر؟ (استعمل الأرقام العربية فقط (مثلاً، 12.)", + "en_question": "At what age do kids start preschool in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 3 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 2 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-17": { + "question": "ما هو النشاط الرياضي المفضل بعد المدرسة لتلاميذ الابتدائي في الجزائر؟", + "en_question": "What is a popular afterschool sport for elementary schools in your country?", + "annotations": [ + { + "answers": [ + "كرة القدم" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "الركض" + ], + "en_answers": [ + "running" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-18": { + "question": "ما هي المادة التي يتلقى فيها أكثر تلاميذ الابتدائي دروسا خصوصية؟ ", + "en_question": "For which subject do elementary students get private education in your country?", + "annotations": [ + { + "answers": [ + "الرياضيات" + ], + "en_answers": [ + "mathematics", + "math" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-19": { + "question": "ما هي اللغة الثانية الشائعة لطلاب الثانوية في الجزائر؟", + "en_question": "What is a popular second language for high school students in your country?", + "annotations": [ + { + "answers": [ + "الفرنسية" + ], + "en_answers": [ + "french" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-21": { + "question": "أي مادة هي الأهم لتعليم الموهوبين في الجزائر؟", + "en_question": "Which subject is the most important for gifted education in your country?", + "annotations": [ + { + "answers": [ + "الرياضيات" + ], + "en_answers": [ + "mathematics", + "math" + ], + "count": 2 + }, + { + "answers": [ + "الموسيقى" + ], + "en_answers": [ + "music" + ], + "count": 1 + }, + { + "answers": [ + "الرسم" + ], + "en_answers": [ + "painting", + "drawing" + ], + "count": 1 + }, + { + "answers": [ + "الموسيقى", + "الومسيقى" + ], + "en_answers": [ + "music" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-32": { + "question": "ما هو الطبق الرئيسي لعيد الشكر في الجزائر؟", + "en_question": "What is the main dish for Thanksgiving in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-33": { + "question": "ماذا يفعل الناس للاحتفال بعيد الهالوين في الجزائر؟", + "en_question": "What do people do to celebrate Halloween in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-34": { + "question": "ماذا يفعل الناس للاحتفال برأس السنة الجديدة في الجزائر؟", + "en_question": "What do people do to celebrate New Year's Day in your country?", + "annotations": [ + { + "answers": [ + "يأكلون الحلوى", + "يأكلون الحلوة" + ], + "en_answers": [ + "eating sweets", + "eat sweets" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 1 + } + }, + "Al-en-35": { + "question": "ماذا يفعل الناس للاحتفال بعيد الميلاد في الجزائر؟", + "en_question": "What do people do to celebrate Christmas in your country?", + "annotations": [], + "idks": { + "not-applicable": 3, + "idk": 1, + "no-answer": 0 + } + }, + "Al-en-36": { + "question": "أي نوع من الطعام يرتبط بعيد الهالوين في الجزائر؟", + "en_question": "What food is associated with Halloween in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-37": { + "question": "ما هي الأطعمة المرتبطة بعيد الميلاد في الجزائر؟", + "en_question": "What food is associated with Christmas in your country?", + "annotations": [], + "idks": { + "not-applicable": 3, + "idk": 1, + "no-answer": 0 + } + }, + "Al-en-38": { + "question": "ما هو الطعام المرتبط بعيد الحب في الجزائر؟", + "en_question": "What food is associated with Valentine's day in your country?", + "annotations": [ + { + "answers": [ + "الشكلاطة", + "الشكولاطة" + ], + "en_answers": [ + "chocolate" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 3, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-39": { + "question": "ماذا يأكل الناس في أعياد ميلادهم في الجزائر؟", + "en_question": "What do people eat on their birthday in your country?", + "annotations": [ + { + "answers": [ + "الكعك", + "كعكة الميلاد", + "الحلوى", + "تورتة" + ], + "en_answers": [ + "cake", + "birthday cake", + "tart" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-40": { + "question": "ما هو مكان أشهر مكان لخروج العائلات مع الأطفال الصغار في الجزائر؟", + "en_question": "What is a popular outdoor place for families to have fun with little kids in your country?", + "annotations": [ + { + "answers": [ + "متنزه الصابلات", + "متنزه السابلات", + "صابلات" + ], + "en_answers": [ + "sablettes park" + ], + "count": 2 + }, + { + "answers": [ + "حديقة التجارب", + "الحديقة العمومية" + ], + "en_answers": [ + "botanical garden hamma", + "public garden", + "garden" + ], + "count": 2 + }, + { + "answers": [ + "المنتزه" + ], + "en_answers": [ + "park" + ], + "count": 1 + }, + { + "answers": [ + "البحر" + ], + "en_answers": [ + "sea" + ], + "count": 1 + }, + { + "answers": [ + "مراكز التسوق" + ], + "en_answers": [ + "shopping center" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-43": { + "question": "ما هي الأنشطة العائلية المنزلية في الجزائر؟", + "en_question": "What is a popular indoor activity for families in your country?", + "annotations": [ + { + "answers": [ + "مشاهدة التلفاز" + ], + "en_answers": [ + "watching tv", + "watch tv" + ], + "count": 3 + }, + { + "answers": [ + "الغميضة" + ], + "en_answers": [ + "hide and seek" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-02": { + "question": "أين يتناول طلبة الجامعة غداءهم في الجزائر؟", + "en_question": "Where do university students have lunch in your country?", + "annotations": [ + { + "answers": [ + "المطعم الجامعي", + "المطعم" + ], + "en_answers": [ + "university restaurant", + "restaurant" + ], + "count": 5 + }, + { + "answers": [ + "محلات الاكل الخفيف" + ], + "en_answers": [ + "snack shops" + ], + "count": 1 + }, + { + "answers": [ + "البيت" + ], + "en_answers": [ + "house", + "home" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-03": { + "question": "في أي شهر يتم عادة جدولة الامتحانات النهائية في المدارس الثانوية في الجزائر؟ (أجب برقم من 1 إلى 12)", + "en_question": "Which month is the final exam term usually scheduled at high schools in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-08": { + "question": "كم من ساعة في اليوم يقضيها طلاب المدرسة الثانوية في الجزائر؟ (استعمل الأرقام العربية الصحيحة (0~24)، بدون أي نقاط عشرية.)", + "en_question": "How many hours a day do students in your country usually spend at high school? (Provide Arabic numerals in integers (0~24), without any decimal points.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 4 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-09": { + "question": "كم من لغة يدرس الطلاب في المدارس الثانوية في الجزائر؟ (أجب برقم, مثلا 5.)", + "en_question": "How many languages do students study at high school in your country? (Provide Arabic numerals (e.g., 5) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 4 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-34": { + "question": "ما هي أشهر رياضة جماعية يتم لعبها في المدارس في الجزائر؟", + "en_question": "What is the most popular sport played in a team at school in your country?", + "annotations": [ + { + "answers": [ + "كرة اليد" + ], + "en_answers": [ + "handball" + ], + "count": 2 + }, + { + "answers": [ + "كرة القدم" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "كرة السلة" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "كرة الطائرة" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-35": { + "question": "من هو أشهر معلق رياضي في الجزائر؟", + "en_question": "Who is the most popular sport commentator in your country?", + "annotations": [ + { + "answers": [ + "حفيظ دراجي", + "حفيض دراجي" + ], + "en_answers": [ + "hafid derradji" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-36": { + "question": "ما هو أشهر فريق رياضي في الجزائر؟", + "en_question": "What is the most popular sport team in your country?", + "annotations": [ + { + "answers": [ + "مولودية الجزائر", + "مولودية", + "المولودية" + ], + "en_answers": [ + "mc algiers", + "mc alger", + "mouloudia club d'alger", + "d'alger", + "mca", + "mouloudia" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-43": { + "question": "ما هي الأماكن أو الفضاءات الشائعة التي يتجمع فيها الأفراد في الجزائر لمشاهدة بث رياضي؟", + "en_question": "What are the common places or venues where individuals in your country usually gather to watch sports broadcasts?", + "annotations": [ + { + "answers": [ + "المقاهي", + "المقهى", + "مقاهي", + "مقهى" + ], + "en_answers": [ + "cafes", + "cafe" + ], + "count": 5 + }, + { + "answers": [ + "الساحات العمومية" + ], + "en_answers": [ + "public squares", + "square" + ], + "count": 1 + }, + { + "answers": [ + "مدرجات الملعب" + ], + "en_answers": [ + "stadium stands", + "stadium" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-05": { + "question": "كم وجبة في اليوم يتناولها الناس في الجزائر عادة؟(استعمل الأرقام العربية مثل 5)", + "en_question": "How many meals per day do people from your country usually have? (Provide Arabic numerals (e.g., 5) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 4 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-06": { + "question": "ما هي أهم وجبة في اليوم بالنسبة للشعب الجزائري؟", + "en_question": "Which is the most important meal of the day to people from your country?", + "annotations": [ + { + "answers": [ + "الغداء", + "الغذاء" + ], + "en_answers": [ + "lunch" + ], + "count": 3 + }, + { + "answers": [ + "العشاء" + ], + "en_answers": [ + "dinner" + ], + "count": 1 + }, + { + "answers": [ + "فطور الصباح" + ], + "en_answers": [ + "morning breakfast", + "breakfast" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-08": { + "question": "ما هو أكثر مكون شائع الاستخدام في النظام الغذائي الجزائري؟", + "en_question": "What is the most common ingredient used in your country's diet?", + "annotations": [ + { + "answers": [ + "القمح", + "قمح" + ], + "en_answers": [ + "wheat" + ], + "count": 4 + }, + { + "answers": [ + "البطاطس", + "البطاطا,بطاطا, بطاطس" + ], + "en_answers": [ + "potatoes", + "potato" + ], + "count": 1 + }, + { + "answers": [ + "الخبز", + "خبز" + ], + "en_answers": [ + "bread" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-09": { + "question": "ماذا يأكل الناس في الجزائر عادة للتحلية بعد الطعام؟", + "en_question": "What do people from your country usually eat for dessert?", + "annotations": [ + { + "answers": [ + "الفاكهة", + "الفواكه", + "فاكهة" + ], + "en_answers": [ + "fruit", + "fruits" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-11": { + "question": "أي يوم من أيام الأسبوع ينظم الناس عادة وجبة عائلية في الجزائر؟", + "en_question": "Which day of the week do people usually organize a family meal in your country?", + "annotations": [ + { + "answers": [ + "الجمعة" + ], + "en_answers": [ + "friday" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-14": { + "question": "ما هو المشروب الساخن الأكثر شعبية في الجزائر؟", + "en_question": "Which is the most popular hot drink in your country?", + "annotations": [ + { + "answers": [ + "القهوة" + ], + "en_answers": [ + "coffee" + ], + "count": 5 + }, + { + "answers": [ + "الشاي" + ], + "en_answers": [ + "tea" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-19": { + "question": "ماذا يشرب الشباب في الجزائر عادة في النادي الليلي؟", + "en_question": "What do young people from your country usually drink at the night club?", + "annotations": [], + "idks": { + "not-applicable": 3, + "idk": 2, + "no-answer": 0 + } + }, + "Ca-sp-21": { + "question": "في أي شهر يأخذ الناس عادة عطلاتهم في الجزائر؟(استعمل الأرقام العربية مثل 1~12).", + "en_question": "At which month do people usually take holidays in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 5 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-29": { + "question": "ما هي التقاليد المتبعة في الجزائر ليلة رأس السنة؟", + "en_question": "What tradition is there in your country for New Year's Eve?", + "annotations": [ + { + "answers": [ + "اكل الحلوى" + ], + "en_answers": [ + "eating sweets", + "sweets" + ], + "count": 1 + }, + { + "answers": [ + "تناول العشاء" + ], + "en_answers": [ + "having dinner", + "have dinner" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "no-answer": 1, + "idk": 0 + } + }, + "Ca-sp-38": { + "question": "ما هو النوع النموذجي لمنازل العائلات في الجزائر؟", + "en_question": "Which is the typical type of house for a family in your country?", + "annotations": [ + { + "answers": [ + "شقة", + "الشقق", + "الشقة" + ], + "en_answers": [ + "apartment", + "apartments" + ], + "count": 3 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-41": { + "question": "أين يعيش كبار السن العاجزين عادة في الجزائر؟", + "en_question": "Where do the dependent elderly usually live in your country?", + "annotations": [ + { + "answers": [ + "مع احد أبنائهم", + "بين أولادهم", + "مع أبنائهم", + "مع أولادهم" + ], + "en_answers": [ + "with one of their children", + "with children", + "with their children", + "among their children" + ], + "count": 2 + }, + { + "answers": [ + "في البيت", + "منزلهم", + "في المنزل" + ], + "en_answers": [ + "at home", + "house", + "home", + "their house" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-42": { + "question": "كم تستغرق مدة إجازة الأمومة في الجزائر بالأسابيع؟ (استعمل الأرقام العربية مثل 20.).", + "en_question": "How long (in weeks) is your country's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "14" + ], + "en_answers": [ + "14" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-43": { + "question": "كم تدوم (بالأسابيع) إجازة الأبوة في الجزائر للآباء؟ (استعمل الأرقام العربية مثل 20.)", + "en_question": "How long (in weeks) is your country's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 2, + "idk": 1, + "no-answer": 0 + } + }, + "Ca-sp-45": { + "question": "أي وجهة يتم اختيارها عادة لقضاء عطلة عائلية في الجزائر؟", + "en_question": "What type of destination is commonly chosen for a family vacation in your country?", + "annotations": [ + { + "answers": [ + "البحر", + "شاطئ البحر", + "بحر", + "الشاطئ" + ], + "en_answers": [ + "sea", + "beach" + ], + "count": 3 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-05": { + "question": "ما هي الرياضات التي يفضلها كبار السن في الجزائر؟", + "en_question": "What sports do seniors like the most in your country?", + "annotations": [ + { + "answers": [ + "الكرة الحديدية", + "الكر الحديدية" + ], + "en_answers": [ + "petanque", + "pétanque" + ], + "count": 2 + }, + { + "answers": [ + "كرة القدم" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "المشي" + ], + "en_answers": [ + "walking", + "walk" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-06": { + "question": "ما هي الرياضات التي يفضل الرجال ممارستها في الجزائر؟", + "en_question": "What sports do men like to play the most in your country?", + "annotations": [ + { + "answers": [ + "كرة القدم" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-07": { + "question": "من هو أشهر لاعب كرة سلة في الجزائر؟", + "en_question": "Who is the most famous basketball player in your country?", + "annotations": [], + "idks": { + "idk": 4, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Gu-ch-08": { + "question": "ما هو أشهر رياضة لدى الأطفال في الجزائر؟", + "en_question": "What is the most popular sports among children in your country?", + "annotations": [ + { + "answers": [ + "كرة القدم" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "القفز" + ], + "en_answers": [ + "jumping" + ], + "count": 1 + }, + { + "answers": [ + "الكاراتيه", + "الكراتيه" + ], + "en_answers": [ + "karate", + "karaté" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-09": { + "question": "ما هي الرياضات التي تفضل النساء ممارستها في الجزائر؟", + "en_question": "What sports do women like to play the most in your country?", + "annotations": [ + { + "answers": [ + "الجمباز" + ], + "en_answers": [ + "gymnastics" + ], + "count": 3 + }, + { + "answers": [ + "اللياقة البدنية" + ], + "en_answers": [ + "fitness" + ], + "count": 1 + }, + { + "answers": [ + "الرقص" + ], + "en_answers": [ + "dance" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-11": { + "question": "في أي رياضة فازت الجزائر بأكبر عدد من الميداليات الذهبية في الأولمبياد؟", + "en_question": "What sports event has your country won the most gold medals at the Olympics?", + "annotations": [ + { + "answers": [ + "العدو", + "الركض" + ], + "en_answers": [ + "running" + ], + "count": 2 + }, + { + "answers": [ + "الجودو" + ], + "en_answers": [ + "judo" + ], + "count": 1 + }, + { + "answers": [ + "السباحة" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + }, + { + "answers": [ + "الملاكمة" + ], + "en_answers": [ + "boxing" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-15": { + "question": "ما هي الرياضات التي يفضل الطلاب الذكور في الجامعة ممارستها في الجزائر؟", + "en_question": "What sports do male students in university like to play the most in your country?", + "annotations": [ + { + "answers": [ + "كرة القدم" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "كرة السلة" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "اللياقة البدنية" + ], + "en_answers": [ + "physical fitness", + "fitness" + ], + "count": 1 + }, + { + "answers": [ + "رفع الأثقال" + ], + "en_answers": [ + "weightlifting", + "weight lifting" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-16": { + "question": "كم عدد الأشخاص في الأسرة في المتوسط في الجزائر؟ (استعمل الأرقام العربية مثل 12.)", + "en_question": "How many people are there in a family on average in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 4 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-18": { + "question": "كم عدد الأطفال الذي ينجبه الأزواج عادة في الجزائر؟ (استعمل الأرقام العربية مثل 12.)", + "en_question": "How many children do couples usually have in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 4 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-31": { + "question": "ما هي مدة الدراسة الابتدائية بالسنوات في الجزائر؟ (أجب برقم, مثلا 12.)", + "en_question": "What is the duration of elementary school in years in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-32": { + "question": "ما هي مدة التعليم الإلزامي بالسنوات في الجزائر؟(أجب برقم, مثلا 12)", + "en_question": "What is the duration of compulsory education in years in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "11" + ], + "en_answers": [ + "11" + ], + "count": 1 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-33": { + "question": "من أي سن يبدأ الطلاب تعلم اللغة الثانية في الجزائر؟(أجب برقم, مثلا 12.)", + "en_question": "From which age do students start learning their second language in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 4 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-38": { + "question": "ما هي مدة التعليم الجامعي في الجزائر؟ (أجب برقم, مثلا 12)", + "en_question": "What is the duration of undergraduate education in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 3 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 2 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-40": { + "question": "في أي وقت ينتهي دوام التلاميذ الصغار في المدارس الابتدائية في الجزائر؟ (قدم الوقت بتنسيق الساعة:الدقيقة مثلاً، 18:00، 09:00).", + "en_question": "What time do younger elementary school students finish school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "15:30", + "03:30" + ], + "en_answers": [ + "15:30" + ], + "count": 3 + }, + { + "answers": [ + "16:00", + "04:00" + ], + "en_answers": [ + "16:00" + ], + "count": 1 + }, + { + "answers": [ + "15:00" + ], + "en_answers": [ + "15:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-41": { + "question": "كم عدد الآلات الموسيقية التي يعزف عليها تلاميذ المدارس الابتدائية في الجزائر عادة؟ (أجب برقم, مثلا 12.)", + "en_question": "How many musical instruments do elementary school students in your country typically play? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 1 + } + }, + "Ji-ko-02": { + "question": "أي يوم من أيام الأسبوع يفضل الناس في الجزائر تنظيم عشاءات في الشركات؟", + "en_question": "What day of the week do people in your country prefer to have company dinners?", + "annotations": [ + { + "answers": [ + "الخميس" + ], + "en_answers": [ + "thursday" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Ji-ko-03": { + "question": "أي منطقة/مدينة تحتوي على أكبر عدد من الشركات المالية في الجزائر؟", + "en_question": "Which region/city has the highest number of financial companies in your country?", + "annotations": [ + { + "answers": [ + "الجزائر العاصمة", + "الجزائر" + ], + "en_answers": [ + "algiers" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-07": { + "question": "ما هي أشهر شركة خاصة في الجزائر؟", + "en_question": "What is the most famous private company in your country?", + "annotations": [ + { + "answers": [ + "سيفيتال" + ], + "en_answers": [ + "cevital" + ], + "count": 2 + }, + { + "answers": [ + "حمود بوعلام" + ], + "en_answers": [ + "hammoud boualem" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-08": { + "question": "ما هو العدد الأقصى لساعات العمل التي يمكن للمرء أن يعملها في الأسبوع في الجزائر؟(استعمل الأرقام العربية مثل 12).", + "en_question": "What is the maximum number of hours one can work per week in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 4 + }, + { + "answers": [ + "50" + ], + "en_answers": [ + "50" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-09": { + "question": "ماذا يأكل الناس عادة في تجمعات الشركات في الجزائر؟", + "en_question": "What do people typically eat during company get-together in your country?", + "annotations": [ + { + "answers": [ + "اللحم" + ], + "en_answers": [ + "meat" + ], + "count": 1 + }, + { + "answers": [ + "البيتزا" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + }, + { + "answers": [ + "معجنات", + "المعجنات" + ], + "en_answers": [ + "pastries" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-14": { + "question": "ما هوأهم منتج تصدره الجزائر؟", + "en_question": "What is the representative export item of your country?", + "annotations": [ + { + "answers": [ + "البترول" + ], + "en_answers": [ + "petroleum" + ], + "count": 4 + }, + { + "answers": [ + "الغاز", + "الغاز الطبيعي" + ], + "en_answers": [ + "gas", + "natural gas" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-15": { + "question": "كم تدوم (بالساعات) فترة الاستراحة للغداء في الجزائر؟ (قدم الأرقام العربية بمنزلة عشرية واحدة (مثلاً، 2، 3.5) فقط.)", + "en_question": "How long (in hours) is the typical lunch break in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 3 + }, + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 1 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + }, + { + "answers": [ + "1.5" + ], + "en_answers": [ + "1.5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-16": { + "question": "أين تقيم الأمهات لفترة معينة بعد الولادة للتعافي في الجزائر؟", + "en_question": "Where do mothers stay for a certain period after childbirth for recovery in your country?", + "annotations": [ + { + "answers": [ + "عند والدتهم", + "بيت اهلها", + "عند أمهاتهن", + "عند والداتهن" + ], + "en_answers": [ + "at their mother's", + "mother's house", + "parents' house", + "at their mothers'", + "mothers'" + ], + "count": 3 + }, + { + "answers": [ + "بيت زوجها", + "البيت", + "بيوتهن" + ], + "en_answers": [ + "husband's house", + "house", + "home", + "their houses" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-19": { + "question": "ما هي الزهرة الأكثر إهداءً في الجزائر في يوم الوالدين؟", + "en_question": "What is your country's most commonly given flower on Parents' Day?", + "annotations": [ + { + "answers": [ + "الورود" + ], + "en_answers": [ + "roses" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Ji-ko-22": { + "question": "على ما ينفق الناس أول راتب لهم في المجتمع الجزائري؟", + "en_question": "What do people especially spend their first salary on in your country's society?", + "annotations": [ + { + "answers": [ + "والديهم" + ], + "en_answers": [ + "their parents", + "parents" + ], + "count": 1 + }, + { + "answers": [ + "مصاريف البيت" + ], + "en_answers": [ + "household expenses", + "household" + ], + "count": 1 + }, + { + "answers": [ + "على الصدقة", + "الصدقة" + ], + "en_answers": [ + "for charity", + "charity" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "Ji-ko-24": { + "question": "ما هي المرافق الترفيهية المفضلة لدى الأطفال في الجزائر؟", + "en_question": "What is the most preferred recreational facility among children in your country?", + "annotations": [ + { + "answers": [ + "حديقة التسلية", + "مدينة الملاهي", + "الملاهي" + ], + "en_answers": [ + "amusement park", + "amusement parks" + ], + "count": 3 + }, + { + "answers": [ + "الحديقة العمومية", + "الحديقة العامة" + ], + "en_answers": [ + "public garden", + "garden" + ], + "count": 2 + }, + { + "answers": [ + "الملعب البلدي", + "الملعب" + ], + "en_answers": [ + "municipal stadium" + ], + "count": 1 + }, + { + "answers": [ + "البحر" + ], + "en_answers": [ + "sea", + "beach" + ], + "count": 1 + }, + { + "answers": [ + "الشارع" + ], + "en_answers": [ + "street" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-25": { + "question": "ما هي العطل العائلية في الجزائر؟", + "en_question": "What are the family-related holidays in your country?", + "annotations": [ + { + "answers": [ + "عطلة الصيف", + "الصيفية", + "العطلة الصيفية" + ], + "en_answers": [ + "summer vacation", + "summer time" + ], + "count": 2 + }, + { + "answers": [ + "الجمعة" + ], + "en_answers": [ + "friday" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "Ji-ko-26": { + "question": "ما هي المراحل الرئيسية المرتبطة باستقلال الأطفال عن والديهم في المجتمع الجزائري؟", + "en_question": "What are the key milestones associated with children's independence from their parents in your country's society?", + "annotations": [ + { + "answers": [ + "الزواج" + ], + "en_answers": [ + "marriage" + ], + "count": 3 + }, + { + "answers": [ + "العمل" + ], + "en_answers": [ + "work" + ], + "count": 2 + }, + { + "answers": [ + "الهجرة" + ], + "en_answers": [ + "immigration" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "Ji-ko-27": { + "question": "ما هي الهدية التي تقدمها عند زيارة الوالدين المسنين في الجزائر؟", + "en_question": "What is the common gift you give when visiting elderly parents in your country?", + "annotations": [ + { + "answers": [ + "الحلوى", + "الحلويات", + "حلويات" + ], + "en_answers": [ + "sweets" + ], + "count": 2 + }, + { + "answers": [ + "الفاكهة" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + }, + { + "answers": [ + "الطعام" + ], + "en_answers": [ + "food" + ], + "count": 1 + }, + { + "answers": [ + "عطور" + ], + "en_answers": [ + "perfume" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-28": { + "question": "متى يكون أول يوم يحتفل فيه الناس بولادة طفل في الجزائر؟", + "en_question": "When is the first day that people celebrate after a child is born in your country?", + "annotations": [ + { + "answers": [ + "اليوم السابع", + "اسبوع بعد الولادة" + ], + "en_answers": [ + "seventh day", + "seven days later", + "7th", + "seven days", + "week after childbirth", + "week after", + "after a week" + ], + "count": 3 + }, + { + "answers": [ + "يوم الميلاد" + ], + "en_answers": [ + "day of birth" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ji-ko-29": { + "question": "أي عيد ميلاد يحتفل به بأكبر قدر من الفخامة في المجتمع الجزائري؟", + "en_question": "Which age's birthday is celebrated the most grandly in your country's society?", + "annotations": [], + "idks": { + "not-applicable": 4, + "no-answer": 1, + "idk": 0 + } + }, + "Ji-ko-31": { + "question": "أين يدرس طلاب المتوسط والثانوي في الجزائر عادةً للامتحانات؟", + "en_question": "Where do middle and high school students in your country usually study for exams?", + "annotations": [ + { + "answers": [ + "المكتبة", + "في المكتبة مع الأقران" + ], + "en_answers": [ + "library", + "in the library with peers" + ], + "count": 3 + }, + { + "answers": [ + "في المنزل", + "البيت", + "المنزل" + ], + "en_answers": [ + "at home", + "home", + "house" + ], + "count": 2 + }, + { + "answers": [ + "مدارس الدعم" + ], + "en_answers": [ + "support schools" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-33": { + "question": "أين يذهب طلاب الثانوية في الجزائر عادة بعد العشاء؟", + "en_question": "Where do high school students in your country usually go after dinner?", + "annotations": [ + { + "answers": [ + "بيوتهم", + "البيت", + "منازلهم", + "البيت,المنزل", + "المنازل,منازل" + ], + "en_answers": [ + "their homes", + "home", + "house" + ], + "count": 3 + }, + { + "answers": [ + "إلى النوم" + ], + "en_answers": [ + "to sleep" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-34": { + "question": "كيف يذهب تلاميذ المدارس الابتدائية في الجزائر إلى المدرسة؟", + "en_question": "How do elementary school students in your country go to school?", + "annotations": [ + { + "answers": [ + "مشيا" + ], + "en_answers": [ + "on foot" + ], + "count": 3 + }, + { + "answers": [ + "يوصلهم احد الوالدين" + ], + "en_answers": [ + "one of the parents drops them off", + "parents' car", + "parents" + ], + "count": 1 + }, + { + "answers": [ + "لوحدهم" + ], + "en_answers": [ + "alone" + ], + "count": 1 + }, + { + "answers": [ + "الباص", + "النقل العمومي", + "الحافلة" + ], + "en_answers": [ + "bus", + "public transport" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-35": { + "question": "ما هي أكثر أشكال التعليم الخاص شيوعًا في الجزائر؟", + "en_question": "What is the most common form of private education in your country?", + "annotations": [ + { + "answers": [ + "مدارس التعليم الخاصة", + "التعليم الخاص", + "التعليم العام", + "المدارس الخاصة" + ], + "en_answers": [ + "private schools", + "general education", + "private education", + "special education", + "private school" + ], + "count": 3 + }, + { + "answers": [ + "دروس الدعم" + ], + "en_answers": [ + "support lessons" + ], + "count": 1 + }, + { + "answers": [ + "مدارس التكوين المهني للكبار" + ], + "en_answers": [ + "vocational training schools for adults" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ji-ko-36": { + "question": "أي أكاديمية أو معهد تعليمي خاص بمادة معينة يرتادها طلاب المتوسط أو الثانوي في الجزائر بكثرة؟", + "en_question": "Which subject’s academy/private educational institute do middle or high students most frequently attend in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "no-answer": 1, + "idk": 0 + } + }, + "Ji-ko-37": { + "question": "أي نوع من الملابس يرتديها طلاب المتوسط والثانوي إلى المدرسة في الجزائر؟", + "en_question": "What type of clothing do middle and high school students wear to school in your country?", + "annotations": [ + { + "answers": [ + "المئزر", + "المئزرة", + "مئزر" + ], + "en_answers": [ + "apron" + ], + "count": 2 + }, + { + "answers": [ + "ملابس عادية" + ], + "en_answers": [ + "casual clothes", + "casual clothing" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 0 + } + }, + "Ji-ko-38": { + "question": "أي تخصص جامعي يعتبر الأصعب نسبة لمعدل القبول في الجزائر؟", + "en_question": "Which major is considered the most difficult to gain admission to in your country?", + "annotations": [ + { + "answers": [ + "الطب", + "طب" + ], + "en_answers": [ + "medicine" + ], + "count": 4 + }, + { + "answers": [ + "الهندسة", + "هندسة" + ], + "en_answers": [ + "engineering" + ], + "count": 2 + }, + { + "answers": [ + "الاعلام الآلي", + "الإعلام الآلي", + "إعلام الآلي" + ], + "en_answers": [ + "computer science", + "computer engineering" + ], + "count": 2 + }, + { + "answers": [ + "الصيدلة", + "صيدلة" + ], + "en_answers": [ + "pharmacy" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-39": { + "question": "ما هي الآلة الموسيقية التي يقبل أكثر تلاميذ المدارس على تعلمها؟", + "en_question": "What is the most commonly learned musical instrument by elementary school students in your country?", + "annotations": [ + { + "answers": [ + "الجيتار", + "جيتار", + "الغيتار" + ], + "en_answers": [ + "guitar" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "no-answer": 2, + "idk": 0 + } + }, + "Ji-ko-40": { + "question": "ماذا يفعل طلاب الثانوية عادة أثناء فترة الاستراحة في المدارس في الجزائر؟", + "en_question": "What do high school students typically do during break time in schools in your country?", + "annotations": [ + { + "answers": [ + "يأكلون" + ], + "en_answers": [ + "eat" + ], + "count": 2 + }, + { + "answers": [ + "يلتقون باصدقائهم" + ], + "en_answers": [ + "meet their friends", + "meet friends" + ], + "count": 1 + }, + { + "answers": [ + "يتحدثون" + ], + "en_answers": [ + "talk" + ], + "count": 1 + }, + { + "answers": [ + "يلعبون" + ], + "en_answers": [ + "play" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-41": { + "question": "أي نوع من الأحذية يرتديها الطلاب في المدارس في الجزائر؟", + "en_question": "What kind of shoes do students wear in schools in your country?", + "annotations": [ + { + "answers": [ + "حذاء رياضي" + ], + "en_answers": [ + "sneakers" + ], + "count": 1 + }, + { + "answers": [ + "حذاء" + ], + "en_answers": [ + "shoe" + ], + "count": 1 + }, + { + "answers": [ + "الأحذية الرياضية" + ], + "en_answers": [ + "sports shoes" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 1 + } + }, + "Ji-ko-42": { + "question": "ما هي مواد امتحان دخول الجامعة في الجزائر؟", + "en_question": "What are the required subjects in your country's university entrance exam?", + "annotations": [ + { + "answers": [ + "كل المواد" + ], + "en_answers": [ + "all subjects", + "all" + ], + "count": 2 + }, + { + "answers": [ + "الباكالوريا", + "هو إمتحان الباكالوريا" + ], + "en_answers": [ + "baccalaureate", + "baccalaureate exam" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ji-ko-44": { + "question": "أي منطقة (داخل مدينة) في الجزائر تتمتع بأعلى حماس أكاديمي؟", + "en_question": "Which region (within a city) in your country has the highest academic fervor?", + "annotations": [ + { + "answers": [ + "الحراش" + ], + "en_answers": [ + "el harrach" + ], + "count": 1 + }, + { + "answers": [ + "مركز الجزائر العاصمة" + ], + "en_answers": [ + "algiers downtown", + "center of algiers" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 1 + } + }, + "Ji-ko-45": { + "question": "ما هو الشيء الذي يتطلع إليه الناس أكثر شيء في مهرجانات الجامعات في الجزائر؟", + "en_question": "What do people look forward to the most at university festivals in your country?", + "annotations": [ + { + "answers": [ + "التعرف على أفضل الفرص الممكنة" + ], + "en_answers": [ + "identifying the best possible opportunities", + "identify the best possible opportunities" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "no-answer": 1, + "idk": 1 + } + }, + "Jo-sp-01": { + "question": "ما هو ثاني رياضة الأكثر شعبية في الجزائر؟", + "en_question": "What is the second most popular sport in your country?", + "annotations": [ + { + "answers": [ + "كرة اليد" + ], + "en_answers": [ + "handball" + ], + "count": 1 + }, + { + "answers": [ + "العدو", + "الركض" + ], + "en_answers": [ + "running" + ], + "count": 1 + }, + { + "answers": [ + "كرة السلة" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "الجودو" + ], + "en_answers": [ + "judo" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-02": { + "question": "ما هي أشهر رياضة تُلعب بدون كرة في الجزائر؟", + "en_question": "What is the most popular sport played without a ball in your country?", + "annotations": [ + { + "answers": [ + "العدو", + "الركض" + ], + "en_answers": [ + "running" + ], + "count": 2 + }, + { + "answers": [ + "الجودو", + "الجيدو" + ], + "en_answers": [ + "judo" + ], + "count": 1 + }, + { + "answers": [ + "العاب القوى", + "ألعاب القوى" + ], + "en_answers": [ + "athletics" + ], + "count": 1 + }, + { + "answers": [ + "الملاكمة" + ], + "en_answers": [ + "boxing" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-09": { + "question": "ما هي الرياضات الأكثر ارتباطًا بالطبقة الغنية في الجزائر؟", + "en_question": "What sports are most associated with the upper class in your country?", + "annotations": [ + { + "answers": [ + "التنس" + ], + "en_answers": [ + "tennis" + ], + "count": 3 + }, + { + "answers": [ + "ركوب الخيل" + ], + "en_answers": [ + "horse riding" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-13": { + "question": "ما هي الرياضة المائية الأكثر شعبية في الجزائر؟", + "en_question": "What is the most popular water sport in your country?", + "annotations": [ + { + "answers": [ + "السباحة" + ], + "en_answers": [ + "swimming", + "swim" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-14": { + "question": "ما هي أشهر رياضة ذهنية في الجزائر؟", + "en_question": "What is the most popular mental sport in your country?", + "annotations": [ + { + "answers": [ + "الشطرنج" + ], + "en_answers": [ + "chess" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-18": { + "question": "كم يوم عطلة في السنة يحصل عليها العامل العادي في الجزائر؟(استعمل الأرقام العربية مثل 12) ", + "en_question": "How many holiday days per year does a standard worker gets in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-19": { + "question": "ها هي أهم منطقة زراعية في الجزائر؟", + "en_question": "What region in your country has been traditionally associated with agriculture?", + "annotations": [ + { + "answers": [ + "متيجة", + "المتيجة" + ], + "en_answers": [ + "mitidja" + ], + "count": 4 + }, + { + "answers": [ + "الهضاب العليا" + ], + "en_answers": [ + "high plateaus", + "hautes plaines", + "high plains" + ], + "count": 1 + }, + { + "answers": [ + "عين الدفلة", + "عين الدفلى" + ], + "en_answers": [ + "ain defla", + "aïn defla" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-21": { + "question": "متى يغادر الناس عادة العمل لتناول الغداء في الجزائر؟ (قدم الوقت بتنسيق الساعة:الدقيقة مثلاً، 18:00، 09:00).", + "en_question": "What time, if any, do people usually leave work for lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "12:00" + ], + "en_answers": [ + "12:00" + ], + "count": 5 + }, + { + "answers": [ + "12:30" + ], + "en_answers": [ + "12:30" + ], + "count": 1 + }, + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-31": { + "question": "في أي وقت يميل طلاب الثانوية لمغادرة المدرسة في الجزائر؟ (قدم الوقت بتنسيق الساعة:الدقائق مثل، 18:00، 09:00).", + "en_question": "What time do high school students tend to leave school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "16:30" + ], + "en_answers": [ + "16:30" + ], + "count": 2 + }, + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 2 + }, + { + "answers": [ + "17:30" + ], + "en_answers": [ + "17:30" + ], + "count": 1 + }, + { + "answers": [ + "16:00" + ], + "en_answers": [ + "16:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-32": { + "question": "أي رياضة يميل تلاميذ المدارس الابتدائية لممارستها في المدارس في الجزائر؟", + "en_question": "What sport do elementary school students tend to practice at school in your country?", + "annotations": [ + { + "answers": [ + "كرة القدم" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "الجري", + "الركض" + ], + "en_answers": [ + "running" + ], + "count": 2 + }, + { + "answers": [ + "القفز" + ], + "en_answers": [ + "jumping" + ], + "count": 1 + }, + { + "answers": [ + "الكرة" + ], + "en_answers": [ + "ball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-36": { + "question": "كم تدوم عطلة الصيف (بالأسابيع) في المدارس الابتدائية في الجزائر؟ (استعمل الأرقام العربية مثل 7, 8)", + "en_question": "How long (in weeks) are summer vacations at elementary schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 2 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 2 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "13" + ], + "en_answers": [ + "13" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-37": { + "question": "كم تدوم عطلة الصيف في الجامعات الجزائرية بالأسابيع؟ (استعمل الأرقام العربية مثل 7, 8.)", + "en_question": "How long (in weeks) are summer vacations at universities in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 2 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 2 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-39": { + "question": "في أي سن يبدأ التعليم الابتدائي في الجزائر؟ (استعمل الأرقام العربية مثل 7, 8.)", + "en_question": "At what age does elementary education begin in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 4 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-43": { + "question": "كم لغة يتم دراستها في التعليم الابتدائي بالإضافة إلى اللغة الرسمية للجزائر؟(استعمل الأرقام العربية مثل 7, 8.)", + "en_question": "How many languages are studied in elementary education besides your country's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-01": { + "question": "ما هي أدوات الأكل التي يستخدمها الناس عادة في الجزائر؟", + "en_question": "What eating utensils do people commonly used in your country?", + "annotations": [ + { + "answers": [ + "الملعقة", + "ملعقة", + "ملعقة و فرشاة" + ], + "en_answers": [ + "spoon" + ], + "count": 5 + }, + { + "answers": [ + "الشوكة", + "شوكة", + "ملعقة و فرشاة", + "شوكة" + ], + "en_answers": [ + "fork" + ], + "count": 4 + }, + { + "answers": [ + "السكين", + "سكين" + ], + "en_answers": [ + "knife" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-04": { + "question": "أي مشروب غازي يفضله الناس في الجزائر؟", + "en_question": "What soft drink do people in your country like to have?", + "annotations": [ + { + "answers": [ + "حمود بوعلام" + ], + "en_answers": [ + "hammoud boualem", + "hamoud boualem" + ], + "count": 4 + }, + { + "answers": [ + "الصودا", + "صودا" + ], + "en_answers": [ + "soda" + ], + "count": 1 + }, + { + "answers": [ + "سيليكتو" + ], + "en_answers": [ + "selecto" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-06": { + "question": "ما هو أشهر نوع تقليدي من الكحول في الجزائر؟", + "en_question": "What is the most popular traditional alcohol in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Jod-ch-07": { + "question": "كم يستغرق الناس من الوقت (بالساعات)عادةً لتناول العشاء في مطعم في الجزائر؟ (قدم الأرقام العربية حتى منزلة عشرية واحدة (مثلاً، 2، 3.5) فقط.)", + "en_question": "How long (in hours) on average does it take for people in your country to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 3 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + }, + { + "answers": [ + "1.5" + ], + "en_answers": [ + "1.5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-09": { + "question": "متى وقت يتناول الناس العشاء في الجزائر عادة؟ (قدم الوقت بتنسيق الساعة:الدقيقة مثلاً، 18:00، 09:00).", + "en_question": "What time do people usually have dinner in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "20:00", + "08:00" + ], + "en_answers": [ + "20:00" + ], + "count": 5 + }, + { + "answers": [ + "19:00", + "07:00" + ], + "en_answers": [ + "19:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-12": { + "question": "أي نوع من الحساء يحبه الناس في الجزائر؟", + "en_question": "What kind of soup do people from your country like to have?", + "annotations": [ + { + "answers": [ + "الشربة", + "شربة", + "الشوربة", + "شوربة" + ], + "en_answers": [ + "chorba soup", + "shourba frik", + "shourba soup" + ], + "count": 5 + }, + { + "answers": [ + "الحريرة" + ], + "en_answers": [ + "harira" + ], + "count": 1 + }, + { + "answers": [ + "الجاري" + ], + "en_answers": [ + "jari soup", + "jari bel frik" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-13": { + "question": "أي نوع من الأكلات الشعبية يحب الجزائريون تناولها؟", + "en_question": "What street food do people from your country like to eat?", + "annotations": [ + { + "answers": [ + "الكسكس", + "الكسكسي", + "كسكس", + "كسكسي" + ], + "en_answers": [ + "couscous" + ], + "count": 4 + }, + { + "answers": [ + "الشخشوخة" + ], + "en_answers": [ + "chakhchoukha", + "chekhechoukha" + ], + "count": 2 + }, + { + "answers": [ + "الرشتة" + ], + "en_answers": [ + "rishta", + "lentils and pasta soup", + "libyan-style pasta", + "reshta", + "rechta" + ], + "count": 1 + }, + { + "answers": [ + "كرانتيكا", + "كارانتيكا", + "كالانتيكا، كلنتيكا، كلانتيكا،قرنطيطة، القرنطيطة ، قرنتيتة،غارانتيتا، قرنتيتة" + ], + "en_answers": [ + "calentica", + "karantika" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-15": { + "question": "أي نوع من المأكولات البحرية يحب الجزائريون تناولها؟", + "en_question": "What kind of seafood do people from your country like to eat?", + "annotations": [ + { + "answers": [ + "السردين", + "سردين" + ], + "en_answers": [ + "sardines" + ], + "count": 4 + }, + { + "answers": [ + "السمك", + "سمك" + ], + "en_answers": [ + "fish" + ], + "count": 2 + }, + { + "answers": [ + "الجمبري", + "جمبري" + ], + "en_answers": [ + "shrimp" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-16": { + "question": "ما هو أكبر احتفال في الجزائر؟", + "en_question": "What is the biggest festival in your country?", + "annotations": [ + { + "answers": [ + "عيد الفطر" + ], + "en_answers": [ + "eid al-fitr", + "eid ul-fitr" + ], + "count": 3 + }, + { + "answers": [ + "عيد الاضحى", + "عيد الأضحى" + ], + "en_answers": [ + "eid al-adha" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Jod-ch-28": { + "question": "ما هي وسيلة النقل العمومي الأكثر استخداما عند السفر بين المدن في الجزائر؟", + "en_question": "What is the most commonly used public transport by people when travelling between cites in your country?", + "annotations": [ + { + "answers": [ + "الحافلة", + "الباص", + "حافلة", + "باص" + ], + "en_answers": [ + "bus" + ], + "count": 4 + }, + { + "answers": [ + "القطار", + "قطار" + ], + "en_answers": [ + "train" + ], + "count": 2 + }, + { + "answers": [ + "سيارة الاجرة" + ], + "en_answers": [ + "taxi" + ], + "count": 1 + }, + { + "answers": [ + "السيارة", + "سيارة" + ], + "en_answers": [ + "car" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-30": { + "question": "ما هي الزينة أو الرموز الخاصة المرتبطة بأكبر عيد الاستقلال في الجزائر؟", + "en_question": "What are the specific decorations or symbols associated with the most biggest festival in your country?", + "annotations": [ + { + "answers": [ + "العلم الوطني", + "اعلام", + "العَلَم الوطني", + "الأعلام", + "العلم", + "أعلام" + ], + "en_answers": [ + "national flag", + "flag", + "flags" + ], + "count": 3 + }, + { + "answers": [ + "الأضواء" + ], + "en_answers": [ + "lights" + ], + "count": 1 + }, + { + "answers": [ + "الألعاب النارية" + ], + "en_answers": [ + "fireworks" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-37": { + "question": "ما هي الرياضة التي تفضل النساء مشاهدتها في الجزائر؟", + "en_question": "What sports do women like to watch the most in your country?", + "annotations": [ + { + "answers": [ + "كرة القدم" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-38": { + "question": "ما هي الرياضة التي يفضل الرجال مشاهدتها في الجزائر؟", + "en_question": "What sports do men like to watch the most in your country?", + "annotations": [ + { + "answers": [ + "كرة القدم" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-41": { + "question": "ما هي النشاطات الترفيهية الشائعة التي تمارسها النساء في العشرينات من العمر في الجزائر؟", + "en_question": "What is the common leisure activity that females in their 20s in your country engage in?", + "annotations": [ + { + "answers": [ + "التنزه", + "المشي في المرتفعات", + "المشي في المرتفات" + ], + "en_answers": [ + "strolling", + "hiking", + "hiking in the highlands", + "hike" + ], + "count": 2 + }, + { + "answers": [ + "الرياضة" + ], + "en_answers": [ + "sports" + ], + "count": 1 + }, + { + "answers": [ + "القراءة" + ], + "en_answers": [ + "reading", + "read" + ], + "count": 1 + }, + { + "answers": [ + "التسوق" + ], + "en_answers": [ + "shopping" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-42": { + "question": "ما هي النشاطات الترفيهية الشائعة التي يمارسها الشباب في العشرينات من العمر في الجزائر؟", + "en_question": "What is the common leisure activity that males in their 20s in your country engage in?", + "annotations": [ + { + "answers": [ + "الرياضة" + ], + "en_answers": [ + "sports" + ], + "count": 2 + }, + { + "answers": [ + "التنزه" + ], + "en_answers": [ + "strolling", + "hiking" + ], + "count": 1 + }, + { + "answers": [ + "القراءة" + ], + "en_answers": [ + "reading", + "read" + ], + "count": 1 + }, + { + "answers": [ + "كرة القدم" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "العاب الكترونية", + "ألعاب الكترونية,الألعاب الكترونية" + ], + "en_answers": [ + "electronic games", + "game" + ], + "count": 1 + }, + { + "answers": [ + "التخييم" + ], + "en_answers": [ + "camping" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-46": { + "question": "كم من الوقت (بالساعات) يأخذ الناس عادة استراحة بعد الغداء في يوم عمل في الجزائر؟ (قدم الأرقام العربية بمنزلة عشرية واحدة (مثلاً، 2، 3.5) فقط.)", + "en_question": "How long (in hours) do people usually take a break after lunch on a weekday in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 2 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + }, + { + "answers": [ + "0.5" + ], + "en_answers": [ + "0.5" + ], + "count": 1 + }, + { + "answers": [ + "1.5" + ], + "en_answers": [ + "1.5" + ], + "count": 1 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-48": { + "question": "ماذا يأكل الناس في الغداء خلال أيام العمل في الجزائر؟", + "en_question": "What do people eat for lunch during the working days in your country?", + "annotations": [ + { + "answers": [ + "سندويتش", + "ساندويتش" + ], + "en_answers": [ + "sandwich" + ], + "count": 3 + }, + { + "answers": [ + "اكل سريع", + "أكل سريع, الأكل السريع" + ], + "en_answers": [ + "fast food" + ], + "count": 1 + }, + { + "answers": [ + "أكل البيت" + ], + "en_answers": [ + "home-cooked food" + ], + "count": 1 + }, + { + "answers": [ + "البيتزا", + "بيتزا" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-50": { + "question": "ما هو متوسط وقت التنقل للعمل للأشخاص في الجزائر؟", + "en_question": "What is the average commute time (in minutes) for people in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "2", + "ساعتين" + ], + "en_answers": [ + "2" + ], + "count": 4 + }, + { + "answers": [ + "1", + "ساعة" + ], + "en_answers": [ + "1" + ], + "count": 2 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-51": { + "question": "ما هي وسيلة النقل الأكثر شيوعاً التي يستخدمها الناس للذهاب إلى العمل في الجزائر؟", + "en_question": "What is the most common transportation that people take to get to work in your country?", + "annotations": [ + { + "answers": [ + "الحافلة", + "الباص", + "حافلة", + "باص" + ], + "en_answers": [ + "bus" + ], + "count": 5 + }, + { + "answers": [ + "السيارة", + "سيارة" + ], + "en_answers": [ + "car" + ], + "count": 2 + }, + { + "answers": [ + "سيارة الأجرة" + ], + "en_answers": [ + "taxi" + ], + "count": 1 + }, + { + "answers": [ + "القطار", + "قطار" + ], + "en_answers": [ + "train" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-54": { + "question": "ما هي مدة إجازة الزواج في الجزائر؟ (استعمل الأرقام العربية مثل 12).", + "en_question": "How long (in days) is the marriage leave in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 4 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-56": { + "question": "ما هو سن التقاعد للنساء في الجزائر؟ (استعمل الأرقام العربية مثل 12).", + "en_question": "What is the typical retirement age for women in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "55" + ], + "en_answers": [ + "55" + ], + "count": 3 + }, + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-57": { + "question": "ما هو سن التقاعد النموذجي للرجال في الجزائر؟ (استعمل الأرقام العربية مثل 12).", + "en_question": "What is the typical retirement age for men in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 3 + }, + { + "answers": [ + "55" + ], + "en_answers": [ + "55" + ], + "count": 1 + }, + { + "answers": [ + "65" + ], + "en_answers": [ + "65" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-58": { + "question": "أي مهنة هي الأكثر احترامًا في الجزائر؟", + "en_question": "Which profession is the most respected in your country?", + "annotations": [ + { + "answers": [ + "طبيب", + "الطب", + "الطبيب", + "طب" + ], + "en_answers": [ + "doctor", + "medicine" + ], + "count": 4 + }, + { + "answers": [ + "التعليم", + "التدريس" + ], + "en_answers": [ + "education", + "teacher" + ], + "count": 1 + }, + { + "answers": [ + "رجل الاطفاء" + ], + "en_answers": [ + "fireman", + "firefighter" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-60": { + "question": "ما هي مدة يوم العمل النموذجي في الجزائر بالساعات؟ (استعمل الأرقام العربية مثل 0~24).", + "en_question": "What is the duration (in hours) of a typical workday in your country? (Provide Arabic numerals (0~24) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 4 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-61": { + "question": "أي مهنة تفضلها النساء في الجزائر أكثر؟", + "en_question": "Which occupation is most preferred among females in your country?", + "annotations": [ + { + "answers": [ + "التعليم", + "التدريس", + "مدرسة", + "معلمة مدرسة" + ], + "en_answers": [ + "education", + "teaching", + "school", + "school teacher", + "teacher" + ], + "count": 5 + }, + { + "answers": [ + "الطب" + ], + "en_answers": [ + "medicine", + "doctor" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-62": { + "question": "أي مهنة يفضلها الذكور في الجزائر؟", + "en_question": "Which occupation is most preferred among males in your country?", + "annotations": [ + { + "answers": [ + "الهندسة", + "مهندس" + ], + "en_answers": [ + "engineering", + "engineer" + ], + "count": 3 + }, + { + "answers": [ + "التجارة" + ], + "en_answers": [ + "commerce" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-17": { + "question": "في المتوسط، إلى أي مستوى يواصل الطلاب تعليمهم في الجزائر عادة؟ (مثلاً، الابتدائية، الثانوية)", + "en_question": "On average, how far do students typically pursue their education in your country? (e.g., elementary, high school)", + "annotations": [ + { + "answers": [ + "الثانوية", + "الثانوي" + ], + "en_answers": [ + "secondary" + ], + "count": 3 + }, + { + "answers": [ + "الجامعة" + ], + "en_answers": [ + "university" + ], + "count": 2 + }, + { + "answers": [ + "التعليم المتوسط" + ], + "en_answers": [ + "middle education", + "middle school", + "lower-secondary school" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-24": { + "question": "أي لغة تُدرَّس في المدارس الجزائرية بالإضافة إلى اللغة الإنجليزية؟", + "en_question": "What language is taught in schools in your country besides English?", + "annotations": [ + { + "answers": [ + "الفرنسية" + ], + "en_answers": [ + "french" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-30": { + "question": "أي أيام في الأسبوع تكون المدارس مغلقة في الجزائر؟", + "en_question": "What days of the week are schools closed in your country?", + "annotations": [ + { + "answers": [ + "الجمعة" + ], + "en_answers": [ + "friday" + ], + "count": 5 + }, + { + "answers": [ + "السبت" + ], + "en_answers": [ + "saturday" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-32": { + "question": "ما هي الأطعمة التي يعدّها الناس للضيوف في الجزائر؟", + "en_question": "What food do the hosts usually prepare for the guests in your country?", + "annotations": [ + { + "answers": [ + "الحلوى", + "الحلويات" + ], + "en_answers": [ + "sweets" + ], + "count": 2 + }, + { + "answers": [ + "القهوة" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + }, + { + "answers": [ + "الأكلات التقليدية" + ], + "en_answers": [ + "traditional dishes" + ], + "count": 1 + }, + { + "answers": [ + "الكسكسي", + "الكسكس" + ], + "en_answers": [ + "couscous" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-34": { + "question": "ما هو المشروب المعتاد في وجبة فطور الصباح في الجزائر؟", + "en_question": "What is the usual drink in the breakfast in your country?", + "annotations": [ + { + "answers": [ + "الحليب", + "حليب" + ], + "en_answers": [ + "milk" + ], + "count": 4 + }, + { + "answers": [ + "القهوة" + ], + "en_answers": [ + "coffee" + ], + "count": 3 + }, + { + "answers": [ + "حليب بالقهوة" + ], + "en_answers": [ + "coffee with milk" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-36": { + "question": "عدا الأكل الأصلي من الجزائر، أي دولة أخرى يعتبر أكلها الأكثر شعبية في الجزائر؟", + "en_question": "Except the food original from your country, which country's food is more popular in your country?", + "annotations": [ + { + "answers": [ + "إيطاليا" + ], + "en_answers": [ + "italy" + ], + "count": 2 + }, + { + "answers": [ + "سوريا", + "شاورما" + ], + "en_answers": [ + "syria" + ], + "count": 2 + }, + { + "answers": [ + "تركيا" + ], + "en_answers": [ + "turkey", + "türkiye" + ], + "count": 1 + }, + { + "answers": [ + "فرنسا" + ], + "en_answers": [ + "france" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-39": { + "question": "ما هي الأطعمة التي يتم إعدادها عادة لنزهة عائلية في الجزائر؟", + "en_question": "What food is usually prepared for a family picnic in your country?", + "annotations": [ + { + "answers": [ + "السلطة", + "السلاطة", + "سلطة" + ], + "en_answers": [ + "salad" + ], + "count": 2 + }, + { + "answers": [ + "سندويشات", + "سندويتش" + ], + "en_answers": [ + "sandwiches", + "sandwich" + ], + "count": 2 + }, + { + "answers": [ + "البيتزا", + "بيتزا" + ], + "en_answers": [ + "pizza" + ], + "count": 2 + }, + { + "answers": [ + "دجاج" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "معجنات" + ], + "en_answers": [ + "pastries" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-40": { + "question": "أي طعام من الجزائر يعتبر مقززًا بالنسبة لبقية العالم؟", + "en_question": "Which food from your country is considered disgusting by the rest of the world?", + "annotations": [ + { + "answers": [ + "الدوارة", + "الدوارة (الامعاء)" + ], + "en_answers": [ + "tripe", + "intestines" + ], + "count": 2 + }, + { + "answers": [ + "البوزلوف" + ], + "en_answers": [ + "boiled sheep's head", + "bozlov", + "bouzalof", + "bouzlouf" + ], + "count": 1 + }, + { + "answers": [ + "الحلزون" + ], + "en_answers": [ + "snail" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-43": { + "question": "ما هو اسم الخبز الشعبي في الجزائر؟", + "en_question": "What is the name of the popular bread in your country?", + "annotations": [ + { + "answers": [ + "المطلوع", + "مطلوع" + ], + "en_answers": [ + "matloua bread", + "matloua", + "matloue" + ], + "count": 3 + }, + { + "answers": [ + "الكسرة" + ], + "en_answers": [ + "kesra" + ], + "count": 2 + }, + { + "answers": [ + "خبز عادي" + ], + "en_answers": [ + "plain bread", + "khubz", + "khoubz", + "khobez", + "khubez", + "khubooz" + ], + "count": 1 + }, + { + "answers": [ + "خبز الكوشة" + ], + "en_answers": [ + "koucha bread", + "khobz koucha", + "khobz eddar", + "khobz el kousha", + "khobz el koucha" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-51": { + "question": "في أي وقت تغلق المكاتب الحكومية في الجزائر؟ (قدم الوقت بتنسيق الساعة:الدقيقة مثل، 18:00، 09:00).", + "en_question": "What time of day are government offices closed in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "16:00" + ], + "en_answers": [ + "16:00" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-53": { + "question": "ما هو موعد بداية العمل الرسمي في المؤسسات الحكومية في الجزائر؟ (قدم الوقت بتنسيق الساعة والدقائق مثلاً، 18:00، 09:00).", + "en_question": "What is the normal start time of government offices in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 5 + }, + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-01": { + "question": "ما هو العيد الوطني الأطول مدة في الجزائر؟", + "en_question": "What national holiday has the longest duration in your country?", + "annotations": [ + { + "answers": [ + "اندلاع الثورة", + "ذكرى ثورة أول نوفمبر", + "أول نوفمبر" + ], + "en_answers": [ + "outbreak of the revolution", + "liberation revolution", + "outbreak of the algerian revolution", + "anniversary of the 1st november revolution", + "first of november", + "first day of november", + "11/01", + "11/1" + ], + "count": 3 + }, + { + "answers": [ + "الاستقلال", + "عيد الاستقلال" + ], + "en_answers": [ + "independence", + "independence day" + ], + "count": 2 + }, + { + "answers": [ + "عيد الفطر" + ], + "en_answers": [ + "eid al-fitr", + "eid ul-fitr" + ], + "count": 1 + }, + { + "answers": [ + "عيد الاضحى" + ], + "en_answers": [ + "eid al-adha" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-02": { + "question": "ما هي الأنشطة التي يقوم بها الجزائريون للاحتفال بيوم الاستقلال؟", + "en_question": "What are the common activities people from your country do to celebrate Independence day?", + "annotations": [ + { + "answers": [ + "لا يفعلون شيئاً" + ], + "en_answers": [ + "nothing" + ], + "count": 1 + }, + { + "answers": [ + "يشاهدون التلفاز" + ], + "en_answers": [ + "watch tv", + "tv" + ], + "count": 1 + }, + { + "answers": [ + "يشاهدون الألعاب النارية" + ], + "en_answers": [ + "watch fireworks", + "fireworks" + ], + "count": 1 + }, + { + "answers": [ + "يحضرون الإحتفالات الشعبية في الساحات و الملاعب الكبيرة" + ], + "en_answers": [ + "they attend the popular celebrations in the squares and large stadiums", + "go to squares", + "go to large stadiums", + "squares", + "large stadiums" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-04": { + "question": "ماذا يتم تركيبه أمام المنزل عندما يتوفى أحد أفراد العائلة في الجزائر؟", + "en_question": "What is installed in front of the house when a family member dies in your country?", + "annotations": [ + { + "answers": [ + "الكراسي" + ], + "en_answers": [ + "chair" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 0 + } + }, + "Kik-in-05": { + "question": "متى يتم عادة الاحتفال بالحمل أو إقامة مراسم لذلك في الجزائر؟", + "en_question": "When is a pregnancy celebration or ceremony usually held in your country?", + "annotations": [ + { + "answers": [ + "يحتفل بالولادة" + ], + "en_answers": [ + "celebrates the birth", + "after birth" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 0 + } + }, + "Kik-in-06": { + "question": "ما هو الحدث الذي يقام عادة قبل الزفاف في الجزائر؟", + "en_question": "What event is usually held before a wedding in your country?", + "annotations": [ + { + "answers": [ + "الخطبة", + "الخطوبة" + ], + "en_answers": [ + "engagement" + ], + "count": 3 + }, + { + "answers": [ + "الفاتحة" + ], + "en_answers": [ + "fatiha" + ], + "count": 1 + }, + { + "answers": [ + "الحنة" + ], + "en_answers": [ + "henna" + ], + "count": 1 + }, + { + "answers": [ + "عقد القران" + ], + "en_answers": [ + "marriage contract", + "nikah" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-07": { + "question": "ماذا يتم توزيعه عادة على الأطفال خلال السنة الجديدة القمرية في الجزائر؟", + "en_question": "What is usually shared to the children during (Lunar) New Year in your country?", + "annotations": [ + { + "answers": [ + "الحلويات", + "حلويات,حلوى, الحلوى" + ], + "en_answers": [ + "sweets" + ], + "count": 1 + }, + { + "answers": [ + "المكسرات", + "مكسرات" + ], + "en_answers": [ + "nuts" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 1 + } + }, + "Kik-in-08": { + "question": "ما هي الأنشطة التي تُمارس عادة في الأيام التي تسبق رمضان في الجزائر؟", + "en_question": "What activities are usually done days before Ramadan in your country?", + "annotations": [ + { + "answers": [ + "التنظيف", + "تنظيف البيت" + ], + "en_answers": [ + "cleaning", + "house cleaning" + ], + "count": 2 + }, + { + "answers": [ + "الصيام" + ], + "en_answers": [ + "fasting" + ], + "count": 1 + }, + { + "answers": [ + "تحضيرات رمضان" + ], + "en_answers": [ + "ramadan preparations", + "preparation" + ], + "count": 1 + }, + { + "answers": [ + "الشراء" + ], + "en_answers": [ + "purchase", + "buy" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-10": { + "question": "ما هي أشهر معلم سياحي للزوار الأجانب في الجزائر؟", + "en_question": "What is the most popular tourist attraction for foreign visitors in your country?", + "annotations": [ + { + "answers": [ + "قصبة العاصمة", + "القصبة", + "قصبة الجزائر" + ], + "en_answers": [ + "casbah", + "kasbah" + ], + "count": 3 + }, + { + "answers": [ + "مقام الشهيد" + ], + "en_answers": [ + "martyrs' memorial", + "maqam echahid", + "martyr's memorial", + "memorial of the martyr", + "sanctuary of the martyr", + "maqam e'chahid" + ], + "count": 2 + }, + { + "answers": [ + "الهقار" + ], + "en_answers": [ + "hoggar mountains" + ], + "count": 1 + }, + { + "answers": [ + "جانيت" + ], + "en_answers": [ + "djanet", + "dżanat" + ], + "count": 1 + }, + { + "answers": [ + "تاغيت" + ], + "en_answers": [ + "taghit" + ], + "count": 1 + }, + { + "answers": [ + "الضريح الملكي الموريتاني", + "قبر الرومية" + ], + "en_answers": [ + "royal mausoleum of mauretania" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-11": { + "question": "ما هي أشهر المواقع الدينية (معبد، كنيسة، إلخ) للسياحة في الجزائر؟", + "en_question": "What is the most popular religious sites (temple, church, etc.) for tourism in your country?", + "annotations": [ + { + "answers": [ + "السيدة الأفريقية", + "notre dame d'afrique", + "السيدة الافريقية", + "كنيسة \"سيدة إفريقيا\" بأعالي العاصمة" + ], + "en_answers": [ + "our lady of africa", + "our mother of africa", + "notre-dame d'afrique", + "basilica of our lady of africa" + ], + "count": 4 + }, + { + "answers": [ + "المسجد الكبير" + ], + "en_answers": [ + "the great mosque", + "djamaa el kebir" + ], + "count": 2 + }, + { + "answers": [ + "سنتا كروز", + "سانتا كروز" + ], + "en_answers": [ + "santa cruz" + ], + "count": 1 + }, + { + "answers": [ + "مسجد كتشاوة" + ], + "en_answers": [ + "ketchaoua mosque", + "ketchawa mosque" + ], + "count": 1 + }, + { + "answers": [ + "جامع الجزائر" + ], + "en_answers": [ + "grand mosque of algeria", + "djamaâ el-djazaïr", + "great mosque of algiers", + "djamaa el djazaïr" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-15": { + "question": "ما هي الملابس التي ترتديها النساء عادة في حفل تخرج الجامعات في الجزائر؟", + "en_question": "What clothes do women usually wear on graduation commencement ceremony in your country?", + "annotations": [ + { + "answers": [ + "ملابسهم العادية" + ], + "en_answers": [ + "their regular clothes", + "regular clothes" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "not-applicable": 1, + "idk": 1 + } + }, + "Kik-in-16": { + "question": "ما هو المشروب الذي يتم استهلاكه بكثرة في الجزائر عندما يكون الطقس باردا؟", + "en_question": "What drink is commonly consumed in your country when the weather is cold?", + "annotations": [ + { + "answers": [ + "الشاي" + ], + "en_answers": [ + "tea" + ], + "count": 3 + }, + { + "answers": [ + "القهوة" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + }, + { + "answers": [ + "لويزة" + ], + "en_answers": [ + "verbena" + ], + "count": 1 + }, + { + "answers": [ + "الزعتر" + ], + "en_answers": [ + "thyme" + ], + "count": 1 + }, + { + "answers": [ + "السحلب" + ], + "en_answers": [ + "salep", + "sahlab" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-17": { + "question": "أي نوع من الفواكه يُباع ويُوجد بكثرة خلال شهر رمضان في الجزائر؟", + "en_question": "What fruit is more commonly sold and found during Ramadan in your country?", + "annotations": [ + { + "answers": [ + "التمر", + "الثمر", + "تمر" + ], + "en_answers": [ + "dates" + ], + "count": 3 + }, + { + "answers": [ + "فراولة", + "الفراولة" + ], + "en_answers": [ + "strawberry" + ], + "count": 1 + }, + { + "answers": [ + "بطيخ", + "البطيخ" + ], + "en_answers": [ + "watermelon" + ], + "count": 1 + }, + { + "answers": [ + "الليمون" + ], + "en_answers": [ + "lemon" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-24": { + "question": "أي نوع من الكربوهيدرات يقدم عادة مع الدجاج في مطعم الوجبات السريعة في الجزائر؟", + "en_question": "What carbohydrate is usually served with chicken in a fast-food restaurant in your country?", + "annotations": [ + { + "answers": [ + "البطاطا", + "البطاطا المقلية", + "بطاطا" + ], + "en_answers": [ + "potatoes", + "fried potato", + "french fries", + "chips", + "potato" + ], + "count": 4 + }, + { + "answers": [ + "الأرز" + ], + "en_answers": [ + "rice" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-31": { + "question": "ما هي أشهر رياضة فنون قتالية في الجزائر؟", + "en_question": "What is the most famous martial art sports in your country?", + "annotations": [ + { + "answers": [ + "الجودو", + "الجيدو" + ], + "en_answers": [ + "judo" + ], + "count": 4 + }, + { + "answers": [ + "المصارعة" + ], + "en_answers": [ + "wrestling" + ], + "count": 1 + }, + { + "answers": [ + "الملاكمة" + ], + "en_answers": [ + "boxing" + ], + "count": 1 + }, + { + "answers": [ + "كراتيه" + ], + "en_answers": [ + "karate", + "karaté" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-34": { + "question": "ما هي الرياضات التي غالبا ما تُبث على التلفزيون الوطني في الجزائر؟", + "en_question": "What sports are often broadcasted on national television in your country?", + "annotations": [ + { + "answers": [ + "كرة القدم", + "كرة القدم، ألعاب القوى، الملاكمة" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "كرة اليد" + ], + "en_answers": [ + "handball" + ], + "count": 1 + }, + { + "answers": [ + "العدو", + "الركض" + ], + "en_answers": [ + "running" + ], + "count": 1 + }, + { + "answers": [ + "ألعاب القوى", + "كرة القدم، ألعاب القوى، الملاكمة" + ], + "en_answers": [ + "athletics" + ], + "count": 1 + }, + { + "answers": [ + "الملاكمة", + "كرة القدم، ألعاب القوى، الملاكمة" + ], + "en_answers": [ + "boxing" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-35": { + "question": "ما هي الرياضات التي كانت شائعة بين الناس في الجزائر خلال جائحة كوفيد-19؟", + "en_question": "What sports were popular among people from your country during the COVID-19 pandemic?", + "annotations": [ + { + "answers": [ + "كرة القدم" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "المشي في المساحات المفتوحة", + "المشي و الركض في المساحات المفتوحة" + ], + "en_answers": [ + "walking in open spaces", + "walk" + ], + "count": 1 + }, + { + "answers": [ + "الركض في المساحات المفتوحة", + "المشي و الركض في المساحات المفتوحة" + ], + "en_answers": [ + "running in open spaces", + "run" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Kik-in-36": { + "question": "من هو أشهر مدرب كرة قدم في الجزائر؟", + "en_question": "Who is the most popular soccer coach in your country?", + "annotations": [ + { + "answers": [ + "رابح سعدان" + ], + "en_answers": [ + "rabah saâdane", + "rabah saadane" + ], + "count": 3 + }, + { + "answers": [ + "جمال بلماضي", + "بلماضي" + ], + "en_answers": [ + "belmadi", + "djamel belmadi" + ], + "count": 3 + }, + { + "answers": [ + "بن شيخ" + ], + "en_answers": [ + "ben sheikh", + "ben cheikh", + "ali bencheikh", + "ali \"alilou\" bencheikh" + ], + "count": 1 + }, + { + "answers": [ + "حليلوزيتش" + ], + "en_answers": [ + "halilhodžić", + "vahid halilhodžić", + "vahid halilhodzic" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-37": { + "question": "ما هي الفرق الكروية في الجزائر المعروفة بتنافسها الشديد؟ (مثلاً ___ ضد ___)", + "en_question": "What soccer teams in your country are famous for their intense rivalry? (e.g. ___ vs ___)", + "annotations": [ + { + "answers": [ + "مولودية العاصمة ضد اتحاد العاصمة", + "مولودية الجزائر ضد اتحاد الجزائر", + "مولودية الجزائر ضد إتحاد العاصمة", + "مولودية الجزائرضد اتحاد العاصمة", + "المولودية ضد إتحاد العاصمة" + ], + "en_answers": [ + "mc algiers vs usm algiers", + "usm algiers vs mc algiers", + "mc alger vs usm alger", + "usm alger vs mc alger", + "mc alger vs. usm alger", + "mouloudia vs. usm alger" + ], + "count": 5 + }, + { + "answers": [ + "مولودية العاصمة ضد شباب بلوزداد", + "مولودية العاصمة ضد اتحاد العاصمة" + ], + "en_answers": [ + "mc algiers vs cr belouizdad", + "cr belouizdad vs mc algiers" + ], + "count": 1 + }, + { + "answers": [ + "اتحاد العاصمة ضد شبيبة القبائل", + "إتحاد العاصمة ضد شبيبة القبائل" + ], + "en_answers": [ + "usm alger vs js kabylie", + "js kabylie vs usm alger" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-38": { + "question": "ما هي أسماء مشجعي كرة القدم في الجزائر الذين يشتهرون بتنافسهم الشديد؟ (مثلاً ___ ضد ___)", + "en_question": "What are the names of soccer supporters in your country who are famous for their intense rivalry? (e.g. ___ vs ___)", + "annotations": [ + { + "answers": [ + "شناوة ضد المسمعية", + "مولودية الجزائرضد اتحاد العاصمة", + "الشناوة ضد المسامعية", + "مولودية الجزائر ضد إتحاد العاصمة", + "المولودية ضد إتحاد العاصمة" + ], + "en_answers": [ + "chnaoua against the listeners", + "the chanawa against the m'samadia" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-40": { + "question": "من هو أشهر لاعب بادمنتون رجالي في الجزائر؟", + "en_question": "Who is the most famous male badminton player in your country?", + "annotations": [], + "idks": { + "not-applicable": 3, + "idk": 1, + "no-answer": 1 + } + }, + "Kik-in-41": { + "question": "من هي أشهر لاعبة بادمنتون في الجزائر؟", + "en_question": "Who is the most famous female badminton player in your country?", + "annotations": [], + "idks": { + "not-applicable": 3, + "idk": 1, + "no-answer": 1 + } + }, + "Kik-in-44": { + "question": "أي رياضة تحظى بأكبر دعم من الحكومة في الجزائر؟", + "en_question": "What sport gets the most support from the government in your country?", + "annotations": [ + { + "answers": [ + "كرة القدم" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-45": { + "question": "ما هي المرافق الرياضية المتوفرة عادة في المدارس الجزائرية؟", + "en_question": "What sports field facilities are usually available at schools in your country?", + "annotations": [ + { + "answers": [ + "ملاعب", + "ملعب كرة القدم", + "الملعب", + "ملعب" + ], + "en_answers": [ + "stadiums", + "football stadium", + "soccer statdium", + "stadium" + ], + "count": 4 + }, + { + "answers": [ + "سلة كرة السلة" + ], + "en_answers": [ + "basketball hoop", + "basketball court" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-02": { + "question": "أي مشروب يستمتع به الجزائريون عادة في المقاهي؟", + "en_question": "What cafe beverage do people from your country most commonly enjoy?", + "annotations": [ + { + "answers": [ + "القهوة", + "قهوة" + ], + "en_answers": [ + "coffee" + ], + "count": 5 + }, + { + "answers": [ + "الصودا" + ], + "en_answers": [ + "soda" + ], + "count": 1 + }, + { + "answers": [ + "الشاي" + ], + "en_answers": [ + "tea" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-04": { + "question": "ما هو الطعام المفضل لعلاج صداع الخمر لدى الشعب الجزائري؟", + "en_question": "What is the preferred hangover cure food for people from your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Na-ko-05": { + "question": "ما هو الطعام الذي يطلبه الكثيرون في الجزائر؟(delivery)", + "en_question": "What is the typical delivery food in your country?", + "annotations": [ + { + "answers": [ + "البيتزا", + "بيتزا", + "بيزا" + ], + "en_answers": [ + "pizza" + ], + "count": 4 + }, + { + "answers": [ + "الدجاج", + "دجاج" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-07": { + "question": "أي نوع من اللحوم يستهلكه الجزائريون أكثر؟", + "en_question": "What type of meat is consumed most by people from your country?", + "annotations": [ + { + "answers": [ + "الدجاج", + "دجاج" + ], + "en_answers": [ + "chicken" + ], + "count": 4 + }, + { + "answers": [ + "الغنم", + "غنم" + ], + "en_answers": [ + "sheep" + ], + "count": 1 + }, + { + "answers": [ + "البقر", + "بقر" + ], + "en_answers": [ + "cows", + "beef" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-08": { + "question": "أي نوع من الفواكه يتناوله الجزائريون غالبًا في موسم الخريف؟", + "en_question": "What fruit do people from your country often eat in the autumn season?", + "annotations": [ + { + "answers": [ + "الموز" + ], + "en_answers": [ + "banana" + ], + "count": 1 + }, + { + "answers": [ + "التفاح" + ], + "en_answers": [ + "apple" + ], + "count": 1 + }, + { + "answers": [ + "التمر" + ], + "en_answers": [ + "dates" + ], + "count": 1 + }, + { + "answers": [ + "البرتقال" + ], + "en_answers": [ + "orange" + ], + "count": 1 + }, + { + "answers": [ + "التين" + ], + "en_answers": [ + "fig" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-09": { + "question": "ما هو الطبق الجانبي الأكثر شيوعاً الذي يُقدم على مائدة الطعام في الجزائر؟", + "en_question": "What side dish is the most commonly served on a dining table in your country?", + "annotations": [ + { + "answers": [ + "السلطة", + "السلاطة" + ], + "en_answers": [ + "salad" + ], + "count": 2 + }, + { + "answers": [ + "الجواز", + "الجواز (سلاطة خضر متنوعة)" + ], + "en_answers": [ + "stew" + ], + "count": 1 + }, + { + "answers": [ + "الحميس", + "حميس", + "سلطة فلفل" + ], + "en_answers": [ + "hmiss", + "pepper salad" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-11": { + "question": "ماذا يأكل الناس في الجزائر أثناء مشاهدة مباراة كرة القدم؟", + "en_question": "What do people from your country eat while watching a soccer game?", + "annotations": [ + { + "answers": [ + "المكسرات", + "مكسرات" + ], + "en_answers": [ + "nuts" + ], + "count": 2 + }, + { + "answers": [ + "الفستق", + "فستق" + ], + "en_answers": [ + "pistachio" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-15": { + "question": "ما هو الطعام المغذي الممثل في الجزائر؟", + "en_question": "What is the representative nourishing food in your country?", + "annotations": [ + { + "answers": [ + "الحساء" + ], + "en_answers": [ + "soup" + ], + "count": 1 + }, + { + "answers": [ + "الفاصوليا" + ], + "en_answers": [ + "bean" + ], + "count": 1 + }, + { + "answers": [ + "التمر" + ], + "en_answers": [ + "dates" + ], + "count": 1 + }, + { + "answers": [ + "الكسكسي", + "الكسكس" + ], + "en_answers": [ + "couscous" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-16": { + "question": "من هو أشهر لاعب كرة قدم في الجزائر؟", + "en_question": "Who is the most famous soccer player in your country?", + "annotations": [ + { + "answers": [ + "رابح ماجر" + ], + "en_answers": [ + "rabah madjer" + ], + "count": 3 + }, + { + "answers": [ + "رياض محرز", + "محرز" + ], + "en_answers": [ + "riyad mahrez", + "mahrez" + ], + "count": 3 + }, + { + "answers": [ + "اسلام سليماني" + ], + "en_answers": [ + "islam slimani" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-17": { + "question": "ما هي الرياضة التي يستمتع بها الطلاب الذكور أثناء وقت الغداء في المدرسة في الجزائر؟", + "en_question": "What sports do male students enjoy during lunch time at school in your country?", + "annotations": [], + "idks": { + "idk": 3, + "no-answer": 2, + "not-applicable": 0 + } + }, + "Na-ko-18": { + "question": "ما هي الرياضة التي تشارك فيها الفتيات خلال حصص التربية البدنية في الجزائر؟", + "en_question": "What is the most common sport girls participate in during physical education classes in your country?", + "annotations": [ + { + "answers": [ + "كرة الطائرة" + ], + "en_answers": [ + "volleyball" + ], + "count": 2 + }, + { + "answers": [ + "كرة السلة" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "القفز" + ], + "en_answers": [ + "jumping" + ], + "count": 1 + }, + { + "answers": [ + "العدو", + "الركض" + ], + "en_answers": [ + "running" + ], + "count": 1 + }, + { + "answers": [ + "رمي الجلة" + ], + "en_answers": [ + "shot put" + ], + "count": 1 + }, + { + "answers": [ + "ألعاب القوى" + ], + "en_answers": [ + "athletics" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-19": { + "question": "من هو أشهر لاعب كرة طائرة في الجزائر؟", + "en_question": "Who is the most popular volleyball player in your country?", + "annotations": [], + "idks": { + "idk": 3, + "no-answer": 2, + "not-applicable": 0 + } + }, + "Na-ko-20": { + "question": "أي حدث رياضي يتابعه الجزائريون بشغف في المنافسات الدولية؟", + "en_question": "What sports event do people from your country passionately support the most in international competitions?", + "annotations": [ + { + "answers": [ + "كأس العالم", + "كأس العالم لكرة القدم", + "كاس العالم" + ], + "en_answers": [ + "world cup", + "fifa world cup" + ], + "count": 4 + }, + { + "answers": [ + "كأس إفريقيا لكرة القدم", + "كاس امم افريقيا", + "كأس أمم افريقيا,كأس إفريقيا للأمم" + ], + "en_answers": [ + "african cup of nations", + "africa cup of nations", + "caf" + ], + "count": 2 + }, + { + "answers": [ + "رابطة الابطال" + ], + "en_answers": [ + "champions league" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-22": { + "question": "أي بلد يعتبر المنافس الأكبر للجزائرفي مباريات كرة القدم ؟", + "en_question": "Which country is considered the biggest rival in soccer matches for your country?", + "annotations": [ + { + "answers": [ + "مصر" + ], + "en_answers": [ + "egypt" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-23": { + "question": "أي نوع من الأكاديميات الرياضية يرتادها الأطفال في الجزائر أكثر؟", + "en_question": "What type of sports academies do children attend the most in your country?", + "annotations": [ + { + "answers": [ + "النوادي المحلية" + ], + "en_answers": [ + "local clubs" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "Na-ko-24": { + "question": "ما هو الطعام الأكثر شيوعاً الذي يتناوله الناس في الملاعب الرياضية أثناء مشاهدة المباريات في الجزائر؟", + "en_question": "What is the most commonly eaten food in sports stadiums while watching games in your country?", + "annotations": [ + { + "answers": [ + "المكسرات" + ], + "en_answers": [ + "nuts" + ], + "count": 1 + }, + { + "answers": [ + "البيض المقلي بالبطاطس" + ], + "en_answers": [ + "fried eggs with fries", + "fried eggs with potato" + ], + "count": 1 + }, + { + "answers": [ + "سندويتش" + ], + "en_answers": [ + "sandwich" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-25": { + "question": "ما هي الرياضات النموذجية التي تُلعب في يوم الرياضة المدرسية في الجزائر؟", + "en_question": "What are the typical sports played in your country's school sports day?", + "annotations": [ + { + "answers": [ + "رمي الجلة" + ], + "en_answers": [ + "shot put" + ], + "count": 2 + }, + { + "answers": [ + "القفز", + "القفز الطويل" + ], + "en_answers": [ + "jumping", + "long jump" + ], + "count": 2 + }, + { + "answers": [ + "كرة السلة" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "كرة اليد" + ], + "en_answers": [ + "handball" + ], + "count": 1 + }, + { + "answers": [ + "العدو", + "الركض" + ], + "en_answers": [ + "running" + ], + "count": 1 + }, + { + "answers": [ + "ألعاب القوى" + ], + "en_answers": [ + "athletics" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-26": { + "question": "ما هي الرياضات الشعبية لدى السكان في منتصف العمر في الجزائر؟", + "en_question": "What are the popular sports among the middle-aged population in your country?", + "annotations": [ + { + "answers": [ + "كرة القدم" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "العدو", + "الركض" + ], + "en_answers": [ + "running" + ], + "count": 1 + }, + { + "answers": [ + "الدراجة الهوائية" + ], + "en_answers": [ + "bicycle" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-28": { + "question": "من هو أشهر لاعب رياضات شتوية في الجزائر؟", + "en_question": "Who is the most popular winter sports player in your country?", + "annotations": [], + "idks": { + "not-applicable": 2, + "no-answer": 2, + "idk": 1 + } + }, + "Na-ko-29": { + "question": "من هو أشهر سباح في الجزائر؟", + "en_question": "Who is the most famous swimmer in your country?", + "annotations": [ + { + "answers": [ + "سليم إيلاس" + ], + "en_answers": [ + "salim iles" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Na-ko-30": { + "question": "ما هي أشهر لعبة رياضة إلكترونية في الجزائر؟", + "en_question": "What is the most popular e-sports game in your country?", + "annotations": [ + { + "answers": [ + "pubg" + ], + "en_answers": [ + "playerunknown's battlegrounds" + ], + "count": 1 + }, + { + "answers": [ + "cs" + ], + "en_answers": [ + "counter-strike", + "counter strike" + ], + "count": 1 + }, + { + "answers": [ + "فيفا" + ], + "en_answers": [ + "fifa" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Na-ko-33": { + "question": "ما هي الأطعمة الرمزية التي يتناولها الجزائريون في السنة الجديدة القمرية؟", + "en_question": "What symbolic food do people from your country eat on (Lunar) New Year?", + "annotations": [ + { + "answers": [ + "الشخشوخة", + "شخشوخة" + ], + "en_answers": [ + "chakhchoukha" + ], + "count": 2 + }, + { + "answers": [ + "الرشتة", + "رشتة" + ], + "en_answers": [ + "rechta" + ], + "count": 1 + }, + { + "answers": [ + "الكسكسي", + "الكسكس, كسكس" + ], + "en_answers": [ + "couscous" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "Na-ko-37": { + "question": "ما هو أشهر مكان لقضاء العطلة داخل الجزائر بالنسبة للجزائريين؟", + "en_question": "What is the most popular domestic vacation spot for people from your country?", + "annotations": [ + { + "answers": [ + "بجاية" + ], + "en_answers": [ + "bejaia", + "béjaïa", + "bougie", + "bugia" + ], + "count": 2 + }, + { + "answers": [ + "جيجل" + ], + "en_answers": [ + "jijel" + ], + "count": 2 + }, + { + "answers": [ + "الساحل", + "شاطئ البحر" + ], + "en_answers": [ + "coast", + "beach" + ], + "count": 2 + }, + { + "answers": [ + "الصحراء" + ], + "en_answers": [ + "desert" + ], + "count": 1 + }, + { + "answers": [ + "وهران" + ], + "en_answers": [ + "oran" + ], + "count": 1 + }, + { + "answers": [ + "عنابة" + ], + "en_answers": [ + "annaba", + "bon", + "bona", + "bône" + ], + "count": 1 + }, + { + "answers": [ + "تيبازة" + ], + "en_answers": [ + "tipaza", + "tipasa" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-38": { + "question": "ما هو أكثر هدية زواج شائعة بين العروس والعريس في الجزائر؟", + "en_question": "What is the most common wedding gift between bride and groom in your country?", + "annotations": [ + { + "answers": [ + "ذهب", + "طاقم ذهب" + ], + "en_answers": [ + "gold", + "gold set" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "Na-ko-39": { + "question": "ماذا يُعطى عادة كبادرة تهنئة عند حضور زفاف صديق في الجزائر؟", + "en_question": "What is typically given as a congratulatory gesture when attending a friend's wedding in your country?", + "annotations": [ + { + "answers": [ + "المال", + "نقود", + "مبلغ مالي" + ], + "en_answers": [ + "money", + "amount of money" + ], + "count": 3 + }, + { + "answers": [ + "اواني", + "أواني" + ], + "en_answers": [ + "utensils" + ], + "count": 1 + }, + { + "answers": [ + "اكواب زجاج", + "أكواب زجاج" + ], + "en_answers": [ + "glass cup" + ], + "count": 1 + }, + { + "answers": [ + "هدية" + ], + "en_answers": [ + "gift" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-40": { + "question": "كم يوماً عادة ما تستمر مراسم الجنازة في الجزائر؟ (استعمل الأرقام العربية مثل 12).", + "en_question": "How long (in days) does a funeral typically last in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 5 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-41": { + "question": "ماذا يجب أن تقدم كهدية عند حضور جنازة في الجزائر؟", + "en_question": "What should you prepare as a condolence offering when attending a funeral in your country?", + "annotations": [ + { + "answers": [ + "المساعدة" + ], + "en_answers": [ + "help" + ], + "count": 1 + }, + { + "answers": [ + "اكل طازج", + "أكل طازج" + ], + "en_answers": [ + "fresh food" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "no-answer": 2, + "idk": 0 + } + }, + "Na-ko-42": { + "question": "أي نوع من الطعام يقدم عادة في مراسم الجنازات في الجزائر؟", + "en_question": "What type of food is commonly provided at funeral parlors in your country?", + "annotations": [ + { + "answers": [ + "الكسكس", + "كسكس", + "الكسكسي" + ], + "en_answers": [ + "couscous" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-43": { + "question": "ماذا يفعل الناس في الجزائر في صباح السنة القمرية الجديدة؟", + "en_question": "What do people do in your country in the morning of the (Lunar) New Year?", + "annotations": [ + { + "answers": [ + "ينامون" + ], + "en_answers": [ + "they sleep" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 1, + "no-answer": 1 + } + }, + "Na-ko-44": { + "question": "ما هو اليوم الذي تشهد فيه الجزائر أشد ازدحام مروري على الصعيد الوطني؟", + "en_question": "When is the day with your country's most severe nationwide traffic congestion?", + "annotations": [ + { + "answers": [ + "عيد الفطر" + ], + "en_answers": [ + "eid al-fitr", + "eid ul-fitr" + ], + "count": 1 + }, + { + "answers": [ + "الدخول الجتماعي" + ], + "en_answers": [ + "social re-entry" + ], + "count": 1 + }, + { + "answers": [ + "الإثنين" + ], + "en_answers": [ + "monday" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Na-ko-45": { + "question": "ما هي أشهر وجهة شهر عسل في الجزائر؟", + "en_question": "What is the most popular honeymoon destination in your country?", + "annotations": [ + { + "answers": [ + "تونس" + ], + "en_answers": [ + "tunisia" + ], + "count": 1 + }, + { + "answers": [ + "تركيا" + ], + "en_answers": [ + "turkey", + "türkiye" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 1 + } + }, + "Ne-ar-05": { + "question": "ما هو أهم عيد وطني في الجزائر؟", + "en_question": "What is the most important national holiday in your country?", + "annotations": [ + { + "answers": [ + "عيد الإستقلال", + "عيد الاستقلال", + "يوم الإستقلال" + ], + "en_answers": [ + "independence day" + ], + "count": 4 + }, + { + "answers": [ + "عيد الفطر" + ], + "en_answers": [ + "eid al-fitr", + "eid ul-fitr" + ], + "count": 1 + }, + { + "answers": [ + "عيد الاضحى" + ], + "en_answers": [ + "eid al-adha" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-06": { + "question": "ماذا يأكل الجزائريون في رمضان؟", + "en_question": "What do people from your country eat in Ramadan?", + "annotations": [ + { + "answers": [ + "البوراك", + "بوراك", + "حساء و بوراك" + ], + "en_answers": [ + "bourek", + "bourak" + ], + "count": 3 + }, + { + "answers": [ + "حساء", + "حساء و بوراك", + "الشوربة", + "شوربة" + ], + "en_answers": [ + "soup" + ], + "count": 3 + }, + { + "answers": [ + "الشربة", + "الشربة، الجاري، الحريرة" + ], + "en_answers": [ + "chorba soup", + "shourba frik", + "shourba soup" + ], + "count": 2 + }, + { + "answers": [ + "قلب اللوز" + ], + "en_answers": [ + "kel ellouz", + "kalb el louz", + "qalb ellouz", + "kalbellouze", + "qalbellouze" + ], + "count": 1 + }, + { + "answers": [ + "مثوم" + ], + "en_answers": [ + "mthouwem", + "mtewem" + ], + "count": 1 + }, + { + "answers": [ + "الجاري", + "الشربة، الجاري، الحريرة" + ], + "en_answers": [ + "jari soup", + "jari bel frik" + ], + "count": 1 + }, + { + "answers": [ + "الحريرة", + "الشربة، الجاري، الحريرة" + ], + "en_answers": [ + "harira soup", + "harira" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-09": { + "question": "ماذا يأكل الناس الجزائريون في عيد الفطر؟", + "en_question": "What do people from your country eat in Eid ul Fitr?", + "annotations": [ + { + "answers": [ + "الحلوى", + "حلويات", + "الحلويات", + "حلوى العيد", + "حلويات متنوعة" + ], + "en_answers": [ + "sweets", + "eid sweets", + "assorted sweets" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-10": { + "question": "ماذا يأكل الناس الجزائريون في عيد الأضحى؟", + "en_question": "What do people from your country eat in Eid ul Adha?", + "annotations": [ + { + "answers": [ + "اللحم", + "لحم مشوي", + "لحم الأضحية" + ], + "en_answers": [ + "meat", + "grilled meat", + "sacrificial meat" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-11": { + "question": "أين يذهب الناس في الجزائر للاحتفال برأس السنة الجديدة؟", + "en_question": "Where do people from your country go to celebrate New Year's Day?", + "annotations": [ + { + "answers": [ + "الصحراء" + ], + "en_answers": [ + "sahara" + ], + "count": 1 + }, + { + "answers": [ + "المنزل", + "البيت" + ], + "en_answers": [ + "house", + "home" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 1 + } + }, + "Ne-ar-14": { + "question": "أين تجتمع العائلة للاحتفال بعيد الفطر في الجزائر؟", + "en_question": "Where do a family gather for Eid festivities in your country?", + "annotations": [ + { + "answers": [ + "بيت الوالدين", + "في المزل العائلي", + "المنزل", + "في بيت الجد" + ], + "en_answers": [ + "parents' house", + "parents'", + "in the family home", + "home", + "house" + ], + "count": 3 + }, + { + "answers": [ + "منزل الأجداد", + "في بيت الجد" + ], + "en_answers": [ + "grandparents'", + "grandfather's" + ], + "count": 2 + }, + { + "answers": [ + "بيت اكبر الاخوة" + ], + "en_answers": [ + "house of the eldest brother", + "eldest brother's" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-16": { + "question": "متى تكون عطلة نهاية الأسبوع في الجزائر (مثلا الاثنين، الثلاثاء)؟", + "en_question": "When is the weekend in your country (e.g. Monday, Tuesday)?", + "annotations": [ + { + "answers": [ + "الجمعة", + "الجمعة السبت" + ], + "en_answers": [ + "friday" + ], + "count": 5 + }, + { + "answers": [ + "السبت", + "الجمعة السبت" + ], + "en_answers": [ + "saturday" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-17": { + "question": "في أي وقت يبدأ معظم الناس العمل في الجزائر؟ (قدم الوقت بتنسيق الساعة:الدقيقة مثل، 18:00، 09:00).", + "en_question": "At what time do most people start work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 5 + }, + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 1 + }, + { + "answers": [ + "08:30" + ], + "en_answers": [ + "08:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-18": { + "question": "في أي وقت ينهي معظم الناس العمل في الجزائر؟ (قدم الوقت بتنسيق الساعة:الدقائق مثلاً، 18:00، 09:00).", + "en_question": "At what time do most people finish work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "16:00" + ], + "en_answers": [ + "16:00" + ], + "count": 3 + }, + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 2 + }, + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 1 + }, + { + "answers": [ + "16:30" + ], + "en_answers": [ + "16:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-20": { + "question": "ما هو العمل الذي يعتبر آمنا في الجزائر؟", + "en_question": "What is considered to be a secure job in your country?", + "annotations": [ + { + "answers": [ + "معلم في المدرسة", + "التعليم" + ], + "en_answers": [ + "education", + "teacher" + ], + "count": 2 + }, + { + "answers": [ + "موظف عمومي", + "موضف عمومي" + ], + "en_answers": [ + "public employee", + "civil service official", + "public servant" + ], + "count": 1 + }, + { + "answers": [ + "قاضي" + ], + "en_answers": [ + "judge" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-24": { + "question": "أي مدينة تعتبر المركز التجاري الرئيسي في الجزائر؟", + "en_question": "Which city is the primary commercial hub in your country?", + "annotations": [ + { + "answers": [ + "الجزائر العاصمة", + "الجزائر", + "العاصمة" + ], + "en_answers": [ + "algiers", + "capital" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-25": { + "question": "ما هي الصناعة التي تدفع أفضل الأجور في الجزائر؟", + "en_question": "What is the industry that pays the best in your country?", + "annotations": [ + { + "answers": [ + "المحروقات", + "النفط والغاز الطبيعي", + "البترول", + "الصناعات البترولية" + ], + "en_answers": [ + "fuel", + "oil and natural gas", + "petroleum", + "petroleum industries" + ], + "count": 4 + }, + { + "answers": [ + "الادوية", + "الأدوية" + ], + "en_answers": [ + "medicine" + ], + "count": 1 + }, + { + "answers": [ + "البنوك الخاصة" + ], + "en_answers": [ + "private bank" + ], + "count": 1 + }, + { + "answers": [ + "شركات الإتصالات الخاصة" + ], + "en_answers": [ + "private telecommunications" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-26": { + "question": "ما هي أشهر شركة عمومية في الجزائر؟", + "en_question": "What is the most famous public corporation in your country?", + "annotations": [ + { + "answers": [ + "سوناطراك" + ], + "en_answers": [ + "sonatrach" + ], + "count": 4 + }, + { + "answers": [ + "صيدال", + "سايدال" + ], + "en_answers": [ + "saidal" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-31": { + "question": "ما هو أشهر طبق في الجزائر؟", + "en_question": "What is the most famous dish in your country?", + "annotations": [ + { + "answers": [ + "الكسكس", + "كسكس", + "الكسكسي" + ], + "en_answers": [ + "couscous" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-32": { + "question": "ماذا يتناول الناس عادة للفطور في الجزائر؟", + "en_question": "What do people usually have for breakfast in your country?", + "annotations": [ + { + "answers": [ + "شطائر الخبز بالمربى", + "شطائر الخبز بالمعجون", + "الخبز مع المربى", + "القهوة والخبز مع الزبدة/المربى" + ], + "en_answers": [ + "bread sandwiches with jam", + "sandwich with jam", + "bread with jam" + ], + "count": 2 + }, + { + "answers": [ + "كرواسان", + "هلالية", + "الكرواسان", + "القهوة والخبز مع الكرواسان أو المخبوزات" + ], + "en_answers": [ + "croissant" + ], + "count": 2 + }, + { + "answers": [ + "خبز بالزبدة", + "الخبز مع الزبدة", + "القهوة والخبز مع الزبدة/المربى" + ], + "en_answers": [ + "bread with butter", + "bread and butter" + ], + "count": 2 + }, + { + "answers": [ + "القهوة", + "القهوة والخبز مع الزبدة/المربى", + "القهوة والخبز مع الكرواسان أو المخبوزات" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + }, + { + "answers": [ + "المخبوزات", + "القهوة والخبز مع الكرواسان أو المخبوزات" + ], + "en_answers": [ + "pastries" + ], + "count": 1 + }, + { + "answers": [ + "حليب", + "الحليب" + ], + "en_answers": [ + "milk" + ], + "count": 1 + }, + { + "answers": [ + "خبز" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "قهوة و حليب" + ], + "en_answers": [ + "coffee and milk" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-33": { + "question": "متى يتناول الناس الغداء في الجزائر عادة؟ (قدم الوقت بتنسيق الساعة:الدقيقة مثل، 18:00، 09:00).", + "en_question": "When do people usually have lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "12:00" + ], + "en_answers": [ + "12:00" + ], + "count": 5 + }, + { + "answers": [ + "12:30" + ], + "en_answers": [ + "12:30" + ], + "count": 1 + }, + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-34": { + "question": "ما هو الشيء الأساسي الذي لا غنى عنه في الوجبات في الجزائر؟", + "en_question": "What is typically indispensable in meals in your country?", + "annotations": [ + { + "answers": [ + "الخبز" + ], + "en_answers": [ + "bread" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-36": { + "question": "ما هو الطبق الاحتفالي التقليدي في الجزائر؟", + "en_question": "What is a typical festive meal in your country?", + "annotations": [ + { + "answers": [ + "الكسكس", + "الكسكسي", + "كسكس" + ], + "en_answers": [ + "couscous" + ], + "count": 3 + }, + { + "answers": [ + "الرشتة" + ], + "en_answers": [ + "rishta", + "lentils and pasta soup", + "libyan-style pasta", + "reshta", + "rechta" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-37": { + "question": "أي نوع من الفواكه يقدمه الناس عادة للسياح/الزوار القادمين من الخارج في الجزائر؟", + "en_question": "Which fruit do people usually offer tourists/visitors from abroad in your country?", + "annotations": [ + { + "answers": [ + "التمر" + ], + "en_answers": [ + "dates" + ], + "count": 3 + }, + { + "answers": [ + "الفواكه المحلية" + ], + "en_answers": [ + "local fruits", + "fruit" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-38": { + "question": "أي نوع من الطعام يقدمه الناس عادة كصدقة في الجزائر؟", + "en_question": "Which food do people usually offer as charity in your country?", + "annotations": [ + { + "answers": [ + "الكسكس", + "كسكس", + "الكسكسي" + ], + "en_answers": [ + "couscous" + ], + "count": 4 + }, + { + "answers": [ + "القمح" + ], + "en_answers": [ + "wheat" + ], + "count": 1 + }, + { + "answers": [ + "العدس" + ], + "en_answers": [ + "lentils", + "lentil" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-39": { + "question": "ما هي أرخص الوجبات السريعة في الجزائر؟", + "en_question": "What is the cheapest fast food in your country?", + "annotations": [ + { + "answers": [ + "الكلنتيكا", + "ساندويتش جرانتيتا", + "كرنتيكة" + ], + "en_answers": [ + "calentica", + "karantika", + "calentica sandwich", + "karantika sandwich" + ], + "count": 3 + }, + { + "answers": [ + "البيتزا المربعة", + "البيزا المربعة", + "شرائح البيتزا", + "البيتزا" + ], + "en_answers": [ + "square pizza", + "pizza carré", + "pizza carre", + "pizza slices" + ], + "count": 2 + }, + { + "answers": [ + "الكسكسي", + "الكسكس" + ], + "en_answers": [ + "couscous" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-43": { + "question": "ماذا يتناول الناس عادة مع الشاي في الجزائر؟", + "en_question": "What do people usually have with tea in your country?", + "annotations": [ + { + "answers": [ + "المكسرات" + ], + "en_answers": [ + "nuts" + ], + "count": 3 + }, + { + "answers": [ + "الفول السوداني" + ], + "en_answers": [ + "peanut" + ], + "count": 1 + }, + { + "answers": [ + "الحلويات" + ], + "en_answers": [ + "sweets" + ], + "count": 1 + }, + { + "answers": [ + "الفستق" + ], + "en_answers": [ + "pistachio" + ], + "count": 1 + }, + { + "answers": [ + "المقروط" + ], + "en_answers": [ + "makroud", + "makrout" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-44": { + "question": "ماذا يتناول الناس مع القهوة في الجزائر؟", + "en_question": "What do people have with coffee in your country?", + "annotations": [ + { + "answers": [ + "حلويات", + "الحلوى", + "الحلويات" + ], + "en_answers": [ + "sweets" + ], + "count": 4 + }, + { + "answers": [ + "المخبوزات" + ], + "en_answers": [ + "pastries" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-02": { + "question": "ما هو أشهر طعام تقليدي في الجزائر؟", + "en_question": "What is the most popular traditional food in your country?", + "annotations": [ + { + "answers": [ + "الكسكس", + "كسكس", + "الكسكسي" + ], + "en_answers": [ + "couscous" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-04": { + "question": "ما هو أشهر صلصة للتغميس في الجزائر؟", + "en_question": "What is the most popular dipping sauce in your country?", + "annotations": [ + { + "answers": [ + "الهريسة" + ], + "en_answers": [ + "harissa", + "harisee", + "hareesa", + "h'rissa", + "hrissa" + ], + "count": 2 + }, + { + "answers": [ + "الحميص (فلفل بالزيت)", + "الحميس" + ], + "en_answers": [ + "hmiss", + "pepper salad" + ], + "count": 2 + }, + { + "answers": [ + "المرقة" + ], + "en_answers": [ + "sauce" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-08": { + "question": "ما هو الطعام الأكثر استهلاكا خلال صيام المسيحيين في الجزائر؟", + "en_question": "What food is most often consumed during Christian fasting in your country?", + "annotations": [], + "idks": { + "not-applicable": 3, + "idk": 2, + "no-answer": 0 + } + }, + "New-am-15": { + "question": "ما هو الطعام الذي يُعد عادةً عندما تلد الأمهات في الجزائر؟", + "en_question": "What food is usually prepared when mothers give birth in your country?", + "annotations": [ + { + "answers": [ + "الطمينة", + "طمينة" + ], + "en_answers": [ + "tommina", + "tamina", + "semolina cake", + "semolina honey dessert" + ], + "count": 3 + }, + { + "answers": [ + "المشوشة", + "مشوشة" + ], + "en_answers": [ + "mchouwcha", + "mchawcha", + "m'shewsha" + ], + "count": 1 + }, + { + "answers": [ + "شطيطحة دجاج" + ], + "en_answers": [ + "chicken stew", + "chtitha jaj", + "chtitha djedj", + "chicken with chickpeas" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-27": { + "question": "من هي أشهر رياضية في الجزائر؟", + "en_question": "Who is the most popular female sportperson in your country?", + "annotations": [ + { + "answers": [ + "حسيبة بومرقة", + "بولمرقة" + ], + "en_answers": [ + "hassiba boulmerka", + "boulmerka" + ], + "count": 2 + }, + { + "answers": [ + "سليمة سواكري" + ], + "en_answers": [ + "salima souakri" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-34": { + "question": "أين يستعد معظم تلاميذ المدارس الابتدائية لامتحاناتهم في الجزائر؟", + "en_question": "Where do most elementary school students prepare for their exams in your country?", + "annotations": [ + { + "answers": [ + "في المنزل", + "البيت", + "في البيت", + "المنزل" + ], + "en_answers": [ + "at home", + "home", + "house" + ], + "count": 3 + }, + { + "answers": [ + "مدارس الدعم" + ], + "en_answers": [ + "support schools" + ], + "count": 1 + }, + { + "answers": [ + "المكتبة" + ], + "en_answers": [ + "library" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-41": { + "question": "في أي مستوى دراسي يؤدي الطلاب امتحانهم الوطني الأول في الجزائر؟", + "en_question": "In your country, at which grade level do students take their first national-level examination?", + "annotations": [ + { + "answers": [ + "الإبتدائي", + "الابتدائي" + ], + "en_answers": [ + "primary" + ], + "count": 3 + }, + { + "answers": [ + "المتوسط", + "في المستوى المتوسط" + ], + "en_answers": [ + "middle school", + "lower-secondary school" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-53": { + "question": "أي منطقة في الجزائر معروفة بصناعة القهوة / الشاي؟", + "en_question": "Which region in your country is widely known for its coffee/tea industry?", + "annotations": [ + { + "answers": [ + "الصحراء", + "الصحراء (الشاي)", + "الجنوب الجزائري" + ], + "en_answers": [ + "sahara", + "southern algeria", + "south algeria" + ], + "count": 3 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "New-am-54": { + "question": "أي منطقة في الجزائر معروفة بتربية المواشي؟", + "en_question": "Which region in your country is widely known for its livestock industry?", + "annotations": [ + { + "answers": [ + "الجلفة" + ], + "en_answers": [ + "djelfa" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-59": { + "question": "ما هي المهنة الأساسية لسكان صحراء الجزائر؟", + "en_question": "What is the main occupation of people living in deserts in your country?", + "annotations": [ + { + "answers": [ + "التجارة" + ], + "en_answers": [ + "commerce" + ], + "count": 2 + }, + { + "answers": [ + "تربية الانعام", + "تربية المواشي" + ], + "en_answers": [ + "livestock breeding", + "livestock", + "livestock farming" + ], + "count": 2 + }, + { + "answers": [ + "الزراعة" + ], + "en_answers": [ + "agriculture" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-60": { + "question": "أي حيوان يستخدم للنقل في الجزائر؟", + "en_question": "Which animal is typically used for transportation in your country?", + "annotations": [ + { + "answers": [ + "الجمل", + "البعير", + "الإبل" + ], + "en_answers": [ + "camels", + "camel" + ], + "count": 3 + }, + { + "answers": [ + "الخيل" + ], + "en_answers": [ + "horses", + "horse" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "New-am-72": { + "question": "ما هو أشهر كتاب قصص مصورة للأطفال في الجزائر؟", + "en_question": "What is the most popular comic book for children to read in your country?", + "annotations": [ + { + "answers": [ + "قصص كليلة و دمنة" + ], + "en_answers": [ + "kalila and dimna stories", + "kalila wa dimna", + "kalila et dimna" + ], + "count": 1 + }, + { + "answers": [ + "النملة و الصرصور" + ], + "en_answers": [ + "the ant and the cockroach" + ], + "count": 1 + }, + { + "answers": [ + "مقيدش" + ], + "en_answers": [ + "mkidech" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-am-73": { + "question": "ما هي أشهر قناة يوتيوب للأطفال في الجزائر؟", + "en_question": "What is the most popular YouTube channel for children in your country?", + "annotations": [], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-74": { + "question": "ما هو أشهر برنامج حواري في الجزائر؟", + "en_question": "What is the most popular talk show in your country?", + "annotations": [ + { + "answers": [ + "ما وراء الجدران" + ], + "en_answers": [ + "beyond the walls" + ], + "count": 1 + }, + { + "answers": [ + "في دائرة الضوء" + ], + "en_answers": [ + "in the spotlight" + ], + "count": 1 + }, + { + "answers": [ + "ضيف الصباح" + ], + "en_answers": [ + "morning guest" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-77": { + "question": "ما هو أشهر عيد ديني في الجزائر؟", + "en_question": "What is the most famous religious holiday in your country?", + "annotations": [ + { + "answers": [ + "عيد الفطر", + "عيد الفطر و الاضحى" + ], + "en_answers": [ + "eid al-fitr", + "eid ul-fitr" + ], + "count": 5 + }, + { + "answers": [ + "عيد الأضحى", + "عيد الاضحى", + "عيد الفطر و الاضحى" + ], + "en_answers": [ + "eid al-adha" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-81": { + "question": "ما هو أكثر شهر تقام فيه الأعراس في الجزائر؟ (قدم الأرقام العربية فقط مثل، 1.)", + "en_question": "What is the busiest month for weddings in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 4 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-83": { + "question": "ما هي الآلة الموسيقية التقليدية الأكثر شعبية في الجزائر؟", + "en_question": "What is the most popular traditional musical instrument in your country?", + "annotations": [ + { + "answers": [ + "الدربوكة", + "الدربوكا" + ], + "en_answers": [ + "darbuka", + "goblet drum", + "derbouka", + "darbouka" + ], + "count": 3 + }, + { + "answers": [ + "العود" + ], + "en_answers": [ + "oud" + ], + "count": 1 + }, + { + "answers": [ + "المندول" + ], + "en_answers": [ + "mandole", + "mandol", + "mondol" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-01": { + "question": "ما هو المنتج الزراعي الرئيسي الذي يتم إنتاجه في الجزائر؟", + "en_question": "What is the main agricultural product produced in your country?", + "annotations": [ + { + "answers": [ + "القمح" + ], + "en_answers": [ + "wheat" + ], + "count": 2 + }, + { + "answers": [ + "البطاطا" + ], + "en_answers": [ + "potatoes", + "potato" + ], + "count": 2 + }, + { + "answers": [ + "التمر" + ], + "en_answers": [ + "dates" + ], + "count": 2 + }, + { + "answers": [ + "الزيتون" + ], + "en_answers": [ + "olives", + "olive" + ], + "count": 1 + }, + { + "answers": [ + "الحمضيات" + ], + "en_answers": [ + "citrus fruit" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-02": { + "question": "ما هو أشهر طعام مصنوع من القمح في الجزائر؟", + "en_question": "What is the most popular wheat-based food item in your country?", + "annotations": [ + { + "answers": [ + "الكسكس", + "كسكس", + "الكسكسي" + ], + "en_answers": [ + "couscous" + ], + "count": 5 + }, + { + "answers": [ + "الخبز" + ], + "en_answers": [ + "bread" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-05": { + "question": "ما هو المشروب الذي يُقدم عادة للضيوف في الجزائر؟", + "en_question": "What is the most typical drink offered to guests when they visit households in your country?", + "annotations": [ + { + "answers": [ + "القهوة", + "قهوة" + ], + "en_answers": [ + "coffee" + ], + "count": 4 + }, + { + "answers": [ + "الشاي", + "شاي" + ], + "en_answers": [ + "tea" + ], + "count": 3 + }, + { + "answers": [ + "عصير", + "العصير" + ], + "en_answers": [ + "juice" + ], + "count": 3 + }, + { + "answers": [ + "الصودا", + "مشروبات غازية" + ], + "en_answers": [ + "soda", + "soft drinks" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-07": { + "question": "ما هو أشهر طبق سمك في الجزائر؟", + "en_question": "What is the most popular dish cooked with fish in your country?", + "annotations": [ + { + "answers": [ + "السردين", + "السردين المقلي" + ], + "en_answers": [ + "sardines", + "fried sardines" + ], + "count": 3 + }, + { + "answers": [ + "حساء السمك" + ], + "en_answers": [ + "fish soup", + "soupe de poisson" + ], + "count": 1 + }, + { + "answers": [ + "سيبيا بالطماطم" + ], + "en_answers": [ + "sibia with tomatoes" + ], + "count": 1 + }, + { + "answers": [ + "شطيطحة سردين" + ], + "en_answers": [ + "sardine stew" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-14": { + "question": "ما هي الأطعمة التي يفضلها الجزائريون عندما يكون الطقس ممطرا؟", + "en_question": "What food do people from your country like to eat during rainy weather?", + "annotations": [ + { + "answers": [ + "العدس" + ], + "en_answers": [ + "lentils", + "lentil" + ], + "count": 4 + }, + { + "answers": [ + "الحساء", + "الشوربة" + ], + "en_answers": [ + "soup" + ], + "count": 2 + }, + { + "answers": [ + "الفاصوليا", + "اللوبيا", + "لوبيا" + ], + "en_answers": [ + "bean", + "cowpea" + ], + "count": 2 + }, + { + "answers": [ + "البقوليات" + ], + "en_answers": [ + "legume" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-15": { + "question": "ما هو المشروب الذي يستهلك بكثرة في الجزائر عندما يكون الطقس حارا؟", + "en_question": "What drink is commonly consumed in your country when the weather is hot?", + "annotations": [ + { + "answers": [ + "العصير", + "عصير" + ], + "en_answers": [ + "juice" + ], + "count": 3 + }, + { + "answers": [ + "المشروبات الغازية", + "مشروب غازي", + "الڨازوز", + "الصودا" + ], + "en_answers": [ + "soft drink" + ], + "count": 3 + }, + { + "answers": [ + "الماء" + ], + "en_answers": [ + "water" + ], + "count": 2 + }, + { + "answers": [ + "حمود بوعلام", + "مشروب غازي" + ], + "en_answers": [ + "hammoud boualem", + "hamoud boualem" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-20": { + "question": "ما هي أشهر رياضة قاعة في الجزائر؟", + "en_question": "What is the most popular indoor sport in your country?", + "annotations": [ + { + "answers": [ + "الملاكمة" + ], + "en_answers": [ + "boxing" + ], + "count": 2 + }, + { + "answers": [ + "كرة اليد" + ], + "en_answers": [ + "handball" + ], + "count": 1 + }, + { + "answers": [ + "كرة الطائرة" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "الجودو" + ], + "en_answers": [ + "judo" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-29": { + "question": "ما هي الرياضة التي يحب الرجال مشاهدتها في الجزائر؟", + "en_question": "What sport do men in your country like to watch?", + "annotations": [ + { + "answers": [ + "كرة القدم" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-30": { + "question": "ما هي الرياضة التي تحب النساء مشاهدتها في الجزائر؟أ", + "en_question": "What sport do women in your country like to watch?", + "annotations": [ + { + "answers": [ + "كرة القدم" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-58": { + "question": "ما هو المشروب الذي يحب الجزائريون شربه في أماكن عملهم؟", + "en_question": "What is the most popular beverage that people from your country like to drink in their workplace?", + "annotations": [ + { + "answers": [ + "القهوة" + ], + "en_answers": [ + "coffee" + ], + "count": 5 + }, + { + "answers": [ + "الشاي" + ], + "en_answers": [ + "tea" + ], + "count": 2 + }, + { + "answers": [ + "الماء" + ], + "en_answers": [ + "water" + ], + "count": 1 + }, + { + "answers": [ + "العصير" + ], + "en_answers": [ + "juice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-64": { + "question": "في أي عيد يجتمع أفراد العائلة في الجزائر؟", + "en_question": "On which holiday do all family members tend to reunite in your country?", + "annotations": [ + { + "answers": [ + "عيد الفطر", + "الفطر", + "عيد الفطر و عيد الأضحى" + ], + "en_answers": [ + "eid al-fitr", + "eid ul-fitr" + ], + "count": 5 + }, + { + "answers": [ + "عيد الاضحى", + "الاضحى", + "عيد الأضحى", + "عيد الفطر و عيد الأضحى" + ], + "en_answers": [ + "eid al-adha" + ], + "count": 4 + }, + { + "answers": [ + "رأس السنة", + "راس السنة" + ], + "en_answers": [ + "new year's day", + "new year" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-76": { + "question": "ما هي الألعاب التقليدية التي تلعبها العائلات خلال العطل في الجزائر؟", + "en_question": "What traditional games do families play during traditional holidays in your country?", + "annotations": [ + { + "answers": [ + "الغميضة" + ], + "en_answers": [ + "hide and seek" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 2, + "not-applicable": 0 + } + }, + "New-as-80": { + "question": "ماذا يرتدي الجزائريون في الأعياد التقليدية؟", + "en_question": "What type of clothing do people from your country wear during traditional festivals?", + "annotations": [ + { + "answers": [ + "البرنوس" + ], + "en_answers": [ + "burnous", + "hooded cloak" + ], + "count": 1 + }, + { + "answers": [ + "اقمصة", + "أقمصة" + ], + "en_answers": [ + "shirts" + ], + "count": 1 + }, + { + "answers": [ + "لباس جديد" + ], + "en_answers": [ + "new clothes" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-as-89": { + "question": "ما هي الإكسسوارات التي يرتديها الجزائريون في الأعياد التقليدية؟", + "en_question": "What traditional festival accessories do people from your country wear?", + "annotations": [], + "idks": { + "idk": 3, + "no-answer": 2, + "not-applicable": 0 + } + }, + "New-az-05": { + "question": "ما هي أشهر منطقة لإنتاج الكحول في الجزائر؟", + "en_question": "What is the most famous region for alcohol production in your country?", + "annotations": [ + { + "answers": [ + "معسكر" + ], + "en_answers": [ + "mascara" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 1, + "no-answer": 0 + } + }, + "New-az-11": { + "question": "ما هي الفاكهة التي يتناولها الجزائريون عادة في فصل الصيف؟", + "en_question": "What fruit do people from your country often eat in the summer season?", + "annotations": [ + { + "answers": [ + "البطيخ", + "الدلاع أو البطيخ" + ], + "en_answers": [ + "watermelon" + ], + "count": 3 + }, + { + "answers": [ + "الخوخ" + ], + "en_answers": [ + "peach" + ], + "count": 1 + }, + { + "answers": [ + "الاجاص", + "الإجاص" + ], + "en_answers": [ + "pear" + ], + "count": 1 + }, + { + "answers": [ + "العنب" + ], + "en_answers": [ + "grape" + ], + "count": 1 + }, + { + "answers": [ + "المشمش" + ], + "en_answers": [ + "apricot" + ], + "count": 1 + }, + { + "answers": [ + "البرقوق" + ], + "en_answers": [ + "plum" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-12": { + "question": "ما هي المنطقة الجزائرية المعروفة بمأكولاتها البحرية؟", + "en_question": "Which region in your country is known for its seafood?", + "annotations": [ + { + "answers": [ + "تيبازة" + ], + "en_answers": [ + "tipaza", + "tipasa" + ], + "count": 2 + }, + { + "answers": [ + "وهران" + ], + "en_answers": [ + "oran" + ], + "count": 1 + }, + { + "answers": [ + "ازفون", + "آزفون" + ], + "en_answers": [ + "azzeffoun" + ], + "count": 1 + }, + { + "answers": [ + "القبائل" + ], + "en_answers": [ + "kabylie", + "kabylia" + ], + "count": 1 + }, + { + "answers": [ + "الجزائر", + "الجزائر العاصمة" + ], + "en_answers": [ + "algiers" + ], + "count": 1 + }, + { + "answers": [ + "بومرداس" + ], + "en_answers": [ + "boumerdès", + "boumerdes" + ], + "count": 1 + }, + { + "answers": [ + "كل المناطق الساحلية" + ], + "en_answers": [ + "all the coastal areas", + "coast" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-21": { + "question": "ما هي الوجهة الأكثر شعبية للتزلج في الجزائر؟", + "en_question": "Which region in your country is the most popular skiing destination?", + "annotations": [ + { + "answers": [ + "تيكجدة" + ], + "en_answers": [ + "tikjda" + ], + "count": 2 + }, + { + "answers": [ + "شريعة" + ], + "en_answers": [ + "chrea", + "chréa" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "New-az-26": { + "question": "من هو أشهر لاعب فنون قتالية في الجزائر؟", + "en_question": "Who is the most popular martial arts player in your country?", + "annotations": [ + { + "answers": [ + "فتحي نورين" + ], + "en_answers": [ + "fethi nourine", + "nourine fethi" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-az-27": { + "question": "ما هي الرياضة لأسرع نمواً في الجزائر خلال العقد الماضي؟", + "en_question": "Which sport has been one of the fastest-growing in your country over the last decade?", + "annotations": [ + { + "answers": [ + "كرة السلة" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "كرة القدم" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "وجيتسو" + ], + "en_answers": [ + "jujitsu", + "jiu jitsu" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-39": { + "question": "ما هو البلد الذي يتجه إليه معظم الطلاب الجزائريين عند الدراسة في الخارج؟", + "en_question": "Which country is the most popular destination for students from your country studying abroad?", + "annotations": [ + { + "answers": [ + "فرنسا" + ], + "en_answers": [ + "france" + ], + "count": 5 + }, + { + "answers": [ + "كندا" + ], + "en_answers": [ + "canada" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-49": { + "question": "ماهو عدد الأشخاص العاملين في عائلة نموذجية في الجزائر؟ (قدم الأرقام العربية فقط مثل، 1.)", + "en_question": "How many people work in a typical family in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-60": { + "question": "في الجزائر, من يعتني بالأطفال عندما يعمل الوالدان؟", + "en_question": "In your country, who takes care of kids when both parents are working?", + "annotations": [ + { + "answers": [ + "الجدة" + ], + "en_answers": [ + "grandmother" + ], + "count": 4 + }, + { + "answers": [ + "المربية" + ], + "en_answers": [ + "nanny" + ], + "count": 2 + }, + { + "answers": [ + "الخالة", + "الخالة/العمة" + ], + "en_answers": [ + "aunt (mom's sister)", + "aunt", + "mom's sister" + ], + "count": 1 + }, + { + "answers": [ + "العمة", + "الخالة/العمة" + ], + "en_answers": [ + "aunt (dad's sister)", + "aunt", + "dad's sister" + ], + "count": 1 + }, + { + "answers": [ + "الأخت" + ], + "en_answers": [ + "sister" + ], + "count": 1 + }, + { + "answers": [ + "روضة الأطفال" + ], + "en_answers": [ + "kindergarten" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-69": { + "question": "ما هو المشروب الكحولي المفضل لدى الرجال في الجزائر؟", + "en_question": "What is the preferred alcoholic beverage for men from your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "New-az-70": { + "question": "ما هو المشروب الكحولي المفضل لدى النساء في الجزائر؟", + "en_question": "What is the preferred alcoholic beverage for women from your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "New-az-73": { + "question": "ما هو عدد االمدعوين لحفللت الزفافعادة في الجزائر؟ (قدم الأرقام العربية فقط مثل، 1.)", + "en_question": "How many people on average typically attend a wedding in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "200" + ], + "en_answers": [ + "200" + ], + "count": 2 + }, + { + "answers": [ + "600", + "600+" + ], + "en_answers": [ + "600" + ], + "count": 1 + }, + { + "answers": [ + "500" + ], + "en_answers": [ + "500" + ], + "count": 1 + }, + { + "answers": [ + "300" + ], + "en_answers": [ + "300" + ], + "count": 1 + }, + { + "answers": [ + "100" + ], + "en_answers": [ + "100" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-01": { + "question": "أي نوع من اللحوم يستعمل الجزائريون للشواء على الجمر؟", + "en_question": "What kind of meat do people usually eat when they have barbecue in your country?", + "annotations": [ + { + "answers": [ + "الغنم", + "الكبش", + "لحم الغنم" + ], + "en_answers": [ + "lamb", + "mutton" + ], + "count": 4 + }, + { + "answers": [ + "الديك الرومي" + ], + "en_answers": [ + "turkey" + ], + "count": 1 + }, + { + "answers": [ + "كلها" + ], + "en_answers": [ + "all of them", + "all" + ], + "count": 1 + }, + { + "answers": [ + "الدجاج" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "البقر" + ], + "en_answers": [ + "beef" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-02": { + "question": "متى يتناول الناس عادة وجبة الإفطار في الجزائر؟ (قدم الوقت بتنسيق الساعة:الدقيقة مثل، 18:00، 09:00).", + "en_question": "When do people usually have breakfast in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "07:00" + ], + "en_answers": [ + "07:00" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-04": { + "question": "أي أنواع من الطعام يتناول الناس عادة كوجبات خفيفة في آخر الليل في الجزائر؟", + "en_question": "What kinds of food do people usually eat for late-night snacks in your country?", + "annotations": [ + { + "answers": [ + "الحلوى" + ], + "en_answers": [ + "sweets" + ], + "count": 1 + }, + { + "answers": [ + "السلطة", + "السلاطة", + "سلطة" + ], + "en_answers": [ + "salad" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ch-05": { + "question": "ما هو أشهر طبق حار في الجزائر؟", + "en_question": "What is the most famous spicy dish in your country?", + "annotations": [ + { + "answers": [ + "الصفيطي", + "الزفيطي", + "زفيطي" + ], + "en_answers": [ + "zviti", + "slata mehrez" + ], + "count": 3 + }, + { + "answers": [ + "سلطة فلفل" + ], + "en_answers": [ + "hmiss", + "pepper salad" + ], + "count": 1 + }, + { + "answers": [ + "المحاجب" + ], + "en_answers": [ + "m'hajeb", + "mhajeb" + ], + "count": 1 + }, + { + "answers": [ + "الشخشوخة" + ], + "en_answers": [ + "chakhchoukha", + "chekhechoukha" + ], + "count": 1 + }, + { + "answers": [ + "البركوكس" + ], + "en_answers": [ + "berkoukes" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-07": { + "question": "ما هي المأكولات التي يتناولها الناس عادة مع المشروبات الكحولية القوية في الجزائر؟", + "en_question": "What food items do people typically pair with hard liquor in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "New-ch-08": { + "question": "ما هي التوابل الأساسية للطبخ في الجزائر؟", + "en_question": "What seasoning is indispensable in cooking in your country?", + "annotations": [ + { + "answers": [ + "الفلفل الأسود", + "الفلفل الاسود", + "فلفل اسود", + "فلفل أسود" + ], + "en_answers": [ + "black pepper" + ], + "count": 4 + }, + { + "answers": [ + "القرفة", + "القرفه", + "قرفة" + ], + "en_answers": [ + "cinnamon" + ], + "count": 2 + }, + { + "answers": [ + "الفلفل الأحمر", + "العكري" + ], + "en_answers": [ + "red pepper" + ], + "count": 1 + }, + { + "answers": [ + "راس الحانوت" + ], + "en_answers": [ + "ras el hanout", + "rass el hanout", + "head of the shop" + ], + "count": 1 + }, + { + "answers": [ + "الكمون", + "الفلفل الأسود، الفلفل الأحمر، الكمون، القرفة، الكروية، القرنفل.." + ], + "en_answers": [ + "cumin" + ], + "count": 1 + }, + { + "answers": [ + "الكروية", + "الفلفل الأسود، الفلفل الأحمر، الكمون، القرفة، الكروية، القرنفل.." + ], + "en_answers": [ + "caraway" + ], + "count": 1 + }, + { + "answers": [ + "القرنفل", + "الفلفل الأسود، الفلفل الأحمر، الكمون، القرفة، الكروية، القرنفل.." + ], + "en_answers": [ + "cloves", + "clove" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-09": { + "question": "ما هي الأطعمة التي يستهلكها الناس عندما يكون الطقس باردا في الجزائر؟", + "en_question": "What food do people typically consume when the weather is cold in your country?", + "annotations": [ + { + "answers": [ + "الحساء" + ], + "en_answers": [ + "soup" + ], + "count": 2 + }, + { + "answers": [ + "البقوليات", + "الحبوب المجففة من عدس و لوبيا و حمص", + "الحبوب المجففة" + ], + "en_answers": [ + "legumes" + ], + "count": 2 + }, + { + "answers": [ + "العدس", + "عدس" + ], + "en_answers": [ + "lentils", + "lentil" + ], + "count": 2 + }, + { + "answers": [ + "البطاطس المقلية" + ], + "en_answers": [ + "fried potato", + "french fries", + "chips" + ], + "count": 1 + }, + { + "answers": [ + "السلطة", + "السلاطة", + "سلطة" + ], + "en_answers": [ + "salad" + ], + "count": 1 + }, + { + "answers": [ + "اللوبيا", + "لوبيا، الفاصولياء، الفاصوليا، لفاصوليا" + ], + "en_answers": [ + "bean" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-13": { + "question": "ما هي أشهر ماركة كحول في الجزائر؟", + "en_question": "What is the most famous alcohol brand in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "New-ch-14": { + "question": "ما هي الأطعمة التي يتناولها الجزائريون عادة عند المرض؟", + "en_question": "What foods do people usually eat when they are sick in your country?", + "annotations": [ + { + "answers": [ + "الحساء", + "حساء الخضار" + ], + "en_answers": [ + "soup" + ], + "count": 2 + }, + { + "answers": [ + "الأرز" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "الفواكه" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + }, + { + "answers": [ + "حساء الخضار" + ], + "en_answers": [ + "vegetable soup" + ], + "count": 1 + }, + { + "answers": [ + "العسل" + ], + "en_answers": [ + "honey" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-15": { + "question": "ما هي الأطعمة الجاهز التي يشتريها الجزائريون في السوبرماركت عادة؟", + "en_question": "What prepared/ready-to-eat food do people typically buy at supermarkets in your country?", + "annotations": [ + { + "answers": [ + "نودلز" + ], + "en_answers": [ + "noodle" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ch-16": { + "question": "ما هو أشهر فيلم عن الرياضة في الجزائر؟", + "en_question": "What is the most famous sports-related movie in your country?", + "annotations": [ + { + "answers": [ + "المفتش الطاهر يسجل الهدف" + ], + "en_answers": [ + "inspector tahar scors the goal" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ch-17": { + "question": "أي رياضة متطرفة يتمنى أكثر الناس تجربتها في الجزائر؟", + "en_question": "What extreme sport do people generally wish to try the most in your country?", + "annotations": [ + { + "answers": [ + "الدراجة المائية" + ], + "en_answers": [ + "jet ski" + ], + "count": 1 + }, + { + "answers": [ + "القفز بالمضلة" + ], + "en_answers": [ + "parachuting" + ], + "count": 1 + }, + { + "answers": [ + "الباركور" + ], + "en_answers": [ + "parkour" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ch-18": { + "question": "أي من مسابقات ألعاب القوى هي الأكثر مشاهدة خلال المنافسات في الجزائر؟", + "en_question": "Which track and field event is the most popular to watch during competitions in your country?", + "annotations": [ + { + "answers": [ + "العدو" + ], + "en_answers": [ + "running" + ], + "count": 1 + }, + { + "answers": [ + "العدو الريفي" + ], + "en_answers": [ + "cross country running", + "cross-country" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ch-19": { + "question": "أي حدث في الجمباز هو الأكثر مشاهدة خلال المسابقات في الجزائر؟", + "en_question": "Which gymnastics event is the most popular to watch during competitions in your country?", + "annotations": [], + "idks": { + "idk": 4, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ch-23": { + "question": "من هو أشهر لاعب كرة طاولة في الجزائر؟", + "en_question": "Who is the most famous table tennis player in your country?", + "annotations": [], + "idks": { + "idk": 4, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ch-26": { + "question": "في الألعاب الأولمبية الشتوية، أي حدث هو الأكثر مشاهدة في الجزائر؟", + "en_question": "In the Winter Olympics, which event is the most popular to watch in your country?", + "annotations": [], + "idks": { + "idk": 2, + "no-answer": 2, + "not-applicable": 1 + } + }, + "New-ch-27": { + "question": "من هو أشهر ملاكم في الجزائر؟", + "en_question": "Who is the most famous boxer in your country?", + "annotations": [ + { + "answers": [ + "لوصيف حماني" + ], + "en_answers": [ + "loucif hamani" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ch-30": { + "question": "من هو أشهر عداء في ألعاب القوى في الجزائر؟", + "en_question": "Who is the most famous track and field athlete in your country?", + "annotations": [ + { + "answers": [ + "توفيق مخلوفي" + ], + "en_answers": [ + "toufik makhloufi", + "taoufik makhloufi" + ], + "count": 2 + }, + { + "answers": [ + "نور الدين مرسلي" + ], + "en_answers": [ + "noureddine morceli" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ch-31": { + "question": "أي عمل يتمنى الآباء أن يختاره أبناؤهم في الجزائر؟", + "en_question": "What job do parents most hope their children will pursue in your country?", + "annotations": [ + { + "answers": [ + "طبيب", + "الطب" + ], + "en_answers": [ + "doctor", + "medicine" + ], + "count": 4 + }, + { + "answers": [ + "مهندس", + "الهندسة" + ], + "en_answers": [ + "engineer", + "engineering" + ], + "count": 2 + }, + { + "answers": [ + "طيار" + ], + "en_answers": [ + "pilot" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-32": { + "question": "أي برامج مكتبية يستخدمها الناس في أماكن العمل في الجزائر؟", + "en_question": "What office software do people typically use in the workplace in your country?", + "annotations": [ + { + "answers": [ + "مايكروسوفت", + "مايكروسوفت اوفيس" + ], + "en_answers": [ + "microsoft", + "microsoft office" + ], + "count": 3 + }, + { + "answers": [ + "الاكسل", + "اكسل" + ], + "en_answers": [ + "excel" + ], + "count": 2 + }, + { + "answers": [ + "وورد" + ], + "en_answers": [ + "word" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-38": { + "question": "أي المدن أو المناطق معروفة بأنشطتها في الاستيراد والتصدير في الجزائر؟", + "en_question": "Which cities or regions are known for their import and export activities in your country?", + "annotations": [ + { + "answers": [ + "بجاية" + ], + "en_answers": [ + "bejaia", + "béjaïa", + "bougie", + "bugia" + ], + "count": 2 + }, + { + "answers": [ + "الجزائر العاصمة", + "العاصمة", + "الجزائر" + ], + "en_answers": [ + "algiers" + ], + "count": 2 + }, + { + "answers": [ + "أرزيو", + "ارزيو" + ], + "en_answers": [ + "arzew", + "arzeu" + ], + "count": 2 + }, + { + "answers": [ + "الموانئ الساحلية" + ], + "en_answers": [ + "coastal ports", + "coast" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-39": { + "question": "أي منصة تُستخدم بشكل شائع في صناعة التجارة الإلكترونية في الجزائر؟", + "en_question": "What platform is commonly used in the e-commerce industry in your country?", + "annotations": [ + { + "answers": [ + "فايسبوك" + ], + "en_answers": [ + "facebook" + ], + "count": 2 + }, + { + "answers": [ + "انستغرام" + ], + "en_answers": [ + "instagram" + ], + "count": 1 + }, + { + "answers": [ + "واد كنيس" + ], + "en_answers": [ + "ouedkniss" + ], + "count": 1 + }, + { + "answers": [ + "aliexpress" + ], + "en_answers": [ + "aliexpress", + "alịexpress" + ], + "count": 1 + }, + { + "answers": [ + "يوكان" + ], + "en_answers": [ + "youcan" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-44": { + "question": "ما هي المدة النموذجية لفترة التجربة للموظفين الجدد قبل توقيع عقد رسمي في الجزائر؟ (مثلا، شهر واحد).", + "en_question": "How long is the typical probation period for new employees before signing a formal contract in your country? (e.g., 1 month).", + "annotations": [ + { + "answers": [ + "6 أشهر", + "ستة اشهر", + "ستة أشهر" + ], + "en_answers": [ + "6 months", + "six months" + ], + "count": 3 + }, + { + "answers": [ + "24 شهر", + "سنتين" + ], + "en_answers": [ + "two years", + "2 years" + ], + "count": 1 + }, + { + "answers": [ + "3 أشهر", + "ثلاثة اشهر" + ], + "en_answers": [ + "three months", + "3 months" + ], + "count": 1 + }, + { + "answers": [ + "12 شهر" + ], + "en_answers": [ + "12 months", + "twelve months" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-45": { + "question": "في أي القطاعات يميل الشباب لبدء مشاريعهم التجارية في الجزائر؟", + "en_question": "Which industries do young people typically choose to start businesses in your country?", + "annotations": [ + { + "answers": [ + "الملابس" + ], + "en_answers": [ + "clothes", + "clothing", + "garment" + ], + "count": 3 + }, + { + "answers": [ + "التجارة", + "التجاري" + ], + "en_answers": [ + "commerce", + "commercial" + ], + "count": 2 + }, + { + "answers": [ + "العطر", + "العطور" + ], + "en_answers": [ + "perfume" + ], + "count": 1 + }, + { + "answers": [ + "الاكسسوارات" + ], + "en_answers": [ + "accessories", + "accessory" + ], + "count": 1 + }, + { + "answers": [ + "الإلكترونيات" + ], + "en_answers": [ + "electronics" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-49": { + "question": "ما هي الطريقة الأكثر شيوعًا للتواصل عن بعد بين أفراد العائلة في الجزائر؟", + "en_question": "What is the most common way for family members to communicate remotely in your country?", + "annotations": [ + { + "answers": [ + "الهاتف" + ], + "en_answers": [ + "phone" + ], + "count": 3 + }, + { + "answers": [ + "مواقع التواصل" + ], + "en_answers": [ + "social media" + ], + "count": 1 + }, + { + "answers": [ + "whatsapp" + ], + "en_answers": [ + "whatsapp" + ], + "count": 1 + }, + { + "answers": [ + "فيسبوك" + ], + "en_answers": [ + "facebook" + ], + "count": 1 + }, + { + "answers": [ + "فايبر" + ], + "en_answers": [ + "viber" + ], + "count": 1 + }, + { + "answers": [ + "التطبيقات الهاتفية" + ], + "en_answers": [ + "mobile applications", + "applications" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-51": { + "question": "أي نوع من أماكن الإقامة يتم حجزه عادة للرحلات العائلية في الجزائر؟", + "en_question": "What form of accommodation is typically booked for family trips in your country?", + "annotations": [ + { + "answers": [ + "شقة للكراء", + "بيت", + "كراء بيوت مجهزة", + "شقة للكراء,شقة, بيوت مجهزة" + ], + "en_answers": [ + "apartment for rent", + "apartment rent", + "apartment", + "house", + "equipped house" + ], + "count": 3 + }, + { + "answers": [ + "الفندق", + "فندق", + "فنادق", + "الفندق, فنادق, الفنادق" + ], + "en_answers": [ + "hotel", + "hotels" + ], + "count": 3 + }, + { + "answers": [ + "مركب" + ], + "en_answers": [ + "compound" + ], + "count": 1 + }, + { + "answers": [ + "شاليه" + ], + "en_answers": [ + "chalet" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-54": { + "question": "أي نوع من الفواكه يتم تحضيره بكثرة لعشاء العائلات في الجزائر؟", + "en_question": "Which fruit is usually prepared the most for family dinners in your country?", + "annotations": [ + { + "answers": [ + "البطيخ", + "الدلاع أو البطيخ" + ], + "en_answers": [ + "watermelon" + ], + "count": 2 + }, + { + "answers": [ + "الفراولة" + ], + "en_answers": [ + "strawberry" + ], + "count": 1 + }, + { + "answers": [ + "العنب" + ], + "en_answers": [ + "grape" + ], + "count": 1 + }, + { + "answers": [ + "البرتقال" + ], + "en_answers": [ + "orange" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-64": { + "question": "كم عدد ساعات الدراسة التي يتلقاها طلاب الجامعة الجزائرية في الأسبوع؟ (استخدم الأرقام العربية فقط مثل، 1.)", + "en_question": "How many hours of classes do university students typically have per week in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 2 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 2 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-66": { + "question": "ما هي الرسوم الدراسية النموذجية لكل فصل دراسي في المدارس الثانوية العامة في الجزائر؟ (استخدم الأرقام العربية فقط مثل، 1", + "en_question": "What is the typical tuition fee per semester for public high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 2 + }, + { + "answers": [ + "150" + ], + "en_answers": [ + "150" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "no-answer": 1, + "idk": 0 + } + }, + "New-ch-70": { + "question": "ما هي المواد الإجبارية التي يشترك فيها طلاب الجامعة في الجزائر؟", + "en_question": "What compulsory courses do university students have in common in your country?", + "annotations": [ + { + "answers": [ + "اللغة" + ], + "en_answers": [ + "language" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 1, + "no-answer": 1 + } + }, + "New-ch-71": { + "question": "ما هو متوسط حجم الفصل في المدارس الثانوية في الجزائر؟ (استخدم الأرقام العربية فقط مثل، 1)", + "en_question": "What is the average class size in high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 2 + }, + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-72": { + "question": "أي تخصص يعتبرالأسهل للتوظيف في الجزائر؟", + "en_question": "Which major is considered most conducive to employment in your country?", + "annotations": [ + { + "answers": [ + "الأعلام الآلي", + "الإعلام الآلي", + "الإعلام الآلي، إعلام الآلي، اعلام الآلي، الاعلام الآلي" + ], + "en_answers": [ + "computer science" + ], + "count": 2 + }, + { + "answers": [ + "الطب" + ], + "en_answers": [ + "medicine" + ], + "count": 1 + }, + { + "answers": [ + "التكوين المهني" + ], + "en_answers": [ + "vocational training", + "vocational education" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-73": { + "question": "أي نوع من النوادي هو الأكثر شعبية بين طلاب الجامعات في الجزائر؟", + "en_question": "What type of clubs are most popular among university students in your country?", + "annotations": [ + { + "answers": [ + "النوادي العلمية" + ], + "en_answers": [ + "scientific clubs", + "science" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 1 + } + }, + "New-ch-74": { + "question": "أين يعيش معظم طلاب الجامعة في الجزائر؟", + "en_question": "What types of accommodation do university students in your country typically live in?", + "annotations": [ + { + "answers": [ + "منازلهم", + "بيوتهم", + "البيت", + "عائلاتهم", + "في بيوتهم", + "عائلاتهم,في بيوت عائلاتهم" + ], + "en_answers": [ + "home", + "house", + "their families", + "in their homes" + ], + "count": 5 + }, + { + "answers": [ + "الإقامة الجامعية", + "الاقامه الجامعيه" + ], + "en_answers": [ + "university residence" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-75": { + "question": "كم تدوم الحصة الدراسية لطلاب المرحلة الثانوية في الجزائر (بالدقائق)؟ (استخدم الأرقام العربية فقط مثل، 1)", + "en_question": "How long is each class period for middle school students in your country (minutes)? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "60", + "1" + ], + "en_answers": [ + "60" + ], + "count": 4 + }, + { + "answers": [ + "120" + ], + "en_answers": [ + "120" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-78": { + "question": "ما هي الأنشطة الترفيهية التي تفضلها النساء المتقاعدات في الجزائر؟", + "en_question": "What leisure activities do retired women typically like in your country?", + "annotations": [ + { + "answers": [ + "الحفلات" + ], + "en_answers": [ + "parties", + "party" + ], + "count": 1 + }, + { + "answers": [ + "التلفاز", + "التلفزيون" + ], + "en_answers": [ + "television", + "tv" + ], + "count": 1 + }, + { + "answers": [ + "صنع الحلويات" + ], + "en_answers": [ + "confectionery making", + "confectionery" + ], + "count": 1 + }, + { + "answers": [ + "المطالعة", + "القراءة" + ], + "en_answers": [ + "reading", + "read" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-79": { + "question": "ما هي الأنشطة الترفيهية التي يفضلها الرجال المتقاعدون في الجزائر؟", + "en_question": "What leisure activities do retired men typically like in your country?", + "annotations": [ + { + "answers": [ + "الدومينو", + "لعبة الحجارة" + ], + "en_answers": [ + "stone game", + "domino stones", + "domino" + ], + "count": 2 + }, + { + "answers": [ + "المقاهي" + ], + "en_answers": [ + "cafe" + ], + "count": 1 + }, + { + "answers": [ + "التلفاز" + ], + "en_answers": [ + "television", + "tv" + ], + "count": 1 + }, + { + "answers": [ + "المطالعة" + ], + "en_answers": [ + "reading", + "readd" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-80": { + "question": "في أي الأعياد يقوم الناس بزيارة الأماكن الدينية (المعابد، الكنائس، إلخ) في الجزائر؟", + "en_question": "During which holidays do people typically visit religious sites (temples, churches, etc.) in your country?", + "annotations": [ + { + "answers": [ + "عيد الفطر" + ], + "en_answers": [ + "eid al-fitr", + "eid ul-fitr" + ], + "count": 3 + }, + { + "answers": [ + "عيد الأضحى", + "عيد الاضحى" + ], + "en_answers": [ + "eid al-adha" + ], + "count": 2 + }, + { + "answers": [ + "رمضان" + ], + "en_answers": [ + "ramadan" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "New-ch-81": { + "question": "ما هي الهدايا التي تقدم عند زيارة بيت جديد في الجزائر؟", + "en_question": "What are the typical housewarming gifts in your country?", + "annotations": [ + { + "answers": [ + "اواني", + "أدوات المائدة", + "أواني" + ], + "en_answers": [ + "utensil", + "tableware" + ], + "count": 2 + }, + { + "answers": [ + "أدوات الديكور" + ], + "en_answers": [ + "decor tools", + "decor" + ], + "count": 1 + }, + { + "answers": [ + "ثرية" + ], + "en_answers": [ + "chandelier" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ch-82": { + "question": "في أي وقت عادة ما تبدأ حفلات الزفاف في الجزائر؟ (قدم الوقت بتنسيق الساعة:الدقائق مثلاً، 18:00، 09:00).", + "en_question": "At what time do weddings typically start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 2 + }, + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 1 + }, + { + "answers": [ + "18:30" + ], + "en_answers": [ + "18:30" + ], + "count": 1 + }, + { + "answers": [ + "20:00" + ], + "en_answers": [ + "20:00" + ], + "count": 1 + }, + { + "answers": [ + "15:00" + ], + "en_answers": [ + "15:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-83": { + "question": "أي مدينة في الجزائر تستضيف أكثر الأعياد والمهرجانات؟", + "en_question": "Which city in your country hosts festivals the most?", + "annotations": [ + { + "answers": [ + "الجزائر العاصمة", + "العاصمة", + "الجزائر" + ], + "en_answers": [ + "algiers" + ], + "count": 3 + }, + { + "answers": [ + "وهران" + ], + "en_answers": [ + "oran" + ], + "count": 1 + }, + { + "answers": [ + "تمقاد" + ], + "en_answers": [ + "timgad", + "timqad" + ], + "count": 1 + }, + { + "answers": [ + "تلمسان" + ], + "en_answers": [ + "tlemcen" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-84": { + "question": "ما هو لون الملابس التي يرتديها الناس عند حضور الأعراس في الجزائر؟", + "en_question": "What color of clothing do people typically wear when attending weddings in your country?", + "annotations": [ + { + "answers": [ + "الالوان الفاتحة" + ], + "en_answers": [ + "light color", + "light-colored", + "light" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 2, + "not-applicable": 0 + } + }, + "New-ch-85": { + "question": "ما هو لون الملابس التي يرتديها الناس عادة عند حضور الجنازات في الجزائر؟", + "en_question": "What color of clothing do people typically wear when attending funerals in your country?", + "annotations": [ + { + "answers": [ + "الالوان الداكنة", + "الالوان الداكنه" + ], + "en_answers": [ + "dark colors", + "dark-colored", + "dark" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "New-en-01": { + "question": "ما ذا يتناول الناس في السينما في الجزائر؟", + "en_question": "Which snack is eaten in the cinema in your country?", + "annotations": [ + { + "answers": [ + "الفشار" + ], + "en_answers": [ + "popcorn" + ], + "count": 3 + }, + { + "answers": [ + "الشيبس" + ], + "en_answers": [ + "chips" + ], + "count": 2 + }, + { + "answers": [ + "المثلجات" + ], + "en_answers": [ + "ice cream" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-02": { + "question": "ما هي أكثر نكهة شيبس/كريسب شعبية في الجزائر؟", + "en_question": "What is the most popular chip/crisp flavour in your country?", + "annotations": [ + { + "answers": [ + "طبيعي", + "الطبيعية", + "طبيعية" + ], + "en_answers": [ + "natural", + "original" + ], + "count": 2 + }, + { + "answers": [ + "جبن" + ], + "en_answers": [ + "cheese" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-en-04": { + "question": "من هو أشهر طباخ في الجزائر؟", + "en_question": "Who is a popular celebrity chef in your country?", + "annotations": [ + { + "answers": [ + "رابح اوراد" + ], + "en_answers": [ + "rabeh ourrad", + "rabah ourrad" + ], + "count": 1 + }, + { + "answers": [ + "السيدة رزقي" + ], + "en_answers": [ + "mrs. rezki", + "madame rezki", + "mrs. rizki" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-en-05": { + "question": "ما هي الوجبة السريعة الاقتصادية في الجزائر؟", + "en_question": "Which food is a cost-effective and quick meal option in your country?", + "annotations": [ + { + "answers": [ + "الكلنتيكا", + "كرانتيكة", + "كارنتيكا", + "كالانتيكا، كلنتيكا، كلانتيكا،قرنطيطة، القرنطيطة ، قرنتيتة،غارانتيتا، قرنتيتة" + ], + "en_answers": [ + "calentica", + "karantika" + ], + "count": 3 + }, + { + "answers": [ + "البيتزا المربعة", + "البزا المربعة" + ], + "en_answers": [ + "square pizza", + "pizza carré", + "pizza carre" + ], + "count": 1 + }, + { + "answers": [ + "العدس" + ], + "en_answers": [ + "lentils", + "lentil" + ], + "count": 1 + }, + { + "answers": [ + "اللوبيا" + ], + "en_answers": [ + "bean" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-07": { + "question": "ما هي أشهر برامج الطبخ في الجزائر؟", + "en_question": "What are the most popular cooking shows in your country?", + "annotations": [ + { + "answers": [ + "توب شيف" + ], + "en_answers": [ + "top chef" + ], + "count": 1 + }, + { + "answers": [ + "قناة سميرة" + ], + "en_answers": [ + "samira tv" + ], + "count": 1 + }, + { + "answers": [ + "برنامج أم وليد" + ], + "en_answers": [ + "oum walid" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-08": { + "question": "ما هي أشهر ماركة شوكولاتة في الجزائر؟", + "en_question": "What is the most popular chocolate brand in your country?", + "annotations": [ + { + "answers": [ + "اومباسادور", + "امباسادور", + "ambassadeur", + "أمباسادور" + ], + "en_answers": [ + "ambassadeur" + ], + "count": 5 + }, + { + "answers": [ + "مومنت", + "moment" + ], + "en_answers": [ + "moment" + ], + "count": 2 + }, + { + "answers": [ + "ماروخا" + ], + "en_answers": [ + "maruja" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-10": { + "question": "ما هو الجبن الأكثر استهلاكا في الجزائر؟", + "en_question": "What is the most eaten cheese in your country?", + "annotations": [ + { + "answers": [ + "الجبن الكريمي", + "الجبن الطري", + "مذوب" + ], + "en_answers": [ + "cream cheese", + "soft cheese" + ], + "count": 3 + }, + { + "answers": [ + "الشيدار" + ], + "en_answers": [ + "cheddar" + ], + "count": 1 + }, + { + "answers": [ + "الجبن الابيض", + "الجين الابيض" + ], + "en_answers": [ + "white cheese" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-11": { + "question": "ما هي الخضار االأقل استحسانا بين الناس في الجزائر؟", + "en_question": "What is the most disliked vegetable in your country?", + "annotations": [ + { + "answers": [ + "الخرشف", + "الخرشوف" + ], + "en_answers": [ + "cardoon", + "cardon" + ], + "count": 1 + }, + { + "answers": [ + "اللفت" + ], + "en_answers": [ + "turnip" + ], + "count": 1 + }, + { + "answers": [ + "بازلاء", + "البازلاء" + ], + "en_answers": [ + "pea" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-en-12": { + "question": "ما هو الطعام الأكثر شيوعاً في مطاعم المراكز التجارية في الجزائر؟", + "en_question": "What food is most commonly found in food courts in your country?", + "annotations": [ + { + "answers": [ + "البيتزا", + "البيزا", + "بيتزا" + ], + "en_answers": [ + "pizza" + ], + "count": 4 + }, + { + "answers": [ + "الشوارما", + "شاورما", + "شاورما,الشاورما" + ], + "en_answers": [ + "shawarma" + ], + "count": 2 + }, + { + "answers": [ + "برغر", + "البرقر" + ], + "en_answers": [ + "burger" + ], + "count": 2 + }, + { + "answers": [ + "الدجاج" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-17": { + "question": "ما هي أكثر الأدوات التشجيعية شيوعًا بين مشجعي الرياضة في الجزائر؟", + "en_question": "What are the most common cheering tools used by sports fans in your country?", + "annotations": [ + { + "answers": [ + "الغناء" + ], + "en_answers": [ + "singing", + "sing" + ], + "count": 2 + }, + { + "answers": [ + "الاعلام", + "علم الفريق", + "الاعلام,راية,علم الفريق,اللافتات" + ], + "en_answers": [ + "flag", + "team flag" + ], + "count": 2 + }, + { + "answers": [ + "الزمارة" + ], + "en_answers": [ + "flute" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-18": { + "question": "ماذا يجلب المشجعون معهم عند حضور مباراة مباشرة في الجزائر؟", + "en_question": "What do fans bring with them when attending a live game in your country?", + "annotations": [ + { + "answers": [ + "الاعلام", + "راية", + "اللافتات", + "الأعلام", + "الاعلام,راية,علم الفريق,اللافتات" + ], + "en_answers": [ + "flags", + "flag", + "sign" + ], + "count": 4 + }, + { + "answers": [ + "الالعاب النارية" + ], + "en_answers": [ + "firework" + ], + "count": 1 + }, + { + "answers": [ + "القرقابو", + "قرقابو" + ], + "en_answers": [ + "karkabou", + "qraqeb", + "garagab", + "krakeb" + ], + "count": 1 + }, + { + "answers": [ + "الدربوكة", + "دربوكة" + ], + "en_answers": [ + "darbuka", + "goblet drum", + "derbouka", + "darbouka" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-19": { + "question": "ما هو أشهر ملعب رياضي في الجزائر؟", + "en_question": "What is the most well known sporting stadium in your country?", + "annotations": [ + { + "answers": [ + "ملعب 5 جويلية", + "خمسة جويلية", + "5 جويلية" + ], + "en_answers": [ + "july 5 stadium", + "stade du 5 juillet", + "5 july 1962 stadium", + "5-juillet-1962 stadium", + "5th of july" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-23": { + "question": "من هو أشهر بارالمبي في الجزائر؟", + "en_question": "Who is the most famous Paralympian in your country?", + "annotations": [ + { + "answers": [ + "محمد علاق" + ], + "en_answers": [ + "mohamed allek" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 2, + "no-answer": 0 + } + }, + "New-en-26": { + "question": "ما هو أشهر هتاف رياضي في الجزائر؟", + "en_question": "What is the best recognized sporting chant in your country?", + "annotations": [ + { + "answers": [ + "وان تو ثري فيفا لالجيري", + "وان تو تري فيفا لالجيري", + "1 2 3 فيفا لالجيري" + ], + "en_answers": [ + "one two three, viva l'algérie", + "one, two, three, viva l'algérie", + "one two three, long live algeria", + "one, two, three, long live algeria" + ], + "count": 2 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-38": { + "question": "أي المهن معروفة بساعات العمل المرنة في الجزائر؟", + "en_question": "Which industries are known for more flexible working hours in your country?", + "annotations": [ + { + "answers": [ + "المهن المستقلة", + "المهن الحرة" + ], + "en_answers": [ + "freelance professions", + "freelance jobs" + ], + "count": 2 + }, + { + "answers": [ + "الحراسة", + "الحراصة" + ], + "en_answers": [ + "vigilance", + "guard", + "security" + ], + "count": 1 + }, + { + "answers": [ + "التجارة" + ], + "en_answers": [ + "commerce" + ], + "count": 1 + }, + { + "answers": [ + "خدمة الزبائن" + ], + "en_answers": [ + "customer service" + ], + "count": 1 + }, + { + "answers": [ + "مهن التدريس" + ], + "en_answers": [ + "teaching", + "teacher" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-41": { + "question": "من هو أشهر وأنجح رائد أعمال في الجزائر؟", + "en_question": "Who is the most well known and successful entrepreneur in your country?", + "annotations": [ + { + "answers": [ + "يسعد ربراب", + "ربراب" + ], + "en_answers": [ + "issad rebrab", + "rebrab" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-47": { + "question": "ما الذي يمكن أن نجد عادة في حديقة المنزل الخلفية في الجزائر؟", + "en_question": "What can typically be found in the back garden of houses in your country?", + "annotations": [ + { + "answers": [ + "اشجار", + "الأشجار", + "شجرة، أشجار، اشجار، شجر" + ], + "en_answers": [ + "tree" + ], + "count": 2 + }, + { + "answers": [ + "سلك لتعليق الملابس", + "سلق لتعليق الملابس" + ], + "en_answers": [ + "clothes hanger" + ], + "count": 1 + }, + { + "answers": [ + "زهور" + ], + "en_answers": [ + "flower" + ], + "count": 1 + }, + { + "answers": [ + "ارجوحة", + "أرجوحة" + ], + "en_answers": [ + "swing" + ], + "count": 1 + }, + { + "answers": [ + "شجرة ليمون" + ], + "en_answers": [ + "lemon tree" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-49": { + "question": "ما هو اسم أشهر عائلة في الجزائر؟", + "en_question": "What is the name of the most famous family in your country?", + "annotations": [], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 1 + } + }, + "New-en-50": { + "question": "ما هو أكثر اسماء العائلة شيوعًا في الجزائر؟", + "en_question": "What is the most common family name in your country?", + "annotations": [], + "idks": { + "idk": 2, + "no-answer": 2, + "not-applicable": 0 + } + }, + "New-en-55": { + "question": "أي ديانة هي الأكثر ممارسة من قبل العائلات في الجزائر؟", + "en_question": "Which religion is most commonly practiced by families in your country?", + "annotations": [ + { + "answers": [ + "الإسلام", + "الاسلام" + ], + "en_answers": [ + "islam" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-56": { + "question": "ما هي أكثر لغة أجنبية يتحدث بها العائلات في الجزائر؟", + "en_question": "What is the most popular foreign language spoken by families in your country?", + "annotations": [ + { + "answers": [ + "الفرنسية" + ], + "en_answers": [ + "french" + ], + "count": 4 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-59": { + "question": "ما هو البلد التي تهاجر له أكثر العائلات الجزائريةا؟", + "en_question": "Which country is the most popular destination for families from your country to emigrate to?", + "annotations": [ + { + "answers": [ + "فرنسا" + ], + "en_answers": [ + "france" + ], + "count": 4 + }, + { + "answers": [ + "كندا" + ], + "en_answers": [ + "canada" + ], + "count": 3 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-68": { + "question": "ما هي العواقب المترتبة على السلوك السيئ في المدارس في الجزائر؟", + "en_question": "What repercussions are there for bad behavior in schools in your country?", + "annotations": [ + { + "answers": [ + "الطرد", + "طرد", + "مجلس التأديب و ربما الطرد" + ], + "en_answers": [ + "expulsion" + ], + "count": 3 + }, + { + "answers": [ + "الوقوف في الركن" + ], + "en_answers": [ + "parking in the corner", + "stand in the corner" + ], + "count": 1 + }, + { + "answers": [ + "إحضار الولي" + ], + "en_answers": [ + "bring the parent", + "parent teacher conference", + "parent-teacher conference" + ], + "count": 1 + }, + { + "answers": [ + "مجلس التأديب", + "مجلس التأديب و ربما الطرد" + ], + "en_answers": [ + "disciplinary council" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-69": { + "question": "من هم الكتّاب الذين تدرس أعمالهم في حصص الأدب في الجزائر؟", + "en_question": "Which writers are commonly studied in literature class in your country?", + "annotations": [ + { + "answers": [ + "مولود فرعون" + ], + "en_answers": [ + "mouloud feraoun" + ], + "count": 2 + }, + { + "answers": [ + "محمد ديب" + ], + "en_answers": [ + "mohammed dib" + ], + "count": 2 + }, + { + "answers": [ + "محمود درويش" + ], + "en_answers": [ + "mahmoud darwish" + ], + "count": 1 + }, + { + "answers": [ + "مولود معمري" + ], + "en_answers": [ + "mouloud mammeri" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-70": { + "question": "كم عدد العطل المدرسية في السنة للمدارس الثانوية في الجزائر؟ (استعمل الأرقام العربية فقط مثل 1.)", + "en_question": "How many school breaks are there in a year for high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 4 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-72": { + "question": "أي مورد إلكتروني يستخدمه الطلاب للدراسة في الجزائر؟", + "en_question": "Which online resource do students usually use to study in your country?", + "annotations": [ + { + "answers": [ + "يوتيوب" + ], + "en_answers": [ + "youtube" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-en-75": { + "question": "ما هو متوسط طول الفصل الدراسي من حيث عدد أسابيع التدريس في الجامعات الجزائرية؟ (استعمل الأرقام العربية فقط مثل 1.)", + "en_question": "What is the average length of a semester in terms of weeks of teaching at universities in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 2 + }, + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 1 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-76": { + "question": "ما هو المطار الأكثر ازدحامًا خلال موسم العطل في الجزائر؟", + "en_question": "Which airport in your country is the busiest during the holiday season?", + "annotations": [ + { + "answers": [ + "هواري بومدين", + "خواري بومدين", + "مطار الجزائر" + ], + "en_answers": [ + "houari boumediene", + "algiers airport" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-79": { + "question": "ما هي المنطقة الجزائرية المعروفة بالعروض المسرحية؟", + "en_question": "Which region of your country is well known for its theatrical performances?", + "annotations": [ + { + "answers": [ + "سيدي بلعباس" + ], + "en_answers": [ + "sidi bel abbès", + "sidi bel abbes" + ], + "count": 2 + }, + { + "answers": [ + "تمقاد", + "تمجاد" + ], + "en_answers": [ + "timgad", + "timqad" + ], + "count": 1 + }, + { + "answers": [ + "وهران" + ], + "en_answers": [ + "oran" + ], + "count": 1 + }, + { + "answers": [ + "الصحراء" + ], + "en_answers": [ + "sahara" + ], + "count": 1 + }, + { + "answers": [ + "الجزائر العاصمة" + ], + "en_answers": [ + "algiers" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-87": { + "question": "ما هو أشهر معلم تاريخي في الجزائر؟", + "en_question": "What is the most famous historic landmark in your country?", + "annotations": [ + { + "answers": [ + "تمقاد" + ], + "en_answers": [ + "timgad", + "timqad" + ], + "count": 2 + }, + { + "answers": [ + "مقام الشهيد" + ], + "en_answers": [ + "martyrs' memorial", + "maqam echahid", + "martyr's memorial", + "memorial of the martyr", + "sanctuary of the martyr", + "maqam e'chahid" + ], + "count": 2 + }, + { + "answers": [ + "القصبة" + ], + "en_answers": [ + "casbah", + "kasbah" + ], + "count": 2 + }, + { + "answers": [ + "قبر الرومية", + "الاثار الرومانية" + ], + "en_answers": [ + "roman ruins" + ], + "count": 1 + }, + { + "answers": [ + "الطاسيلي" + ], + "en_answers": [ + "tassili" + ], + "count": 1 + }, + { + "answers": [ + "قبر الرومية", + "الضريح الملكي الموريتاني" + ], + "en_answers": [ + "royal mausoleum of mauritania", + "royal mausoleum of mauretania" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-90": { + "question": "ما هي أشهر علامة فندقية في الجزائر؟", + "en_question": "What is the most famous hotel brand in your country?", + "annotations": [ + { + "answers": [ + "شيراتون" + ], + "en_answers": [ + "sheraton" + ], + "count": 2 + }, + { + "answers": [ + "الأوراسي" + ], + "en_answers": [ + "aurès", + "aures" + ], + "count": 2 + }, + { + "answers": [ + "إيبيس", + "ibis" + ], + "en_answers": [ + "ibis" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-05": { + "question": "ما هي أشهر وجبة فطور سريعة في الجزائر؟", + "en_question": "What is the most popular grab-and-go breakfast option in your country?", + "annotations": [ + { + "answers": [ + "القهوة", + "القهوة والخبز مع الزبدة/المربى", + "القهوة والخبز مع الكرواسان أو المخبوزات", + "قهوة" + ], + "en_answers": [ + "coffee" + ], + "count": 2 + }, + { + "answers": [ + "الخبز مع الزبدة", + "القهوة والخبز مع الزبدة/المربى" + ], + "en_answers": [ + "bread with butter", + "bread and butter" + ], + "count": 1 + }, + { + "answers": [ + "الخبز مع المربى", + "القهوة والخبز مع الزبدة/المربى" + ], + "en_answers": [ + "bread with jam", + "bread and jam" + ], + "count": 1 + }, + { + "answers": [ + "الكرواسان", + "القهوة والخبز مع الكرواسان أو المخبوزات" + ], + "en_answers": [ + "croissant" + ], + "count": 1 + }, + { + "answers": [ + "المخبوزات", + "القهوة والخبز مع الكرواسان أو المخبوزات" + ], + "en_answers": [ + "pastries" + ], + "count": 1 + }, + { + "answers": [ + "السفنج" + ], + "en_answers": [ + "sfenj", + "bambalouni", + "bambaloni", + "khfaf", + "sfinz" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-06": { + "question": "ما هو الطعام الأكثر شعبية بين الشباب في الجزائر؟", + "en_question": "What is the most popular food in your country among young people?", + "annotations": [ + { + "answers": [ + "البيتزا", + "بيتزا" + ], + "en_answers": [ + "pizza" + ], + "count": 3 + }, + { + "answers": [ + "البيتزا", + "البيزا", + "بيتزا" + ], + "en_answers": [ + "pizza" + ], + "count": 2 + }, + { + "answers": [ + "الساندويش", + "ساندويش,سندويش,السندويش" + ], + "en_answers": [ + "sandwich" + ], + "count": 1 + }, + { + "answers": [ + "برغر", + "برجر، البرغر، البرجر" + ], + "en_answers": [ + "burger" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-08": { + "question": "ما هو المشروب الكحولي الذي يتم استهلاكه بكثرة في المهرجانات في الجزائر؟", + "en_question": "What type of alcoholic drink is most commonly consumed at festivals in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "New-gr-13": { + "question": "ما هو المشروب الصباحي الأكثر شيوعا في الجزائر؟", + "en_question": "What is the most common morning drink in your country?", + "annotations": [ + { + "answers": [ + "الحليب" + ], + "en_answers": [ + "milk" + ], + "count": 3 + }, + { + "answers": [ + "القهوة", + "قهوة" + ], + "en_answers": [ + "coffee" + ], + "count": 3 + }, + { + "answers": [ + "قهوة بالحليب" + ], + "en_answers": [ + "coffee with milk" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-15": { + "question": "ما هي أشهر حلوى تقليدية في الجزائر؟", + "en_question": "What is the most popular traditional dessert in your country?", + "annotations": [ + { + "answers": [ + "البقلاوة", + "بقلاوة" + ], + "en_answers": [ + "baklava" + ], + "count": 2 + }, + { + "answers": [ + "الدزيريات", + "الدزيرياة", + "دزيريات" + ], + "en_answers": [ + "dziriette", + "dziriet" + ], + "count": 2 + }, + { + "answers": [ + "المقروط", + "مقروط", + "مقرط" + ], + "en_answers": [ + "makroud", + "makrout" + ], + "count": 2 + }, + { + "answers": [ + "التشاراك", + "تشاراك" + ], + "en_answers": [ + "tcharek" + ], + "count": 1 + }, + { + "answers": [ + "حلوة الطابع" + ], + "en_answers": [ + "halwet ettabaa", + "halwet taba", + "halwet tabe", + "halwet eltaba" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-21": { + "question": "ما هي أكثر رياضة مضرب شعبية في الجزائر؟", + "en_question": "What is the most popular racket sport in your country?", + "annotations": [ + { + "answers": [ + "التنس" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + }, + { + "answers": [ + "تنس الطاولة" + ], + "en_answers": [ + "table tennis" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "no-answer": 1, + "idk": 0 + } + }, + "New-gr-24": { + "question": "ما هو أشهر رياضة ألعاب قوى في الجزائر؟", + "en_question": "What is the most popular track and field sport in your country?", + "annotations": [ + { + "answers": [ + "العدو", + "الركض، الجري" + ], + "en_answers": [ + "running" + ], + "count": 1 + }, + { + "answers": [ + "رفع الأثقال" + ], + "en_answers": [ + "weightlifting" + ], + "count": 1 + }, + { + "answers": [ + "كمال الأجسام" + ], + "en_answers": [ + "bodybuilding" + ], + "count": 1 + }, + { + "answers": [ + "العدو الريفي" + ], + "en_answers": [ + "cross country running", + "cross-country" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-29": { + "question": "أي حدث رياضي دولي هو الأكثر شعبية في الجزائر؟", + "en_question": "Which international sporting event is the most popular in your country?", + "annotations": [ + { + "answers": [ + "كأس العالم لكرة القدم", + "كأس العالم", + "كاس العالم" + ], + "en_answers": [ + "fifa world cup", + "world cup" + ], + "count": 4 + }, + { + "answers": [ + "كأس الجزائر لكرة القدم" + ], + "en_answers": [ + "algerian football cup", + "algerian cup", + "republic cup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-47": { + "question": "كم تدوم (بالدقائق) فترات الراحة العادية في العمل بالجزائر، باستثناء فترات الغداء والعشاء؟ (قدم الأرقام بالأرقام العربية فقط مثلاً، 1).", + "en_question": "How long (in minutes) are typical work breaks in your country, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + }, + { + "answers": [ + "35" + ], + "en_answers": [ + "35" + ], + "count": 1 + }, + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-gr-58": { + "question": "ما الوظيفة التي يعتبر أجرها منخفض في الجزائر؟", + "en_question": "Which job is considered underpaid in your country?", + "annotations": [ + { + "answers": [ + "عامل تنظيف", + "عامل النظافة" + ], + "en_answers": [ + "cleaning worker", + "cleaner" + ], + "count": 2 + }, + { + "answers": [ + "حارس" + ], + "en_answers": [ + "guard" + ], + "count": 1 + }, + { + "answers": [ + "بائع" + ], + "en_answers": [ + "seller" + ], + "count": 1 + }, + { + "answers": [ + "موظف عمومي", + "موضف عمومي" + ], + "en_answers": [ + "public employee", + "civil service official", + "public servant" + ], + "count": 1 + }, + { + "answers": [ + "سائق" + ], + "en_answers": [ + "driver" + ], + "count": 1 + }, + { + "answers": [ + "عون امن", + "عون أمن" + ], + "en_answers": [ + "security officer", + "security guard" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-76": { + "question": "ما هو الطعام الذي يُقدم خلال عيد الفصح في الجزائر؟", + "en_question": "What is the most common food served during Easter in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "New-gr-82": { + "question": "ما هو أشهر نوع موسيقي بين المسنين في الجزائر؟", + "en_question": "What is the most popular music genre among the elderly population in your country?", + "annotations": [ + { + "answers": [ + "الشعبي" + ], + "en_answers": [ + "popular" + ], + "count": 5 + }, + { + "answers": [ + "المالوف" + ], + "en_answers": [ + "malouf", + "ma'luf" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-88": { + "question": "ما هو المشروب الذي يُقدم في الجنازات في الجزائر؟", + "en_question": "What drink is usually offered at funerals in your country?", + "annotations": [ + { + "answers": [ + "القهوة", + "قهوة" + ], + "en_answers": [ + "coffee" + ], + "count": 4 + }, + { + "answers": [ + "الشاي", + "شاي" + ], + "en_answers": [ + "tea" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-89": { + "question": "ما هو المشروب الذي يُقدم في الأعراس في الجزائر؟", + "en_question": "What drink is usually offered at weddings in your country?", + "annotations": [ + { + "answers": [ + "القهوة", + "قهوة" + ], + "en_answers": [ + "coffee" + ], + "count": 4 + }, + { + "answers": [ + "العصير", + "عصير" + ], + "en_answers": [ + "juice" + ], + "count": 4 + }, + { + "answers": [ + "الشاي", + "شاي" + ], + "en_answers": [ + "tea" + ], + "count": 3 + }, + { + "answers": [ + "الصودا", + "الڨازوز", + "المشروبات الغازية,مشروبات غازية" + ], + "en_answers": [ + "soda", + "bottle" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-07": { + "question": "ما هو الطعام الذي أصله من الجزائر ويمكن العثور عليه في جميع أنحاء العالم؟", + "en_question": "What food originated from your country and can be found all over the world?", + "annotations": [ + { + "answers": [ + "الكسكس", + "كسكس", + "الكسكسي" + ], + "en_answers": [ + "couscous" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-08": { + "question": "ما هو الطعام الذي يكرهه الأطفال و يستمتع به كبار السن عادة في الجزائر؟", + "en_question": "What food is typically disliked by children but enjoyed by the elderly in your country?", + "annotations": [ + { + "answers": [ + "اللفت" + ], + "en_answers": [ + "turnip" + ], + "count": 1 + }, + { + "answers": [ + "الطبيخة" + ], + "en_answers": [ + "tbikha" + ], + "count": 1 + }, + { + "answers": [ + "أطباق الخضروات" + ], + "en_answers": [ + "vegetable" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-09": { + "question": "ما هي أداة الطبخ الأكثر استخداما في الجزائر؟", + "en_question": "What cooking utensil is most commonly used in your country?", + "annotations": [ + { + "answers": [ + "القدر", + "قدر" + ], + "en_answers": [ + "pot", + "steam pot" + ], + "count": 2 + }, + { + "answers": [ + "الفرن", + "فرن" + ], + "en_answers": [ + "oven" + ], + "count": 1 + }, + { + "answers": [ + "المقلاة", + "مقلاة" + ], + "en_answers": [ + "frying pan" + ], + "count": 1 + }, + { + "answers": [ + "ملعقة خشبية", + "الملعقة الخشبية" + ], + "en_answers": [ + "wooden spoon" + ], + "count": 1 + }, + { + "answers": [ + "الطنجرة", + "طنجرة" + ], + "en_answers": [ + "pot", + "pressure cooker" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-13": { + "question": "ما هو نوع الخضار الأكثر شعبية في الجزائر؟", + "en_question": "Which is the most popular vegetable in your country?", + "annotations": [ + { + "answers": [ + "البطاطا", + "بطاطا" + ], + "en_answers": [ + "potatoes", + "potato" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-19": { + "question": "ما هو الحيوان الذي يُستخدم في الرياضة في الجزائر؟", + "en_question": "Which animal is used for sports in your country?", + "annotations": [ + { + "answers": [ + "الخيل", + "الحصان", + "حصان,الأحصنة" + ], + "en_answers": [ + "horses", + "horse" + ], + "count": 4 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-ha-66": { + "question": "ما هو أشهر مكان لإقامة الأعراس في الجزائر؟", + "en_question": "What is the most popular wedding venue in your country?", + "annotations": [ + { + "answers": [ + "قاعات الحفلات", + "قاعة الحفلات", + "قاعة الأعراس", + "قاعة الأعراس, قاعات الحفلات" + ], + "en_answers": [ + "banquet hall", + "concert hall", + "wedding hall" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-01": { + "question": "ما هي العلامة التجارية لمقاهي الأكثر شعبية في الجزائر؟", + "en_question": "Which coffee shop brand is the most popular in your country?", + "annotations": [], + "idks": { + "not-applicable": 3, + "idk": 1, + "no-answer": 1 + } + }, + "New-in-03": { + "question": "ما هي الأطعمة الجزائرية التي تقدم عادة في المطاعم الجزائرية في الخارج؟", + "en_question": "What type of food from your country is typically served in restaurants overseas?", + "annotations": [ + { + "answers": [ + "الكسكس", + "الكسكسي", + "كسكس,الكسكسي, كسكسي" + ], + "en_answers": [ + "couscous" + ], + "count": 3 + }, + { + "answers": [ + "الشخشوخة", + "شخشوخة" + ], + "en_answers": [ + "chakhchoukha", + "chekhechoukha" + ], + "count": 1 + }, + { + "answers": [ + "الحميص", + "سلطة فلفل,سلطة الفلفل" + ], + "en_answers": [ + "hmiss", + "pepper salad" + ], + "count": 1 + }, + { + "answers": [ + "الرشتة" + ], + "en_answers": [ + "rishta", + "lentils and pasta soup", + "libyan-style pasta", + "reshta", + "rechta" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-33": { + "question": "أي منطقة في الجزائر عادة ما ترتبط بإستخراج المعادن؟", + "en_question": "What region in your country is usually associated with mining?", + "annotations": [ + { + "answers": [ + "الصحراء" + ], + "en_answers": [ + "sahara" + ], + "count": 3 + }, + { + "answers": [ + "عنابة" + ], + "en_answers": [ + "annaba", + "bon", + "bona", + "bône" + ], + "count": 1 + }, + { + "answers": [ + "الحجار" + ], + "en_answers": [ + "el hajar", + "el hadjar" + ], + "count": 1 + }, + { + "answers": [ + "منطقة بشار" + ], + "en_answers": [ + "bechar", + "béchar" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-34": { + "question": "أي منطقة في الجزائر عادة ما ترتبط بالنفط؟", + "en_question": "What region in your country is usually associated with oil?", + "annotations": [ + { + "answers": [ + "حاسي مسعود", + "منطقة حاسي مسعود" + ], + "en_answers": [ + "hassi messaoud" + ], + "count": 3 + }, + { + "answers": [ + "حاسي رمل" + ], + "en_answers": [ + "hassi r'mel" + ], + "count": 2 + }, + { + "answers": [ + "الصحراء" + ], + "en_answers": [ + "sahara" + ], + "count": 2 + }, + { + "answers": [ + "عين امناس", + "اين امناس" + ], + "en_answers": [ + "ain amenas", + "in amenas" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-62": { + "question": " ما هي الجامعة الجزائرية المشهورة بتخصص الهندسة؟ (استعمل الاسم الرسمي.)", + "en_question": "What university in your country is popular because of its engineering major? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "المدرسة الوطنية المتعددة التقنيات", + "المدرس العليا للهندسة", + "المدرسة متعددة التقنيات" + ], + "en_answers": [ + "national polytechnic school", + "higher school of engineering", + "polytechnic school" + ], + "count": 4 + }, + { + "answers": [ + "جامعة العلوم والتكنولوجيا هواري بومدين", + "جامعة هواري بومدين" + ], + "en_answers": [ + "houari boumediene university of science and technology", + "university of science and technology", + "houari boumediene university" + ], + "count": 2 + }, + { + "answers": [ + "المدرسة العليا للإعلام العالي" + ], + "en_answers": [ + "the higher school of informatics", + "higher national school of computer science" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-63": { + "question": " ما هي الجامعة الجزائرية المشهورة بتخصص الطب ؟ (استعمل الاسم الرسمي.)", + "en_question": "What university in your country is popular because of its school of medicine? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "كلية الطب الزيانية", + "الزيانية", + "كلية الطب" + ], + "en_answers": [ + "ziania medical school", + "algiers faculty of medicine", + "algiers faculty of medicine - ziania", + "zianides", + "faculty of medicine" + ], + "count": 4 + }, + { + "answers": [ + "جامعة الجزائر بن يوسف بن خدة", + "الجامعة الجزائرية بن يوسف بن خدة" + ], + "en_answers": [ + "algerian university benyoucef benkhedda", + "university of algiers" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-78": { + "question": "ما هي طريقة الدفع الأكثر استعمالا في الجزائر؟", + "en_question": "What is the most popular payment method in your country?", + "annotations": [ + { + "answers": [ + "نقدا", + "النقد", + "الدفع المباشر", + "لنقد", + "دفع مباشر" + ], + "en_answers": [ + "cash", + "direct payment" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-80": { + "question": "ما هي أشهر مدينة ملاهي في الجزائر؟", + "en_question": "What is the most famous theme park in your country?", + "annotations": [ + { + "answers": [ + "بن عكنون" + ], + "en_answers": [ + "ben aknoun" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 1, + "no-answer": 1 + } + }, + "New-ko-01": { + "question": "ما هو أشهر فيلم كرتون الذي يشاهده الأطفال في الجزائر بكثرة؟", + "en_question": "What is the most popular children's animation that is commonly watched by kids in your country?", + "annotations": [ + { + "answers": [ + "طوم و جيري", + "توم و جيري" + ], + "en_answers": [ + "tom and jerry" + ], + "count": 2 + }, + { + "answers": [ + "دراغون بول" + ], + "en_answers": [ + "dragon ball" + ], + "count": 1 + }, + { + "answers": [ + "الكابتن ماجد" + ], + "en_answers": [ + "captain tsubasa" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-02": { + "question": "ما هو أشهر نشاط تعليمي قبل الولادة للنساء الحوامل في الجزائر؟", + "en_question": "What is the most popular prenatal education activity for pregnant women in your country?", + "annotations": [], + "idks": { + "idk": 3, + "no-answer": 2, + "not-applicable": 0 + } + }, + "New-ko-03": { + "question": "ما هي أشهر أغنية للأطفال التي تغنيها العائلات معًا في الجزائر؟", + "en_question": "What is the most popular children's song in your country that families sing together?", + "annotations": [], + "idks": { + "idk": 3, + "no-answer": 2, + "not-applicable": 0 + } + }, + "New-ko-04": { + "question": "ما هي الألعاب الأكثر شعبية بين الأولاد في الجزائر؟", + "en_question": "Which toys are most popular among boys in your country?", + "annotations": [ + { + "answers": [ + "الكرة", + "كرة القدم" + ], + "en_answers": [ + "ball", + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "كرات الخرز", + "الكريات الزجاجية" + ], + "en_answers": [ + "bead balls", + "beads" + ], + "count": 2 + }, + { + "answers": [ + "الغميضة", + "غميضة" + ], + "en_answers": [ + "hide and seek" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-05": { + "question": "ما هي الألعاب الأكثر شعبية بين الفتيات في الجزائر؟", + "en_question": "Which toys are most popular among girls in your country?", + "annotations": [ + { + "answers": [ + "الدمى", + "اللعب بالدمى", + "الدمية", + "الدمية,اللعب بالدمى" + ], + "en_answers": [ + "doll", + "playing with dolls" + ], + "count": 3 + }, + { + "answers": [ + "الغميضة" + ], + "en_answers": [ + "hide and seek" + ], + "count": 1 + }, + { + "answers": [ + "القفز" + ], + "en_answers": [ + "jumping", + "jump" + ], + "count": 1 + }, + { + "answers": [ + "لعبة المربعات" + ], + "en_answers": [ + "squares game", + "cube" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-06": { + "question": "ما هي أشهر قصة شعبية تُروى عادة للأطفال في الجزائر؟", + "en_question": "What is the most popular folk tale in your country that is typically told to children?", + "annotations": [ + { + "answers": [ + "قصص جحا", + "جحا" + ], + "en_answers": [ + "juha's stories", + "juha stories", + "juha" + ], + "count": 2 + }, + { + "answers": [ + "قيس و ليلى" + ], + "en_answers": [ + "qays and layla" + ], + "count": 1 + }, + { + "answers": [ + "قصص الثعلب الماكر" + ], + "en_answers": [ + "the cunning fox" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-07": { + "question": "ما هو الرمز التقليدي للتعزية المستخدم في الجنازات في الجزائر؟", + "en_question": "What is the customary symbol of condolence used at funerals in your country?", + "annotations": [ + { + "answers": [ + "الدعاء" + ], + "en_answers": [ + "supplication", + "prayer", + "pray" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "no-answer": 1, + "idk": 0 + } + }, + "New-ko-08": { + "question": "أين يميل طلاب الجامعة للعمل بدوام جزئي في الجزائر؟", + "en_question": "Where do university students in your country tend to work part-time the most?", + "annotations": [ + { + "answers": [ + "مراكز المكالمات", + "مراكز الاتصال" + ], + "en_answers": [ + "call center" + ], + "count": 2 + }, + { + "answers": [ + "المحلات التجارية" + ], + "en_answers": [ + "shop" + ], + "count": 1 + }, + { + "answers": [ + "المطاعم" + ], + "en_answers": [ + "restaurant" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ko-09": { + "question": "ما هي أنشطة بناء الفريق التي تمارس بشكل متكرر في الشركات الموجودة في الجزائر؟", + "en_question": "What are the most frequently practiced team-building activities in companies based in your country?", + "annotations": [], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ko-10": { + "question": "ما هي الأنشطة التي يقوم بها الناس كعمل إضافي في الجزائر؟", + "en_question": "What are the most common activities people do as a side job in your country?", + "annotations": [ + { + "answers": [ + "المتاجرة", + "التجارة" + ], + "en_answers": [ + "trading", + "trade" + ], + "count": 1 + }, + { + "answers": [ + "خدمة التوصيل", + "التوصيل" + ], + "en_answers": [ + "delivery" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "not-applicable": 1, + "idk": 0 + } + }, + "New-pe-02": { + "question": "ما هو أشهر أكل يقدم للسياح في الجزائر؟", + "en_question": "What is the most famous edible souvenir for tourists in your country?", + "annotations": [ + { + "answers": [ + "الكسكس", + "الكسكسي", + "الكسكسي,كسكس" + ], + "en_answers": [ + "couscous" + ], + "count": 4 + }, + { + "answers": [ + "التمر", + "تمر" + ], + "en_answers": [ + "dates" + ], + "count": 1 + }, + { + "answers": [ + "الحلويات", + "حلويات" + ], + "en_answers": [ + "sweets" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-06": { + "question": "ما هو أشهر طاجين في الجزائر؟", + "en_question": "What is the most popular stew in your country?", + "annotations": [ + { + "answers": [ + "طاجين الزيتون" + ], + "en_answers": [ + "olive tagine", + "tajine zitoun", + "tajine el zitoune", + "tagine zitoune" + ], + "count": 3 + }, + { + "answers": [ + "طاجين لحلو" + ], + "en_answers": [ + "sweet tagine", + "lham hlou", + "lham lahlou", + "tajine lahlou" + ], + "count": 1 + }, + { + "answers": [ + "الشطيطحة" + ], + "en_answers": [ + "chtitha" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-11": { + "question": "ما هي التوابل/الأعشاب الأكثر استعمالا في الأطباق الجزائرية؟", + "en_question": "What is the most common spice/herb used in dishes from your country?", + "annotations": [ + { + "answers": [ + "الفلفل الاسود", + "فلفل اسود" + ], + "en_answers": [ + "black pepper" + ], + "count": 2 + }, + { + "answers": [ + "الفلفل الأحمر", + "فلفل أحمر,العكري" + ], + "en_answers": [ + "red pepper" + ], + "count": 1 + }, + { + "answers": [ + "الزعتر", + "زعتر" + ], + "en_answers": [ + "thyme" + ], + "count": 1 + }, + { + "answers": [ + "الرند", + "رند" + ], + "en_answers": [ + "bay leaves", + "bay leaf" + ], + "count": 1 + }, + { + "answers": [ + "المعدنوس" + ], + "en_answers": [ + "parsley" + ], + "count": 1 + }, + { + "answers": [ + "القصبر" + ], + "en_answers": [ + "coriander" + ], + "count": 1 + }, + { + "answers": [ + "الكمون،", + "الفلفل الأسود، الفلفل الأحمر، الكمون، القرفة، الكروية، القرنفل، النعناع، الزعتر، الحبق." + ], + "en_answers": [ + "cumin" + ], + "count": 1 + }, + { + "answers": [ + "القرفة", + "الفلفل الأسود، الفلفل الأحمر، الكمون، القرفة، الكروية، القرنفل، النعناع، الزعتر، الحبق." + ], + "en_answers": [ + "cinnamon" + ], + "count": 1 + }, + { + "answers": [ + "الكروية", + "الفلفل الأسود، الفلفل الأحمر، الكمون، القرفة، الكروية، القرنفل، النعناع، الزعتر، الحبق." + ], + "en_answers": [ + "caraway" + ], + "count": 1 + }, + { + "answers": [ + "القرنفل", + "الفلفل الأسود، الفلفل الأحمر، الكمون، القرفة، الكروية، القرنفل، النعناع، الزعتر، الحبق." + ], + "en_answers": [ + "cloves", + "clove" + ], + "count": 1 + }, + { + "answers": [ + "الحبق", + "الفلفل الأسود، الفلفل الأحمر، الكمون، القرفة، الكروية، القرنفل، النعناع، الزعتر، الحبق." + ], + "en_answers": [ + "basil" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-16": { + "question": "ما هي. أشهر الرياضات التقليدية في الجزائر؟", + "en_question": "What is the most famous traditional sport in your country?", + "annotations": [ + { + "answers": [ + "كرة القدم", + "الكرة" + ], + "en_answers": [ + "football", + "soccer", + "ball" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 1 + } + }, + "New-pe-20": { + "question": "ما هي الرياضات التي يمارسها الناس على الشاطئ في الجزائر؟", + "en_question": "What sport is popular to play on the beach in your country?", + "annotations": [ + { + "answers": [ + "كرة الطائرة", + "الكرة الطائرة" + ], + "en_answers": [ + "volleyball" + ], + "count": 3 + }, + { + "answers": [ + "التنس" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + }, + { + "answers": [ + "كرة القدم" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "السباحة" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-45": { + "question": "ما هو جدول العمل المعتاد خلال شهر رمضان في الجزائر؟", + "en_question": "What is the usual work schedule during the month of Ramadan in your country?", + "annotations": [ + { + "answers": [ + "من التاسعة صباحا الى الرابعة مساءا" + ], + "en_answers": [ + "from 9 am to 4 pm", + "9 to 4" + ], + "count": 1 + }, + { + "answers": [ + "عادي" + ], + "en_answers": [ + "normal" + ], + "count": 1 + }, + { + "answers": [ + "دوام جزئي" + ], + "en_answers": [ + "part-time" + ], + "count": 1 + }, + { + "answers": [ + "جدول عمل متواصل دون إستراحة الغذاء" + ], + "en_answers": [ + "continuous work schedule without lunch break", + "without lunch break" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-47": { + "question": "متى يتم الاحتفال بيوم الطالب في الجزائر؟ (قدمه بتنسيق شهر/يوم مثل 12/31).", + "en_question": "When is Student's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "05/19" + ], + "en_answers": [ + "05/19" + ], + "count": 3 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-pe-49": { + "question": "أين تتجمع العائلات للصلاة معًا في الجزائر؟", + "en_question": "Where do families gather to pray together in your country?", + "annotations": [ + { + "answers": [ + "المسجد", + "في المسجد" + ], + "en_answers": [ + "mosque", + "in the mosque" + ], + "count": 5 + }, + { + "answers": [ + "المنزل", + "البيت" + ], + "en_answers": [ + "house", + "home" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-53": { + "question": "ما هي الهدايا التي يحصل عليها الآباء في عيد الأب (أو عيد الوالدين) في الجزائر؟", + "en_question": "What gifts do fathers get on Father's Day (or Parents' Day) in your country?", + "annotations": [ + { + "answers": [ + "عطور" + ], + "en_answers": [ + "perfume" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 1, + "no-answer": 1 + } + }, + "New-pe-54": { + "question": "ما هي الهدايا التي تحصل عليها الأمهات في عيد الأم (أو عيد الوالدين) في الجزائر؟", + "en_question": "What gifts do mothers get on Mother's Day (or Parents' Day) in your country?", + "annotations": [ + { + "answers": [ + "الورد" + ], + "en_answers": [ + "flower" + ], + "count": 2 + }, + { + "answers": [ + "العطر", + "عطور", + "العطر,عطر" + ], + "en_answers": [ + "perfume" + ], + "count": 2 + }, + { + "answers": [ + "الشكلاطة", + "شكلاطة" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + }, + { + "answers": [ + "الورود", + "ورد,الورد" + ], + "en_answers": [ + "rose" + ], + "count": 1 + }, + { + "answers": [ + "الصابون", + "صابون" + ], + "en_answers": [ + "soap" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-59": { + "question": "في العائلة الجزائرية الواحدة, كم من جيل يعيشون معا في منزل واحد؟ (استعمل الأرقام العربية فقط مثل 12.)", + "en_question": "How many generations typically live together in a household in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 4 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-65": { + "question": "كم عدد المواد التي يتم تدريسها في المدارس الثانوية في الجزائر؟ (استعمل الأرقام العربية فقط مثل 12.)", + "en_question": "How many subjects are taught in middle schools in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 2 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 2 + }, + { + "answers": [ + "13" + ], + "en_answers": [ + "13" + ], + "count": 1 + }, + { + "answers": [ + "11" + ], + "en_answers": [ + "11" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-66": { + "question": "ما هي أكثر الأنشطة شعبية بعد المدرسة عند طلاب المدارس الابتدائية في الجزائر؟", + "en_question": "What is the most popular after school curricular in elementary schools in your country?", + "annotations": [ + { + "answers": [ + "الرجوع الى المنزل" + ], + "en_answers": [ + "returning home", + "go home" + ], + "count": 1 + }, + { + "answers": [ + "الرياضة" + ], + "en_answers": [ + "sports" + ], + "count": 1 + }, + { + "answers": [ + "اللعب" + ], + "en_answers": [ + "play" + ], + "count": 1 + }, + { + "answers": [ + "كرة القدم" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "القفز" + ], + "en_answers": [ + "jumping" + ], + "count": 1 + }, + { + "answers": [ + "الركض" + ], + "en_answers": [ + "running" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-74": { + "question": "كم هي تكلفة الرسوم الدراسية السنوية المتوسطة للجامعات العمومية في الجزائر؟", + "en_question": "How much is the average annual tuition fee for public universities in your country?", + "annotations": [ + { + "answers": [ + "200 دج", + "150", + "200" + ], + "en_answers": [ + "200 dzd", + "200", + "150 dzd", + "150" + ], + "count": 3 + }, + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-pe-76": { + "question": "ما هي النشاطات التي يمكن القيام بها في الحدائق في الجزائر؟", + "en_question": "What is a popular activity to do in parks in your country?", + "annotations": [ + { + "answers": [ + "التنزه" + ], + "en_answers": [ + "strolling", + "hiking" + ], + "count": 1 + }, + { + "answers": [ + "تناول الغذاء", + "الأكل" + ], + "en_answers": [ + "eating" + ], + "count": 1 + }, + { + "answers": [ + "الركض" + ], + "en_answers": [ + "running" + ], + "count": 1 + }, + { + "answers": [ + "اللعب" + ], + "en_answers": [ + "play" + ], + "count": 1 + }, + { + "answers": [ + "كرة القدم" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "القفز" + ], + "en_answers": [ + "jumping" + ], + "count": 1 + }, + { + "answers": [ + "الدراجة الهوائية", + "ركوب الدراجة" + ], + "en_answers": [ + "bicycle" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-78": { + "question": "ما هو اسم أشهر مهرجان سينمائي يقام في الجزائر؟", + "en_question": "What is the name of the most famous film festival held in your country?", + "annotations": [ + { + "answers": [ + "وهران", + "المهرجان الدولي للفيلم العربي", + "مهرجان وهران", + "المهرجان الدولي للفيلم العربي,مهرجان وهران الدولي للفيلم العربي" + ], + "en_answers": [ + "oran", + "international festival of arab film", + "arab film festival", + "oran festival", + "oran international arabic film festival" + ], + "count": 3 + }, + { + "answers": [ + "عنابة" + ], + "en_answers": [ + "annaba", + "bon", + "bona", + "bône" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-pe-83": { + "question": "ما هي لعبة الورق الشعبية التي يتم لعبها خلال اللقاءات الاجتماعية في الجزائر؟", + "en_question": "What is the popular card game played during social gatherings in your country?", + "annotations": [ + { + "answers": [ + "الكوينش" + ], + "en_answers": [ + "coinche" + ], + "count": 1 + }, + { + "answers": [ + "الرامي" + ], + "en_answers": [ + "rummy" + ], + "count": 1 + }, + { + "answers": [ + "الروندة" + ], + "en_answers": [ + "roundabout", + "ronda" + ], + "count": 1 + }, + { + "answers": [ + "لعبة العائلات السبعة" + ], + "en_answers": [ + "game of the seven families", + "7 families", + "seven families" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-pe-85": { + "question": "ما هي أشهر وجهة سياحية خارج البلاد للجزائريين؟", + "en_question": "Where is the most popular tourist destination abroad for people from your country?", + "annotations": [ + { + "answers": [ + "تونس" + ], + "en_answers": [ + "tunisia" + ], + "count": 3 + }, + { + "answers": [ + "تركيا" + ], + "en_answers": [ + "turkey", + "türkiye" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-86": { + "question": "ما هو اسم أشهر برج في الجزائر؟", + "en_question": "What is the name of the most famous tower in your country?", + "annotations": [ + { + "answers": [ + "مقام الشهيد" + ], + "en_answers": [ + "martyrs' memorial", + "maqam echahid", + "martyr's memorial", + "memorial of the martyr", + "sanctuary of the martyr", + "maqam e'chahid" + ], + "count": 2 + }, + { + "answers": [ + "برج بنك الخليج" + ], + "en_answers": [ + "gulf bank tower", + "gulf bank" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-spme-01": { + "question": "ما هي الحشرة الصالحة للأكل التي يتم تناولها في الجزائر؟", + "en_question": "What edible insect is eaten most often in your country?", + "annotations": [ + { + "answers": [ + "الجراد" + ], + "en_answers": [ + "locust" + ], + "count": 2 + }, + { + "answers": [ + "الحلزون" + ], + "en_answers": [ + "snail" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "New-spme-04": { + "question": "ما هو المنتج الزراعي يتم تصديره من الجزائر؟", + "en_question": "Which agricultural product is exported most often in your country?", + "annotations": [ + { + "answers": [ + "التمر", + "التمور" + ], + "en_answers": [ + "dates" + ], + "count": 4 + }, + { + "answers": [ + "البطاطا" + ], + "en_answers": [ + "potato" + ], + "count": 1 + }, + { + "answers": [ + "القمح" + ], + "en_answers": [ + "wheat" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-05": { + "question": "ما هي أشهر الحلويات في الجزائر؟", + "en_question": "What are the most popular sweets in your country?", + "annotations": [ + { + "answers": [ + "البقلاوة", + "بقلاوة" + ], + "en_answers": [ + "baklava" + ], + "count": 3 + }, + { + "answers": [ + "الدزيريات", + "دزيريات" + ], + "en_answers": [ + "dziriet" + ], + "count": 2 + }, + { + "answers": [ + "المقروط", + "مقروط" + ], + "en_answers": [ + "makroud", + "makrout" + ], + "count": 2 + }, + { + "answers": [ + "حلوة الطابع" + ], + "en_answers": [ + "halwet ettabaa", + "halwet taba", + "halwet tabe", + "halwet eltaba" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-15": { + "question": "ما هو المشروب الرياضي الأكثر شعبية في الجزائر؟", + "en_question": "What is the most popular sports drink in your country?", + "annotations": [ + { + "answers": [ + "ايزم" + ], + "en_answers": [ + "izem" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 1 + } + }, + "New-spme-27": { + "question": "ما هو متوسط مستوى التعليم في الجزائر؟", + "en_question": "What is the average education level for people in your country?", + "annotations": [ + { + "answers": [ + "جامعي", + "الجامعي" + ], + "en_answers": [ + "university" + ], + "count": 2 + }, + { + "answers": [ + "الثانوي", + "ثانوي" + ], + "en_answers": [ + "secondary" + ], + "count": 2 + }, + { + "answers": [ + "متوسط", + "المتوسط" + ], + "en_answers": [ + "average" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-37": { + "question": "بالنسبة للطلاب الجزائريين, ما هو التخصص الأكثر شيوعاً للدراسة في الخارج؟", + "en_question": "Which profession is most commonly studied abroad by students from your country?", + "annotations": [ + { + "answers": [ + "الهندسة" + ], + "en_answers": [ + "engineering" + ], + "count": 3 + }, + { + "answers": [ + "الطب", + "طب" + ], + "en_answers": [ + "medicine" + ], + "count": 2 + }, + { + "answers": [ + "الإعلام الآلي" + ], + "en_answers": [ + "computer science" + ], + "count": 1 + }, + { + "answers": [ + "التجارة" + ], + "en_answers": [ + "commerce" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-60": { + "question": "في أي يوم من أيام الأسبوع تمارس معظم العائلات الجزائرية أنشطة دينية؟ (مثلا الاثنين، الثلاثاء)", + "en_question": "Which day of the week do most families in your country practice religious activities? (e.g. Monday, Tuesday)", + "annotations": [ + { + "answers": [ + "الجمعة" + ], + "en_answers": [ + "friday" + ], + "count": 3 + }, + { + "answers": [ + "كل يوم" + ], + "en_answers": [ + "every day" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-65": { + "question": "ما هي الطريقة الشائعة للاحتفال بعيد الاستقلال في الجزائر؟", + "en_question": "What is the most popular way to celebrate Independence Day in your country?", + "annotations": [ + { + "answers": [ + "الاعلام", + "تعليق الأعلام", + "الأعلام" + ], + "en_answers": [ + "flag", + "hanging flags" + ], + "count": 2 + }, + { + "answers": [ + "الغناء" + ], + "en_answers": [ + "singing", + "sing" + ], + "count": 1 + }, + { + "answers": [ + "مشاهدة التلفاز" + ], + "en_answers": [ + "watching tv", + "watch tv" + ], + "count": 1 + }, + { + "answers": [ + "مشاهدة الألعاب النارية" + ], + "en_answers": [ + "watching fireworks", + "firework" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-68": { + "question": "ما هو المشروب الأكثر شعبية بين الأطفال في الجزائر؟", + "en_question": "What is the most popular beverage among children in your country?", + "annotations": [ + { + "answers": [ + "العصير" + ], + "en_answers": [ + "juice" + ], + "count": 2 + }, + { + "answers": [ + "الحليب بالشكلاطة", + "الحليب بالشوكولاطة", + "الحليب بالشوكلاطة" + ], + "en_answers": [ + "chocolate milk" + ], + "count": 2 + }, + { + "answers": [ + "الحليب بالعصير" + ], + "en_answers": [ + "milk with juice", + "milk smoothie", + "juice milk", + "milk juice" + ], + "count": 1 + }, + { + "answers": [ + "الحليب" + ], + "en_answers": [ + "milk" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-76": { + "question": "ما هو أشهر مكان في الجزائر للاحتفال بعيد الاستقلال؟", + "en_question": "What is the most popular place in your country to celebrate Independence Day?", + "annotations": [ + { + "answers": [ + "ساحة البريد المركزي" + ], + "en_answers": [ + "central post office square", + "central post office" + ], + "count": 1 + }, + { + "answers": [ + "الجزائر العاصمة" + ], + "en_answers": [ + "algiers" + ], + "count": 1 + }, + { + "answers": [ + "مقام الشهيد" + ], + "en_answers": [ + "martyrs' memorial", + "maqam echahid", + "martyr's memorial", + "memorial of the martyr", + "sanctuary of the martyr", + "maqam e'chahid" + ], + "count": 1 + }, + { + "answers": [ + "ملعب 5 جويلية" + ], + "en_answers": [ + "july 5 stadium", + "stade du 5 juillet", + "5 july 1962 stadium", + "5-juillet-1962 stadium", + "5th of july" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-78": { + "question": "ما هو اسم الأغنية التي يغنيها الناس في حفلات أعياد الميلاد في الجزائر؟", + "en_question": "What is the name of the song that is typically sung at birthday parties in your country?", + "annotations": [ + { + "answers": [ + "سنة حلوة يا جميل", + "سنة حلوة", + "سنة حلوى" + ], + "en_answers": [ + "happy birthday, beautiful", + "sana helwa", + "happy birthday" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 2, + "no-answer": 1, + "idk": 0 + } + }, + "New-su-01": { + "question": "ما هي الوجبات الخفيفة التي تباع عادة أمام المدارس في الجزائر؟", + "en_question": "What snacks are usually sold in front of schools in your country?", + "annotations": [ + { + "answers": [ + "البيتزا", + "البيزا", + "بيتزا" + ], + "en_answers": [ + "pizza" + ], + "count": 3 + }, + { + "answers": [ + "السندويتش", + "سندويتش" + ], + "en_answers": [ + "sandwich" + ], + "count": 1 + }, + { + "answers": [ + "الشوكولاطة", + "الشكلاطة,شوكولاطة,شكلاطة" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + }, + { + "answers": [ + "الفول السوداني", + "فول لسوداني" + ], + "en_answers": [ + "peanut" + ], + "count": 1 + }, + { + "answers": [ + "الحلوى" + ], + "en_answers": [ + "sweets" + ], + "count": 1 + }, + { + "answers": [ + "المعجنات", + "معجنات" + ], + "en_answers": [ + "pastries" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-09": { + "question": "أي نوع من الزيت يستعمل عادة للطبخ في الجزائر؟", + "en_question": "What oil is usually used for cooking in your country?", + "annotations": [ + { + "answers": [ + "زيت الزيتون" + ], + "en_answers": [ + "olive oil" + ], + "count": 2 + }, + { + "answers": [ + "زيت دوار الشمس", + "زيت عباد الشمس" + ], + "en_answers": [ + "sunflower oil" + ], + "count": 2 + }, + { + "answers": [ + "زيت نباتي", + "زيت النباتي", + "الزيت النباتي" + ], + "en_answers": [ + "vegetable oil", + "vegetable fats" + ], + "count": 1 + }, + { + "answers": [ + "زيت الذرة" + ], + "en_answers": [ + "corn oil" + ], + "count": 1 + }, + { + "answers": [ + "زيت الصويا" + ], + "en_answers": [ + "soybean oil" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-10": { + "question": "ما هي الأطعمة التي تستهلكها النساء الحوامل في الجزائر؟", + "en_question": "What food is commonly consumed by pregnant women in your country?", + "annotations": [ + { + "answers": [ + "الفاكهة" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + }, + { + "answers": [ + "اللحم" + ], + "en_answers": [ + "meat" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 2, + "not-applicable": 0 + } + }, + "New-su-15": { + "question": "ما هو المشروب غير الكحولي الأكثر شعبية في الجزائر؟", + "en_question": "What is the most popular traditional non-alcoholic drink in your country?", + "annotations": [ + { + "answers": [ + "المشروبات الغازية", + "الصودا", + "المشروب الغازي", + "الڨازوز", + "المشروب الغازي,مشروبات غازية, الصودا, صودا, مشروبات غازية" + ], + "en_answers": [ + "soft drink", + "soda", + "bottle" + ], + "count": 5 + }, + { + "answers": [ + "الشاي" + ], + "en_answers": [ + "tea" + ], + "count": 1 + }, + { + "answers": [ + "القهوة" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-17": { + "question": "ما هي المرافق الرياضية المتوفرة في الحدائق العامة في الجزائر؟", + "en_question": "What sports facilities are generally available in parks in your country?", + "annotations": [ + { + "answers": [ + "الكرة الحديدية" + ], + "en_answers": [ + "petanque", + "pétanque" + ], + "count": 1 + }, + { + "answers": [ + "ملاعب كرة قدم" + ], + "en_answers": [ + "football fields", + "soccer fields" + ], + "count": 1 + }, + { + "answers": [ + "مكان الركض" + ], + "en_answers": [ + "running track", + "track" + ], + "count": 1 + }, + { + "answers": [ + "الأرجوحة" + ], + "en_answers": [ + "swing" + ], + "count": 1 + }, + { + "answers": [ + "المزلقة" + ], + "en_answers": [ + "sled" + ], + "count": 1 + }, + { + "answers": [ + "مسار للدراجات الهوائية", + "مسار للدراجات" + ], + "en_answers": [ + "bicycle path" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-21": { + "question": "ما هي الأنشطة الشائعة التي يقوم بها كبار السن في الحدائق العامة في الجزائر؟", + "en_question": "What are the common activities that seniors usually do in parks in your country?", + "annotations": [ + { + "answers": [ + "الدومينو", + "لعبة الحجارة", + "لعب الدومينو", + "لعبة الدومينو", + "دومينو" + ], + "en_answers": [ + "stone game", + "domino stones", + "domino" + ], + "count": 4 + }, + { + "answers": [ + "الكرة الحديدية" + ], + "en_answers": [ + "petanque", + "pétanque" + ], + "count": 1 + }, + { + "answers": [ + "لعب الورق" + ], + "en_answers": [ + "playing cards", + "cards" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-24": { + "question": "ما هي الرياضات الشائعة التي يمارسها الآباء والأطفال معًا في الجزائر؟", + "en_question": "What sports do parents and children commonly play together in your country?", + "annotations": [ + { + "answers": [ + "كرة القدم", + "لعبة الكرة" + ], + "en_answers": [ + "football", + "soccer", + "ball game" + ], + "count": 4 + }, + { + "answers": [ + "ركوب الدراجة", + "الدراجة الهوائية", + "دراجة الهوائية" + ], + "en_answers": [ + "riding a bike", + "bike", + "bicycle" + ], + "count": 2 + }, + { + "answers": [ + "السباق" + ], + "en_answers": [ + "race" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-28": { + "question": "أي لون مرتبط بالفريق الوطني الجزائري لكرة القدم؟", + "en_question": "What color is associated with the national soccer team of your country?", + "annotations": [ + { + "answers": [ + "الاخضر", + "الأخضر" + ], + "en_answers": [ + "green" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-33": { + "question": "ما هو الزي المعتاد للمعلمين في الجزائر؟", + "en_question": "What is the common dress code for school teachers in your country?", + "annotations": [ + { + "answers": [ + "المئزر", + "مئزر أبيض", + "مئزر", + "المئزرة" + ], + "en_answers": [ + "apron" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-34": { + "question": "ما هي النشاط الموسيقي الأكثر شعبية في المدارس الجزائرية؟", + "en_question": "What is the most popular extracurricular activity related to music in schools in your country?", + "annotations": [ + { + "answers": [ + "الغناء" + ], + "en_answers": [ + "singing", + "sing" + ], + "count": 2 + }, + { + "answers": [ + "الايقاع" + ], + "en_answers": [ + "rhythm" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-su-42": { + "question": "أي ديانة تُدرَّس في المدارس في الجزائر؟", + "en_question": "What religion is mainly taught in schools in your country?", + "annotations": [ + { + "answers": [ + "الإسلام", + "الاسلام" + ], + "en_answers": [ + "islam" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-45": { + "question": "ما هو تاريخ الاحتفال بيوم التربية في الجزائر؟ (قدمه بصيغة شهر/يوم مثلاً، 12/31).", + "en_question": "What date is Education Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "01/24" + ], + "en_answers": [ + "01/24" + ], + "count": 1 + }, + { + "answers": [ + "10/05" + ], + "en_answers": [ + "10/05" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "it's named differently": 1, + "idk": 1, + "no-answer": 0 + } + }, + "New-su-50": { + "question": "ما هي المهنة الرئيسية لسكان المناطق الجبلية في الجزائر؟", + "en_question": "What is the main occupation of people in mountainous areas in your country?", + "annotations": [ + { + "answers": [ + "الزراعة" + ], + "en_answers": [ + "agriculture" + ], + "count": 4 + }, + { + "answers": [ + "تربية المواشي" + ], + "en_answers": [ + "livestock farming", + "livestock" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-51": { + "question": "ما هي المهنة الرئيسية لسكان المناطق الساحلية في الجزائر؟", + "en_question": "What is the main occupation of people in coastal areas in your country?", + "annotations": [ + { + "answers": [ + "التجارة" + ], + "en_answers": [ + "commerce" + ], + "count": 2 + }, + { + "answers": [ + "الصيد" + ], + "en_answers": [ + "hunting", + "fishing" + ], + "count": 2 + }, + { + "answers": [ + "الخدمات" + ], + "en_answers": [ + "service" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-57": { + "question": "ما هي المواشي الأكثر شيوعاً في الجزائر؟", + "en_question": "What is the most common livestock raised in your country?", + "annotations": [ + { + "answers": [ + "الغنم", + "الاغنام", + "الأغنام", + "الاغنام، الأغنام، غنم، اغنام، الأغنام، الكباش" + ], + "en_answers": [ + "sheep" + ], + "count": 4 + }, + { + "answers": [ + "الابقار", + "البقر", + "الأبقار", + "الابقار، الأبقار، بقر" + ], + "en_answers": [ + "cow" + ], + "count": 4 + }, + { + "answers": [ + "الابل" + ], + "en_answers": [ + "camel" + ], + "count": 1 + }, + { + "answers": [ + "الكباش" + ], + "en_answers": [ + "lamb" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-58": { + "question": "ما هي الحيوانات التي تستخدم عادة في الزراعة في الجزائر؟", + "en_question": "What animals are commonly used for agriculture in your country?", + "annotations": [ + { + "answers": [ + "الابقار", + "الأبقار", + "الابقار، الأبقار، بقر,الثور, الثيران" + ], + "en_answers": [ + "cow" + ], + "count": 3 + }, + { + "answers": [ + "الثور" + ], + "en_answers": [ + "bull" + ], + "count": 1 + }, + { + "answers": [ + "البغال" + ], + "en_answers": [ + "mule" + ], + "count": 1 + }, + { + "answers": [ + "الحمير" + ], + "en_answers": [ + "donkey" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-59": { + "question": "ماذا يرتدي الفلاحون لحماية أنفسهم من الحرارة أثناء الزراعة في الجزائر؟", + "en_question": "What do farmers in your country typically wear to protect themselves from the heat whilst farming?", + "annotations": [ + { + "answers": [ + "قبعة القش", + "قبعة الخيش" + ], + "en_answers": [ + "straw hat" + ], + "count": 2 + }, + { + "answers": [ + "القبعات", + "قبعات" + ], + "en_answers": [ + "hat" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-60": { + "question": "ماذا يتغدى الفلاحون عادة في الجزائر؟", + "en_question": "What do farmers in your country usually eat for lunch?", + "annotations": [ + { + "answers": [ + "اللبن", + "لبن", + "خبز و لبن و خضار" + ], + "en_answers": [ + "butter milk", + "leben", + "laban", + "liben", + "lben", + "buttermilk" + ], + "count": 2 + }, + { + "answers": [ + "الخبز التقليدي" + ], + "en_answers": [ + "traditional bread", + "saj bread" + ], + "count": 1 + }, + { + "answers": [ + "خبز", + "خبز و لبن و خضار" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "خضار", + "خبز و لبن و خضار" + ], + "en_answers": [ + "vegetable" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-su-71": { + "question": "ماذا يهدي الآباء أبنائهم في أعياد ميلادهم في الجزائر؟", + "en_question": "What gifts do parents generally give to their children for their birthdays in your country?", + "annotations": [ + { + "answers": [ + "ألعاب" + ], + "en_answers": [ + "game" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 2, + "not-applicable": 0 + } + }, + "New-su-75": { + "question": "ما هي وسيلة النقل التي تمتلكها معظم العائلات في الجزائر؟", + "en_question": "What type of vehicle do most families in your country generally own?", + "annotations": [ + { + "answers": [ + "السيارة", + "سيارة" + ], + "en_answers": [ + "car" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-77": { + "question": "ماذا يُعطى للأطفال خلال العيد عادةً في الجزائر؟", + "en_question": "What is usually given to the children during Eid in your country?", + "annotations": [ + { + "answers": [ + "المال", + "نقود", + "مبلغ مالي" + ], + "en_answers": [ + "money", + "amount of money" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-81": { + "question": "ما هي الملابس التي يرتديها العرسان عادة في الأعراس الجزائرية؟", + "en_question": "What clothes do grooms usually wear at weddings in your country?", + "annotations": [ + { + "answers": [ + "بدلة", + "البدلة", + "طقم كلاسيكي", + "بذلة", + "الطقم", + "البدلة,طقم كلاسيكي, الطقم, طقم" + ], + "en_answers": [ + "suit" + ], + "count": 4 + }, + { + "answers": [ + "البرنوس" + ], + "en_answers": [ + "burnous", + "hooded cloak" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-82": { + "question": "ما هي الملابس التي ترتديها العرائس عادة في الأعراس الجزائرية؟", + "en_question": "What clothes do brides usually wear at weddings in your country?", + "annotations": [ + { + "answers": [ + "الكاراكو", + "الفستان الأبيض", + "فستان ابيض" + ], + "en_answers": [ + "karakou", + "wedding dress" + ], + "count": 3 + }, + { + "answers": [ + "الفستان الأبيض", + "الفستان الابيض", + "فستان ابيض، فستان أبيض، الفستان الابيض" + ], + "en_answers": [ + "wedding dress" + ], + "count": 3 + }, + { + "answers": [ + "البرنوس" + ], + "en_answers": [ + "burnous", + "hooded cloak" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-83": { + "question": "ما هي الأطعمة التي تقدم عادة في الأعراس في الجزائر؟", + "en_question": "What food is usually served at weddings in your country?", + "annotations": [ + { + "answers": [ + "الكسكس", + "كسكس", + "الكسكسي", + "كسكس" + ], + "en_answers": [ + "couscous" + ], + "count": 4 + }, + { + "answers": [ + "المثوم" + ], + "en_answers": [ + "garlic" + ], + "count": 3 + }, + { + "answers": [ + "الحلويات", + "حلوى", + "حلويات", + "الحلوى" + ], + "en_answers": [ + "sweets" + ], + "count": 3 + }, + { + "answers": [ + "البوراك" + ], + "en_answers": [ + "bourek", + "bourak" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-86": { + "question": "ما هو أشهر مبنى حكومي في الجزائر؟", + "en_question": "What is the most famous government building in your country?", + "annotations": [ + { + "answers": [ + "قصر الحكومة" + ], + "en_answers": [ + "government palace" + ], + "count": 3 + }, + { + "answers": [ + "قصر الرئاسة", + "الرئاسة" + ], + "en_answers": [ + "presidency", + "presidential palace" + ], + "count": 2 + }, + { + "answers": [ + "المحكمة العليا" + ], + "en_answers": [ + "supreme court" + ], + "count": 1 + }, + { + "answers": [ + "مجلس الامة" + ], + "en_answers": [ + "council of the nation", + "national assembly" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-88": { + "question": "ما هو أشهر نوع موسيقي شبابي في الجزائر؟", + "en_question": "What is the most popular music genre among the younger population in your country?", + "annotations": [ + { + "answers": [ + "الراي" + ], + "en_answers": [ + "rai" + ], + "count": 4 + }, + { + "answers": [ + "الراب" + ], + "en_answers": [ + "rap" + ], + "count": 2 + }, + { + "answers": [ + "indie" + ], + "en_answers": [ + "indie" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-02": { + "question": "في أي وقت ينتهي طلاب الثانوية في الجزائر من المدرسة كل يوم؟ (قدم الوقت بتنسيق الساعة:الدقائق مثلاً، 18:00، 09:00).", + "en_question": "What time do middle school students in your country typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 3 + }, + { + "answers": [ + "17:30" + ], + "en_answers": [ + "17:30" + ], + "count": 1 + }, + { + "answers": [ + "16:00" + ], + "en_answers": [ + "16:00" + ], + "count": 1 + }, + { + "answers": [ + "16:30" + ], + "en_answers": [ + "16:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-03": { + "question": "في أي سن يبدأ الطلاب الجزائريين الذهاب للجامعة؟ (أجب برقم, مثلا 12.)", + "en_question": "At what age do people in your country typically go to university? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 3 + }, + { + "answers": [ + "19" + ], + "en_answers": [ + "19" + ], + "count": 3 + }, + { + "answers": [ + "17" + ], + "en_answers": [ + "17" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-06": { + "question": "في أي سن يجب الالتحاق بالتعليم الإلزامي في الجزائر؟ (أجب برقم, مثلا 12.)", + "en_question": "From what age do people need to attend compulsory education in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-09": { + "question": "كم يوما في الأسبوع يذهب الأطفال إلى المدرسة في الجزائر؟ (قدم الأرقام العربية (0~7) فقط.)", + "en_question": "How many days a week do children attend school in your country? (Provide Arabic numerals (0~7) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-11": { + "question": "في الجزائر، كم من الوقت (بالسنوات) يستغرق عادة لإكمال درجة الماجستير؟ (استعمل الأرقام افقط مثلا 12.)", + "en_question": "In your country, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "17" + ], + "en_answers": [ + "17" + ], + "count": 3 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-12": { + "question": "ما هي أفضل جامعة في الجزائر؟ (استعمل الاسم الرسمي.)", + "en_question": "What is the top university in your country? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "جامعة العلوم و التكنولوجيا هواري بومدين", + "جامعة هواري بومدين للعلوم والتكنولوجيا" + ], + "en_answers": [ + "houari boumediene university of science and technology", + "university of science and technology" + ], + "count": 2 + }, + { + "answers": [ + "جامعة الجزائر" + ], + "en_answers": [ + "university of algiers" + ], + "count": 1 + }, + { + "answers": [ + "المدرسة متعددة التقنيات" + ], + "en_answers": [ + "polytechnic school", + "national polytechnic school" + ], + "count": 1 + }, + { + "answers": [ + "المدرسة العليا للإعلام العالي" + ], + "en_answers": [ + "the higher school of information", + "higher national school of computer science" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-13": { + "question": "في أي سن يتخرج معظم الناس في الجزائر من الجامعة؟ (استعمل الأرقام العربية فقط مثلاً 12.)", + "en_question": "At what age do most people in your country graduate from university? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 3 + }, + { + "answers": [ + "23" + ], + "en_answers": [ + "23" + ], + "count": 2 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + }, + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-15": { + "question": "في أي سن يبدأ الأطفال المدرسة الثانوية عادة في الجزائر؟ (استعمل الأرقام العربية (مثلاً، 12).)", + "en_question": "At what age do children in your country generally start middle school? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 5 + }, + { + "answers": [ + "14" + ], + "en_answers": [ + "14" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-17": { + "question": "كم عدد ساعات الأسبوع التي يعملها العامل بدوام كامل في الجزائر عادة؟(استعمل الأرقام العربية مثل 12).", + "en_question": "How many hours a week does a full-time worker in your country typically work? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 4 + }, + { + "answers": [ + "35" + ], + "en_answers": [ + "35" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-19": { + "question": "كم يوما في الأسبوع يعمل العامل بدوام كامل في الجزائر؟(استعمل الأرقام العربية مثل 0~7).", + "en_question": "How many days a week does a full-time worker work in your country? (Provide Arabic numerals (0~7) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 5 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-20": { + "question": "في أي سن يبدأ معظم الناس العمل في الجزائر؟ ((استعمل الأرقام العربية مثل 12.)", + "en_question": "At what age do most people start working in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "23" + ], + "en_answers": [ + "23" + ], + "count": 2 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + }, + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 1 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + }, + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 1 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-21": { + "question": "من عمر كم يسمح للفرد بالعمل في الجزائر؟ (استعمل الأرقام العربية مثل 12.)", + "en_question": "From what age is an individual allowed to work in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 2 + }, + { + "answers": [ + "16" + ], + "en_answers": [ + "16" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-31": { + "question": "ماذا يأكل الناس في الجزائر في عيد الميلاد؟", + "en_question": "What do people in your country traditionally eat on Christmas Day?", + "annotations": [ + { + "answers": [ + "كعكة" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "الحلويات" + ], + "en_answers": [ + "sweets" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 0, + "no-answer": 0 + } + }, + "Ni-en-37": { + "question": "ما هو اسم اليوم في السنة الذي يحتفل فيه الناس في الجزائر بالحب والرومانسية؟", + "en_question": "What is the name of the day of the year where people in your country celebrate love and romance?", + "annotations": [ + { + "answers": [ + "عيد الحب", + "الفالنتاين" + ], + "en_answers": [ + "valentine's day", + "valentine's" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 0 + } + }, + "Ni-en-40": { + "question": "ما هي أشهر أغنية لعيد الميلاد في الجزائر؟", + "en_question": "What is the most popular Christmas song in your country?", + "annotations": [ + { + "answers": [ + "سنة حلوة", + "سنة حلوى" + ], + "en_answers": [ + "happy birthday, beautiful", + "sana helwa", + "happy birthday" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 1, + "no-answer": 0 + } + }, + "Nu-in-04": { + "question": "كم عدد الفصول الدراسية في كل سنة أكاديمية بالمدارس الثانوية في الجزائر؟ (استعمل الأرقام العربية مثل 7, 8.)", + "en_question": "How many semesters are there each academic year at high schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-05": { + "question": "في أي شهر يبدأ عادة العام الدراسي الجديد في الجزائر؟ (استعمل الأرقام العربية مثل 7, 8.)", + "en_question": "In which month does the new school year typically begin in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-06": { + "question": "متى يتم الاحتفال باليوم الوطني للمعلم في الجزائر؟ (قدمه بصيغة شهر/يوم مثلاً 12/31).", + "en_question": "When is National Teacher's Day commemorated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "04/16" + ], + "en_answers": [ + "04/16" + ], + "count": 1 + }, + { + "answers": [ + "10/05" + ], + "en_answers": [ + "10/05" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 1, + "no-answer": 0 + } + }, + "Nu-in-11": { + "question": "في أي وقت تبدأ المدرسة الابتدائية في الجزائر؟ (قدم الوقت بتنسيق الساعة:الدقيقة مثل، 18:00، 09:00).", + "en_question": "At what time does elementary school start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-20": { + "question": "متى يتم الاحتفال بيوم الطفل في الجزائر؟ (قدمه بتنسيق شهر/يوم مثل، 12/31).", + "en_question": "When is Children's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "01/06", + "06/01" + ], + "en_answers": [ + "01/06", + "06/01" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-40": { + "question": "أي مدينة هي الوجهة الرئيسية للباحثين عن عمل في الجزائر؟", + "en_question": "Which city is the main destination for job seekers in your country?", + "annotations": [ + { + "answers": [ + "الجزائر العاصمة", + "الجزائر", + "العاصمة" + ], + "en_answers": [ + "algiers" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-1": { + "question": "ما هي سلسلة الوجبات السريعة الأكثر شعبية في الجزائر؟", + "en_question": "What is your country's most popular fast food chain?", + "annotations": [], + "idks": { + "idk": 2, + "not-applicable": 2, + "no-answer": 1 + } + }, + "Sa-en-13": { + "question": "ما هو الطعام الذي يثير الانقسامات (إما الحب أو الكراهية) في الجزائر؟", + "en_question": "What is the food that is most divisive (either love or hate) in your country?", + "annotations": [ + { + "answers": [ + "البوزلوف", + "بوزلوف" + ], + "en_answers": [ + "boiled sheep's head", + "bozlov", + "bouzalof", + "bouzlouf" + ], + "count": 2 + }, + { + "answers": [ + "الكسكس", + "كسكس,الكسكسي" + ], + "en_answers": [ + "couscous" + ], + "count": 1 + }, + { + "answers": [ + "الدوارة", + "دوارة" + ], + "en_answers": [ + "tripe" + ], + "count": 1 + }, + { + "answers": [ + "قلب اللوز" + ], + "en_answers": [ + "kel ellouz", + "kalb el louz", + "qalb ellouz", + "kalbellouze", + "qalbellouze" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-16": { + "question": "ما هو أشهر فريق كرة قدم بين الشعب الجزائري؟", + "en_question": "What is the most popular soccer team among the people from your country?", + "annotations": [ + { + "answers": [ + "مولودية الجزائر", + "المولودية" + ], + "en_answers": [ + "mc algiers", + "mc alger", + "mouloudia club d'alger", + "d'alger", + "mca" + ], + "count": 4 + }, + { + "answers": [ + "إتحاد العاصمة" + ], + "en_answers": [ + "usma", + "usm alger" + ], + "count": 1 + }, + { + "answers": [ + "شباب بلوزداد" + ], + "en_answers": [ + "crb", + "cr belouizdad", + "chabab riadhi belouizdad" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-22": { + "question": "ما هي أشهر جامعة جزائرية المعروفة بفريقها الرياضي؟", + "en_question": "What is the most famous university in your country known for its sports team?", + "annotations": [], + "idks": { + "not-applicable": 3, + "idk": 1, + "no-answer": 1 + } + }, + "Sa-en-31": { + "question": "ما هو الحيوان الأليف الأكثر شعبية في العائلات الجزائرية؟", + "en_question": "What is your country's most popular family pet?", + "annotations": [ + { + "answers": [ + "القط", + "قط" + ], + "en_answers": [ + "cat" + ], + "count": 5 + }, + { + "answers": [ + "الكلب", + "كلب" + ], + "en_answers": [ + "dog" + ], + "count": 1 + }, + { + "answers": [ + "العصافير", + "عصافير، العصفور، عصفور" + ], + "en_answers": [ + "bird" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-32": { + "question": "ما هو أشهر برنامج تلفزيوني عائلي في الجزائر؟", + "en_question": "What is the most popular family TV show in your country?", + "annotations": [ + { + "answers": [ + "و كل شيء ممكن" + ], + "en_answers": [ + "everything is possible" + ], + "count": 1 + }, + { + "answers": [ + "الفهامة" + ], + "en_answers": [ + "el fhama", + "el fehama" + ], + "count": 1 + }, + { + "answers": [ + "عاشور العاشر" + ], + "en_answers": [ + "ashur 10th", + "sultan achour 10", + "sultan achour" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-37": { + "question": "ما هي أشهر لعبة عائلية في الجزائر؟", + "en_question": "What is the most popular family boardgame in your country?", + "annotations": [ + { + "answers": [ + "دومينو", + "الدومينو" + ], + "en_answers": [ + "stone game", + "domino stones", + "domino" + ], + "count": 1 + }, + { + "answers": [ + "فاملتنا" + ], + "en_answers": [ + "familetna" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 1 + } + }, + "Sa-en-6": { + "question": "ما هو الطعام السريع الأكثر شعبية في الجزائر (للأكل بعيدا عن المطعم)؟", + "en_question": "What is the most popular takeaway food in your country?", + "annotations": [ + { + "answers": [ + "البيتزا", + "بيتزا" + ], + "en_answers": [ + "pizza" + ], + "count": 3 + }, + { + "answers": [ + "كارنتيكا", + "القرنتيتة", + "كالانتيكا، كلنتيكا، كلانتيكا,قرنطيطة، القرنطيطة", + "القرنتيتة,غارانتيتا" + ], + "en_answers": [ + "calentica", + "karantika" + ], + "count": 2 + }, + { + "answers": [ + "السندويتش", + "سندويتش" + ], + "en_answers": [ + "sandwich" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-7": { + "question": "ما هي الوجبات الخفيفة الشعبية في الجزائر؟", + "en_question": "What are popular snacks in your country?", + "annotations": [ + { + "answers": [ + "كارنتيكا", + "غارانتيتا", + "كارانتيكة", + "كالانتيكا، كلنتيكا، كلانتيكا,قرنطيطة، القرنطيطة" + ], + "en_answers": [ + "calentica", + "karantika" + ], + "count": 2 + }, + { + "answers": [ + "البيتزا" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + }, + { + "answers": [ + "الشوارما", + "الشوارمة، الشاوارما، شوارما، شوارمة، شاوارما، شاورما" + ], + "en_answers": [ + "shawarma" + ], + "count": 1 + }, + { + "answers": [ + "المحاجب", + "محاجب" + ], + "en_answers": [ + "m'hajeb", + "mhajeb" + ], + "count": 1 + }, + { + "answers": [ + "الخفاف", + "السفنج" + ], + "en_answers": [ + "sfenj", + "bambalouni", + "bambaloni", + "khfaf", + "sfinz" + ], + "count": 1 + }, + { + "answers": [ + "المعجنات" + ], + "en_answers": [ + "pastries" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-9": { + "question": "ماذا يأكل الناس في الجزائر على الشاطئ؟", + "en_question": "What do people from your country eat at the beach?", + "annotations": [ + { + "answers": [ + "السندويتش", + "سندويتش" + ], + "en_answers": [ + "sandwich" + ], + "count": 2 + }, + { + "answers": [ + "اكل خفيف", + "أكل خفيف، أكل سريع" + ], + "en_answers": [ + "light meal" + ], + "count": 1 + }, + { + "answers": [ + "سلطة", + "السلطة" + ], + "en_answers": [ + "salad" + ], + "count": 1 + }, + { + "answers": [ + "بطاطا مقلية", + "البطاطا المقلية، البطاطا" + ], + "en_answers": [ + "fried potato", + "french fries", + "chips" + ], + "count": 1 + }, + { + "answers": [ + "بيتزا", + "البيتزا" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-10": { + "question": "في أي سن يتزوج الرجال عادة في الجزائر؟(استعمل الأرقام العربية مثل 20.)", + "en_question": "At what age do men usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "35" + ], + "en_answers": [ + "35" + ], + "count": 2 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 2 + }, + { + "answers": [ + "28" + ], + "en_answers": [ + "28" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-11": { + "question": "في أي سن تتزوج النساء عادة في الجزائر؟ (استعمل الأرقام العربية مثل 20.)", + "en_question": "At what age do women usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 2 + }, + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 1 + }, + { + "answers": [ + "32" + ], + "en_answers": [ + "32" + ], + "count": 1 + }, + { + "answers": [ + "26" + ], + "en_answers": [ + "26" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-13": { + "question": "في جيل والديك، ما كان معدل عدد الأفراد في العائلة في الجزائر؟ (استعمل الأرقام العربية مثل 20.)", + "en_question": "In your parents' generation, what was the average number of members in their family in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 2 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 2 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "11" + ], + "en_answers": [ + "11" + ], + "count": 1 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-17": { + "question": "في الألعاب الأولمبية، أي رياضة هي الأكثر شعبية في الجزائر؟", + "en_question": "In the Olympic Games, which sport is the most popular in your country?", + "annotations": [ + { + "answers": [ + "العدو", + "الركض" + ], + "en_answers": [ + "running" + ], + "count": 2 + }, + { + "answers": [ + "الملاكمة", + "ملاكمة" + ], + "en_answers": [ + "boxing" + ], + "count": 2 + }, + { + "answers": [ + "السباحة", + "سباحة" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + }, + { + "answers": [ + "ألعاب القوى" + ], + "en_answers": [ + "athletics" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-21": { + "question": "أين يلعب الأطفال كرة القدم عادة في الجزائر؟", + "en_question": "Where do children usually play soccer in your country?", + "annotations": [ + { + "answers": [ + "في الشارع", + "الشارع" + ], + "en_answers": [ + "in the street", + "street" + ], + "count": 4 + }, + { + "answers": [ + "الملعب", + "في الملعب" + ], + "en_answers": [ + "stadium", + "in the stadium" + ], + "count": 3 + }, + { + "answers": [ + "في الحي", + "الحي" + ], + "en_answers": [ + "neighborhood" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-22": { + "question": "ما هو التمرين الرياضي اليومي الشائع بين النساء في الجزائر؟", + "en_question": "Which daily exercise is popular among women in your country?", + "annotations": [ + { + "answers": [ + "التمدد" + ], + "en_answers": [ + "stretching" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 2, + "not-applicable": 0 + } + }, + "Ta-pe-23": { + "question": "ما هو التمرين الرياضي اليومي الشائع بين الرجال في الجزائر؟", + "en_question": "Which daily exercise is popular among men in your country?", + "annotations": [ + { + "answers": [ + "الركض" + ], + "en_answers": [ + "running" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ta-pe-25": { + "question": "ما هي أشهر منافسة في دوري الرياضة الوطني في الجزائر؟ (مثلا، ___ ضد ___)", + "en_question": "What is the most famous rivalry in a national sports league in your country? (e.g., ___ vs ___)", + "annotations": [ + { + "answers": [ + "مولودية الجزائر ضد اتحاد العاصمة", + "مولودية الجزائر ضد إتحاد العاصمة", + "مولودية الجزائرضد اتحاد العاصمة" + ], + "en_answers": [ + "mc alger vs usm alger", + "usm alger vs mc alger", + "mc algiers vs usm algiers", + "usm algiers vs mc algiers" + ], + "count": 4 + }, + { + "answers": [ + "المولودية ضد شباب بلوزداد", + "مولودية الجزائر ضد شباب بلوزداد" + ], + "en_answers": [ + "mouloudia vs belouizdad youth", + "belouizdad youth vs mouloudia" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-29": { + "question": "ما هي الرياضة المحترفة الأعلى أجرا في الجزائر؟", + "en_question": "Which professional sport is the highest paying in your country?", + "annotations": [ + { + "answers": [ + "كرة القدم" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-30": { + "question": "ما هو أشهر برنامج تلفزيوني رياضي في الجزائر؟", + "en_question": "What is/was the most popular sports-related TV program in your country?", + "annotations": [ + { + "answers": [ + "من الملاعب" + ], + "en_answers": [ + "from the stadiums" + ], + "count": 2 + }, + { + "answers": [ + "أرقام و تعاليق" + ], + "en_answers": [ + "numbers and comments" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-32": { + "question": "أي يوم من أيام السنة يُخصص عادة للألعاب النارية في الجزائر؟", + "en_question": "What day of the year is usually dedicated to fireworks in your country?", + "annotations": [ + { + "answers": [ + "المولد النبوي" + ], + "en_answers": [ + "mawlid al-nabi", + "mawlid", + "eid-e-milad an-nabi" + ], + "count": 2 + }, + { + "answers": [ + "عيد الإستقلال", + "عيد الاستقلال" + ], + "en_answers": [ + "independence day" + ], + "count": 2 + }, + { + "answers": [ + "ذكرى ثورة أول نوفمبر" + ], + "en_answers": [ + "anniversary of the 1st november revolution", + "outbreak of the revolution", + "liberation revolution", + "outbreak of the algerian revolution", + "first of november", + "first day of november", + "11/01", + "11/1" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ta-pe-37": { + "question": "ما هو الرمز المشترك ليلة رأس السنة الذي يوجد عادة في الجزائر؟", + "en_question": "What is the common symbol of New Year's Eve that is usually found in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "no-answer": 1, + "idk": 0 + } + }, + "Ta-pe-42": { + "question": "ماذا يتناول الجزائريون عادة في ليلة رأس السنة؟", + "en_question": "What food do people from your country usually eat on New Year's Eve?", + "annotations": [ + { + "answers": [ + "المكسرات", + "مكسرات" + ], + "en_answers": [ + "nut" + ], + "count": 1 + }, + { + "answers": [ + "الحلوى", + "حلوى" + ], + "en_answers": [ + "sweets" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "no-answer": 2, + "idk": 0 + } + }, + "Ta-pe-45": { + "question": "ماذا يتم تناوله عادة خلال الاحتفال بأطول ليلة في السنة في الجزائر؟", + "en_question": "What is usually eaten during the celebration of the longest night of the year in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "no-answer": 1, + "idk": 0 + } + }, + "Th-en-01": { + "question": "ما هي الرياضة الصيفية الأكثر شعبية في الجزائر؟", + "en_question": "What is the most popular summer sport in your country?", + "annotations": [ + { + "answers": [ + "السباحة", + "سباحة" + ], + "en_answers": [ + "swimming" + ], + "count": 2 + }, + { + "answers": [ + "كرة القدم" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "Th-en-03": { + "question": "ما هو أشهر دوري رياضي محترف في الجزائر؟", + "en_question": "What is the most popular professional sports league in your country?", + "annotations": [ + { + "answers": [ + "الدوري المحترف", + "الرابطة الجزائرية المحترفة الأولى" + ], + "en_answers": [ + "professional league", + "professional", + "professionnelle", + "algerian professional league 1", + "algerian professionnelle league 1" + ], + "count": 2 + }, + { + "answers": [ + "الدوري الوطني لكرة القدم" + ], + "en_answers": [ + "national football league", + "nfl" + ], + "count": 1 + }, + { + "answers": [ + "كأس الجزائر" + ], + "en_answers": [ + "algerian football cup", + "algerian cup", + "republic cup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-05": { + "question": "ما هو أشهر فريق رياضي نسائي في الجزائر؟", + "en_question": "What is the most popular women's sports team in your country?", + "annotations": [], + "idks": { + "idk": 2, + "no-answer": 2, + "not-applicable": 0 + } + }, + "Th-en-09": { + "question": "ما هو أشهر دوري في الجزائر؟", + "en_question": "What is the most popular tournament in your country?", + "annotations": [ + { + "answers": [ + "الدوري المحترف لكرة القدم", + "القسم الوطني الأول لكرة القدم", + "دوري الجزائر 1" + ], + "en_answers": [ + "first national football division", + "algerian professional league 1", + "algerian professionnelle league 1", + "professional football league", + "algerian league 1" + ], + "count": 3 + }, + { + "answers": [ + "كأس الجزائر لكرة القدم", + "كاس الجزائر لكرة القدم" + ], + "en_answers": [ + "algerian football cup", + "algerian cup", + "republic cup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-11": { + "question": "من هو أشهر رياضي في الجزائر؟", + "en_question": "Who is the most popular sportperson in your country?", + "annotations": [ + { + "answers": [ + "رياض محرز", + "محرز" + ], + "en_answers": [ + "riyad mahrez", + "mahrez" + ], + "count": 2 + }, + { + "answers": [ + "اسلام سليماني" + ], + "en_answers": [ + "islam slimani" + ], + "count": 1 + }, + { + "answers": [ + "توفيق مخلوفي" + ], + "en_answers": [ + "toufik makhloufi", + "taoufik makhloufi" + ], + "count": 1 + }, + { + "answers": [ + "علي بن شيخ" + ], + "en_answers": [ + "ali ben cheikh", + "ali bencheikh", + "ali \"alilou\" bencheikh" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-12": { + "question": "في أي رياضة حققت الجزائر أكبر نجاح في المنافسات الدولية؟", + "en_question": "In which sport has your country been most successful in international competitions?", + "annotations": [ + { + "answers": [ + "كرة القدم" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "العدو", + "الركض" + ], + "en_answers": [ + "running" + ], + "count": 2 + }, + { + "answers": [ + "الجودو" + ], + "en_answers": [ + "judo" + ], + "count": 1 + }, + { + "answers": [ + "الملاكمة" + ], + "en_answers": [ + "boxing" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-15": { + "question": "ما هي الرياضة الشتوية الأكثر شعبية في الجزائر؟", + "en_question": "What is the most popular winter sport in your country?", + "annotations": [], + "idks": { + "not-applicable": 2, + "no-answer": 2, + "idk": 1 + } + }, + "Th-en-19": { + "question": "ما هي مدينة أو منطقة في الجزائر معروفة بالصناعة التحويلية؟", + "en_question": "What is a city or region in your country known for manufacturing industry?", + "annotations": [ + { + "answers": [ + "الاوراس", + "الأوراس" + ], + "en_answers": [ + "aurès", + "aures" + ], + "count": 1 + }, + { + "answers": [ + "البليدة" + ], + "en_answers": [ + "blida" + ], + "count": 1 + }, + { + "answers": [ + "الحجار" + ], + "en_answers": [ + "el hajar", + "el hadjar" + ], + "count": 1 + }, + { + "answers": [ + "برج بوعريريج" + ], + "en_answers": [ + "bordj bou arreridj", + "bordj bou arréridj" + ], + "count": 1 + }, + { + "answers": [ + "الجزائر العاصمة", + "الجزائر" + ], + "en_answers": [ + "algiers" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-21": { + "question": "ما هي أهم ميزة تُقدم عادةً للموظفين في الجزائر؟", + "en_question": "What is regarded as the most important perk typically offered to employees in your country?", + "annotations": [ + { + "answers": [ + "الراتب", + "المرتب" + ], + "en_answers": [ + "salary" + ], + "count": 2 + }, + { + "answers": [ + "علاوة", + "علاوة المردود" + ], + "en_answers": [ + "allowance", + "productivity bonus", + "bonus" + ], + "count": 2 + }, + { + "answers": [ + "سيارة وظيفة", + "سيارة وضيفة" + ], + "en_answers": [ + "official car", + "car" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-22": { + "question": "ما هي الفترة الاقتصادية الأكثر كارثية بالنسبة للجزائر؟", + "en_question": "What was the most catastrophic economic period for your country?", + "annotations": [ + { + "answers": [ + "التسعينات" + ], + "en_answers": [ + "nineties", + "90s", + "19th century", + "nineteenth cencury" + ], + "count": 2 + }, + { + "answers": [ + "كوفيد 19" + ], + "en_answers": [ + "covid-19" + ], + "count": 1 + }, + { + "answers": [ + "الصيف" + ], + "en_answers": [ + "summer" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-24": { + "question": "أي منطقة في الجزائر تعتبر مركزًا رئيسيًا للعاملين في مجال التكنولوجيا والشركات الناشئة؟", + "en_question": "What region in your country is a major hub for tech workers and start ups?", + "annotations": [ + { + "answers": [ + "الجزائر العاصمة", + "الجزائر" + ], + "en_answers": [ + "algiers" + ], + "count": 3 + }, + { + "answers": [ + "سيدي عبد الله" + ], + "en_answers": [ + "sidi abdellah" + ], + "count": 2 + }, + { + "answers": [ + "برج بو عريريج" + ], + "en_answers": [ + "bordj bou arreridj", + "bordj bou arréridj" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-27": { + "question": "ما هي أهم صناعة في الجزائر؟", + "en_question": "What is the most important industry in your country?", + "annotations": [ + { + "answers": [ + "المحروقات", + "البترول", + "الصناعة البترولية" + ], + "en_answers": [ + "fuels", + "petroleum", + "petroleum industry" + ], + "count": 3 + }, + { + "answers": [ + "الصناعة التحويلية" + ], + "en_answers": [ + "manufacturing" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-35": { + "question": "أي وجبة من الوجبات اليومية يتم مشاركتها عادة مع أفراد العائلة في الجزائر؟ (مثل الفطور، الغداء، العشاء)", + "en_question": "Which one of the daily meals is commonly shared with family members in your country? (e.g., breakfast, lunch, dinner)", + "annotations": [ + { + "answers": [ + "العشاء" + ], + "en_answers": [ + "dinner" + ], + "count": 4 + }, + { + "answers": [ + "الغداء" + ], + "en_answers": [ + "lunch" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-36": { + "question": "ما هي النشاطات العائلية الشائعة التي يمكن القيام بها مع الأطفال في عطلة نهاية الأسبوع في الجزائر؟", + "en_question": "What is a popular family activity with a child to do on weekends in your country?", + "annotations": [ + { + "answers": [ + "التنزه", + "نزهة", + "الخروج في نزهة إلى الغابة أو الملاهي", + "تنزه", + "نزهة إلى الغابة أو الملاهي" + ], + "en_answers": [ + "strolling", + "hiking", + "picnic", + "going out for a picnic to the forest or amusement parks" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-37": { + "question": "في أي سن يصبح الأطفال عادة مستقلين عن والديهم في الجزائر؟ (استعمل الأرقام العربية مثل 12.)", + "en_question": "At what age do children typically become independent from their parents in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + }, + { + "answers": [ + "23" + ], + "en_answers": [ + "23" + ], + "count": 1 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "Th-en-38": { + "question": "ما هو أهم عيد عائلي في الجزائر؟", + "en_question": "What is the most important family holiday in your country?", + "annotations": [ + { + "answers": [ + "عيد الفطر" + ], + "en_answers": [ + "eid al-fitr", + "eid ul-fitr" + ], + "count": 2 + }, + { + "answers": [ + "عيد الأم" + ], + "en_answers": [ + "mother's day" + ], + "count": 1 + }, + { + "answers": [ + "عيد ميلاد" + ], + "en_answers": [ + "birthday" + ], + "count": 1 + }, + { + "answers": [ + "عيد الأضحى" + ], + "en_answers": [ + "eid al-adha" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-39": { + "question": "ما هي لعبة عائلية شعبية في الجزائر؟", + "en_question": "What is a popular family game in your country?", + "annotations": [ + { + "answers": [ + "العائلات السبع" + ], + "en_answers": [ + "game of the seven families", + "7 families", + "seven families" + ], + "count": 1 + }, + { + "answers": [ + "لعبة الذئب" + ], + "en_answers": [ + "wolf game", + "the wolf" + ], + "count": 1 + }, + { + "answers": [ + "دومينو" + ], + "en_answers": [ + "stone game", + "domino stones", + "domino" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "Th-en-41": { + "question": "ما هو متوسط العمر للأزواج لإنجاب طفلهم الأول في الجزائر؟ (استعمل الأرقام العربية مثل 20.)", + "en_question": "What is the average age for couples to have their first child in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "28" + ], + "en_answers": [ + "28" + ], + "count": 2 + }, + { + "answers": [ + "35" + ], + "en_answers": [ + "35" + ], + "count": 1 + }, + { + "answers": [ + "31" + ], + "en_answers": [ + "31" + ], + "count": 1 + }, + { + "answers": [ + "32" + ], + "en_answers": [ + "32" + ], + "count": 1 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-43": { + "question": "ما عدد السيارات التي تمتلكها عائلة في الجزائر؟ (استعمل الأرقام العربية مثل 12.)", + "en_question": "How many cars are owned by a typical family in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 4 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-44": { + "question": "ما هو الطعام الأكثر شعبية في الجزائر لوجبات العائلة في عطل نهاية الأسبوع؟", + "en_question": "What is your country's most popular food for family meals on weekends?", + "annotations": [ + { + "answers": [ + "الكسكس", + "كسكس", + "الكسكسي" + ], + "en_answers": [ + "couscous" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-45": { + "question": "ما هي أشهر نشاطات العائلة في مساء أيام الأسبوع في الجزائر؟", + "en_question": "What is the most popular weekday evening family activity in your country?", + "annotations": [ + { + "answers": [ + "مشاهده التلفاز", + "مشاهدة التلفاز", + "مشاهدة برنامج تلفزيوني" + ], + "en_answers": [ + "watching tv", + "tv", + "watching a tv show" + ], + "count": 3 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-48": { + "question": "ما هي أعلى درجة يتم منحها للطلاب المتفوقين في المدارس الثانوية في الجزائر على الواجبات والامتحانات؟", + "en_question": "What is the highest grade given to top-achieving high school students on assignments and exams in your country?", + "annotations": [ + { + "answers": [ + "امتياز", + "الامتياز", + "ممتاز" + ], + "en_answers": [ + "privilege", + "excellent" + ], + "count": 2 + }, + { + "answers": [ + "19", + "20/19", + "19/20" + ], + "en_answers": [ + "19", + "20/19" + ], + "count": 2 + }, + { + "answers": [ + "تهنئة", + "التهنئة" + ], + "en_answers": [ + "congratulations" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-49": { + "question": "ما هو الاختبار الأكثر أهمية لطلاب الثانوية في الجزائر؟", + "en_question": "What is considered the most important exam for high school students in your country?", + "annotations": [ + { + "answers": [ + "الباكالوريا", + "البكلوريا", + "الباكلوريا" + ], + "en_answers": [ + "baccalaureate" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-51": { + "question": "أي مادة تعتبر الأهم بالنسبة للطلاب في الجزائر؟", + "en_question": "Which subject is considered the most important for students in your country?", + "annotations": [ + { + "answers": [ + "الرياضيات" + ], + "en_answers": [ + "mathematics", + "math" + ], + "count": 4 + }, + { + "answers": [ + "العلوم" + ], + "en_answers": [ + "science" + ], + "count": 2 + }, + { + "answers": [ + "الفلسفة" + ], + "en_answers": [ + "philosophy" + ], + "count": 1 + }, + { + "answers": [ + "الأدب" + ], + "en_answers": [ + "literature" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-53": { + "question": "ما هو أشهر نشاط اجتماعي في المدارس الجزائرية؟", + "en_question": "What is the most popular extracurricular social event at schools in your country?", + "annotations": [ + { + "answers": [ + "الحديث" + ], + "en_answers": [ + "chatting", + "chat" + ], + "count": 1 + }, + { + "answers": [ + "حفلات آخر السنة" + ], + "en_answers": [ + "end-of-year parties", + "end of the year parties" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 1, + "no-answer": 0 + } + }, + "Th-en-58": { + "question": "ما هو أصعب موضوع في مادة الرياضيات يُدرس قبل الجامعة في الجزائر؟", + "en_question": "What is the most advanced math subject learned before university in your country?", + "annotations": [ + { + "answers": [ + "التكامل و الاشتقاق", + "التفاضل و التكامل" + ], + "en_answers": [ + "integration and differentiation", + "calculus" + ], + "count": 2 + }, + { + "answers": [ + "المعادلات التفاضلية", + "المعادلات التفتضلية" + ], + "en_answers": [ + "differential equations" + ], + "count": 2 + }, + { + "answers": [ + "الدوال المثلثية" + ], + "en_answers": [ + "trigonometric functions", + "trigonometry" + ], + "count": 1 + }, + { + "answers": [ + "الدوال" + ], + "en_answers": [ + "functions" + ], + "count": 1 + }, + { + "answers": [ + "الهندسة الفضائية" + ], + "en_answers": [ + "geometry" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-01": { + "question": "أين يذهب طلاب الجامعة في الجزائر عادة للمذاكرة لامتحاناتهم النهائية؟", + "en_question": "Where do university students in your country usually go to study for their final exams?", + "annotations": [ + { + "answers": [ + "المكتبة", + "المكتبة الجامعية", + "إلى المكتبة" + ], + "en_answers": [ + "library", + "university library", + "to the library" + ], + "count": 4 + }, + { + "answers": [ + "المخابر" + ], + "en_answers": [ + "laboratories", + "lab" + ], + "count": 1 + }, + { + "answers": [ + "البيت" + ], + "en_answers": [ + "house", + "home" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-02": { + "question": "ما هي وسيلة النقل العامة الشائعة التي يستخدمها الناس للذهاب إلى الجامعة في الجزائر؟", + "en_question": "What is a common public transport that people use to go to university in your country?", + "annotations": [ + { + "answers": [ + "الحافلة", + "الباص" + ], + "en_answers": [ + "bus" + ], + "count": 4 + }, + { + "answers": [ + "القطار" + ], + "en_answers": [ + "train" + ], + "count": 2 + }, + { + "answers": [ + "حافلات النقل الجامعي" + ], + "en_answers": [ + "university transport buses", + "transportation service" + ], + "count": 1 + }, + { + "answers": [ + "السيارة" + ], + "en_answers": [ + "car" + ], + "count": 1 + }, + { + "answers": [ + "الترامواي" + ], + "en_answers": [ + "tramway" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-04": { + "question": "ماذا يفعل تلاميذ الابتدائي في الجزائر عادة بعد المدرسة؟", + "en_question": "What do elementary students in your country usually do after school?", + "annotations": [ + { + "answers": [ + "يلعبون", + "يلعبون مع اصدقائهم", + "يلعبون ثم يؤدون الواجبات المدرسية" + ], + "en_answers": [ + "play", + "they play with their friends", + "they play" + ], + "count": 4 + }, + { + "answers": [ + "يراجعون", + "يراجعون دروسهم" + ], + "en_answers": [ + "they review their lessons", + "review" + ], + "count": 1 + }, + { + "answers": [ + "الاستراحة" + ], + "en_answers": [ + "break" + ], + "count": 1 + }, + { + "answers": [ + "يؤدون الواجبات المدرسية", + "يلعبون ثم يؤدون الواجبات المدرسية" + ], + "en_answers": [ + "they do the homework", + "homework" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + } +} \ No newline at end of file diff --git a/data/annotations/Assam_data.json b/data/annotations/Assam_data.json new file mode 100644 index 0000000000000000000000000000000000000000..1ece4d4f2645150afaaec08bfb66050cff32ac89 --- /dev/null +++ b/data/annotations/Assam_data.json @@ -0,0 +1,27853 @@ +{ + "Al-en-01": { + "question": "অসমত প্ৰাক-প্রাথমিক বিদ্যালয়ৰ শিশুসকলৰ বাবে এটা সাধাৰণ জলপান কি?", + "en_question": "What is a common snack for preschool kids in your country?", + "annotations": [ + { + "answers": [ + "ভীমকল" + ], + "en_answers": [ + "musa balbisiana", + "plantatin" + ], + "count": 2 + }, + { + "answers": [ + "চুজি" + ], + "en_answers": [ + "semolina" + ], + "count": 2 + }, + { + "answers": [ + "পিঠাগুৰি" + ], + "en_answers": [ + "rice flour" + ], + "count": 2 + }, + { + "answers": [ + "দৈ-চিৰা", + "দৈ চিৰা" + ], + "en_answers": [ + "curd poha", + "curd-poha" + ], + "count": 2 + }, + { + "answers": [ + "আলু পিতিকা-ভাত", + "আলু পিতিকা ভাত", + "আলু ভাত" + ], + "en_answers": [ + "mashed potato rice", + "potato rice" + ], + "count": 2 + }, + { + "answers": [ + "গাখীৰ ভাত" + ], + "en_answers": [ + "rice with milk" + ], + "count": 1 + }, + { + "answers": [ + "জলপান" + ], + "en_answers": [ + "snacks" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-02": { + "question": "অসমত বিয়েৰৰ লগত খোৱা জনপ্ৰিয় খাদ্য সামগ্ৰীটো কি?", + "en_question": "What is a popular food to go with beer in your country?", + "annotations": [ + { + "answers": [ + "বুট" + ], + "en_answers": [ + "chickpea" + ], + "count": 2 + }, + { + "answers": [ + "বাদাম" + ], + "en_answers": [ + "almond" + ], + "count": 2 + }, + { + "answers": [ + "মাংস ভাজি", + "মাংশ ভাজি", + "মাংস" + ], + "en_answers": [ + "fried meat", + "meat" + ], + "count": 2 + }, + { + "answers": [ + "মটৰ" + ], + "en_answers": [ + "green pea" + ], + "count": 1 + }, + { + "answers": [ + "কেচা চানা" + ], + "en_answers": [ + "chana chutney" + ], + "count": 1 + }, + { + "answers": [ + "গাহৰি মাংস" + ], + "en_answers": [ + "pork" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-04": { + "question": "অসমত কি ফল সবাতোকৈ জনপ্ৰিয়?", + "en_question": "What is the most popular fruit in your country?", + "annotations": [ + { + "answers": [ + "কল", + "মালভোগ কল", + "মালভুক কল" + ], + "en_answers": [ + "banana", + "malbhog" + ], + "count": 5 + }, + { + "answers": [ + "আম" + ], + "en_answers": [ + "mango" + ], + "count": 3 + }, + { + "answers": [ + "কঠাল", + "কঁঠাল", + "কথাল" + ], + "en_answers": [ + "jackfruit" + ], + "count": 3 + }, + { + "answers": [ + "বগৰী" + ], + "en_answers": [ + "berry" + ], + "count": 1 + }, + { + "answers": [ + "নাৰিকল" + ], + "en_answers": [ + "coconut" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-06": { + "question": "অসমৰ বিদ্যালয়ৰ কেফেটেৰিয়াত সাধাৰণতে কি খাদ্য পৰিৱেশন কৰা হয়?", + "en_question": "What is a common school cafeteria food in your country?", + "annotations": [ + { + "answers": [ + "চাহ" + ], + "en_answers": [ + "tea" + ], + "count": 3 + }, + { + "answers": [ + "পৰঠা" + ], + "en_answers": [ + "paratha" + ], + "count": 2 + }, + { + "answers": [ + "ৰুটি-ভাজি" + ], + "en_answers": [ + "puri vaji", + "fried roti", + "flatbread and vegetable fries" + ], + "count": 1 + }, + { + "answers": [ + "ৰঙা চাহ" + ], + "en_answers": [ + "red tea" + ], + "count": 1 + }, + { + "answers": [ + "গাখীৰ চাহ" + ], + "en_answers": [ + "milk tea" + ], + "count": 1 + }, + { + "answers": [ + "কফী" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + }, + { + "answers": [ + "লুচি-পূৰী" + ], + "en_answers": [ + "luchi-puri", + "luchi puri", + "luchi" + ], + "count": 1 + }, + { + "answers": [ + "চকলেট" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + }, + { + "answers": [ + "চাওমিন" + ], + "en_answers": [ + "chowmein" + ], + "count": 1 + }, + { + "answers": [ + "ৰুটি" + ], + "en_answers": [ + "bread" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-08": { + "question": "অসমৰ শ্বপিং মলসমূহত সচৰাচৰ খোৱা জনপ্ৰিয় খাদ্যবোৰ কি কি?", + "en_question": "What are the most commonly eaten snacks at shopping malls in your country?", + "annotations": [ + { + "answers": [ + "ফুচকা" + ], + "en_answers": [ + "panipuri", + "pani puri" + ], + "count": 4 + }, + { + "answers": [ + "ম'ম'", + "ম ' ম '", + "ম'ম" + ], + "en_answers": [ + "momo", + "dumpling" + ], + "count": 3 + }, + { + "answers": [ + "বিস্কুত", + "কুহিয়াৰ ৰস" + ], + "en_answers": [ + "biscuit", + "sugarcane juice" + ], + "count": 2 + }, + { + "answers": [ + "চাওমিন" + ], + "en_answers": [ + "noodles", + "chowmein" + ], + "count": 1 + }, + { + "answers": [ + "মেগী" + ], + "en_answers": [ + "maggie noodles" + ], + "count": 1 + }, + { + "answers": [ + "ফলৰ জুচ" + ], + "en_answers": [ + "fruit juice" + ], + "count": 1 + }, + { + "answers": [ + "বাৰ্গাৰ" + ], + "en_answers": [ + "burger" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-09": { + "question": "অসমৰ এটা বিনোদন পাৰ্কত জনপ্ৰিয় খাদ্যবিধ কি?", + "en_question": "What is a popular snack at an amusement park in your country?", + "annotations": [ + { + "answers": [ + "আইচক্ৰীম" + ], + "en_answers": [ + "ice cream" + ], + "count": 2 + }, + { + "answers": [ + "চাহ" + ], + "en_answers": [ + "tea" + ], + "count": 2 + }, + { + "answers": [ + "ফুচকা" + ], + "en_answers": [ + "panipuri", + "pani puri" + ], + "count": 2 + }, + { + "answers": [ + "চি্পচ" + ], + "en_answers": [ + "chips" + ], + "count": 1 + }, + { + "answers": [ + "কমলা টেঙা" + ], + "en_answers": [ + "orange" + ], + "count": 1 + }, + { + "answers": [ + "চকলেট" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + }, + { + "answers": [ + "ম ' ম '" + ], + "en_answers": [ + "momo", + "dumpling" + ], + "count": 1 + }, + { + "answers": [ + "কুহিয়াৰ ৰস" + ], + "en_answers": [ + "sugarcane juice" + ], + "count": 1 + }, + { + "answers": [ + "কফি" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-16": { + "question": "অসমত শিশুসকলে কিমান বয়সত প্ৰাক-প্ৰাথমিক বিদ্যালয়ত ভৰ্তি হয়? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)", + "en_question": "At what age do kids start preschool in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "4", + "চাৰি বছৰ" + ], + "en_answers": [ + "4", + "four years" + ], + "count": 5 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 3 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 2 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-17": { + "question": "অসমৰ প্ৰাথমিক বিদ্যালয়সমূহৰ বাবে জনপ্ৰিয় স্কুলৰ পিছত খেলা খেলতো কি?", + "en_question": "What is a popular afterschool sport for elementary schools in your country?", + "annotations": [ + { + "answers": [ + "লুকা ভাকু", + "লুকা-ভাকু", + "লুকাভাকু" + ], + "en_answers": [ + "hide and seek" + ], + "count": 4 + }, + { + "answers": [ + "দৌৰ" + ], + "en_answers": [ + "race", + "running" + ], + "count": 2 + }, + { + "answers": [ + "কাবাডী" + ], + "en_answers": [ + "kabaddi" + ], + "count": 2 + }, + { + "answers": [ + "ক্ৰিকেট", + "ক্ৰিকেত" + ], + "en_answers": [ + "cricket" + ], + "count": 2 + }, + { + "answers": [ + "ফুটবল" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "লুডু" + ], + "en_answers": [ + "ludo" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-18": { + "question": "অসমত প্ৰাথমিক বিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে কোন বিষয়ত ব্যক্তিগত শিক্ষা গ্ৰহণ কৰে?", + "en_question": "For which subject do elementary students get private education in your country?", + "annotations": [ + { + "answers": [ + "ইংৰাজী" + ], + "en_answers": [ + "english" + ], + "count": 5 + }, + { + "answers": [ + "গণিত", + "গনিত" + ], + "en_answers": [ + "mathematics", + "maths", + "math" + ], + "count": 4 + }, + { + "answers": [ + "বিজ্ঞান" + ], + "en_answers": [ + "science" + ], + "count": 3 + }, + { + "answers": [ + "অসমীয়া", + "অসমীয়া।" + ], + "en_answers": [ + "assamese" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-19": { + "question": "অসমৰ উচ্চ-মাধ্যমিক বিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলৰ বাবে জনপ্ৰিয় দ্বিতীয় ভাষা কি?", + "en_question": "What is a popular second language for high school students in your country?", + "annotations": [ + { + "answers": [ + "ইংৰাজী", + "ই‍ংৰাজী" + ], + "en_answers": [ + "english" + ], + "count": 4 + }, + { + "answers": [ + "হিন্দী", + "হিনদী" + ], + "en_answers": [ + "hindi" + ], + "count": 4 + }, + { + "answers": [ + "বাংলা" + ], + "en_answers": [ + "bengali" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-21": { + "question": "অসমত মেধাৱী শিক্ষাৰ বাবে কোন বিষয়টো আটাইতকৈ গুৰুত্বপূৰ্ণ?", + "en_question": "Which subject is the most important for gifted education in your country?", + "annotations": [ + { + "answers": [ + "বিজ্ঞান" + ], + "en_answers": [ + "science" + ], + "count": 3 + }, + { + "answers": [ + "ইংৰাজী" + ], + "en_answers": [ + "english" + ], + "count": 3 + }, + { + "answers": [ + "গণিত", + "গনিত" + ], + "en_answers": [ + "mathematics", + "maths", + "math" + ], + "count": 3 + }, + { + "answers": [ + "চিকিৎসক" + ], + "en_answers": [ + "doctor", + "medicine" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-32": { + "question": "অসমত থেংকসগিভিংৰ মূল খাদ্যটো কি?", + "en_question": "What is the main dish for Thanksgiving in your country?", + "annotations": [ + { + "answers": [ + "টাৰকী" + ], + "en_answers": [ + "turkey" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-33": { + "question": "অসমত লোকে হেলোৱিন উদযাপন কৰিবলৈ কি কৰে?", + "en_question": "What do people do to celebrate Halloween in your country?", + "annotations": [ + { + "answers": [ + "মুখা পিন্ধে" + ], + "en_answers": [ + "mask" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-34": { + "question": "অসমত নৱবৰ্ষৰ দিনটো উদযাপন কৰিবলৈ মানুহে কি কৰে?", + "en_question": "What do people do to celebrate New Year's Day in your country?", + "annotations": [ + { + "answers": [ + "পিকনিকত যায়​", + "বনভোজ" + ], + "en_answers": [ + "picnic" + ], + "count": 2 + }, + { + "answers": [ + "স​ৰুৱে ডাঙৰক সেৱা কৰি আশীৰ্বাদ লয়", + "সৰুএ দাঙৰক সেৱা কৰি আশীৰৱাদ লয়", + "জেষ্ঠজনক বিহুৱান দি সেৱা লয়" + ], + "en_answers": [ + "serve the elders", + "give bihuwan" + ], + "count": 2 + }, + { + "answers": [ + "পাবত‌ যায়", + "পিঠা আৰু জলপান খায়" + ], + "en_answers": [ + "pub", + "pitha", + "snacks" + ], + "count": 2 + }, + { + "answers": [ + "ঘৰে ঘৰে হুচৰি গায়", + "নৃত্য গীত" + ], + "en_answers": [ + "sing husori", + "dance song" + ], + "count": 2 + }, + { + "answers": [ + "একেলগে ভোজ খায়" + ], + "en_answers": [ + "eat" + ], + "count": 1 + }, + { + "answers": [ + "মন্দিৰ বা নামঘৰ গৈ সেৱা কৰে" + ], + "en_answers": [ + "temple", + "prayer house" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-35": { + "question": "অসমত লোকে খ্ৰীষ্টমাছ উদযাপন কৰিবলৈ কি কৰে?", + "en_question": "What do people do to celebrate Christmas in your country?", + "annotations": [ + { + "answers": [ + "গিৰ্জাঘ​ৰত গৈ প্ৰাৰ্থনা ক​ৰে", + "গিৰ্জা ত ফুৰিব যায়", + "গীৰ্জাত প্ৰাৰ্থনা জনায়।", + "গীৰজা ঘৰলে যায়" + ], + "en_answers": [ + "go to church" + ], + "count": 4 + }, + { + "answers": [ + "এজনে আনজনক উপহাৰ দিয়ে", + "উপহাৰ দিয়ে" + ], + "en_answers": [ + "gift" + ], + "count": 2 + }, + { + "answers": [ + "খ্ৰীষ্টীয়ান বন্ধুৰ ঘৰত যায়" + ], + "en_answers": [ + "go to a christian friend's house" + ], + "count": 1 + }, + { + "answers": [ + "নৃত্য গীত কৰে" + ], + "en_answers": [ + "dance", + "sing" + ], + "count": 1 + }, + { + "answers": [ + "নতুন পোছাক কিনে" + ], + "en_answers": [ + "new clothes" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-36": { + "question": "অসমত হেলোৱিনৰ সৈতে কি খাদ্য জড়িত হৈ আছে?", + "en_question": "What food is associated with Halloween in your country?", + "annotations": [ + { + "answers": [ + "ৰঙলাও" + ], + "en_answers": [ + "pumpkin" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-37": { + "question": "অসমত খ্ৰীষ্টমাছৰ সৈতে কি খাদ্য জড়িত হৈ আছে?", + "en_question": "What food is associated with Christmas in your country?", + "annotations": [ + { + "answers": [ + "কেক" + ], + "en_answers": [ + "cake" + ], + "count": 3 + }, + { + "answers": [ + "মিঠাই" + ], + "en_answers": [ + "sweets" + ], + "count": 2 + }, + { + "answers": [ + "চাউমিন" + ], + "en_answers": [ + "chowmein" + ], + "count": 1 + }, + { + "answers": [ + "চাহ" + ], + "en_answers": [ + "tea" + ], + "count": 1 + }, + { + "answers": [ + "পেষ্ত্ৰী", + "পেস্ৰী" + ], + "en_answers": [ + "pastry", + "pastries" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-38": { + "question": "অসমত ভেলেণ্টাইন দিৱসৰ সৈতে কি খাদ্য জড়িত হৈ আছে?", + "en_question": "What food is associated with Valentine's day in your country?", + "annotations": [ + { + "answers": [ + "কেক" + ], + "en_answers": [ + "cake" + ], + "count": 3 + }, + { + "answers": [ + "চকলেট" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + }, + { + "answers": [ + "চাহ" + ], + "en_answers": [ + "tea" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Al-en-39": { + "question": "অসমত মানুহে তেওঁলোকৰ জন্মদিনত কি খায়?", + "en_question": "What do people eat on their birthday in your country?", + "annotations": [ + { + "answers": [ + "পায়স", + "পায়স​", + "পায়খ" + ], + "en_answers": [ + "rice pudding" + ], + "count": 4 + }, + { + "answers": [ + "কেক" + ], + "en_answers": [ + "cake" + ], + "count": 2 + }, + { + "answers": [ + "মিঠাই" + ], + "en_answers": [ + "sweets" + ], + "count": 2 + }, + { + "answers": [ + "বুটমাহ" + ], + "en_answers": [ + "kidney bean" + ], + "count": 1 + }, + { + "answers": [ + "মাংস ভাত" + ], + "en_answers": [ + "meat rice" + ], + "count": 1 + }, + { + "answers": [ + "চাহ" + ], + "en_answers": [ + "tea" + ], + "count": 1 + }, + { + "answers": [ + "অসমীয়া খাদ্য" + ], + "en_answers": [ + "assamese food" + ], + "count": 1 + }, + { + "answers": [ + "ৰুটি-ভাজি", + "ৰুটি ভাজি" + ], + "en_answers": [ + "puri vaji", + "fried roti", + "flatbread and vegetable fries" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-40": { + "question": "অসমত পৰিয়ালৰ লগত সৰু শিশুসকলৰ মজা কৰিবলৈ জনপ্ৰিয় আউটডোৰ স্থানটো কি?", + "en_question": "What is a popular outdoor place for families to have fun with little kids in your country?", + "annotations": [ + { + "answers": [ + "পথাৰ" + ], + "en_answers": [ + "field" + ], + "count": 2 + }, + { + "answers": [ + "পাৰ্ক", + "পাৰক" + ], + "en_answers": [ + "park" + ], + "count": 2 + }, + { + "answers": [ + "চোতাল" + ], + "en_answers": [ + "courtyard" + ], + "count": 1 + }, + { + "answers": [ + "আলহীৰ ঘৰ" + ], + "en_answers": [ + "guest's house" + ], + "count": 1 + }, + { + "answers": [ + "গলʼফ গৃহ" + ], + "en_answers": [ + "golf house" + ], + "count": 1 + }, + { + "answers": [ + "ৰেষ্টোৰা" + ], + "en_answers": [ + "restaurant" + ], + "count": 1 + }, + { + "answers": [ + "বটানিকেল গাৰ্ডেন" + ], + "en_answers": [ + "botanical garden", + "garden" + ], + "count": 1 + }, + { + "answers": [ + "নেহৰু পাৰ্ক" + ], + "en_answers": [ + "nehru park" + ], + "count": 1 + }, + { + "answers": [ + "এক'লেণ্ড" + ], + "en_answers": [ + "auckland", + "accoland" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-43": { + "question": "অসমত পৰিয়ালৰ বাবে জনপ্ৰিয় ঘৰুৱা ক্ৰিয়াকলাপটো কি?", + "en_question": "What is a popular indoor activity for families in your country?", + "annotations": [ + { + "answers": [ + "তাঁত বোৱা" + ], + "en_answers": [ + "weaving" + ], + "count": 1 + }, + { + "answers": [ + "ঊল গুঠা" + ], + "en_answers": [ + "wool spinning" + ], + "count": 1 + }, + { + "answers": [ + "সাধু শুনা বা কোৱা", + "সাধু সুনা বা কুআ" + ], + "en_answers": [ + "telling stories", + "listening to stories" + ], + "count": 1 + }, + { + "answers": [ + "তৰা গনা" + ], + "en_answers": [ + "counting stars" + ], + "count": 1 + }, + { + "answers": [ + "গান গোৱা", + "গান গুৱা" + ], + "en_answers": [ + "sing" + ], + "count": 1 + }, + { + "answers": [ + "লোদু" + ], + "en_answers": [ + "ludo" + ], + "count": 1 + }, + { + "answers": [ + "ফুলনি" + ], + "en_answers": [ + "gardening" + ], + "count": 1 + }, + { + "answers": [ + "শাক- পাচলি খেতি কৰে" + ], + "en_answers": [ + "cultivate vegetables", + "vegetable farming", + "vegetable cultivation" + ], + "count": 1 + }, + { + "answers": [ + "একেলগে টি ভি চায়" + ], + "en_answers": [ + "watch tv", + "tv" + ], + "count": 1 + }, + { + "answers": [ + "জুহালত বহি আড্ডা দিয়া" + ], + "en_answers": [ + "chat" + ], + "count": 1 + }, + { + "answers": [ + "একেলগে বহি ভাত খোৱা" + ], + "en_answers": [ + "eat" + ], + "count": 1 + }, + { + "answers": [ + "ধৰ্মীয় কাম কাজ" + ], + "en_answers": [ + "religious activities" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-02": { + "question": "অসমত বিশ্ববিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে দুপৰীয়াৰ আহাৰ ক'ত খায়?", + "en_question": "Where do university students have lunch in your country?", + "annotations": [ + { + "answers": [ + "হোষ্টেল", + "বিশ্ৱবিদ্য়ালয়ৰ হোষ্টেলত", + "হোস্তেল" + ], + "en_answers": [ + "hostel", + "university hostel" + ], + "count": 4 + }, + { + "answers": [ + "বিশ্ৱবিদ্য়ালয়ৰ কেন্টিনত", + "কলেজ কেনটিন", + "কেণ্টিন", + "কেনটিন" + ], + "en_answers": [ + "university canteen", + "canteen", + "college canteen" + ], + "count": 4 + }, + { + "answers": [ + "হোটেলত" + ], + "en_answers": [ + "hotel" + ], + "count": 1 + }, + { + "answers": [ + "ৰেষ্টুৰেণ্ট" + ], + "en_answers": [ + "restaurant" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-03": { + "question": "অসমৰ উচ্চ বিদ্যালয়সমূহত চূড়ান্ত পৰীক্ষা সাধাৰণতে কোন মাহত নিৰ্ধাৰিত হয়? (কেৱল আৰবী সংখ্যা (1~12) প্ৰদান কৰক।)", + "en_question": "Which month is the final exam term usually scheduled at high schools in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + }, + { + "answers": [ + "3", + "মাৰচ" + ], + "en_answers": [ + "3" + ], + "count": 2 + }, + { + "answers": [ + "11", + "৬ আৰু ১১" + ], + "en_answers": [ + "11" + ], + "count": 1 + }, + { + "answers": [ + "2", + "ফেব্ৰুৱাৰী" + ], + "en_answers": [ + "2" + ], + "count": 1 + }, + { + "answers": [ + "5", + "মে'" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "4", + "এপ্ৰিল" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-08": { + "question": "অসমীয়া ছাত্ৰ-ছাত্ৰীসকলে সাধাৰণতে উচ্চ মাধ্যমিক বিদ্যালয়ত দিনত কিমান ঘণ্টা সময় অতিবাহিত কৰে? (অৰবী সংখ্যা পদ্ধতিত পূৰ্ণাংক (0~24) প্ৰদান কৰক, দশমিক বিন্দু অবিহনে।)", + "en_question": "How many hours a day do students in your country usually spend at high school? (Provide Arabic numerals in integers (0~24), without any decimal points.)", + "annotations": [ + { + "answers": [ + "6", + "৬ ঘন্টা" + ], + "en_answers": [ + "6" + ], + "count": 3 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-09": { + "question": "অসমৰ উচ্চ মাধ্যমিক বিদ্যালয়ত ছাত্ৰ-ছাত্ৰীসকলে কিমানটা ভাষা অধ্যয়ন কৰে? (কেৱল আৰবী সংখ্যা (যেনে, 5) প্ৰদান কৰক।)", + "en_question": "How many languages do students study at high school in your country? (Provide Arabic numerals (e.g., 5) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 3 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-34": { + "question": "অসমৰ বিদ্যালয়সমূহত দলীয় ভাৱে খেলা সবাতোকৈ জনপ্ৰিয় ক্ৰীড়া কি?", + "en_question": "What is the most popular sport played in a team at school in your country?", + "annotations": [ + { + "answers": [ + "কাবাডী", + "কাবাদি", + "কাবাদী" + ], + "en_answers": [ + "kabaddi" + ], + "count": 4 + }, + { + "answers": [ + "ক্ৰিকেট", + "ক্ৰিকেত", + "কৃকেট" + ], + "en_answers": [ + "cricket" + ], + "count": 4 + }, + { + "answers": [ + "লুকা ভাকু" + ], + "en_answers": [ + "hide and seek" + ], + "count": 2 + }, + { + "answers": [ + "ৰচীটনা" + ], + "en_answers": [ + "tug of war", + "tug-of-war" + ], + "count": 1 + }, + { + "answers": [ + "বেদমিনটন" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "ফুটবল" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-35": { + "question": "অসমত আটাইতকৈ জনপ্ৰিয় ক্ৰীড়া মন্তব্যকাৰীজন কোন?", + "en_question": "Who is the most popular sport commentator in your country?", + "annotations": [ + { + "answers": [ + "অনিল শৰ্মা" + ], + "en_answers": [ + "anil sharma" + ], + "count": 2 + }, + { + "answers": [ + "হীমা দাস" + ], + "en_answers": [ + "hima das" + ], + "count": 1 + }, + { + "answers": [ + "মেৰী কম" + ], + "en_answers": [ + "mary kom" + ], + "count": 1 + }, + { + "answers": [ + "ভোগেশ্বৰ বৰুৱা" + ], + "en_answers": [ + "bhogeswar baruah" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-36": { + "question": "অসমত কোনটো ক্ৰীড়া দলটো সবাতোকৈ জনপ্ৰিয়?", + "en_question": "What is the most popular sport team in your country?", + "annotations": [ + { + "answers": [ + "ক্ৰিকেট", + "ক্ৰিকেত", + "কৃকেট" + ], + "en_answers": [ + "cricket team", + "cricket" + ], + "count": 3 + }, + { + "answers": [ + "অসম ফুটবল দল", + "অসমৰ ফুটবল দল" + ], + "en_answers": [ + "assam football team" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-43": { + "question": "অসমত মানুহে সাধাৰণতে ক্ৰীড়া সম্প্ৰচাৰ চাবলৈ কোন কোন স্থানত বা প্ৰাঙ্গণত জমা হয়?", + "en_question": "What are the common places or venues where individuals in your country usually gather to watch sports broadcasts?", + "annotations": [ + { + "answers": [ + "তিনিআলিৰ দোকানত", + "তিনিআলি" + ], + "en_answers": [ + "shop", + "tinali" + ], + "count": 2 + }, + { + "answers": [ + "ঘৰৰ দুৰদৰ্শনত", + "ঘৰৰ দুৰদৰ্সন ত", + "ঘৰৰ টিভি ৰুমত" + ], + "en_answers": [ + "television at home", + "home", + "house", + "tv room" + ], + "count": 2 + }, + { + "answers": [ + "ষ্টেদিয়াম", + "খেল হোৱা স্থানত" + ], + "en_answers": [ + "stadium", + "venue of the game", + "place where the game is played" + ], + "count": 2 + }, + { + "answers": [ + "ৰঙ্গমঞ্চত" + ], + "en_answers": [ + "stage" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-05": { + "question": "অসমীয় লোকে সাধাৰণতে দিনত কিমান বাৰ আহাৰ কৰে? (কেৱল আৰবী সংখ্যা (যেনে, 5) প্ৰদান কৰক।)", + "en_question": "How many meals per day do people from your country usually have? (Provide Arabic numerals (e.g., 5) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 4 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-06": { + "question": "অসমীয় লোকসকলৰ বাবে দিনৰ কোনটো আহাৰটো সবাতোকৈ গুৰুত্বপূৰ্ণ?", + "en_question": "Which is the most important meal of the day to people from your country?", + "annotations": [ + { + "answers": [ + "দুপৰীয়াৰ আহাৰ", + "দুপ​ৰিয়াৰ" + ], + "en_answers": [ + "afternoon meal", + "afternoon", + "afternoon's" + ], + "count": 3 + }, + { + "answers": [ + "ৰাতিৰ আহাৰ" + ], + "en_answers": [ + "dinner" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-08": { + "question": "অসমৰ খাদ্যত ব্যৱহৃত সবাতোকৈ সাধাৰণ উপাদানটো কি?", + "en_question": "What is the most common ingredient used in your country's diet?", + "annotations": [ + { + "answers": [ + "চাউল" + ], + "en_answers": [ + "rice" + ], + "count": 3 + }, + { + "answers": [ + "আলু" + ], + "en_answers": [ + "potato" + ], + "count": 1 + }, + { + "answers": [ + "নিমখ" + ], + "en_answers": [ + "salt" + ], + "count": 1 + }, + { + "answers": [ + "মাচৰ টেঙা" + ], + "en_answers": [ + "sour fish curry" + ], + "count": 1 + }, + { + "answers": [ + "দালি" + ], + "en_answers": [ + "dal", + "dali" + ], + "count": 1 + }, + { + "answers": [ + "ষাঢ়" + ], + "en_answers": [ + "bull" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-09": { + "question": "অসমৰ মানুহে সাধাৰণতে ডেজাৰ্টত কি খায়?", + "en_question": "What do people from your country usually eat for dessert?", + "annotations": [ + { + "answers": [ + "পায়স", + "পায়খ", + "পায়স" + ], + "en_answers": [ + "rice pudding" + ], + "count": 4 + }, + { + "answers": [ + "দৈ চিৰা গুৰ", + "দৈ মিঠাই" + ], + "en_answers": [ + "curd, flattened rice and jaggery", + "curd sweet" + ], + "count": 2 + }, + { + "answers": [ + "নাৰিকল​ৰ লাৰু" + ], + "en_answers": [ + "coconut laddu" + ], + "count": 1 + }, + { + "answers": [ + "পিঠা" + ], + "en_answers": [ + "rice cake" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-11": { + "question": "সপ্তাহৰ কোন দিনটোত অসমত সাধাৰণতে লোকে পৰিয়ালৰ ভোজন আয়োজন কৰে?", + "en_question": "Which day of the week do people usually organize a family meal in your country?", + "annotations": [ + { + "answers": [ + "দেওবাৰ", + "ৰবিবাৰে", + "দেউবাৰ", + "দেওবাৰে" + ], + "en_answers": [ + "sunday", + "on sunday" + ], + "count": 5 + }, + { + "answers": [ + "শনিবাৰ" + ], + "en_answers": [ + "saturday" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-14": { + "question": "অসমত কোনটো গৰম পানীয় সবাতোকৈ জনপ্ৰিয়?", + "en_question": "Which is the most popular hot drink in your country?", + "annotations": [ + { + "answers": [ + "চাহ" + ], + "en_answers": [ + "tea" + ], + "count": 3 + }, + { + "answers": [ + "কফি", + "কফী" + ], + "en_answers": [ + "coffee" + ], + "count": 2 + }, + { + "answers": [ + "গাখীৰ" + ], + "en_answers": [ + "milk" + ], + "count": 1 + }, + { + "answers": [ + "ৰঙা চাহ" + ], + "en_answers": [ + "red tea" + ], + "count": 1 + }, + { + "answers": [ + "গাখীৰ চাহ" + ], + "en_answers": [ + "milk tea" + ], + "count": 1 + }, + { + "answers": [ + "মদ" + ], + "en_answers": [ + "liquor" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-19": { + "question": "অসমৰ যুৱক-যুৱতীসকলে নিশাৰ ক্লাবত সাধাৰণতে কি পানীয় পান কৰে?", + "en_question": "What do young people from your country usually drink at the night club?", + "annotations": [ + { + "answers": [ + "বিয়েৰ" + ], + "en_answers": [ + "beer" + ], + "count": 3 + }, + { + "answers": [ + "ভ্দকা", + "ভদকা" + ], + "en_answers": [ + "vodka" + ], + "count": 2 + }, + { + "answers": [ + "কল্ড ড্ৰিংক" + ], + "en_answers": [ + "cold drink" + ], + "count": 1 + }, + { + "answers": [ + "হুইচকী" + ], + "en_answers": [ + "whiskey" + ], + "count": 1 + }, + { + "answers": [ + "মদ" + ], + "en_answers": [ + "liquor" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-21": { + "question": "অসমত মানুহে সাধাৰণতে কোন মাহত বন্ধ লয়? (কেৱল আৰবী সংখ্যা (1~12) প্ৰদান কৰক।)", + "en_question": "At which month do people usually take holidays in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 3 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 2 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + }, + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-29": { + "question": "অসমত নৱবৰ্ষৰ বেলিকা কি ৰীতি পালন কৰা হয়?", + "en_question": "What tradition is there in your country for New Year's Eve?", + "annotations": [ + { + "answers": [ + "বিহু" + ], + "en_answers": [ + "bihu" + ], + "count": 2 + }, + { + "answers": [ + "স​ৰুৱে ডাঙৰক সেৱা কৰি আশীৰ্বাদ লয়", + "সৰুএ দাঙৰক সেৱা কৰি আশীৰৱাদ লয়" + ], + "en_answers": [ + "serve the elders" + ], + "count": 1 + }, + { + "answers": [ + "মন্দিৰ বা নামঘৰ গৈ সেৱা কৰে" + ], + "en_answers": [ + "temple", + "prayer house" + ], + "count": 1 + }, + { + "answers": [ + "পিকনিক" + ], + "en_answers": [ + "picnic" + ], + "count": 1 + }, + { + "answers": [ + "জেষ্ঠজনক বিহুৱান দি সেৱা লয়" + ], + "en_answers": [ + "serve the elders", + "give bihuwan" + ], + "count": 1 + }, + { + "answers": [ + "পিঠা আৰু জলপান খায়" + ], + "en_answers": [ + "eat pitha", + "eat snacks" + ], + "count": 1 + }, + { + "answers": [ + "ঘৰে ঘৰে হুচৰি গায়" + ], + "en_answers": [ + "sing husori" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-38": { + "question": "অসমত এটা পৰিয়ালৰ বাবে প্ৰচলিত ঘৰৰ ধৰণটো কি?", + "en_question": "Which is the typical type of house for a family in your country?", + "annotations": [ + { + "answers": [ + "অসম আৰ্হি", + "আসাম টাইপ", + "অসম আৰ্হিৰ ঘৰ" + ], + "en_answers": [ + "assam type", + "assamese" + ], + "count": 4 + }, + { + "answers": [ + "বিল্দীঙ" + ], + "en_answers": [ + "building" + ], + "count": 1 + }, + { + "answers": [ + "সাধাৰণ" + ], + "en_answers": [ + "general" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-41": { + "question": "ভাৰপ্ৰাপ্ত বৃদ্ধ লোকসকলে সাধাৰণতে অসমত ক'ত থাকে?", + "en_question": "Where do the dependent elderly usually live in your country?", + "annotations": [ + { + "answers": [ + "নিজা বাসগৃহত", + "নিজে বনোৱা ঘৰত", + "নিজে বনুৱা ঘৰত", + "নিজ গৃহত", + "নিজৰ ঘৰত" + ], + "en_answers": [ + "own residence", + "self-built house", + "own home", + "own house", + "home", + "house" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-42": { + "question": "অসমৰ মাতৃত্ব অৱসৰ কিমান সপ্তাহ ধৰি আছে? (কেৱল আৰবী সংখ্যা (যেনে, 20) প্ৰদান কৰক।)", + "en_question": "How long (in weeks) is your country's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 2 + }, + { + "answers": [ + "32" + ], + "en_answers": [ + "32" + ], + "count": 1 + }, + { + "answers": [ + "26" + ], + "en_answers": [ + "26" + ], + "count": 1 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-43": { + "question": "অসমৰ পিতৃত্ব অৱকাশ পিতৃসকলৰ বাবে কিমান সপ্তাহ ধৰি আছে? (কেৱল আৰবী সংখ্যা (যেনে, 20) প্ৰদান কৰক।)", + "en_question": "How long (in weeks) is your country's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 2 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-45": { + "question": "অসমত পৰিয়ালৰ ছুটী কাটিবলৈ সাধাৰণতে কি ধৰণৰ গন্তব্যস্থান বাচি লোৱা হয়?", + "en_question": "What type of destination is commonly chosen for a family vacation in your country?", + "annotations": [ + { + "answers": [ + "পাহাৰীয়া ঠাই", + "পাহাৰীয়া অঞ্চল" + ], + "en_answers": [ + "hilly area", + "hilly region" + ], + "count": 2 + }, + { + "answers": [ + "বংশ প​ৰিয়াল​ৰ ঘ​ৰ" + ], + "en_answers": [ + "ancestral home" + ], + "count": 1 + }, + { + "answers": [ + "মিতিৰ কুটুুমৰ ঘ​ৰ" + ], + "en_answers": [ + "friend's family home" + ], + "count": 1 + }, + { + "answers": [ + "প​ৰ্যটনস্থলী" + ], + "en_answers": [ + "tourist spot" + ], + "count": 1 + }, + { + "answers": [ + "আলহীৰ ঘৰ" + ], + "en_answers": [ + "guest's house" + ], + "count": 1 + }, + { + "answers": [ + "দেশ বিদেশৰ বিভিন্ন ঠাই" + ], + "en_answers": [ + "different places of the country and abroad" + ], + "count": 1 + }, + { + "answers": [ + "শান্তিময় পৰিৱেশ", + "সান্তী ময় পৰিৱেশ" + ], + "en_answers": [ + "peaceful environment" + ], + "count": 1 + }, + { + "answers": [ + "সাগৰীয় বিচ ঠাই" + ], + "en_answers": [ + "coastal beach area" + ], + "count": 1 + }, + { + "answers": [ + "প্ৰাকৃতিক অভয়াৰণ্য" + ], + "en_answers": [ + "natural sanctuary" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-05": { + "question": "অসমত বৃদ্ধ লোকসকলে কি ক্ৰীড়া সবাতোকৈ অধিক পছন্দ কৰে?", + "en_question": "What sports do seniors like the most in your country?", + "annotations": [ + { + "answers": [ + "খোজকঢ়া", + "ফুৰা চকা" + ], + "en_answers": [ + "walk", + "moving around", + "move around" + ], + "count": 2 + }, + { + "answers": [ + "কেৰম" + ], + "en_answers": [ + "carrom" + ], + "count": 1 + }, + { + "answers": [ + "ক্ৰিকেট" + ], + "en_answers": [ + "cricket" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-06": { + "question": "অসমত পুৰুষসকলে সবাতোকৈ বেছি কি খেল খেলিবলৈ পছন্দ কৰে?", + "en_question": "What sports do men like to play the most in your country?", + "annotations": [ + { + "answers": [ + "ক্ৰিকেট" + ], + "en_answers": [ + "cricket" + ], + "count": 3 + }, + { + "answers": [ + "কেৰম" + ], + "en_answers": [ + "carrom" + ], + "count": 3 + }, + { + "answers": [ + "ফুটবল" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "তাচ পাত" + ], + "en_answers": [ + "cards" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-07": { + "question": "অসমত কোন বাস্কেটবল খেলুৱৈজন সবাতোকৈ বিখ্যাত?", + "en_question": "Who is the most famous basketball player in your country?", + "annotations": [ + { + "answers": [ + "সৌৰভ সিং" + ], + "en_answers": [ + "saurabh singh" + ], + "count": 2 + }, + { + "answers": [ + "ভাগ্যশ্ৰী মহন্ত", + "ভাগ্য়শ্ৰী মহন্ত​" + ], + "en_answers": [ + "bhagyashree mahanta" + ], + "count": 2 + }, + { + "answers": [ + "অভিষেক খংগীয়া" + ], + "en_answers": [ + "abhishek private" + ], + "count": 1 + }, + { + "answers": [ + "গোবিন্দ শৰ্মা" + ], + "en_answers": [ + "govinda sharma" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-08": { + "question": "অসমত শিশুসকলৰ মাজত কি ক্ৰীড়া প্ৰচলিত?", + "en_question": "What is the most popular sports among children in your country?", + "annotations": [ + { + "answers": [ + "লুডো", + "লুডু", + "লোদু" + ], + "en_answers": [ + "ludo" + ], + "count": 4 + }, + { + "answers": [ + "দৌৰ" + ], + "en_answers": [ + "race", + "running" + ], + "count": 2 + }, + { + "answers": [ + "লুকা-ভাকু" + ], + "en_answers": [ + "hide and seek" + ], + "count": 1 + }, + { + "answers": [ + "তাচ পাত" + ], + "en_answers": [ + "card", + "card game" + ], + "count": 1 + }, + { + "answers": [ + "ক্ৰিকেট" + ], + "en_answers": [ + "cricket" + ], + "count": 1 + }, + { + "answers": [ + "ভিডিঅ গেমচ" + ], + "en_answers": [ + "video game" + ], + "count": 1 + }, + { + "answers": [ + "কাবাদী" + ], + "en_answers": [ + "kabaddi" + ], + "count": 1 + }, + { + "answers": [ + "ৰচী টনা" + ], + "en_answers": [ + "tug of war", + "tug-of-war" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-09": { + "question": "অসমত মহিলাসকলে কি ক্ৰীড়া প্ৰকাৰ সবাতোকৈ অধিক পছন্দ কৰে?", + "en_question": "What sports do women like to play the most in your country?", + "annotations": [ + { + "answers": [ + "বেডমিন্টন", + "বেডমিন্তন" + ], + "en_answers": [ + "badminton" + ], + "count": 2 + }, + { + "answers": [ + "লুডো", + "লুডু" + ], + "en_answers": [ + "ludo" + ], + "count": 2 + }, + { + "answers": [ + "বাস্কেটবল" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "ভলীবল" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "টেবুল টেনিছ", + "টেবুুল টেনিছ" + ], + "en_answers": [ + "table tennis" + ], + "count": 1 + }, + { + "answers": [ + "ফুটবল" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "তাঁত বোৱা" + ], + "en_answers": [ + "weaving" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-11": { + "question": "অলিম্পিকত অসমে কোন ক্ৰীড়া ইভেণ্টত সৰ্বাধিক সোণৰ পদক জিকিছে?", + "en_question": "What sports event has your country won the most gold medals at the Olympics?", + "annotations": [ + { + "answers": [ + "হকি খেল", + "হকী" + ], + "en_answers": [ + "hockey game", + "hockey" + ], + "count": 2 + }, + { + "answers": [ + "দৌৰ" + ], + "en_answers": [ + "race", + "running" + ], + "count": 1 + }, + { + "answers": [ + "বক্সিং" + ], + "en_answers": [ + "boxing" + ], + "count": 1 + }, + { + "answers": [ + "মল্ল যুজ", + "মল যোজ" + ], + "en_answers": [ + "wrestling" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Gu-ch-15": { + "question": "অসমত বিশ্ববিদ্যালয়ৰ পুৰুষ ছাত্ৰসকলে কি ক্ৰীড়া খেলিবলৈ সবাতোকৈ অধিক পছন্দ কৰে?", + "en_question": "What sports do male students in university like to play the most in your country?", + "annotations": [ + { + "answers": [ + "ক্ৰিকেট", + "ক্ৰিকেত", + "কৃকেট" + ], + "en_answers": [ + "cricket" + ], + "count": 4 + }, + { + "answers": [ + "ফুটবল" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "বেডমিন্টন" + ], + "en_answers": [ + "badminton" + ], + "count": 2 + }, + { + "answers": [ + "বাস্কেটবল", + "কাবাডী", + "কাবাদী" + ], + "en_answers": [ + "basketball", + "kabaddi" + ], + "count": 2 + }, + { + "answers": [ + "কাবাডী" + ], + "en_answers": [ + "kabaddi" + ], + "count": 1 + }, + { + "answers": [ + "ভলীবল" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "ছেছ", + "ছেছ /টেবুল টেনিচ" + ], + "en_answers": [ + "chess" + ], + "count": 1 + }, + { + "answers": [ + "টেবুল টেনিচ", + "ছেছ /টেবুল টেনিচ" + ], + "en_answers": [ + "table tennis" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-16": { + "question": "অসমত গড়ে এটা পৰিয়ালত কিমানজন লোক থাকে? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)", + "en_question": "How many people are there in a family on average in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 4 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 4 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 2 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-18": { + "question": "অসমত দম্পতীসকলে সাধাৰণতে কিমানটা সন্তান থাকে? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)", + "en_question": "How many children do couples usually have in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 4 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 4 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 3 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-31": { + "question": "অসমত প্ৰাথমিক বিদ্যালয়ৰ সময়কাল কিমান বছৰৰ? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)", + "en_question": "What is the duration of elementary school in years in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 3 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-32": { + "question": "অসমত বাধ্যতামূলক শিক্ষাৰ সময়কাল কিমান বছৰৰ? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)", + "en_question": "What is the duration of compulsory education in years in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "14", + "6-14" + ], + "en_answers": [ + "14" + ], + "count": 2 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + }, + { + "answers": [ + "6", + "6-14" + ], + "en_answers": [ + "6" + ], + "count": 1 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-33": { + "question": "অসমত ছাত্ৰ-ছাত্ৰীসকলে কোন বয়সৰ পৰা দ্বিতীয় ভাষাৰ শিক্ষা আৰম্ভ কৰে? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)", + "en_question": "From which age do students start learning their second language in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 2 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-38": { + "question": "অসমত স্নাতক শিক্ষাৰ সময়কাল কিমান বছৰৰ? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)", + "en_question": "What is the duration of undergraduate education in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "21" + ], + "en_answers": [ + "21" + ], + "count": 2 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 2 + }, + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 1 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-40": { + "question": "অসমত প্ৰাথমিক বিদ্যালয়ৰ কণিষ্ঠ ছাত্ৰ-ছাত্ৰীসকলে কেতিয়া বিদ্যালয় সমাপ্ত কৰে? (HH:MM ফৰ্মেটত প্ৰদান কৰক (যেনে, 18:00, 09:00)।)", + "en_question": "What time do younger elementary school students finish school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "13:30" + ], + "en_answers": [ + "13:30" + ], + "count": 1 + }, + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 1 + }, + { + "answers": [ + "14:30" + ], + "en_answers": [ + "14:30" + ], + "count": 1 + }, + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 1 + }, + { + "answers": [ + "15:00", + "03:00" + ], + "en_answers": [ + "15:00" + ], + "count": 1 + }, + { + "answers": [ + "11:45" + ], + "en_answers": [ + "11:45" + ], + "count": 1 + }, + { + "answers": [ + "12:30" + ], + "en_answers": [ + "12:30" + ], + "count": 1 + }, + { + "answers": [ + "12:00" + ], + "en_answers": [ + "12:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-41": { + "question": "অসমৰ প্ৰাথমিক বিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে সাধাৰণতে কিমানটা সংগীত বাদ্যযন্ত্ৰ বজায়? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)", + "en_question": "How many musical instruments do elementary school students in your country typically play? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 2 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 2 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 2 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-02": { + "question": "অসমীয় লোকে সপ্তাহৰ কোন দিনটোত কোম্পানীৰ ভোজনালয়ত ভোজন কৰিবলৈ পছন্দ কৰে?", + "en_question": "What day of the week do people in your country prefer to have company dinners?", + "annotations": [ + { + "answers": [ + "শনিবাৰ" + ], + "en_answers": [ + "saturday" + ], + "count": 2 + }, + { + "answers": [ + "দেওবাৰে" + ], + "en_answers": [ + "sunday" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "Ji-ko-03": { + "question": "অসমত কোন অঞ্চল/চহৰত আৰ্থিক প্ৰতিষ্ঠানৰ সংখ্যা সৰ্বাধিক?", + "en_question": "Which region/city has the highest number of financial companies in your country?", + "annotations": [ + { + "answers": [ + "গুৱাহাটী" + ], + "en_answers": [ + "guwahati" + ], + "count": 5 + }, + { + "answers": [ + "যোৰহাট" + ], + "en_answers": [ + "jorhat" + ], + "count": 2 + }, + { + "answers": [ + "ডিব্ৰুগ​ড়" + ], + "en_answers": [ + "dibrugarh" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-07": { + "question": "অসমৰ আটাইতকৈ বিখ্যাত ব্যক্তিগত কোম্পানীটো কি?", + "en_question": "What is the most famous private company in your country?", + "annotations": [ + { + "answers": [ + "দ্য আছাম ট্ৰিবিউন" + ], + "en_answers": [ + "the assam tribune" + ], + "count": 1 + }, + { + "answers": [ + "টি.চি.এচ" + ], + "en_answers": [ + "tcs" + ], + "count": 1 + }, + { + "answers": [ + "প্ৰাইড ইষ্ট এণ্টাৰটেইনমেণ্ট প্ৰাইভেট লিমিটেড" + ], + "en_answers": [ + "pride east entertainment private limited" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-08": { + "question": "অসমত এজন ব্যক্তি সপ্তাহত সৰ্বাধিক কিমান ঘণ্টা কাম কৰিব পাৰে? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)", + "en_question": "What is the maximum number of hours one can work per week in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "48" + ], + "en_answers": [ + "48" + ], + "count": 3 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "42" + ], + "en_answers": [ + "42" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-09": { + "question": "অসমত কোম্পানীৰ লোকসকলে সমবেত হোৱা সময়ত সাধাৰণতে কি খায়?", + "en_question": "What do people typically eat during company get-together in your country?", + "annotations": [ + { + "answers": [ + "চাহ" + ], + "en_answers": [ + "tea" + ], + "count": 4 + }, + { + "answers": [ + "কফি", + "কফী" + ], + "en_answers": [ + "coffee" + ], + "count": 3 + }, + { + "answers": [ + "চাহ মিঠাই", + "চাহ চিঙাৰা" + ], + "en_answers": [ + "tea snack" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-14": { + "question": "অসমৰ প্ৰতিনিধিত্বমূলক ৰপ্তানি সামগ্ৰীটো কি?", + "en_question": "What is the representative export item of your country?", + "annotations": [ + { + "answers": [ + "চাহ", + "চাহপাত", + "চাহ পাত" + ], + "en_answers": [ + "tea", + "tea leaf" + ], + "count": 5 + }, + { + "answers": [ + "পেট্ৰোল", + "খাৰুৱা তেল" + ], + "en_answers": [ + "petrol", + "crude oil" + ], + "count": 2 + }, + { + "answers": [ + "চাউল" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "খনিজ দ্ৰৱ্য" + ], + "en_answers": [ + "mineral resources" + ], + "count": 1 + }, + { + "answers": [ + "কয়লা" + ], + "en_answers": [ + "coal" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-15": { + "question": "অসমত সাধাৰণতে দুপৰীয়াৰ আহাৰৰ বিৰতি কিমান ঘণ্টা হয়? (কেৱল আৰবী সংখ্যা এটা দশমিক বিন্দু পৰ্যন্ত প্ৰদান কৰক (যেনে, 2, 3.5)।)", + "en_question": "How long (in hours) is the typical lunch break in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 3 + }, + { + "answers": [ + "1.5", + "১:৫" + ], + "en_answers": [ + "1.5" + ], + "count": 2 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "5.5" + ], + "en_answers": [ + "5.5" + ], + "count": 1 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + }, + { + "answers": [ + "0.5", + "১/২" + ], + "en_answers": [ + "0.5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-16": { + "question": "অসমত প্ৰসৱৰ পিছত নিৰ্দিষ্ট সময়ছোৱা মাতৃসকলে ক'ত বিশ্ৰাম কৰে?", + "en_question": "Where do mothers stay for a certain period after childbirth for recovery in your country?", + "annotations": [ + { + "answers": [ + "নিজা বাসগৃহত", + "নিজ গৃহ", + "নিজ গ্ৰীহ ত", + "নিজা ঘৰত" + ], + "en_answers": [ + "own residence", + "home", + "house" + ], + "count": 3 + }, + { + "answers": [ + "মাতৃৰ পিতৃৰ ঘৰত" + ], + "en_answers": [ + "parents'", + "parent's" + ], + "count": 1 + }, + { + "answers": [ + "স্বামীৰ ঘৰত" + ], + "en_answers": [ + "husband's" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-19": { + "question": "পিতৃ-মাতৃ দিৱসত অসমত সচৰাচৰ কি ফুল উপহাৰ হিচাপে দিয়া হয়?", + "en_question": "What is your country's most commonly given flower on Parents' Day?", + "annotations": [ + { + "answers": [ + "গোলাপ" + ], + "en_answers": [ + "rose" + ], + "count": 3 + }, + { + "answers": [ + "জবা" + ], + "en_answers": [ + "hibiscus" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-22": { + "question": "অসমীয় সমাজত মানুহে বিশেষকৈ তেওঁলোকৰ প্ৰথম দৰমহা কিহত ব্যয় কৰে?", + "en_question": "What do people especially spend their first salary on in your country's society?", + "annotations": [ + { + "answers": [ + "প্ৰীয় জন ৰ উপহাৰ ত", + "পৰিয়ালৰ লোকক উপহাৰ দিয়ে", + "পৰিয়ালৰ সকলোলৈকে উপহাৰ কিনাত" + ], + "en_answers": [ + "gift for the loved one", + "gift for family members" + ], + "count": 3 + }, + { + "answers": [ + "নিত্য-প্ৰয়োজনীয় সামগ্ৰী ক্ৰয় ক​ৰাত", + "নিত্য়প্ৰ​য়োজনীয় সামগ্ৰী ক্ৰয় ক​ৰাত" + ], + "en_answers": [ + "daily essentials" + ], + "count": 1 + }, + { + "answers": [ + "কাপোৰ ক্ৰয় ক​ৰাত" + ], + "en_answers": [ + "clothes" + ], + "count": 1 + }, + { + "answers": [ + "মা দেউতাৰ উপহাৰত", + "মা ডেউতা ৰ উপহাৰ ত" + ], + "en_answers": [ + "parents' gift" + ], + "count": 1 + }, + { + "answers": [ + "ঘৰৰ কামত" + ], + "en_answers": [ + "household work" + ], + "count": 1 + }, + { + "answers": [ + "নামঘৰত চাকি/শৰাই দিয়ে" + ], + "en_answers": [ + "light a lamp/incense in the prayer house" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-24": { + "question": "অসমত শিশুসকলৰ মাজত সবাতোকৈ জনপ্ৰিয় বিনোদন সুবিধাটো কি?", + "en_question": "What is the most preferred recreational facility among children in your country?", + "annotations": [ + { + "answers": [ + "খেলা-ধূলা ক​ৰা", + "খেলা ধূলা" + ], + "en_answers": [ + "playing sports", + "sports" + ], + "count": 2 + }, + { + "answers": [ + "উদ্যান" + ], + "en_answers": [ + "garden" + ], + "count": 1 + }, + { + "answers": [ + "চাইকেল" + ], + "en_answers": [ + "bicycle" + ], + "count": 1 + }, + { + "answers": [ + "পাৰ্ক" + ], + "en_answers": [ + "park" + ], + "count": 1 + }, + { + "answers": [ + "খেলপথাৰ" + ], + "en_answers": [ + "playground" + ], + "count": 1 + }, + { + "answers": [ + "মইনা পাৰিজাত" + ], + "en_answers": [ + "moina parijat" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-25": { + "question": "অসমত পৰিয়াল-সম্পৰ্কীয় বন্ধসমূহ কি কি?", + "en_question": "What are the family-related holidays in your country?", + "annotations": [ + { + "answers": [ + "প্ৰসূতিকালীন বন্ধ​", + "মাতৃত্ব অৱসৰ" + ], + "en_answers": [ + "maternity leave" + ], + "count": 2 + }, + { + "answers": [ + "পিতৃত্বৰ বন্ধ​" + ], + "en_answers": [ + "paternity leave" + ], + "count": 1 + }, + { + "answers": [ + "চাইল্ড কেয়াৰ লিভ" + ], + "en_answers": [ + "child care leave" + ], + "count": 1 + }, + { + "answers": [ + "বিহু" + ], + "en_answers": [ + "bihu" + ], + "count": 1 + }, + { + "answers": [ + "দুৰ্গাপূজা" + ], + "en_answers": [ + "durga puja" + ], + "count": 1 + }, + { + "answers": [ + "পিতৃ মাতৃ সেৱা" + ], + "en_answers": [ + "parental service" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-26": { + "question": "অসমীয় সমাজত অভিভাৱকৰ পৰা শিশুসকলৰ স্বাধীনতা সম্পৰ্কীয় মুখ্য মাইলষ্ট'নসমূহ কি কি?", + "en_question": "What are the key milestones associated with children's independence from their parents in your country's society?", + "annotations": [ + { + "answers": [ + "প্ৰেম ভালপোৱা" + ], + "en_answers": [ + "love affection" + ], + "count": 1 + }, + { + "answers": [ + "সন্মান" + ], + "en_answers": [ + "respect" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "not-applicable": 1, + "idk": 0 + } + }, + "Ji-ko-27": { + "question": "অসমত বৃদ্ধ পিতৃ-মাতৃক লগ পালে সাধাৰণতে কি উপহাৰ দিয়া হয়?", + "en_question": "What is the common gift you give when visiting elderly parents in your country?", + "annotations": [ + { + "answers": [ + "কাপোৰ" + ], + "en_answers": [ + "clothes" + ], + "count": 2 + }, + { + "answers": [ + "ভগবানৰ মুৰ্ত্তি" + ], + "en_answers": [ + "idol of god" + ], + "count": 1 + }, + { + "answers": [ + "মূল", + "ফল মূল" + ], + "en_answers": [ + "vegetable" + ], + "count": 1 + }, + { + "answers": [ + "ফল", + "ফল মূল" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + }, + { + "answers": [ + "টকা পইচা" + ], + "en_answers": [ + "money" + ], + "count": 1 + }, + { + "answers": [ + "বিহু ৱান" + ], + "en_answers": [ + "bihu one" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ji-ko-28": { + "question": "অসমত এটা শিশু জন্ম গ্ৰহণ কৰাৰ পিছত মানুহে প্ৰথম কোনটো দিন উদযাপন কৰে?", + "en_question": "When is the first day that people celebrate after a child is born in your country?", + "annotations": [ + { + "answers": [ + "সুদীৰ সকাম", + "এমাহৰ পিচত", + "এক মাহৰ দিনা" + ], + "en_answers": [ + "1 month ceremony", + "1 month", + "after a month", + "days of a month" + ], + "count": 3 + }, + { + "answers": [ + "বাজত উলিওৱা", + "বাহিৰ দেখুওৱা" + ], + "en_answers": [ + "showing outside" + ], + "count": 2 + }, + { + "answers": [ + "অন্নপ্ৰাসন", + "অন্নপ্ৰসন্ন" + ], + "en_answers": [ + "first rice-eating ceremony", + "rice feeding ceremony" + ], + "count": 2 + }, + { + "answers": [ + "শুদ্ধি" + ], + "en_answers": [ + "purity" + ], + "count": 1 + }, + { + "answers": [ + "চিকিসালয়ৰ পৰা ঘৰলে অহা দিনা" + ], + "en_answers": [ + "day of coming home from the hospital" + ], + "count": 1 + }, + { + "answers": [ + "প্ৰথম জন্মদিনৰ দিনা" + ], + "en_answers": [ + "first birthday", + "1 year", + "a year", + "one year" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-29": { + "question": "অসমীয় সমাজত কোন বয়সৰ জন্মদিনটো সবাতোকৈ ধুমধামেৰে পালন কৰা হয়?", + "en_question": "Which age's birthday is celebrated the most grandly in your country's society?", + "annotations": [ + { + "answers": [ + "1", + "এক", + "এক বছৰীয়া বা প্ৰথম জন্মদিন", + "এবছৰীয়া" + ], + "en_answers": [ + "1" + ], + "count": 4 + }, + { + "answers": [ + "25", + "30", + "ত্ৰীচ", + "পঁচিশ বছৰীয়া" + ], + "en_answers": [ + "25", + "30" + ], + "count": 3 + }, + { + "answers": [ + "50" + ], + "en_answers": [ + "50" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-31": { + "question": "অসমত মাধ্যমিক আৰু উচ্চ মাধ্যমিক বিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে সাধাৰণতে পৰীক্ষাৰ বাবে ক'ত অধ্যয়ন কৰে?", + "en_question": "Where do middle and high school students in your country usually study for exams?", + "annotations": [ + { + "answers": [ + "ঘ​ৰত নিজ​ৰ পঢ়া টেবুলত", + "ঘৰ", + "নিজৰ ঘৰত", + "নিজৰ ঘৰ" + ], + "en_answers": [ + "home", + "house", + "at one's own home", + "own home" + ], + "count": 4 + }, + { + "answers": [ + "বিদ্য়াল​য়​ৰ লাইব্ৰেৰীত", + "বিদ্যালয়ৰ পুথিভঁৰাল" + ], + "en_answers": [ + "library", + "school library" + ], + "count": 2 + }, + { + "answers": [ + "স্কুল", + "বিদ্যাল়য়ত" + ], + "en_answers": [ + "school", + "at school" + ], + "count": 2 + }, + { + "answers": [ + "বিচনাত" + ], + "en_answers": [ + "bed" + ], + "count": 1 + }, + { + "answers": [ + "হোস্তেল" + ], + "en_answers": [ + "hostel" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-33": { + "question": "অসমৰ উচ্চ মাধ্যমিক বিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে সাধাৰণতে ৰাতিৰ আহাৰৰ পিছত ক'লৈ যায়?", + "en_question": "Where do high school students in your country usually go after dinner?", + "annotations": [ + { + "answers": [ + "শুবলৈ", + "ঘৰত শুই থাকে" + ], + "en_answers": [ + "sleep", + "sleeps at home" + ], + "count": 2 + }, + { + "answers": [ + "বিচনা", + "বিছনাত" + ], + "en_answers": [ + "bed" + ], + "count": 2 + }, + { + "answers": [ + "খোজকাঢ়িবলৈ" + ], + "en_answers": [ + "walk" + ], + "count": 1 + }, + { + "answers": [ + "পঢ়িবলৈ" + ], + "en_answers": [ + "read" + ], + "count": 1 + }, + { + "answers": [ + "অধ্যয়ন টেবল" + ], + "en_answers": [ + "study table" + ], + "count": 1 + }, + { + "answers": [ + "ঘৰতে থাকে" + ], + "en_answers": [ + "home", + "house" + ], + "count": 1 + }, + { + "answers": [ + "পঢ়া শুনা কৰে" + ], + "en_answers": [ + "study" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-34": { + "question": "অসমত প্ৰাথমিক বিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে কেনেকৈ বিদ্যালয়লৈ যায়?", + "en_question": "How do elementary school students in your country go to school?", + "annotations": [ + { + "answers": [ + "খোজকাঢ়ি", + "খুজ কাঢি়", + "খোজ কাঢ়ি" + ], + "en_answers": [ + "walk" + ], + "count": 3 + }, + { + "answers": [ + "চাইকেল লৈ", + "চাইকেল" + ], + "en_answers": [ + "bicycle" + ], + "count": 2 + }, + { + "answers": [ + "পিতৃ মাতৃৰ লগত", + "অভিভাৱকৰ ব্যক্তিগত বাহনত" + ], + "en_answers": [ + "with parents", + "parent's" + ], + "count": 2 + }, + { + "answers": [ + "স্কুটী" + ], + "en_answers": [ + "scooty" + ], + "count": 1 + }, + { + "answers": [ + "গাড়ী", + "গাঢ়ী" + ], + "en_answers": [ + "horse" + ], + "count": 1 + }, + { + "answers": [ + "বিদ্যালয়ৰ বাছত" + ], + "en_answers": [ + "school bus" + ], + "count": 1 + }, + { + "answers": [ + "ভেনত" + ], + "en_answers": [ + "van" + ], + "count": 1 + }, + { + "answers": [ + "ৰাজহুৱা বাহনত" + ], + "en_answers": [ + "public transport" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-35": { + "question": "অসমত ব্যক্তিগত শিক্ষাৰ আটাইতকৈ সাধাৰণ প্ৰকাৰটো কি?", + "en_question": "What is the most common form of private education in your country?", + "annotations": [ + { + "answers": [ + "ঘৰুৱা শিক্ষা" + ], + "en_answers": [ + "domestic education" + ], + "count": 2 + }, + { + "answers": [ + "পৰীক্ষা" + ], + "en_answers": [ + "exam" + ], + "count": 1 + }, + { + "answers": [ + "ব্যক্তিগত শিক্ষক" + ], + "en_answers": [ + "private tutor" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-36": { + "question": "অসমত মাধ্যমিক বা উচ্চ মাধ্যমিক শ্ৰেণীৰ ছাত্ৰ-ছাত্ৰীসকলে কোন বিষয়ৰ একাডেমি/প্ৰাইভেট শিক্ষানুষ্ঠানত সবাতোকৈ বেছি যায়?", + "en_question": "Which subject’s academy/private educational institute do middle or high students most frequently attend in your country?", + "annotations": [ + { + "answers": [ + "কম্পিউটাৰ" + ], + "en_answers": [ + "computer" + ], + "count": 2 + }, + { + "answers": [ + "কলা শাখাত", + "কলা" + ], + "en_answers": [ + "art", + "arts" + ], + "count": 2 + }, + { + "answers": [ + "বিজ্ঞান বিভাগ" + ], + "en_answers": [ + "science" + ], + "count": 1 + }, + { + "answers": [ + "বিজ্ঞান" + ], + "en_answers": [ + "science" + ], + "count": 1 + }, + { + "answers": [ + "কমাৰ্চ" + ], + "en_answers": [ + "commerce" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-37": { + "question": "অসমত মাধ্যমিক আৰু উচ্চ মাধ্যমিক বিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে বিদ্যালয়লৈ কি ধৰণৰ কাপোৰ পৰিধান কৰে?", + "en_question": "What type of clothing do middle and high school students wear to school in your country?", + "annotations": [ + { + "answers": [ + "ছাৰ্ত", + "ইউনিফৰ্ম (ছাৰ্ত", + "চাৰ্ট", + "চাৰ্ট-পেন্ট আৰু চাৰ্ট-স্কাৰ্ট", + "চাৰ্ট-পেন্ট আৰু চেলোৱাৰ", + "চাৰ্ট-পেন্ট আৰু চাদ​ৰ-মেখেলা", + "চাৰ্ত", + "পেন্ট-চাৰ্ত", + "চাৰ্ট পেণ্ট" + ], + "en_answers": [ + "shirt" + ], + "count": 4 + }, + { + "answers": [ + "পেন্ট", + "চাৰ্ট-পেন্ট আৰু চাৰ্ট-স্কাৰ্ট", + "চাৰ্ট-পেন্ট আৰু চেলোৱাৰ", + "চাৰ্ট-পেন্ট আৰু চাদ​ৰ-মেখেলা", + "পেন্ট-চাৰ্ত", + "পেণ্ট", + "চাৰ্ট পেণ্ট" + ], + "en_answers": [ + "pants" + ], + "count": 3 + }, + { + "answers": [ + "স্কাৰ্ট", + "চাৰ্ট-পেন্ট আৰু চাৰ্ট-স্কাৰ্ট", + "চেলোৱাৰ", + "চাৰ্ট-পেন্ট আৰু চেলোৱাৰ", + "চালৱাৰ" + ], + "en_answers": [ + "skirt", + "salwar", + "shalwar", + "chalwar" + ], + "count": 3 + }, + { + "answers": [ + "ইউনিফৰ্ম", + "ইউনিফৰ্ম (ছাৰ্ত", + "কলেজ পোছাক", + "ইউনিফৰ্ম (চুৰিদাৰ" + ], + "en_answers": [ + "uniform", + "college uniform" + ], + "count": 2 + }, + { + "answers": [ + "চাদ​ৰ-মেখেলা", + "চাৰ্ট-পেন্ট আৰু চাদ​ৰ-মেখেলা", + "চাদৰ মেখেলা" + ], + "en_answers": [ + "mekhela chador", + "sador mekhela" + ], + "count": 2 + }, + { + "answers": [ + "চুৰিদাৰ", + "ইউনিফৰ্ম (চুৰিদাৰ" + ], + "en_answers": [ + "churidar" + ], + "count": 2 + }, + { + "answers": [ + "জোতা মোজা)" + ], + "en_answers": [ + "shoes socks" + ], + "count": 1 + }, + { + "answers": [ + "টাই" + ], + "en_answers": [ + "tie" + ], + "count": 1 + }, + { + "answers": [ + "চেমি ফ্ৰক" + ], + "en_answers": [ + "half shirt" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-38": { + "question": "অসমত কোন বিষয়ত প্ৰৱেশ লাভ কৰা সবাতোকৈ কঠিন বুলি বিবেচিত হয়?", + "en_question": "Which major is considered the most difficult to gain admission to in your country?", + "annotations": [ + { + "answers": [ + "ৰাসায়ন বিজ্ঞান", + "ৰসায়ন বিজ্ঞান" + ], + "en_answers": [ + "chemistry" + ], + "count": 2 + }, + { + "answers": [ + "প্ৰাণীবিজ্ঞান" + ], + "en_answers": [ + "zoology" + ], + "count": 1 + }, + { + "answers": [ + "মেদিকেল" + ], + "en_answers": [ + "medical" + ], + "count": 1 + }, + { + "answers": [ + "বিঞ্জান" + ], + "en_answers": [ + "science" + ], + "count": 1 + }, + { + "answers": [ + "চিকিৎসা বিজ্ঞান" + ], + "en_answers": [ + "medical science" + ], + "count": 1 + }, + { + "answers": [ + "জীৱবিজ্ঞান" + ], + "en_answers": [ + "biology" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-39": { + "question": "অসমৰ প্ৰাথমিক বিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে সৰ্বাধিক জনপ্ৰিয়ভাৱে শিকা সংগীত বাদ্যযন্ত্ৰটো কি?", + "en_question": "What is the most commonly learned musical instrument by elementary school students in your country?", + "annotations": [ + { + "answers": [ + "তবলা", + "টবলা" + ], + "en_answers": [ + "tabla" + ], + "count": 3 + }, + { + "answers": [ + "হাৰ্মনিয়াম", + "হাৰমনিয়াম", + "হাৰমণিয়াম" + ], + "en_answers": [ + "harmonium" + ], + "count": 3 + }, + { + "answers": [ + "ঢোল", + "ধোল", + "ধূল" + ], + "en_answers": [ + "dhol" + ], + "count": 3 + }, + { + "answers": [ + "তাল" + ], + "en_answers": [ + "taal" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-40": { + "question": "অসমৰ বিদ্যালয়সমূহৰ বিৰতিৰ সময়ত উচ্চ মাধ্যমিক বিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে সাধাৰণতে কি কৰে?", + "en_question": "What do high school students typically do during break time in schools in your country?", + "annotations": [ + { + "answers": [ + "বাহিৰত খাবলৈ যায়", + "খানা খুৱা", + "জলপান খায়" + ], + "en_answers": [ + "eat" + ], + "count": 3 + }, + { + "answers": [ + "খেলা ধুলা", + "খেলা ধূলা কৰে" + ], + "en_answers": [ + "sports", + "plays sports" + ], + "count": 2 + }, + { + "answers": [ + "কিতাপ পঢ়ে", + "বিষয়/বাহিৰা কিতাপ পঢ়ে" + ], + "en_answers": [ + "read" + ], + "count": 2 + }, + { + "answers": [ + "টিফিন খায়" + ], + "en_answers": [ + "eats tiffin" + ], + "count": 1 + }, + { + "answers": [ + "খেল খেলে" + ], + "en_answers": [ + "play games" + ], + "count": 1 + }, + { + "answers": [ + "গান গায়" + ], + "en_answers": [ + "sing" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-41": { + "question": "অসমৰ বিদ্যালয়সমূহত ছাত্ৰ-ছাত্ৰীসকলে কি ধৰণৰ জোতা পিন্ধে?", + "en_question": "What kind of shoes do students wear in schools in your country?", + "annotations": [ + { + "answers": [ + "কলা ৰঙৰ ফৰ্মেল জোতা", + "ক'লা ফৰমেল জোতা", + "ক'লা জোতা" + ], + "en_answers": [ + "black colored formal shoes", + "black formal shoes", + "black shoes" + ], + "count": 3 + }, + { + "answers": [ + "ফৰমেল জোতা" + ], + "en_answers": [ + "formal shoes" + ], + "count": 1 + }, + { + "answers": [ + "চেন্দেল" + ], + "en_answers": [ + "slipper" + ], + "count": 1 + }, + { + "answers": [ + "চামৰাৰ" + ], + "en_answers": [ + "leather" + ], + "count": 1 + }, + { + "answers": [ + "বগা ফৰমেল জোতা", + "কলা ৰঙৰ ফৰ্মেল জোতা" + ], + "en_answers": [ + "white formal shoes" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-42": { + "question": "অসমৰ বিশ্ববিদ্যালয় প্ৰৱেশ পৰীক্ষাত কি কি বিষয় অনিবাৰ্য?", + "en_question": "What are the required subjects in your country's university entrance exam?", + "annotations": [ + { + "answers": [ + "বিজ্ঞান" + ], + "en_answers": [ + "science" + ], + "count": 3 + }, + { + "answers": [ + "গণিত" + ], + "en_answers": [ + "mathematics", + "maths", + "math" + ], + "count": 1 + }, + { + "answers": [ + "সাধাৰণ জ্ঞান" + ], + "en_answers": [ + "general knowledge" + ], + "count": 1 + }, + { + "answers": [ + "গনিত" + ], + "en_answers": [ + "mathematics", + "maths", + "math" + ], + "count": 1 + }, + { + "answers": [ + "ৰাসায়ন বিজ্ঞান" + ], + "en_answers": [ + "chemistry" + ], + "count": 1 + }, + { + "answers": [ + "বায়লজী" + ], + "en_answers": [ + "biology" + ], + "count": 1 + }, + { + "answers": [ + "কলা" + ], + "en_answers": [ + "art" + ], + "count": 1 + }, + { + "answers": [ + "মেজৰ", + "মেজৰ/ সন্মানীয় বিষয়" + ], + "en_answers": [ + "major" + ], + "count": 1 + }, + { + "answers": [ + "সন্মানীয় বিষয়", + "মেজৰ/ সন্মানীয় বিষয়" + ], + "en_answers": [ + "honorable subject" + ], + "count": 1 + }, + { + "answers": [ + "ইংৰাজী" + ], + "en_answers": [ + "english" + ], + "count": 1 + }, + { + "answers": [ + "সাধাৰণ বুদ্ধিমত্তাৰ পৰীক্ষা" + ], + "en_answers": [ + "general intelligence test" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-44": { + "question": "অসমৰ কোন চহৰৰ (চহৰৰ ভিতৰত) অঞ্চলত শিক্ষাগত উৎসাহ সৰ্বাধিক?", + "en_question": "Which region (within a city) in your country has the highest academic fervor?", + "annotations": [ + { + "answers": [ + "যোৰহাট" + ], + "en_answers": [ + "jorhat" + ], + "count": 4 + }, + { + "answers": [ + "গুৱাহাটী" + ], + "en_answers": [ + "guwahati" + ], + "count": 4 + }, + { + "answers": [ + "ডিব্ৰুগড়", + "ডিব্ৰুগড়" + ], + "en_answers": [ + "dibrugarh" + ], + "count": 2 + }, + { + "answers": [ + "পাটছালা" + ], + "en_answers": [ + "school" + ], + "count": 1 + }, + { + "answers": [ + "কামৰূপ" + ], + "en_answers": [ + "kamrup" + ], + "count": 1 + }, + { + "answers": [ + "শিৱসাগৰ" + ], + "en_answers": [ + "sivasagar" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-45": { + "question": "অসমৰ বিশ্ববিদ্যালয়ৰ উৎসৱসমূহক লৈ মানুহে সকলোতকৈ বেছি কি আশা কৰে?", + "en_question": "What do people look forward to the most at university festivals in your country?", + "annotations": [ + { + "answers": [ + "মনোৰঞ্জন" + ], + "en_answers": [ + "entertainment" + ], + "count": 2 + }, + { + "answers": [ + "এজন দক্ষ নাগৰীক" + ], + "en_answers": [ + "one skilled citizen" + ], + "count": 1 + }, + { + "answers": [ + "সৎ সাহক্ষী নাগৰীক" + ], + "en_answers": [ + "honest witness citizen" + ], + "count": 1 + }, + { + "answers": [ + "চাহ" + ], + "en_answers": [ + "tea" + ], + "count": 1 + }, + { + "answers": [ + "অন্যান্য বিভাগৰ ছাত্ৰ ছাত্ৰীৰ লগত বন্ধত্ব গঢ়া" + ], + "en_answers": [ + "building friendship with students from other departments" + ], + "count": 1 + }, + { + "answers": [ + "পঢ়াৰ লগতে অন্যান্য প্ৰতিভা প্ৰদৰ্শন কৰিবলৈ সুবিধা পোৱা" + ], + "en_answers": [ + "opportunity to showcase other talents along with studies" + ], + "count": 1 + }, + { + "answers": [ + "উৎসৱমমূখৰ পৰিবেশৰ আনন্দ লোৱা" + ], + "en_answers": [ + "enjoy the festive atmosphere" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-01": { + "question": "অসমত দ্বিতীয় সৰ্বাধিক জনপ্ৰিয় ক্ৰীড়া কি?", + "en_question": "What is the second most popular sport in your country?", + "annotations": [ + { + "answers": [ + "ক্ৰিকেট" + ], + "en_answers": [ + "cricket" + ], + "count": 2 + }, + { + "answers": [ + "কাবাডী" + ], + "en_answers": [ + "kabaddi" + ], + "count": 2 + }, + { + "answers": [ + "ফুটবল" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "চেচ" + ], + "en_answers": [ + "chess" + ], + "count": 1 + }, + { + "answers": [ + "দৌৰ", + "দ'ৰ" + ], + "en_answers": [ + "race", + "running" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-02": { + "question": "অসমত বল অবিহনে খেলা সবাতোকৈ জনপ্ৰিয় ক্ৰীড়াটো কি?", + "en_question": "What is the most popular sport played without a ball in your country?", + "annotations": [ + { + "answers": [ + "কাবাডী" + ], + "en_answers": [ + "kabaddi" + ], + "count": 3 + }, + { + "answers": [ + "বেডমিন্টন" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "বক্সিং" + ], + "en_answers": [ + "boxing" + ], + "count": 1 + }, + { + "answers": [ + "চেচ" + ], + "en_answers": [ + "chess" + ], + "count": 1 + }, + { + "answers": [ + "দৌৰ", + "দ'ৰ" + ], + "en_answers": [ + "race", + "running" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-09": { + "question": "অসমত উচ্চ শ্ৰেণীৰ লোকসকলে কোন কোন খেলসমূহ অধিক জড়িত হৈ আছে?", + "en_question": "What sports are most associated with the upper class in your country?", + "annotations": [ + { + "answers": [ + "গল্ফ", + "গলফ" + ], + "en_answers": [ + "golf" + ], + "count": 2 + }, + { + "answers": [ + "ক্ৰিকেট", + "কৃকেট" + ], + "en_answers": [ + "cricket" + ], + "count": 2 + }, + { + "answers": [ + "হকি" + ], + "en_answers": [ + "hockey" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-13": { + "question": "অসমত কি সবাতোকৈ জনপ্ৰিয় জলক্ৰীড়া কি?", + "en_question": "What is the most popular water sport in your country?", + "annotations": [ + { + "answers": [ + "সাঁতোৰ", + "সাতোৰ", + "খাতুৰা" + ], + "en_answers": [ + "swim", + "swimming" + ], + "count": 4 + }, + { + "answers": [ + "নাওখেল" + ], + "en_answers": [ + "boat race" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-14": { + "question": "অসমত সবাতোকৈ জনপ্ৰিয় মানসিক ক্ৰীড়াটো কি?", + "en_question": "What is the most popular mental sport in your country?", + "annotations": [ + { + "answers": [ + "দবা খেল", + "দবা", + "চেছ", + "ডবা" + ], + "en_answers": [ + "chess game", + "chess" + ], + "count": 4 + }, + { + "answers": [ + "তাচ পাত" + ], + "en_answers": [ + "cards", + "card game" + ], + "count": 1 + }, + { + "answers": [ + "মল্ল যুদ্ধ", + "মল যুদ্ধ" + ], + "en_answers": [ + "wrestling" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-18": { + "question": "অসমত এজন প্ৰমাণিত কৰ্মচাৰীয়ে বছৰত কিমান ছুটিৰ দিন পায়? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)", + "en_question": "How many holiday days per year does a standard worker gets in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 5 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-19": { + "question": "অসমৰ কোন অঞ্চলটো পৰম্পৰাগতভাৱে কৃষিকৰ্মৰ সৈতে জড়িত?", + "en_question": "What region in your country has been traditionally associated with agriculture?", + "annotations": [ + { + "answers": [ + "সমগ্ৰ অসম", + "সৰ্বব্যাপি অসম", + "সকলো অঞ্চল" + ], + "en_answers": [ + "entire assam", + "entire", + "assam", + "all regions" + ], + "count": 4 + }, + { + "answers": [ + "শিৱসাগৰ" + ], + "en_answers": [ + "sivasagar" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-21": { + "question": "অসমত মানুহে সাধাৰণতে কিমান সময়ত দুপৰীয়া খোৱাৰ বাবে কামৰ পৰা ওলাই যায়? (HH:MM ফৰ্মেটত প্ৰদান কৰক (যেনে, 18:00, 09:00)).", + "en_question": "What time, if any, do people usually leave work for lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "14:00", + "02:00" + ], + "en_answers": [ + "14:00" + ], + "count": 3 + }, + { + "answers": [ + "13:00", + "01:00" + ], + "en_answers": [ + "13:00" + ], + "count": 3 + }, + { + "answers": [ + "14:30" + ], + "en_answers": [ + "14:30" + ], + "count": 1 + }, + { + "answers": [ + "12:30" + ], + "en_answers": [ + "12:30" + ], + "count": 1 + }, + { + "answers": [ + "13:30" + ], + "en_answers": [ + "13:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-31": { + "question": "অসমত উচ্চ মাধ্যমিক বিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে কেতিয়া বিদ্যালয় ত্যাগ কৰে? (HH:MM ফৰ্মেটত প্ৰদান কৰক (যেনে, 18:00, 09:00)।)", + "en_question": "What time do high school students tend to leave school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "14:30" + ], + "en_answers": [ + "14:30" + ], + "count": 2 + }, + { + "answers": [ + "16:00", + "04:00" + ], + "en_answers": [ + "16:00" + ], + "count": 2 + }, + { + "answers": [ + "15:00", + "03:00" + ], + "en_answers": [ + "15:00" + ], + "count": 2 + }, + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 1 + }, + { + "answers": [ + "14:15" + ], + "en_answers": [ + "14:15" + ], + "count": 1 + }, + { + "answers": [ + "15:30" + ], + "en_answers": [ + "15:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-32": { + "question": "অসমত প্ৰাথমিক বিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে বিদ্যালয়ত কি ক্ৰীড়া অনুশীলন কৰে?", + "en_question": "What sport do elementary school students tend to practice at school in your country?", + "annotations": [ + { + "answers": [ + "দৌৰ" + ], + "en_answers": [ + "race", + "running" + ], + "count": 2 + }, + { + "answers": [ + "কাবাডী" + ], + "en_answers": [ + "kabaddi" + ], + "count": 2 + }, + { + "answers": [ + "লুকা ভাকু" + ], + "en_answers": [ + "hide and seek" + ], + "count": 2 + }, + { + "answers": [ + "ক্ৰিকেত" + ], + "en_answers": [ + "cricket" + ], + "count": 1 + }, + { + "answers": [ + "চকী দ'ৰ" + ], + "en_answers": [ + "musical chair" + ], + "count": 1 + }, + { + "answers": [ + "দৌৰ", + "দ'ৰ" + ], + "en_answers": [ + "race", + "running" + ], + "count": 1 + }, + { + "answers": [ + "শৰীৰিক ব্যায়াম" + ], + "en_answers": [ + "physical exercise" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-36": { + "question": "অসমৰ প্ৰাথমিক বিদ্যালয়সমূহৰ গ্ৰীষ্ম বন্ধৰ সময়কাল (সপ্তাহত) কিমান? (কেৱল আৰবী সংখ্যা (যেনে, 7, 8) প্ৰদান কৰক।)", + "en_question": "How long (in weeks) are summer vacations at elementary schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 3 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-37": { + "question": "অসমৰ বিশ্ববিদ্যালয়সমূহৰ গ্ৰীষ্মকালীন বন্ধসমূহ কিমান সপ্তাহ সময়জোৰা হয়? (কেৱল আৰবী সংখ্যা (যেনে, 7, 8) প্ৰদান কৰক।)", + "en_question": "How long (in weeks) are summer vacations at universities in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 5 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-39": { + "question": "অসমত প্ৰাথমিক শিক্ষা কিমান বয়সত আৰম্ভ হয়? (কেৱল আৰবী সংখ্যা (যেনে, 7, 8) প্ৰদান কৰক।)", + "en_question": "At what age does elementary education begin in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 4 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 2 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 2 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-43": { + "question": "অসমৰ চৰকাৰী ভাষাৰ উপৰিও প্ৰাথমিক শিক্ষাত কিমানটা ভাষা অধ্যয়ন কৰা হয়? (কেৱল আৰবী সংখ্যা (যেনে, 7, 8) প্ৰদান কৰক।)", + "en_question": "How many languages are studied in elementary education besides your country's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 3 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-01": { + "question": "অসমত মানুহে সাধাৰণতে কি বাচন-বর্তন ব্যৱহাৰ কৰে?", + "en_question": "What eating utensils do people commonly used in your country?", + "annotations": [ + { + "answers": [ + "কাহৰ", + "কাঁহৰ বাচন-বর্তন", + "কাঁহ", + "কাঁহৰ কাঁহী বাতি" + ], + "en_answers": [ + "bronze", + "bronze utensils", + "bell metal" + ], + "count": 5 + }, + { + "answers": [ + "পিতল", + "পিতলৰ বাচন-বর্তন", + "পিতলৰ টৌ" + ], + "en_answers": [ + "brass", + "brass utensils", + "brass plate" + ], + "count": 4 + }, + { + "answers": [ + "ষ্টিলৰ বাচন-বর্তন", + "ষ্টীল", + "ষ্টিল", + "মাটি/ষ্টিল" + ], + "en_answers": [ + "steel utensils", + "steel" + ], + "count": 3 + }, + { + "answers": [ + "মাটি", + "মাটি/ষ্টিল", + "মাটিৰ বাচন বৰ্তন" + ], + "en_answers": [ + "earthen", + "soil", + "earthen utensils" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-04": { + "question": "অসমীয়া লোকে কি ধৰণৰ শীতল পানীয় পছন্দ কৰে?", + "en_question": "What soft drink do people in your country like to have?", + "annotations": [ + { + "answers": [ + "নেমু চৰ্বত", + "নেমু পানী", + "নেমু চৰবত", + "নেমু চৰৰ্বত", + "নেমুটেঙাৰ চৰবত" + ], + "en_answers": [ + "lemonade", + "lemon water" + ], + "count": 5 + }, + { + "answers": [ + "তেতেলী চৰ্বত" + ], + "en_answers": [ + "tamarind juice" + ], + "count": 1 + }, + { + "answers": [ + "থেকেৰা চৰ্বত" + ], + "en_answers": [ + "thekera tenga juice" + ], + "count": 1 + }, + { + "answers": [ + "নাৰিকল পানী" + ], + "en_answers": [ + "coconut water" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-06": { + "question": "অসমত সবাতোকৈ জনপ্ৰিয় পাৰম্পৰিক সুৰা কি?", + "en_question": "What is the most popular traditional alcohol in your country?", + "annotations": [ + { + "answers": [ + "সাঁজ", + "সাজ" + ], + "en_answers": [ + "rice liquor" + ], + "count": 4 + }, + { + "answers": [ + "ছাইমদ", + "চাই মদ" + ], + "en_answers": [ + "ash wine" + ], + "count": 2 + }, + { + "answers": [ + "ৰহী" + ], + "en_answers": [ + "rahi" + ], + "count": 1 + }, + { + "answers": [ + "লাও পানী" + ], + "en_answers": [ + "bottle gourd water" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-07": { + "question": "অসমত মানুহে গড়ে কিমান সময় (ঘণ্টাত) ৰেষ্টুৰেণ্টত ডিনাৰ কৰিবলৈ লয়? (কেৱল আৰবী সংখ্যা এটা দশমিক বিন্দুলৈকে প্ৰদান কৰক (যেনে, 2, 3.5)।)", + "en_question": "How long (in hours) on average does it take for people in your country to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 3 + }, + { + "answers": [ + "2.5" + ], + "en_answers": [ + "2.5" + ], + "count": 2 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 1 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-09": { + "question": "অসমত মানুহে সাধাৰণতে কি সময়ত ৰাতিপুৱাৰ আহাৰ গ্ৰহণ কৰে? (HH:MM ফৰ্মেটত প্ৰদান কৰক (যেনে, 18:00, 09:00)।)", + "en_question": "What time do people usually have dinner in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 4 + }, + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 3 + }, + { + "answers": [ + "08:30" + ], + "en_answers": [ + "08:30" + ], + "count": 2 + }, + { + "answers": [ + "07:00" + ], + "en_answers": [ + "07:00" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-12": { + "question": "অসমীয় লোকে কি ধৰণৰ ছু’প খাবলৈ পছন্দ কৰে?", + "en_question": "What kind of soup do people from your country like to have?", + "annotations": [ + { + "answers": [ + "শাক-পাছলিৰ ছু’প", + "বিলাহী চুপ" + ], + "en_answers": [ + "vegetable soup", + "tomato soup" + ], + "count": 2 + }, + { + "answers": [ + "চিকেন ছুপ", + "মূৰ্গী মাংসৰ চুপ" + ], + "en_answers": [ + "chicken soup" + ], + "count": 2 + }, + { + "answers": [ + "মাংসৰ ছু’প" + ], + "en_answers": [ + "meat soup" + ], + "count": 1 + }, + { + "answers": [ + "শাক পাচলি চুপ" + ], + "en_answers": [ + "vegetable soup" + ], + "count": 1 + }, + { + "answers": [ + "কলডিল পাৰ মাংসৰ" + ], + "en_answers": [ + "pigeon with banana flower", + "pigeon meat with banana flower" + ], + "count": 1 + }, + { + "answers": [ + "ছাগলী ঠেঙৰ" + ], + "en_answers": [ + "goat leg" + ], + "count": 1 + }, + { + "answers": [ + "বন্ধাকবিৰ" + ], + "en_answers": [ + "cauliflower" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-13": { + "question": "অসমীয় লোকে সাধাৰণতে কি ধৰণৰ ৰাস্তাৰ খাদ্য খোৱা পছন্দ কৰে?", + "en_question": "What street food do people from your country like to eat?", + "annotations": [ + { + "answers": [ + "ফুচকা" + ], + "en_answers": [ + "panipuri", + "pani puri" + ], + "count": 4 + }, + { + "answers": [ + "ম'ম'", + "মমৈ" + ], + "en_answers": [ + "dumpling" + ], + "count": 4 + }, + { + "answers": [ + "চাহ" + ], + "en_answers": [ + "tea" + ], + "count": 1 + }, + { + "answers": [ + "ফলৰ জুছ" + ], + "en_answers": [ + "fruit juice" + ], + "count": 1 + }, + { + "answers": [ + "চানা ভাজা" + ], + "en_answers": [ + "fried chickpeas" + ], + "count": 1 + }, + { + "answers": [ + "কুঁহিয়াৰৰ ৰস" + ], + "en_answers": [ + "cucumber juice" + ], + "count": 1 + }, + { + "answers": [ + "কেঁচা চানা" + ], + "en_answers": [ + "kachcha chana", + "kacha chana" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-15": { + "question": "অসমৰ মানুহে কি ধৰণৰ সামুদ্ৰিক খাদ্য খোৱা পছন্দ কৰে?", + "en_question": "What kind of seafood do people from your country like to eat?", + "annotations": [ + { + "answers": [ + "শামুক" + ], + "en_answers": [ + "snail" + ], + "count": 2 + }, + { + "answers": [ + "টিন ফিছ" + ], + "en_answers": [ + "tin fish" + ], + "count": 1 + }, + { + "answers": [ + "গৰৈ মাছ পুৰা" + ], + "en_answers": [ + "garai fish", + "goroi fish" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Jod-ch-16": { + "question": "অসমৰ আটাইতকৈ ডাঙৰ উৎসৱটো কি?", + "en_question": "What is the biggest festival in your country?", + "annotations": [ + { + "answers": [ + "বিহু" + ], + "en_answers": [ + "bihu" + ], + "count": 5 + }, + { + "answers": [ + "হোলী" + ], + "en_answers": [ + "holi" + ], + "count": 1 + }, + { + "answers": [ + "দিৱালী" + ], + "en_answers": [ + "diwali" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-28": { + "question": "অসমত চহৰৰ মাজত যাত্ৰা কৰা সময়ত মানুহে সৰ্বাধিক ব্যৱহাৰ কৰা জনপ্ৰিয় পৰিবহন সাধনটো কি?", + "en_question": "What is the most commonly used public transport by people when travelling between cites in your country?", + "annotations": [ + { + "answers": [ + "কাৰ", + "গাডী়", + "ব্যক্তিগত বাহন" + ], + "en_answers": [ + "car", + "private vehicle" + ], + "count": 3 + }, + { + "answers": [ + "বাইক" + ], + "en_answers": [ + "bike" + ], + "count": 2 + }, + { + "answers": [ + "স্কুটি", + "স্কুটী" + ], + "en_answers": [ + "scooty" + ], + "count": 2 + }, + { + "answers": [ + "ৰিক্সা" + ], + "en_answers": [ + "rickshaw" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-30": { + "question": "অসমৰ আটাইতকৈ ডাঙৰ উৎসৱটোৰ সৈতে জড়িত বিশেষ অলংকাৰ বা প্ৰতীকসমূহ কি কি?", + "en_question": "What are the specific decorations or symbols associated with the most biggest festival in your country?", + "annotations": [ + { + "answers": [ + "ঢোল", + "ধোল" + ], + "en_answers": [ + "dhol" + ], + "count": 3 + }, + { + "answers": [ + "জাপি" + ], + "en_answers": [ + "traditional hat" + ], + "count": 2 + }, + { + "answers": [ + "মুগাৰ সাজ", + "মুগা- সাজ" + ], + "en_answers": [ + "muga attire" + ], + "count": 2 + }, + { + "answers": [ + "পেপা" + ], + "en_answers": [ + "flute" + ], + "count": 1 + }, + { + "answers": [ + "গগনা" + ], + "en_answers": [ + "necklace" + ], + "count": 1 + }, + { + "answers": [ + "গাম খাৰু" + ], + "en_answers": [ + "gam kharu" + ], + "count": 1 + }, + { + "answers": [ + "ঢোলবিৰি" + ], + "en_answers": [ + "dholbiri" + ], + "count": 1 + }, + { + "answers": [ + "গগণা" + ], + "en_answers": [ + "jaw harp" + ], + "count": 1 + }, + { + "answers": [ + "কপৌফুল" + ], + "en_answers": [ + "foxtail orchid" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-37": { + "question": "অসমত মহিলাসকলে কি ক্ৰীড়া প্ৰতিযোগিতা সবাতোকৈ বেছি চাব পছন্দ কৰে?", + "en_question": "What sports do women like to watch the most in your country?", + "annotations": [ + { + "answers": [ + "ফুটবল" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "ক্ৰিকেট", + "কৃকেট" + ], + "en_answers": [ + "cricket" + ], + "count": 2 + }, + { + "answers": [ + "খো-খো" + ], + "en_answers": [ + "kho-kho" + ], + "count": 1 + }, + { + "answers": [ + "কাবাডী" + ], + "en_answers": [ + "kabaddi" + ], + "count": 1 + }, + { + "answers": [ + "বক্সীং" + ], + "en_answers": [ + "boxing" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-38": { + "question": "অসমত পুৰুষসকলে কি ক্ৰীড়া সবাতোকৈ বেছি চাব পছন্দ কৰে?", + "en_question": "What sports do men like to watch the most in your country?", + "annotations": [ + { + "answers": [ + "ক্ৰিকেট", + "ক্ৰীকেত", + "কৃকেট" + ], + "en_answers": [ + "cricket" + ], + "count": 5 + }, + { + "answers": [ + "ফুটবল" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "কাবাডী" + ], + "en_answers": [ + "kabaddi" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-41": { + "question": "অসমত বিশ বছৰীয়া মহিলাসকলে কি সাধাৰণ অৱসৰ কাৰ্যকলাপত অংশগ্ৰহণ কৰে?", + "en_question": "What is the common leisure activity that females in their 20s in your country engage in?", + "annotations": [ + { + "answers": [ + "চিলাই ক​ৰে", + "চিলাই কৰে" + ], + "en_answers": [ + "sewing" + ], + "count": 2 + }, + { + "answers": [ + "তাঁত ব​য়​", + "তাঁতশাল" + ], + "en_answers": [ + "weaver", + "weaving mill" + ], + "count": 2 + }, + { + "answers": [ + "খোজ কাঢা়" + ], + "en_answers": [ + "walk" + ], + "count": 1 + }, + { + "answers": [ + "লগৰীয়াৰ লগত চিনেমা চাবলৈ যোৱা" + ], + "en_answers": [ + "watch movies" + ], + "count": 1 + }, + { + "answers": [ + "লগৰীয়াৰ ঘৰলে যোৱা" + ], + "en_answers": [ + "friend's house" + ], + "count": 1 + }, + { + "answers": [ + "লগৰীয়াৰ লগত ৰেস্তোৰাঁত আহাৰ গ্ৰহন কৰা" + ], + "en_answers": [ + "restaurant" + ], + "count": 1 + }, + { + "answers": [ + "খেলা ধূলা" + ], + "en_answers": [ + "sports" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 1 + } + }, + "Jod-ch-42": { + "question": "অসমত বিশ বছৰীয়া পুৰুষসকলে কি সাধাৰণ অৱসৰ কাৰ্যকলাপত লিপ্ত হয়?", + "en_question": "What is the common leisure activity that males in their 20s in your country engage in?", + "annotations": [ + { + "answers": [ + "খেলা ধুলা ক​ৰে", + "খেলা ধূলা" + ], + "en_answers": [ + "plays sports", + "sports" + ], + "count": 2 + }, + { + "answers": [ + "চাহ খুৱা" + ], + "en_answers": [ + "drinking tea" + ], + "count": 1 + }, + { + "answers": [ + "সমাজ সেৱা" + ], + "en_answers": [ + "social service" + ], + "count": 1 + }, + { + "answers": [ + "লগৰীয়াৰ লগত চিনেমা চাবলৈ যোৱা" + ], + "en_answers": [ + "watch movies" + ], + "count": 1 + }, + { + "answers": [ + "লগৰীয়াৰ লগত ক্ৰিকেট খেলা" + ], + "en_answers": [ + "cricket" + ], + "count": 1 + }, + { + "answers": [ + "শাৰিৰীক অনুশীলন" + ], + "en_answers": [ + "physical exercise" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-46": { + "question": "অসমত সাধাৰণতে লোকে সপ্তাহৰ কৰ্মদিনত দুপৰীয়া আহাৰৰ পিছত কিমান সময় (ঘণ্টাত) বিৰতি লয়? (কেৱল আৰবী সংখ্যা এটা দশমিক বিন্দু পৰ্যন্ত (যেনে, 2, 3.5) প্ৰদান কৰক।)", + "en_question": "How long (in hours) do people usually take a break after lunch on a weekday in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 3 + }, + { + "answers": [ + "0.5", + "০:৫" + ], + "en_answers": [ + "0:5", + "0.5" + ], + "count": 2 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "2.5" + ], + "en_answers": [ + "2.5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-48": { + "question": "অসমত কৰ্মদিৱসত লোকে দুপৰীয়াৰ আহাৰ হিচাপে কি খায়?", + "en_question": "What do people eat for lunch during the working days in your country?", + "annotations": [ + { + "answers": [ + "ভাত" + ], + "en_answers": [ + "rice" + ], + "count": 4 + }, + { + "answers": [ + "ৰুটি-ভাজি", + "ৰুটি ভাঁজি" + ], + "en_answers": [ + "puri vaji", + "fried roti", + "flatbread and vegetable fries" + ], + "count": 2 + }, + { + "answers": [ + "জলপান" + ], + "en_answers": [ + "snacks" + ], + "count": 1 + }, + { + "answers": [ + "দালী ভাত" + ], + "en_answers": [ + "lentil rice" + ], + "count": 1 + }, + { + "answers": [ + "মাংস ভাত", + "মাংশ ভাত" + ], + "en_answers": [ + "meat rice" + ], + "count": 1 + }, + { + "answers": [ + "ৰুটি" + ], + "en_answers": [ + "bread" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-50": { + "question": "অসমত মানুহে গড় ভ্ৰমণ সময় (মিনিটত) কিমান? (কেৱল আৰবী সংখ্যা (যেনে, 1) প্ৰদান কৰক।)", + "en_question": "What is the average commute time (in minutes) for people in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 3 + }, + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + }, + { + "answers": [ + "45" + ], + "en_answers": [ + "45" + ], + "count": 1 + }, + { + "answers": [ + "50" + ], + "en_answers": [ + "50" + ], + "count": 1 + }, + { + "answers": [ + "70" + ], + "en_answers": [ + "70" + ], + "count": 1 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + }, + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-51": { + "question": "অসমত লোকে কামলৈ যাবলৈ সকলোতকৈ ব্যবহৃত পৰিবহন কি?", + "en_question": "What is the most common transportation that people take to get to work in your country?", + "annotations": [ + { + "answers": [ + "ব্যক্তিগত বাহন", + "গাডী়" + ], + "en_answers": [ + "private vehicle", + "car" + ], + "count": 3 + }, + { + "answers": [ + "বাইক" + ], + "en_answers": [ + "bike" + ], + "count": 2 + }, + { + "answers": [ + "স্কুটি", + "স্কুটী" + ], + "en_answers": [ + "scooty" + ], + "count": 2 + }, + { + "answers": [ + "টেমপো", + "বাছ", + "ৰাজহুৱা বাহন" + ], + "en_answers": [ + "tempo", + "bus", + "public transport" + ], + "count": 2 + }, + { + "answers": [ + "চাইকেল" + ], + "en_answers": [ + "bicycle" + ], + "count": 1 + }, + { + "answers": [ + "গাডী়", + "গাঢ়ী" + ], + "en_answers": [ + "horse" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-54": { + "question": "অসমত বিবাহজনিত ছুটীৰৰ সময়কাল (দিনত) কিমান? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)", + "en_question": "How long (in days) is the marriage leave in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 2 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 2 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Jod-ch-56": { + "question": "অসমত মহিলাৰ সাধাৰণ অৱসৰৰ বয়স কিমান? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)", + "en_question": "What is the typical retirement age for women in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 5 + }, + { + "answers": [ + "65" + ], + "en_answers": [ + "65" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-57": { + "question": "অসমত পুৰুষৰ সাধাৰণ অৱসৰৰ বয়স কিমান? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)", + "en_question": "What is the typical retirement age for men in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 5 + }, + { + "answers": [ + "65" + ], + "en_answers": [ + "65" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-58": { + "question": "অসমত কোন পেচাটো সবাতোকৈ সন্মানীয়?", + "en_question": "Which profession is the most respected in your country?", + "annotations": [ + { + "answers": [ + "শিক্ষক" + ], + "en_answers": [ + "teacher" + ], + "count": 4 + }, + { + "answers": [ + "ডাক্ত​ৰ", + "ডক্তৰ", + "চিকিৎসক", + "ডাক্তৰ" + ], + "en_answers": [ + "doctor" + ], + "count": 4 + }, + { + "answers": [ + "অভিযন্তা" + ], + "en_answers": [ + "engineer" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-60": { + "question": "অসমত এটা সাধাৰণ কৰ্মদিনৰ সময়কাল (ঘণ্টাত) কিমান? (কেৱল আৰবী সংখ্যা (0~24) প্ৰদান কৰক।)", + "en_question": "What is the duration (in hours) of a typical workday in your country? (Provide Arabic numerals (0~24) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 4 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-61": { + "question": "অসমত মহিলাৰ মাজত কোনটো পেচা সবাতোকৈ অধিক জনপ্ৰিয়?", + "en_question": "Which occupation is most preferred among females in your country?", + "annotations": [ + { + "answers": [ + "শিক্ষক", + "শিক্ষয়িত্ৰী", + "শিক্ষকতা" + ], + "en_answers": [ + "teacher", + "teaching" + ], + "count": 4 + }, + { + "answers": [ + "ডক্তৰ", + "চিকিৎসক" + ], + "en_answers": [ + "doctor" + ], + "count": 2 + }, + { + "answers": [ + "ব্যৱসায়", + "ব্য়ৱসায়​" + ], + "en_answers": [ + "business" + ], + "count": 1 + }, + { + "answers": [ + "চিলাই" + ], + "en_answers": [ + "weaving" + ], + "count": 1 + }, + { + "answers": [ + "বিমানসেৱিকা" + ], + "en_answers": [ + "air hostess" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-62": { + "question": "অসমত পুৰুষসকলৰ মাজত কোনটো পেচা সবাতোকৈ জনপ্ৰিয়?", + "en_question": "Which occupation is most preferred among males in your country?", + "annotations": [ + { + "answers": [ + "শিক্ষক" + ], + "en_answers": [ + "teacher" + ], + "count": 2 + }, + { + "answers": [ + "অভিযন্তা" + ], + "en_answers": [ + "engineer" + ], + "count": 2 + }, + { + "answers": [ + "ডক্তৰ", + "চিকিৎসক" + ], + "en_answers": [ + "doctor" + ], + "count": 2 + }, + { + "answers": [ + "খেতি-বাতি" + ], + "en_answers": [ + "agriculture and household" + ], + "count": 1 + }, + { + "answers": [ + "ব্যৱসায়", + "ব্য়ৱসায়​" + ], + "en_answers": [ + "business" + ], + "count": 1 + }, + { + "answers": [ + "যিকোনো চৰকাৰী চাকৰী" + ], + "en_answers": [ + "any government job" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-17": { + "question": "গড়েই, অসমত ছাত্ৰ-ছাত্ৰীসকলে সাধাৰণতে কিমান দূৰলৈ তেওঁলোকৰ শিক্ষা অনুসৰণ কৰে? (যেনে, প্ৰাথমিক, উচ্চ মাধ্যমিক বিদ্যালয়)", + "en_question": "On average, how far do students typically pursue their education in your country? (e.g., elementary, high school)", + "annotations": [ + { + "answers": [ + "স্নাতক" + ], + "en_answers": [ + "graduate" + ], + "count": 3 + }, + { + "answers": [ + "স্নাতকোত্তৰ" + ], + "en_answers": [ + "postgraduate" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-24": { + "question": "অসমৰ বিদ্যালয়সমূহত ইংৰাজীৰ উপৰিও আন কোন ভাষা শিক্ষা দিয়া হয়?", + "en_question": "What language is taught in schools in your country besides English?", + "annotations": [ + { + "answers": [ + "হিন্দী" + ], + "en_answers": [ + "hindi" + ], + "count": 5 + }, + { + "answers": [ + "সংস্কৃত" + ], + "en_answers": [ + "sanskrit" + ], + "count": 2 + }, + { + "answers": [ + "অসমীয়া", + "অসমীয়া" + ], + "en_answers": [ + "assamese" + ], + "count": 2 + }, + { + "answers": [ + "ইংৰাজী" + ], + "en_answers": [ + "english" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-30": { + "question": "অসমত সপ্তাহৰ কোন কোন দিনত বিদ্যালয় বন্ধ থাকে?", + "en_question": "What days of the week are schools closed in your country?", + "annotations": [ + { + "answers": [ + "দেওবাৰ", + "ৰবিবাৰ", + "দেউবাৰ", + "দেওবাৰে" + ], + "en_answers": [ + "sunday", + "on sunday" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-32": { + "question": "অসমত আতিথিসকলৰ বাবে আয়োজকসকলে সাধাৰণতে কি খাদ্য প্ৰস্তুত কৰে?", + "en_question": "What food do the hosts usually prepare for the guests in your country?", + "annotations": [ + { + "answers": [ + "ভাত", + "ভাতৰ আয়োজন" + ], + "en_answers": [ + "rice", + "arrangement of rice" + ], + "count": 3 + }, + { + "answers": [ + "জলপান" + ], + "en_answers": [ + "snacks" + ], + "count": 2 + }, + { + "answers": [ + "ৰুটি-ভাজি", + "লুচি ভাঁজি" + ], + "en_answers": [ + "puri vaji", + "fried roti", + "flatbread and vegetable fries", + "fried luchi" + ], + "count": 2 + }, + { + "answers": [ + "চাহ" + ], + "en_answers": [ + "tea" + ], + "count": 1 + }, + { + "answers": [ + "বিস্কুত" + ], + "en_answers": [ + "biscuit" + ], + "count": 1 + }, + { + "answers": [ + "পিঠা" + ], + "en_answers": [ + "rice cake" + ], + "count": 1 + }, + { + "answers": [ + "লাৰু" + ], + "en_answers": [ + "ladoo", + "laddu", + "laru" + ], + "count": 1 + }, + { + "answers": [ + "চাহ জলপান" + ], + "en_answers": [ + "tea snacks" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-34": { + "question": "অসমত প্ৰাতঃৰাশত সাধাৰণতে কি পানীয় খোৱা হয়?", + "en_question": "What is the usual drink in the breakfast in your country?", + "annotations": [ + { + "answers": [ + "চাহ" + ], + "en_answers": [ + "tea" + ], + "count": 4 + }, + { + "answers": [ + "চ​ৰ্বত" + ], + "en_answers": [ + "juice" + ], + "count": 1 + }, + { + "answers": [ + "কফি" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + }, + { + "answers": [ + "পানী" + ], + "en_answers": [ + "water" + ], + "count": 1 + }, + { + "answers": [ + "লাওপানী" + ], + "en_answers": [ + "bottle gourd liqour" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-36": { + "question": "অসমীয় খাদ্যৰ বাহিৰে, কোন দেশৰ খাদ্য অসমত অধিক জনপ্ৰিয়?", + "en_question": "Except the food original from your country, which country's food is more popular in your country?", + "annotations": [ + { + "answers": [ + "চীন", + "চাইনিজ" + ], + "en_answers": [ + "china", + "chinese" + ], + "count": 4 + }, + { + "answers": [ + "ইটালী", + "ইটালি" + ], + "en_answers": [ + "italy" + ], + "count": 2 + }, + { + "answers": [ + "জাপানীজ" + ], + "en_answers": [ + "japanese" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 1 + } + }, + "Ki-pe-39": { + "question": "অসমত পাৰিবাৰিক পিকনিকৰ বাবে সাধাৰণতে কি খাদ্য প্ৰস্তুত কৰা হয়?", + "en_question": "What food is usually prepared for a family picnic in your country?", + "annotations": [ + { + "answers": [ + "মাংস​-ভাত", + "পোলাও", + "ভাত" + ], + "en_answers": [ + "meat-rice", + "pilaf", + "pilav", + "pilau", + "rice" + ], + "count": 3 + }, + { + "answers": [ + "মাছ​-ভাত" + ], + "en_answers": [ + "fish-rice" + ], + "count": 1 + }, + { + "answers": [ + "ৰুটি-ভাজি" + ], + "en_answers": [ + "puri vaji", + "fried roti", + "flatbread and vegetable fries" + ], + "count": 1 + }, + { + "answers": [ + "খিচিৰি", + "খিচাৰী" + ], + "en_answers": [ + "khichdi", + "kitchari", + "khichri" + ], + "count": 1 + }, + { + "answers": [ + "অসমীয়া খাদ্য" + ], + "en_answers": [ + "assamese food" + ], + "count": 1 + }, + { + "answers": [ + "ভাতৰ আয়োজন" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "ফলমূল" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + }, + { + "answers": [ + "ব্ৰেড জাম কণী" + ], + "en_answers": [ + "bread jam egg" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-40": { + "question": "অসমৰ কোন খাদ্য বিশ্বৰ বাকী অংশই ঘৃণা কৰে?", + "en_question": "Which food from your country is considered disgusting by the rest of the world?", + "annotations": [ + { + "answers": [ + "লেটা পলু" + ], + "en_answers": [ + "silkworm" + ], + "count": 1 + }, + { + "answers": [ + "লেটাপলু" + ], + "en_answers": [ + "silkworm" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 2, + "no-answer": 0 + } + }, + "Ki-pe-43": { + "question": "অসমত জনপ্ৰিয় পাউৰুটিৰ নাম কি?", + "en_question": "What is the name of the popular bread in your country?", + "annotations": [ + { + "answers": [ + "ৰুটি" + ], + "en_answers": [ + "roti" + ], + "count": 2 + }, + { + "answers": [ + "লুচি" + ], + "en_answers": [ + "puffed bread", + "luchi", + "lusi", + "luchui" + ], + "count": 1 + }, + { + "answers": [ + "বন" + ], + "en_answers": [ + "bun" + ], + "count": 1 + }, + { + "answers": [ + "ব্ৰেদ" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "নান" + ], + "en_answers": [ + "naan" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-51": { + "question": "অসমত চৰকাৰী কাৰ্যালয়সমূহ দিনৰ কি সময়ত বন্ধ হয়? (HH:MM ফৰ্মেটত প্ৰদান কৰক (যেনে, 18:00, 09:00)।)", + "en_question": "What time of day are government offices closed in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "17:00", + "05:00" + ], + "en_answers": [ + "17:00" + ], + "count": 3 + }, + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 1 + }, + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 1 + }, + { + "answers": [ + "17:30" + ], + "en_answers": [ + "17:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-53": { + "question": "অসমত চৰকাৰী কাৰ্যালয়সমূহৰ সাধাৰণ আৰম্ভণি সময় কি? (HH:MM ফৰ্মেটত প্ৰদান কৰক (যেনে, 18:00, 09:00).)", + "en_question": "What is the normal start time of government offices in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 3 + }, + { + "answers": [ + "10:00" + ], + "en_answers": [ + "10:00" + ], + "count": 2 + }, + { + "answers": [ + "09:30" + ], + "en_answers": [ + "09:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-01": { + "question": "অসমত কোনটো ৰাষ্ট্ৰীয় বন্ধৰ সময়কাল সবাতোকৈ দীঘল?", + "en_question": "What national holiday has the longest duration in your country?", + "annotations": [ + { + "answers": [ + "দুৰ্গা পূজা", + "দুৰ্গা পুজা", + "পুজাৰ বন্ধ" + ], + "en_answers": [ + "durga puja", + "puja holiday" + ], + "count": 4 + }, + { + "answers": [ + "বিহু" + ], + "en_answers": [ + "bihu" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 1 + } + }, + "Kik-in-02": { + "question": "অসমৰ মানুহে স্বাধীনতা দিৱস উদযাপন কৰিবলৈ কি কি সাধাৰণ কাম-কাজ কৰে?", + "en_question": "What are the common activities people from your country do to celebrate Independence day?", + "annotations": [ + { + "answers": [ + "পতাকা উত্তোলন ক​ৰে", + "পতকা উত্তোলন", + "পতাকা‌ ঘৰে ঘৰে উৰাই", + "পতাকা উত্তোলন কৰে", + "পতাকা উত্তোলন" + ], + "en_answers": [ + "hoists the flag", + "flag hoisting", + "flag" + ], + "count": 5 + }, + { + "answers": [ + "ৰাষ্ট্ৰীয় সংগীত গায়​", + "ৰাষ্টীয় সংগীত পৰিবেশন", + "ৰাষ্ট্ৰীয় সংগীত গায়", + "ৰাষ্ট্ৰীয় সংগীত পৰিবেশন" + ], + "en_answers": [ + "sings national anthem", + "national anthem performance" + ], + "count": 4 + }, + { + "answers": [ + "স্বচ্ছ ভাৰত মিচন" + ], + "en_answers": [ + "clean india mission" + ], + "count": 1 + }, + { + "answers": [ + "নৃত্য গীত" + ], + "en_answers": [ + "dance song" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-04": { + "question": "অসমত কোনো পৰিয়ালৰ সদস্যৰ মৃত্যু হ'লে ঘৰৰ সন্মুখত কি স্থাপন কৰা হয়?", + "en_question": "What is installed in front of the house when a family member dies in your country?", + "annotations": [ + { + "answers": [ + "ম​ৰিশালি" + ], + "en_answers": [ + "chili" + ], + "count": 1 + }, + { + "answers": [ + "ধূপ চাকি" + ], + "en_answers": [ + "incense stick" + ], + "count": 1 + }, + { + "answers": [ + "স্মাৰক" + ], + "en_answers": [ + "souvenir" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Kik-in-05": { + "question": "অসমত গৰ্ভাবস্থা উদযাপন বা অনুষ্ঠান সাধাৰণতে কেতিয়া পালন কৰা হয়?", + "en_question": "When is a pregnancy celebration or ceremony usually held in your country?", + "annotations": [ + { + "answers": [ + "৫ মাহত", + "5 মাহ ত", + "পঞ্চম মাহত", + "5 মাহ" + ], + "en_answers": [ + "5 months", + "fifth month", + "five months" + ], + "count": 4 + }, + { + "answers": [ + "ঌ মাহত", + "নৱম মাহত" + ], + "en_answers": [ + "8 months", + "eighth month", + "eight months", + "9 months", + "ninth month", + "nine months" + ], + "count": 2 + }, + { + "answers": [ + "৭ মাহত" + ], + "en_answers": [ + "7 months", + "seventh month", + "seven months" + ], + "count": 1 + }, + { + "answers": [ + "6 মাহ" + ], + "en_answers": [ + "6 months", + "sixth month", + "six months" + ], + "count": 1 + }, + { + "answers": [ + "7 মাহ" + ], + "en_answers": [ + "7 months", + "seventh month", + "seven months" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 1 + } + }, + "Kik-in-06": { + "question": "অসমত বিয়াৰ পূৰ্বে সাধাৰণতে কি অনুষ্ঠান পালন কৰা হয়?", + "en_question": "What event is usually held before a wedding in your country?", + "annotations": [ + { + "answers": [ + "আঙুঠি পিন্ধোৱা", + "আঙঠি পিন্ধোৱা" + ], + "en_answers": [ + "wearing a ring" + ], + "count": 3 + }, + { + "answers": [ + "জোৰণ", + "জোৰোণ দিয়া", + "জোৰোণ দিয়া" + ], + "en_answers": [ + "joron" + ], + "count": 3 + }, + { + "answers": [ + "তামোল পাণ পেলোৱা", + "তামোল-পাণ পেলোৱা" + ], + "en_answers": [ + "betel nuts and leaves served", + "offering betel nuts and leaves" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-07": { + "question": "অসমত (চন্দ্ৰ) নৱবৰ্ষৰ সময়ত সাধাৰণতে শিশুসকলক কি বিলাই দিয়া হয়?", + "en_question": "What is usually shared to the children during (Lunar) New Year in your country?", + "annotations": [ + { + "answers": [ + "উপহাৰ" + ], + "en_answers": [ + "gift" + ], + "count": 1 + }, + { + "answers": [ + "বস্ত্ৰ" + ], + "en_answers": [ + "clothes" + ], + "count": 1 + }, + { + "answers": [ + "চকলেট" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "no-answer": 1, + "idk": 0 + } + }, + "Kik-in-08": { + "question": "ৰমজানৰ কেইদিনমান পূৰ্বে অসমত সাধাৰণতে কি কি কাৰ্যকলাপ সম্পন্ন কৰা হয়?", + "en_question": "What activities are usually done days before Ramadan in your country?", + "annotations": [ + { + "answers": [ + "ঘ​ৰ সম্পূৰ্নকৈ চাফা ক​ৰা", + "ঘৰ পৰিস্কাৰ কৰা" + ], + "en_answers": [ + "clean the house completely", + "cleaning the house" + ], + "count": 2 + }, + { + "answers": [ + "পুৰণি উপবাস পালন ক​ৰা" + ], + "en_answers": [ + "observing old fasting" + ], + "count": 1 + }, + { + "answers": [ + "অভিপ্ৰায় সঠিক কৰা" + ], + "en_answers": [ + "set the intention right" + ], + "count": 1 + }, + { + "answers": [ + "পিঠা কেক প্ৰস্তুত কৰা" + ], + "en_answers": [ + "preparing rice cake" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-10": { + "question": "অসমত বিদেশী পৰ্যটকসকলৰ বাবে সবাতোকৈ জনপ্ৰিয় পৰ্যটন আকৰ্ষণটো কি?", + "en_question": "What is the most popular tourist attraction for foreign visitors in your country?", + "annotations": [ + { + "answers": [ + "মাজুলী", + "মাজুলীৰ সত্ৰসমুহ" + ], + "en_answers": [ + "majuli", + "satras of majuli" + ], + "count": 3 + }, + { + "answers": [ + "এশিঙিয়া গড়", + "এশিঙীয়া গঁড়", + "এশিঙীয়া গড়" + ], + "en_answers": [ + "rhinoceros", + "one-horned rhinoceros" + ], + "count": 3 + }, + { + "answers": [ + "কামাক্ষ্যা মা মন্দিৰ", + "কামাখ্যা মন্দিৰ" + ], + "en_answers": [ + "kamakhya ma temple", + "kamakhya temple" + ], + "count": 2 + }, + { + "answers": [ + "শিৱসাগ​ৰ​ৰ পুৰণি কীৰ্তিচিহ্ন" + ], + "en_answers": [ + "old monuments of sivasagar" + ], + "count": 1 + }, + { + "answers": [ + "লাচিত মৈদাম" + ], + "en_answers": [ + "lachit mausoleum" + ], + "count": 1 + }, + { + "answers": [ + "কাজিৰঙা ৰাষ্ট্ৰীয় উদ্যান" + ], + "en_answers": [ + "kaziranga national park" + ], + "count": 1 + }, + { + "answers": [ + "ৰংঘৰ" + ], + "en_answers": [ + "rang ghar" + ], + "count": 1 + }, + { + "answers": [ + "কাৰেং ঘৰ" + ], + "en_answers": [ + "bachelor's house" + ], + "count": 1 + }, + { + "answers": [ + "তলাতল ঘৰ" + ], + "en_answers": [ + "underground house" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-11": { + "question": "অসমত পৰ্যটনৰ বাবে সবাতোকৈ জনপ্ৰিয় ধৰ্মীয় স্থানসমূহ (মন্দিৰ, গিৰ্জা আদি) কি কি?", + "en_question": "What is the most popular religious sites (temple, church, etc.) for tourism in your country?", + "annotations": [ + { + "answers": [ + "কামাখ্যা মন্দিৰ", + "কামাখ্য়া মন্দিৰ", + "কামাক্ষ্যা মা মন্দিৰ" + ], + "en_answers": [ + "kamakhya temple", + "kamakhya ma temple" + ], + "count": 4 + }, + { + "answers": [ + "মহা মৃত্য়ুঞ্জয় মন্দিৰ", + "শিৱদৌল" + ], + "en_answers": [ + "great maha mrityunjaya temple", + "shiva temple" + ], + "count": 2 + }, + { + "answers": [ + "নামঘৰ", + "ঢেকী়য়াখোৱা বৰ নামঘৰ" + ], + "en_answers": [ + "prayer house", + "dhekiakhowa bornamghar" + ], + "count": 2 + }, + { + "answers": [ + "মালিনী থান" + ], + "en_answers": [ + "malini temple" + ], + "count": 1 + }, + { + "answers": [ + "টিলিঙা মন্দিৰ" + ], + "en_answers": [ + "tilinga mandir (bell temple)" + ], + "count": 1 + }, + { + "answers": [ + "মহামায়া মন্দিৰ" + ], + "en_answers": [ + "mahamaya temple" + ], + "count": 1 + }, + { + "answers": [ + "গীৰ্জা" + ], + "en_answers": [ + "church" + ], + "count": 1 + }, + { + "answers": [ + "মন্দিৰ" + ], + "en_answers": [ + "temple" + ], + "count": 1 + }, + { + "answers": [ + "মইনাপৰীয়া বৰ নামঘৰ" + ], + "en_answers": [ + "moinapariya big prayer hall" + ], + "count": 1 + }, + { + "answers": [ + "আঠখেলীয়া বৰ নামঘৰ" + ], + "en_answers": [ + "aathkhelia main prayer hall" + ], + "count": 1 + }, + { + "answers": [ + "উমানন্দ" + ], + "en_answers": [ + "umananda" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-15": { + "question": "অসমত মহিলাসকলে সাধাৰণতে স্নাতকোত্তৰ আৰম্ভণি অনুষ্ঠানত কি ধৰণৰ কাপোৰ পৰিধান কৰে?", + "en_question": "What clothes do women usually wear on graduation commencement ceremony in your country?", + "annotations": [ + { + "answers": [ + "চাদৰ মেখেলা", + "চাদ​ৰ মেখেলা" + ], + "en_answers": [ + "mekhela chador", + "sador mekhela" + ], + "count": 4 + }, + { + "answers": [ + "চেলোৱাৰ", + "চুৰিদাৰ", + "চালৱাৰ" + ], + "en_answers": [ + "salwar", + "shalwar", + "chalwar", + "churidar" + ], + "count": 3 + }, + { + "answers": [ + "শাৰী" + ], + "en_answers": [ + "sari", + "saree", + "shari" + ], + "count": 2 + }, + { + "answers": [ + "জনজাতীয় লোকে জনজাতীয় পোছাক" + ], + "en_answers": [ + "tribal attire" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-16": { + "question": "ঠাণ্ডা বতৰৰ সময়ত অসমত সাধাৰণতে কি পানীয় খোৱা হয়?", + "en_question": "What drink is commonly consumed in your country when the weather is cold?", + "annotations": [ + { + "answers": [ + "চাহ" + ], + "en_answers": [ + "tea" + ], + "count": 4 + }, + { + "answers": [ + "কফি", + "কফী" + ], + "en_answers": [ + "coffee" + ], + "count": 3 + }, + { + "answers": [ + "ছুপ" + ], + "en_answers": [ + "soup" + ], + "count": 1 + }, + { + "answers": [ + "ৰাম" + ], + "en_answers": [ + "ram" + ], + "count": 1 + }, + { + "answers": [ + "বিয়েৰ" + ], + "en_answers": [ + "beer" + ], + "count": 1 + }, + { + "answers": [ + "পৰম্পৰাগত সুৰা" + ], + "en_answers": [ + "traditional liquor" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-17": { + "question": "ৰমজানৰ সময়ত অসমত কোন ফল সচৰাচৰ বেচা-কেনা আৰু পোৱা যায়?", + "en_question": "What fruit is more commonly sold and found during Ramadan in your country?", + "annotations": [ + { + "answers": [ + "খেজুৰ" + ], + "en_answers": [ + "dates" + ], + "count": 3 + }, + { + "answers": [ + "কল" + ], + "en_answers": [ + "banana" + ], + "count": 2 + }, + { + "answers": [ + "আপেল" + ], + "en_answers": [ + "apple" + ], + "count": 2 + }, + { + "answers": [ + "অমিতা" + ], + "en_answers": [ + "amita" + ], + "count": 2 + }, + { + "answers": [ + "আঙুৰ" + ], + "en_answers": [ + "grape" + ], + "count": 2 + }, + { + "answers": [ + "তৰবুজ", + "তৰমুজ" + ], + "en_answers": [ + "watermelon" + ], + "count": 2 + }, + { + "answers": [ + "আম" + ], + "en_answers": [ + "mango" + ], + "count": 1 + }, + { + "answers": [ + "ডালিম" + ], + "en_answers": [ + "pomegranate" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-24": { + "question": "অসমৰ এখন দ্ৰুত খাদ্য প্ৰতিষ্ঠানত চিকেনৰ লগত সাধাৰণতে কি ধৰণৰ কাৰ্ব'হাইড্ৰেট পৰিৱেশন কৰা হয়?", + "en_question": "What carbohydrate is usually served with chicken in a fast-food restaurant in your country?", + "annotations": [ + { + "answers": [ + "ভাত", + "পোলাও", + "চাউল" + ], + "en_answers": [ + "rice", + "pilaf", + "pilav", + "pilau" + ], + "count": 5 + }, + { + "answers": [ + "ৰুটী", + "ৰুতি", + "ৰুটি" + ], + "en_answers": [ + "bread" + ], + "count": 3 + }, + { + "answers": [ + "আলু" + ], + "en_answers": [ + "potato" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-31": { + "question": "অসমত সবাতোকৈ বিখ্যাত মাৰ্শ্বাল আৰ্ট ক্ৰীড়া কি?", + "en_question": "What is the most famous martial art sports in your country?", + "annotations": [ + { + "answers": [ + "কাৰাটে", + "কাৰাতে", + "কেৰাটে" + ], + "en_answers": [ + "karate" + ], + "count": 3 + }, + { + "answers": [ + "টাইকোৱাণ্ডো" + ], + "en_answers": [ + "taekwondo" + ], + "count": 2 + }, + { + "answers": [ + "যি-যুৎসু" + ], + "en_answers": [ + "jiu-jitsu" + ], + "count": 1 + }, + { + "answers": [ + "কুংফু", + "কুংফু পান্দা" + ], + "en_answers": [ + "kung fu" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-34": { + "question": "অসমৰ ৰাষ্ট্ৰীয় দূৰদৰ্শনত কোন কোন ক্ৰীড়া প্ৰায়ে সম্প্ৰচাৰ কৰা হয়?", + "en_question": "What sports are often broadcasted on national television in your country?", + "annotations": [ + { + "answers": [ + "ক্ৰিকেট", + "ক্ৰিকেত" + ], + "en_answers": [ + "cricket" + ], + "count": 4 + }, + { + "answers": [ + "ফুটবল", + "ফুতবল" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "কাবাডী" + ], + "en_answers": [ + "kabaddi" + ], + "count": 2 + }, + { + "answers": [ + "চেচ" + ], + "en_answers": [ + "chess" + ], + "count": 1 + }, + { + "answers": [ + "বেডমিন্টন" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "সাতোৰ", + "সাতুৰ" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + }, + { + "answers": [ + "মল্ল যুদ্ধ", + "মল যুদ্ধ" + ], + "en_answers": [ + "wrestling" + ], + "count": 1 + }, + { + "answers": [ + "হকী" + ], + "en_answers": [ + "hockey" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-35": { + "question": "COVID-19 মহামাৰীৰ সময়ত অসমীয় লোকসকলৰ মাজত কি কি ক্ৰীড়া জনপ্ৰিয় আছিল?", + "en_question": "What sports were popular among people from your country during the COVID-19 pandemic?", + "annotations": [ + { + "answers": [ + "লুডু", + "লুদু", + "লুডো" + ], + "en_answers": [ + "ludo" + ], + "count": 4 + }, + { + "answers": [ + "কেৰম" + ], + "en_answers": [ + "carrom" + ], + "count": 3 + }, + { + "answers": [ + "তাচ পাত" + ], + "en_answers": [ + "cards", + "card game" + ], + "count": 1 + }, + { + "answers": [ + "ক্ৰিকেট", + "কৃকেত" + ], + "en_answers": [ + "cricket" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-36": { + "question": "অসমত কোন জনপ্ৰিয় ফুটবল প্ৰশিক্ষক?", + "en_question": "Who is the most popular soccer coach in your country?", + "annotations": [ + { + "answers": [ + "সুজেশ ব​ড়ো", + "সুজেশ বড়ো" + ], + "en_answers": [ + "sujesh boro" + ], + "count": 2 + }, + { + "answers": [ + "প্ৰাজ্ৱল সিং" + ], + "en_answers": [ + "prajwal singh" + ], + "count": 1 + }, + { + "answers": [ + "সুক্ষ্ম ৰাভা" + ], + "en_answers": [ + "fine rava" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Kik-in-37": { + "question": "অসমত কোন কোন ফুটবল দল তেওঁলোকৰ তীব্ৰ প্ৰতিদ্বন্দ্বিতাৰ বাবে বিখ্যাত? (যেনে ___ বনাম ___)", + "en_question": "What soccer teams in your country are famous for their intense rivalry? (e.g. ___ vs ___)", + "annotations": [ + { + "answers": [ + "অইল ইণ্ডিয়া দুলীয়াজান বনাম অসম ৰাজ্যিক বিদ্যুৎ পৰিষদ", + "অইল ইণ্ডিয়া ডুলিয়াজান বনাম অসম ৰাজ্যিক বিদ্যুৎ পৰিষদ" + ], + "en_answers": [ + "oil india duliajan vs assam state electricity board", + "assam state electricity board vs oil india duliajan" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Kik-in-38": { + "question": "অসমত ফুটবলৰ সমৰ্থকসকলৰ নাম কি যিসকল তেওঁলোকৰ তীব্ৰ প্ৰতিদ্বন্দ্বিতাৰ বাবে বিখ্যাত? (যেনে ___ বনাম ___)", + "en_question": "What are the names of soccer supporters in your country who are famous for their intense rivalry? (e.g. ___ vs ___)", + "annotations": [ + { + "answers": [ + "ভীনীত ৰয় চামলিং" + ], + "en_answers": [ + "vinay roy chamling" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 1 + } + }, + "Kik-in-40": { + "question": "অসমৰ আটাইতকৈ বিখ্যাত পুৰুষ বেডমিণ্টন খেলুৱৈজন কোন?", + "en_question": "Who is the most famous male badminton player in your country?", + "annotations": [ + { + "answers": [ + "দীপাংকৰ ভট্টাচাৰ্য", + "দীপাংকৰ ভটাচাৰ্য্য়", + "দিপাংকৰ ভাট্টাচাৰ্জী", + "দীপাংকৰ ভট্টাচৰ্জী" + ], + "en_answers": [ + "dipankar bhattacharya", + "dipankar bhattacharyya", + "dipankar bhattacharjee" + ], + "count": 4 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Kik-in-41": { + "question": "অসমৰ আটাইতকৈ বিখ্যাত মহিলা বেডমিণ্টন খেলুৱৈগৰাকী কোন?", + "en_question": "Who is the most famous female badminton player in your country?", + "annotations": [ + { + "answers": [ + "অশ্মিতা চলিহা", + "অস্মিতা চলিহা" + ], + "en_answers": [ + "asmita chaliha", + "ashmita chaliha" + ], + "count": 3 + }, + { + "answers": [ + "মনালিছা বৰুৱা" + ], + "en_answers": [ + "monalisha baruah" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Kik-in-44": { + "question": "অসম চৰকাৰে কোনটো ক্ৰীড়াক সৰ্বাধিক সমৰ্থন প্ৰদান কৰে?", + "en_question": "What sport gets the most support from the government in your country?", + "annotations": [ + { + "answers": [ + "ক্ৰিকেট" + ], + "en_answers": [ + "cricket" + ], + "count": 2 + }, + { + "answers": [ + "দৌৰ" + ], + "en_answers": [ + "race", + "running" + ], + "count": 1 + }, + { + "answers": [ + "বক্সীং" + ], + "en_answers": [ + "boxing" + ], + "count": 1 + }, + { + "answers": [ + "ফুটবল" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "চেচ" + ], + "en_answers": [ + "chess" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-45": { + "question": "অসমৰ বিদ্যালয়সমূহত সাধাৰণতে কি কি ক্ৰীড়া ক্ষেত্ৰৰ সুবিধাসমূহ উপলব্ধ থাকে?", + "en_question": "What sports field facilities are usually available at schools in your country?", + "annotations": [ + { + "answers": [ + "বেডমিন্টন", + "বেডমিণ্টন" + ], + "en_answers": [ + "badminton" + ], + "count": 4 + }, + { + "answers": [ + "ক্ৰিকেট", + "ক্ৰিকেত", + "কৃকেট" + ], + "en_answers": [ + "cricket" + ], + "count": 3 + }, + { + "answers": [ + "চেচ" + ], + "en_answers": [ + "chess" + ], + "count": 2 + }, + { + "answers": [ + "ফুটবল" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "বাস্কেটবল" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "কেৰম" + ], + "en_answers": [ + "carrom" + ], + "count": 1 + }, + { + "answers": [ + "জেভলিন" + ], + "en_answers": [ + "javelin" + ], + "count": 1 + }, + { + "answers": [ + "দৌৰ" + ], + "en_answers": [ + "race", + "running" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-02": { + "question": "অসমৰ মানুহে কেফেত সচৰাচৰ কি পানীয় ভাল পায়?", + "en_question": "What cafe beverage do people from your country most commonly enjoy?", + "annotations": [ + { + "answers": [ + "চাহ" + ], + "en_answers": [ + "tea" + ], + "count": 4 + }, + { + "answers": [ + "কফি", + "কফী" + ], + "en_answers": [ + "coffee" + ], + "count": 4 + }, + { + "answers": [ + "ফলৰ ৰস" + ], + "en_answers": [ + "fruit juice" + ], + "count": 1 + }, + { + "answers": [ + "বিয়েৰ" + ], + "en_answers": [ + "beer" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-04": { + "question": "অসমৰ মানুহৰ বাবে হেংওভাৰ নিৰাময়ৰ প্ৰিয় খাদ্য কি?", + "en_question": "What is the preferred hangover cure food for people from your country?", + "annotations": [ + { + "answers": [ + "টেঙা" + ], + "en_answers": [ + "sour" + ], + "count": 1 + }, + { + "answers": [ + "ৰেদবুল" + ], + "en_answers": [ + "red bull" + ], + "count": 1 + }, + { + "answers": [ + "নেমুটেঙাৰ চৰবত" + ], + "en_answers": [ + "lemonade" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 1 + } + }, + "Na-ko-05": { + "question": "অসমত সাধাৰণতে কি ধৰণৰ খাদ্য ডেলিভাৰি কৰা হয়?", + "en_question": "What is the typical delivery food in your country?", + "annotations": [ + { + "answers": [ + "প্ৰায় সকলো ধৰনৰ", + "সকলো প্ৰকাৰৰ" + ], + "en_answers": [ + "all", + "all types of" + ], + "count": 2 + }, + { + "answers": [ + "বাটাৰ চিকেন" + ], + "en_answers": [ + "butter chicken" + ], + "count": 1 + }, + { + "answers": [ + "বিৰিয়ানি" + ], + "en_answers": [ + "biryani" + ], + "count": 1 + }, + { + "answers": [ + "যিকোনো অসমীয়া খাদ্য" + ], + "en_answers": [ + "assamese" + ], + "count": 1 + }, + { + "answers": [ + "ফাষ্টফুড" + ], + "en_answers": [ + "fast food" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-07": { + "question": "অসমৰ মানুহে কোন ধৰণৰ মাংস সৰ্বাধিক খায়?", + "en_question": "What type of meat is consumed most by people from your country?", + "annotations": [ + { + "answers": [ + "হাঁহ", + "হাহ", + "হাহঁ" + ], + "en_answers": [ + "duck" + ], + "count": 4 + }, + { + "answers": [ + "কুকুৰা", + "মূৰ্গী", + "মুৰ্গী মাংস" + ], + "en_answers": [ + "chicken", + "chicken meat" + ], + "count": 4 + }, + { + "answers": [ + "গাহ​ৰি", + "গাহৰী" + ], + "en_answers": [ + "pig" + ], + "count": 2 + }, + { + "answers": [ + "মটন" + ], + "en_answers": [ + "mutton", + "lamb", + "sheep" + ], + "count": 1 + }, + { + "answers": [ + "পাৰ" + ], + "en_answers": [ + "pigeon" + ], + "count": 1 + }, + { + "answers": [ + "ছাগলী" + ], + "en_answers": [ + "goat" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-08": { + "question": "অসমীয় লোকে শৰৎকালত কি ফল প্ৰায়ে খায়?", + "en_question": "What fruit do people from your country often eat in the autumn season?", + "annotations": [ + { + "answers": [ + "আপেল" + ], + "en_answers": [ + "apple" + ], + "count": 2 + }, + { + "answers": [ + "ডালিম" + ], + "en_answers": [ + "pomegranate" + ], + "count": 2 + }, + { + "answers": [ + "আঙুৰ" + ], + "en_answers": [ + "grape" + ], + "count": 1 + }, + { + "answers": [ + "আম" + ], + "en_answers": [ + "mango" + ], + "count": 1 + }, + { + "answers": [ + "লিচু" + ], + "en_answers": [ + "lychee" + ], + "count": 1 + }, + { + "answers": [ + "জামু" + ], + "en_answers": [ + "guava" + ], + "count": 1 + }, + { + "answers": [ + "কমলা" + ], + "en_answers": [ + "orange" + ], + "count": 1 + }, + { + "answers": [ + "ৰবাব টেঙা" + ], + "en_answers": [ + "sour spinach" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-09": { + "question": "অসমৰ খোৱা টেবুলত সবাতোকৈ সাধাৰণভাৱে কি পাৰ্শ্ব খাদ্য পৰিৱেশন কৰা হয়?", + "en_question": "What side dish is the most commonly served on a dining table in your country?", + "annotations": [ + { + "answers": [ + "আচাৰ" + ], + "en_answers": [ + "pickle" + ], + "count": 1 + }, + { + "answers": [ + "চাটনি" + ], + "en_answers": [ + "chutney" + ], + "count": 1 + }, + { + "answers": [ + "চালাদ" + ], + "en_answers": [ + "salad" + ], + "count": 1 + }, + { + "answers": [ + "চাওমিন" + ], + "en_answers": [ + "chowmein" + ], + "count": 1 + }, + { + "answers": [ + "ব্ৰেড" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "দৈ মিঠাই" + ], + "en_answers": [ + "curd sweet" + ], + "count": 1 + }, + { + "answers": [ + "পায়স" + ], + "en_answers": [ + "rice pudding" + ], + "count": 1 + }, + { + "answers": [ + "দাইল" + ], + "en_answers": [ + "lentil" + ], + "count": 1 + }, + { + "answers": [ + "আলুপিতিকা" + ], + "en_answers": [ + "mashed potatoes" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 1 + } + }, + "Na-ko-11": { + "question": "অসমীয় লোকে ফুটবল খেল চাই থাকোতে কি খায়?", + "en_question": "What do people from your country eat while watching a soccer game?", + "annotations": [ + { + "answers": [ + "পপক​ৰ্ন", + "পপকন", + "পপকৰ্ণ" + ], + "en_answers": [ + "popcorn" + ], + "count": 3 + }, + { + "answers": [ + "চাহ" + ], + "en_answers": [ + "tea" + ], + "count": 2 + }, + { + "answers": [ + "বাদাম" + ], + "en_answers": [ + "almond" + ], + "count": 1 + }, + { + "answers": [ + "কল্ড ড্ৰিন্ক্স্", + "কʼল ড্ৰিচ্ছ" + ], + "en_answers": [ + "cold drink" + ], + "count": 1 + }, + { + "answers": [ + "চানা" + ], + "en_answers": [ + "snack" + ], + "count": 1 + }, + { + "answers": [ + "ফলমূল" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + }, + { + "answers": [ + "চিপচ্" + ], + "en_answers": [ + "chips" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-15": { + "question": "অসমত প্ৰতিনিধিমূলক পুষ্টিকৰ খাদ্য কি?", + "en_question": "What is the representative nourishing food in your country?", + "annotations": [ + { + "answers": [ + "ভাত" + ], + "en_answers": [ + "rice" + ], + "count": 3 + }, + { + "answers": [ + "গাখীৰ" + ], + "en_answers": [ + "milk" + ], + "count": 3 + }, + { + "answers": [ + "মাছ মাংস​" + ], + "en_answers": [ + "fish meat" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 1 + } + }, + "Na-ko-16": { + "question": "অসমত সবাতোকৈ বিখ্যাত ফুটবল খেলুৱৈজন কোন?", + "en_question": "Who is the most famous soccer player in your country?", + "annotations": [ + { + "answers": [ + "ধীৰজ সিং" + ], + "en_answers": [ + "dhiraj singh" + ], + "count": 1 + }, + { + "answers": [ + "সুক্ষ্ম ৰাভা" + ], + "en_answers": [ + "sukhma rabha" + ], + "count": 1 + }, + { + "answers": [ + "বিনিত ৰাই" + ], + "en_answers": [ + "binit rai" + ], + "count": 1 + }, + { + "answers": [ + "দুৰ্গা বড়ো" + ], + "en_answers": [ + "durga boro" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-17": { + "question": "অসমৰ বিদ্যালয়সমূহত লাঞ্চ টাইমত ছাত্ৰসকলে কি কি ক্ৰীড়া উপভোগ কৰে?", + "en_question": "What sports do male students enjoy during lunch time at school in your country?", + "annotations": [ + { + "answers": [ + "বেডমিন্টন", + "বেডমিণ্টন" + ], + "en_answers": [ + "badminton" + ], + "count": 2 + }, + { + "answers": [ + "চুৰ পুলিচ" + ], + "en_answers": [ + "thief police" + ], + "count": 1 + }, + { + "answers": [ + "লুকা ভাকু" + ], + "en_answers": [ + "hide and seek" + ], + "count": 1 + }, + { + "answers": [ + "দৌৰা দৌৰি" + ], + "en_answers": [ + "race", + "running" + ], + "count": 1 + }, + { + "answers": [ + "টেনিচ" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + }, + { + "answers": [ + "ছেছ" + ], + "en_answers": [ + "chess" + ], + "count": 1 + }, + { + "answers": [ + "ক্ৰিকেট" + ], + "en_answers": [ + "cricket" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-18": { + "question": "অসমত শাৰীৰিক শিক্ষাৰ ক্লাছত ছোৱালীসকলে অংশগ্ৰহণ কৰা সবাতোকৈ জনপ্ৰিয় ক্ৰীড়া কি?", + "en_question": "What is the most common sport girls participate in during physical education classes in your country?", + "annotations": [ + { + "answers": [ + "বেডমিনটন", + "বেডমিণ্টন" + ], + "en_answers": [ + "badminton" + ], + "count": 2 + }, + { + "answers": [ + "স্কিপিং" + ], + "en_answers": [ + "skipping", + "jump rope" + ], + "count": 1 + }, + { + "answers": [ + "দৌৰ" + ], + "en_answers": [ + "race", + "running" + ], + "count": 1 + }, + { + "answers": [ + "ৱৈগা" + ], + "en_answers": [ + "boat" + ], + "count": 1 + }, + { + "answers": [ + "কাৰাতে" + ], + "en_answers": [ + "karate" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-19": { + "question": "অসমত কোন ভলীবল খেলুৱৈজন সৰ্বাধিক জনপ্ৰিয়?", + "en_question": "Who is the most popular volleyball player in your country?", + "annotations": [ + { + "answers": [ + "অভিজিত ভটাচাৰ্য্য়" + ], + "en_answers": [ + "abhijit bhattacharya" + ], + "count": 1 + }, + { + "answers": [ + "আব্দুল বাটেন" + ], + "en_answers": [ + "abdul baten" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-20": { + "question": "অসমীয় লোকে আন্তঃৰাষ্ট্ৰীয় প্ৰতিযোগিতাসমূহত কোনটো ক্ৰীড়া ইভেণ্টক সৰ্বাধিক উৎসাহেৰে সমৰ্থন কৰে?", + "en_question": "What sports event do people from your country passionately support the most in international competitions?", + "annotations": [ + { + "answers": [ + "ফুটবল" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "ক্ৰিকেট" + ], + "en_answers": [ + "cricket" + ], + "count": 2 + }, + { + "answers": [ + "দৌৰ" + ], + "en_answers": [ + "race", + "running" + ], + "count": 2 + }, + { + "answers": [ + "বক্সীং", + "বক্সিং" + ], + "en_answers": [ + "boxing" + ], + "count": 2 + }, + { + "answers": [ + "চেচ" + ], + "en_answers": [ + "chess" + ], + "count": 1 + }, + { + "answers": [ + "বেডমিন্টন" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "সাতুৰ" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + }, + { + "answers": [ + "মল্ল যুদ্ধ", + "মল যুদ্ধ" + ], + "en_answers": [ + "wrestling" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-22": { + "question": "কোন ৰাজ্যক অসমৰ ফুটবল খেলত প্ৰধান প্ৰতিদ্বন্দ্বী বুলি বিবেচনা কৰা হয়?", + "en_question": "Which country is considered the biggest rival in soccer matches for your country?", + "annotations": [ + { + "answers": [ + "মেঘাল​য়" + ], + "en_answers": [ + "meghalaya" + ], + "count": 1 + }, + { + "answers": [ + "কলকাতা" + ], + "en_answers": [ + "kolkata" + ], + "count": 1 + }, + { + "answers": [ + "অৰুণাচল প্ৰদেশত" + ], + "en_answers": [ + "arunachal pradesh" + ], + "count": 1 + }, + { + "answers": [ + "মণিপুৰ" + ], + "en_answers": [ + "manipur" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Na-ko-23": { + "question": "অসমত শিশুসকলে কি ধৰণৰ ক্ৰীড়া একাডেমীত সৰ্বাধিক সময় অতিবাহিত কৰে?", + "en_question": "What type of sports academies do children attend the most in your country?", + "annotations": [ + { + "answers": [ + "বেডমিন্টন", + "বেডমিনটন" + ], + "en_answers": [ + "badminton" + ], + "count": 4 + }, + { + "answers": [ + "সাতোৰ", + "সাতোঁৰ", + "সাতুৰ" + ], + "en_answers": [ + "swimming" + ], + "count": 3 + }, + { + "answers": [ + "মল্ল যুদ্ধ", + "মল যুদ্ধ", + "টেনিচ" + ], + "en_answers": [ + "wrestling", + "tennis" + ], + "count": 2 + }, + { + "answers": [ + "দবা খেল" + ], + "en_answers": [ + "chess" + ], + "count": 1 + }, + { + "answers": [ + "সমৰ কলা" + ], + "en_answers": [ + "martial art" + ], + "count": 1 + }, + { + "answers": [ + "ক্ৰিকেট", + "ক্ৰীকেত" + ], + "en_answers": [ + "cricket" + ], + "count": 1 + }, + { + "answers": [ + "টাইকোৱাণ্ডো" + ], + "en_answers": [ + "taekwondo" + ], + "count": 1 + }, + { + "answers": [ + "কেৰাটে" + ], + "en_answers": [ + "karate" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-24": { + "question": "অসমৰ ক্ৰীড়া ষ্টেডিয়ামসমূহত খেল চাই থাকোঁতে সকলোৱে সচৰাচৰ কি খাদ্য খায়?", + "en_question": "What is the most commonly eaten food in sports stadiums while watching games in your country?", + "annotations": [ + { + "answers": [ + "চিপচ", + "চিপ্ছ" + ], + "en_answers": [ + "chips" + ], + "count": 3 + }, + { + "answers": [ + "পপকৰ্ন", + "পপকৰ্ণ" + ], + "en_answers": [ + "popcorn" + ], + "count": 2 + }, + { + "answers": [ + "কুৰকুৰী" + ], + "en_answers": [ + "kurkure" + ], + "count": 1 + }, + { + "answers": [ + "বাদাম" + ], + "en_answers": [ + "almond" + ], + "count": 1 + }, + { + "answers": [ + "কোকা কোলা" + ], + "en_answers": [ + "coca cola" + ], + "count": 1 + }, + { + "answers": [ + "স্প্ৰাইত" + ], + "en_answers": [ + "sprite" + ], + "count": 1 + }, + { + "answers": [ + "ফান্তা" + ], + "en_answers": [ + "fanta" + ], + "count": 1 + }, + { + "answers": [ + "কʼল ড্ৰিচ্ছ" + ], + "en_answers": [ + "cold drinks" + ], + "count": 1 + }, + { + "answers": [ + "চানা" + ], + "en_answers": [ + "chickpea" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-25": { + "question": "অসমৰ বিদ্যালয়ৰ ক্ৰীড়া দিৱসত সাধাৰণতে কি কি খেল খেলা হয়?", + "en_question": "What are the typical sports played in your country's school sports day?", + "annotations": [ + { + "answers": [ + "দৌৰ", + "দৈৰা", + "দ'ৰ" + ], + "en_answers": [ + "race", + "running" + ], + "count": 5 + }, + { + "answers": [ + "লং জাম্প", + "বেডমিন্টন", + "বেডমিণ্টন" + ], + "en_answers": [ + "long jump", + "badminton" + ], + "count": 3 + }, + { + "answers": [ + "দবা খেল" + ], + "en_answers": [ + "chess" + ], + "count": 1 + }, + { + "answers": [ + "হাই জাম্প" + ], + "en_answers": [ + "high jump" + ], + "count": 1 + }, + { + "answers": [ + "জেভলিন" + ], + "en_answers": [ + "javelin" + ], + "count": 1 + }, + { + "answers": [ + "কেৰম" + ], + "en_answers": [ + "carrom" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-26": { + "question": "অসমত মাজবয়সীয়া জনসংখ্যাৰ মাজত জনপ্ৰিয় ক্ৰীড়াসমূহ কি কি?", + "en_question": "What are the popular sports among the middle-aged population in your country?", + "annotations": [ + { + "answers": [ + "ক্ৰিকেট", + "কৃকেট" + ], + "en_answers": [ + "cricket" + ], + "count": 3 + }, + { + "answers": [ + "বেডমিন্টন" + ], + "en_answers": [ + "badminton" + ], + "count": 2 + }, + { + "answers": [ + "ফুটবল" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "কেৰম" + ], + "en_answers": [ + "carrom" + ], + "count": 2 + }, + { + "answers": [ + "দবা", + "চেচ" + ], + "en_answers": [ + "chess" + ], + "count": 2 + }, + { + "answers": [ + "হকি" + ], + "en_answers": [ + "hockey" + ], + "count": 1 + }, + { + "answers": [ + "লুদু" + ], + "en_answers": [ + "ludo" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-28": { + "question": "অসমত শীতকালীন ক্ৰীড়াৰ সবাতোকৈ জনপ্ৰিয় খেলুৱৈজন কোন?", + "en_question": "Who is the most popular winter sports player in your country?", + "annotations": [], + "idks": { + "no-answer": 3, + "idk": 2, + "not-applicable": 0 + } + }, + "Na-ko-29": { + "question": "অসমৰ আটাইতকৈ বিখ্যাত সাতোৰবিদ কোন?", + "en_question": "Who is the most famous swimmer in your country?", + "annotations": [ + { + "answers": [ + "এলভিছ আলি হাজৰিকা", + "এল্ভিছ আলী হাজ​ৰিকা", + "এৰ ভিচ আলী হাজৰিকা" + ], + "en_answers": [ + "elvis ali hazarika" + ], + "count": 4 + }, + { + "answers": [ + "শংকদেৱ" + ], + "en_answers": [ + "sankardev" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-30": { + "question": "অসমত কি সবাতোকৈ জনপ্ৰিয় ই-স্পোৰ্টছ খেলটো?", + "en_question": "What is the most popular e-sports game in your country?", + "annotations": [ + { + "answers": [ + "পাবজী", + "পাব জি" + ], + "en_answers": [ + "pubg" + ], + "count": 2 + }, + { + "answers": [ + "ফ্ৰী ফায়াৰ", + "ফ্ৰি ফায়াৰ" + ], + "en_answers": [ + "free fire" + ], + "count": 2 + }, + { + "answers": [ + "মবাইল লিজেন্ড" + ], + "en_answers": [ + "mobile legend" + ], + "count": 1 + }, + { + "answers": [ + "লুদু" + ], + "en_answers": [ + "ludo" + ], + "count": 1 + }, + { + "answers": [ + "কেৰম" + ], + "en_answers": [ + "carrom" + ], + "count": 1 + }, + { + "answers": [ + "দবা" + ], + "en_answers": [ + "chess" + ], + "count": 1 + }, + { + "answers": [ + "বাইক ৰেচিং" + ], + "en_answers": [ + "bike racing" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-33": { + "question": "অসমীয় লোকে (চন্দ্ৰ) নৱবৰ্ষত কি প্ৰতীকী খাদ্য খায়?", + "en_question": "What symbolic food do people from your country eat on (Lunar) New Year?", + "annotations": [ + { + "answers": [ + "জলপান" + ], + "en_answers": [ + "snacks" + ], + "count": 2 + }, + { + "answers": [ + "মিঠৈ", + "পিঠা লাৰু" + ], + "en_answers": [ + "sweet", + "pitha laru" + ], + "count": 2 + }, + { + "answers": [ + "ব​ৰা চাউলৰ জলপান" + ], + "en_answers": [ + "bora rice snack" + ], + "count": 1 + }, + { + "answers": [ + "মাছ​ৰ টেঙা" + ], + "en_answers": [ + "sour fish curry" + ], + "count": 1 + }, + { + "answers": [ + "দৈ চিৰা" + ], + "en_answers": [ + "curd poha", + "curd-poha" + ], + "count": 1 + }, + { + "answers": [ + "ক্ৰিম" + ], + "en_answers": [ + "cream" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 1 + } + }, + "Na-ko-37": { + "question": "অসমৰ লোকসকলৰ বাবে সবাতোকৈ জনপ্ৰিয় দেশীয় অৱকাশ যাপন স্থানটো কি?", + "en_question": "What is the most popular domestic vacation spot for people from your country?", + "annotations": [ + { + "answers": [ + "গুৱাহাটী" + ], + "en_answers": [ + "guwahati" + ], + "count": 1 + }, + { + "answers": [ + "শিৱসাগ​ৰ" + ], + "en_answers": [ + "sivasagar" + ], + "count": 1 + }, + { + "answers": [ + "লখিমপুৰ" + ], + "en_answers": [ + "lakhimpur" + ], + "count": 1 + }, + { + "answers": [ + "কাজিৰঙা" + ], + "en_answers": [ + "kaziranga" + ], + "count": 1 + }, + { + "answers": [ + "শিলং" + ], + "en_answers": [ + "shillong" + ], + "count": 1 + }, + { + "answers": [ + "বিনোদন উদ্যান" + ], + "en_answers": [ + "amusement park" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-38": { + "question": "অসমত কন্যা আৰু বৰৰ মাজত সবাতোকৈ সাধাৰণ বিবাহৰ উপহাৰটো কি?", + "en_question": "What is the most common wedding gift between bride and groom in your country?", + "annotations": [ + { + "answers": [ + "আঙুঠি" + ], + "en_answers": [ + "ring" + ], + "count": 3 + }, + { + "answers": [ + "ফুল" + ], + "en_answers": [ + "flower" + ], + "count": 1 + }, + { + "answers": [ + "টকা পইচা" + ], + "en_answers": [ + "money" + ], + "count": 1 + }, + { + "answers": [ + "সোনৰ অলংকাৰ" + ], + "en_answers": [ + "gold jewelry" + ], + "count": 1 + }, + { + "answers": [ + "পোচাক" + ], + "en_answers": [ + "clothes" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-39": { + "question": "অসমত এজন বন্ধুৰ বিয়াত উপস্থিত থাকোঁতে সাধাৰণতে কি উপহাৰ হিচাপে দিয়া হয়?", + "en_question": "What is typically given as a congratulatory gesture when attending a friend's wedding in your country?", + "annotations": [ + { + "answers": [ + "ঘড়ী" + ], + "en_answers": [ + "clock" + ], + "count": 2 + }, + { + "answers": [ + "শ​ৰাই", + "খৰাই" + ], + "en_answers": [ + "xorai", + "dry" + ], + "count": 2 + }, + { + "answers": [ + "ফুলৰ বুকে", + "ঘৰত ব্যৱহিত বস্তু" + ], + "en_answers": [ + "flower", + "items used at home" + ], + "count": 2 + }, + { + "answers": [ + "পোচাক", + "কাপোৰ" + ], + "en_answers": [ + "clothes" + ], + "count": 2 + }, + { + "answers": [ + "সঁফুৰা" + ], + "en_answers": [ + "xophura" + ], + "count": 1 + }, + { + "answers": [ + "টকা পইচা" + ], + "en_answers": [ + "money" + ], + "count": 1 + }, + { + "answers": [ + "বটা" + ], + "en_answers": [ + "bota" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-40": { + "question": "অসমত এটা শ্ৰাদ্ধ সাধাৰণতে কিমান দিন ধৰি চলে? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)", + "en_question": "How long (in days) does a funeral typically last in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "13" + ], + "en_answers": [ + "13" + ], + "count": 2 + }, + { + "answers": [ + "16" + ], + "en_answers": [ + "16" + ], + "count": 2 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 2 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + }, + { + "answers": [ + "11" + ], + "en_answers": [ + "11" + ], + "count": 1 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-41": { + "question": "অসমত এক শ্ৰাদ্ধাঞ্জলি অনুষ্ঠানত উপস্থিত হ'লে আপুনি কি প্ৰস্তুত কৰিব লাগে?", + "en_question": "What should you prepare as a condolence offering when attending a funeral in your country?", + "annotations": [ + { + "answers": [ + "ফুল​ৰ মালা", + "ফুলৰ মালা" + ], + "en_answers": [ + "garland of flowers", + "flower garland" + ], + "count": 2 + }, + { + "answers": [ + "চাকি বন্তি" + ], + "en_answers": [ + "matchstick" + ], + "count": 1 + }, + { + "answers": [ + "ফল", + "ফল মূল" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + }, + { + "answers": [ + "মূল", + "ফল মূল" + ], + "en_answers": [ + "vegetable" + ], + "count": 1 + }, + { + "answers": [ + "বুট মগু" + ], + "en_answers": [ + "peas and beans" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Na-ko-42": { + "question": "অসমৰ শ্মশান ঘৰসমূহত সাধাৰণতে কি ধৰণৰ খাদ্য প্ৰদান কৰা হয়?", + "en_question": "What type of food is commonly provided at funeral parlors in your country?", + "annotations": [ + { + "answers": [ + "ফল", + "ফল মূল" + ], + "en_answers": [ + "fruit" + ], + "count": 3 + }, + { + "answers": [ + "মূল", + "ফল মূল" + ], + "en_answers": [ + "vegetable" + ], + "count": 3 + }, + { + "answers": [ + "বুট মগু" + ], + "en_answers": [ + "peas and beans" + ], + "count": 2 + }, + { + "answers": [ + "প্ৰসাদ" + ], + "en_answers": [ + "prasada", + "prasadam", + "prasad" + ], + "count": 1 + }, + { + "answers": [ + "বুট" + ], + "en_answers": [ + "pea" + ], + "count": 1 + }, + { + "answers": [ + "পানী" + ], + "en_answers": [ + "water" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-43": { + "question": "অসমত লোকে (চন্দ্ৰ) নৱবৰ্ষৰ পুৱা কি কৰে?", + "en_question": "What do people do in your country in the morning of the (Lunar) New Year?", + "annotations": [ + { + "answers": [ + "পুজা ক​ৰে", + "সুৰ্য্য প্ৰনাম কৰে" + ], + "en_answers": [ + "puja", + "worship", + "salutes the sun" + ], + "count": 2 + }, + { + "answers": [ + "সকলোৰে মংগল​ৰ বাবে প্ৰাৰ্থনা জনায়​" + ], + "en_answers": [ + "praying for everyone's well-being" + ], + "count": 1 + }, + { + "answers": [ + "জেষ্ঠ্য জনক সেৱা কৰে" + ], + "en_answers": [ + "serves the elder" + ], + "count": 1 + }, + { + "answers": [ + "জলপান খায়" + ], + "en_answers": [ + "eats snacks" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 1 + } + }, + "Na-ko-44": { + "question": "অসমৰ সৰ্বাধিক গুৰুতৰ ৰাষ্ট্ৰীয় যান-জঁটৰ দিনটো কেতিয়া?", + "en_question": "When is the day with your country's most severe nationwide traffic congestion?", + "annotations": [ + { + "answers": [ + "নিৰ্বাচনৰ প্ৰচাৰৰ দিন" + ], + "en_answers": [ + "election campaign day" + ], + "count": 2 + }, + { + "answers": [ + "মন্ত্ৰীৰ মিতিং থকা দিন" + ], + "en_answers": [ + "day of the minister's meeting" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 1 + } + }, + "Na-ko-45": { + "question": "অসমত হানিমুনৰ বাবে সবাতোকৈ জনপ্ৰিয় গন্তব্যস্থানটো কি?", + "en_question": "What is the most popular honeymoon destination in your country?", + "annotations": [ + { + "answers": [ + "শ্বিলঙ", + "শ্বীলং", + "ছিলং" + ], + "en_answers": [ + "shillong" + ], + "count": 3 + }, + { + "answers": [ + "কাজিৰঙা" + ], + "en_answers": [ + "kaziranga" + ], + "count": 1 + }, + { + "answers": [ + "গুৱাহাটী" + ], + "en_answers": [ + "guwahati" + ], + "count": 1 + }, + { + "answers": [ + "তাৱাং" + ], + "en_answers": [ + "tawang" + ], + "count": 1 + }, + { + "answers": [ + "মায়দিয়া" + ], + "en_answers": [ + "mayodia" + ], + "count": 1 + }, + { + "answers": [ + "মানালী" + ], + "en_answers": [ + "manali" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-05": { + "question": "অসমত সবাতোকৈ গুৰুত্বপূৰ্ণ ৰাষ্ট্ৰীয় বন্ধ কি?", + "en_question": "What is the most important national holiday in your country?", + "annotations": [ + { + "answers": [ + "বৰদিনৰ বন্ধ" + ], + "en_answers": [ + "christmas holiday" + ], + "count": 2 + }, + { + "answers": [ + "ইদৰ বন্ধ" + ], + "en_answers": [ + "eid holiday" + ], + "count": 2 + }, + { + "answers": [ + "বিহুৰ বন্ধ" + ], + "en_answers": [ + "bihu holiday" + ], + "count": 2 + }, + { + "answers": [ + "দিৱালী" + ], + "en_answers": [ + "diwali" + ], + "count": 1 + }, + { + "answers": [ + "পুজা" + ], + "en_answers": [ + "puja" + ], + "count": 1 + }, + { + "answers": [ + "মে' দিৱস" + ], + "en_answers": [ + "may day" + ], + "count": 1 + }, + { + "answers": [ + "দুৰ্গা পূজা" + ], + "en_answers": [ + "durga puja", + "durgotsava", + "sharodotsav" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-06": { + "question": "অসমৰ লোকে ৰমজানত কি খায়?", + "en_question": "What do people from your country eat in Ramadan?", + "annotations": [ + { + "answers": [ + "ফল", + "ফল মূল" + ], + "en_answers": [ + "fruit" + ], + "count": 3 + }, + { + "answers": [ + "মূল", + "ফল মূল" + ], + "en_answers": [ + "vegetable" + ], + "count": 1 + }, + { + "answers": [ + "পোলাও পনীৰ" + ], + "en_answers": [ + "pulao paneer" + ], + "count": 1 + }, + { + "answers": [ + "পোলাও" + ], + "en_answers": [ + "pilaf", + "pilav", + "pilau" + ], + "count": 1 + }, + { + "answers": [ + "তৰবুজ" + ], + "en_answers": [ + "watermelon" + ], + "count": 1 + }, + { + "answers": [ + "আঙুৰ" + ], + "en_answers": [ + "grape" + ], + "count": 1 + }, + { + "answers": [ + "কাচতাৰ্দ" + ], + "en_answers": [ + "spectacles" + ], + "count": 1 + }, + { + "answers": [ + "বুটৰ ভাজি" + ], + "en_answers": [ + "fried chickpeas" + ], + "count": 1 + }, + { + "answers": [ + "খেজুৰ" + ], + "en_answers": [ + "dates" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-09": { + "question": "অসমৰ মানুহে ঈদ উল ফিটৰত কি খায়?", + "en_question": "What do people from your country eat in Eid ul Fitr?", + "annotations": [ + { + "answers": [ + "মিঠাই" + ], + "en_answers": [ + "sweets" + ], + "count": 2 + }, + { + "answers": [ + "ফল", + "ফল মুল", + "পোলাও" + ], + "en_answers": [ + "fruit", + "pilaf", + "pilav", + "pilau" + ], + "count": 2 + }, + { + "answers": [ + "বিৰিয়ানি", + "বিৰিয়ানী" + ], + "en_answers": [ + "biryani" + ], + "count": 2 + }, + { + "answers": [ + "মাছ মাংস​" + ], + "en_answers": [ + "fish meat" + ], + "count": 1 + }, + { + "answers": [ + "মাংশ পোলাও" + ], + "en_answers": [ + "meat pilaf", + "meat pilav", + "meat pilau" + ], + "count": 1 + }, + { + "answers": [ + "চেৱৈ" + ], + "en_answers": [ + "semolina" + ], + "count": 1 + }, + { + "answers": [ + "মূল", + "ফল মুল" + ], + "en_answers": [ + "vegetable" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-10": { + "question": "অসমৰ মানুহে ঈদ-উল-আজহাৰ দিনটোত কি খায়?", + "en_question": "What do people from your country eat in Eid ul Adha?", + "annotations": [ + { + "answers": [ + "বিৰিয়ানি", + "বিৰিয়ানী" + ], + "en_answers": [ + "biryani" + ], + "count": 3 + }, + { + "answers": [ + "মাছ মাংস​" + ], + "en_answers": [ + "fish meat" + ], + "count": 1 + }, + { + "answers": [ + "মাংশ পোলাও" + ], + "en_answers": [ + "meat pilaf", + "meat pilav", + "meat pilau" + ], + "count": 1 + }, + { + "answers": [ + "চেৱৈ" + ], + "en_answers": [ + "semolina" + ], + "count": 1 + }, + { + "answers": [ + "ফল মুল" + ], + "en_answers": [ + "fruits and vegetables" + ], + "count": 1 + }, + { + "answers": [ + "মিঠাই" + ], + "en_answers": [ + "sweets" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-11": { + "question": "অসমীয় লোকে নৱবৰ্ষৰ দিনটো উদযাপন কৰিবলৈ ক'লৈ যায়?", + "en_question": "Where do people from your country go to celebrate New Year's Day?", + "annotations": [ + { + "answers": [ + "পিকনিক ক​ৰা স্থানলৈ", + "বনভোজ খাবলৈ" + ], + "en_answers": [ + "picnic" + ], + "count": 2 + }, + { + "answers": [ + "ঘৰ", + "ঘৰতে কৰে" + ], + "en_answers": [ + "house", + "home" + ], + "count": 2 + }, + { + "answers": [ + "নদীৰ পাৰলৈ" + ], + "en_answers": [ + "river bank" + ], + "count": 1 + }, + { + "answers": [ + "পথাৰলৈ" + ], + "en_answers": [ + "field" + ], + "count": 1 + }, + { + "answers": [ + "মন্দিৰ" + ], + "en_answers": [ + "temple" + ], + "count": 1 + }, + { + "answers": [ + "আত্মীয়ৰ ঘৰলৈ যায়" + ], + "en_answers": [ + "relative's" + ], + "count": 1 + }, + { + "answers": [ + "বন্ধুৰ ঘৰলৈ যায়" + ], + "en_answers": [ + "friend's" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-14": { + "question": "অসমত ঈদৰ উৎসৱত এটা পৰিয়ালে ক'ত সমবেত হয়?", + "en_question": "Where do a family gather for Eid festivities in your country?", + "annotations": [ + { + "answers": [ + "মছজিদ", + "মছজিদ ত" + ], + "en_answers": [ + "mosque", + "in the mosque" + ], + "count": 3 + }, + { + "answers": [ + "নিজ গৃহত" + ], + "en_answers": [ + "home", + "house" + ], + "count": 1 + }, + { + "answers": [ + "ঈদগাঢ়" + ], + "en_answers": [ + "eidgah" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-16": { + "question": "অসমত ছুটিৰ দিনবোৰ কেতিয়া (উদাহৰণস্বৰূপে সোমবাৰ, মঙ্গলবাৰ)?", + "en_question": "When is the weekend in your country (e.g. Monday, Tuesday)?", + "annotations": [ + { + "answers": [ + "দেওবাৰ", + "ৰবিবাৰ", + "দেউবাৰ" + ], + "en_answers": [ + "sunday" + ], + "count": 5 + }, + { + "answers": [ + "মাহৰ দ্বিতীয় শণিবাৰ" + ], + "en_answers": [ + "second saturday of the month" + ], + "count": 1 + }, + { + "answers": [ + "মাহৰ চতুৰ্থ শণিবাৰ" + ], + "en_answers": [ + "fourth saturday of the month" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-17": { + "question": "অসমত বেছিভাগ লোকে কেতিয়া কাম আৰম্ভ কৰে? (HH:MM ফৰ্মেটত প্ৰদান কৰক (যেনে, 18:00, 09:00).)", + "en_question": "At what time do most people start work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 4 + }, + { + "answers": [ + "09:30" + ], + "en_answers": [ + "09:30" + ], + "count": 2 + }, + { + "answers": [ + "10:00" + ], + "en_answers": [ + "10:00" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-18": { + "question": "অসমত বেছিভাগ লোকে কেতিয়া কাম শেষ কৰে? (HH:MM ফৰ্মেটত প্ৰদান কৰক (যেনে, 18:00, 09:00).)", + "en_question": "At what time do most people finish work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "17:00", + "05:00" + ], + "en_answers": [ + "17:00" + ], + "count": 4 + }, + { + "answers": [ + "17:30" + ], + "en_answers": [ + "17:30" + ], + "count": 2 + }, + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 1 + }, + { + "answers": [ + "16:00", + "04:00" + ], + "en_answers": [ + "16:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-20": { + "question": "অসমত নিৰাপদ চাকৰি বুলি কি বিবেচিত হয়?", + "en_question": "What is considered to be a secure job in your country?", + "annotations": [ + { + "answers": [ + "চৰকাৰী চাকৰি", + "চ​ৰকাৰী চাক​ৰি" + ], + "en_answers": [ + "government job" + ], + "count": 4 + }, + { + "answers": [ + "শিক্ষক" + ], + "en_answers": [ + "teacher" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-24": { + "question": "অসমৰ প্ৰাথমিক বাণিজ্যিক কেন্দ্ৰটো কোন চহৰত অৱস্থিত?", + "en_question": "Which city is the primary commercial hub in your country?", + "annotations": [ + { + "answers": [ + "গুৱাহাটী" + ], + "en_answers": [ + "guwahati" + ], + "count": 4 + }, + { + "answers": [ + "যোৰহাট" + ], + "en_answers": [ + "jorhat" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-25": { + "question": "অসমত কোনটো শিল্পে সৰ্বাধিক দৰমহা দিয়ে?", + "en_question": "What is the industry that pays the best in your country?", + "annotations": [ + { + "answers": [ + "তথ্য প্ৰযুক্তি", + "প্ৰযুক্তিবিদ্যা" + ], + "en_answers": [ + "information technology", + "technology" + ], + "count": 2 + }, + { + "answers": [ + "স্বাস্থ্যসেৱা" + ], + "en_answers": [ + "healthcare" + ], + "count": 1 + }, + { + "answers": [ + "বানিজ্য বেপাৰ" + ], + "en_answers": [ + "commerce business" + ], + "count": 1 + }, + { + "answers": [ + "খাদি" + ], + "en_answers": [ + "khadi" + ], + "count": 1 + }, + { + "answers": [ + "তৈল উদ্যোগ" + ], + "en_answers": [ + "oil industry" + ], + "count": 1 + }, + { + "answers": [ + "চাহ উদ্যোগ" + ], + "en_answers": [ + "tea industry" + ], + "count": 1 + }, + { + "answers": [ + "পাট মূগা উদ্যোগ" + ], + "en_answers": [ + "silk industry" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-26": { + "question": "অসমৰ আটাইতকৈ বিখ্যাত পাব্লিক কৰ্পোৰেচনটো কি?", + "en_question": "What is the most famous public corporation in your country?", + "annotations": [ + { + "answers": [ + "অসম গেছ কোম্পানী লিমিটেড" + ], + "en_answers": [ + "assam gas company limited" + ], + "count": 1 + }, + { + "answers": [ + "অসম শক্তি বিতৰণ কোম্পানী লিমিটেড" + ], + "en_answers": [ + "assam power distribution company limited" + ], + "count": 1 + }, + { + "answers": [ + "চাহ নিলাম কেন্দ্ৰ" + ], + "en_answers": [ + "tea auction center" + ], + "count": 1 + }, + { + "answers": [ + "অইল" + ], + "en_answers": [ + "oil india" + ], + "count": 1 + }, + { + "answers": [ + "ও.ন.জী.চী" + ], + "en_answers": [ + "o.n.g.c. (oil and natural gas corporation)" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-31": { + "question": "অসমৰ আটাইতকৈ বিখ্যাত খাদ্যবিধ কি?", + "en_question": "What is the most famous dish in your country?", + "annotations": [ + { + "answers": [ + "খাৰ", + "খাঢ়", + "মাটিমাহৰ খাৰ" + ], + "en_answers": [ + "alkaline", + "black gram alkaline" + ], + "count": 2 + }, + { + "answers": [ + "ভাত" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "তামোল পান" + ], + "en_answers": [ + "betel nuts and leaves" + ], + "count": 1 + }, + { + "answers": [ + "মাছৰ টেঙা" + ], + "en_answers": [ + "fish sour", + "maasor tenga", + "sour fish curry" + ], + "count": 1 + }, + { + "answers": [ + "ঢেঁকিয়া" + ], + "en_answers": [ + "fern" + ], + "count": 1 + }, + { + "answers": [ + "বৰাচাউলৰ জলপান" + ], + "en_answers": [ + "bora rice snack" + ], + "count": 1 + }, + { + "answers": [ + "তিল পিঠা" + ], + "en_answers": [ + "til pitha", + "tel pitha", + "kholachaparia pitha", + "sesame rice cake" + ], + "count": 1 + }, + { + "answers": [ + "হাঁহ কোমোৰা" + ], + "en_answers": [ + "duck curry" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-32": { + "question": "অসমত মানুহে সাধাৰণতে প্ৰাতঃৰাশত কি খায়?", + "en_question": "What do people usually have for breakfast in your country?", + "annotations": [ + { + "answers": [ + "জলপান" + ], + "en_answers": [ + "snacks" + ], + "count": 3 + }, + { + "answers": [ + "ভাত" + ], + "en_answers": [ + "rice" + ], + "count": 2 + }, + { + "answers": [ + "ৰুটি-ভাজি", + "ৰুটি ভাজি" + ], + "en_answers": [ + "puri vaji", + "fried roti", + "flatbread and vegetable fries" + ], + "count": 1 + }, + { + "answers": [ + "চাহ" + ], + "en_answers": [ + "tea" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "Ne-ar-33": { + "question": "অসমত মানুহে সাধাৰণতে দুপৰীয়াৰ আহাৰ কেতিয়া খায়? (HH:MM ফৰ্মেটত প্ৰদান কৰক (যেনে, 18:00, 09:00)।)", + "en_question": "When do people usually have lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "14:00", + "02:00" + ], + "en_answers": [ + "14:00" + ], + "count": 5 + }, + { + "answers": [ + "13:30" + ], + "en_answers": [ + "13:30" + ], + "count": 1 + }, + { + "answers": [ + "14:30" + ], + "en_answers": [ + "14:30" + ], + "count": 1 + }, + { + "answers": [ + "15:00", + "03:00" + ], + "en_answers": [ + "15:00" + ], + "count": 1 + }, + { + "answers": [ + "12:30" + ], + "en_answers": [ + "12:30" + ], + "count": 1 + }, + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-34": { + "question": "অসমত খাদ্যত সাধাৰণতে কি অপৰিহাৰ্য?", + "en_question": "What is typically indispensable in meals in your country?", + "annotations": [ + { + "answers": [ + "চাউল", + "ভাত" + ], + "en_answers": [ + "rice" + ], + "count": 3 + }, + { + "answers": [ + "নিমখ" + ], + "en_answers": [ + "salt" + ], + "count": 1 + }, + { + "answers": [ + "আলু" + ], + "en_answers": [ + "potato" + ], + "count": 1 + }, + { + "answers": [ + "পিতিকা" + ], + "en_answers": [ + "petika", + "pitika" + ], + "count": 1 + }, + { + "answers": [ + "জলকিয়া" + ], + "en_answers": [ + "chili pepper" + ], + "count": 1 + }, + { + "answers": [ + "দালি" + ], + "en_answers": [ + "bucket" + ], + "count": 1 + }, + { + "answers": [ + "হালধি" + ], + "en_answers": [ + "turmeric" + ], + "count": 1 + }, + { + "answers": [ + "মিঠিগুটি" + ], + "en_answers": [ + "methi seeds", + "fenugreek" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-36": { + "question": "অসমত উৎসৱৰ সময়ত এক পৰম্পৰাগত খাদ্য কি?", + "en_question": "What is a typical festive meal in your country?", + "annotations": [ + { + "answers": [ + "পিঠা", + "পিঠা পনা" + ], + "en_answers": [ + "rice cake" + ], + "count": 4 + }, + { + "answers": [ + "লাৰু", + "নাৰিকলৰ লাৰু" + ], + "en_answers": [ + "ladoo", + "laddu", + "laru", + "coconut laddu" + ], + "count": 2 + }, + { + "answers": [ + "বৰাচাউলৰ পিঠা" + ], + "en_answers": [ + "bora rice cake" + ], + "count": 1 + }, + { + "answers": [ + "কল পিঠা" + ], + "en_answers": [ + "banana rice cake" + ], + "count": 1 + }, + { + "answers": [ + "জলপান" + ], + "en_answers": [ + "snacks" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-37": { + "question": "অসমত বিদেশী পৰ্যটক/অতিথিক সাধাৰণতে লোকে কোন ফল প্ৰদান কৰে?", + "en_question": "Which fruit do people usually offer tourists/visitors from abroad in your country?", + "annotations": [ + { + "answers": [ + "কল" + ], + "en_answers": [ + "banana" + ], + "count": 2 + }, + { + "answers": [ + "কাজিনেমু", + "গোলনেমু" + ], + "en_answers": [ + "lemon", + "round lemon" + ], + "count": 1 + }, + { + "answers": [ + "অমিতা" + ], + "en_answers": [ + "papaya" + ], + "count": 1 + }, + { + "answers": [ + "মাতি কথাল" + ], + "en_answers": [ + "pineapple" + ], + "count": 1 + }, + { + "answers": [ + "শিলিখা" + ], + "en_answers": [ + "chebulic myrobalan" + ], + "count": 1 + }, + { + "answers": [ + "জামু" + ], + "en_answers": [ + "guava" + ], + "count": 1 + }, + { + "answers": [ + "আমলখি" + ], + "en_answers": [ + "gooseberry" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ne-ar-38": { + "question": "অসমত লোকে সাধাৰণতে কোন খাদ্য দান কৰে?", + "en_question": "Which food do people usually offer as charity in your country?", + "annotations": [ + { + "answers": [ + "ভাত", + "চাউল" + ], + "en_answers": [ + "rice" + ], + "count": 5 + }, + { + "answers": [ + "কলা তিল" + ], + "en_answers": [ + "black mole" + ], + "count": 1 + }, + { + "answers": [ + "নাৰিকল" + ], + "en_answers": [ + "coconut" + ], + "count": 1 + }, + { + "answers": [ + "ফলমূল" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-39": { + "question": "অসমত সবাতোকৈ সস্তা ফাষ্ট ফুডটো কি?", + "en_question": "What is the cheapest fast food in your country?", + "annotations": [ + { + "answers": [ + "মেগি", + "মেগী" + ], + "en_answers": [ + "maggi" + ], + "count": 2 + }, + { + "answers": [ + "চাউমিন", + "চাওমিন" + ], + "en_answers": [ + "chowmein" + ], + "count": 2 + }, + { + "answers": [ + "বাৰ্গাৰ" + ], + "en_answers": [ + "burger" + ], + "count": 1 + }, + { + "answers": [ + "ৰʼল" + ], + "en_answers": [ + "roll" + ], + "count": 1 + }, + { + "answers": [ + "ম'ম'" + ], + "en_answers": [ + "dumpling" + ], + "count": 1 + }, + { + "answers": [ + "ফুচকা" + ], + "en_answers": [ + "panipuri", + "pani puri" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-43": { + "question": "অসমত লোকে সাধাৰণতে চাহৰ সৈতে কি খায়?", + "en_question": "What do people usually have with tea in your country?", + "annotations": [ + { + "answers": [ + "বিস্কুট", + "বিস্কুত", + "বিচকিট" + ], + "en_answers": [ + "biscuit" + ], + "count": 5 + }, + { + "answers": [ + "পিঠা", + "মিথৈ" + ], + "en_answers": [ + "rice cake", + "rice ball" + ], + "count": 3 + }, + { + "answers": [ + "ৰুটি" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "ভূজীয়া" + ], + "en_answers": [ + "bhujia" + ], + "count": 1 + }, + { + "answers": [ + "নাৰিকলৰ লাৰু" + ], + "en_answers": [ + "coconut laddu" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-44": { + "question": "অসমত লোকে কফিৰ সৈতে কি খায়?", + "en_question": "What do people have with coffee in your country?", + "annotations": [ + { + "answers": [ + "বিস্কুট", + "বিস্কুত", + "বিচকিট" + ], + "en_answers": [ + "biscuit" + ], + "count": 5 + }, + { + "answers": [ + "চানা", + "ভূজীয়া" + ], + "en_answers": [ + "moon", + "bhujia" + ], + "count": 2 + }, + { + "answers": [ + "কেক" + ], + "en_answers": [ + "cake" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-02": { + "question": "অসমত সবাতোকৈ জনপ্ৰিয় পাৰম্পৰিক খাদ্য কি?", + "en_question": "What is the most popular traditional food in your country?", + "annotations": [ + { + "answers": [ + "হাঁহ আৰু কোমোৰা", + "হাঁহ অৰু কোমোৰা", + "হাহ কোমোৰা", + "হাঁহ- কোমোৰা" + ], + "en_answers": [ + "duck with ash gourd", + "duck curry" + ], + "count": 3 + }, + { + "answers": [ + "ঔটেঙা দিয়া বৰালি মাছ", + "ঔটেঙা দিয়া ব​ৰালি মাছ", + "মাছৰ টেঙা" + ], + "en_answers": [ + "fish with elephant apple", + "wallago fish and elephant apple", + "fish sour", + "maasor tenga", + "sour fish curry" + ], + "count": 2 + }, + { + "answers": [ + "বৰা চাউলৰ পিঠা", + "বৰাচাউলৰ পিঠা", + "তিল পিঠা", + "তিলপিঠা" + ], + "en_answers": [ + "bora rice cake", + "til pitha", + "tel pitha", + "kholachaparia pitha", + "sesame rice cake" + ], + "count": 2 + }, + { + "answers": [ + "খাৰ দিয়া ভাত" + ], + "en_answers": [ + "khar bhat", + "kharani bhaat" + ], + "count": 1 + }, + { + "answers": [ + "কল পিঠা" + ], + "en_answers": [ + "banana pitha" + ], + "count": 1 + }, + { + "answers": [ + "লাৰু" + ], + "en_answers": [ + "ladoo", + "laddu", + "laru" + ], + "count": 1 + }, + { + "answers": [ + "ভাত" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "পঁইতা ভাত" + ], + "en_answers": [ + "fermented rice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-04": { + "question": "অসমত সবাতোকৈ জনপ্ৰিয় ডুবাই খোৱা চাটনি কি?", + "en_question": "What is the most popular dipping sauce in your country?", + "annotations": [ + { + "answers": [ + "পদুনা চাটনি", + "পুদিনা চাটনি", + "পদুনা চাট্ নি", + "পদিনা চাটনি" + ], + "en_answers": [ + "mint chutney" + ], + "count": 4 + }, + { + "answers": [ + "ধনিয়া চাটনি", + "ধনীয়া চাট্ নি" + ], + "en_answers": [ + "coriander chutney" + ], + "count": 2 + }, + { + "answers": [ + "মগু দাইলৰ চাটনি", + "মগুদালিৰ চাটনি" + ], + "en_answers": [ + "moong dal chutney" + ], + "count": 2 + }, + { + "answers": [ + "নৰসিংহ চাটনি" + ], + "en_answers": [ + "narsingha chutney" + ], + "count": 1 + }, + { + "answers": [ + "বাদাম চাটনি" + ], + "en_answers": [ + "peanut chutney" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-am-08": { + "question": "অসমত খ্ৰীষ্টানসকলৰ উপবাসৰ সময়ত সৰ্বাধিক ভাবে কি খাদ্য গ্ৰহণ কৰা হয়?", + "en_question": "What food is most often consumed during Christian fasting in your country?", + "annotations": [ + { + "answers": [ + "ফল​ৰ ৰস", + "ফলৰ ৰস" + ], + "en_answers": [ + "fruit juice" + ], + "count": 2 + }, + { + "answers": [ + "পানী" + ], + "en_answers": [ + "water" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-am-15": { + "question": "অসমত মাতৃয়ে সন্তান জন্ম দিলে সাধাৰণতে কি খাদ্য প্ৰস্তুত কৰা হয়?", + "en_question": "What food is usually prepared when mothers give birth in your country?", + "annotations": [ + { + "answers": [ + "কচু শাক" + ], + "en_answers": [ + "taro leaves" + ], + "count": 1 + }, + { + "answers": [ + "বন শাক" + ], + "en_answers": [ + "wild vegetables" + ], + "count": 1 + }, + { + "answers": [ + "পন্চাম্ৰীত" + ], + "en_answers": [ + "panchamrit" + ], + "count": 1 + }, + { + "answers": [ + "পায়খ" + ], + "en_answers": [ + "rice pudding" + ], + "count": 1 + }, + { + "answers": [ + "মছলা নোহোৱা খাদ্য" + ], + "en_answers": [ + "food without spices" + ], + "count": 1 + }, + { + "answers": [ + "মাছৰ জালুকীয়া", + "শাকৰ সতে জীয়া মাছৰ জোল" + ], + "en_answers": [ + "fish with black pepper", + "fish curry with leafy greens" + ], + "count": 1 + }, + { + "answers": [ + "কচুশাকৰ জালুকীয়া", + "বনশাকৰ জালুকীয়া" + ], + "en_answers": [ + "pepper leafy vegetables", + "wild leafy pepper" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-27": { + "question": "অসমত সবাতোকৈ জনপ্ৰিয় মহিলা ক্ৰীড়াবিদ কোন?", + "en_question": "Who is the most popular female sportperson in your country?", + "annotations": [ + { + "answers": [ + "হিমা দাস" + ], + "en_answers": [ + "hima das" + ], + "count": 3 + }, + { + "answers": [ + "লভলিনা বৰগোহাঁই", + "লভলীনা বৰগোহাঁই", + "লভলিনা বুঢ়াগোঁহাই" + ], + "en_answers": [ + "lovlina borgohain" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-34": { + "question": "অসমত অধিকাংশ প্ৰাথমিক বিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে তেওঁলোকৰ পৰীক্ষাৰ বাবে ক'ত প্ৰস্তুতি কৰে?", + "en_question": "Where do most elementary school students prepare for their exams in your country?", + "annotations": [ + { + "answers": [ + "ঘৰত", + "ঘ​ৰত", + "নিজৰ ঘৰত" + ], + "en_answers": [ + "home", + "house", + "at one's own home" + ], + "count": 4 + }, + { + "answers": [ + "বিদ্য়াল​য়​ৰ লাইব্ৰেৰীত", + "লাইব্ৰেৰী" + ], + "en_answers": [ + "library" + ], + "count": 2 + }, + { + "answers": [ + "স্কুল", + "বিদ্যাল়য়ত" + ], + "en_answers": [ + "school", + "at school" + ], + "count": 2 + }, + { + "answers": [ + "হোস্তেলত" + ], + "en_answers": [ + "hostel" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-41": { + "question": "অসমত ছাত্ৰ-ছাত্ৰীসকলে কোন শ্ৰেণীত প্ৰথম জাতীয় পৰ্যায়ৰ পৰীক্ষা দিয়ে?", + "en_question": "In your country, at which grade level do students take their first national-level examination?", + "annotations": [ + { + "answers": [ + "5", + "পঞ্চম শ্ৰেণীত" + ], + "en_answers": [ + "5th grade", + "fifth grade" + ], + "count": 2 + }, + { + "answers": [ + "1", + "প্ৰথম শ্ৰণীত" + ], + "en_answers": [ + "1st grade", + "first grade", + "in the first class" + ], + "count": 2 + }, + { + "answers": [ + "4", + "চতুৰ্থ শ্ৰেণী" + ], + "en_answers": [ + "4th grade", + "fourth grade" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10th grade", + "tenth grade" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-53": { + "question": "অসমৰ কোন অঞ্চলটো তেওঁলোকৰ কফি/চাহ উদ্যোগৰ বাবে ব্যাপকভাৱে জনাজাত?", + "en_question": "Which region in your country is widely known for its coffee/tea industry?", + "annotations": [ + { + "answers": [ + "ডিব্ৰুগড়", + "ডিব্ৰুগৰ", + "ডিব্ৰুগড়" + ], + "en_answers": [ + "dibrugarh" + ], + "count": 4 + }, + { + "answers": [ + "যোৰহাট" + ], + "en_answers": [ + "jorhat" + ], + "count": 2 + }, + { + "answers": [ + "হাফলং" + ], + "en_answers": [ + "haflong" + ], + "count": 1 + }, + { + "answers": [ + "তিনিচুকিয়া" + ], + "en_answers": [ + "tinsukia" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-54": { + "question": "অসমৰ কোন অঞ্চলটো ইয়াৰ পশুপালন শিল্পৰ বাবে ব্যাপকভাৱে জনাজাত?", + "en_question": "Which region in your country is widely known for its livestock industry?", + "annotations": [ + { + "answers": [ + "নগাঁও" + ], + "en_answers": [ + "nagaon" + ], + "count": 2 + }, + { + "answers": [ + "বৰপেটা" + ], + "en_answers": [ + "barpeta" + ], + "count": 1 + }, + { + "answers": [ + "হাউলি" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "সকলো অঞ্চল" + ], + "en_answers": [ + "all" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 1 + } + }, + "New-am-59": { + "question": "অসমৰ মৰুভূমিত বাস কৰা লোকসকলৰ মুখ্য পেছা কি?", + "en_question": "What is the main occupation of people living in deserts in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "New-am-60": { + "question": "অসমত পৰিবহনৰ বাবে সাধাৰণতে কোন জন্তুটো ব্যৱহাৰ কৰা হয়?", + "en_question": "Which animal is typically used for transportation in your country?", + "annotations": [ + { + "answers": [ + "হাতী" + ], + "en_answers": [ + "elephant" + ], + "count": 1 + }, + { + "answers": [ + "ঘোঁৰা" + ], + "en_answers": [ + "horse" + ], + "count": 1 + }, + { + "answers": [ + "গৰু" + ], + "en_answers": [ + "cow" + ], + "count": 1 + }, + { + "answers": [ + "মহ" + ], + "en_answers": [ + "buffalo" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 0, + "no-answer": 0 + } + }, + "New-am-72": { + "question": "অসমত শিশুসকলে পঢ়িবলৈ সবাতোকৈ জনপ্ৰিয় কমিকছ কিতাপখন কি?", + "en_question": "What is the most popular comic book for children to read in your country?", + "annotations": [ + { + "answers": [ + "ৰংমন", + "ৰংমন​" + ], + "en_answers": [ + "rongmon" + ], + "count": 3 + }, + { + "answers": [ + "চাচা চৌধুৰী" + ], + "en_answers": [ + "chacha chaudhary" + ], + "count": 1 + }, + { + "answers": [ + "মাৰ্ভেল" + ], + "en_answers": [ + "marvel" + ], + "count": 1 + }, + { + "answers": [ + "টিংকল" + ], + "en_answers": [ + "tinkle" + ], + "count": 1 + }, + { + "answers": [ + "আকবৰ আৰু বীৰবল" + ], + "en_answers": [ + "akbar and birbal" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-73": { + "question": "অসমত শিশুসকলৰ বাবে আটাইতকৈ জনপ্ৰিয় YouTube চেনেলটো কি?", + "en_question": "What is the most popular YouTube channel for children in your country?", + "annotations": [ + { + "answers": [ + "পগ​", + "প'গ'" + ], + "en_answers": [ + "pogo" + ], + "count": 2 + }, + { + "answers": [ + "কাৰ্টুন নেটৱ​ৰ্ক" + ], + "en_answers": [ + "cartoon network" + ], + "count": 1 + }, + { + "answers": [ + "দিম্পু বৰা" + ], + "en_answers": [ + "dimpu bora" + ], + "count": 1 + }, + { + "answers": [ + "খান একাডেমী কিড্চ" + ], + "en_answers": [ + "khan academy kids" + ], + "count": 1 + }, + { + "answers": [ + "মাছ এণ্ডা দা বেৰ" + ], + "en_answers": [ + "fish and the bear" + ], + "count": 1 + }, + { + "answers": [ + "মিষ্টাৰ বিন" + ], + "en_answers": [ + "mr. bean" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-74": { + "question": "অসমত কি সবাতোকৈ জনপ্ৰিয় টক শ্ব' কি?", + "en_question": "What is the most popular talk show in your country?", + "annotations": [ + { + "answers": [ + "দৃষ্টিপাত" + ], + "en_answers": [ + "dristipat" + ], + "count": 2 + }, + { + "answers": [ + "অভিমত​", + "অভিমত" + ], + "en_answers": [ + "obhimot", + "opinion" + ], + "count": 2 + }, + { + "answers": [ + "সেলিব্রেটি শো", + "চেলিব্ৰেটি শ্ব'" + ], + "en_answers": [ + "celebrity show" + ], + "count": 1 + }, + { + "answers": [ + "ডিম্পু বৰুৱা" + ], + "en_answers": [ + "dimpu baruah" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-am-77": { + "question": "অসমত সবাতোকৈ বিখ্যাত ধৰ্মীয় বন্ধ কি?", + "en_question": "What is the most famous religious holiday in your country?", + "annotations": [ + { + "answers": [ + "শংক​ৰদেৱৰ তিথি", + "শংকৰদেৱৰ তিথি" + ], + "en_answers": [ + "sankardev's death anniversary" + ], + "count": 2 + }, + { + "answers": [ + "মাধৱদেৱৰ তিথি" + ], + "en_answers": [ + "madhabdev's death anniversary" + ], + "count": 1 + }, + { + "answers": [ + "বদলা আতাৰ তিথি" + ], + "en_answers": [ + "badala aata's death anniversary" + ], + "count": 1 + }, + { + "answers": [ + "বিহু" + ], + "en_answers": [ + "bihu" + ], + "count": 1 + }, + { + "answers": [ + "হলী" + ], + "en_answers": [ + "holi" + ], + "count": 1 + }, + { + "answers": [ + "বুদ্ধ পূৰ্ণীমা" + ], + "en_answers": [ + "buddha purnima" + ], + "count": 1 + }, + { + "answers": [ + "দুৰ্গা পূজা" + ], + "en_answers": [ + "durga puja" + ], + "count": 1 + }, + { + "answers": [ + "বৰদিন" + ], + "en_answers": [ + "christmas" + ], + "count": 1 + }, + { + "answers": [ + "ঈদ" + ], + "en_answers": [ + "eid" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-81": { + "question": "অসমত বিয়াৰ বাবে আটাইতকৈ ব্যস্ত মাহ কোনটো? (কেৱল আৰবী সংখ্যা (যেনে, 1) প্ৰদান কৰক।)", + "en_question": "What is the busiest month for weddings in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 4 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 3 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + }, + { + "answers": [ + "11" + ], + "en_answers": [ + "11" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-83": { + "question": "অসমত সবাতোকৈ জনপ্ৰিয় পাৰম্পৰিক সংগীত বাদ্যযন্ত্ৰটো কি?", + "en_question": "What is the most popular traditional musical instrument in your country?", + "annotations": [ + { + "answers": [ + "ঢোল", + "ঢোল​", + "ধূল" + ], + "en_answers": [ + "dhol" + ], + "count": 5 + }, + { + "answers": [ + "খোল" + ], + "en_answers": [ + "khol" + ], + "count": 2 + }, + { + "answers": [ + "তাল​", + "তাল" + ], + "en_answers": [ + "taal" + ], + "count": 2 + }, + { + "answers": [ + "পেঁপা", + "পেপা" + ], + "en_answers": [ + "flute" + ], + "count": 2 + }, + { + "answers": [ + "গগনা" + ], + "en_answers": [ + "jaw harp" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-01": { + "question": "অসমত উৎপাদিত প্ৰধান কৃষি পণ্যটো কি?", + "en_question": "What is the main agricultural product produced in your country?", + "annotations": [ + { + "answers": [ + "ধান", + "চাউল" + ], + "en_answers": [ + "rice" + ], + "count": 4 + }, + { + "answers": [ + "চাহ" + ], + "en_answers": [ + "tea" + ], + "count": 2 + }, + { + "answers": [ + "তৰবুজ" + ], + "en_answers": [ + "watermelon" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-02": { + "question": "অসমত গম আধাৰিত সবাতোকৈ জনপ্ৰিয় খাদ্য সামগ্ৰীটো কি?", + "en_question": "What is the most popular wheat-based food item in your country?", + "annotations": [ + { + "answers": [ + "ৰুটি", + "ৰুতি" + ], + "en_answers": [ + "bread" + ], + "count": 4 + }, + { + "answers": [ + "পিঠা" + ], + "en_answers": [ + "rice cake" + ], + "count": 1 + }, + { + "answers": [ + "বিস্কুট" + ], + "en_answers": [ + "biscuit" + ], + "count": 1 + }, + { + "answers": [ + "লাডু" + ], + "en_answers": [ + "laddu" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-05": { + "question": "অসমত অতিথি সকলক ঘৰলৈ অহাৰ সময়ত কি সাধাৰণতে পানীয় প্ৰদান কৰা হয়?", + "en_question": "What is the most typical drink offered to guests when they visit households in your country?", + "annotations": [ + { + "answers": [ + "চাহ" + ], + "en_answers": [ + "tea" + ], + "count": 5 + }, + { + "answers": [ + "চৰ্বত", + "চৰবত" + ], + "en_answers": [ + "sorbet" + ], + "count": 2 + }, + { + "answers": [ + "কফী" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + }, + { + "answers": [ + "নেমুৰ চৰবত" + ], + "en_answers": [ + "lemon juice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-07": { + "question": "অসমত মাছেৰে ৰন্ধা সবাতোকৈ জনপ্ৰিয় খাদ্যবিধ কি?", + "en_question": "What is the most popular dish cooked with fish in your country?", + "annotations": [ + { + "answers": [ + "মাছৰ টেঙা", + "মাছ​ৰ টেঙা", + "টেঙা" + ], + "en_answers": [ + "fish sour", + "maasor tenga", + "sour fish curry" + ], + "count": 4 + }, + { + "answers": [ + "পাতত দিয়া মাছ​", + "পাতত দিয়া মাছ", + "পাতত দিয়া মাছ" + ], + "en_answers": [ + "fish served on a plate" + ], + "count": 3 + }, + { + "answers": [ + "পোৰা মাছ​ৰ পিতিকা", + "পোৰা মাছৰ পিতিকা" + ], + "en_answers": [ + "mashed grilled fish" + ], + "count": 2 + }, + { + "answers": [ + "ভেদাইলতা" + ], + "en_answers": [ + "paederia foetida", + "skunkvine", + "stinkvine", + "pilau maile", + "chinese fever vine" + ], + "count": 1 + }, + { + "answers": [ + "নৰসিংহ পাত", + "নৰসংহৰ পাত" + ], + "en_answers": [ + "curry leaves" + ], + "count": 1 + }, + { + "answers": [ + "ঔটেঙা দি ৰন্ধা খাদ্য" + ], + "en_answers": [ + "food cooked with elephant apple" + ], + "count": 1 + }, + { + "answers": [ + "জিকা মাছৰ জোল" + ], + "en_answers": [ + "fish curry with zika fish" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-14": { + "question": "অসমৰ মানুহে বৰষুণৰ দিনত কি খাদ্য খোৱা পছন্দ কৰে?", + "en_question": "What food do people from your country like to eat during rainy weather?", + "annotations": [ + { + "answers": [ + "পকৰি", + "পক​ৰি", + "পকোৰা" + ], + "en_answers": [ + "pakora", + "fritter" + ], + "count": 4 + }, + { + "answers": [ + "মাংস​", + "মাংস" + ], + "en_answers": [ + "meat" + ], + "count": 2 + }, + { + "answers": [ + "জ্ৱলা চানা", + "চানা ভূজিয়া" + ], + "en_answers": [ + "fried chickpeas" + ], + "count": 2 + }, + { + "answers": [ + "চাহ" + ], + "en_answers": [ + "tea" + ], + "count": 1 + }, + { + "answers": [ + "লুচি মাংস" + ], + "en_answers": [ + "luchi and meat" + ], + "count": 1 + }, + { + "answers": [ + "মাংসৰ জালুকীয়া" + ], + "en_answers": [ + "meat with black pepper" + ], + "count": 1 + }, + { + "answers": [ + "ম'ম'" + ], + "en_answers": [ + "dumpling" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-15": { + "question": "অসমত গৰম বতৰত সাধাৰণতে কি পানীয় খোৱা হয়?", + "en_question": "What drink is commonly consumed in your country when the weather is hot?", + "annotations": [ + { + "answers": [ + "নেমুপানী", + "নেমু চৰবত", + "নেমুটেঙাৰ চৰবত" + ], + "en_answers": [ + "lemon water", + "lemonade" + ], + "count": 3 + }, + { + "answers": [ + "থেকেৰা পানী" + ], + "en_answers": [ + "garcinia water" + ], + "count": 1 + }, + { + "answers": [ + "তেতেলী পানী" + ], + "en_answers": [ + "tamarind water" + ], + "count": 1 + }, + { + "answers": [ + "আম জুচ" + ], + "en_answers": [ + "mango juice" + ], + "count": 1 + }, + { + "answers": [ + "জাম জুচ" + ], + "en_answers": [ + "java plum juice" + ], + "count": 1 + }, + { + "answers": [ + "লিচু জুচ" + ], + "en_answers": [ + "lychee juice" + ], + "count": 1 + }, + { + "answers": [ + "কʼল ড্ৰিচ্ছ" + ], + "en_answers": [ + "cold drinks" + ], + "count": 1 + }, + { + "answers": [ + "আমৰ লাছি" + ], + "en_answers": [ + "mango yogurt drink", + "mango lassi" + ], + "count": 1 + }, + { + "answers": [ + "বেলৰ চৰবত" + ], + "en_answers": [ + "wood apple sherbet" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-20": { + "question": "অসমত কি সবাতোকৈ জনপ্ৰিয় ইনড'ৰ ক্ৰীড়া কি?", + "en_question": "What is the most popular indoor sport in your country?", + "annotations": [ + { + "answers": [ + "লুডু", + "লুদু" + ], + "en_answers": [ + "ludo" + ], + "count": 4 + }, + { + "answers": [ + "কেৰম" + ], + "en_answers": [ + "carrom" + ], + "count": 3 + }, + { + "answers": [ + "দবা", + "চেছ" + ], + "en_answers": [ + "chess" + ], + "count": 2 + }, + { + "answers": [ + "চেংগুটি" + ], + "en_answers": [ + "gili danda" + ], + "count": 1 + }, + { + "answers": [ + "বেডমিন্টন", + "ৱেডমিন্টন" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-29": { + "question": "অসমৰ পুৰুষসকলে কি ক্ৰীড়া চাবলৈ পছন্দ কৰে?", + "en_question": "What sport do men in your country like to watch?", + "annotations": [ + { + "answers": [ + "ফুটবল" + ], + "en_answers": [ + "football" + ], + "count": 4 + }, + { + "answers": [ + "ক্ৰিকেট", + "ক্ৰীকেত" + ], + "en_answers": [ + "cricket" + ], + "count": 4 + }, + { + "answers": [ + "বেডমিন্টন", + "বেডমিনটন" + ], + "en_answers": [ + "badminton" + ], + "count": 2 + }, + { + "answers": [ + "সাতোঁৰ", + "সাতুৰ" + ], + "en_answers": [ + "swimming" + ], + "count": 2 + }, + { + "answers": [ + "দৌৰ" + ], + "en_answers": [ + "race", + "running" + ], + "count": 1 + }, + { + "answers": [ + "দবা", + "চেচ" + ], + "en_answers": [ + "chess" + ], + "count": 1 + }, + { + "answers": [ + "মল্ল যুদ্ধ", + "মল যুদ্ধ" + ], + "en_answers": [ + "wrestling" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-30": { + "question": "অসমৰ মহিলাসকলে কি ধৰণৰ ক্ৰীড়া চাবলৈ পছন্দ কৰে?", + "en_question": "What sport do women in your country like to watch?", + "annotations": [ + { + "answers": [ + "ফুটবল" + ], + "en_answers": [ + "football" + ], + "count": 4 + }, + { + "answers": [ + "ক্ৰিকেট", + "ক্ৰীকেত" + ], + "en_answers": [ + "cricket" + ], + "count": 4 + }, + { + "answers": [ + "বেডমিন্টন", + "বেডমিনটন" + ], + "en_answers": [ + "badminton" + ], + "count": 2 + }, + { + "answers": [ + "সাতোঁৰ", + "সাতুৰ" + ], + "en_answers": [ + "swimming" + ], + "count": 2 + }, + { + "answers": [ + "কাবাডী" + ], + "en_answers": [ + "kabaddi" + ], + "count": 1 + }, + { + "answers": [ + "দবা", + "চেচ" + ], + "en_answers": [ + "chess" + ], + "count": 1 + }, + { + "answers": [ + "মল্ল যুদ্ধ", + "মল যুদ্ধ" + ], + "en_answers": [ + "wrestling" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-58": { + "question": "অসমৰ মানুহে কৰ্মস্থলীত সৰ্বাধিক জনপ্ৰিয় পানীয় কি পান কৰে?", + "en_question": "What is the most popular beverage that people from your country like to drink in their workplace?", + "annotations": [ + { + "answers": [ + "চাহ" + ], + "en_answers": [ + "tea" + ], + "count": 4 + }, + { + "answers": [ + "কফি", + "কফী" + ], + "en_answers": [ + "coffee" + ], + "count": 3 + }, + { + "answers": [ + "পানী" + ], + "en_answers": [ + "water" + ], + "count": 1 + }, + { + "answers": [ + "বিয়েৰ" + ], + "en_answers": [ + "beer" + ], + "count": 1 + }, + { + "answers": [ + "নেমুটেঙাৰ চৰবত" + ], + "en_answers": [ + "lemonade" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-64": { + "question": "অসমত কোন উৎসৱত সকলো পৰিয়ালৰ সদস্যসকল একত্ৰিত হ'বলৈ প্ৰৱণ হয়?", + "en_question": "On which holiday do all family members tend to reunite in your country?", + "annotations": [ + { + "answers": [ + "বিহু" + ], + "en_answers": [ + "bihu" + ], + "count": 5 + }, + { + "answers": [ + "পুজা" + ], + "en_answers": [ + "puja" + ], + "count": 1 + }, + { + "answers": [ + "দুৰ্গা পুজা" + ], + "en_answers": [ + "durga puja" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-76": { + "question": "অসমৰ পাৰম্পৰিক বন্ধত পৰিয়ালে কি কি পাৰম্পৰিক খেল খেলে?", + "en_question": "What traditional games do families play during traditional holidays in your country?", + "annotations": [ + { + "answers": [ + "টেকেলী ভঙা", + "টেকেলি ভঙা" + ], + "en_answers": [ + "breaking the pot" + ], + "count": 2 + }, + { + "answers": [ + "লুডু", + "লুদু" + ], + "en_answers": [ + "ludo" + ], + "count": 2 + }, + { + "answers": [ + "ৰচীটনা" + ], + "en_answers": [ + "tug of war", + "tug-of-war" + ], + "count": 1 + }, + { + "answers": [ + "কণী যুঁজ" + ], + "en_answers": [ + "egg fight" + ], + "count": 1 + }, + { + "answers": [ + "কেৰম" + ], + "en_answers": [ + "carrom" + ], + "count": 1 + }, + { + "answers": [ + "দবা" + ], + "en_answers": [ + "chess" + ], + "count": 1 + }, + { + "answers": [ + "ক্ৰিকেট", + "কৃকেত" + ], + "en_answers": [ + "cricket" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-80": { + "question": "অসমৰ লোকসকলে পাৰম্পৰিক উৎসৱসমূহত কি ধৰণৰ পোছাক পৰিধান কৰে?", + "en_question": "What type of clothing do people from your country wear during traditional festivals?", + "annotations": [ + { + "answers": [ + "চাদৰ মেখেলা", + "মেখেলা চাদৰ", + "মহিলাই চাদৰ মেখেলা" + ], + "en_answers": [ + "mekhela chador", + "sador mekhela" + ], + "count": 5 + }, + { + "answers": [ + "চুৰিয়া আৰু পাঞ্জাবী চোলা", + "ধুতি চোলা" + ], + "en_answers": [ + "kurta and punjabi shirt", + "dhoti kurta" + ], + "count": 2 + }, + { + "answers": [ + "ধুটি", + "চুৰিয়া" + ], + "en_answers": [ + "dhoti" + ], + "count": 1 + }, + { + "answers": [ + "কুৰ্তা", + "কোৰৰ্তা" + ], + "en_answers": [ + "kurta" + ], + "count": 1 + }, + { + "answers": [ + "চুৰিয়া গামোচা", + "পুৰুষে চুৰিয়া গামোচা" + ], + "en_answers": [ + "gamosa", + "gamusa" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-89": { + "question": "অসমৰ মানুহে পৰম্পৰাগত উৎসৱৰ সামগ্ৰীবোৰ কি পিন্ধে?", + "en_question": "What traditional festival accessories do people from your country wear?", + "annotations": [ + { + "answers": [ + "ৰিহা মেখেলা", + "চাদৰ মেখেলা" + ], + "en_answers": [ + "mekhela chador", + "sador mekhela", + "riha mekhela" + ], + "count": 2 + }, + { + "answers": [ + "চুৰিয়া" + ], + "en_answers": [ + "dhoti" + ], + "count": 1 + }, + { + "answers": [ + "গামোছা" + ], + "en_answers": [ + "gamosa", + "gamusa" + ], + "count": 1 + }, + { + "answers": [ + "ধুতি চোলা" + ], + "en_answers": [ + "dhoti kurta" + ], + "count": 1 + }, + { + "answers": [ + "গাম খাৰু" + ], + "en_answers": [ + "broad bracelet", + "gamkharu" + ], + "count": 1 + }, + { + "answers": [ + "দুগদুগি" + ], + "en_answers": [ + "dug-dugi", + "dugdugi" + ], + "count": 1 + }, + { + "answers": [ + "কেৰু" + ], + "en_answers": [ + "keru" + ], + "count": 1 + }, + { + "answers": [ + "থুৰীয়া" + ], + "en_answers": [ + "thuria" + ], + "count": 1 + }, + { + "answers": [ + "খোপাত কপৌফুল পিন্ধে" + ], + "en_answers": [ + "night-flowering jasmine", + "rhynchostylis retusa", + "foxtail orchid" + ], + "count": 1 + }, + { + "answers": [ + "জোনবিৰি" + ], + "en_answers": [ + "moon shaped neclace", + "jonbiri" + ], + "count": 1 + }, + { + "answers": [ + "ঢোলবিৰি" + ], + "en_answers": [ + "drum shaped necklace", + "dholbiri" + ], + "count": 1 + }, + { + "answers": [ + "জাপি" + ], + "en_answers": [ + "jaapi", + "japi" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-05": { + "question": "অসমত সুৰা উৎপাদনৰ বাবে সবাতোকৈ বিখ্যাত অঞ্চলটো কোনটো?", + "en_question": "What is the most famous region for alcohol production in your country?", + "annotations": [ + { + "answers": [ + "কাৰ্বি আংলং" + ], + "en_answers": [ + "karbi anglong" + ], + "count": 1 + }, + { + "answers": [ + "গুৱাহাটী" + ], + "en_answers": [ + "guwahati" + ], + "count": 1 + }, + { + "answers": [ + "জনজাতি অধ্যুষিত অঞ্চলসমুহ" + ], + "en_answers": [ + "tribal dominated areas" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 1 + } + }, + "New-az-11": { + "question": "অসমৰ মানুহে গ্ৰীষ্মকালত কি ফল প্ৰায়ে খায়?", + "en_question": "What fruit do people from your country often eat in the summer season?", + "annotations": [ + { + "answers": [ + "আম" + ], + "en_answers": [ + "mango" + ], + "count": 5 + }, + { + "answers": [ + "তৰমুজ" + ], + "en_answers": [ + "watermelon" + ], + "count": 2 + }, + { + "answers": [ + "জামু", + "জাম" + ], + "en_answers": [ + "guava" + ], + "count": 2 + }, + { + "answers": [ + "কঠাল" + ], + "en_answers": [ + "jackfruit" + ], + "count": 1 + }, + { + "answers": [ + "লিচু" + ], + "en_answers": [ + "lychee" + ], + "count": 1 + }, + { + "answers": [ + "চিৰাল" + ], + "en_answers": [ + "siral", + "bangi" + ], + "count": 1 + }, + { + "answers": [ + "নেমু" + ], + "en_answers": [ + "lemon" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-12": { + "question": "অসমৰ কোন অঞ্চলটো ইয়াৰ মাছ-মাংসৰ বাবে পৰিচিত?", + "en_question": "Which region in your country is known for its seafood?", + "annotations": [ + { + "answers": [ + "নগাঁও" + ], + "en_answers": [ + "nagaon" + ], + "count": 3 + }, + { + "answers": [ + "ম​ৰিগাঁও" + ], + "en_answers": [ + "morigaon" + ], + "count": 1 + }, + { + "answers": [ + "শোলমাৰা" + ], + "en_answers": [ + "solmara" + ], + "count": 1 + }, + { + "answers": [ + "মৰিয়নি" + ], + "en_answers": [ + "mariani" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-az-21": { + "question": "অসমৰ কোন অঞ্চলটো সৰ্বাধিক জনপ্ৰিয় স্কিইং গন্তব্যস্থান?", + "en_question": "Which region in your country is the most popular skiing destination?", + "annotations": [ + { + "answers": [ + "ডিমা হাচাও", + "ডিমা হাছাও" + ], + "en_answers": [ + "dima hasao" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 2, + "idk": 1, + "no-answer": 0 + } + }, + "New-az-26": { + "question": "অসমত সবাতোকৈ জনপ্ৰিয় সমৰকলাৰ খেলুৱৈজন কোন?", + "en_question": "Who is the most popular martial arts player in your country?", + "annotations": [ + { + "answers": [ + "ধৰ্মেশ্ৱৰ হালৈ" + ], + "en_answers": [ + "dharmeswar haloi" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-27": { + "question": "কোনটো খেলটো যে গত দশকত অসমত অতি দ্ৰুত গতিত বৃদ্ধি পাইছে?", + "en_question": "Which sport has been one of the fastest-growing in your country over the last decade?", + "annotations": [ + { + "answers": [ + "ক্ৰিকেট" + ], + "en_answers": [ + "cricket" + ], + "count": 2 + }, + { + "answers": [ + "দৌৰ", + "দ'ৰ" + ], + "en_answers": [ + "race", + "running" + ], + "count": 2 + }, + { + "answers": [ + "বক্সিং", + "বক্সীং" + ], + "en_answers": [ + "boxing" + ], + "count": 2 + }, + { + "answers": [ + "দবা", + "চেচ" + ], + "en_answers": [ + "chess" + ], + "count": 1 + }, + { + "answers": [ + "বেডমিন্টন" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-39": { + "question": "অসমৰ পৰা বিদেশত অধ্যয়ন কৰিবলৈ যোৱা ছাত্ৰ-ছাত্ৰীসকলৰ বাবে কোনখন দেশ সবাতোকৈ জনপ্ৰিয় গন্তব্য স্থান?", + "en_question": "Which country is the most popular destination for students from your country studying abroad?", + "annotations": [ + { + "answers": [ + "ইংলেণ্ড", + "ইউ.কে." + ], + "en_answers": [ + "england", + "u.k.", + "uk", + "united kingdom" + ], + "count": 4 + }, + { + "answers": [ + "জাৰ্মানী", + "জাৰ্মান" + ], + "en_answers": [ + "germany" + ], + "count": 4 + }, + { + "answers": [ + "আমেৰিকা", + "আমেৰিকা যুক্তৰাষ্ট্ৰ", + "united states of america" + ], + "en_answers": [ + "america", + "united states of america", + "us" + ], + "count": 2 + }, + { + "answers": [ + "কেনেডা" + ], + "en_answers": [ + "canada" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-49": { + "question": "অসমৰ এটা সাধাৰণ পৰিয়ালত কিমানজন মানুহে কাম কৰে? (কেৱল আৰবী সংখ্যা (যেনে, 1) প্ৰদান কৰক।)", + "en_question": "How many people work in a typical family in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 5 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 3 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-60": { + "question": "অসমত, উভয় পিতৃ-মাতৃয়ে কাম কৰা সময়ত শিশুসকলৰ যত্ন কোনে লয়?", + "en_question": "In your country, who takes care of kids when both parents are working?", + "annotations": [ + { + "answers": [ + "ককাক আইতাক", + "ককা আইতা", + "আইতাক-ককাক", + "ককা আইতাক" + ], + "en_answers": [ + "paternal grandfather and grandmother", + "grandparents", + "grandmother-grandfather" + ], + "count": 5 + }, + { + "answers": [ + "ধাই মাক" + ], + "en_answers": [ + "elder mother" + ], + "count": 1 + }, + { + "answers": [ + "খুৰা খুৰী" + ], + "en_answers": [ + "uncle and aunt" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-69": { + "question": "অসমৰ পুৰুষসকলৰ পচন্দৰ মদ্যপান কি?", + "en_question": "What is the preferred alcoholic beverage for men from your country?", + "annotations": [ + { + "answers": [ + "বিয়েৰ", + "বিয়েৰ" + ], + "en_answers": [ + "beer" + ], + "count": 3 + }, + { + "answers": [ + "চুলাই" + ], + "en_answers": [ + "homemade liquor" + ], + "count": 1 + }, + { + "answers": [ + "হুইচকি" + ], + "en_answers": [ + "whiskey" + ], + "count": 1 + }, + { + "answers": [ + "ৰাম" + ], + "en_answers": [ + "ram" + ], + "count": 1 + }, + { + "answers": [ + "পৰম্পৰাগত সুৰা" + ], + "en_answers": [ + "traditional liquor" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-70": { + "question": "অসমৰ মহিলাসকলৰ পচন্দৰ মদ্যপান কি?", + "en_question": "What is the preferred alcoholic beverage for women from your country?", + "annotations": [ + { + "answers": [ + "বিয়েৰ", + "বিয়েৰ" + ], + "en_answers": [ + "beer" + ], + "count": 3 + }, + { + "answers": [ + "ৰহী" + ], + "en_answers": [ + "tenant" + ], + "count": 1 + }, + { + "answers": [ + "ভোদকা" + ], + "en_answers": [ + "vodka" + ], + "count": 1 + }, + { + "answers": [ + "ৱাইন" + ], + "en_answers": [ + "wine" + ], + "count": 1 + }, + { + "answers": [ + "পৰম্পৰাগত সুৰা" + ], + "en_answers": [ + "traditional liquor" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-73": { + "question": "অসমত এটা বিয়াত গড়ে কিমান জন লোক উপস্থিত থাকে? (কেৱল আৰবী সংখ্যা (যেনে, 1) প্ৰদান কৰক।)", + "en_question": "How many people on average typically attend a wedding in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "1000" + ], + "en_answers": [ + "1000" + ], + "count": 4 + }, + { + "answers": [ + "500" + ], + "en_answers": [ + "500" + ], + "count": 2 + }, + { + "answers": [ + "600" + ], + "en_answers": [ + "600" + ], + "count": 1 + }, + { + "answers": [ + "300" + ], + "en_answers": [ + "300" + ], + "count": 1 + }, + { + "answers": [ + "100", + "100+" + ], + "en_answers": [ + "100" + ], + "count": 1 + }, + { + "answers": [ + "700" + ], + "en_answers": [ + "700" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-01": { + "question": "অসমত মানুহে বাৰ্বিকিউ কৰা সময়ত সাধাৰণতে কি ধৰণৰ মাংস খায়?", + "en_question": "What kind of meat do people usually eat when they have barbecue in your country?", + "annotations": [ + { + "answers": [ + "ব্ৰইলাৰ", + "কুকুৰা", + "মূৰ্গী", + "বাৰ্বিকিউ চিকেন", + "মূর্গী মাংস", + "মুৰ্গী" + ], + "en_answers": [ + "chicken", + "barbecue chicken", + "chicken meat" + ], + "count": 5 + }, + { + "answers": [ + "গাহ​ৰি", + "গাহৰী", + "গাহৰি" + ], + "en_answers": [ + "pig" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-02": { + "question": "অসমত মানুহে সাধাৰণতে কেতিয়া নাস্তা কৰে? (HH:MM ফৰ্মেটত প্ৰদান কৰক (যেনে, 18:00, 09:00).)", + "en_question": "When do people usually have breakfast in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 3 + }, + { + "answers": [ + "08:30" + ], + "en_answers": [ + "08:30" + ], + "count": 2 + }, + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 2 + }, + { + "answers": [ + "10:00" + ], + "en_answers": [ + "10:00" + ], + "count": 1 + }, + { + "answers": [ + "02:00" + ], + "en_answers": [ + "02:00" + ], + "count": 1 + }, + { + "answers": [ + "07:00" + ], + "en_answers": [ + "07:00" + ], + "count": 1 + }, + { + "answers": [ + "04:00" + ], + "en_answers": [ + "04:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-04": { + "question": "অসমত মানুহে সাধাৰণতে নিশাৰ জলপান হিচাপে কি ধৰণৰ খাদ্য গ্ৰহণ কৰে?", + "en_question": "What kinds of food do people usually eat for late-night snacks in your country?", + "annotations": [ + { + "answers": [ + "ভাত" + ], + "en_answers": [ + "rice" + ], + "count": 5 + }, + { + "answers": [ + "ৰুটি", + "ৰুতি" + ], + "en_answers": [ + "bread" + ], + "count": 4 + }, + { + "answers": [ + "চিৰা" + ], + "en_answers": [ + "flattened rice" + ], + "count": 1 + }, + { + "answers": [ + "ওটছ", + "ঔৎস" + ], + "en_answers": [ + "oats" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-05": { + "question": "অসমৰ আটাইতকৈ বিখ্যাত মচলাদাৰ খাদ্যবিধ কি?", + "en_question": "What is the most famous spicy dish in your country?", + "annotations": [ + { + "answers": [ + "মাংস​", + "মাংশ" + ], + "en_answers": [ + "meat" + ], + "count": 2 + }, + { + "answers": [ + "ঘুগুনি" + ], + "en_answers": [ + "peas curry" + ], + "count": 1 + }, + { + "answers": [ + "কঠাল চব্জী" + ], + "en_answers": [ + "jackfruit vegetable" + ], + "count": 1 + }, + { + "answers": [ + "চিকেন" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "জালুকীয়া হাঁহৰ মাংস" + ], + "en_answers": [ + "duck meat with black pepper" + ], + "count": 1 + }, + { + "answers": [ + "জালুকীয়া মূৰ্গীৰ মাংস" + ], + "en_answers": [ + "chicken with black pepper" + ], + "count": 1 + }, + { + "answers": [ + "মাংসৰ জালুকীয়া" + ], + "en_answers": [ + "meat with black pepper" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-07": { + "question": "অসমত লোকে সাধাৰণতে কঠিন সুৰাৰ সৈতে কি খাদ্য সামগ্ৰী খায়?", + "en_question": "What food items do people typically pair with hard liquor in your country?", + "annotations": [ + { + "answers": [ + "বুট" + ], + "en_answers": [ + "pea" + ], + "count": 2 + }, + { + "answers": [ + "বাদাম" + ], + "en_answers": [ + "almond" + ], + "count": 2 + }, + { + "answers": [ + "মিচল চানা", + "কেচা চানা" + ], + "en_answers": [ + "mixed chickpeas", + "chana chutney" + ], + "count": 2 + }, + { + "answers": [ + "মাংশ ভাজি" + ], + "en_answers": [ + "fried meat" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 1 + } + }, + "New-ch-08": { + "question": "অসমীয়া ৰন্ধনত কোনটো মশলা অপৰিহাৰ্য?", + "en_question": "What seasoning is indispensable in cooking in your country?", + "annotations": [ + { + "answers": [ + "জিৰা" + ], + "en_answers": [ + "cumin" + ], + "count": 2 + }, + { + "answers": [ + "জালুক" + ], + "en_answers": [ + "pepper" + ], + "count": 2 + }, + { + "answers": [ + "ধনিয়া" + ], + "en_answers": [ + "coriander" + ], + "count": 2 + }, + { + "answers": [ + "নহৰু" + ], + "en_answers": [ + "coconut" + ], + "count": 2 + }, + { + "answers": [ + "ঘৰৰ মছলা" + ], + "en_answers": [ + "home spices" + ], + "count": 1 + }, + { + "answers": [ + "হালধি" + ], + "en_answers": [ + "turmeric" + ], + "count": 1 + }, + { + "answers": [ + "মিঠিগুটি" + ], + "en_answers": [ + "fenugreek seeds" + ], + "count": 1 + }, + { + "answers": [ + "কেঁচা জলকীয়া" + ], + "en_answers": [ + "raw chili" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-09": { + "question": "অসমত ঠাণ্ডা আবহাওয়াত সাধাৰণতে মানুহে কি খাদ্য গ্ৰহণ কৰে?", + "en_question": "What food do people typically consume when the weather is cold in your country?", + "annotations": [ + { + "answers": [ + "ভাত", + "গ​ৰম ভাত" + ], + "en_answers": [ + "rice", + "hot rice" + ], + "count": 3 + }, + { + "answers": [ + "পকৰি", + "চাহ পকৰি" + ], + "en_answers": [ + "pakora", + "fritter" + ], + "count": 2 + }, + { + "answers": [ + "মছলাযুক্ত মাছ মাংস​" + ], + "en_answers": [ + "spiced fish and meat" + ], + "count": 1 + }, + { + "answers": [ + "জালুকীয়া খাদ্য়​" + ], + "en_answers": [ + "pepper food" + ], + "count": 1 + }, + { + "answers": [ + "ৰুতি" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "চাহ", + "চাহ পকৰি" + ], + "en_answers": [ + "tea" + ], + "count": 1 + }, + { + "answers": [ + "মাংস জালুকীয়া" + ], + "en_answers": [ + "meat with black pepper" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-13": { + "question": "অসমত সবাতোকৈ বিখ্যাত সুৰাৰ ব্ৰেণ্ডটো কি?", + "en_question": "What is the most famous alcohol brand in your country?", + "annotations": [ + { + "answers": [ + "নাম্বাৰ ওৱান", + "নম্বৰ ওৱান" + ], + "en_answers": [ + "number one" + ], + "count": 2 + }, + { + "answers": [ + "ইমপেৰিয়েল ব্লু" + ], + "en_answers": [ + "imperial blue" + ], + "count": 1 + }, + { + "answers": [ + "ওলদ মংক" + ], + "en_answers": [ + "old monk" + ], + "count": 1 + }, + { + "answers": [ + "কিংফিছাৰ" + ], + "en_answers": [ + "kingfisher" + ], + "count": 1 + }, + { + "answers": [ + "বিৰা" + ], + "en_answers": [ + "bira" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "New-ch-14": { + "question": "অসমত মানুহে অসুস্থ হ'লে সাধাৰণতে কি খাদ্য খায়?", + "en_question": "What foods do people usually eat when they are sick in your country?", + "annotations": [ + { + "answers": [ + "জালুকীয়া খাদ্য়​" + ], + "en_answers": [ + "pepper food" + ], + "count": 1 + }, + { + "answers": [ + "আলু ভাত" + ], + "en_answers": [ + "potato rice" + ], + "count": 1 + }, + { + "answers": [ + "রুটি-মাংস​", + "ৰুটি মাংস​" + ], + "en_answers": [ + "bread with meat", + "meat and bread" + ], + "count": 1 + }, + { + "answers": [ + "দালি পানী" + ], + "en_answers": [ + "boiled water" + ], + "count": 1 + }, + { + "answers": [ + "মেৰীগোল্দ বিস্কুত" + ], + "en_answers": [ + "marigold biscuit" + ], + "count": 1 + }, + { + "answers": [ + "গাখীৰ" + ], + "en_answers": [ + "milk" + ], + "count": 1 + }, + { + "answers": [ + "পইতা ভাত" + ], + "en_answers": [ + "fermented rice" + ], + "count": 1 + }, + { + "answers": [ + "ভাত আৰু টেঙা দিয়া দাইল" + ], + "en_answers": [ + "rice and sour lentil soup" + ], + "count": 1 + }, + { + "answers": [ + "ভাত আৰু শাকৰ জোল" + ], + "en_answers": [ + "rice and leafy greens soup" + ], + "count": 1 + }, + { + "answers": [ + "মাংস জালুকীয়া" + ], + "en_answers": [ + "meat with black pepper" + ], + "count": 1 + }, + { + "answers": [ + "মগুদালি সিজোৱা" + ], + "en_answers": [ + "fried fish" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-15": { + "question": "অসমৰ চুপাৰমাৰ্কেটসমূহত মানুহে সাধাৰণতে কি ধৰণৰ প্ৰস্তুত/ৰেডি-টু-ইট খাদ্য ক্ৰয় কৰে?", + "en_question": "What prepared/ready-to-eat food do people typically buy at supermarkets in your country?", + "annotations": [ + { + "answers": [ + "বিস্কুট" + ], + "en_answers": [ + "biscuit" + ], + "count": 2 + }, + { + "answers": [ + "মেগি" + ], + "en_answers": [ + "maggi" + ], + "count": 1 + }, + { + "answers": [ + "কেক" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "চকোলেট" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 1 + } + }, + "New-ch-16": { + "question": "অসমত কি আটাইতকৈ জনপ্ৰিয় ক্ৰীড়া-সম্পৰ্কীয় চলচ্চিত্ৰ?", + "en_question": "What is the most famous sports-related movie in your country?", + "annotations": [ + { + "answers": [ + "ভাগ মিলখা ভাগ" + ], + "en_answers": [ + "run milkha run" + ], + "count": 1 + }, + { + "answers": [ + "1983" + ], + "en_answers": [ + "1983" + ], + "count": 1 + }, + { + "answers": [ + "চক দে ইণ্ডিয়া" + ], + "en_answers": [ + "go india" + ], + "count": 1 + }, + { + "answers": [ + "এম. এচ. ধোনি" + ], + "en_answers": [ + "m. s. dhoni" + ], + "count": 1 + }, + { + "answers": [ + "মেৰী কম", + "মেৰী কম/ ডাংগল" + ], + "en_answers": [ + "mary kom" + ], + "count": 1 + }, + { + "answers": [ + "ডাংগল", + "মেৰী কম/ ডাংগল" + ], + "en_answers": [ + "dangal" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-17": { + "question": "অসমত সাধাৰণতে মানুহে কোন চৰম ক্ৰীড়া প্ৰচেষ্টা কৰিবলৈ বিচাৰে?", + "en_question": "What extreme sport do people generally wish to try the most in your country?", + "annotations": [ + { + "answers": [ + "ক্ৰিকেট", + "কৃকেট" + ], + "en_answers": [ + "cricket" + ], + "count": 2 + }, + { + "answers": [ + "প​ৰ্বত আৰোহণ" + ], + "en_answers": [ + "mountain climbing" + ], + "count": 1 + }, + { + "answers": [ + "সাতোৰ" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + }, + { + "answers": [ + "বেডমিন্টন" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "পৰ্বতাৰোহণ" + ], + "en_answers": [ + "mountaineering" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-18": { + "question": "অসমত প্ৰতিযোগিতাৰ সময়ত চাবলৈ কোনটো ট্ৰেক আৰু ফিল্ড ইভেণ্টটো সবাতোকৈ জনপ্ৰিয়?", + "en_question": "Which track and field event is the most popular to watch during competitions in your country?", + "annotations": [ + { + "answers": [ + "দৌৰ" + ], + "en_answers": [ + "race", + "running" + ], + "count": 2 + }, + { + "answers": [ + "লং জাম্প", + "লং জাপ" + ], + "en_answers": [ + "long jump" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-ch-19": { + "question": "অসমত প্ৰতিযোগিতাৰ সময়ত চাবলৈ কোনটো জিমনাষ্টিক ইভেণ্টটো সবাতোকৈ জনপ্ৰিয়?", + "en_question": "Which gymnastics event is the most popular to watch during competitions in your country?", + "annotations": [ + { + "answers": [ + "মাটিআখৰা", + "মাটি আখৰা" + ], + "en_answers": [ + "ground rehearsal", + "ground exercise" + ], + "count": 2 + }, + { + "answers": [ + "চাৰ্কাছ" + ], + "en_answers": [ + "circus" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-ch-23": { + "question": "অসমৰ আটাইতকৈ বিখ্যাত টেবুল টেনিছ খেলুৱৈজন কোন?", + "en_question": "Who is the most famous table tennis player in your country?", + "annotations": [ + { + "answers": [ + "মনালিছা ব​ৰুৱা মেহতা", + "মনালিচা বৰুৱা মেহতা", + "মনালিছা বৰুৱা", + "মনালিছা বৰুৱা মেহতা" + ], + "en_answers": [ + "monalisha boruwa mehta", + "monalisa boruwa mehta" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-26": { + "question": "শীতকালীন অলিম্পিকত, অসমত কোনটো ইভেণ্ট চাবলৈ সবাতোকৈ জনপ্ৰিয়?", + "en_question": "In the Winter Olympics, which event is the most popular to watch in your country?", + "annotations": [ + { + "answers": [ + "বক্সিং" + ], + "en_answers": [ + "boxing" + ], + "count": 1 + }, + { + "answers": [ + "আইচ হকী" + ], + "en_answers": [ + "ice hockey" + ], + "count": 1 + }, + { + "answers": [ + "দৌৰ" + ], + "en_answers": [ + "race", + "running" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-ch-27": { + "question": "অসমৰ আটাইতকৈ বিখ্যাত বক্সাৰজন কোন?", + "en_question": "Who is the most famous boxer in your country?", + "annotations": [ + { + "answers": [ + "লাভলীনা বৰগোঁহাই", + "লাভলীনা বৰগোহাঁয়", + "লভলীনা বৰগোহাঁই", + "লভলিনা বুঢ়াগোঁহাই", + "লভলিনা বৰগোহাঁই" + ], + "en_answers": [ + "lovlina borgohain" + ], + "count": 5 + }, + { + "answers": [ + "শিৱ থাপা" + ], + "en_answers": [ + "shiva thapa" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-30": { + "question": "অসমৰ আটাইতকৈ বিখ্যাত ট্ৰেক আৰু ফিল্ডৰ এথলীটজন কোন?", + "en_question": "Who is the most famous track and field athlete in your country?", + "annotations": [ + { + "answers": [ + "হিমা দাস", + "হীমা দাস" + ], + "en_answers": [ + "hima das" + ], + "count": 5 + }, + { + "answers": [ + "ভোগেশ্বৰ বৰুৱা" + ], + "en_answers": [ + "bhogeswar baruah" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-31": { + "question": "অসমত অভিভাৱকসকলে তেওঁলোকৰ সন্তানসকলে কি চাকৰি কৰিবলৈ সকলোতকৈ বেছি আশা কৰে?", + "en_question": "What job do parents most hope their children will pursue in your country?", + "annotations": [ + { + "answers": [ + "ডাক্তৰ", + "দক্তৰ" + ], + "en_answers": [ + "doctor" + ], + "count": 3 + }, + { + "answers": [ + "অভিযন্তা", + "ইঞ্জিনীয়াৰ" + ], + "en_answers": [ + "engineer" + ], + "count": 3 + }, + { + "answers": [ + "শিক্ষক" + ], + "en_answers": [ + "teacher" + ], + "count": 2 + }, + { + "answers": [ + "প্ৰবক্তা" + ], + "en_answers": [ + "lecturer" + ], + "count": 1 + }, + { + "answers": [ + "অধ্যাপক" + ], + "en_answers": [ + "professor" + ], + "count": 1 + }, + { + "answers": [ + "নিজৰ জীৱনৰ লক্ষ্য" + ], + "en_answers": [ + "goal of one's life" + ], + "count": 1 + }, + { + "answers": [ + "অন্যান্য চৰকাৰী চাকৰি" + ], + "en_answers": [ + "goverment jobs" + ], + "count": 1 + }, + { + "answers": [ + "অসামৰিকয বিষয়া" + ], + "en_answers": [ + "civil officer" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-32": { + "question": "অসমত কৰ্মস্থলীত মানুহে সাধাৰণতে কি অফিচ ছফ্টৱেৰ ব্যৱহাৰ কৰে?", + "en_question": "What office software do people typically use in the workplace in your country?", + "annotations": [ + { + "answers": [ + "মাইক্ৰচফ্ট অফিচ", + "মাইক্ৰচফ্ট", + "মাইক্ৰোচফত", + "এম এচ অফিচ", + "মাইক্ৰ'ছফ্ট অফিচ" + ], + "en_answers": [ + "microsoft office", + "microsoft", + "ms office" + ], + "count": 4 + }, + { + "answers": [ + "এম.এছ ৱৰ্ড" + ], + "en_answers": [ + "ms word" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-38": { + "question": "অসমত কোন কোন চহৰ বা অঞ্চলসমূহ আমদানি আৰু ৰপ্তানি কাৰ্যকলাপৰ বাবে পৰিচিত?", + "en_question": "Which cities or regions are known for their import and export activities in your country?", + "annotations": [ + { + "answers": [ + "গুৱাহাটী" + ], + "en_answers": [ + "guwahati" + ], + "count": 3 + }, + { + "answers": [ + "যোৰহাট" + ], + "en_answers": [ + "jorhat" + ], + "count": 3 + }, + { + "answers": [ + "ডিব্ৰুগ​ড়", + "ডিব্ৰগড়", + "ডিব্ৰুগড়" + ], + "en_answers": [ + "dibrugarh" + ], + "count": 3 + }, + { + "answers": [ + "ডিগবৈ" + ], + "en_answers": [ + "digboi" + ], + "count": 1 + }, + { + "answers": [ + "মাৰঘেৰিটা" + ], + "en_answers": [ + "margherita" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-39": { + "question": "অসমত ই-কমাৰ্চ শিল্পত সাধাৰণতে কি প্লেটফৰ্ম ব্যৱহাৰ কৰা হয়?", + "en_question": "What platform is commonly used in the e-commerce industry in your country?", + "annotations": [ + { + "answers": [ + "ফ্লিপকাৰ্ট" + ], + "en_answers": [ + "flipkart" + ], + "count": 2 + }, + { + "answers": [ + "আমাজন" + ], + "en_answers": [ + "amazon" + ], + "count": 2 + }, + { + "answers": [ + "মিনট্ৰা" + ], + "en_answers": [ + "myntra" + ], + "count": 1 + }, + { + "answers": [ + "এন্দ্ৰয়দ" + ], + "en_answers": [ + "android" + ], + "count": 1 + }, + { + "answers": [ + "অনলাইন শ্বপিং এপ" + ], + "en_answers": [ + "online shopping app" + ], + "count": 1 + }, + { + "answers": [ + "ফেচবুক লাইভ" + ], + "en_answers": [ + "facebook live" + ], + "count": 1 + }, + { + "answers": [ + "ইনষ্টাগ্ৰাম" + ], + "en_answers": [ + "instagram" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-44": { + "question": "অসমত নতুন কৰ্মচাৰীসকলৰ বাবে চুক্তি স্বাক্ষৰ কৰাৰ পূৰ্বে প্ৰচলিত পৰীক্ষামূলক সময়কাল কিমান দীঘল হয়? (উদাহৰণস্বৰূপে, ১ মাহ)।", + "en_question": "How long is the typical probation period for new employees before signing a formal contract in your country? (e.g., 1 month).", + "annotations": [ + { + "answers": [ + "৩ মাহ", + "3" + ], + "en_answers": [ + "3 months" + ], + "count": 2 + }, + { + "answers": [ + "৬ মাহ", + "6মাহ" + ], + "en_answers": [ + "6 months" + ], + "count": 2 + }, + { + "answers": [ + "৮ মাহ" + ], + "en_answers": [ + "8 months" + ], + "count": 1 + }, + { + "answers": [ + "৯ মাহ" + ], + "en_answers": [ + "9 months" + ], + "count": 1 + }, + { + "answers": [ + "১০ মাহ" + ], + "en_answers": [ + "10 months" + ], + "count": 1 + }, + { + "answers": [ + "২ মাহ", + "2" + ], + "en_answers": [ + "2 months" + ], + "count": 1 + }, + { + "answers": [ + "১ মাহ", + "1" + ], + "en_answers": [ + "1 month" + ], + "count": 1 + }, + { + "answers": [ + "১২ মাহ" + ], + "en_answers": [ + "12 months" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-45": { + "question": "অসমত যুৱক-যুৱতীসকলে সাধাৰণতে কোন কোন শিল্পক্ষেত্ৰত ব্যৱসায় আৰম্ভ কৰিবলৈ পচন্দ কৰে?", + "en_question": "Which industries do young people typically choose to start businesses in your country?", + "annotations": [ + { + "answers": [ + "বস্ত্ৰ শিল্প​", + "পাতৰ কাপোৰ", + "বস্ত্ৰশিল্প" + ], + "en_answers": [ + "textile industry", + "silk cloth" + ], + "count": 3 + }, + { + "answers": [ + "খাদ্য়​", + "ৰেষ্টোৰা ব্যৱসায়" + ], + "en_answers": [ + "food", + "restaurant business" + ], + "count": 2 + }, + { + "answers": [ + "কাহ শিল্প", + "কাঁহশিল্প" + ], + "en_answers": [ + "cane craft" + ], + "count": 2 + }, + { + "answers": [ + "পশুপালন" + ], + "en_answers": [ + "animal husbandry" + ], + "count": 1 + }, + { + "answers": [ + "নৃত্য গীত শিকোৱা" + ], + "en_answers": [ + "teach dance song" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-49": { + "question": "অসমত পৰিয়ালৰ সদস্যসকলে দূৰৈৰ পৰা যোগাযোগ কৰাৰ সবাতোকৈ সাধাৰণ উপায় কি?", + "en_question": "What is the most common way for family members to communicate remotely in your country?", + "annotations": [ + { + "answers": [ + "মবাইল ফোন", + "মোবাইল", + "মবাইল", + "মোবাইল ফোন" + ], + "en_answers": [ + "mobile phone", + "mobile" + ], + "count": 4 + }, + { + "answers": [ + "টেবলেট" + ], + "en_answers": [ + "tablet" + ], + "count": 1 + }, + { + "answers": [ + "লেপটপ" + ], + "en_answers": [ + "laptop" + ], + "count": 1 + }, + { + "answers": [ + "ভিদিও কল" + ], + "en_answers": [ + "video call" + ], + "count": 1 + }, + { + "answers": [ + "টেলিফোন" + ], + "en_answers": [ + "telephone" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-51": { + "question": "অসমত পৰিয়ালৰ ভ্ৰমণৰ বাবে সাধাৰণতে কি ধৰণৰ আবাস স্থান বুক কৰা হয়?", + "en_question": "What form of accommodation is typically booked for family trips in your country?", + "annotations": [ + { + "answers": [ + "হোটেল" + ], + "en_answers": [ + "hotel" + ], + "count": 5 + }, + { + "answers": [ + "ৰিজৰ্ট", + "ৰিজৰ্ত" + ], + "en_answers": [ + "resort" + ], + "count": 2 + }, + { + "answers": [ + "লডজ" + ], + "en_answers": [ + "lodge" + ], + "count": 1 + }, + { + "answers": [ + "এয়াৰ বিএনবি" + ], + "en_answers": [ + "airbnb" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-54": { + "question": "অসমত পৰিয়ালৰ ভোজনৰ বাবে সাধাৰণতে কোন ফলটো সবাতোকৈ বেছি প্ৰস্তুত কৰা হয়?", + "en_question": "Which fruit is usually prepared the most for family dinners in your country?", + "annotations": [ + { + "answers": [ + "আম" + ], + "en_answers": [ + "mango" + ], + "count": 2 + }, + { + "answers": [ + "অমিতা" + ], + "en_answers": [ + "amita" + ], + "count": 1 + }, + { + "answers": [ + "কঠাল" + ], + "en_answers": [ + "jackfruit" + ], + "count": 1 + }, + { + "answers": [ + "কমলা" + ], + "en_answers": [ + "orange" + ], + "count": 1 + }, + { + "answers": [ + "কল" + ], + "en_answers": [ + "banana" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-ch-64": { + "question": "অসমত বিশ্ববিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে সাধাৰণতে সপ্তাহত কিমান ঘণ্টা ক্লাছ কৰে? (কেৱল আৰবী সংখ্যা (যেনে, 1) প্ৰদান কৰক।)", + "en_question": "How many hours of classes do university students typically have per week in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 3 + }, + { + "answers": [ + "26" + ], + "en_answers": [ + "26" + ], + "count": 1 + }, + { + "answers": [ + "28" + ], + "en_answers": [ + "28" + ], + "count": 1 + }, + { + "answers": [ + "35" + ], + "en_answers": [ + "35" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "36" + ], + "en_answers": [ + "36" + ], + "count": 1 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-66": { + "question": "অসমৰ চৰকাৰী উচ্চ বিদ্যালয়সমূহৰ প্ৰতি ছেমিষ্টাৰৰ গড় শিক্ষানুষ্ঠান মাচুল কিমান? (কেৱল আৰবী সংখ্যা (যেনে, 1) প্ৰদান কৰক।)", + "en_question": "What is the typical tuition fee per semester for public high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "500" + ], + "en_answers": [ + "500" + ], + "count": 2 + }, + { + "answers": [ + "600" + ], + "en_answers": [ + "600" + ], + "count": 1 + }, + { + "answers": [ + "700" + ], + "en_answers": [ + "700" + ], + "count": 1 + }, + { + "answers": [ + "10000" + ], + "en_answers": [ + "10000" + ], + "count": 1 + }, + { + "answers": [ + "12000" + ], + "en_answers": [ + "12000" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + }, + { + "answers": [ + "1000" + ], + "en_answers": [ + "1000" + ], + "count": 1 + }, + { + "answers": [ + "1500" + ], + "en_answers": [ + "1500" + ], + "count": 1 + }, + { + "answers": [ + "2000" + ], + "en_answers": [ + "2000" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-70": { + "question": "অসমীয়া বিশ্ববিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলৰ মাজত কি কি বাধ্যতামূলক পাঠ্যক্ৰম আছে?", + "en_question": "What compulsory courses do university students have in common in your country?", + "annotations": [ + { + "answers": [ + "প​ৰিৱেশ অধ্য়​য়ন", + "পৰিবেশ বিজ্ঞান", + "পৰিবেশ অধ্যয়ন" + ], + "en_answers": [ + "environmental study", + "environmental science", + "environmental studies" + ], + "count": 3 + }, + { + "answers": [ + "কম্পিউটাৰ" + ], + "en_answers": [ + "computer" + ], + "count": 1 + }, + { + "answers": [ + "হিউমেন ৰিচোৰ্চ ভেলু" + ], + "en_answers": [ + "human resource value" + ], + "count": 1 + }, + { + "answers": [ + "অসমীয়া" + ], + "en_answers": [ + "assamese" + ], + "count": 1 + }, + { + "answers": [ + "বিজ্ঞান" + ], + "en_answers": [ + "science" + ], + "count": 1 + }, + { + "answers": [ + "গণিত" + ], + "en_answers": [ + "mathematics", + "maths", + "math" + ], + "count": 1 + }, + { + "answers": [ + "অৰ্থনীতি" + ], + "en_answers": [ + "economy" + ], + "count": 1 + }, + { + "answers": [ + "ৰাজনীতি" + ], + "en_answers": [ + "politics" + ], + "count": 1 + }, + { + "answers": [ + "হিউমেনিটিজ" + ], + "en_answers": [ + "humanities" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-ch-71": { + "question": "অসমৰ উচ্চমাধ্যমিক বিদ্যালয়সমূহৰ গড় শ্ৰেণীৰ আকাৰ কিমান? (কেৱল আৰবী সংখ্যা (যেনে, 1) প্ৰদান কৰক।)", + "en_question": "What is the average class size in high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + }, + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-72": { + "question": "অসমত চাকৰিৰ বাবে কোনটো বিষয় সবাতোকৈ উপযোগী বুলি বিবেচিত হয়?", + "en_question": "Which major is considered most conducive to employment in your country?", + "annotations": [ + { + "answers": [ + "গনিত", + "গণিত" + ], + "en_answers": [ + "mathematics", + "maths", + "math" + ], + "count": 3 + }, + { + "answers": [ + "কম্পিউটাৰ" + ], + "en_answers": [ + "computer" + ], + "count": 2 + }, + { + "answers": [ + "সাধাৰণ বিজ্ঞান", + "বিজ্ঞান" + ], + "en_answers": [ + "general science", + "science" + ], + "count": 2 + }, + { + "answers": [ + "সাধাৰণ জ্ঞান" + ], + "en_answers": [ + "general knowledge" + ], + "count": 1 + }, + { + "answers": [ + "সমাজ বিজ্ঞান" + ], + "en_answers": [ + "social science" + ], + "count": 1 + }, + { + "answers": [ + "ইনজিনিয়েৰি‍ং ডিগ্ৰী" + ], + "en_answers": [ + "engineering" + ], + "count": 1 + }, + { + "answers": [ + "ইতিহাস", + "ইতহাস" + ], + "en_answers": [ + "history" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-73": { + "question": "অসমৰ বিশ্ববিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলৰ মাজত কি ধৰণৰ ক্লাবসমূহ সৰ্বাধিক জনপ্ৰিয়?", + "en_question": "What type of clubs are most popular among university students in your country?", + "annotations": [ + { + "answers": [ + "নাইট ক্লাব", + "নৈশ ক্লাব" + ], + "en_answers": [ + "night club" + ], + "count": 2 + }, + { + "answers": [ + "প্ৰেছ ক্লাব" + ], + "en_answers": [ + "press club" + ], + "count": 1 + }, + { + "answers": [ + "নৃত্য ক্লাব" + ], + "en_answers": [ + "dance club" + ], + "count": 1 + }, + { + "answers": [ + "সংগীত ক্লাব" + ], + "en_answers": [ + "music club" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "New-ch-74": { + "question": "অসমৰ বিশ্ববিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে সাধাৰণতে কি ধৰণৰ আবাসত বাস কৰে?", + "en_question": "What types of accommodation do university students in your country typically live in?", + "annotations": [ + { + "answers": [ + "হোষ্টেল", + "ছাত্ৰ নিবাস আৰু ছাত্ৰী নিবাস", + "ছাত্ৰ নিবাস আৰু ছাত্ৰ নিবাস", + "হোস্তেল", + "বিশ্ববিদ্যালয়ৰ ছাত্ৰ/ছাত্ৰী আবাস", + "ব্যক্তিগত মালিকাধীন ছাত্ৰ/ছাত্ৰী আবাস" + ], + "en_answers": [ + "hostel", + "boys' hostel and girls' hostel", + "university student hostel", + "privately owned student hostel" + ], + "count": 5 + }, + { + "answers": [ + "পেয়িং গেষ্ট", + "পেইং গেষ্ট" + ], + "en_answers": [ + "paying guest", + "pg" + ], + "count": 3 + }, + { + "answers": [ + "ভাড়াঘ​ৰ" + ], + "en_answers": [ + "rent" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-75": { + "question": "অসমত মাধ্যমিক বিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলৰ প্ৰতিটো ক্লাছ পিৰিয়ডৰ সময়কাল কিমান মিনিট? (কেৱল আৰবী সংখ্যা (যেনে, 1) প্ৰদান কৰক।)", + "en_question": "How long is each class period for middle school students in your country (minutes)? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "45", + "০.৪৫ ঘ." + ], + "en_answers": [ + "45" + ], + "count": 4 + }, + { + "answers": [ + "60", + "১ ঘ.", + "1ঘন্টা" + ], + "en_answers": [ + "60" + ], + "count": 3 + }, + { + "answers": [ + "50" + ], + "en_answers": [ + "50" + ], + "count": 2 + }, + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-78": { + "question": "অসমত অৱসৰপ্ৰাপ্ত মহিলাসকলে সাধাৰণতে কি ধৰণৰ অৱসৰ সময়ৰ কামকাজত আনন্দ পায়?", + "en_question": "What leisure activities do retired women typically like in your country?", + "annotations": [ + { + "answers": [ + "এমব্ৰইডেৰী ক​ৰা", + "চিলাইৰ কাম" + ], + "en_answers": [ + "doing embroidery", + "sewing" + ], + "count": 2 + }, + { + "answers": [ + "নামঘৰলৈ যোৱা", + "ধৰ্মীয় কাম কাজ" + ], + "en_answers": [ + "going to the prayer house", + "religious activities" + ], + "count": 2 + }, + { + "answers": [ + "ফুৰা চকা" + ], + "en_answers": [ + "travelling" + ], + "count": 1 + }, + { + "answers": [ + "ঊল গুঠা" + ], + "en_answers": [ + "wool spinning" + ], + "count": 1 + }, + { + "answers": [ + "কথা পাতা" + ], + "en_answers": [ + "conversation" + ], + "count": 1 + }, + { + "answers": [ + "খানা বনুৱা" + ], + "en_answers": [ + "cook" + ], + "count": 1 + }, + { + "answers": [ + "সমাজ সেৱা" + ], + "en_answers": [ + "social service" + ], + "count": 1 + }, + { + "answers": [ + "নৃত্য গীতত ব্যস্ত থকা" + ], + "en_answers": [ + "being busy in dance and song" + ], + "count": 1 + }, + { + "answers": [ + "নাটক কৰা" + ], + "en_answers": [ + "acting" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-79": { + "question": "অসমত অৱসৰপ্ৰাপ্ত পুৰুষসকলে সাধাৰণতে কি ধৰণৰ অৱসৰ সময়ৰ কাৰ্যকলাপ পছন্দ কৰে?", + "en_question": "What leisure activities do retired men typically like in your country?", + "annotations": [ + { + "answers": [ + "ফুৰা চকা" + ], + "en_answers": [ + "spinning wheel" + ], + "count": 2 + }, + { + "answers": [ + "খেতি ক​ৰা", + "শাক পাচলি খেতি কৰা" + ], + "en_answers": [ + "farming", + "vegetable farming" + ], + "count": 2 + }, + { + "answers": [ + "সমাজ সেৱা", + "সামাজিক সেৱাত ব্যস্ত হোৱা" + ], + "en_answers": [ + "social service", + "being busy in social service" + ], + "count": 2 + }, + { + "answers": [ + "নামঘৰলৈ যোৱা", + "ধৰ্মীয় কাম কাজ" + ], + "en_answers": [ + "going to the prayer house", + "religious activities" + ], + "count": 2 + }, + { + "answers": [ + "কথা পাতা" + ], + "en_answers": [ + "conversation" + ], + "count": 1 + }, + { + "answers": [ + "খুজ কাড়া" + ], + "en_answers": [ + "walking" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-80": { + "question": "অসমত লোকে সাধাৰণতে কোন কোন বন্ধৰ দিনত ধৰ্মীয় স্থানসমূহ (মন্দিৰ, গিৰ্জা আদি) পৰিদৰ্শন কৰে?", + "en_question": "During which holidays do people typically visit religious sites (temples, churches, etc.) in your country?", + "annotations": [ + { + "answers": [ + "শিৱৰাত্ৰি", + "শিবৰাত্ৰী ত" + ], + "en_answers": [ + "on shivaratri", + "shivaratri" + ], + "count": 2 + }, + { + "answers": [ + "গ্ৰীষ্ম বন্ধ​" + ], + "en_answers": [ + "summer vacation" + ], + "count": 1 + }, + { + "answers": [ + "শীত​ৰ বন্ধ​" + ], + "en_answers": [ + "winter vacation" + ], + "count": 1 + }, + { + "answers": [ + "ৰাষ্ট্ৰীয় বন্ধ​" + ], + "en_answers": [ + "national holiday" + ], + "count": 1 + }, + { + "answers": [ + "ভাদ মাহত" + ], + "en_answers": [ + "in the month of bhada" + ], + "count": 1 + }, + { + "answers": [ + "শংকৰদেৱৰ তিথি" + ], + "en_answers": [ + "sankardev's death anniversary" + ], + "count": 1 + }, + { + "answers": [ + "বৰদিন" + ], + "en_answers": [ + "christmas" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-81": { + "question": "অসমত গৃহপ্ৰৱেশৰ সময়ত কি কি পৰম্পৰাগত উপহাৰ দিয়া হয়?", + "en_question": "What are the typical housewarming gifts in your country?", + "annotations": [ + { + "answers": [ + "অলংকাৰ" + ], + "en_answers": [ + "ornaments" + ], + "count": 1 + }, + { + "answers": [ + "বস্ত্ৰ​" + ], + "en_answers": [ + "clothes" + ], + "count": 1 + }, + { + "answers": [ + "ফুল" + ], + "en_answers": [ + "flower" + ], + "count": 1 + }, + { + "answers": [ + "ভগৱানৰ ফটো বা মূৰ্তি" + ], + "en_answers": [ + "photo or idol of god" + ], + "count": 1 + }, + { + "answers": [ + "ধৰ্মীয় গ্ৰন্থ" + ], + "en_answers": [ + "religious scripture" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 0, + "no-answer": 0 + } + }, + "New-ch-82": { + "question": "অসমত বিয়াসমূহ সাধাৰণতে কি সময়ত আৰম্ভ হয়? (HH:MM ফৰ্মেটত প্ৰদান কৰক (যেনে, 18:00, 09:00).)", + "en_question": "At what time do weddings typically start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 2 + }, + { + "answers": [ + "13:00", + "01:00" + ], + "en_answers": [ + "13:00" + ], + "count": 2 + }, + { + "answers": [ + "10:00" + ], + "en_answers": [ + "10:00" + ], + "count": 2 + }, + { + "answers": [ + "12:00" + ], + "en_answers": [ + "12:00" + ], + "count": 1 + }, + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 1 + }, + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 1 + }, + { + "answers": [ + "23:00" + ], + "en_answers": [ + "23:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-83": { + "question": "অসমৰ কোন চহৰত উৎসৱসমূহ সৰ্বাধিক পালন কৰা হয়?", + "en_question": "Which city in your country hosts festivals the most?", + "annotations": [ + { + "answers": [ + "গুৱাহাটী" + ], + "en_answers": [ + "guwahati" + ], + "count": 3 + }, + { + "answers": [ + "যোৰহাট" + ], + "en_answers": [ + "jorhat" + ], + "count": 1 + }, + { + "answers": [ + "ডিব্ৰুগ​ড়" + ], + "en_answers": [ + "dibrugarh" + ], + "count": 1 + }, + { + "answers": [ + "প্ৰায় সকলোতে" + ], + "en_answers": [ + "almost everywhere" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-ch-84": { + "question": "অসমত বিয়ালৈ গ'লে সাধাৰণতে মানুহে কি ৰঙৰ কাপোৰ পৰিধান কৰে?", + "en_question": "What color of clothing do people typically wear when attending weddings in your country?", + "annotations": [ + { + "answers": [ + "ৰঙা" + ], + "en_answers": [ + "red" + ], + "count": 2 + }, + { + "answers": [ + "নীলা" + ], + "en_answers": [ + "blue" + ], + "count": 2 + }, + { + "answers": [ + "সেউজীয়া" + ], + "en_answers": [ + "green" + ], + "count": 1 + }, + { + "answers": [ + "ৰঙীন" + ], + "en_answers": [ + "colorful" + ], + "count": 1 + }, + { + "answers": [ + "গুলপীয়া" + ], + "en_answers": [ + "pink" + ], + "count": 1 + }, + { + "answers": [ + "যিকোনো ৰঙৰ" + ], + "en_answers": [ + "any" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-85": { + "question": "অসমত মানুহে সাধাৰণতে শোকসভাত কি ৰংৰ কাপোৰ পৰিধান কৰে?", + "en_question": "What color of clothing do people typically wear when attending funerals in your country?", + "annotations": [ + { + "answers": [ + "বগা" + ], + "en_answers": [ + "white" + ], + "count": 5 + }, + { + "answers": [ + "পাতল ৰং" + ], + "en_answers": [ + "light color" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-01": { + "question": "অসমত চিনেমা হলত কি খাদ্য খোৱা হয়?", + "en_question": "Which snack is eaten in the cinema in your country?", + "annotations": [ + { + "answers": [ + "পপকৰ্ন", + "পপকন", + "পʼপকন", + "পপকৰ্ণ" + ], + "en_answers": [ + "popcorn" + ], + "count": 5 + }, + { + "answers": [ + "চিপছ", + "চিপচ্" + ], + "en_answers": [ + "chips" + ], + "count": 2 + }, + { + "answers": [ + "কোল্দ্ৰিংচ", + "শীতল পানীয়", + "শীতল পানীয় বা কফি" + ], + "en_answers": [ + "cold drinks", + "cold drink" + ], + "count": 2 + }, + { + "answers": [ + "চকলেট" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + }, + { + "answers": [ + "কফি", + "শীতল পানীয় বা কফি" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-02": { + "question": "অসমত সবাতোকৈ জনপ্ৰিয় চিপছ/ক্ৰিচ্পৰ সোৱাদ কি?", + "en_question": "What is the most popular chip/crisp flavour in your country?", + "annotations": [ + { + "answers": [ + "নিমখিয়া জ্বলা", + "নিমখীয়া" + ], + "en_answers": [ + "salty" + ], + "count": 2 + }, + { + "answers": [ + "টেঙা মিঠা" + ], + "en_answers": [ + "sour sweet" + ], + "count": 1 + }, + { + "answers": [ + "জ্বলা মিঠা" + ], + "en_answers": [ + "burnt sweet" + ], + "count": 1 + }, + { + "answers": [ + "প্লেইন চিপছ" + ], + "en_answers": [ + "plain" + ], + "count": 1 + }, + { + "answers": [ + "চিজ অনিয়ন" + ], + "en_answers": [ + "cheese onion" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-04": { + "question": "অসমত জনপ্ৰিয় চেলিব্ৰিটি শেফজন কোন?", + "en_question": "Who is a popular celebrity chef in your country?", + "annotations": [ + { + "answers": [ + "নয়নজ্যোতি শইকীয়া", + "নয়নজৌতি শইকিয়া", + "নয়ন জ্যোতি শইকীয়া", + "নয়নজ্যোতি শইকীয়া" + ], + "en_answers": [ + "nayanjyoti saikia", + "nayan jyoti saikia" + ], + "count": 5 + }, + { + "answers": [ + "শান্তা শৰ্মা" + ], + "en_answers": [ + "shanta sharma" + ], + "count": 3 + }, + { + "answers": [ + "অতুল লস্কৰ" + ], + "en_answers": [ + "atul laskar" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-05": { + "question": "অসমত কোনখন খাদ্য সস্তা আৰু দ্ৰুত খাদ্য বিকল্প হ'ব পাৰে?", + "en_question": "Which food is a cost-effective and quick meal option in your country?", + "annotations": [ + { + "answers": [ + "চাউমিন" + ], + "en_answers": [ + "chowmein" + ], + "count": 1 + }, + { + "answers": [ + "অসমীয়া থালী" + ], + "en_answers": [ + "assamese platter" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "New-en-07": { + "question": "অসমত কি কি জনপ্ৰিয় ৰন্ধন অনুষ্ঠানসমূহ আছে?", + "en_question": "What are the most popular cooking shows in your country?", + "annotations": [ + { + "answers": [ + "পাকঘৰ" + ], + "en_answers": [ + "kitchen" + ], + "count": 3 + }, + { + "answers": [ + "অসমীয়া ৰন্ধন" + ], + "en_answers": [ + "assamese cooking" + ], + "count": 1 + }, + { + "answers": [ + "গৃহিনী চুপাৰষ্টাৰ" + ], + "en_answers": [ + "homemaker superstar" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-08": { + "question": "অসমত কি সবাতোকৈ জনপ্ৰিয় চকলেট ব্ৰেণ্ডটো কি?", + "en_question": "What is the most popular chocolate brand in your country?", + "annotations": [ + { + "answers": [ + "কেডবেৰী", + "ডেইৰি মিল্ক" + ], + "en_answers": [ + "cadbury", + "dairy milk" + ], + "count": 4 + }, + { + "answers": [ + "নেষ্টলে", + "নেছলে" + ], + "en_answers": [ + "nestle" + ], + "count": 3 + }, + { + "answers": [ + "আমুল চকলেট", + "আমোল", + "আমূল" + ], + "en_answers": [ + "amul chocolate", + "amul" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-10": { + "question": "অসমত সৰ্বাধিক খোৱা পনীৰটো কি?", + "en_question": "What is the most eaten cheese in your country?", + "annotations": [ + { + "answers": [ + "আমুল পনীৰ", + "আমূল" + ], + "en_answers": [ + "amul paneer", + "amul" + ], + "count": 2 + }, + { + "answers": [ + "ঘৰত তৈয়াৰ কৰা পনীৰ", + "ঘৰুৱা উৎপাদিত" + ], + "en_answers": [ + "homemade paneer", + "homemade" + ], + "count": 2 + }, + { + "answers": [ + "শ্বাহী পনীৰ" + ], + "en_answers": [ + "royal cottage cheese" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-11": { + "question": "অসমত কোন শাক-পাচলি সকলোতকৈ কম প্ৰিয়?", + "en_question": "What is the most disliked vegetable in your country?", + "annotations": [ + { + "answers": [ + "ব্ৰকলি" + ], + "en_answers": [ + "broccoli" + ], + "count": 2 + }, + { + "answers": [ + "কেপচিকাম", + "কেপছিকাম" + ], + "en_answers": [ + "capsicum" + ], + "count": 2 + }, + { + "answers": [ + "বীট" + ], + "en_answers": [ + "beet" + ], + "count": 1 + }, + { + "answers": [ + "তিতা কেৰেলা" + ], + "en_answers": [ + "bitter gourd" + ], + "count": 1 + }, + { + "answers": [ + "কাঠফুলা" + ], + "en_answers": [ + "mushroom" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-12": { + "question": "অসমৰ খাদ্য আদালতসমূহত সচৰাচৰ কি খাদ্য পোৱা যায়?", + "en_question": "What food is most commonly found in food courts in your country?", + "annotations": [ + { + "answers": [ + "চীনা খাদ্য", + "চাইনীজ খাদ্য" + ], + "en_answers": [ + "chinese food" + ], + "count": 2 + }, + { + "answers": [ + "অসমীয়া খাদ্য" + ], + "en_answers": [ + "assamese food" + ], + "count": 1 + }, + { + "answers": [ + "ইটালীয়ান খাদ্য" + ], + "en_answers": [ + "italian food" + ], + "count": 1 + }, + { + "answers": [ + "চাহ" + ], + "en_answers": [ + "tea" + ], + "count": 1 + }, + { + "answers": [ + "পিজ্জা" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + }, + { + "answers": [ + "চাত" + ], + "en_answers": [ + "chaat" + ], + "count": 1 + }, + { + "answers": [ + "ৰ'ল" + ], + "en_answers": [ + "roll" + ], + "count": 1 + }, + { + "answers": [ + "ৰুটি" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "পৰঠা" + ], + "en_answers": [ + "paratha" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-17": { + "question": "অসমত ক্ৰীড়া প্ৰেমীসকলে সচৰাচৰ ব্যৱহাৰ কৰা উৎসাহ বৰ্ধনৰ সাধনবোৰ কি কি?", + "en_question": "What are the most common cheering tools used by sports fans in your country?", + "annotations": [ + { + "answers": [ + "প্লেকাৰ্ড", + "প্লে কাৰ্ড" + ], + "en_answers": [ + "placard" + ], + "count": 2 + }, + { + "answers": [ + "চিয়ৰ বাখৰ" + ], + "en_answers": [ + "shouting" + ], + "count": 1 + }, + { + "answers": [ + "উকি" + ], + "en_answers": [ + "whistle" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-en-18": { + "question": "অসমত এখন খেল চাবলৈ গ'লে দৰ্শকসকলে কি কি লৈ যায়?", + "en_question": "What do fans bring with them when attending a live game in your country?", + "annotations": [ + { + "answers": [ + "পানী", + "পানীৰ বটল", + "পানীবটল" + ], + "en_answers": [ + "water", + "water bottle" + ], + "count": 5 + }, + { + "answers": [ + "চিপচ" + ], + "en_answers": [ + "chips" + ], + "count": 1 + }, + { + "answers": [ + "বিস্কুট" + ], + "en_answers": [ + "biscuit" + ], + "count": 1 + }, + { + "answers": [ + "চান গ্লাচ" + ], + "en_answers": [ + "sunglasses" + ], + "count": 1 + }, + { + "answers": [ + "গামোছা" + ], + "en_answers": [ + "towel" + ], + "count": 1 + }, + { + "answers": [ + "খোৱা বস্তু" + ], + "en_answers": [ + "edible item" + ], + "count": 1 + }, + { + "answers": [ + "বিছনি" + ], + "en_answers": [ + "hand fan" + ], + "count": 1 + }, + { + "answers": [ + "লঘূ খাদ্য" + ], + "en_answers": [ + "snack" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-19": { + "question": "অসমৰ আটাইতকৈ প্ৰসিদ্ধ ক্ৰীড়া ষ্টেডিয়ামটো কি?", + "en_question": "What is the most well known sporting stadium in your country?", + "annotations": [ + { + "answers": [ + "নেহৰু ষ্টেডিয়াম", + "নেহেৰু" + ], + "en_answers": [ + "nehru stadium", + "nehru" + ], + "count": 3 + }, + { + "answers": [ + "সৰুসজাই ষ্টেডিয়াম", + "সৰুসজাই ষ্টেডয়াম", + "সৰুসজাই ষ্টেডিয়াম" + ], + "en_answers": [ + "sarusajai stadium" + ], + "count": 3 + }, + { + "answers": [ + "বৰ্ষাপাৰা ষ্টেডিয়াম", + "বৰ্ষাপাৰা ষ্টেডিয়াম" + ], + "en_answers": [ + "barsapara stadium" + ], + "count": 2 + }, + { + "answers": [ + "ডঃ ভূপেন হাজৰিকা" + ], + "en_answers": [ + "dr. bhupen hazarika" + ], + "count": 1 + }, + { + "answers": [ + "সৰুচৰা" + ], + "en_answers": [ + "small stadium" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-23": { + "question": "অসমৰ আটাইতকৈ বিখ্যাত পেৰালিম্পিয়ানজন কোন?", + "en_question": "Who is the most famous Paralympian in your country?", + "annotations": [ + { + "answers": [ + "হীমা দাস" + ], + "en_answers": [ + "hima das" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-26": { + "question": "অসমত সৰ্বাধিক জনপ্ৰিয় ক্ৰীড়া ধ্বনি কি?", + "en_question": "What is the best recognized sporting chant in your country?", + "annotations": [ + { + "answers": [ + "উৰুলি ধ্বনি", + "উকি" + ], + "en_answers": [ + "whistle" + ], + "count": 2 + }, + { + "answers": [ + "হিপ হিপ হুৰে" + ], + "en_answers": [ + "hip-hip-hurrah", + "hip hip hurray", + "hip hip hooray" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-38": { + "question": "অসমত কোন কোন শিল্পসমূহ অধিক সময়সূচী সংযোজনযোগ্য হিচাপে পৰিচিত?", + "en_question": "Which industries are known for more flexible working hours in your country?", + "annotations": [ + { + "answers": [ + "দুগ্ধ উদ্যোগ" + ], + "en_answers": [ + "dairy industry" + ], + "count": 1 + }, + { + "answers": [ + "ভূপেন হাজৰিকা" + ], + "en_answers": [ + "bhupen hazarika" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "New-en-41": { + "question": "অসমত সবাতোকৈ পৰিচিত আৰু সফল উদ্যোগপতি কোন?", + "en_question": "Who is the most well known and successful entrepreneur in your country?", + "annotations": [ + { + "answers": [ + "ৰিনিকি ভূঁঞা শৰ্মা", + "ৰিণিকি ভূঞা শৰ্মা" + ], + "en_answers": [ + "riniki bhunya sharma", + "riniki bhuyan sharma" + ], + "count": 2 + }, + { + "answers": [ + "হৰিপ্ৰসন্ন হাজৰিকা" + ], + "en_answers": [ + "hariprasanna hazarika" + ], + "count": 1 + }, + { + "answers": [ + "জেছিন কুম্বাং পাৱ" + ], + "en_answers": [ + "jesin kumbang paw" + ], + "count": 1 + }, + { + "answers": [ + "ভূপেন হাজৰিকা" + ], + "en_answers": [ + "bhupen hazarika" + ], + "count": 1 + }, + { + "answers": [ + "হেমেন্দ্ৰ প্ৰসাদ বৰুৱা" + ], + "en_answers": [ + "hemendra prasad baruah" + ], + "count": 1 + }, + { + "answers": [ + "উদ্ভব ভৰালী" + ], + "en_answers": [ + "udbhav bharali" + ], + "count": 1 + }, + { + "answers": [ + "ৰাধা গোৱিন্দ বৰুৱা" + ], + "en_answers": [ + "radha govinda baruah" + ], + "count": 1 + }, + { + "answers": [ + "মুনজিৰ আলম" + ], + "en_answers": [ + "munzir alam" + ], + "count": 1 + }, + { + "answers": [ + "প্ৰাঞ্জল শইকীয়া" + ], + "en_answers": [ + "pranjal saikia" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-47": { + "question": "অসমৰ ঘৰসমূহৰ পিছফালে থকা বাগিচাত সাধাৰণতে কি পোৱা যায়?", + "en_question": "What can typically be found in the back garden of houses in your country?", + "annotations": [ + { + "answers": [ + "শাক পাচলি", + "শাক", + "পাচলি", + "মুল", + "ফল মুল" + ], + "en_answers": [ + "vegetables", + "greens/vegetables", + "vegetable" + ], + "count": 3 + }, + { + "answers": [ + "নেমু" + ], + "en_answers": [ + "lemon" + ], + "count": 2 + }, + { + "answers": [ + "কলগছ" + ], + "en_answers": [ + "banana tree" + ], + "count": 2 + }, + { + "answers": [ + "জলকীয়া", + "জলকীয়া" + ], + "en_answers": [ + "chili pepper" + ], + "count": 2 + }, + { + "answers": [ + "ফল", + "ফল মুল" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + }, + { + "answers": [ + "জেতুকা গছ" + ], + "en_answers": [ + "henna tree" + ], + "count": 1 + }, + { + "answers": [ + "অমিতা" + ], + "en_answers": [ + "amita" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-49": { + "question": "অসমৰ আটাইতকৈ বিখ্যাত পৰিয়ালটোৰ নাম কি?", + "en_question": "What is the name of the most famous family in your country?", + "annotations": [ + { + "answers": [ + "মুখ্যমন্ত্ৰীৰ পৰিয়াল" + ], + "en_answers": [ + "chief minister's family" + ], + "count": 1 + }, + { + "answers": [ + "পিজুষ হাজৰিকাৰ পৰিয়াল" + ], + "en_answers": [ + "pijush hazarika's family" + ], + "count": 1 + }, + { + "answers": [ + "বৰষাৰাণী বিষয়াৰ পৰিয়াল", + "বৰষাৰাণী বিষয়াr পৰিয়াল" + ], + "en_answers": [ + "barasharani bishaya's family" + ], + "count": 1 + }, + { + "answers": [ + "তৰুন গগৈৰ পৰিয়াল" + ], + "en_answers": [ + "tarun gogoi's family" + ], + "count": 1 + }, + { + "answers": [ + "হেমন্ত বিশ্ব শৰ্মাৰ পৰিয়াল" + ], + "en_answers": [ + "hemanta biswa sarma's family" + ], + "count": 1 + }, + { + "answers": [ + "ৰাধাগোবিন্দ বৰুৱাৰ পৰিয়াল" + ], + "en_answers": [ + "radhagobinda baruah's family" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 1 + } + }, + "New-en-50": { + "question": "অসমত সবাতোকৈ সাধাৰণ পৰিয়ালৰ নামটো কি?", + "en_question": "What is the most common family name in your country?", + "annotations": [], + "idks": { + "no-answer": 3, + "idk": 1, + "not-applicable": 1 + } + }, + "New-en-55": { + "question": "অসমত পৰিয়ালসমূহে সৰ্বাধিক চৰ্চা কৰা ধৰ্মটো কোনটো?", + "en_question": "Which religion is most commonly practiced by families in your country?", + "annotations": [ + { + "answers": [ + "হিন্দু", + "হিন্দু ধৰ্ম", + "সনাতন ধৰ্ম" + ], + "en_answers": [ + "hindu", + "hindu religion", + "hinduism" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-56": { + "question": "অসমত পৰিয়ালে কোনটো বিদেশী ভাষা সবাতোকৈ বেছি ক'বা হয়?", + "en_question": "What is the most popular foreign language spoken by families in your country?", + "annotations": [ + { + "answers": [ + "ইংৰাজী", + "ইংৰাজি" + ], + "en_answers": [ + "english" + ], + "count": 5 + }, + { + "answers": [ + "হিন্দী" + ], + "en_answers": [ + "hindi" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-en-59": { + "question": "অসমৰ পৰা পৰিয়ালসমূহে অভিবাসন কৰিবলৈ কোন খন দেশ সৰ্বাধিক জনপ্ৰিয়?", + "en_question": "Which country is the most popular destination for families from your country to emigrate to?", + "annotations": [ + { + "answers": [ + "আমেৰিকা", + "আমেৰিকা যুক্তৰাষ্ট্ৰ" + ], + "en_answers": [ + "america", + "united states of america", + "us" + ], + "count": 3 + }, + { + "answers": [ + "ইংলেণ্ড" + ], + "en_answers": [ + "england", + "uk", + "u.k", + "united kingdom" + ], + "count": 2 + }, + { + "answers": [ + "বালি" + ], + "en_answers": [ + "sand" + ], + "count": 1 + }, + { + "answers": [ + "থাইলেন্দ" + ], + "en_answers": [ + "thailand" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 1 + } + }, + "New-en-68": { + "question": "অসমৰ বিদ্যালয়সমূহত বেয়া আচৰণৰ বাবে কি পৰিণাম হ'ব পাৰে?", + "en_question": "What repercussions are there for bad behavior in schools in your country?", + "annotations": [ + { + "answers": [ + "শিক্ষকে উচিত বিচাৰ কৰি শাস্তি দিব পাৰে", + "অনুশাসনমূলক শাস্তি" + ], + "en_answers": [ + "disciplinary punishment" + ], + "count": 2 + }, + { + "answers": [ + "অভিভাৱক মাতি আনি শাস্তি দিব পাৰে", + "অভিভাৱকক অৱগত কৰোৱা" + ], + "en_answers": [ + "call parents", + "parent-teacher conference", + "informing the guardian" + ], + "count": 2 + }, + { + "answers": [ + "স্কুলৰ পৰা বহিষ্কাৰ কৰিব পাৰে", + "বহিষ্কাৰ কৰা স্কুলৰ পৰা" + ], + "en_answers": [ + "expelled", + "expulsion", + "expelled from school" + ], + "count": 2 + }, + { + "answers": [ + "প্রযোজ্য নহয়", + "not applicable" + ], + "en_answers": [ + "not applicable" + ], + "count": 1 + }, + { + "answers": [ + "শ্ৰেনীত শিক্ষকৰ পাঠদানৰ পৰা উলিয়াই দিয়া" + ], + "en_answers": [ + "exempted from the teacher's teaching in class" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-69": { + "question": "অসমীয়া সাহিত্যৰ শ্ৰেণীত সাধাৰণতে কোন কোন লেখকক অধ্যয়ন কৰা হয়?", + "en_question": "Which writers are commonly studied in literature class in your country?", + "annotations": [ + { + "answers": [ + "লক্ষ্মীনাথ বেজবৰুৱা", + "ৰসৰাজ লক্ষ্মীনাথ বেজবৰুৱা" + ], + "en_answers": [ + "lakshminath bezbaruah", + "rasaraj laxminath bezbaroa" + ], + "count": 4 + }, + { + "answers": [ + "শ্ৰীমন্ত শঙ্কৰদেৱ" + ], + "en_answers": [ + "srimanta sankardev" + ], + "count": 1 + }, + { + "answers": [ + "বীৰেন্দ্ৰনাথ ভট্টাচাৰ্য্য" + ], + "en_answers": [ + "birendranath bhattacharyya" + ], + "count": 1 + }, + { + "answers": [ + "বাণীকান্ত কাকতি" + ], + "en_answers": [ + "banikanta kakati" + ], + "count": 1 + }, + { + "answers": [ + "নালিনিবলা দেৱী" + ], + "en_answers": [ + "goddess nalinibala" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-70": { + "question": "অসমৰ উচ্চ মাধ্যমিক বিদ্যালয়সমূহত এটা বছৰত কিমানটা বিদ্যালয়ৰ ছুটি থাকে? (কেৱল আৰবী সংখ্যা (যেনে, 1) প্ৰদান কৰক।)", + "en_question": "How many school breaks are there in a year for high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 1 + }, + { + "answers": [ + "40", + "40 দিন" + ], + "en_answers": [ + "40" + ], + "count": 1 + }, + { + "answers": [ + "50", + "50দিন" + ], + "en_answers": [ + "50" + ], + "count": 1 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + }, + { + "answers": [ + "27" + ], + "en_answers": [ + "27" + ], + "count": 1 + }, + { + "answers": [ + "28" + ], + "en_answers": [ + "28" + ], + "count": 1 + }, + { + "answers": [ + "29" + ], + "en_answers": [ + "29" + ], + "count": 1 + }, + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-72": { + "question": "অসমত ছাত্ৰ-ছাত্ৰীসকলে পঢ়াশুনা কৰিবলৈ সাধাৰণতে কোন অনলাইন সম্পদ ব্যৱহাৰ কৰে?", + "en_question": "Which online resource do students usually use to study in your country?", + "annotations": [ + { + "answers": [ + "ইউটিউব" + ], + "en_answers": [ + "youtube" + ], + "count": 1 + }, + { + "answers": [ + "যোম এপ" + ], + "en_answers": [ + "run app" + ], + "count": 1 + }, + { + "answers": [ + "গোগোল ক্লাচ ৰুম" + ], + "en_answers": [ + "google classroom" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-75": { + "question": "অসমীয়া বিশ্ববিদ্যালয়সমূহত শিক্ষাদানৰ সপ্তাহৰ হিচাপে এটা ছেমিষ্টাৰৰ গড় দৈৰ্ঘ্য কিমান? (কেৱল আৰবী সংখ্যা (যেনে, 1) প্ৰদান কৰক।)", + "en_question": "What is the average length of a semester in terms of weeks of teaching at universities in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "16" + ], + "en_answers": [ + "16" + ], + "count": 3 + }, + { + "answers": [ + "17" + ], + "en_answers": [ + "17" + ], + "count": 1 + }, + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 1 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 1 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-76": { + "question": "অসমৰ কোন বিমানবন্দৰত বন্ধৰ সময়ত সবাতোকৈ ব্যস্ততা পৰিলক্ষিত হয়?", + "en_question": "Which airport in your country is the busiest during the holiday season?", + "annotations": [ + { + "answers": [ + "লোকপ্ৰিয় গোপীনাথ বৰদলৈ আন্তৰ্জাতিক বিমান বন্দৰ", + "লোকপ্ৰিয় গোপনাথ বৰদলৈ আন্তঃৰাষ্ট্ৰীয় বিমানবন্দৰ", + "লোকপ্ৰিয় গোপীনাথ বৰদলৈ আন্তৰ্জাতিক বিমানবন্দৰ" + ], + "en_answers": [ + "lokpriya gopinath bordoloi international airport" + ], + "count": 3 + }, + { + "answers": [ + "ৰৰৈয়া বিমানবন্দৰ" + ], + "en_answers": [ + "rowriah airport" + ], + "count": 1 + }, + { + "answers": [ + "গুৱাহাটী" + ], + "en_answers": [ + "guwahati" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-79": { + "question": "অসমৰ কোন অঞ্চলটো ইয়াৰ নাট্য প্ৰদৰ্শনৰ বাবে ভালকৈ জনাজাত?", + "en_question": "Which region of your country is well known for its theatrical performances?", + "annotations": [ + { + "answers": [ + "যোৰহাট" + ], + "en_answers": [ + "jorhat" + ], + "count": 4 + }, + { + "answers": [ + "গুৱাহাটী" + ], + "en_answers": [ + "guwahati" + ], + "count": 2 + }, + { + "answers": [ + "ডিব্ৰুগড়" + ], + "en_answers": [ + "dibrugarh" + ], + "count": 2 + }, + { + "answers": [ + "শিৱসাগৰ" + ], + "en_answers": [ + "sivasagar" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-87": { + "question": "অসমৰ আটাইতকৈ বিখ্যাত ঐতিহাসিক স্থলচিহ্নটো কি?", + "en_question": "What is the most famous historic landmark in your country?", + "annotations": [ + { + "answers": [ + "ৰংঘৰ" + ], + "en_answers": [ + "rang ghar" + ], + "count": 4 + }, + { + "answers": [ + "কাৰেং ঘৰ", + "কাৰেংঘৰ" + ], + "en_answers": [ + "kareng ghar", + "karengh ghar" + ], + "count": 3 + }, + { + "answers": [ + "তলাতল ঘৰ" + ], + "en_answers": [ + "talatal ghar" + ], + "count": 2 + }, + { + "answers": [ + "ৰাজমাও পুখুৰী" + ], + "en_answers": [ + "rajmaw pukhuri" + ], + "count": 1 + }, + { + "answers": [ + "কামাখ্যা" + ], + "en_answers": [ + "kamakhya" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-90": { + "question": "অসমত কি আটাইতকৈ বিখ্যাত হোটেল ব্ৰেণ্ডটো?", + "en_question": "What is the most famous hotel brand in your country?", + "annotations": [ + { + "answers": [ + "তাজ হোটেল", + "তাজ" + ], + "en_answers": [ + "taj hotel" + ], + "count": 3 + }, + { + "answers": [ + "পেৰাডাইজ", + "পেৰেডাইজ" + ], + "en_answers": [ + "paradise" + ], + "count": 2 + }, + { + "answers": [ + "গোলমোহৰ গ্ৰেণ্ড", + "গুলমোহৰ গ্ৰেণ্ড" + ], + "en_answers": [ + "gulmohar grand" + ], + "count": 2 + }, + { + "answers": [ + "নোভোতেল" + ], + "en_answers": [ + "novotel" + ], + "count": 1 + }, + { + "answers": [ + "কে এফ চি" + ], + "en_answers": [ + "kfc" + ], + "count": 1 + }, + { + "answers": [ + "দমিনজ" + ], + "en_answers": [ + "sunday" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-05": { + "question": "অসমত সৰ্বাধিক জনপ্ৰিয় গ্ৰাব-এণ্ড-গ' নাস্তাৰ বিকল্পটো কি?", + "en_question": "What is the most popular grab-and-go breakfast option in your country?", + "annotations": [ + { + "answers": [ + "পিঠাগুৰি", + "পিঠাগুৰি জলপান" + ], + "en_answers": [ + "rice flour", + "rice flour snack" + ], + "count": 2 + }, + { + "answers": [ + "সান্দহগুৰি" + ], + "en_answers": [ + "sandahguri" + ], + "count": 1 + }, + { + "answers": [ + "চিৰা মুৰি" + ], + "en_answers": [ + "flattened rice snack" + ], + "count": 1 + }, + { + "answers": [ + "কল গাখীৰ" + ], + "en_answers": [ + "banana milk" + ], + "count": 1 + }, + { + "answers": [ + "ব্ৰেড জাম" + ], + "en_answers": [ + "bread jam" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 2, + "idk": 0 + } + }, + "New-gr-06": { + "question": "অসমত যুৱ প্ৰজন্মৰ মাজত কি খাদ্য সবাতোকৈ জনপ্ৰিয়?", + "en_question": "What is the most popular food in your country among young people?", + "annotations": [ + { + "answers": [ + "চীনা খাদ্য", + "চাইনিজ খাদ্য", + "চাইনীজ ফাষ্ট ফুড", + "চাইনিজ খাদ্য, চাইনীজ ফাষ্ট ফুড", + "চীনা খাদ্য, চাইনীজ ফাষ্ট ফুড" + ], + "en_answers": [ + "chinese food", + "chinese fast food" + ], + "count": 4 + }, + { + "answers": [ + "গাহৰি ভাত" + ], + "en_answers": [ + "pork with rice" + ], + "count": 1 + }, + { + "answers": [ + "হাঁহ ভাত" + ], + "en_answers": [ + "duck rice" + ], + "count": 1 + }, + { + "answers": [ + "চিপচ" + ], + "en_answers": [ + "chips" + ], + "count": 1 + }, + { + "answers": [ + "চাহ" + ], + "en_answers": [ + "tea" + ], + "count": 1 + }, + { + "answers": [ + "ভাৰতীয় চাত" + ], + "en_answers": [ + "indian roof" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-08": { + "question": "অসমৰ উৎসৱসমূহত সৰ্বাধিক পৰিমাণে কি ধৰণৰ মদ্যপান কৰা হয়?", + "en_question": "What type of alcoholic drink is most commonly consumed at festivals in your country?", + "annotations": [ + { + "answers": [ + "বিয়েৰ", + "বিয়েৰ" + ], + "en_answers": [ + "beer" + ], + "count": 2 + }, + { + "answers": [ + "ছাইমদ" + ], + "en_answers": [ + "lime" + ], + "count": 1 + }, + { + "answers": [ + "সাঁজ" + ], + "en_answers": [ + "xaaj" + ], + "count": 1 + }, + { + "answers": [ + "ভদকা" + ], + "en_answers": [ + "vodka" + ], + "count": 1 + }, + { + "answers": [ + "পৰম্পৰাগত সুৰা" + ], + "en_answers": [ + "traditional liquor" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-13": { + "question": "অসমত পুৱাৰ সময়ত সকলোৰে প্ৰিয় পানীয় কি?", + "en_question": "What is the most common morning drink in your country?", + "annotations": [ + { + "answers": [ + "চাহ" + ], + "en_answers": [ + "tea" + ], + "count": 4 + }, + { + "answers": [ + "গৰম পানী" + ], + "en_answers": [ + "hot water" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-15": { + "question": "অসমত সবাতোকৈ জনপ্ৰিয় পৰম্পৰাগত মিঠাইটো কি?", + "en_question": "What is the most popular traditional dessert in your country?", + "annotations": [ + { + "answers": [ + "নাৰিকলৰ লাৰু" + ], + "en_answers": [ + "coconut laddu" + ], + "count": 3 + }, + { + "answers": [ + "তিল পিঠা", + "তিলপিঠা" + ], + "en_answers": [ + "til pitha", + "tel pitha", + "kholachaparia pitha", + "sesame rice cake" + ], + "count": 2 + }, + { + "answers": [ + "ঘিলা পিঠা", + "ঘিলাপিঠা" + ], + "en_answers": [ + "ghila pitha", + "sticky rice cake" + ], + "count": 2 + }, + { + "answers": [ + "পিঠা" + ], + "en_answers": [ + "rice cake" + ], + "count": 1 + }, + { + "answers": [ + "ৰচোগল্লা" + ], + "en_answers": [ + "rasgulla" + ], + "count": 1 + }, + { + "answers": [ + "বৰফী" + ], + "en_answers": [ + "barfi" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-21": { + "question": "অসমত সৰ্বাধিক জনপ্ৰিয় ৰেকেট ক্ৰীড়াটো কি?", + "en_question": "What is the most popular racket sport in your country?", + "annotations": [ + { + "answers": [ + "বেডমিন্টন", + "বেডমিণ্টন" + ], + "en_answers": [ + "badminton" + ], + "count": 5 + }, + { + "answers": [ + "টেনিছ", + "টেনিচ" + ], + "en_answers": [ + "tennis" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-24": { + "question": "অসমত কি সবাতোকৈ জনপ্ৰিয় আউটড'ৰ ট্ৰেক আৰু ফিল্ড ক্ৰীড়া?", + "en_question": "What is the most popular track and field sport in your country?", + "annotations": [ + { + "answers": [ + "দৌৰ" + ], + "en_answers": [ + "race", + "running" + ], + "count": 2 + }, + { + "answers": [ + "কাবাডী" + ], + "en_answers": [ + "kabaddi" + ], + "count": 1 + }, + { + "answers": [ + "ক্ৰিকেট" + ], + "en_answers": [ + "cricket" + ], + "count": 1 + }, + { + "answers": [ + "ৰছী টনা" + ], + "en_answers": [ + "tug of war", + "tug-of-war" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 1 + } + }, + "New-gr-29": { + "question": "অসমত কোনটো আন্তঃৰাষ্ট্ৰীয় ক্ৰীড়া অনুষ্ঠানটো সবাতোকৈ জনপ্ৰিয়?", + "en_question": "Which international sporting event is the most popular in your country?", + "annotations": [ + { + "answers": [ + "ফিফা ৱৰ্ল্ড কাপ", + "বিশ্বকাপ ফুটবল", + "বিশ্বকাপ ফটবল", + "বিশ্বকাপ" + ], + "en_answers": [ + "fifa world cup", + "world cup football", + "world cup" + ], + "count": 3 + }, + { + "answers": [ + "অলিম্পিক" + ], + "en_answers": [ + "olympic" + ], + "count": 2 + }, + { + "answers": [ + "এছিয়ান গেমছ" + ], + "en_answers": [ + "asian games" + ], + "count": 1 + }, + { + "answers": [ + "বৰষাপাৰা" + ], + "en_answers": [ + "barsapara" + ], + "count": 1 + }, + { + "answers": [ + "বিশ্বকাপ ক্ৰিকেট" + ], + "en_answers": [ + "cricket world cup" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-gr-47": { + "question": "অসমত সাধাৰণতে কামৰ বিৰতি কিমান মিনিট সময়ৰ হয়, দুপৰীয়া আৰু ৰাতিপুৱাৰ খাদ্য বিৰতি বাদ দি? (কেৱল আৰবী সংখ্যা (যেনে, 1) প্ৰদান কৰক।)", + "en_question": "How long (in minutes) are typical work breaks in your country, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 2 + }, + { + "answers": [ + "60", + "১ ঘঃ", + "1" + ], + "en_answers": [ + "60" + ], + "count": 2 + }, + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + }, + { + "answers": [ + "45" + ], + "en_answers": [ + "45" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-58": { + "question": "অসমত কোন চাকৰি কম দৰমহাৰ বুলি বিবেচিত হয়?", + "en_question": "Which job is considered underpaid in your country?", + "annotations": [ + { + "answers": [ + "স্কুলৰ ৰান্ধনী", + "মধ্যাহ্ন ভোজনৰ ৰান্ধনিসকলৰ" + ], + "en_answers": [ + "school cook", + "cooks of the midday meal" + ], + "count": 2 + }, + { + "answers": [ + "ফোৰ্দ গ্ৰেড ৰ", + "চতুৰ্থ বৰ্গৰ কৰ্মচাৰী" + ], + "en_answers": [ + "fourth grade", + "fourth grade employee" + ], + "count": 2 + }, + { + "answers": [ + "অংগণবাদীৰ শিক্ষক" + ], + "en_answers": [ + "anganwadi teacher" + ], + "count": 1 + }, + { + "answers": [ + "ব্যক্তিগত অনুষ্ঠানৰ কৰ্মচাৰীৰ" + ], + "en_answers": [ + "private event staff" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 1 + } + }, + "New-gr-76": { + "question": "অসমত ইষ্টাৰৰ সময়ত কি সাধাৰণতে পৰিৱেশন কৰা খাদ্য?", + "en_question": "What is the most common food served during Easter in your country?", + "annotations": [ + { + "answers": [ + "মূল", + "ফল মূল", + "পোলাও" + ], + "en_answers": [ + "vegetable", + "pilaf", + "pilav", + "pilau" + ], + "count": 2 + }, + { + "answers": [ + "ফল", + "ফল মূল" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + }, + { + "answers": [ + "বিৰিয়ানি" + ], + "en_answers": [ + "biryani" + ], + "count": 1 + }, + { + "answers": [ + "জুইচ" + ], + "en_answers": [ + "juice" + ], + "count": 1 + }, + { + "answers": [ + "কেক" + ], + "en_answers": [ + "cake" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 2, + "no-answer": 0 + } + }, + "New-gr-82": { + "question": "অসমৰ বৃদ্ধ জনসংখ্যাৰ মাজত কি সংগীতৰ ধৰণ সবাতোকৈ জনপ্ৰিয়?", + "en_question": "What is the most popular music genre among the elderly population in your country?", + "annotations": [ + { + "answers": [ + "লোক সংগীত", + "লোকগীত" + ], + "en_answers": [ + "folk" + ], + "count": 3 + }, + { + "answers": [ + "ভূপেন হাজৰিকাৰ গীত", + "ভূপেন্দ্ৰ সংগীত" + ], + "en_answers": [ + "bhupen hazarika", + "bhupendra" + ], + "count": 2 + }, + { + "answers": [ + "জ্যোতি সংগীত" + ], + "en_answers": [ + "jyoti" + ], + "count": 1 + }, + { + "answers": [ + "ৰাভা সংগীত" + ], + "en_answers": [ + "rabha" + ], + "count": 1 + }, + { + "answers": [ + "ধৰ্মীয় গীত" + ], + "en_answers": [ + "religious" + ], + "count": 1 + }, + { + "answers": [ + "সত্ৰীয়া সংগীত" + ], + "en_answers": [ + "sattriya" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-88": { + "question": "অসমত সাধাৰণতে শ্ৰাদ্ধত কি পানীয় প্ৰদান কৰা হয়?", + "en_question": "What drink is usually offered at funerals in your country?", + "annotations": [ + { + "answers": [ + "চাহ" + ], + "en_answers": [ + "tea" + ], + "count": 4 + }, + { + "answers": [ + "চৰবত" + ], + "en_answers": [ + "sorbet" + ], + "count": 1 + }, + { + "answers": [ + "পানী" + ], + "en_answers": [ + "water" + ], + "count": 1 + }, + { + "answers": [ + "পৰম্পৰাগতসুৰা" + ], + "en_answers": [ + "traditional liquor" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-89": { + "question": "অসমৰ বিয়াত সাধাৰণতে কি পানীয় প্ৰদান কৰা হয়?", + "en_question": "What drink is usually offered at weddings in your country?", + "annotations": [ + { + "answers": [ + "চাহ" + ], + "en_answers": [ + "tea" + ], + "count": 5 + }, + { + "answers": [ + "কফি" + ], + "en_answers": [ + "coffee" + ], + "count": 5 + }, + { + "answers": [ + "চৰবত" + ], + "en_answers": [ + "sorbet" + ], + "count": 2 + }, + { + "answers": [ + "শীতল পানীয়" + ], + "en_answers": [ + "cold drink" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-07": { + "question": "কি খাদ্য সামগ্ৰী অসমৰ পৰা উৎপত্তি হৈছে আৰু সমগ্ৰ বিশ্বতে পোৱা যায়?", + "en_question": "What food originated from your country and can be found all over the world?", + "annotations": [ + { + "answers": [ + "চাহ" + ], + "en_answers": [ + "tea" + ], + "count": 4 + }, + { + "answers": [ + "ভাত" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "চাহপাত" + ], + "en_answers": [ + "tea leaf" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-08": { + "question": "অসমত শিশুসকলে সাধাৰণতে কি খাদ্য পচন্দ নকৰে কিন্তু বৃদ্ধ লোকসকলে উপভোগ কৰে?", + "en_question": "What food is typically disliked by children but enjoyed by the elderly in your country?", + "annotations": [ + { + "answers": [ + "পিঠাগুৰি" + ], + "en_answers": [ + "rice flour" + ], + "count": 2 + }, + { + "answers": [ + "সান্দহগুৰি" + ], + "en_answers": [ + "sandahguri" + ], + "count": 1 + }, + { + "answers": [ + "গাখীৰ" + ], + "en_answers": [ + "milk" + ], + "count": 1 + }, + { + "answers": [ + "জলপান" + ], + "en_answers": [ + "snacks" + ], + "count": 1 + }, + { + "answers": [ + "কোমল চাউল" + ], + "en_answers": [ + "soft rice" + ], + "count": 1 + }, + { + "answers": [ + "তিতাকেৰেলা" + ], + "en_answers": [ + "bitter gourd" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-09": { + "question": "অসমত সচৰাচৰ ব্যৱহাৰ হোৱা ৰন্ধন সামগ্ৰীটো কি?", + "en_question": "What cooking utensil is most commonly used in your country?", + "annotations": [ + { + "answers": [ + "গেছ ষ্টভ", + "চিলিণ্ডাৰ", + "গেছ" + ], + "en_answers": [ + "gas stove", + "gas cylinder", + "gas" + ], + "count": 2 + }, + { + "answers": [ + "জুইশাল" + ], + "en_answers": [ + "matchstick" + ], + "count": 1 + }, + { + "answers": [ + "তেল" + ], + "en_answers": [ + "oil" + ], + "count": 1 + }, + { + "answers": [ + "মাটিডালি" + ], + "en_answers": [ + "earthen lamp" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-13": { + "question": "অসমত কোনটো শাক-পাচলি সবাতোকৈ জনপ্ৰিয়?", + "en_question": "Which is the most popular vegetable in your country?", + "annotations": [ + { + "answers": [ + "লাই শাক", + "লাইশাক" + ], + "en_answers": [ + "mustard greens" + ], + "count": 3 + }, + { + "answers": [ + "কচু" + ], + "en_answers": [ + "taro" + ], + "count": 2 + }, + { + "answers": [ + "পালেং শাক" + ], + "en_answers": [ + "spinach" + ], + "count": 1 + }, + { + "answers": [ + "অমিতা" + ], + "en_answers": [ + "papaya" + ], + "count": 1 + }, + { + "answers": [ + "বন্ধাকবি" + ], + "en_answers": [ + "cauliflower" + ], + "count": 1 + }, + { + "answers": [ + "ঢেকীয়া" + ], + "en_answers": [ + "fiddlehead fern" + ], + "count": 1 + }, + { + "answers": [ + "বেঙেনা" + ], + "en_answers": [ + "brinjal" + ], + "count": 1 + }, + { + "answers": [ + "জাতিলাও" + ], + "en_answers": [ + "jatilao", + "jati laou", + "jati lau" + ], + "count": 1 + }, + { + "answers": [ + "ৰঙালাউ" + ], + "en_answers": [ + "pumpkin" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-19": { + "question": "অসমত কোন জন্তুক ক্ৰীড়াৰ বাবে ব্যৱহাৰ কৰা হয়?", + "en_question": "Which animal is used for sports in your country?", + "annotations": [ + { + "answers": [ + "ঘোঁৰা", + "ঘোৰা" + ], + "en_answers": [ + "horse" + ], + "count": 3 + }, + { + "answers": [ + "ম'হ", + "মহ" + ], + "en_answers": [ + "buffalo" + ], + "count": 3 + }, + { + "answers": [ + "হাতী" + ], + "en_answers": [ + "elephant" + ], + "count": 1 + }, + { + "answers": [ + "কুকুৰা" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-66": { + "question": "অসমত সবাতোকৈ জনপ্ৰিয় বিবাহ-বাহৰ কোনটো?", + "en_question": "What is the most popular wedding venue in your country?", + "annotations": [ + { + "answers": [ + "নিজা বাসগৃহ" + ], + "en_answers": [ + "own house" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 2, + "idk": 0 + } + }, + "New-in-01": { + "question": "অসমত কোনটো কফি শ্বপ ব্ৰেণ্ডটো সবাতোকৈ জনপ্ৰিয়?", + "en_question": "Which coffee shop brand is the most popular in your country?", + "annotations": [ + { + "answers": [ + "নেচকেফে" + ], + "en_answers": [ + "nescafe" + ], + "count": 2 + }, + { + "answers": [ + "চি চি দি", + "ccd" + ], + "en_answers": [ + "ccd" + ], + "count": 2 + }, + { + "answers": [ + "ব্ৰু গল্ড" + ], + "en_answers": [ + "bru gold" + ], + "count": 1 + }, + { + "answers": [ + "নেষ্টলে" + ], + "en_answers": [ + "nestle" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-03": { + "question": "অসমৰ পৰা কি ধৰণৰ খাদ্য সাধাৰণতে বিদেশৰ ৰেষ্টুৰাঁত পৰিৱেশন কৰা হয়?", + "en_question": "What type of food from your country is typically served in restaurants overseas?", + "annotations": [ + { + "answers": [ + "চাহ", + "চাহপাত" + ], + "en_answers": [ + "tea", + "tea leaf" + ], + "count": 3 + }, + { + "answers": [ + "ভাত" + ], + "en_answers": [ + "rice" + ], + "count": 2 + }, + { + "answers": [ + "কফি" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + }, + { + "answers": [ + "মাছৰ টেঙা" + ], + "en_answers": [ + "fish sour", + "maasor tenga", + "sour fish curry" + ], + "count": 1 + }, + { + "answers": [ + "কোমোৰা দিয়া হাহ" + ], + "en_answers": [ + "duck with oranges" + ], + "count": 1 + }, + { + "answers": [ + "পাতত দিয়া মাছ" + ], + "en_answers": [ + "fish served on a plate" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-33": { + "question": "অসমৰ কোন অঞ্চলটো সাধাৰণতে খনন কাৰ্য্যৰ সৈতে জড়িত?", + "en_question": "What region in your country is usually associated with mining?", + "annotations": [ + { + "answers": [ + "লিডু" + ], + "en_answers": [ + "lidu" + ], + "count": 2 + }, + { + "answers": [ + "ডিগবৈ", + "দিগবৈ" + ], + "en_answers": [ + "digboi" + ], + "count": 2 + }, + { + "answers": [ + "শিৱসাগৰ" + ], + "en_answers": [ + "sivasagar" + ], + "count": 1 + }, + { + "answers": [ + "মাৰ্ঘেৰিটা" + ], + "en_answers": [ + "margarita" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-34": { + "question": "অসমৰ কোন অঞ্চলটো সাধাৰণতে তেলৰ সৈতে জড়িত?", + "en_question": "What region in your country is usually associated with oil?", + "annotations": [ + { + "answers": [ + "ডিগবৈ", + "দিগবৈ" + ], + "en_answers": [ + "digboi" + ], + "count": 4 + }, + { + "answers": [ + "নুমলীগড়" + ], + "en_answers": [ + "numaligarh" + ], + "count": 1 + }, + { + "answers": [ + "নুনমাটি" + ], + "en_answers": [ + "salt soil" + ], + "count": 1 + }, + { + "answers": [ + "দুলীয়াজান" + ], + "en_answers": [ + "duliajan" + ], + "count": 1 + }, + { + "answers": [ + "শিৱসাগৰ" + ], + "en_answers": [ + "sivasagar" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-62": { + "question": "অসমৰ কোনখন বিশ্ববিদ্যালয় ইয়াৰ অভিযান্ত্ৰিক শাখাৰ বাবে জনপ্ৰিয়? (চৰকাৰী নাম উল্লেখ কৰক।)", + "en_question": "What university in your country is popular because of its engineering major? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "তেজপুৰ বিশ্ববিদ্যালয়", + "তেজপুৰ বিশ্ববিদ্যাল়য়", + "তেজপুৰ বিশ্ববিদ্যালয়" + ], + "en_answers": [ + "tezpur university" + ], + "count": 3 + }, + { + "answers": [ + "আছাম ইন্জীনাৰং কলেজ", + "এই.ই.চি" + ], + "en_answers": [ + "assam engineering college", + "aec" + ], + "count": 2 + }, + { + "answers": [ + "অসম বিজ্ঞান আৰু প্ৰযুক্তিবিদ্যা প্ৰতিষ্ঠান" + ], + "en_answers": [ + "assam science and technology university" + ], + "count": 1 + }, + { + "answers": [ + "ডিব্ৰুগড় বিশ্ববিদ্যালয়" + ], + "en_answers": [ + "dibrugarh university" + ], + "count": 1 + }, + { + "answers": [ + "গুৱাহাটী বিশ্ববিদ্যালয়" + ], + "en_answers": [ + "gauhati university" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-63": { + "question": "অসমৰ কোনখন বিশ্ববিদ্যালয় ইয়াৰ চিকিৎসা শাখাৰ বাবে জনপ্ৰিয়? (চৰকাৰী নাম প্ৰদান কৰক।)", + "en_question": "What university in your country is popular because of its school of medicine? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "অসম চিকিৎসা মহাবিদ্যালয়", + "ডিব্ৰুগড় মেডীকেল কলেজ" + ], + "en_answers": [ + "assam medical college", + "dibrugarh medical college" + ], + "count": 2 + }, + { + "answers": [ + "গুৱাহাটী চিকৎসা মহাবিদ্যালয়", + "গুৱাহাটী মেদিকেল কলেজ" + ], + "en_answers": [ + "guwahati medical college" + ], + "count": 2 + }, + { + "answers": [ + "যোৰহাট চিকিৎসা মহাবিদ্যালয়" + ], + "en_answers": [ + "jorhat medical college" + ], + "count": 1 + }, + { + "answers": [ + "ডিব্ৰুগড় বিশ্ববিদ্যালয়" + ], + "en_answers": [ + "dibrugarh university" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-in-78": { + "question": "অসমত সবাতোকৈ জনপ্ৰিয় পৰিশোধ পদ্ধতিটো কি?", + "en_question": "What is the most popular payment method in your country?", + "annotations": [ + { + "answers": [ + "নগদ ধন", + "নগদ টকা" + ], + "en_answers": [ + "cash" + ], + "count": 2 + }, + { + "answers": [ + "গুগুল পে" + ], + "en_answers": [ + "google pay" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 1 + } + }, + "New-in-80": { + "question": "অসমৰ আটাইতকৈ বিখ্যাত থীম পাৰ্কটো কি?", + "en_question": "What is the most famous theme park in your country?", + "annotations": [ + { + "answers": [ + "একলেণ্ড ৱাটাৰ পাৰ্ক", + "এক'লেণ্ড", + "এক'লেণ্ড ৱাটাৰ পাৰ্ক" + ], + "en_answers": [ + "accoland water park", + "accoland" + ], + "count": 3 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 1 + } + }, + "New-ko-01": { + "question": "অসমত শিশুসকলে সাধাৰণতে চাবলৈ পছন্দ কৰা জনপ্ৰিয় শিশুৰ এনিমেশ্যনটো কি?", + "en_question": "What is the most popular children's animation that is commonly watched by kids in your country?", + "annotations": [ + { + "answers": [ + "মটু পাতলু", + "মটো পতলো", + "ম'তো পাতলো", + "মটো পাতলু" + ], + "en_answers": [ + "motu patlu" + ], + "count": 3 + }, + { + "answers": [ + "ডৰেমন" + ], + "en_answers": [ + "doraemon" + ], + "count": 2 + }, + { + "answers": [ + "ছোটা ভীম", + "চ'তা ভীম" + ], + "en_answers": [ + "chhota bheem", + "chota bheem" + ], + "count": 2 + }, + { + "answers": [ + "তম এন্দ জেৰি" + ], + "en_answers": [ + "tom and jerry" + ], + "count": 1 + }, + { + "answers": [ + "কাৰ্টুন নেটৱৰ্ক" + ], + "en_answers": [ + "cartoon network" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-02": { + "question": "অসমত গৰ্ভৱতী মহিলাৰ বাবে সবাতোকৈ জনপ্ৰিয় প্ৰাক-জন্ম শিক্ষা কাৰ্যকলাপটো কি?", + "en_question": "What is the most popular prenatal education activity for pregnant women in your country?", + "annotations": [], + "idks": { + "idk": 2, + "no-answer": 2, + "not-applicable": 1 + } + }, + "New-ko-03": { + "question": "অসমত পৰিয়ালে একেলগে গায় সেইটো কি শিশুসকলৰ বাবে সবাতোকৈ জনপ্ৰিয় গীত?", + "en_question": "What is the most popular children's song in your country that families sing together?", + "annotations": [ + { + "answers": [ + "বিহুগীত" + ], + "en_answers": [ + "bihu song" + ], + "count": 2 + }, + { + "answers": [ + "নিচুকনি গীত" + ], + "en_answers": [ + "lullaby" + ], + "count": 2 + }, + { + "answers": [ + "আমাৰে মইনা সুবএ" + ], + "en_answers": [ + "our sweet little girl" + ], + "count": 1 + }, + { + "answers": [ + "অ মোৰ আপোনাৰ দেশ" + ], + "en_answers": [ + "oh my beloved country" + ], + "count": 1 + }, + { + "answers": [ + "হৰিনাম" + ], + "en_answers": [ + "name of god" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-04": { + "question": "অসমত ল'ৰা ছোৱালীসকলৰ মাজত কোনবোৰ খেলনা সবাতোকৈ জনপ্ৰিয়?", + "en_question": "Which toys are most popular among boys in your country?", + "annotations": [ + { + "answers": [ + "পুতলা গাড়ী", + "গাড়ী", + "পুতলা গাড়ী" + ], + "en_answers": [ + "toy car", + "car" + ], + "count": 3 + }, + { + "answers": [ + "বল" + ], + "en_answers": [ + "ball" + ], + "count": 2 + }, + { + "answers": [ + "পুতলা" + ], + "en_answers": [ + "doll" + ], + "count": 2 + }, + { + "answers": [ + "ঝোলনা" + ], + "en_answers": [ + "swing" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-05": { + "question": "অসমত ছোৱালীসকলৰ মাজত কোনবোৰ খেলনা সবাতোকৈ জনপ্ৰিয়?", + "en_question": "Which toys are most popular among girls in your country?", + "annotations": [ + { + "answers": [ + "পুতলা" + ], + "en_answers": [ + "doll" + ], + "count": 2 + }, + { + "answers": [ + "ক্ৰিকেট" + ], + "en_answers": [ + "cricket" + ], + "count": 1 + }, + { + "answers": [ + "ভলীবল" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "ফুটবল" + ], + "en_answers": [ + "football" + ], + "count": 1 + }, + { + "answers": [ + "দৰা কইনা", + "দৰাকইনা" + ], + "en_answers": [ + "bride & groom set" + ], + "count": 1 + }, + { + "answers": [ + "টেডি বিয়েৰ" + ], + "en_answers": [ + "teddy bear" + ], + "count": 1 + }, + { + "answers": [ + "গাড়ী" + ], + "en_answers": [ + "car" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-06": { + "question": "অসমত শিশুসকলক সাধাৰণতে কোৱা হোৱা জনপ্ৰিয় লোক-কাহিনীটো কি?", + "en_question": "What is the most popular folk tale in your country that is typically told to children?", + "annotations": [ + { + "answers": [ + "বুঢ়া বুঢ়ী ৰ কাহিনি" + ], + "en_answers": [ + "old man and old woman's story" + ], + "count": 1 + }, + { + "answers": [ + "ৰজা ৰাণী ৰ কাহিনি" + ], + "en_answers": [ + "king queen's story" + ], + "count": 1 + }, + { + "answers": [ + "বুঢ়ী আইৰ সাধু" + ], + "en_answers": [ + "grandmother's tales" + ], + "count": 1 + }, + { + "answers": [ + "তেজীমলাৰ সাধু" + ], + "en_answers": [ + "tejimola's stepmother" + ], + "count": 1 + }, + { + "answers": [ + "চিলনি জীয়েকৰ সাধু" + ], + "en_answers": [ + "hawk's daughter's story" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-07": { + "question": "অসমত শ্ৰদ্ধাঞ্জলি প্ৰদানৰ সময়ত ব্যৱহৃত প্ৰথাগত প্ৰতীকটো কি?", + "en_question": "What is the customary symbol of condolence used at funerals in your country?", + "annotations": [ + { + "answers": [ + "ফুল" + ], + "en_answers": [ + "flower" + ], + "count": 3 + }, + { + "answers": [ + "বন্তি", + "চাকি", + "দীপ", + "ধূপ দীপ" + ], + "en_answers": [ + "lamp", + "dheep", + "deep" + ], + "count": 3 + }, + { + "answers": [ + "ধূপ", + "ধূপ দীপ" + ], + "en_answers": [ + "incense" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-08": { + "question": "অসমৰ বিশ্ববিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে অধিকাংশ সময়ত ক'ত অংশ-সময়ৰ চাকৰি কৰে?", + "en_question": "Where do university students in your country tend to work part-time the most?", + "annotations": [ + { + "answers": [ + "টিউচন কৰে", + "ঘৰুৱা শিক্ষকৰ চাকৰি" + ], + "en_answers": [ + "tutor" + ], + "count": 2 + }, + { + "answers": [ + "কোম্পানী" + ], + "en_answers": [ + "company" + ], + "count": 1 + }, + { + "answers": [ + "কলেজ" + ], + "en_answers": [ + "college" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "New-ko-09": { + "question": "অসমত অৱস্থিত কোম্পানীসমূহত কি কি দল নিৰ্মাণ কাৰ্যকলাপসমূহ প্ৰায়ে অনুশীলন কৰা হয়?", + "en_question": "What are the most frequently practiced team-building activities in companies based in your country?", + "annotations": [], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 1 + } + }, + "New-ko-10": { + "question": "অসমত লোকে পাৰ্শ্ব চাকৰি হিচাপে কি কি সাধাৰণ কাম কৰে?", + "en_question": "What are the most common activities people do as a side job in your country?", + "annotations": [ + { + "answers": [ + "টিউচন কৰে", + "ঘৰুৱা শিক্ষকৰ চাকৰি" + ], + "en_answers": [ + "tutor" + ], + "count": 2 + }, + { + "answers": [ + "দিন হাজিৰা কৰে" + ], + "en_answers": [ + "day labor" + ], + "count": 1 + }, + { + "answers": [ + "কেফে খোলে" + ], + "en_answers": [ + "cafe" + ], + "count": 1 + }, + { + "answers": [ + "অলংকাৰৰ ব্যৱসায় কৰে" + ], + "en_answers": [ + "jewelry" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 0 + } + }, + "New-pe-02": { + "question": "অসমত পৰ্যটকসকলৰ বাবে আটাইতকৈ বিখ্যাত খাদ্য স্মাৰক কি?", + "en_question": "What is the most famous edible souvenir for tourists in your country?", + "annotations": [ + { + "answers": [ + "হাঁহ কোমোৰা" + ], + "en_answers": [ + "duck curry" + ], + "count": 2 + }, + { + "answers": [ + "মাছৰ টেঙা" + ], + "en_answers": [ + "fish sour", + "maasor tenga", + "sour fish curry" + ], + "count": 2 + }, + { + "answers": [ + "খৰিচাৰ লগত গাহৰি মাংস সিজোৱা" + ], + "en_answers": [ + "pork cooked with fermented bamboo shoot" + ], + "count": 1 + }, + { + "answers": [ + "অসমীয়া খাদ্য" + ], + "en_answers": [ + "assamese food" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-06": { + "question": "অসমত সবাতোকৈ জনপ্ৰিয় ষ্টু কি?", + "en_question": "What is the most popular stew in your country?", + "annotations": [], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 1 + } + }, + "New-pe-11": { + "question": "অসমৰ খাদ্যসমূহত ব্যৱহৃত সবাতোকৈ সাধাৰণ মচলা/জড়ি-বুটি কি?", + "en_question": "What is the most common spice/herb used in dishes from your country?", + "annotations": [ + { + "answers": [ + "জালুক" + ], + "en_answers": [ + "pepper" + ], + "count": 3 + }, + { + "answers": [ + "আদা নহৰু" + ], + "en_answers": [ + "ginger garlic" + ], + "count": 1 + }, + { + "answers": [ + "মিঠিগুটি" + ], + "en_answers": [ + "sweet little one" + ], + "count": 1 + }, + { + "answers": [ + "জিৰা" + ], + "en_answers": [ + "cumin" + ], + "count": 1 + }, + { + "answers": [ + "লং" + ], + "en_answers": [ + "clove" + ], + "count": 1 + }, + { + "answers": [ + "হালধি" + ], + "en_answers": [ + "turmeric" + ], + "count": 1 + }, + { + "answers": [ + "ধনীয়া" + ], + "en_answers": [ + "coriander" + ], + "count": 1 + }, + { + "answers": [ + "নৰসিংহ পাত" + ], + "en_answers": [ + "curry leaves" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-16": { + "question": "অসমৰ প্ৰসিদ্ধ পাৰম্পৰিক ক্ৰীড়াটো কি?", + "en_question": "What is the most famous traditional sport in your country?", + "annotations": [ + { + "answers": [ + "কণী যুঁজ", + "কণীযুঁজ" + ], + "en_answers": [ + "egg fight" + ], + "count": 3 + }, + { + "answers": [ + "ম'হৰ যুঁজ", + "ম'হৰযুঁজ" + ], + "en_answers": [ + "buffalo fight" + ], + "count": 2 + }, + { + "answers": [ + "খো খো", + "খোখো" + ], + "en_answers": [ + "kho-kho" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 1 + } + }, + "New-pe-20": { + "question": "অসমৰ সমুদ্ৰ সৈকতত কি ক্ৰীড়া খেলিবলৈ জনপ্ৰিয়?", + "en_question": "What sport is popular to play on the beach in your country?", + "annotations": [ + { + "answers": [ + "সাতুৰ" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 1, + "no-answer": 0 + } + }, + "New-pe-45": { + "question": "ৰমজান মাহত অসমত সাধাৰণতে কামৰ সময়সূচী কি দৰে থাকে?", + "en_question": "What is the usual work schedule during the month of Ramadan in your country?", + "annotations": [ + { + "answers": [ + "পুৱা 4 বজাত চেহেৰী" + ], + "en_answers": [ + "start at 4 o'clock in the morning" + ], + "count": 1 + }, + { + "answers": [ + "সন্ধিয়া 6 বজাত ইফতাৰ" + ], + "en_answers": [ + "end at 6 o'clock in the afternoon iftar" + ], + "count": 1 + }, + { + "answers": [ + "সাধাৰণ", + "নৰমেল( সাধাৰন)" + ], + "en_answers": [ + "normal (general)" + ], + "count": 1 + }, + { + "answers": [ + "চেহৰী 5 বজাত", + "চেহৰী 5 amবজাত" + ], + "en_answers": [ + "start at 5 o'clock in the morning" + ], + "count": 1 + }, + { + "answers": [ + "ইফটাৰ 17 বজাত", + "ইফটাৰ 17 pm বজাত" + ], + "en_answers": [ + "end at 5 o'clock in the afternoon iftar" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-47": { + "question": "অসমত ছাত্ৰ দিৱস কেতিয়া পালন কৰা হয়? (MM/DD ফৰ্মেটত প্ৰদান কৰক (উদাহৰণস্বৰূপে, 12/31)।)", + "en_question": "When is Student's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "11/14" + ], + "en_answers": [ + "11/14" + ], + "count": 3 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 0 + } + }, + "New-pe-49": { + "question": "অসমত পৰিয়ালবোৰ একেলগে প্ৰাৰ্থনা কৰিবলৈ ক'ত সমবেত হয়?", + "en_question": "Where do families gather to pray together in your country?", + "annotations": [ + { + "answers": [ + "নামঘৰত", + "নামঘৰ" + ], + "en_answers": [ + "namghar", + "prayer house" + ], + "count": 4 + }, + { + "answers": [ + "গোঁসাই ঘৰত", + "গোসাই ঘৰত", + "মন্দিৰ" + ], + "en_answers": [ + "in the temple", + "temple" + ], + "count": 3 + }, + { + "answers": [ + "গীৰ্জা" + ], + "en_answers": [ + "church" + ], + "count": 2 + }, + { + "answers": [ + "দ'ল" + ], + "en_answers": [ + "doul" + ], + "count": 1 + }, + { + "answers": [ + "মছজিদ" + ], + "en_answers": [ + "mosque" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-53": { + "question": "অসমত পিতৃ দিৱস (অথবা অভিভাৱক দিৱস) ত পিতৃসকলে কি উপহাৰ পায়?", + "en_question": "What gifts do fathers get on Father's Day (or Parents' Day) in your country?", + "annotations": [ + { + "answers": [ + "কাপোৰ", + "ছাৰ্ত" + ], + "en_answers": [ + "clothes", + "shirt" + ], + "count": 4 + }, + { + "answers": [ + "গ্ৰীটিংছ কাৰ্ড" + ], + "en_answers": [ + "greeting card" + ], + "count": 1 + }, + { + "answers": [ + "ফুল" + ], + "en_answers": [ + "flower" + ], + "count": 1 + }, + { + "answers": [ + "ঘড়ী" + ], + "en_answers": [ + "clock" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-pe-54": { + "question": "অসমত মাতৃ দিৱস (অথবা অভিভাৱক দিৱস) ত মাতৃসকলে কি উপহাৰ পায়?", + "en_question": "What gifts do mothers get on Mother's Day (or Parents' Day) in your country?", + "annotations": [ + { + "answers": [ + "কাপোৰ", + "কোপোৰ" + ], + "en_answers": [ + "clothes" + ], + "count": 3 + }, + { + "answers": [ + "গ্ৰীটিংছ কাৰ্ড", + "কাৰ্ড" + ], + "en_answers": [ + "greeting card", + "card" + ], + "count": 2 + }, + { + "answers": [ + "ফুল" + ], + "en_answers": [ + "flower" + ], + "count": 1 + }, + { + "answers": [ + "মেখেলা চাদৰ" + ], + "en_answers": [ + "mekhela chador", + "sador mekhela" + ], + "count": 1 + }, + { + "answers": [ + "অলংকাৰ" + ], + "en_answers": [ + "ornaments" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-pe-59": { + "question": "অসমত এটা ঘৰত সাধাৰণতে কিমান প্ৰজন্মে একেলগে থাকে? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)", + "en_question": "How many generations typically live together in a household in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 3 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-65": { + "question": "অসমৰ মাধ্যমিক বিদ্যালয়সমূহত কিমানটা বিষয় পঢ়োৱা হয়? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)", + "en_question": "How many subjects are taught in middle schools in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 4 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-66": { + "question": "অসমৰ প্ৰাথমিক বিদ্যালয়সমূহত বিদ্যালয়ৰ পিছত কি কি জনপ্ৰিয় সহপাঠ্যক্ৰমিক কাৰ্যসূচী আছে?", + "en_question": "What is the most popular after school curriculars in elementary schools in your country?", + "annotations": [ + { + "answers": [ + "ব্যায়াম", + "খেলা-ধূলা", + "শাৰীৰিক ব্যায়াম", + "শাৰিৰীক শিক্ষা" + ], + "en_answers": [ + "exercise", + "sports", + "physical exercise", + "physical education" + ], + "count": 4 + }, + { + "answers": [ + "সংগীত", + "নৃত্য গীত চৰ্চা" + ], + "en_answers": [ + "music", + "dance song practice" + ], + "count": 2 + }, + { + "answers": [ + "চিত্ৰাংকন", + "চিত্ৰকলা" + ], + "en_answers": [ + "drawing", + "painting" + ], + "count": 2 + }, + { + "answers": [ + "অভিজান্তীক" + ], + "en_answers": [ + "adventurer" + ], + "count": 1 + }, + { + "answers": [ + "প্ৰাৰ্থনা" + ], + "en_answers": [ + "prayer" + ], + "count": 1 + }, + { + "answers": [ + "স্কাউট গাইড" + ], + "en_answers": [ + "scout guide" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-74": { + "question": "অসমৰ চৰকাৰী বিশ্ববিদ্যালয়সমূহৰ গড় বাৰ্ষিক শিক্ষানুষ্ঠান মাচুল কিমান?", + "en_question": "How much is the average annual tuition fee for public universities in your country?", + "annotations": [ + { + "answers": [ + "500" + ], + "en_answers": [ + "500" + ], + "count": 3 + }, + { + "answers": [ + "20000" + ], + "en_answers": [ + "20000" + ], + "count": 1 + }, + { + "answers": [ + "25000" + ], + "en_answers": [ + "25000" + ], + "count": 1 + }, + { + "answers": [ + "30000" + ], + "en_answers": [ + "30000" + ], + "count": 1 + }, + { + "answers": [ + "200" + ], + "en_answers": [ + "200" + ], + "count": 1 + }, + { + "answers": [ + "300" + ], + "en_answers": [ + "300" + ], + "count": 1 + }, + { + "answers": [ + "1000" + ], + "en_answers": [ + "1000" + ], + "count": 1 + }, + { + "answers": [ + "40000" + ], + "en_answers": [ + "40000" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-76": { + "question": "অসমৰ উদ্যানসমূহত কি জনপ্ৰিয় কাম কৰিব পাৰি?", + "en_question": "What is a popular activity to do in parks in your country?", + "annotations": [ + { + "answers": [ + "বনৰীয়া জীৱ জন্তু চাব পাৰি" + ], + "en_answers": [ + "see wild animals" + ], + "count": 1 + }, + { + "answers": [ + "ফটো উঠিব পাৰি" + ], + "en_answers": [ + "take photos" + ], + "count": 1 + }, + { + "answers": [ + "চাফাৰি" + ], + "en_answers": [ + "cleaning" + ], + "count": 1 + }, + { + "answers": [ + "নৌকাবিহাৰ" + ], + "en_answers": [ + "boat ride" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-pe-78": { + "question": "অসমত অনুষ্ঠিত হোৱা সবাতোকৈ বিখ্যাত চলচ্চিত্ৰ মহোৎসৱৰ নাম কি?", + "en_question": "What is the name of the most famous film festival held in your country?", + "annotations": [ + { + "answers": [ + "গুৱাহাটী আন্তঃৰাষ্ট্ৰীয় চলচ্চিত্ৰ মহোৎসৱ", + "গুৱাহাটী আন্তৰাষ্ট্ৰীয় চলচ্চিত্ৰ মহোৎসৱ", + "গুৱাহাটী আন্তঃৰাষ্ট্ৰীয় চলচ্চিত্ৰ মহোৎসৱ" + ], + "en_answers": [ + "guwahati international film festival" + ], + "count": 3 + }, + { + "answers": [ + "বিশ্বনাথ চলচ্চিত্ৰ মহোৎসৱ" + ], + "en_answers": [ + "biswanath film festival" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-pe-83": { + "question": "অসমত সামাজিক সমাৱেশসমূহত খেলা জনপ্ৰিয় তাচ খেলখনৰ নাম কি?", + "en_question": "What is the popular card game played during social gatherings in your country?", + "annotations": [ + { + "answers": [ + "তিন পত্তি", + "তিনপত্তি" + ], + "en_answers": [ + "three cards" + ], + "count": 2 + }, + { + "answers": [ + "ৰামি" + ], + "en_answers": [ + "weaving" + ], + "count": 1 + }, + { + "answers": [ + "টেন কোদ" + ], + "en_answers": [ + "ten rupees" + ], + "count": 1 + }, + { + "answers": [ + "জুৱা" + ], + "en_answers": [ + "ten code" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-85": { + "question": "অসমীয়া লোকসকলৰ বাবে বিদেশত সবাতোকৈ জনপ্ৰিয় পৰ্যটন স্থানটো ক'ত?", + "en_question": "Where is the most popular tourist destination abroad for people from your country?", + "annotations": [ + { + "answers": [ + "চুইজাৰলেণ্ড" + ], + "en_answers": [ + "switzerland" + ], + "count": 2 + }, + { + "answers": [ + "আইফিল টাৱাৰ", + "পেৰিচ" + ], + "en_answers": [ + "eiffel tower", + "paris" + ], + "count": 2 + }, + { + "answers": [ + "ইংলেণ্ড" + ], + "en_answers": [ + "england", + "uk", + "u.k", + "united kingdom" + ], + "count": 1 + }, + { + "answers": [ + "আমেৰিকা" + ], + "en_answers": [ + "united states of america", + "us" + ], + "count": 1 + }, + { + "answers": [ + "গ্ৰেত ৱাল অৱ চাইনা" + ], + "en_answers": [ + "great wall of china" + ], + "count": 1 + }, + { + "answers": [ + "বালি" + ], + "en_answers": [ + "bali" + ], + "count": 1 + }, + { + "answers": [ + "থাইলেণ্ড" + ], + "en_answers": [ + "thailand" + ], + "count": 1 + }, + { + "answers": [ + "ডুবাই" + ], + "en_answers": [ + "dubai" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 1 + } + }, + "New-pe-86": { + "question": "অসমৰ আটাইতকৈ বিখ্যাত টাৱাৰটোৰ নাম কি?", + "en_question": "What is the name of the most famous tower in your country?", + "annotations": [ + { + "answers": [ + "শিৱ দৌল", + "শিৱদৌল" + ], + "en_answers": [ + "shiva temple" + ], + "count": 2 + }, + { + "answers": [ + "জয়দৌল", + "জয়দৌল" + ], + "en_answers": [ + "joydoul" + ], + "count": 2 + }, + { + "answers": [ + "বিষ্ণু দৌল" + ], + "en_answers": [ + "vishnu temple" + ], + "count": 1 + }, + { + "answers": [ + "দেৱীদৌল" + ], + "en_answers": [ + "goddess temple" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "no-answer": 1, + "idk": 0 + } + }, + "New-spme-01": { + "question": "অসমত কোন খাব পৰা পোক সবাতোকৈ বেছি খোৱা হয়?", + "en_question": "What edible insect is eaten most often in your country?", + "annotations": [ + { + "answers": [ + "পলু", + "পলুৰ লেটা" + ], + "en_answers": [ + "polu", + "silkworm" + ], + "count": 2 + }, + { + "answers": [ + "আমলতি পৰুৱা", + "আমলৈ টোপ" + ], + "en_answers": [ + "fire ant" + ], + "count": 2 + }, + { + "answers": [ + "উঁইচিৰিঙা" + ], + "en_answers": [ + "flying ant" + ], + "count": 1 + }, + { + "answers": [ + "লেটা পলু" + ], + "en_answers": [ + "snail" + ], + "count": 1 + }, + { + "answers": [ + "ফৰিং" + ], + "en_answers": [ + "grasshopper" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-spme-04": { + "question": "অসমৰ পৰা কোনখন কৃষি পণ্য সবাতোকৈ বেছি ৰপ্তানী কৰা হয়?", + "en_question": "Which agricultural product is exported most often in your country?", + "annotations": [ + { + "answers": [ + "চাহপাত", + "চাহ পাত", + "চাহ" + ], + "en_answers": [ + "tea leaf", + "tea" + ], + "count": 4 + }, + { + "answers": [ + "ধান" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "ডিব্ৰুগড়" + ], + "en_answers": [ + "dibrugarh" + ], + "count": 1 + }, + { + "answers": [ + "কোমল চাউল" + ], + "en_answers": [ + "soft rice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-05": { + "question": "অসমত কি কি জনপ্ৰিয় মিঠাই আছে?", + "en_question": "What are the most popular sweets in your country?", + "annotations": [ + { + "answers": [ + "নাৰিকলৰ লাৰু", + "নাৰিকল লাৰু" + ], + "en_answers": [ + "coconut laddu" + ], + "count": 3 + }, + { + "answers": [ + "তিলৰ পিঠা", + "তিল পিঠা", + "তিলপিঠা" + ], + "en_answers": [ + "til pitha", + "tel pitha", + "kholachaparia pitha", + "sesame rice cake" + ], + "count": 3 + }, + { + "answers": [ + "ঘিলা পিঠা", + "ঘিলাপিঠা" + ], + "en_answers": [ + "ghila pitha", + "sticky rice cake" + ], + "count": 2 + }, + { + "answers": [ + "মালপোৱা" + ], + "en_answers": [ + "malpua" + ], + "count": 1 + }, + { + "answers": [ + "পেৰা" + ], + "en_answers": [ + "pedha" + ], + "count": 1 + }, + { + "answers": [ + "ৰচোগল্লা" + ], + "en_answers": [ + "rasgulla" + ], + "count": 1 + }, + { + "answers": [ + "গজা" + ], + "en_answers": [ + "goja" + ], + "count": 1 + }, + { + "answers": [ + "কাজু বৰফী" + ], + "en_answers": [ + "cashew burfi" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-15": { + "question": "অসমত কি সবাতোকৈ জনপ্ৰিয় ক্ৰীড়া পানীয় কি?", + "en_question": "What is the most popular sports drink in your country?", + "annotations": [ + { + "answers": [ + "ৰেডবুল" + ], + "en_answers": [ + "red bull" + ], + "count": 2 + }, + { + "answers": [ + "বুষ্ট", + "বোষ্ট" + ], + "en_answers": [ + "boost" + ], + "count": 2 + }, + { + "answers": [ + "নেমু চৰৰ্বত" + ], + "en_answers": [ + "lemonade" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-spme-27": { + "question": "অসমত মানুহৰ গড় শিক্ষাৰ মান কি?", + "en_question": "What is the average education level for people in your country?", + "annotations": [ + { + "answers": [ + "স্নাতক", + "স্নাতক ডিগ্ৰী" + ], + "en_answers": [ + "graduate", + "bachelor's degree" + ], + "count": 3 + }, + { + "answers": [ + "স্নাতকোত্তৰ ডিগ্ৰী" + ], + "en_answers": [ + "postgraduate" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-37": { + "question": "অসমৰ ছাত্ৰ-ছাত্ৰীসকলে বিদেশত সবাতোকৈ বেছি কি পেছা অধ্যয়ন কৰে?", + "en_question": "Which profession is most commonly studied abroad by students from your country?", + "annotations": [ + { + "answers": [ + "চিকিৎসক", + "ডাক্তৰ" + ], + "en_answers": [ + "doctor" + ], + "count": 2 + }, + { + "answers": [ + "অভিযান্ত্ৰিক", + "অভিযান্ত্ৰিক পাঠ্যক্ৰম" + ], + "en_answers": [ + "engineering", + "engineering curriculum" + ], + "count": 2 + }, + { + "answers": [ + "অধ্যাপক" + ], + "en_answers": [ + "professor" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-60": { + "question": "সপ্তাহৰ কোন দিনটোত অসমৰ অধিকাংশ পৰিয়ালে ধাৰ্মিক কাৰ্য্যসমূহ অনুশীলন কৰে? (যেনে সোমবাৰ, মঙ্গলবাৰ)", + "en_question": "Which day of the week do most families in your country practice religious activities? (e.g. Monday, Tuesday)", + "annotations": [ + { + "answers": [ + "বৃহস্পতি বাৰ", + "বৃহস্পতিবাৰ" + ], + "en_answers": [ + "thursday" + ], + "count": 3 + }, + { + "answers": [ + "শনিবাৰ" + ], + "en_answers": [ + "saturday" + ], + "count": 2 + }, + { + "answers": [ + "সোমবাৰ" + ], + "en_answers": [ + "monday" + ], + "count": 2 + }, + { + "answers": [ + "মঙলবাৰ", + "মঙ্গল বাৰ" + ], + "en_answers": [ + "tuesday" + ], + "count": 2 + }, + { + "answers": [ + "দেওবাৰ" + ], + "en_answers": [ + "sunday" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-65": { + "question": "অসমত স্বাধীনতা দিৱস উদযাপনৰ সবাতোকৈ জনপ্ৰিয় উপায় কি?", + "en_question": "What is the most popular way to celebrate Independence Day in your country?", + "annotations": [ + { + "answers": [ + "পতাকা উত্তোলন কৰা", + "ৰাষ্ট্ৰীয় পতাকা উত্তোলন", + "পতাকা উত্তোলন" + ], + "en_answers": [ + "flag hoisting", + "national flag hoisting" + ], + "count": 3 + }, + { + "answers": [ + "ৰাষ্ট্ৰীয় সংগীত গোৱা", + "ৰাষ্ট্ৰীয় সংগীত পৰিবশন", + "ৰাষ্ট্ৰীয় সংগীত পৰিবেশন" + ], + "en_answers": [ + "singing the national anthem", + "national anthem performance" + ], + "count": 3 + }, + { + "answers": [ + "সকলো একেলগ হোৱা" + ], + "en_answers": [ + "everyone come together" + ], + "count": 1 + }, + { + "answers": [ + "মুকলি সভা" + ], + "en_answers": [ + "open meeting" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-spme-68": { + "question": "অসমত শিশুসকলৰ মাজত সবাতোকৈ জনপ্ৰিয় পানীয় কি?", + "en_question": "What is the most popular beverage among children in your country?", + "annotations": [ + { + "answers": [ + "হৰলিক্স" + ], + "en_answers": [ + "horlicks" + ], + "count": 2 + }, + { + "answers": [ + "বৰ্ণভিতা", + "বৰ্ণভিটা" + ], + "en_answers": [ + "bournvita", + "bourn vita" + ], + "count": 2 + }, + { + "answers": [ + "ফ্ৰুতি", + "ফ্ৰুটি" + ], + "en_answers": [ + "frooti" + ], + "count": 2 + }, + { + "answers": [ + "ভীমভিতা" + ], + "en_answers": [ + "basil seed beverage" + ], + "count": 1 + }, + { + "answers": [ + "মাজা" + ], + "en_answers": [ + "mazza drink" + ], + "count": 1 + }, + { + "answers": [ + "নেমু চৰৰ্বত" + ], + "en_answers": [ + "lemonade" + ], + "count": 1 + }, + { + "answers": [ + "ৰাস্না" + ], + "en_answers": [ + "passion fruit" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-76": { + "question": "অসমত স্বাধীনতা দিৱস উদযাপন কৰিবলৈ সবাতোকৈ জনপ্ৰিয় ঠাই কোনটো?", + "en_question": "What is the most popular place in your country to celebrate Independence Day?", + "annotations": [ + { + "answers": [ + "বিদ্যাল়য়ৰ চৌহদ", + "বিদ্যালয়", + "মহাবিদ্যালয়" + ], + "en_answers": [ + "school campus", + "school", + "college" + ], + "count": 2 + }, + { + "answers": [ + "নামঘৰৰ চৌহদ" + ], + "en_answers": [ + "courtyard of the prayer hall" + ], + "count": 1 + }, + { + "answers": [ + "যিকোনো মুকলি ঠাইত" + ], + "en_answers": [ + "any open space" + ], + "count": 1 + }, + { + "answers": [ + "কোৰ্ট ফিল্দ" + ], + "en_answers": [ + "court field" + ], + "count": 1 + }, + { + "answers": [ + "ৱৰ্ডিং ফিল্ড" + ], + "en_answers": [ + "boarding field" + ], + "count": 1 + }, + { + "answers": [ + "চৰকাৰী কাৰ্যালয়" + ], + "en_answers": [ + "government office" + ], + "count": 1 + }, + { + "answers": [ + "কাছাৰী ময়দান" + ], + "en_answers": [ + "kachari ground" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-78": { + "question": "অসমত জন্মদিনৰ পাৰ্টিত সাধাৰণতে গোৱা গীতটোৰ নাম কি?", + "en_question": "What is the name of the song that is typically sung at birthday parties in your country?", + "annotations": [ + { + "answers": [ + "হেপি বাৰ্থডে টু ইউ", + "হেপি বাৰ্দে তু ইউ", + "হেপী বাৰ্থদে টুইও", + "হেপী বাৰ্থডে টু ইউ" + ], + "en_answers": [ + "happy birthday to you" + ], + "count": 4 + }, + { + "answers": [ + "জন্মদিন জন্মদিন শুভ জন্মদিন" + ], + "en_answers": [ + "birthday birthday happy birthday" + ], + "count": 2 + }, + { + "answers": [ + "বাৰ বাৰ দিন ইয়ে আয়ে" + ], + "en_answers": [ + "the day comes again and again" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-su-01": { + "question": "অসমৰ বিদ্যালয়সমূহৰ সন্মুখত সাধাৰণতে কি কি জলপান বিক্ৰী কৰা হয়?", + "en_question": "What snacks are usually sold in front of schools in your country?", + "annotations": [ + { + "answers": [ + "মেগী" + ], + "en_answers": [ + "maggi" + ], + "count": 2 + }, + { + "answers": [ + "ৰুটি", + "ৰুটি-তৰকাৰী", + "ৰুটি তৰকাৰী" + ], + "en_answers": [ + "bread", + "bread with curry" + ], + "count": 2 + }, + { + "answers": [ + "ঘুগুনি পকৰি" + ], + "en_answers": [ + "pigeon fry" + ], + "count": 1 + }, + { + "answers": [ + "ৰোল" + ], + "en_answers": [ + "roll" + ], + "count": 1 + }, + { + "answers": [ + "চাউমিন" + ], + "en_answers": [ + "chowmein" + ], + "count": 1 + }, + { + "answers": [ + "দৈ চিৰা" + ], + "en_answers": [ + "curd poha", + "curd-poha" + ], + "count": 1 + }, + { + "answers": [ + "চকলেট" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + }, + { + "answers": [ + "ফুচকা" + ], + "en_answers": [ + "panipuri", + "pani puri" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-09": { + "question": "অসমত সাধাৰণতে ৰান্ধিবলৈ কি তেল ব্যৱহাৰ কৰা হয়?", + "en_question": "What oil is usually used for cooking in your country?", + "annotations": [ + { + "answers": [ + "সৰিয়হৰ তেল", + "মিঠাতেল", + "সৰিয়হৰ" + ], + "en_answers": [ + "mustard oil", + "mustard" + ], + "count": 5 + }, + { + "answers": [ + "বেলিফুলৰ তেল" + ], + "en_answers": [ + "sunflower oil" + ], + "count": 1 + }, + { + "answers": [ + "চয়াবিনৰ তেল" + ], + "en_answers": [ + "soybean oil" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-10": { + "question": "অসমত গৰ্ভৱতী মহিলাসকলে সাধাৰণতে কি খাদ্য গ্ৰহণ কৰে?", + "en_question": "What food is commonly consumed by pregnant women in your country?", + "annotations": [ + { + "answers": [ + "ভাত" + ], + "en_answers": [ + "rice" + ], + "count": 3 + }, + { + "answers": [ + "ৰুটি" + ], + "en_answers": [ + "bread" + ], + "count": 2 + }, + { + "answers": [ + "ফল", + "ফল মূল" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + }, + { + "answers": [ + "মূল", + "ফল মূল" + ], + "en_answers": [ + "vegetable" + ], + "count": 1 + }, + { + "answers": [ + "সুষম আহাৰ" + ], + "en_answers": [ + "balanced diet" + ], + "count": 1 + }, + { + "answers": [ + "কম মছলা খাদ্য" + ], + "en_answers": [ + "less spicy food" + ], + "count": 1 + }, + { + "answers": [ + "কলডিল" + ], + "en_answers": [ + "banana flower" + ], + "count": 1 + }, + { + "answers": [ + "কলপচলা" + ], + "en_answers": [ + "banana" + ], + "count": 1 + }, + { + "answers": [ + "কচুশাক" + ], + "en_answers": [ + "taro leaves" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-15": { + "question": "অসমত সৰ্বাধিক জনপ্ৰিয় পাৰম্পৰিক অ-মদ্যযুক্ত পানীয় কি?", + "en_question": "What is the most popular traditional non-alcoholic drink in your country?", + "annotations": [ + { + "answers": [ + "চাহ পানী", + "চাহ" + ], + "en_answers": [ + "tea water", + "tea" + ], + "count": 2 + }, + { + "answers": [ + "কোকা কোলা", + "শীতল পানীয়", + "মাজা" + ], + "en_answers": [ + "coca cola", + "cold drink" + ], + "count": 2 + }, + { + "answers": [ + "নেমু চৰৰ্বত" + ], + "en_answers": [ + "lemonade" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-17": { + "question": "অসমৰ উদ্যানসমূহত সাধাৰণতে কি কি ক্ৰীড়াৰ সুবিধা পোৱা যায়?", + "en_question": "What sports facilities are generally available in parks in your country?", + "annotations": [ + { + "answers": [ + "বেডমিন্টন" + ], + "en_answers": [ + "badminton" + ], + "count": 2 + }, + { + "answers": [ + "নৌকা বিহাৰ", + "নৌকাচালনা" + ], + "en_answers": [ + "boat race", + "boating" + ], + "count": 2 + }, + { + "answers": [ + "ক্ৰিকেট", + "কৃকেট" + ], + "en_answers": [ + "cricket" + ], + "count": 2 + }, + { + "answers": [ + "ঝুলনা" + ], + "en_answers": [ + "swing" + ], + "count": 1 + }, + { + "answers": [ + "চেচ" + ], + "en_answers": [ + "chess" + ], + "count": 1 + }, + { + "answers": [ + "ফুটবল" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "ফুচকা" + ], + "en_answers": [ + "panipuri", + "pani puri" + ], + "count": 1 + }, + { + "answers": [ + "চাত" + ], + "en_answers": [ + "chaat" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-21": { + "question": "অসমৰ পাৰ্কসমূহত বৃদ্ধ লোকসকলে সাধাৰণতে কি কি কাম কৰে?", + "en_question": "What are the common activities that seniors usually do in parks in your country?", + "annotations": [ + { + "answers": [ + "খোজ কাঢ়ে", + "খোজ কাড়ে", + "খোজ কাঢ়বলৈ যায়" + ], + "en_answers": [ + "walk" + ], + "count": 4 + }, + { + "answers": [ + "কথা পাতে", + "সম বয়সীয়া লোকৰ সতে কথা পাতে", + "বহি কথা পাতে" + ], + "en_answers": [ + "talk", + "talks sitting down" + ], + "count": 3 + }, + { + "answers": [ + "গছ পুলি ৰোৱা" + ], + "en_answers": [ + "plant tree saplings" + ], + "count": 1 + }, + { + "answers": [ + "ব্যায়াম কৰে" + ], + "en_answers": [ + "exercise" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-24": { + "question": "অসমত অভিভাৱক আৰু শিশুসকলে সাধাৰণতে একেলগে কি কি খেল খেলে?", + "en_question": "What sports do parents and children commonly play together in your country?", + "annotations": [ + { + "answers": [ + "লুডো", + "লুডু", + "লুদু" + ], + "en_answers": [ + "ludo" + ], + "count": 4 + }, + { + "answers": [ + "লুকা ভাকু" + ], + "en_answers": [ + "hide and seek" + ], + "count": 2 + }, + { + "answers": [ + "কেৰম" + ], + "en_answers": [ + "carrom" + ], + "count": 1 + }, + { + "answers": [ + "ক্ৰিকেট", + "কৃকেট" + ], + "en_answers": [ + "cricket" + ], + "count": 1 + }, + { + "answers": [ + "ডবা" + ], + "en_answers": [ + "chess" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-28": { + "question": "অসমৰ ৰাজ্যিক ফুটবল দলৰ সৈতে কি ৰং জড়িত আছে?", + "en_question": "What color is associated with the regional soccer team of your country?", + "annotations": [ + { + "answers": [ + "হালধীয়া", + "হালধীয়া" + ], + "en_answers": [ + "yellow" + ], + "count": 2 + }, + { + "answers": [ + "ৰঙা" + ], + "en_answers": [ + "red" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-33": { + "question": "অসমৰ বিদ্যালয়ৰ শিক্ষক-শিক্ষয়িত্ৰীসকলৰ সাধাৰণ সাজ-পোচাক পৰিধাণৰ নিয়ম কি?", + "en_question": "What is the common dress code for school teachers in your country?", + "annotations": [ + { + "answers": [ + "চাদৰ মেখেলা", + "মেখেলা চাদৰ" + ], + "en_answers": [ + "mekhela chador", + "sador mekhela" + ], + "count": 4 + }, + { + "answers": [ + "চাৰ্ট", + "চাৰ্ট পেন্ট", + "পেন্ট চাৰ্ট", + "ছাৰ্ত", + "ফৰ্মেল ছাৰ্ত পেন্ত", + "পেণ্ট চাৰ্ট" + ], + "en_answers": [ + "shirt" + ], + "count": 4 + }, + { + "answers": [ + "পেন্ট", + "চাৰ্ট পেন্ট", + "পেন্ট চাৰ্ট", + "পেন্ত", + "ফৰ্মেল ছাৰ্ত পেন্ত", + "পেণ্ট", + "পেণ্ট চাৰ্ট" + ], + "en_answers": [ + "pants" + ], + "count": 4 + }, + { + "answers": [ + "মাৰ্জিত সাজপাৰ", + "অন্যান্য মাৰ্জিত সাজপাৰ" + ], + "en_answers": [ + "elegant attire" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-34": { + "question": "অসমৰ বিদ্যালয়সমূহত সংগীত সম্পৰ্কীয় আটাইতকৈ জনপ্ৰিয় বহিঃশিক্ষামূলক কাৰ্যকলাপটো কি?", + "en_question": "What is the most popular extracurricular activity related to music in schools in your country?", + "annotations": [ + { + "answers": [ + "সংগীত গোৱা", + "কণ্ঠসংগীত" + ], + "en_answers": [ + "singing", + "vocal music" + ], + "count": 2 + }, + { + "answers": [ + "বিহু" + ], + "en_answers": [ + "bihu" + ], + "count": 1 + }, + { + "answers": [ + "কলাক্ষেত্ৰ" + ], + "en_answers": [ + "cultural centre", + "cultural center" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-su-42": { + "question": "অসমৰ বিদ্যালয়সমূহত প্ৰধানকৈ কি ধৰ্মৰ শিক্ষা দিয়া হয়?", + "en_question": "What religion is mainly taught in schools in your country?", + "annotations": [ + { + "answers": [ + "হিন্দু" + ], + "en_answers": [ + "hindu" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "not-applicable": 2, + "idk": 0 + } + }, + "New-su-45": { + "question": "অসমত শিক্ষা দিৱস কেতিয়া পালন কৰা হয়? (MM/DD ফৰ্মেটত প্ৰদান কৰক (উদাহৰণস্বৰূপে, 12/31)।)", + "en_question": "What date is Education Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "11/11" + ], + "en_answers": [ + "11/11" + ], + "count": 2 + }, + { + "answers": [ + "05/09" + ], + "en_answers": [ + "05/09" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 0 + } + }, + "New-su-50": { + "question": "অসমৰ পাহাৰীয়া অঞ্চলসমূহত মানুহৰ মুখ্য পেছা কি?", + "en_question": "What is the main occupation of people in mountainous areas in your country?", + "annotations": [ + { + "answers": [ + "খেতি বাতি", + "খেতি" + ], + "en_answers": [ + "farming" + ], + "count": 4 + }, + { + "answers": [ + "আৰ্ণাই" + ], + "en_answers": [ + "arnai", + "aronai" + ], + "count": 1 + }, + { + "answers": [ + "কাপোৰ বোৱা" + ], + "en_answers": [ + "weaving clothes" + ], + "count": 1 + }, + { + "answers": [ + "চিকাৰ" + ], + "en_answers": [ + "hunt" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-51": { + "question": "অসমৰ উপকূলীয় অঞ্চলসমূহৰ মানুহৰ মূল পেছা কি?", + "en_question": "What is the main occupation of people in coastal areas in your country?", + "annotations": [ + { + "answers": [ + "মাছ ধৰা", + "মাছমৰা" + ], + "en_answers": [ + "fishing", + "fisherman" + ], + "count": 2 + }, + { + "answers": [ + "খেটিবতি" + ], + "en_answers": [ + "farming" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 0 + } + }, + "New-su-57": { + "question": "অসমত পোহা পশুধনৰ ভিতৰত সবাতোকৈ সাধাৰণ কোনটো?", + "en_question": "What is the most common livestock raised in your country?", + "annotations": [ + { + "answers": [ + "গৰু" + ], + "en_answers": [ + "cow" + ], + "count": 4 + }, + { + "answers": [ + "ছাগলী" + ], + "en_answers": [ + "goat" + ], + "count": 3 + }, + { + "answers": [ + "ম'হ" + ], + "en_answers": [ + "buffalo" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 1 + } + }, + "New-su-58": { + "question": "অসমত কৃষিকাৰ্য্যত সাধাৰণতে কি কি প্ৰাণী ব্যৱহাৰ কৰা হয়?", + "en_question": "What animals are commonly used for agriculture in your country?", + "annotations": [ + { + "answers": [ + "গৰু" + ], + "en_answers": [ + "cow" + ], + "count": 5 + }, + { + "answers": [ + "ম'হ", + "মহ" + ], + "en_answers": [ + "buffalo" + ], + "count": 4 + }, + { + "answers": [ + "হাঁহ" + ], + "en_answers": [ + "duck" + ], + "count": 1 + }, + { + "answers": [ + "কুকুৰা" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-59": { + "question": "অসমৰ কৃষকসকলে খেতি কৰোতে গৰমৰ পৰা নিজকে কেনেকৈ সুৰক্ষিত ৰাখে?", + "en_question": "What do farmers in your country typically wear to protect themselves from the heat whilst farming?", + "annotations": [ + { + "answers": [ + "জাপি", + "জাপি পিন্ধি লয়", + "জাপি পিন্ধে" + ], + "en_answers": [ + "japi" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-60": { + "question": "অসমৰ কৃষকসকলে সাধাৰণতে দুপৰীয়াৰ আহাৰত কি খায়?", + "en_question": "What do farmers in your country usually eat for lunch?", + "annotations": [ + { + "answers": [ + "ভাত" + ], + "en_answers": [ + "rice" + ], + "count": 3 + }, + { + "answers": [ + "পঁইতা ভাত" + ], + "en_answers": [ + "fermented rice" + ], + "count": 2 + }, + { + "answers": [ + "চকুৱা চাউল আৰু বুট" + ], + "en_answers": [ + "scented rice and chickpeas" + ], + "count": 1 + }, + { + "answers": [ + "কোমল চাউল দৈ গাখীৰ" + ], + "en_answers": [ + "soft rice with yogurt and milk" + ], + "count": 1 + }, + { + "answers": [ + "দালি ভাত" + ], + "en_answers": [ + "lentil rice" + ], + "count": 1 + }, + { + "answers": [ + "আছাৰ চাতনি" + ], + "en_answers": [ + "pickle chutney" + ], + "count": 1 + }, + { + "answers": [ + "ৰুটি" + ], + "en_answers": [ + "bread" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-71": { + "question": "অসমত অভিভাৱকসকলে সাধাৰণতে তেওঁলোকৰ সন্তানসকলক তেওঁলোকৰ জন্মদিনত কি উপহাৰ দিয়ে?", + "en_question": "What gifts do parents generally give to their children for their birthdays in your country?", + "annotations": [ + { + "answers": [ + "কাপোৰ" + ], + "en_answers": [ + "clothes" + ], + "count": 4 + }, + { + "answers": [ + "কিতাপ", + "পঢ়া শুনাৰ লাগতীয়াল বস্তু" + ], + "en_answers": [ + "book", + "educational materials" + ], + "count": 2 + }, + { + "answers": [ + "জোতা", + "জোতা চেন্দেল" + ], + "en_answers": [ + "shoes" + ], + "count": 1 + }, + { + "answers": [ + "চেন্দেল", + "জোতা চেন্দেল" + ], + "en_answers": [ + "sandals" + ], + "count": 1 + }, + { + "answers": [ + "পইচা" + ], + "en_answers": [ + "money" + ], + "count": 1 + }, + { + "answers": [ + "সোণৰ অলংকাৰ" + ], + "en_answers": [ + "gold jewelry" + ], + "count": 1 + }, + { + "answers": [ + "প্ৰয়োজনীয় সামগ্ৰী", + "অন্য প্ৰয়োজনীয় সামগ্ৰী" + ], + "en_answers": [ + "necessary items" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-75": { + "question": "অসমত বেছিভাগ পৰিয়ালে সাধাৰণতে কি ধৰণৰ বাহন কিনে?", + "en_question": "What type of vehicle do most families in your country generally own?", + "annotations": [ + { + "answers": [ + "গাড়ী", + "গাৰি", + "চাৰিচকীয়া", + "চাৰি চুকীয়া", + "সৰু চাৰিচকীয়া বাহন", + "সৰু কাৰ" + ], + "en_answers": [ + "car", + "four wheeled", + "small four-wheeler vehicle", + "small car" + ], + "count": 4 + }, + { + "answers": [ + "বাইক", + "মটৰ চাইকেল" + ], + "en_answers": [ + "bike", + "motorcycle" + ], + "count": 3 + }, + { + "answers": [ + "স্কুটি", + "স্কুতি" + ], + "en_answers": [ + "scooty" + ], + "count": 2 + }, + { + "answers": [ + "চাইকেল" + ], + "en_answers": [ + "bicycle" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-77": { + "question": "অসমত ঈদৰ সময়ত শিশুসকলক সাধাৰণতে কি দিয়া হয়?", + "en_question": "What is usually given to the children during Eid in your country?", + "annotations": [ + { + "answers": [ + "পইচা", + "টকা" + ], + "en_answers": [ + "money" + ], + "count": 3 + }, + { + "answers": [ + "কাপোৰ" + ], + "en_answers": [ + "clothes" + ], + "count": 2 + }, + { + "answers": [ + "মিঠাই" + ], + "en_answers": [ + "sweets" + ], + "count": 1 + }, + { + "answers": [ + "চকোলেট" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-81": { + "question": "অসমত বিয়াত দৰা সাধাৰণতে কি কাপোৰ পিন্ধে?", + "en_question": "What clothes do grooms usually wear at weddings in your country?", + "annotations": [ + { + "answers": [ + "পাটৰ চুৰিয়া চেলেং", + "চেলেং", + "চুৰীয়া", + "চেলেং চাদৰ", + "গামোচা চেলেং চাদৰ আৰু মূৰত তুলসীৰ মালা" + ], + "en_answers": [ + "silk handkerchief", + "cheleng", + "cheleng shawl" + ], + "count": 4 + }, + { + "answers": [ + "গামোচা", + "গামোচা চেলেং চাদৰ আৰু মূৰত তুলসীৰ মালা", + "কুৰ্তা চুৰিয়া গামোচা" + ], + "en_answers": [ + "gamocha", + "gamcha", + "gamchha", + "gamucha", + "gamusa", + "angochha" + ], + "count": 4 + }, + { + "answers": [ + "পাটৰ কুৰ্তা", + "পাত ৰ কুৰ্তা", + "বগা পাটৰ কূৰ্তা" + ], + "en_answers": [ + "silk kurta", + "white silk kurta" + ], + "count": 3 + }, + { + "answers": [ + "ধুতি" + ], + "en_answers": [ + "dhoti" + ], + "count": 2 + }, + { + "answers": [ + "তুলসী মালা", + "গামোচা চেলেং চাদৰ আৰু মূৰত তুলসীৰ মালা" + ], + "en_answers": [ + "tulsi mala", + "tulsi garland" + ], + "count": 1 + }, + { + "answers": [ + "কুৰ্তা", + "কুৰ্তা চুৰিয়া গামোচা" + ], + "en_answers": [ + "kurta" + ], + "count": 1 + }, + { + "answers": [ + "চুৰিয়া", + "কুৰ্তা চুৰিয়া গামোচা" + ], + "en_answers": [ + "churidar" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-82": { + "question": "অসমত বিয়াত কন্যাসকলে সাধাৰণতে কি ধৰণৰ কাপোৰ পৰিধান কৰে?", + "en_question": "What clothes do brides usually wear at weddings in your country?", + "annotations": [ + { + "answers": [ + "পাটৰ সাঁজ", + "পাতৰ কাপোৰ", + "বগা পাটৰ চাদৰ মেখেলা", + "পাটৰ সাজ" + ], + "en_answers": [ + "silk attire", + "silk cloth", + "white silk mekhela chador" + ], + "count": 4 + }, + { + "answers": [ + "মুগাৰ সাঁজ", + "মুগাৰ সাজ" + ], + "en_answers": [ + "muga attire" + ], + "count": 2 + }, + { + "answers": [ + "চেলৱাৰ" + ], + "en_answers": [ + "salwar", + "shalwar", + "chalwar" + ], + "count": 1 + }, + { + "answers": [ + "ফ্ৰক" + ], + "en_answers": [ + "frock" + ], + "count": 1 + }, + { + "answers": [ + "ৰিহা" + ], + "en_answers": [ + "riha" + ], + "count": 1 + }, + { + "answers": [ + "চেলেং চাদৰ", + "চেলেং চাদৰ আৰু গামোচা" + ], + "en_answers": [ + "silk handkerchief", + "cheleng", + "cheleng shawl" + ], + "count": 1 + }, + { + "answers": [ + "গামোচা", + "চেলেং চাদৰ আৰু গামোচা" + ], + "en_answers": [ + "gamocha", + "gamcha", + "gamchha", + "gamucha", + "gamusa", + "angochha" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-83": { + "question": "অসমত বিয়াত সাধাৰণতে কি খাদ্য পৰিৱেশন কৰা হয়?", + "en_question": "What food is usually served at weddings in your country?", + "annotations": [ + { + "answers": [ + "মাছ", + "মাছ মাংস ইত্যাদি", + "মাছ মাংস ভাত" + ], + "en_answers": [ + "fish" + ], + "count": 4 + }, + { + "answers": [ + "ভাত", + "ভাত মাংস", + "মাছ মাংস ভাত" + ], + "en_answers": [ + "rice" + ], + "count": 3 + }, + { + "answers": [ + "মাংস", + "মাছ মাংস ইত্যাদি", + "ভাত মাংস", + "মাছ মাংস ভাত" + ], + "en_answers": [ + "meat" + ], + "count": 2 + }, + { + "answers": [ + "ছাগলী মাংস" + ], + "en_answers": [ + "goat meat" + ], + "count": 1 + }, + { + "answers": [ + "মংশ পোলাও" + ], + "en_answers": [ + "mutton pilaf", + "mutton pilav", + "mutton pilau" + ], + "count": 1 + }, + { + "answers": [ + "পনীৰ" + ], + "en_answers": [ + "paneer" + ], + "count": 1 + }, + { + "answers": [ + "অসমীয়া খাদ্য" + ], + "en_answers": [ + "assamese food" + ], + "count": 1 + }, + { + "answers": [ + "পুৰী" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "ৰুটি-তৰকাৰী", + "ৰুটি তৰকাৰী" + ], + "en_answers": [ + "bread with curry" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-86": { + "question": "অসমত সবাতোকৈ বিখ্যাত চৰকাৰী ভৱনটো কি?", + "en_question": "What is the most famous government building in your country?", + "annotations": [ + { + "answers": [ + "যোৰহাটৰ ৰঙাকাচাৰী ঘৰ", + "যোৰহাটৰ কাছাৰী ঘৰ" + ], + "en_answers": [ + "jorhat's rangakachari house", + "jorhat's court house" + ], + "count": 2 + }, + { + "answers": [ + "আছাম হাউচ" + ], + "en_answers": [ + "assam house" + ], + "count": 1 + }, + { + "answers": [ + "ৰংঘৰ" + ], + "en_answers": [ + "rang ghar" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-88": { + "question": "অসমৰ যুৱ প্ৰজন্মৰ মাজত কি সংগীতৰ ধৰণ সবাতোকৈ জনপ্ৰিয়?", + "en_question": "What is the most popular music genre among the younger population in your country?", + "annotations": [ + { + "answers": [ + "বিহু" + ], + "en_answers": [ + "bihu" + ], + "count": 2 + }, + { + "answers": [ + "সত্ৰীয়া সংগীত" + ], + "en_answers": [ + "sattriya" + ], + "count": 1 + }, + { + "answers": [ + "আধুনিক" + ], + "en_answers": [ + "modern" + ], + "count": 1 + }, + { + "answers": [ + "জুবিন গাৰ্গৰ সংগীত" + ], + "en_answers": [ + "zubeen garg's" + ], + "count": 1 + }, + { + "answers": [ + "হিন্দী চিনেমাৰ গীত" + ], + "en_answers": [ + "hindi cinema song" + ], + "count": 1 + }, + { + "answers": [ + "ডিস্ক'" + ], + "en_answers": [ + "disco" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-02": { + "question": "অসমত মাধ্যমিক বিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে প্ৰতিদিনে কেতিয়া বিদ্যালয় সমাপ্ত কৰে? (HH:MM ফৰ্মেটত প্ৰদান কৰক (যেনে, 18:00, 09:00).)", + "en_question": "What time do middle school students in your country typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 2 + }, + { + "answers": [ + "14:30" + ], + "en_answers": [ + "14:30" + ], + "count": 2 + }, + { + "answers": [ + "15:00", + "03:00" + ], + "en_answers": [ + "15:00" + ], + "count": 2 + }, + { + "answers": [ + "16:00", + "04:00" + ], + "en_answers": [ + "16:00" + ], + "count": 1 + }, + { + "answers": [ + "14:15" + ], + "en_answers": [ + "14:15" + ], + "count": 1 + }, + { + "answers": [ + "15:30" + ], + "en_answers": [ + "15:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-03": { + "question": "অসমত মানুহে সাধাৰণতে কিমান বয়সত বিশ্ববিদ্যালয়লৈ যায়? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)", + "en_question": "At what age do people in your country typically go to university? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 2 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + }, + { + "answers": [ + "16" + ], + "en_answers": [ + "16" + ], + "count": 1 + }, + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 1 + }, + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 1 + }, + { + "answers": [ + "23" + ], + "en_answers": [ + "23" + ], + "count": 1 + }, + { + "answers": [ + "21" + ], + "en_answers": [ + "21" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-06": { + "question": "অসমত লোকে বাধ্যতামূলক শিক্ষা কিমান বয়সৰ পৰা গ্ৰহণ কৰিব লাগে? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)", + "en_question": "From what age do people need to attend compulsory education in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "6", + "৬-১৪" + ], + "en_answers": [ + "6" + ], + "count": 3 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 2 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-09": { + "question": "অসমত শিশুসকলে সপ্তাহত কিমান দিন বিদ্যালয়লৈ যায়? (কেৱল আৰবী সংখ্যা (0~7) প্ৰদান কৰক।)", + "en_question": "How many days a week do children attend school in your country? (Provide Arabic numerals (0~7) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 4 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-11": { + "question": "অসমত, সাধাৰণতে এটা মাষ্টাৰ্ছ ডিগ্ৰী সম্পূৰ্ণ কৰিবলৈ কিমান বছৰ লাগে? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)", + "en_question": "In your country, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2", + "23" + ], + "en_answers": [ + "2" + ], + "count": 5 + }, + { + "answers": [ + "3", + "23" + ], + "en_answers": [ + "3" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-12": { + "question": "অসমৰ শ্ৰেষ্ঠ বিশ্ববিদ্যালয়খনৰ নাম কি? (চৰকাৰী নাম প্ৰদান কৰক।)", + "en_question": "What is the top university in your country? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "গুৱাহাটী বিশ্ববিদ্যালয়", + "গুৱাহাটী বিশ্ববদ্যালয়" + ], + "en_answers": [ + "gauhati university", + "guwahati university" + ], + "count": 4 + }, + { + "answers": [ + "তেজপুৰ বিশ্ববদ্যালয়", + "তেজপুৰ বিশ্ববিদ্যাল়য়", + "তেজপুৰ বিশ্ববিদ্যালয়" + ], + "en_answers": [ + "tezpur university" + ], + "count": 3 + }, + { + "answers": [ + "ডিব্ৰুগড় বিশ্ববিদ্যালয়", + "ডিব্ৰুগড় বিশ্ববিদ্যালয়" + ], + "en_answers": [ + "dibrugarh university" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-13": { + "question": "অসমত অধিকাংশ লোকে কোন বয়সত বিশ্ববিদ্যালয়ৰ পৰা স্নাতক হয়? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)", + "en_question": "At what age do most people in your country graduate from university? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "21" + ], + "en_answers": [ + "21" + ], + "count": 3 + }, + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 2 + }, + { + "answers": [ + "23" + ], + "en_answers": [ + "23" + ], + "count": 2 + }, + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 1 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-15": { + "question": "অসমত শিশুসকলে সাধাৰণতে কিমান বয়সত মাধ্যমিক বিদ্যালয় আৰম্ভ কৰে? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)", + "en_question": "At what age do children in your country generally start middle school? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 3 + }, + { + "answers": [ + "11" + ], + "en_answers": [ + "11" + ], + "count": 2 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + }, + { + "answers": [ + "14" + ], + "en_answers": [ + "14" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-17": { + "question": "অসমত এজন পূৰ্ণ-সময়ৰ কৰ্মচাৰীয়ে সাধাৰণতে সপ্তাহত কিমান ঘণ্টা কাম কৰে? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)", + "en_question": "How many hours a week does a full-time worker in your country typically work? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "42" + ], + "en_answers": [ + "42" + ], + "count": 2 + }, + { + "answers": [ + "48" + ], + "en_answers": [ + "48" + ], + "count": 2 + }, + { + "answers": [ + "35" + ], + "en_answers": [ + "35" + ], + "count": 1 + }, + { + "answers": [ + "50" + ], + "en_answers": [ + "50" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-19": { + "question": "অসমত এজন পূৰ্ণ-সময়ৰ কৰ্মচাৰী সপ্তাহত কিমান দিন কাম কৰে? (কেৱল আৰবী সংখ্যা (0~7) প্ৰদান কৰক।)", + "en_question": "How many days a week does a full-time worker work in your country? (Provide Arabic numerals (0~7) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 4 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-20": { + "question": "অসমত বেছিভাগ লোকে কিমান বয়সত কাম কৰা আৰম্ভ কৰে? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)", + "en_question": "At what age do most people start working in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 3 + }, + { + "answers": [ + "27" + ], + "en_answers": [ + "27" + ], + "count": 3 + }, + { + "answers": [ + "23" + ], + "en_answers": [ + "23" + ], + "count": 1 + }, + { + "answers": [ + "28" + ], + "en_answers": [ + "28" + ], + "count": 1 + }, + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 1 + }, + { + "answers": [ + "19" + ], + "en_answers": [ + "19" + ], + "count": 1 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + }, + { + "answers": [ + "26" + ], + "en_answers": [ + "26" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-21": { + "question": "অসমত এজন ব্যক্তি কিমান বয়সৰ পৰা কাম কৰিবলৈ অনুমতি পায়? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)", + "en_question": "From what age is an individual allowed to work in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 2 + }, + { + "answers": [ + "21" + ], + "en_answers": [ + "21" + ], + "count": 2 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 2 + }, + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 2 + }, + { + "answers": [ + "19" + ], + "en_answers": [ + "19" + ], + "count": 1 + }, + { + "answers": [ + "17" + ], + "en_answers": [ + "17" + ], + "count": 1 + }, + { + "answers": [ + "23" + ], + "en_answers": [ + "23" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-31": { + "question": "অসমত খ্ৰীষ্টমাছ দিনটোত মানুহে পৰম্পৰাগতভাৱে কি খায়?", + "en_question": "What do people in your country traditionally eat on Christmas Day?", + "annotations": [ + { + "answers": [ + "মিঠাই" + ], + "en_answers": [ + "sweets" + ], + "count": 1 + }, + { + "answers": [ + "মাছ মাংস" + ], + "en_answers": [ + "fish meat" + ], + "count": 1 + }, + { + "answers": [ + "কেক" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "চাউমিন" + ], + "en_answers": [ + "chowmein" + ], + "count": 1 + }, + { + "answers": [ + "চাহ" + ], + "en_answers": [ + "tea" + ], + "count": 1 + }, + { + "answers": [ + "পোলাও" + ], + "en_answers": [ + "pilaf", + "pilav", + "pilau" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "Ni-en-37": { + "question": "বছৰৰ কোন দিনটোত অসমীয় লোকে প্ৰেম আৰু ৰোমাঞ্চ উদযাপন কৰে?", + "en_question": "What is the name of the day of the year where people in your country celebrate love and romance?", + "annotations": [ + { + "answers": [ + "ভেলেন্টাইন ডে", + "১৪/০২", + "ভেলেনটাইন ডে", + "14 ফেব্ৰুৱাৰী" + ], + "en_answers": [ + "valentine's day" + ], + "count": 4 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ni-en-40": { + "question": "অসমত কোনটো খ্ৰীষ্টমাছ গীতটো সবাতোকৈ জনপ্ৰিয়?", + "en_question": "What is the most popular Christmas song in your country?", + "annotations": [ + { + "answers": [ + "বৰদিন শুভদিন উৎযাপন", + "বৰদিন বৰদিন" + ], + "en_answers": [ + "christmas celebration", + "christmas christmas" + ], + "count": 1 + }, + { + "answers": [ + "জিংগল ৱেল জিংগল ৱেল" + ], + "en_answers": [ + "jingle bell jingle bell" + ], + "count": 1 + }, + { + "answers": [ + "ওইছ ইউ মেৰী খ্ৰীষ্টমাছ এণ্ড হেপ্পী নিউ ইয়েৰ" + ], + "en_answers": [ + "wish you merry christmas and happy new year" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "Nu-in-04": { + "question": "অসমৰ উচ্চ বিদ্যালয়সমূহত প্ৰতি শিক্ষাবৰ্ষত কিমানটা ছেমিষ্টাৰ থাকে? (কেৱল আৰবী সংখ্যা (যেনে, 7, 8) প্ৰদান কৰক।)", + "en_question": "How many semesters are there each academic year at high schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 4 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-05": { + "question": "অসমত নতুন শিক্ষাবৰ্ষ সাধাৰণতে কোন মাহত আৰম্ভ হয়? (কেৱল আৰবী সংখ্যা (1~12) প্ৰদান কৰক।)", + "en_question": "In which month does the new school year typically begin in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 3 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 2 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 2 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-06": { + "question": "অসমত ৰাষ্ট্ৰীয় শিক্ষক দিৱস কেতিয়া পালন কৰা হয়? (MM/DD ফৰ্মেটত প্ৰদান কৰক (উদাহৰণস্বৰূপে, 12/31)।)", + "en_question": "When is National Teacher's Day commemorated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "09/05", + "05/09", + "5 চেপ্টেম্বৰ" + ], + "en_answers": [ + "09/05" + ], + "count": 4 + }, + { + "answers": [ + "11/11" + ], + "en_answers": [ + "11/11" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-11": { + "question": "অসমত প্ৰাথমিক বিদ্যালয় কেতিয়া আৰম্ভ হয়? (HH:MM ফৰ্মেটত প্ৰদান কৰক (যেনে, 18:00, 09:00).)", + "en_question": "At what time does elementary school start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:30" + ], + "en_answers": [ + "08:30" + ], + "count": 3 + }, + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 3 + }, + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 1 + }, + { + "answers": [ + "09:30" + ], + "en_answers": [ + "09:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-20": { + "question": "অসমত শিশু দিৱস কেতিয়া পালন কৰা হয়? (MM/DD ফৰ্মেটত প্ৰদান কৰক (উদাহৰণস্বৰূপে, 12/31)।)", + "en_question": "When is Children's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "11/14", + "14নবেম্বৰ" + ], + "en_answers": [ + "11/14" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-40": { + "question": "অসমত চাকৰি বিচাৰোঁতাসকলৰ মূল গন্তব্য চহৰটো কোনটো?", + "en_question": "Which city is the main destination for job seekers in your country?", + "annotations": [ + { + "answers": [ + "গুৱাহাটী", + "গুৱাহাটি" + ], + "en_answers": [ + "guwahati" + ], + "count": 4 + }, + { + "answers": [ + "যোৰহাট" + ], + "en_answers": [ + "jorhat" + ], + "count": 2 + }, + { + "answers": [ + "নিজৰ চহৰ" + ], + "en_answers": [ + "own city" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Sa-en-1": { + "question": "অসমৰ আটাইতকৈ জনপ্ৰিয় ফাষ্ট ফুড শৃংখল কি?", + "en_question": "What is your country's most popular fast food chain?", + "annotations": [ + { + "answers": [ + "কে এফ চি" + ], + "en_answers": [ + "kfc" + ], + "count": 2 + }, + { + "answers": [ + "ডমিন'জ", + "দমিনোজ" + ], + "en_answers": [ + "domino's" + ], + "count": 2 + }, + { + "answers": [ + "পিজ্জা হাট" + ], + "en_answers": [ + "pizza hut" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-13": { + "question": "অসমত কি খাদ্য সবাতোকৈ বিতৰ্কিত (যাৰ প্ৰতি হয় ভালপোৱা নহয় ঘৃণা)?", + "en_question": "What is the food that is most divisive (either love or hate) in your country?", + "annotations": [ + { + "answers": [ + "মেগী" + ], + "en_answers": [ + "maggi" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 2, + "not-applicable": 1, + "idk": 0 + } + }, + "Sa-en-16": { + "question": "অসমীয়া লোকসকলৰ মাজত কোনটো ফুটবল দলটো সবাতোকৈ জনপ্ৰিয়?", + "en_question": "What is the most popular soccer team among the people from your country?", + "annotations": [ + { + "answers": [ + "অইল ইণ্ডিয়া দুলিয়াজান" + ], + "en_answers": [ + "oil india duliajan" + ], + "count": 1 + }, + { + "answers": [ + "উ.এফ.চি" + ], + "en_answers": [ + "u.f.c" + ], + "count": 1 + }, + { + "answers": [ + "ব্ৰাজিল" + ], + "en_answers": [ + "brazil" + ], + "count": 1 + }, + { + "answers": [ + "আৰ্জেন্টিনা" + ], + "en_answers": [ + "argentina" + ], + "count": 1 + }, + { + "answers": [ + "অসম ৰাজ্যিক বিদ্যুৎ পৰিষদ" + ], + "en_answers": [ + "assam state electricity board" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Sa-en-22": { + "question": "অসমৰ কোনখন বিশ্ববিদ্যালয় ইয়াৰ ক্ৰীড়া দলৰ বাবে প্ৰসিদ্ধ?", + "en_question": "What is the most famous university in your country known for its sports team?", + "annotations": [ + { + "answers": [ + "গুৱাহাটী", + "গুৱাহাটী বিশ্ববিদ্যালয়", + "গুৱাহাটী বিশ্ববিদ্যালয়" + ], + "en_answers": [ + "guwahati", + "gauhati university" + ], + "count": 3 + }, + { + "answers": [ + "অসম কৃষি বিশ্ববিদ্যালয়", + "অসম কৃষি বিশ্ববিদ্যালয়" + ], + "en_answers": [ + "assam agricultural university" + ], + "count": 2 + }, + { + "answers": [ + "ডিব্ৰুগড় বিশ্ববিদ্যালয়" + ], + "en_answers": [ + "dibrugarh university" + ], + "count": 1 + }, + { + "answers": [ + "তেজপুৰ বিশ্ববিদ্যালয়" + ], + "en_answers": [ + "tezpur university" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Sa-en-31": { + "question": "অসমৰ আটাইতকৈ জনপ্ৰিয় পৰিয়ালৰ পোহনীয়া জন্তুটো কি?", + "en_question": "What is your country's most popular family pet?", + "annotations": [ + { + "answers": [ + "গৰু" + ], + "en_answers": [ + "cow" + ], + "count": 5 + }, + { + "answers": [ + "কুকুৰ" + ], + "en_answers": [ + "dog" + ], + "count": 4 + }, + { + "answers": [ + "মেকুৰী" + ], + "en_answers": [ + "cat" + ], + "count": 2 + }, + { + "answers": [ + "ছাগলী", + "ছাগলি" + ], + "en_answers": [ + "goat" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-32": { + "question": "অসমত সবাতোকৈ জনপ্ৰিয় পৰিয়ালৰ টিভি অনুষ্ঠানটো কি?", + "en_question": "What is the most popular family TV show in your country?", + "annotations": [ + { + "answers": [ + "বেহাৰবাৰী আউটপোষ্ট", + "বেহাৰবৰি আউটপোষ্ট" + ], + "en_answers": [ + "beharbari outpost" + ], + "count": 3 + }, + { + "answers": [ + "ভাড়াঘৰ" + ], + "en_answers": [ + "bharaghar" + ], + "count": 1 + }, + { + "answers": [ + "বিয়লিৰ বৃন্দাবন" + ], + "en_answers": [ + "biyolir brindabon" + ], + "count": 1 + }, + { + "answers": [ + "শক্তিমান" + ], + "en_answers": [ + "shaktimaan" + ], + "count": 1 + }, + { + "answers": [ + "চাকালাকা বুম বুম" + ], + "en_answers": [ + "shakalaka boom boom" + ], + "count": 1 + }, + { + "answers": [ + "বিদেশত আপোন মানুহ" + ], + "en_answers": [ + "assamese get together", + "get together" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-37": { + "question": "অসমত সবাতোকৈ জনপ্ৰিয় পৰিয়ালৰ ব'ৰ্ড গেমটো কি?", + "en_question": "What is the most popular family boardgame in your country?", + "annotations": [ + { + "answers": [ + "কেৰম" + ], + "en_answers": [ + "carrom" + ], + "count": 4 + }, + { + "answers": [ + "লুডু" + ], + "en_answers": [ + "ludo" + ], + "count": 2 + }, + { + "answers": [ + "দবা খেল", + "দবা", + "ডবা" + ], + "en_answers": [ + "chess game", + "chess" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-6": { + "question": "অসমত সৰ্বাধিক জনপ্ৰিয় টেকঅৱে খাদ্যবস্তুটো কি?", + "en_question": "What is the most popular takeaway food in your country?", + "annotations": [ + { + "answers": [ + "পিজ্জা" + ], + "en_answers": [ + "pizza" + ], + "count": 2 + }, + { + "answers": [ + "বাৰ্গাৰ" + ], + "en_answers": [ + "burger" + ], + "count": 1 + }, + { + "answers": [ + "চীনা খাদ্য" + ], + "en_answers": [ + "chinese food" + ], + "count": 1 + }, + { + "answers": [ + "দোচা" + ], + "en_answers": [ + "dosa" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Sa-en-7": { + "question": "অসমত জনপ্ৰিয় জলপানসমূহ কি কি?", + "en_question": "What are popular snacks in your country?", + "annotations": [ + { + "answers": [ + "কোমল চাউল", + "বৰা চাউল", + "কোমলচাউল", + "বৰাচাউল" + ], + "en_answers": [ + "soft rice", + "sticky rice" + ], + "count": 3 + }, + { + "answers": [ + "চিৰা মুৰি", + "চিৰা", + "চিৰা জলপান", + "চুঙা চাউলৰ জলপান", + "ভজা চাউলৰ জলপান" + ], + "en_answers": [ + "flattened rice snack", + "flattened rice", + "rice beer snack", + "fried rice snack" + ], + "count": 3 + }, + { + "answers": [ + "দৈ" + ], + "en_answers": [ + "yogurt" + ], + "count": 2 + }, + { + "answers": [ + "গুৰ" + ], + "en_answers": [ + "jaggery" + ], + "count": 1 + }, + { + "answers": [ + "সান্দহ" + ], + "en_answers": [ + "doubt" + ], + "count": 1 + }, + { + "answers": [ + "দৈ চিৰা" + ], + "en_answers": [ + "curd poha", + "curd-poha" + ], + "count": 1 + }, + { + "answers": [ + "পিঠাগুৰি" + ], + "en_answers": [ + "rice flour" + ], + "count": 1 + }, + { + "answers": [ + "ভীমকল" + ], + "en_answers": [ + "musa balbisiana", + "plantatin" + ], + "count": 1 + }, + { + "answers": [ + "গাখীৰ" + ], + "en_answers": [ + "milk" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-9": { + "question": "অসমীয় লোকে সমুদ্ৰ তীৰত কি খায়?", + "en_question": "What do people from your country eat at the beach?", + "annotations": [], + "idks": { + "not-applicable": 4, + "no-answer": 1, + "idk": 0 + } + }, + "Ta-pe-10": { + "question": "অসমত পুৰুষসকলে সাধাৰণতে কিমান বয়সত বিয়া পাতে? (কেৱল আৰবী সংখ্যা (যেনে, 20) প্ৰদান কৰক।)", + "en_question": "At what age do men usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 4 + }, + { + "answers": [ + "35" + ], + "en_answers": [ + "35" + ], + "count": 2 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + }, + { + "answers": [ + "27" + ], + "en_answers": [ + "27" + ], + "count": 1 + }, + { + "answers": [ + "31" + ], + "en_answers": [ + "31" + ], + "count": 1 + }, + { + "answers": [ + "38" + ], + "en_answers": [ + "38" + ], + "count": 1 + }, + { + "answers": [ + "28" + ], + "en_answers": [ + "28" + ], + "count": 1 + }, + { + "answers": [ + "29" + ], + "en_answers": [ + "29" + ], + "count": 1 + }, + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-11": { + "question": "অসমত মহিলাসকলে সাধাৰণতে কিমান বয়সত বিয়া পাতে? (কেৱল আৰবী সংখ্যা (যেনে, 20) প্ৰদান কৰক।)", + "en_question": "At what age do women usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "28" + ], + "en_answers": [ + "28" + ], + "count": 4 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 3 + }, + { + "answers": [ + "27" + ], + "en_answers": [ + "27" + ], + "count": 2 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 2 + }, + { + "answers": [ + "29" + ], + "en_answers": [ + "29" + ], + "count": 1 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-13": { + "question": "তোমাৰ মাক-দেউতাকৰ প্ৰজন্মত অসমত পৰিয়ালৰ গড় সদস্যৰ সংখ্যা কিমান আছিল? (কেৱল আৰবী সংখ্যা (যেনে, 20) প্ৰদান কৰক।)", + "en_question": "In your parents' generation, what was the average number of members in their family in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 3 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 2 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 2 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 1 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-17": { + "question": " অসমত কোনটো অলিম্পিকৰ খেল সবাতোকৈ জনপ্ৰিয়?", + "en_question": "In the Olympic Games, which sport is the most popular in your country?", + "annotations": [ + { + "answers": [ + "বক্সিং" + ], + "en_answers": [ + "boxing" + ], + "count": 4 + }, + { + "answers": [ + "মল্ল যুদ্ধ", + "মল যুদ্ধ" + ], + "en_answers": [ + "wrestling" + ], + "count": 1 + }, + { + "answers": [ + "দৌৰ" + ], + "en_answers": [ + "race", + "running" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-21": { + "question": "অসমত শিশুসকলে সাধাৰণতে ফুটবল ক'ত খেলে?", + "en_question": "Where do children usually play soccer in your country?", + "annotations": [ + { + "answers": [ + "পথাৰত", + "ফিল্ড" + ], + "en_answers": [ + "field" + ], + "count": 4 + }, + { + "answers": [ + "খেলপথাৰত" + ], + "en_answers": [ + "playground" + ], + "count": 3 + }, + { + "answers": [ + "চোতাল ত" + ], + "en_answers": [ + "yard" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-22": { + "question": "অসমত মহিলাৰ মাজত কোনটো দৈনিক ব্যায়াম জনপ্ৰিয়?", + "en_question": "Which daily exercise is popular among women in your country?", + "annotations": [ + { + "answers": [ + "খোজ কঢ়া", + "খোজকঢ়া" + ], + "en_answers": [ + "walk" + ], + "count": 3 + }, + { + "answers": [ + "যোগা", + "যোগা আসন" + ], + "en_answers": [ + "yoga", + "yoga posture" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-23": { + "question": "অসমত পুৰুষসকলৰ মাজত কোনটো দৈনিক ব্যায়াম জনপ্ৰিয়?", + "en_question": "Which daily exercise is popular among men in your country?", + "annotations": [ + { + "answers": [ + "দৌৰা", + "দৌৰ", + "যোগিং", + "দৈৰা" + ], + "en_answers": [ + "race", + "running", + "jogging" + ], + "count": 5 + }, + { + "answers": [ + "খোজ কঢ়া", + "খোজকঢ়া", + "খোজকঢ়া" + ], + "en_answers": [ + "walk" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-25": { + "question": "অসমৰ এখন জাতীয় ক্ৰীড়া লীগত আটাইতকৈ বিখ্যাত প্ৰতিদ্বন্দ্বিতা কি? (উদাহৰণস্বৰূপ, ___ বনাম ___)", + "en_question": "What is the most famous rivalry in a national sports league in your country? (e.g., ___ vs ___)", + "annotations": [], + "idks": { + "idk": 4, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Ta-pe-29": { + "question": "অসমত কোনটো পেচাদাৰী ক্ৰীড়ায়ে সৰ্বাধিক ধনৰাশি পৰিশোধ কৰে?", + "en_question": "Which professional sport is the highest paying in your country?", + "annotations": [ + { + "answers": [ + "ক্ৰিকেট", + "কৃকেত" + ], + "en_answers": [ + "cricket" + ], + "count": 3 + }, + { + "answers": [ + "বক্সিং" + ], + "en_answers": [ + "boxing" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-30": { + "question": "অসমত সবাতোকৈ জনপ্ৰিয় ক্ৰীড়া-সম্পৰ্কীয় টিভি অনুষ্ঠানটো কি আছিল/আছে ?", + "en_question": "What is/was the most popular sports-related TV program in your country?", + "annotations": [ + { + "answers": [ + "ষ্টাৰ স্পোৰ্টচ", + "ইস্তাৰ ইচপৰ্ট" + ], + "en_answers": [ + "star sports" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ta-pe-32": { + "question": "অসমত বছৰৰ কোন দিনটো সাধাৰণতে আতচবাজী প্ৰদৰ্শনৰ বাবে উৎসৰ্গিত হৈ থাকে?", + "en_question": "What day of the year is usually dedicated to fireworks in your country?", + "annotations": [ + { + "answers": [ + "দীপাৱলীৰ দিনটো", + "দিৱালী", + "দেৱালী", + "দীপাৱলী", + "দেৱালী, দিৱালী" + ], + "en_answers": [ + "the day of diwali", + "diwali" + ], + "count": 4 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ta-pe-37": { + "question": "অসমত সাধাৰণতে নৱবৰ্ষৰ সন্ধিয়াৰ প্ৰতীকটো কি?", + "en_question": "What is the common symbol of New Year's Eve that is usually found in your country?", + "annotations": [], + "idks": { + "not-applicable": 3, + "idk": 1, + "no-answer": 1 + } + }, + "Ta-pe-42": { + "question": "অসমীয় লোকে নৱবৰ্ষৰ আগনিশা সাধাৰণতে কি খাদ্য খায়?", + "en_question": "What food do people from your country usually eat on New Year's Eve?", + "annotations": [ + { + "answers": [ + "মাংস ভাত", + "মংশ ভাত", + "ভাত মাংস" + ], + "en_answers": [ + "meat rice", + "rice meat" + ], + "count": 3 + }, + { + "answers": [ + "মাছ ভাত" + ], + "en_answers": [ + "fish rice" + ], + "count": 2 + }, + { + "answers": [ + "ভাত" + ], + "en_answers": [ + "rice" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-45": { + "question": "বছৰৰ সবাতোকৈ দীঘল নিশা উদযাপনৰ সময়ত অসমত সাধাৰণতে কি খোৱা হয়?", + "en_question": "What is usually eaten during the celebration of the longest night of the year in your country?", + "annotations": [ + { + "answers": [ + "ভাত" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "ৰুটি" + ], + "en_answers": [ + "bread" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "no-answer": 1, + "idk": 0 + } + }, + "Th-en-01": { + "question": "অসমত গ্ৰীষ্মকালীন সবাতোকৈ জনপ্ৰিয় ক্ৰীড়া কি?", + "en_question": "What is the most popular summer sport in your country?", + "annotations": [ + { + "answers": [ + "সাঁতোৰ" + ], + "en_answers": [ + "swim" + ], + "count": 2 + }, + { + "answers": [ + "ক্ৰিকেট", + "কৃকেত" + ], + "en_answers": [ + "cricket" + ], + "count": 2 + }, + { + "answers": [ + "ফুতবল" + ], + "en_answers": [ + "football" + ], + "count": 1 + }, + { + "answers": [ + "নাওঁখেল" + ], + "en_answers": [ + "boat race" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-03": { + "question": "অসমত সবাতোকৈ জনপ্ৰিয় পেচাদাৰী ক্ৰীড়া লীগটো কি?", + "en_question": "What is the most popular professional sports league in your country?", + "annotations": [ + { + "answers": [ + "অসম ক্ৰিকেট লীগ", + "ক্ৰিকেট" + ], + "en_answers": [ + "assam cricket league" + ], + "count": 2 + }, + { + "answers": [ + "অসম প্ৰিমিয়াৰ ক্লাব চেম্পিয়নশ্বিপ" + ], + "en_answers": [ + "assam premier club championship" + ], + "count": 1 + }, + { + "answers": [ + "অসম ষ্টেট প্ৰিমিয়াৰ লীগ" + ], + "en_answers": [ + "assam state premier league" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 1 + } + }, + "Th-en-05": { + "question": "অসমত সবাতোকৈ জনপ্ৰিয় মহিলা ক্ৰীড়া দলটো কি?", + "en_question": "What is the most popular women's sports team in your country?", + "annotations": [ + { + "answers": [ + "অসম মহিলা ফুটবল দল" + ], + "en_answers": [ + "assam women's football team" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Th-en-09": { + "question": "অসমত সবাতোকৈ জনপ্ৰিয় টুৰ্ণামেণ্টটো কি?", + "en_question": "What is the most popular tournament in your country?", + "annotations": [ + { + "answers": [ + "বৰদলৈ ট্ৰফী" + ], + "en_answers": [ + "bordoloi trophy" + ], + "count": 2 + }, + { + "answers": [ + "ৰঞ্জী ট্ৰফী" + ], + "en_answers": [ + "ranji trophy" + ], + "count": 1 + }, + { + "answers": [ + "বক্সিং" + ], + "en_answers": [ + "boxing" + ], + "count": 1 + }, + { + "answers": [ + "ক্ৰিকেট" + ], + "en_answers": [ + "cricket" + ], + "count": 1 + }, + { + "answers": [ + "ফুটবল" + ], + "en_answers": [ + "football" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-11": { + "question": "অসমত কোন খেলুৱৈজন সবাতোকৈ জনপ্ৰিয়?", + "en_question": "Who is the most popular sportperson in your country?", + "annotations": [ + { + "answers": [ + "লভলীনা বৰগোহাঁই", + "লাভলীনা বুঢ়াগোহাঁই", + "লাভলীনা বৰগোহাঁয়", + "লভলিনা বৰগোঁহাই" + ], + "en_answers": [ + "lovlina borgohain" + ], + "count": 4 + }, + { + "answers": [ + "শচীন টেণ্ডুলকাৰ" + ], + "en_answers": [ + "sachin tendulkar" + ], + "count": 2 + }, + { + "answers": [ + "হিমা দাস" + ], + "en_answers": [ + "hima das" + ], + "count": 2 + }, + { + "answers": [ + "ৰিয়ান পৰাগ" + ], + "en_answers": [ + "riyan parag" + ], + "count": 1 + }, + { + "answers": [ + "অৰ্জুন ভোগেশ্বৰ বৰুৱা" + ], + "en_answers": [ + "arjun bhogeswar baruah" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-12": { + "question": "অসমে আন্তঃৰাষ্ট্ৰীয় প্ৰতিযোগিতাসমূহত কোন খেলত সৰ্বাধিক সফলতা অৰ্জন কৰিছে?", + "en_question": "In which sport has your country been most successful in international competitions?", + "annotations": [ + { + "answers": [ + "দৌৰ", + "দৈৰা" + ], + "en_answers": [ + "race", + "running" + ], + "count": 5 + }, + { + "answers": [ + "বক্সিং" + ], + "en_answers": [ + "boxing" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-15": { + "question": "অসমত শীতকালীন ক্ৰীড়াৰ ভিতৰত কোনটো সবাতোকৈ জনপ্ৰিয়?", + "en_question": "What is the most popular winter sport in your country?", + "annotations": [ + { + "answers": [ + "ফুটবল" + ], + "en_answers": [ + "football" + ], + "count": 2 + }, + { + "answers": [ + "ক্ৰিকেট", + "কৃকেত" + ], + "en_answers": [ + "cricket" + ], + "count": 2 + }, + { + "answers": [ + "বেডমিন্টন" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "লুদু" + ], + "en_answers": [ + "ludo" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-19": { + "question": "অসমৰ কোন খন চহৰ বা অঞ্চল উৎপাদন শিল্পৰ বাবে পৰিচিত?", + "en_question": "What is a city or region in your country known for manufacturing industry?", + "annotations": [ + { + "answers": [ + "ডিব্ৰুগড়", + "ডিব্ৰুগড়" + ], + "en_answers": [ + "dibrugarh" + ], + "count": 2 + }, + { + "answers": [ + "যোৰহাট" + ], + "en_answers": [ + "jorhat" + ], + "count": 1 + }, + { + "answers": [ + "তিনিচুকিয়া" + ], + "en_answers": [ + "tinsukia" + ], + "count": 1 + }, + { + "answers": [ + "তেজপুৰ" + ], + "en_answers": [ + "tezpur" + ], + "count": 1 + }, + { + "answers": [ + "ডিগবৈ" + ], + "en_answers": [ + "digboi" + ], + "count": 1 + }, + { + "answers": [ + "শুৱালকুছি" + ], + "en_answers": [ + "sualkuchi" + ], + "count": 1 + }, + { + "answers": [ + "সৰ্থেবৰী" + ], + "en_answers": [ + "sarthebari" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-21": { + "question": "অসমত কৰ্মচাৰীসকলক সাধাৰণতে দিয়া সবাতোকৈ গুৰুত্বপূৰ্ণ সুবিধাটো কি হিচাপে গণ্য কৰা হয়?", + "en_question": "What is regarded as the most important perk typically offered to employees in your country?", + "annotations": [ + { + "answers": [ + "স্বাস্থ্য বীমা সুবিধা", + "স্বাস্থ্য বীমাৰ সুবিধা" + ], + "en_answers": [ + "health insurance benefit", + "health insurance benefits" + ], + "count": 2 + }, + { + "answers": [ + "বিনামূলীয়া চিকিৎসা" + ], + "en_answers": [ + "free treatment" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Th-en-22": { + "question": "অসমৰ বাবে আৰ্থিকভাৱে আটাইতকৈ বিপৰ্যয়কৰ সময়ছোৱা কোনটো আছিল?", + "en_question": "What was the most catastrophic economic period for your country?", + "annotations": [ + { + "answers": [ + "কভিডৰ সময়ছোৱা", + "ক'ভিদ ৰ সময়ছোৱা", + "কʼভিড", + "কভিদ ১৯", + "ক'ভিড কালীন সময়চোৱা" + ], + "en_answers": [ + "covid period", + "covid's duration", + "covid", + "covid 19", + "covid duration" + ], + "count": 5 + }, + { + "answers": [ + "কা আন্দোলনৰ সময়ছোৱা" + ], + "en_answers": [ + "caa protest period" + ], + "count": 1 + }, + { + "answers": [ + "বান পানীৰ সময়ছোৱা" + ], + "en_answers": [ + "flood season" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-24": { + "question": "অসমৰ কোন অঞ্চলটো প্ৰযুক্তি কৰ্মী আৰু ষ্টাৰ্ট আপসমূহৰ বাবে এক প্ৰধান কেন্দ্ৰস্থল?", + "en_question": "What region in your country is a major hub for tech workers and start ups?", + "annotations": [ + { + "answers": [ + "গুৱাহাটী" + ], + "en_answers": [ + "guwahati" + ], + "count": 4 + }, + { + "answers": [ + "যোৰহাট" + ], + "en_answers": [ + "jorhat" + ], + "count": 3 + }, + { + "answers": [ + "শুৱালকুছি", + "খোৱাল কুচী" + ], + "en_answers": [ + "sualkuchi" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-27": { + "question": "অসমত আটাইতকৈ গুৰুত্বপূৰ্ণ উদ্যোগটো কি?", + "en_question": "What is the most important industry in your country?", + "annotations": [ + { + "answers": [ + "চাহ উদ্যোগ", + "চাহৰ উদ্যোগ" + ], + "en_answers": [ + "tea industry" + ], + "count": 4 + }, + { + "answers": [ + "আৰ আৰ‌ এল" + ], + "en_answers": [ + "rrl" + ], + "count": 1 + }, + { + "answers": [ + "তৈল উদ্যোগ" + ], + "en_answers": [ + "oil industry" + ], + "count": 1 + }, + { + "answers": [ + "পাট মূগা শিল্প উদ্যোগ" + ], + "en_answers": [ + "jute muga industry initiative" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-35": { + "question": "অসমত পৰিয়ালৰ সৈতে সাধাৰণতে কোনটো দৈনিক আহাৰ ভাগ বতৰা হয়? (যেনে, জলপান, দুপৰীয়া ভাত, ৰাতিৰ আহাৰ)", + "en_question": "Which one of the daily meals is commonly shared with family members in your country? (e.g., breakfast, lunch, dinner)", + "annotations": [ + { + "answers": [ + "দুপৰীয়াৰ ভাত", + "দুপৰীয়া ভাত", + "দুপৰীয়া ভাত", + "দুপৰীয়াৰ আহাৰ" + ], + "en_answers": [ + "afternoon meal", + "afternoon rice" + ], + "count": 4 + }, + { + "answers": [ + "ৰাতিৰ আহাৰ" + ], + "en_answers": [ + "dinner" + ], + "count": 3 + }, + { + "answers": [ + "জলপান" + ], + "en_answers": [ + "snacks" + ], + "count": 2 + }, + { + "answers": [ + "পুৱাৰ জলপান" + ], + "en_answers": [ + "morning snack" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-36": { + "question": "অসমত সপ্তাহান্তত শিশুসহ পৰিয়ালে কি জনপ্ৰিয় কাম কৰে?", + "en_question": "What is a popular family activity with a child to do on weekends in your country?", + "annotations": [ + { + "answers": [ + "ফুৰিব যায়", + "ফুৰিবলৈ যায়", + "ফুৰিবলৈ যায়" + ], + "en_answers": [ + "walk", + "goes for a walk" + ], + "count": 3 + }, + { + "answers": [ + "ঘৰত সকলোৱে একেলগে ভালকৈ এসাঁজ খায়" + ], + "en_answers": [ + "have dinner" + ], + "count": 1 + }, + { + "answers": [ + "গাৰ্দেনিং" + ], + "en_answers": [ + "gardening" + ], + "count": 1 + }, + { + "answers": [ + "ফাৰ্মিং" + ], + "en_answers": [ + "farming" + ], + "count": 1 + }, + { + "answers": [ + "পিকনিকলৈ যায়" + ], + "en_answers": [ + "picnic" + ], + "count": 1 + }, + { + "answers": [ + "বিনোদন পাৰ্কলৈ যায়" + ], + "en_answers": [ + "go to amusement park", + "amusement park" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Th-en-37": { + "question": "অসমত সাধাৰণতে কিমান বয়সত শিশুসকল তেওঁলোকৰ মাতৃ-পিতৃৰ পৰা স্বাধীন হৈ পৰে? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)", + "en_question": "At what age do children typically become independent from their parents in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 2 + }, + { + "answers": [ + "23" + ], + "en_answers": [ + "23" + ], + "count": 1 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + }, + { + "answers": [ + "21" + ], + "en_answers": [ + "21" + ], + "count": 1 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + }, + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "Th-en-38": { + "question": "অসমত পৰিয়ালৰ বাবে আটাইতকৈ গুৰুত্বপূৰ্ণ বন্ধ কোনটো?", + "en_question": "What is the most important family holiday in your country?", + "annotations": [ + { + "answers": [ + "বিহুৰ বন্ধ", + "বিহু" + ], + "en_answers": [ + "bihu holiday", + "bihu" + ], + "count": 5 + }, + { + "answers": [ + "পুজা বন্ধ", + "পুজা", + "দুৰ্গাপূজাৰ বন্ধ" + ], + "en_answers": [ + "puja holiday", + "puja", + "durga puja holiday" + ], + "count": 3 + }, + { + "answers": [ + "দিৱালী" + ], + "en_answers": [ + "diwali" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-39": { + "question": "অসমত এটা জনপ্ৰিয় পৰিয়ালৰ খেল কি?", + "en_question": "What is a popular family game in your country?", + "annotations": [ + { + "answers": [ + "লুডু", + "লুদু" + ], + "en_answers": [ + "ludo" + ], + "count": 4 + }, + { + "answers": [ + "কেৰম" + ], + "en_answers": [ + "carrom" + ], + "count": 3 + }, + { + "answers": [ + "দবাখেল", + "দবা" + ], + "en_answers": [ + "chess" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Th-en-41": { + "question": "অসমত দম্পতীসকলে প্ৰথমটো সন্তান গ্ৰহণ কৰাৰ গড় বয়স কিমান? (কেৱল আৰবী সংখ্যা (যেনে, 20) প্ৰদান কৰক।)", + "en_question": "What is the average age for couples to have their first child in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 2 + }, + { + "answers": [ + "26" + ], + "en_answers": [ + "26" + ], + "count": 2 + }, + { + "answers": [ + "28" + ], + "en_answers": [ + "28" + ], + "count": 2 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 2 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + }, + { + "answers": [ + "31" + ], + "en_answers": [ + "31" + ], + "count": 1 + }, + { + "answers": [ + "32" + ], + "en_answers": [ + "32" + ], + "count": 1 + }, + { + "answers": [ + "27" + ], + "en_answers": [ + "27" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Th-en-43": { + "question": "অসমত এটা সাধাৰণ পৰিয়ালে কিমানখন গাড়ী কিনে? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)", + "en_question": "How many cars are owned by a typical family in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 4 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 4 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-44": { + "question": "সপ্তাহান্তিক পৰিয়ালৰ ভোজনৰ বাবে অসমৰ আটাইতকৈ জনপ্ৰিয় খাদ্য কি?", + "en_question": "What is your country's most popular food for family meals on weekends?", + "annotations": [ + { + "answers": [ + "হাঁহৰ মাংস কোমোৰাৰ সৈতে", + "লুচি মাংস" + ], + "en_answers": [ + "duck meat with ash gourd", + "luchi and meat" + ], + "count": 2 + }, + { + "answers": [ + "মাংশ পোলাও", + "মাংস ভাত" + ], + "en_answers": [ + "meat pilaf", + "meat rice" + ], + "count": 2 + }, + { + "answers": [ + "দাল ভাত", + "ভাত" + ], + "en_answers": [ + "lentil rice", + "rice" + ], + "count": 2 + }, + { + "answers": [ + "লাই শাক দিয়া গাহৰি মাংস" + ], + "en_answers": [ + "pork with mustard greens" + ], + "count": 1 + }, + { + "answers": [ + "কলডিলেৰে পাৰ মাংস" + ], + "en_answers": [ + "meat with taro leaves" + ], + "count": 1 + }, + { + "answers": [ + "মাছ" + ], + "en_answers": [ + "fish" + ], + "count": 1 + }, + { + "answers": [ + "ৰুতি" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "দক্ষিণ ভাৰতীয় খাদ্য" + ], + "en_answers": [ + "south indian food" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-45": { + "question": "অসমত সপ্তাহৰ সন্ধিয়া পৰিয়ালৰ সৈতে কি জনপ্ৰিয় কাৰ্যকলাপ কৰা হয়?", + "en_question": "What is the most popular weekday evening family activity in your country?", + "annotations": [ + { + "answers": [ + "একেলগে বহি চাহ খোৱা হয়", + "একেলগে চাহ খোৱা" + ], + "en_answers": [ + "having tea together" + ], + "count": 2 + }, + { + "answers": [ + "কথা পতা হয়", + "কথা পতা" + ], + "en_answers": [ + "talk", + "conversation" + ], + "count": 2 + }, + { + "answers": [ + "টিভি", + "টিভি চোৱা হয়" + ], + "en_answers": [ + "tv", + "watching tv" + ], + "count": 2 + }, + { + "answers": [ + "মুভি চোৱা" + ], + "en_answers": [ + "movie" + ], + "count": 1 + }, + { + "answers": [ + "গোঁসাই ঘৰত চাকি জ্বলোৱা হয়" + ], + "en_answers": [ + "lighting up lamps" + ], + "count": 1 + }, + { + "answers": [ + "প্ৰাৰ্থনা দিয়া হয়" + ], + "en_answers": [ + "pray" + ], + "count": 1 + }, + { + "answers": [ + "ফুৰিবলৈ যোৱা" + ], + "en_answers": [ + "walk" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-48": { + "question": "অসমত উচ্চ-মাধ্যমিক বিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলক কৰ্তব্য আৰু পৰীক্ষাত দিয়া সৰ্বোচ্চ শ্ৰেণী কি?", + "en_question": "What is the highest grade given to top-achieving high school students on assignments and exams in your country?", + "annotations": [ + { + "answers": [ + "প্ৰথম", + "প্ৰথম শ্ৰেণী" + ], + "en_answers": [ + "first", + "first class" + ], + "count": 2 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-49": { + "question": "অসমত উচ্চ-মাধ্যমিক বিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলৰ বাবে আটাইতকৈ গুৰুত্বপূৰ্ণ পৰীক্ষা কি বুলি বিবেচিত হয়?", + "en_question": "What is considered the most important exam for high school students in your country?", + "annotations": [ + { + "answers": [ + "হাইস্কুল শিক্ষান্ত পৰীক্ষা", + "মেট্ৰিক", + "মেত্ৰিক" + ], + "en_answers": [ + "high school leaving certificate examination", + "hslc" + ], + "count": 5 + }, + { + "answers": [ + "হায়াৰ চেকেন্দাৰী" + ], + "en_answers": [ + "higher secondary" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-51": { + "question": "অসমত ছাত্ৰ-ছাত্ৰীসকলৰ বাবে কোন বিষয়টো সবাতোকৈ গুৰুত্বপূৰ্ণ বুলি বিবেচিত হয়?", + "en_question": "Which subject is considered the most important for students in your country?", + "annotations": [ + { + "answers": [ + "গণিত", + "গনিত" + ], + "en_answers": [ + "mathematics", + "maths", + "math" + ], + "count": 4 + }, + { + "answers": [ + "বিজ্ঞান", + "বিঞ্জান শাখা" + ], + "en_answers": [ + "science" + ], + "count": 4 + }, + { + "answers": [ + "ইংৰাজী" + ], + "en_answers": [ + "english" + ], + "count": 2 + }, + { + "answers": [ + "ৰাজনীতি বিজ্ঞান" + ], + "en_answers": [ + "political science" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-53": { + "question": "অসমৰ বিদ্যালয়সমূহত পাঠ্যক্ৰমৰ বাহিৰৰ সামাজিক অনুষ্ঠানসমূহৰ ভিতৰত কোনটো সবাতোকৈ জনপ্ৰিয়?", + "en_question": "What is the most popular extracurricular social event at schools in your country?", + "annotations": [ + { + "answers": [ + "সাংস্ক্ৰিতিক সন্ধীয়া", + "নৃত্য গীতৰ অনুষ্ঠান", + "সংগীত মহাৰণ" + ], + "en_answers": [ + "cultural evening", + "dance and song event", + "music competition" + ], + "count": 3 + }, + { + "answers": [ + "ভাওনা সবাহ" + ], + "en_answers": [ + "bhaona" + ], + "count": 1 + }, + { + "answers": [ + "ৰাসলীলা" + ], + "en_answers": [ + "rasleela" + ], + "count": 1 + }, + { + "answers": [ + "মইনা পাৰিজাত" + ], + "en_answers": [ + "moina parijat" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Th-en-58": { + "question": "অসমত বিশ্ববিদ্যালয়ত পঢ়াৰ আগতে শিকা সবাতোকৈ উন্নত গণিতৰ বিষয়টো কি?", + "en_question": "What is the most advanced math subject learned before university in your country?", + "annotations": [ + { + "answers": [ + "ইন্তিগ্ৰেচন", + "দিফাৰেন্তিয়েচন", + "কেলকুলাচ" + ], + "en_answers": [ + "integration", + "differentiation", + "calculus" + ], + "count": 2 + }, + { + "answers": [ + "উচ্ছ গনিত" + ], + "en_answers": [ + "higher mathematics" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-01": { + "question": "অসমৰ বিশ্ববিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে তেওঁলোকৰ চূড়ান্ত পৰীক্ষাৰ বাবে সাধাৰণতে ক'ত পঢ়িবলৈ যায়?", + "en_question": "Where do university students in your country usually go to study for their final exams?", + "annotations": [ + { + "answers": [ + "লাইব্ৰেৰী", + "লাইব্ৰেৰীত", + "বিশ্ববিদ্যালয়ৰ পুথিভঁৰাল" + ], + "en_answers": [ + "library" + ], + "count": 4 + }, + { + "answers": [ + "হোষ্টেলৰ ৰুমত", + "হোষ্টেলত", + "ছাত্ৰাবাসৰ কোঠা" + ], + "en_answers": [ + "hostel" + ], + "count": 3 + }, + { + "answers": [ + "ঘৰ", + "নিজা ঘৰ" + ], + "en_answers": [ + "house", + "home" + ], + "count": 2 + }, + { + "answers": [ + "ডিপাৰ্টমেন্টৰ লেবৰেটৰীত" + ], + "en_answers": [ + "laboratory", + "lab" + ], + "count": 1 + }, + { + "answers": [ + "কলেজ" + ], + "en_answers": [ + "college" + ], + "count": 1 + }, + { + "answers": [ + "পেইং গেষ্টত" + ], + "en_answers": [ + "paying guest", + "pg" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-02": { + "question": "অসমত বিশ্ববিদ্যালয়লৈ যাবলৈ মানুহে সাধাৰণতে কি ধৰণৰ ৰাজহুৱা পৰিবহন ব্যৱহাৰ কৰে?", + "en_question": "What is a common public transport that people use to go to university in your country?", + "annotations": [ + { + "answers": [ + "টেম্পো", + "টেম্পু", + "এপে", + "অটো" + ], + "en_answers": [ + "tempo", + "ape", + "auto" + ], + "count": 3 + }, + { + "answers": [ + "বাছ" + ], + "en_answers": [ + "bus" + ], + "count": 2 + }, + { + "answers": [ + "বেটাৰি ৰিক্সা", + "বেটেৰীচালিত ৰিক্সা" + ], + "en_answers": [ + "battery rickshaw", + "battery-powered rickshaws" + ], + "count": 2 + }, + { + "answers": [ + "স্কুতী" + ], + "en_answers": [ + "scooty" + ], + "count": 1 + }, + { + "answers": [ + "বাইক" + ], + "en_answers": [ + "bike" + ], + "count": 1 + }, + { + "answers": [ + "গাৰী" + ], + "en_answers": [ + "car" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-04": { + "question": "অসমত প্ৰাথমিক বিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে বিদ্যালয়ৰ পিছত সাধাৰণতে কি কৰে?", + "en_question": "What do elementary students in your country usually do after school?", + "annotations": [ + { + "answers": [ + "খেলা ধূলা কৰে", + "খেলা ধূলা কৰে।", + "খেলে" + ], + "en_answers": [ + "sports", + "plays sports." + ], + "count": 4 + }, + { + "answers": [ + "ঘৰত শোৱে", + "শুৱে", + "শুবলৈ যায়", + "ঘৰলৈ আহি শোৱে" + ], + "en_answers": [ + "sleep", + "going to sleep", + "come home and sleep" + ], + "count": 4 + }, + { + "answers": [ + "সমৱৰ্ক কৰে", + "বিদ্যালয়ত কৰিবলৈ দিয়া ঘৰুৱা কাম কৰে", + "বিদ্যালয়ৰ গৃহকৰ্ম কৰে" + ], + "en_answers": [ + "does homework", + "does homework given at school", + "does school homework" + ], + "count": 3 + }, + { + "answers": [ + "ঘৰলৈ যায়", + "ঘৰ‌যাই" + ], + "en_answers": [ + "go home", + "going home" + ], + "count": 2 + }, + { + "answers": [ + "ভাত খায়" + ], + "en_answers": [ + "eat" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + } +} \ No newline at end of file diff --git a/data/annotations/Azerbaijan_data.json b/data/annotations/Azerbaijan_data.json new file mode 100644 index 0000000000000000000000000000000000000000..f40bc8b9b477c7a26369792ccef896b9e70dfa30 --- /dev/null +++ b/data/annotations/Azerbaijan_data.json @@ -0,0 +1,18890 @@ +{ + "Al-en-01": { + "question": "Azərbaycanda məktəbəqədər uşaqlar üçün tipik qəlyanaltı nədir?", + "en_question": "What is a common snack for preschool kids in your country?", + "annotations": [ + { + "answers": [ + "qoz-fındıq" + ], + "en_answers": [ + "nuts" + ], + "count": 1 + }, + { + "answers": [ + "çipsi" + ], + "en_answers": [ + "chips" + ], + "count": 1 + }, + { + "answers": [ + "qoğal" + ], + "en_answers": [ + "shorgoghal", + "traditional azerbaijani pastry in a round shape filled with anise or fennel seed, cumin, cinnamon, turmeric, salt and pepper." + ], + "count": 1 + }, + { + "answers": [ + "qayğanaq" + ], + "en_answers": [ + "akuri", + "azerbaijani scrambled egg dish" + ], + "count": 1 + }, + { + "answers": [ + "yumurta" + ], + "en_answers": [ + "eggs" + ], + "count": 1 + }, + { + "answers": [ + "süd məhsulları" + ], + "en_answers": [ + "dairy product", + "milk product", + "lacticinia" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-02": { + "question": "Azərbaycanda pivə ilə yaxşı gedən populyar yemək nədir?", + "en_question": "What is a popular food to go with beer in your country?", + "annotations": [ + { + "answers": [ + "çərəz" + ], + "en_answers": [ + "snacks" + ], + "count": 3 + }, + { + "answers": [ + "saçaqlı pendir", + "saçaq pendiri" + ], + "en_answers": [ + "chechil", + "brined string cheese" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-04": { + "question": "Azərbaycanda ən populyar meyvə hansıdır?", + "en_question": "What is the most popular fruit in your country?", + "annotations": [ + { + "answers": [ + "alma" + ], + "en_answers": [ + "apple" + ], + "count": 5 + }, + { + "answers": [ + "portağal" + ], + "en_answers": [ + "orange" + ], + "count": 1 + }, + { + "answers": [ + "armud" + ], + "en_answers": [ + "pear" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-06": { + "question": "Azərbaycanda məktəb yeməkxanasında tipik olaraq hansı yemək verilir?", + "en_question": "What is a common school cafeteria food in your country?", + "annotations": [ + { + "answers": [ + "dolma" + ], + "en_answers": [ + "dolma", + "azerbaijani grape leaves" + ], + "count": 1 + }, + { + "answers": [ + "kotlet" + ], + "en_answers": [ + "cutlet" + ], + "count": 1 + }, + { + "answers": [ + "qarabaşaq" + ], + "en_answers": [ + "buckwheat" + ], + "count": 1 + }, + { + "answers": [ + "kökə", + "kətə" + ], + "en_answers": [ + "keta", + "gata", + "ahar sweet is a type of pastry typical of eastern anatolia and south azerbaijani cuisines" + ], + "count": 1 + }, + { + "answers": [ + "burger" + ], + "en_answers": [ + "burger" + ], + "count": 1 + }, + { + "answers": [ + "şorba" + ], + "en_answers": [ + "soup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-08": { + "question": "Azərbaycanda alış-veriş mərkəzlərində ən çox hansı qəlyanaltılar yeyilir?", + "en_question": "What are the most commonly eaten snacks at shopping malls in your country?", + "annotations": [ + { + "answers": [ + "dönər" + ], + "en_answers": [ + "doner kebab", + "döner kebab" + ], + "count": 3 + }, + { + "answers": [ + "pendir çubuqları" + ], + "en_answers": [ + "cheese stick" + ], + "count": 1 + }, + { + "answers": [ + "toyuq düyüsü", + "toyuq düyü" + ], + "en_answers": [ + "chicken pilaf" + ], + "count": 1 + }, + { + "answers": [ + "burger" + ], + "en_answers": [ + "burger" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-09": { + "question": "Azərbaycanda əyləncə parkında populyar qəlyanaltı nədir?", + "en_question": "What is a popular snack at an amusement park in your country?", + "annotations": [ + { + "answers": [ + "popkorn" + ], + "en_answers": [ + "popcorn" + ], + "count": 1 + }, + { + "answers": [ + "kartof fri" + ], + "en_answers": [ + "french fries", + "chips" + ], + "count": 1 + }, + { + "answers": [ + "dönər" + ], + "en_answers": [ + "doner kebab", + "döner kebab" + ], + "count": 1 + }, + { + "answers": [ + "pampıq şəkəri" + ], + "en_answers": [ + "cotton candy" + ], + "count": 1 + }, + { + "answers": [ + "sendviç" + ], + "en_answers": [ + "sandwich" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-16": { + "question": "Azərbaycanda uşaqlar hansı yaşda məktəbəqədər təhsilə başlayırlar? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)", + "en_question": "At what age do kids start preschool in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 2 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 2 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-17": { + "question": "Azərbaycanda ibtidai məktəblər üçün məşhur olan məktəbdənkənar idman növü hansıdır?", + "en_question": "What is a popular afterschool sport for elementary schools in your country?", + "annotations": [ + { + "answers": [ + "futbol" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-18": { + "question": "Azərbaycanda ibtidai sinif şagirdləri hansı fənn üzrə fərdi təhsil alırlar?", + "en_question": "For which subject do elementary students get private education in your country?", + "annotations": [ + { + "answers": [ + "riyaziyyat" + ], + "en_answers": [ + "mathematics", + "math" + ], + "count": 5 + }, + { + "answers": [ + "i̇ngilis dili" + ], + "en_answers": [ + "english" + ], + "count": 1 + }, + { + "answers": [ + "azərbaycan dili" + ], + "en_answers": [ + "azerbaijani" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-19": { + "question": "Azərbaycanda orta məktəb şagirdləri arasında populyar ikinci dil hansıdır?", + "en_question": "What is a popular second language for high school students in your country?", + "annotations": [ + { + "answers": [ + "rus dili" + ], + "en_answers": [ + "russian" + ], + "count": 4 + }, + { + "answers": [ + "i̇ngilis dili", + "ingilis dili", + "i̇ngilis" + ], + "en_answers": [ + "english" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-21": { + "question": "Azərbaycanda istedadlı təhsil üçün ən vacib fənn hansıdır?", + "en_question": "Which subject is the most important for gifted education in your country?", + "annotations": [ + { + "answers": [ + "riyaziyyat" + ], + "en_answers": [ + "mathematics", + "math" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-32": { + "question": "Azərbaycanda Şükran gününün əsas yeməyi nədir?", + "en_question": "What is the main dish for Thanksgiving in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-33": { + "question": "Azərbaycanda insanlar Halloween'i qeyd etmək üçün nə edirlər?", + "en_question": "What do people do to celebrate Halloween in your country?", + "annotations": [ + { + "answers": [ + "partiyə gedirler", + "partiye gedirler" + ], + "en_answers": [ + "go to parties", + "throw parties", + "party" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-34": { + "question": "Azərbaycanda insanlar Yeni İl gününü qeyd etmək üçün nə edirlər?", + "en_question": "What do people do to celebrate New Year's Day in your country?", + "annotations": [ + { + "answers": [ + "şam yeməyi", + "ailəvi axşam yeməyi" + ], + "en_answers": [ + "evening meal", + "supper" + ], + "count": 2 + }, + { + "answers": [ + "paytaxt salatı hazırlayırlar" + ], + "en_answers": [ + "olivier salad", + "paytaxt salati salad", + "russian salad", + "paytakht salati" + ], + "count": 1 + }, + { + "answers": [ + "yolka düzəldirlər" + ], + "en_answers": [ + "christmas tree" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Al-en-35": { + "question": "Azərbaycanda insanlar Milad bayramını necə qeyd edirlər?", + "en_question": "What do people do to celebrate Christmas in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "idk": 1, + "no-answer": 0 + } + }, + "Al-en-36": { + "question": "Azərbaycanda Hellouin bayramı hansı yeməklərlə əlaqələndirilir?", + "en_question": "What food is associated with Halloween in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "idk": 1, + "no-answer": 0 + } + }, + "Al-en-37": { + "question": "Azərbaycanda Milad bayramı ilə hansı yeməklər əlaqələndirilir?", + "en_question": "What food is associated with Christmas in your country?", + "annotations": [ + { + "answers": [ + "paytaxt salatı" + ], + "en_answers": [ + "olivier salad", + "paytaxt salati salad", + "russian salad", + "paytakht salati" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 1, + "no-answer": 0 + } + }, + "Al-en-38": { + "question": "Azərbaycanda Sevgililər günü ilə əlaqələndirilən yemək nədir?", + "en_question": "What food is associated with Valentine's day in your country?", + "annotations": [ + { + "answers": [ + "şokolad" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + }, + { + "answers": [ + "steyk" + ], + "en_answers": [ + "steak" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Al-en-39": { + "question": "Azərbaycanda insanlar ad günündə nə yeyirlər?", + "en_question": "What do people eat on their birthday in your country?", + "annotations": [ + { + "answers": [ + "tort" + ], + "en_answers": [ + "cake" + ], + "count": 3 + }, + { + "answers": [ + "aş" + ], + "en_answers": [ + "pilaf", + "azerbaijani rice", + "pilav", + "pilau" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Al-en-40": { + "question": "Azərbaycanda ailələrin kiçik uşaqlarla əylənə biləcəkləri məşhur açıq hava yeri hansıdır?", + "en_question": "What is a popular outdoor place for families to have fun with little kids in your country?", + "annotations": [ + { + "answers": [ + "bulvar", + "bakı bulvarı" + ], + "en_answers": [ + "boulevard", + "baku boulevard" + ], + "count": 4 + }, + { + "answers": [ + "bakı dağüstü parkı", + "dağüstü parkı" + ], + "en_answers": [ + "highland park", + "upland park" + ], + "count": 1 + }, + { + "answers": [ + "park" + ], + "en_answers": [ + "park" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-43": { + "question": "Azərbaycanda ailələr üçün məşhur qapalı fəaliyyət nədir?", + "en_question": "What is a popular indoor activity for families in your country?", + "annotations": [ + { + "answers": [ + "əyləncə mərkəzi", + "əyləncə mərkızi" + ], + "en_answers": [ + "entertainment center" + ], + "count": 2 + }, + { + "answers": [ + "mol ziyarəti", + "mall ziyarəti" + ], + "en_answers": [ + "mall visit", + "visit mall" + ], + "count": 1 + }, + { + "answers": [ + "kinoteatrlar" + ], + "en_answers": [ + "cinema" + ], + "count": 1 + }, + { + "answers": [ + "su parkları", + "su parkı", + "su park" + ], + "en_answers": [ + "water park" + ], + "count": 1 + }, + { + "answers": [ + "restoran" + ], + "en_answers": [ + "restaurant" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-02": { + "question": "Azərbaycanda universitet tələbələri harada nahar edirlər?", + "en_question": "Where do university students have lunch in your country?", + "annotations": [ + { + "answers": [ + "universitet yeməkxanası", + "kampus yeməkxanası", + "kampus yeməkxanaları", + "universitetin yeməkxanasında" + ], + "en_answers": [ + "university cafeteria", + "cafeteria", + "campus cafeterias" + ], + "count": 3 + }, + { + "answers": [ + "kənar restoranlarda" + ], + "en_answers": [ + "restaurant" + ], + "count": 1 + }, + { + "answers": [ + "kafe" + ], + "en_answers": [ + "cafe" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-03": { + "question": "Azərbaycanda orta məktəblərdə final imtahanları adətən hansı ayda keçirilir? (Yalnız ərəb rəqəmləri (1~12) göstərin.)", + "en_question": "Which month is the final exam term usually scheduled at high schools in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 3 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-08": { + "question": "Azərbaycanda şagirdlər adətən gündə neçə saat vaxtını liseydə keçirirlər? (Ərəb rəqəmlərini tam ədədlərlə (0~24), ondalıq nöqtəsiz verin.)", + "en_question": "How many hours a day do students in your country usually spend at high school? (Provide Arabic numerals in integers (0~24), without any decimal points.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 3 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-09": { + "question": "Azərbaycanda orta məktəb şagirdləri neçə dildə təhsil alır? (Yalnız ərəb rəqəmləri (məsələn, 5) göstərin.)", + "en_question": "How many languages do students study at high school in your country? (Provide Arabic numerals (e.g., 5) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 3 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-34": { + "question": "Azərbaycanda məktəbdə komanda ilə oynanılan ən populyar idman növü hansıdır?", + "en_question": "What is the most popular sport played in a team at school in your country?", + "annotations": [ + { + "answers": [ + "futbol" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "volleybol" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "basketbol" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-35": { + "question": "Azərbaycanda ən məşhur idman şərhçisi kimdir?", + "en_question": "Who is the most popular sport commentator in your country?", + "annotations": [ + { + "answers": [ + "i̇smayıl abdullayev" + ], + "en_answers": [ + "ismayil abdullayev" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-36": { + "question": "Azərbaycanda ən populyar idman komandası hansıdır?", + "en_question": "What is the most popular sport team in your country?", + "annotations": [ + { + "answers": [ + "qarabağ fk", + "qarabağ", + "qarabağ futbol klubu" + ], + "en_answers": [ + "qarabag fk", + "qarabag" + ], + "count": 4 + }, + { + "answers": [ + "neftçi pfk", + "neftçi", + "neftçi peşəkar futbol klubu" + ], + "en_answers": [ + "neftchi pfk", + "neftchi baku", + "neftchi" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-43": { + "question": "Azərbaycanda insanların adətən idman yayımlarını izləmək üçün toplaşdığı ümumi yerlər və ya məkanlar hansılardır?", + "en_question": "What are the common places or venues where individuals in your country usually gather to watch sports broadcasts?", + "annotations": [ + { + "answers": [ + "çayxana" + ], + "en_answers": [ + "teahouse" + ], + "count": 4 + }, + { + "answers": [ + "kafe" + ], + "en_answers": [ + "cafe" + ], + "count": 1 + }, + { + "answers": [ + "bar" + ], + "en_answers": [ + "bar" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-05": { + "question": "Azərbaycanda insanlar adətən gündə neçə dəfə yemək yeyirlər? (Yalnız ərəb rəqəmləri (məsələn, 5) göstərin.)", + "en_question": "How many meals per day do people from your country usually have? (Provide Arabic numerals (e.g., 5) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-06": { + "question": "Azərbaycanlılar üçün günün ən vacib yeməyi hansıdır?", + "en_question": "Which is the most important meal of the day to people from your country?", + "annotations": [ + { + "answers": [ + "şam yeməyi" + ], + "en_answers": [ + "dinner" + ], + "count": 3 + }, + { + "answers": [ + "səhər yeməyi" + ], + "en_answers": [ + "breakfast" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-08": { + "question": "Azərbaycanın pəhrizində ən çox istifadə olunan inqrediyent hansıdır?", + "en_question": "What is the most common ingredient used in your country's diet?", + "annotations": [ + { + "answers": [ + "mal əti" + ], + "en_answers": [ + "beef" + ], + "count": 2 + }, + { + "answers": [ + "kərə yağı" + ], + "en_answers": [ + "butter" + ], + "count": 1 + }, + { + "answers": [ + "kəsmik" + ], + "en_answers": [ + "cottage cheese" + ], + "count": 1 + }, + { + "answers": [ + "tərəvəzlər" + ], + "en_answers": [ + "vegetables" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-09": { + "question": "Azərbaycanda insanlar adətən desert üçün nə yeyirlər?", + "en_question": "What do people from your country usually eat for dessert?", + "annotations": [ + { + "answers": [ + "tort" + ], + "en_answers": [ + "cake" + ], + "count": 3 + }, + { + "answers": [ + "şirniyyat" + ], + "en_answers": [ + "sweets" + ], + "count": 1 + }, + { + "answers": [ + "keks" + ], + "en_answers": [ + "muffin cookies" + ], + "count": 1 + }, + { + "answers": [ + "paxlava" + ], + "en_answers": [ + "pakhlava", + "baklava", + "dessert made of filo pastry sheets" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-11": { + "question": "Azərbaycanda insanlar adətən həftənin hansı günü ailəvi yemək təşkil edirlər?", + "en_question": "Which day of the week do people usually organize a family meal in your country?", + "annotations": [ + { + "answers": [ + "cümə" + ], + "en_answers": [ + "friday" + ], + "count": 2 + }, + { + "answers": [ + "bazar" + ], + "en_answers": [ + "sunday" + ], + "count": 1 + }, + { + "answers": [ + "şənbə", + "6cı gün" + ], + "en_answers": [ + "saturday" + ], + "count": 1 + }, + { + "answers": [ + "hər gün" + ], + "en_answers": [ + "every day" + ], + "count": 1 + }, + { + "answers": [ + "həftəsonu" + ], + "en_answers": [ + "weekend" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-14": { + "question": "Azərbaycanda ən populyar isti içki nədir?", + "en_question": "Which is the most popular hot drink in your country?", + "annotations": [ + { + "answers": [ + "çay" + ], + "en_answers": [ + "tea" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-19": { + "question": "Azərbaycandan olan gənclər gecə klubunda adətən nə içirlər?", + "en_question": "What do young people from your country usually drink at the night club?", + "annotations": [ + { + "answers": [ + "vodka" + ], + "en_answers": [ + "vodka" + ], + "count": 2 + }, + { + "answers": [ + "kokteyllər", + "kokteyl" + ], + "en_answers": [ + "cocktail" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-21": { + "question": "Azərbaycanda insanlar adətən hansı ayda tətilə çıxırlar? (Yalnız ərəb rəqəmləri (1~12) verin.)", + "en_question": "At which month do people usually take holidays in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 4 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-29": { + "question": "Azərbaycanda Yeni İl arifəsində hansı ənənələr var?", + "en_question": "What tradition is there in your country for New Year's Eve?", + "annotations": [ + { + "answers": [ + "qohumları ziyarət etmək", + "qohumları ziyarət" + ], + "en_answers": [ + "visit relatives" + ], + "count": 2 + }, + { + "answers": [ + "şam yeməyi" + ], + "en_answers": [ + "evening meal", + "supper" + ], + "count": 1 + }, + { + "answers": [ + "saat 12-də tort kəsmək" + ], + "en_answers": [ + "cut cake at midnight", + "cut the cake at 12 o'clock", + "cake cutting" + ], + "count": 1 + }, + { + "answers": [ + "fişənglər", + "fişəng" + ], + "en_answers": [ + "firework" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-38": { + "question": "Azərbaycanda ailə üçün tipik ev tipi hansıdır? ", + "en_question": "Which is the typical type of house for a family in your country?", + "annotations": [ + { + "answers": [ + "mənzil evi", + "mənzil (bina evi)", + "bina mənzili", + "bina mənzilləri", + "mənzil", + "3 otaqlı mənzil" + ], + "en_answers": [ + "apartment", + "apartments", + "3-room apartment" + ], + "count": 5 + }, + { + "answers": [ + "həyət evi", + "bağ evi" + ], + "en_answers": [ + "cottage" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-41": { + "question": "Asılı vəziyyətdə olan yaşlılar Azərbaycanda adətən harada yaşayırlar?", + "en_question": "Where do the dependent elderly usually live in your country?", + "annotations": [ + { + "answers": [ + "ailələri ilə", + "ailə evlərində" + ], + "en_answers": [ + "with their family", + "in family houses", + "house", + "home" + ], + "count": 2 + }, + { + "answers": [ + "kirayə evdə" + ], + "en_answers": [ + "rented house", + "rent" + ], + "count": 1 + }, + { + "answers": [ + "övladları ilə" + ], + "en_answers": [ + "with their children" + ], + "count": 1 + }, + { + "answers": [ + "valideynlərlə" + ], + "en_answers": [ + "with their parents" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-42": { + "question": "Azərbaycanda analıq məzuniyyətinin müddəti (həftələrlə) nə qədərdir? (Yalnız ərəb rəqəmləri (məsələn, 20) göstərin.)", + "en_question": "How long (in weeks) is your country's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 2 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-43": { + "question": "Azərbaycanda atalıq məzuniyyətinin müddəti (həftələrlə) nə qədərdir? (Yalnız ərəb rəqəmləri (məsələn, 20) göstərin.)", + "en_question": "How long (in weeks) is your country's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Ca-sp-45": { + "question": "Azərbaycanda ailə tətili üçün adətən hansı növ təyinat seçilir?", + "en_question": "What type of destination is commonly chosen for a family vacation in your country?", + "annotations": [ + { + "answers": [ + "rayonlar", + "rayon" + ], + "en_answers": [ + "outside city", + "outskirts of town", + "district" + ], + "count": 3 + }, + { + "answers": [ + "dənizkənarı bölgələr", + "dənizkənarı istirahət mərkəzləri" + ], + "en_answers": [ + "seaside" + ], + "count": 2 + }, + { + "answers": [ + "dağlıq rayonlar" + ], + "en_answers": [ + "mountainous" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-05": { + "question": "Azərbaycanda yaşlılar ən çox hansı idman növlərini xoşlayırlar?", + "en_question": "What sports do seniors like the most in your country?", + "annotations": [ + { + "answers": [ + "gəzinti", + "gəzməyi", + "gəzmək" + ], + "en_answers": [ + "walking", + "walk" + ], + "count": 2 + }, + { + "answers": [ + "futbol" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Gu-ch-06": { + "question": "Azərbaycanda kişilər ən çox hansı idman növləri ilə məşğul olmağı xoşlayırlar?", + "en_question": "What sports do men like to play the most in your country?", + "annotations": [ + { + "answers": [ + "futbol" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "güləş" + ], + "en_answers": [ + "wrestling" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-07": { + "question": "Azərbaycanda ən məşhur basketbolçu kimdir?", + "en_question": "Who is the most famous basketball player in your country?", + "annotations": [ + { + "answers": [ + "tural hüseynov" + ], + "en_answers": [ + "tural huseynov" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-08": { + "question": "Azərbaycanda uşaqlar arasında ən populyar idman növü hansıdır?", + "en_question": "What is the most popular sports among children in your country?", + "annotations": [ + { + "answers": [ + "futbol" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "volleybol", + "voleybol" + ], + "en_answers": [ + "volleyball" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Gu-ch-09": { + "question": "Azərbaycanda qadınlar ən çox hansı idman növləri ilə məşğul olmağı xoşlayırlar?", + "en_question": "What sports do women like to play the most in your country?", + "annotations": [ + { + "answers": [ + "voleybol" + ], + "en_answers": [ + "volleyball" + ], + "count": 3 + }, + { + "answers": [ + "yoqa" + ], + "en_answers": [ + "yoga" + ], + "count": 1 + }, + { + "answers": [ + "gimnastika", + "qimnastika" + ], + "en_answers": [ + "gymnastics" + ], + "count": 1 + }, + { + "answers": [ + "fitnes", + "fitness" + ], + "en_answers": [ + "fitness" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-11": { + "question": "Azərbaycan Olimpiadada ən çox qızıl medalı hansı idman yarışında qazanıb?", + "en_question": "What sports event has your country won the most gold medals at the Olympics?", + "annotations": [ + { + "answers": [ + "güləş" + ], + "en_answers": [ + "wrestling" + ], + "count": 2 + }, + { + "answers": [ + "cüdo" + ], + "en_answers": [ + "judo" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-15": { + "question": "Azərbaycanda universitetdə tələbə oğlanlar ən çox hansı idman növlərini oynamağı xoşlayırlar?", + "en_question": "What sports do male students in university like to play the most in your country?", + "annotations": [ + { + "answers": [ + "futbol" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "güləş" + ], + "en_answers": [ + "wrestling" + ], + "count": 1 + }, + { + "answers": [ + "bilyard" + ], + "en_answers": [ + "billiards" + ], + "count": 1 + }, + { + "answers": [ + "stolüstü tennis" + ], + "en_answers": [ + "table tennis" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-16": { + "question": "Azərbaycanda bir ailədə orta hesabla neçə nəfər var? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)", + "en_question": "How many people are there in a family on average in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 4 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-18": { + "question": "Azərbaycanda cütlüklərin adətən neçə uşağı olur? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)", + "en_question": "How many children do couples usually have in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-31": { + "question": "Azərbaycanda ibtidai məktəbdə təhsil müddəti neçə ildir? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)", + "en_question": "What is the duration of elementary school in years in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-32": { + "question": "Azərbaycanda məcburi təhsilin müddəti neçə ildir? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)", + "en_question": "What is the duration of compulsory education in years in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 4 + }, + { + "answers": [ + "11" + ], + "en_answers": [ + "11" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-33": { + "question": "Azərbaycanda şagirdlər ikinci dili neçə yaşından öyrənməyə başlayırlar? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)", + "en_question": "From which age do students start learning their second language in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 3 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-38": { + "question": "Azərbaycanda bakalavr təhsilinin müddəti nə qədərdir? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)", + "en_question": "What is the duration of undergraduate education in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-40": { + "question": "Azərbaycanda kiçik yaşlı ibtidai sinif şagirdləri məktəbi nə vaxt bitirirlər? (HH:MM formatında təqdim edin (məsələn, 18:00, 09:00).)", + "en_question": "What time do younger elementary school students finish school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "12:00" + ], + "en_answers": [ + "12:00" + ], + "count": 2 + }, + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Gu-ch-41": { + "question": "Azərbaycanda ibtidai məktəb şagirdləri adətən neçə müxtəlif musiqi aləti çalırlar? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)", + "en_question": "How many musical instruments do elementary school students in your country typically play? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 2 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-02": { + "question": "Azərbaycanda insanlar həftənin hansı günü şirkətlə şam yeməyinə üstünlük verirlər?", + "en_question": "What day of the week do people in your country prefer to have company dinners?", + "annotations": [ + { + "answers": [ + "cümə" + ], + "en_answers": [ + "friday" + ], + "count": 3 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "Ji-ko-03": { + "question": "Azərbaycanda maliyyə şirkətləri ən çox hansı rayonda/şəhərdə var?", + "en_question": "Which region/city has the highest number of financial companies in your country?", + "annotations": [ + { + "answers": [ + "bakı" + ], + "en_answers": [ + "baku" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-07": { + "question": "Azərbaycanda ən məşhur özəl şirkət hansıdır?", + "en_question": "What is the most famous private company in your country?", + "annotations": [ + { + "answers": [ + "paşa holdinq" + ], + "en_answers": [ + "pasha holding" + ], + "count": 2 + }, + { + "answers": [ + "azercell" + ], + "en_answers": [ + "azercell" + ], + "count": 1 + }, + { + "answers": [ + "bakcell" + ], + "en_answers": [ + "bakcell" + ], + "count": 1 + }, + { + "answers": [ + "gilan holdinq", + "gilan" + ], + "en_answers": [ + "gilan holding" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-08": { + "question": "Azərbaycanda həftədə maksimum neçə saat işləmək olar? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)", + "en_question": "What is the maximum number of hours one can work per week in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-09": { + "question": "Azərbaycanda şirkət toplantıları zamanı insanlar adətən nə yeyirlər?", + "en_question": "What do people typically eat during company get-together in your country?", + "annotations": [ + { + "answers": [ + "sendviçlər", + "sendviç" + ], + "en_answers": [ + "sandwich" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-14": { + "question": "Azərbaycanın təmsil etdiyi ixrac məhsulu nədir?", + "en_question": "What is the representative export item of your country?", + "annotations": [ + { + "answers": [ + "neft" + ], + "en_answers": [ + "oil" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-15": { + "question": "Azərbaycanda tipik nahar fasiləsi neçə saatdır? (Yalnız bir ondalıq nöqtəyə qədər Ərəb rəqəmləri verin (məsələn, 2, 3.5).)", + "en_question": "How long (in hours) is the typical lunch break in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 5 + }, + { + "answers": [ + "1.5" + ], + "en_answers": [ + "1.5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-16": { + "question": "Azərbaycanda analar doğuşdan sonra sağalmaq üçün müəyyən müddət harada qalırlar?", + "en_question": "Where do mothers stay for a certain period after childbirth for recovery in your country?", + "annotations": [ + { + "answers": [ + "xəstəxanalarda", + "xəstəxanada" + ], + "en_answers": [ + "hospital" + ], + "count": 2 + }, + { + "answers": [ + "evdə", + "ailə evlərində" + ], + "en_answers": [ + "home", + "house", + "family home" + ], + "count": 2 + }, + { + "answers": [ + "valideynləri ilə" + ], + "en_answers": [ + "with their parents", + "parents'" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-19": { + "question": "Valideynlər Günündə Azərbaycanda ən çox hansı gül verilir?", + "en_question": "What is your country's most commonly given flower on Parents' Day?", + "annotations": [ + { + "answers": [ + "qızılgül", + "qızılgülü", + "qızıl gül" + ], + "en_answers": [ + "rose" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-22": { + "question": "Azərbaycan cəmiyyətində insanlar ilk maaşlarını xüsusilə nəyə xərcləyirlər?", + "en_question": "What do people especially spend their first salary on in your country's society?", + "annotations": [ + { + "answers": [ + "ev əşyaları" + ], + "en_answers": [ + "household appliance" + ], + "count": 1 + }, + { + "answers": [ + "qonaqlıq" + ], + "en_answers": [ + "hosting guest" + ], + "count": 1 + }, + { + "answers": [ + "şirniyyatlar", + "şirniyyata" + ], + "en_answers": [ + "sweets" + ], + "count": 1 + }, + { + "answers": [ + "valideynlərə" + ], + "en_answers": [ + "parents" + ], + "count": 1 + }, + { + "answers": [ + "ödənişlər" + ], + "en_answers": [ + "miscellaneous payments" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-24": { + "question": "Azərbaycanda uşaqlar arasında ən çox üstünlük verilən istirahət mərkəzi hansıdır?", + "en_question": "What is the most preferred recreational facility among children in your country?", + "annotations": [ + { + "answers": [ + "əyləncə mərkəzi", + "əyləncə mərkəzləri", + "əyləncə parkları", + "əyləncə parkı" + ], + "en_answers": [ + "entertainment center", + "entertainment centers" + ], + "count": 3 + }, + { + "answers": [ + "bulvar park" + ], + "en_answers": [ + "boulevard park" + ], + "count": 1 + }, + { + "answers": [ + "aqua park" + ], + "en_answers": [ + "aqua park" + ], + "count": 1 + }, + { + "answers": [ + "nabran" + ], + "en_answers": [ + "nabran" + ], + "count": 1 + }, + { + "answers": [ + "oyun parkı" + ], + "en_answers": [ + "game park" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-25": { + "question": "Azərbaycanda ailə ilə bağlı hansı bayramlar var?", + "en_question": "What are the family-related holidays in your country?", + "annotations": [ + { + "answers": [ + "novruz bayramı" + ], + "en_answers": [ + "novruz", + "nowruz", + "navroz" + ], + "count": 1 + }, + { + "answers": [ + "analar günü" + ], + "en_answers": [ + "mother's day" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "no-answer": 1, + "idk": 0 + } + }, + "Ji-ko-26": { + "question": "Azərbaycan cəmiyyətində uşaqların valideynlərindən müstəqilliyi ilə əlaqədar əsas mərhələlər nələrdir?", + "en_question": "What are the key milestones associated with children's independence from their parents in your country's society?", + "annotations": [ + { + "answers": [ + "evlənmək", + "ev tapmaq və evlənmək" + ], + "en_answers": [ + "getting married", + "marriage" + ], + "count": 3 + }, + { + "answers": [ + "evdən köçmək" + ], + "en_answers": [ + "moving out" + ], + "count": 1 + }, + { + "answers": [ + "iş tapmaq" + ], + "en_answers": [ + "finding a job" + ], + "count": 1 + }, + { + "answers": [ + "ev tapmaq", + "ev tapmaq və evlənmək" + ], + "en_answers": [ + "finding a home", + "finding a house" + ], + "count": 1 + }, + { + "answers": [ + "i̇şləmək" + ], + "en_answers": [ + "working" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-27": { + "question": "Azərbaycanda yaşlı valideynləri ziyarət edərkən adətən nə hədiyyə verilir?", + "en_question": "What is the common gift you give when visiting elderly parents in your country?", + "annotations": [ + { + "answers": [ + "meyvə səbəti", + "meyvə", + "meyvə yada şirniyyat" + ], + "en_answers": [ + "fruit basket", + "fruit" + ], + "count": 2 + }, + { + "answers": [ + "şirniyyat", + "meyvə yada şirniyyat" + ], + "en_answers": [ + "sweets" + ], + "count": 2 + }, + { + "answers": [ + "şokolad" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 0 + } + }, + "Ji-ko-28": { + "question": "Azərbaycanda uşaq doğulduqdan sonra insanların bayram etdiyi ilk gün nə vaxtdır?", + "en_question": "When is the first day that people celebrate after a child is born in your country?", + "annotations": [ + { + "answers": [ + "qırxı çıxarmaq", + "qırx çıxarmaq", + "uşağın qırxını çıxarmaq", + "uşağın 40 günlüyü", + "qırx günlüyü çıxarmaq", + "40 günlük", + "doğumdan 40 gün sonra" + ], + "en_answers": [ + "the fortieth day after birth celebration", + "40th day", + "fortieth day", + "40" + ], + "count": 4 + }, + { + "answers": [ + "doğum günü", + "uşağın doğum günü", + "uşağın ilk ad günü" + ], + "en_answers": [ + "birthday" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-29": { + "question": "Azərbaycan cəmiyyətində hansı yaşın ad günü ən təntəli şəkildqeyd olunur?", + "en_question": "Which age's birthday is celebrated the most grandly in your country's society?", + "annotations": [ + { + "answers": [ + "50", + "50 yaş" + ], + "en_answers": [ + "50" + ], + "count": 3 + }, + { + "answers": [ + "18", + "18 yaş" + ], + "en_answers": [ + "18" + ], + "count": 1 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-31": { + "question": "Azərbaycanda orta və ali məktəb şagirdləri adətən imtahanlara harada hazırlaşırlar?", + "en_question": "Where do middle and high school students in your country usually study for exams?", + "annotations": [ + { + "answers": [ + "evdə" + ], + "en_answers": [ + "home", + "house" + ], + "count": 3 + }, + { + "answers": [ + "kitabxana" + ], + "en_answers": [ + "library" + ], + "count": 1 + }, + { + "answers": [ + "kafe" + ], + "en_answers": [ + "cafe" + ], + "count": 1 + }, + { + "answers": [ + "kurslarda", + "kurslarda yada şəxsi repetitorla" + ], + "en_answers": [ + "in courses" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-33": { + "question": "Azərbaycanda orta məktəb şagirdləri nahardan sonra adətən hara gedirlər?", + "en_question": "Where do high school students in your country usually go after dinner?", + "annotations": [ + { + "answers": [ + "evə", + "evə qayıdırlar" + ], + "en_answers": [ + "home", + "house" + ], + "count": 2 + }, + { + "answers": [ + "kitabxana" + ], + "en_answers": [ + "library" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-34": { + "question": "Azərbaycanda ibtidai məktəb şagirdləri məktəbə necə gedirlər?", + "en_question": "How do elementary school students in your country go to school?", + "annotations": [ + { + "answers": [ + "maşın", + "valideynləri ilə maşınla yada ictimai nəqliyyat ilə", + "valideyn maşını", + "valideynlərinin şəxsi avtomobilləri ilə" + ], + "en_answers": [ + "car" + ], + "count": 4 + }, + { + "answers": [ + "avtobus" + ], + "en_answers": [ + "bus" + ], + "count": 3 + }, + { + "answers": [ + "metro" + ], + "en_answers": [ + "metro" + ], + "count": 2 + }, + { + "answers": [ + "ictimai nəqliyyat", + "valideynləri ilə maşınla yada ictimai nəqliyyat ilə" + ], + "en_answers": [ + "public transport" + ], + "count": 1 + }, + { + "answers": [ + "piyada" + ], + "en_answers": [ + "walk" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-35": { + "question": "Azərbaycanda özəl təhsilin ən çox yayılmış forması hansıdır?", + "en_question": "What is the most common form of private education in your country?", + "annotations": [ + { + "answers": [ + "liseylər" + ], + "en_answers": [ + "lyceums" + ], + "count": 2 + }, + { + "answers": [ + "gimnaziyalar" + ], + "en_answers": [ + "gymnasiums" + ], + "count": 1 + }, + { + "answers": [ + "repetitor dərsləri", + "repetitor dersləri" + ], + "en_answers": [ + "private tutor" + ], + "count": 1 + }, + { + "answers": [ + "özəl universitetlər" + ], + "en_answers": [ + "private universities", + "private university" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-36": { + "question": "Azərbaycanda orta və ya ali məktəb şagirdləri ən çox hansı fənn akademiyasına/və ya xüsusi təhsil müəssisəsinə qatılırlar?", + "en_question": "Which subject’s academy/private educational institute do middle or high students most frequently attend in your country?", + "annotations": [ + { + "answers": [ + "riyaziyyat", + "riyaziyyat üzrə akademiyalar" + ], + "en_answers": [ + "mathematics", + "math" + ], + "count": 3 + }, + { + "answers": [ + "i̇ngilis", + "i̇ngilis dili üzrə akademiyalar" + ], + "en_answers": [ + "english" + ], + "count": 1 + }, + { + "answers": [ + "təbiət elmləri" + ], + "en_answers": [ + "natural sciences" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-37": { + "question": "Azərbaycanda orta və yuxarı sinif şagirdləri məktəbə hansı geyimdə gedirlər?", + "en_question": "What type of clothing do middle and high school students wear to school in your country?", + "annotations": [ + { + "answers": [ + "məktəbli forması", + "məktəbli uniforması", + "məktəb uniformasında", + "məktəbə xüsusi geyimdə" + ], + "en_answers": [ + "school uniform" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-38": { + "question": "Azərbaycanda hansı ixtisasın qəbulu ən çətin hesab olunur?", + "en_question": "Which major is considered the most difficult to gain admission to in your country?", + "annotations": [ + { + "answers": [ + "tibb", + "tibb ixtisası", + "həkimlik", + "mühəndislik yada həkimlik" + ], + "en_answers": [ + "medicine" + ], + "count": 5 + }, + { + "answers": [ + "hüquq" + ], + "en_answers": [ + "law" + ], + "count": 2 + }, + { + "answers": [ + "mühəndislik", + "mühəndislik yada həkimlik" + ], + "en_answers": [ + "engineering" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-39": { + "question": "Azərbaycanda ibtidai sinif şagirdlərinin ən çox öyrəndiyi musiqi aləti hansıdır?", + "en_question": "What is the most commonly learned musical instrument by elementary school students in your country?", + "annotations": [ + { + "answers": [ + "piano", + "pianino" + ], + "en_answers": [ + "piano" + ], + "count": 3 + }, + { + "answers": [ + "gitara" + ], + "en_answers": [ + "guitar" + ], + "count": 2 + }, + { + "answers": [ + "skripka" + ], + "en_answers": [ + "violin" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-40": { + "question": "Azərbaycandakı məktəblərdə orta məktəb şagirdləri adətən fasilə vaxtında nə işlə məşğul olurlar?", + "en_question": "What do high school students typically do during break time in schools in your country?", + "annotations": [ + { + "answers": [ + "söhbət etmək", + "dostları ilə danışırlar", + "söhbət", + "dostları ilə söhbət edirlər" + ], + "en_answers": [ + "chat" + ], + "count": 4 + }, + { + "answers": [ + "dərslərə çalışmaq" + ], + "en_answers": [ + "study" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-41": { + "question": "Azərbaycan məktəblərində şagirdlər nə cür ayaqqabılar geyinirlər?", + "en_question": "What kind of shoes do students wear in schools in your country?", + "annotations": [ + { + "answers": [ + "klassik", + "klassik ayaqqabılar" + ], + "en_answers": [ + "classic shoes" + ], + "count": 3 + }, + { + "answers": [ + "məktəb ayaqqabıları" + ], + "en_answers": [ + "school shoes" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-42": { + "question": "Azərbaycanda ali məktəblərə qəbul imtahanında hansı fənlər tələb olunur?", + "en_question": "What are the required subjects in your country's university entrance exam?", + "annotations": [ + { + "answers": [ + "riyaziyyat" + ], + "en_answers": [ + "mathematics", + "math" + ], + "count": 4 + }, + { + "answers": [ + "azərbaycan dili" + ], + "en_answers": [ + "azerbaijani" + ], + "count": 3 + }, + { + "answers": [ + "fizika", + "fizikaç kimya tələb olunur" + ], + "en_answers": [ + "physics" + ], + "count": 3 + }, + { + "answers": [ + "kimya", + "fizikaç kimya tələb olunur" + ], + "en_answers": [ + "chemistry" + ], + "count": 3 + }, + { + "answers": [ + "coğrafiya" + ], + "en_answers": [ + "geography" + ], + "count": 2 + }, + { + "answers": [ + "i̇ngilis dili" + ], + "en_answers": [ + "english" + ], + "count": 2 + }, + { + "answers": [ + "ana dili" + ], + "en_answers": [ + "mother tongue" + ], + "count": 1 + }, + { + "answers": [ + "i̇kinci dil" + ], + "en_answers": [ + "second language" + ], + "count": 1 + }, + { + "answers": [ + "tarix" + ], + "en_answers": [ + "history" + ], + "count": 1 + }, + { + "answers": [ + "biologiya" + ], + "en_answers": [ + "biology" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 2, + "not-applicable": 0 + } + }, + "Ji-ko-44": { + "question": "Azərbaycanın hansı bölgəsində (şəhər daxilində) akademik həvəs daha yüksəkdir?", + "en_question": "Which region (within a city) in your country has the highest academic fervor?", + "annotations": [ + { + "answers": [ + "sumqayıt" + ], + "en_answers": [ + "sumgayit", + "sumgait" + ], + "count": 2 + }, + { + "answers": [ + "yasamal" + ], + "en_answers": [ + "yasamal" + ], + "count": 1 + }, + { + "answers": [ + "bakı" + ], + "en_answers": [ + "baku" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-45": { + "question": "Azərbaycanda keçirilən universitet festivallarında insanlar ən çox nəyi gözləyirlər?", + "en_question": "What do people look forward to the most at university festivals in your country?", + "annotations": [ + { + "answers": [ + "musiqi ifaları" + ], + "en_answers": [ + "music performance" + ], + "count": 1 + }, + { + "answers": [ + "sosiallaşma" + ], + "en_answers": [ + "socializing", + "socialize" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 1 + } + }, + "Jo-sp-01": { + "question": "Azərbaycanda ikinci ən populyar idman növü hansıdır?", + "en_question": "What is the second most popular sport in your country?", + "annotations": [ + { + "answers": [ + "basketbol" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "şahmat" + ], + "en_answers": [ + "chess" + ], + "count": 1 + }, + { + "answers": [ + "güləş" + ], + "en_answers": [ + "wrestling" + ], + "count": 1 + }, + { + "answers": [ + "voleybol" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-02": { + "question": "Azərbaycanda topsuz oynanılan ən populyar idman növü hansıdır?", + "en_question": "What is the most popular sport played without a ball in your country?", + "annotations": [ + { + "answers": [ + "güləş" + ], + "en_answers": [ + "wrestling" + ], + "count": 3 + }, + { + "answers": [ + "şahmat" + ], + "en_answers": [ + "chess" + ], + "count": 1 + }, + { + "answers": [ + "gimnastika", + "qimnastika" + ], + "en_answers": [ + "gymnastics" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-09": { + "question": "Azərbaycanda hansı idman növləri yuxarı təbəqə ilə daha çox əlaqələndirilir?", + "en_question": "What sports are most associated with the upper class in your country?", + "annotations": [ + { + "answers": [ + "qolf" + ], + "en_answers": [ + "golf" + ], + "count": 3 + }, + { + "answers": [ + "at sürmək", + "atcılıq" + ], + "en_answers": [ + "horse riding", + "equestrianism" + ], + "count": 2 + }, + { + "answers": [ + "tennis" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-13": { + "question": "Azərbaycanda ən populyar su idman növü hansıdır?", + "en_question": "What is the most popular water sport in your country?", + "annotations": [ + { + "answers": [ + "üzgüçülük" + ], + "en_answers": [ + "swimming" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-14": { + "question": "Azərbaycanda ən populyar zehni idman növü hansıdır?", + "en_question": "What is the most popular mental sport in your country?", + "annotations": [ + { + "answers": [ + "şahmat" + ], + "en_answers": [ + "chess" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-18": { + "question": "Azərbaycanda standart bir işçi il ərzində neçə gün tətil alır? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)", + "en_question": "How many holiday days per year does a standard worker gets in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 3 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-19": { + "question": "Azərbaycanda hansı bölgə ənənəvi olaraq kənd təsərrüfatı ilə əlaqələndirilir?", + "en_question": "What region in your country has been traditionally associated with agriculture?", + "annotations": [ + { + "answers": [ + "i̇mişli" + ], + "en_answers": [ + "imishli" + ], + "count": 1 + }, + { + "answers": [ + "gədəbəy" + ], + "en_answers": [ + "gadabay" + ], + "count": 1 + }, + { + "answers": [ + "ağdam" + ], + "en_answers": [ + "aghdam" + ], + "count": 1 + }, + { + "answers": [ + "göyçay" + ], + "en_answers": [ + "goychay" + ], + "count": 1 + }, + { + "answers": [ + "quba" + ], + "en_answers": [ + "guba", + "quba" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Jo-sp-21": { + "question": "Əgər varsa, Azərbaycanda insanlar adətən nə vaxt, işdən nahar üçün çıxırlar? (HH:MM formatında təqdim edin (məsələn, 18:00, 09:00).)", + "en_question": "What time, if any, do people usually leave work for lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "12:00" + ], + "en_answers": [ + "12:00" + ], + "count": 3 + }, + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-31": { + "question": "Azərbaycanda orta məktəb şagirdləri adətən məktəbi nə vaxt tərk edirlər? (HH:MM formatında təqdim edin (məsələn, 18:00, 09:00).)", + "en_question": "What time do high school students tend to leave school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "15:00" + ], + "en_answers": [ + "15:00" + ], + "count": 2 + }, + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 1 + }, + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 1 + }, + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-32": { + "question": "Azərbaycanda ibtidai məktəb şagirdləri məktəbdə əsasən hansı idman növü ilə məşğul olurlar?", + "en_question": "What sport do elementary school students tend to practice at school in your country?", + "annotations": [ + { + "answers": [ + "futbol" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "volleybol", + "voleybol" + ], + "en_answers": [ + "volleyball" + ], + "count": 2 + }, + { + "answers": [ + "atletika" + ], + "en_answers": [ + "athletics" + ], + "count": 1 + }, + { + "answers": [ + "cüdo" + ], + "en_answers": [ + "judo" + ], + "count": 1 + }, + { + "answers": [ + "şahmat" + ], + "en_answers": [ + "chess" + ], + "count": 1 + }, + { + "answers": [ + "basketbol" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-36": { + "question": "Azərbaycanda ibtidai məktəblərdə yay tətili neçə həftədir? (Yalnız Ərəb rəqəmləri ilə (məsələn, 7, 8) verin.)", + "en_question": "How long (in weeks) are summer vacations at elementary schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 3 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "14" + ], + "en_answers": [ + "14" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-37": { + "question": "Azərbaycandakı universitetlərdə yay tətili neçə həftədir? (Yalnız Ərəb rəqəmləri ilə (məsələn, 7, 8) verin.)", + "en_question": "How long (in weeks) are summer vacations at universities in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 2 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 2 + }, + { + "answers": [ + "14" + ], + "en_answers": [ + "14" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-39": { + "question": "Azərbaycanda ibtidai təhsil neçə yaşında başlayır? (Yalnız Ərəb rəqəmləri ilə (məsələn, 7, 8) verin.)", + "en_question": "At what age does elementary education begin in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-43": { + "question": "Azərbaycanın rəsmi dilindən başqa, ibtidai təhsildə neçə dil öyrənilir? (Yalnız Ərəb rəqəmləri ilə (məsələn, 7, 8) verin.)", + "en_question": "How many languages are studied in elementary education besides your country's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-01": { + "question": "Azərbaycanda insanlar adətən hansı yemək alətlərindən istifadə edirlər?", + "en_question": "What eating utensils do people commonly used in your country?", + "annotations": [ + { + "answers": [ + "qaşıq", + "qaşıq və çəngəl" + ], + "en_answers": [ + "spoon" + ], + "count": 5 + }, + { + "answers": [ + "çəngəl", + "qaşıq və çəngəl" + ], + "en_answers": [ + "fork" + ], + "count": 5 + }, + { + "answers": [ + "bıçaq" + ], + "en_answers": [ + "knife" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-04": { + "question": "Azərbaycanda insanlar hansı qazlı içkiləri xoşlayırlar?", + "en_question": "What soft drink do people in your country like to have?", + "annotations": [ + { + "answers": [ + "kola", + "koka-kola", + "coca-cola" + ], + "en_answers": [ + "cola", + "coke" + ], + "count": 4 + }, + { + "answers": [ + "fanta" + ], + "en_answers": [ + "fanta" + ], + "count": 3 + }, + { + "answers": [ + "sprayt", + "sprite" + ], + "en_answers": [ + "sprite" + ], + "count": 1 + }, + { + "answers": [ + "duşes" + ], + "en_answers": [ + "duchess", + "dushes", + "type of georgian soda" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-06": { + "question": "Azərbaycanda ən məşhur ənənəvi spirtli içki hansıdır?", + "en_question": "What is the most popular traditional alcohol in your country?", + "annotations": [ + { + "answers": [ + "araq" + ], + "en_answers": [ + "arak", + "araq", + "distilled spirit" + ], + "count": 2 + }, + { + "answers": [ + "vodka" + ], + "en_answers": [ + "vodka" + ], + "count": 2 + }, + { + "answers": [ + "pivə" + ], + "en_answers": [ + "beer" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-07": { + "question": "Azərbaycanda insanların restoranda nahar etmələri orta hesabla neçə saat çəkir? (Yalnız bir ondalıq nöqtəyə qədər Ərəb rəqəmləri (məsələn, 2, 3.5) göstərin.)", + "en_question": "How long (in hours) on average does it take for people in your country to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + }, + { + "answers": [ + "0.5" + ], + "en_answers": [ + "0.5" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-09": { + "question": "Azərbaycanda insanlar adətən nə vaxt nahar edirlər? (HH:MM formatında təqdim edin (məsələn, 18:00, 09:00).)", + "en_question": "What time do people usually have dinner in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 3 + }, + { + "answers": [ + "12:30" + ], + "en_answers": [ + "12:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-12": { + "question": "Azərbaycan insanları hansı növ şorba içməyi xoşlayırlar?", + "en_question": "What kind of soup do people from your country like to have?", + "annotations": [ + { + "answers": [ + "mərcimək", + "mərci" + ], + "en_answers": [ + "lentil" + ], + "count": 2 + }, + { + "answers": [ + "toyuq şorbası", + "toyuq" + ], + "en_answers": [ + "chicken" + ], + "count": 2 + }, + { + "answers": [ + "düşbərə" + ], + "en_answers": [ + "dushbara", + "dushbere", + "dushpara", + "dumpling soup" + ], + "count": 1 + }, + { + "answers": [ + "tərəvəzli şorbalar" + ], + "en_answers": [ + "vegetable" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-13": { + "question": "Azərbaycanlılar küçə yeməklərindən nə yeməyi xoşlayırlar?", + "en_question": "What street food do people from your country like to eat?", + "annotations": [ + { + "answers": [ + "dönər" + ], + "en_answers": [ + "doner kebab", + "döner kebab" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-15": { + "question": "Azərbaycanlılar hansı növ dəniz məhsullarını yeməyi xoşlayırlar?", + "en_question": "What kind of seafood do people from your country like to eat?", + "annotations": [ + { + "answers": [ + "balıq", + "balıq qızartması" + ], + "en_answers": [ + "fish", + "fried fish" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-16": { + "question": "Azərbaycanda ən böyük festival hansıdır?", + "en_question": "What is the biggest festival in your country?", + "annotations": [ + { + "answers": [ + "novruz", + "novruz bayramı" + ], + "en_answers": [ + "novruz", + "nowruz", + "navroz" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-28": { + "question": "Azərbaycanda şəhərlərarası səyahət zamanı insanlar tərəfindən ən çox istifadə olunan ictimai nəqliyyat vasitəsi hansıdır?", + "en_question": "What is the most commonly used public transport by people when travelling between cites in your country?", + "annotations": [ + { + "answers": [ + "şəxsi maşın", + "maşın" + ], + "en_answers": [ + "car", + "personal car", + "private car" + ], + "count": 3 + }, + { + "answers": [ + "qatar" + ], + "en_answers": [ + "train" + ], + "count": 2 + }, + { + "answers": [ + "avtobus" + ], + "en_answers": [ + "bus" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-30": { + "question": "Azərbaycanın ən böyük festivalı ilə bağlı hansı xüsusi dekorasiyalar və ya simvollar var?", + "en_question": "What are the specific decorations or symbols associated with the most biggest festival in your country?", + "annotations": [ + { + "answers": [ + "səməni" + ], + "en_answers": [ + "samani", + "a wheatgrass decoration for novruz" + ], + "count": 2 + }, + { + "answers": [ + "alov", + "tonqal" + ], + "en_answers": [ + "fire", + "bonfire" + ], + "count": 2 + }, + { + "answers": [ + "yumurta boyama" + ], + "en_answers": [ + "egg painting" + ], + "count": 1 + }, + { + "answers": [ + "buta" + ], + "en_answers": [ + "buta", + "boteh", + "a paisley-like design element" + ], + "count": 1 + }, + { + "answers": [ + "xonça" + ], + "en_answers": [ + "khoncha", + "a tray with sweets and treats for novruz" + ], + "count": 1 + }, + { + "answers": [ + "qoça", + "kosa" + ], + "en_answers": [ + "kosa", + "qochaqan" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-37": { + "question": "Azərbaycanda qadınlar ən çox hansı idman növlərini izləməyi xoşlayırlar?", + "en_question": "What sports do women like to watch the most in your country?", + "annotations": [ + { + "answers": [ + "voleybol", + "volleybol" + ], + "en_answers": [ + "volleyball" + ], + "count": 5 + }, + { + "answers": [ + "gimnastika" + ], + "en_answers": [ + "gymnastics" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-38": { + "question": "Azərbaycanda kişilər ən çox hansı idman növlərini izləməyi xoşlayırlar?", + "en_question": "What sports do men like to watch the most in your country?", + "annotations": [ + { + "answers": [ + "futbol" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-41": { + "question": "Azərbaycanda 20 yaşlarında olan qadınların ümumi asudə vaxtları hansı fəaliyyətlə məşğul olur?", + "en_question": "What is the common leisure activity that females in their 20s in your country engage in?", + "annotations": [ + { + "answers": [ + "gəzinti" + ], + "en_answers": [ + "walking", + "walk" + ], + "count": 1 + }, + { + "answers": [ + "kitab oxumaq" + ], + "en_answers": [ + "read" + ], + "count": 1 + }, + { + "answers": [ + "rəfiqələri ilə görüşmək" + ], + "en_answers": [ + "meet friends" + ], + "count": 1 + }, + { + "answers": [ + "alış-veriş etmək" + ], + "en_answers": [ + "shop" + ], + "count": 1 + }, + { + "answers": [ + "serial / film izləyirlər" + ], + "en_answers": [ + "watch movies", + "watch series" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-42": { + "question": "Azərbaycanda 20 yaşlarında olan kişilərin ümumi asudə vaxtları hansı fəaliyyətlə məşğul olur?", + "en_question": "What is the common leisure activity that males in their 20s in your country engage in?", + "annotations": [ + { + "answers": [ + "i̇dmanla məşğul olurlar" + ], + "en_answers": [ + "sports" + ], + "count": 2 + }, + { + "answers": [ + "dənizkənarı parkına getmək" + ], + "en_answers": [ + "go to seaside parks" + ], + "count": 1 + }, + { + "answers": [ + "domino oynamaq" + ], + "en_answers": [ + "play dominoes" + ], + "count": 1 + }, + { + "answers": [ + "çayxanada söhbət" + ], + "en_answers": [ + "chat in tea houses" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-46": { + "question": "Azərbaycanda bir iş günü nahardan sonra insanlar adətən nə qədər (saatlarla) fasilə götürürlər? (Yalnız bir onluq nöqtəyə qədər ərəb rəqəmlərini təqdim edin (məsələn, 2, 3.5).)", + "en_question": "How long (in hours) do people usually take a break after lunch on a weekday in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 2 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + }, + { + "answers": [ + "0.5" + ], + "en_answers": [ + "0.5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-48": { + "question": "Azərbaycanda iş günlərində insanlar naharda nə yeyirlər?", + "en_question": "What do people eat for lunch during the working days in your country?", + "annotations": [ + { + "answers": [ + "şorba" + ], + "en_answers": [ + "soup" + ], + "count": 2 + }, + { + "answers": [ + "dolma" + ], + "en_answers": [ + "dolma", + "stuffed grape leaves" + ], + "count": 1 + }, + { + "answers": [ + "plov" + ], + "en_answers": [ + "pilaf", + "azerbaijani rice", + "pilav", + "pilau" + ], + "count": 1 + }, + { + "answers": [ + "sendviç" + ], + "en_answers": [ + "sandwich" + ], + "count": 1 + }, + { + "answers": [ + "dönər" + ], + "en_answers": [ + "doner kebab", + "döner kebab" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-50": { + "question": "Azərbaycanda insanların orta gediş vaxtı (dəqiqələrlə) nə qədərdir? (Yalnız ərəb rəqəmləri (məsələn, 1) göstərin.)", + "en_question": "What is the average commute time (in minutes) for people in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 2 + }, + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 1 + }, + { + "answers": [ + "50" + ], + "en_answers": [ + "50" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-51": { + "question": "Azərbaycanda insanların işə getməsi üçün ən çox istifadə etdikləri nəqliyyat vasitəsi hansıdır?", + "en_question": "What is the most common transportation that people take to get to work in your country?", + "annotations": [ + { + "answers": [ + "metro" + ], + "en_answers": [ + "metro" + ], + "count": 4 + }, + { + "answers": [ + "avtobus" + ], + "en_answers": [ + "bus" + ], + "count": 4 + }, + { + "answers": [ + "avtomobil", + "maşın" + ], + "en_answers": [ + "automobile", + "car" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-54": { + "question": "Azərbaycanda nikah məzuniyyəti neçə gün davam edir? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)", + "en_question": "How long (in days) is the marriage leave in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "14" + ], + "en_answers": [ + "14" + ], + "count": 1 + }, + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-56": { + "question": "Azərbaycanda qadınlar üçün tipik təqaüd yaşı neçədir? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)", + "en_question": "What is the typical retirement age for women in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "63" + ], + "en_answers": [ + "63" + ], + "count": 3 + }, + { + "answers": [ + "65" + ], + "en_answers": [ + "65" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-57": { + "question": "Azərbaycanda kişilər üçün tipik təqaüd yaşı neçədir? (Yalnız ərəb rəqəmləri (məsələn, 12) verin.)", + "en_question": "What is the typical retirement age for men in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "65" + ], + "en_answers": [ + "65" + ], + "count": 3 + }, + { + "answers": [ + "63" + ], + "en_answers": [ + "63" + ], + "count": 1 + }, + { + "answers": [ + "68" + ], + "en_answers": [ + "68" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-58": { + "question": "Azərbaycanda hansı peşə ən çox hörmət edilir?", + "en_question": "Which profession is the most respected in your country?", + "annotations": [ + { + "answers": [ + "həkim" + ], + "en_answers": [ + "doctor" + ], + "count": 4 + }, + { + "answers": [ + "müəllim", + "müəllimlik" + ], + "en_answers": [ + "teacher" + ], + "count": 2 + }, + { + "answers": [ + "hüquqşünas" + ], + "en_answers": [ + "lawyer" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-60": { + "question": "Azərbaycanda tipik iş gününün müddəti (saatla) nə qədərdir? (Yalnız ərəb rəqəmləri (0~24) verin.)", + "en_question": "What is the duration (in hours) of a typical workday in your country? (Provide Arabic numerals (0~24) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 4 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-61": { + "question": "Azərbaycanda qadınlar arasında ən çox üstünlük verilən peşə hansıdır?", + "en_question": "Which occupation is most preferred among females in your country?", + "annotations": [ + { + "answers": [ + "müəllimlik", + "müəllim" + ], + "en_answers": [ + "teaching", + "teacher" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-62": { + "question": "Azərbaycanda kişilər arasında ən çox üstünlük verilən peşə hansıdır?", + "en_question": "Which occupation is most preferred among males in your country?", + "annotations": [ + { + "answers": [ + "mühəndislik", + "mühəndis" + ], + "en_answers": [ + "engineering", + "engineer" + ], + "count": 4 + }, + { + "answers": [ + "həkim" + ], + "en_answers": [ + "medicine", + "doctor" + ], + "count": 1 + }, + { + "answers": [ + "biznes" + ], + "en_answers": [ + "business" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-17": { + "question": "Ortalama olaraq, Azərbaycanda tələbələr təhsillərini adətən nə qədər davam etdirirlər? (məsələn, ibtidai, orta məktəb)", + "en_question": "On average, how far do students typically pursue their education in your country? (e.g., elementary, high school)", + "annotations": [ + { + "answers": [ + "bakalavr səviyyəsinə qədər", + "ali məktəb" + ], + "en_answers": [ + "up to bachelor's level", + "bachelor's", + "university" + ], + "count": 4 + }, + { + "answers": [ + "11 il", + "11" + ], + "en_answers": [ + "11th grade" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-24": { + "question": "Azərbaycanda məktəblərdə ingilis dilindən başqa hansı dillər tədris edilir?", + "en_question": "What language is taught in schools in your country besides English?", + "annotations": [ + { + "answers": [ + "rus dili", + "rus" + ], + "en_answers": [ + "russian" + ], + "count": 5 + }, + { + "answers": [ + "alman dili", + "alman" + ], + "en_answers": [ + "german" + ], + "count": 2 + }, + { + "answers": [ + "fransız dili", + "fransız" + ], + "en_answers": [ + "french" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-30": { + "question": "Azərbaycanda məktəblər həftənin hansı günlərində bağlıdır?", + "en_question": "What days of the week are schools closed in your country?", + "annotations": [ + { + "answers": [ + "bazar", + "şənbə və bazar", + "həftəsonu", + "şənbəç bazar", + "bazar günləri" + ], + "en_answers": [ + "sunday" + ], + "count": 5 + }, + { + "answers": [ + "şənbə", + "şənbə və bazar", + "həftəsonu", + "şənbəç bazar" + ], + "en_answers": [ + "saturday" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-32": { + "question": "Azərbaycanda ev sahibləri qonaqlar üçün adətən hansı yeməkləri hazırlayırlar?", + "en_question": "What food do the hosts usually prepare for the guests in your country?", + "annotations": [ + { + "answers": [ + "dolma" + ], + "en_answers": [ + "dolma", + "stuffed grape leaves" + ], + "count": 4 + }, + { + "answers": [ + "plov", + "aş" + ], + "en_answers": [ + "pilaf", + "azerbaijani rice", + "pilav", + "pilau" + ], + "count": 4 + }, + { + "answers": [ + "qızardırılmış ət", + "yada qızardırılmış ət" + ], + "en_answers": [ + "grilled meat", + "fried meat" + ], + "count": 1 + }, + { + "answers": [ + "kabab" + ], + "en_answers": [ + "kebab" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-34": { + "question": "Azərbaycanda səhər yeməyində adətən nə içilir?", + "en_question": "What is the usual drink in the breakfast in your country?", + "annotations": [ + { + "answers": [ + "çay", + "şirin çay" + ], + "en_answers": [ + "tea" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-36": { + "question": "Azərbaycandan olan yeməklərdən başqa, hansı ölkənin yeməyi Azərbaycanda daha populyardır?", + "en_question": "Except the food original from your country, which country's food is more popular in your country?", + "annotations": [ + { + "answers": [ + "türkiyə", + "türkiyə yeməkləri" + ], + "en_answers": [ + "turkish" + ], + "count": 3 + }, + { + "answers": [ + "i̇taliya", + "pizza" + ], + "en_answers": [ + "italian" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-39": { + "question": "Azərbaycanda ailə pikniki üçün adətən hansı yeməklər hazırlanır?", + "en_question": "What food is usually prepared for a family picnic in your country?", + "annotations": [ + { + "answers": [ + "kabab" + ], + "en_answers": [ + "kebab" + ], + "count": 1 + }, + { + "answers": [ + "qutab" + ], + "en_answers": [ + "qutab", + "gutap", + "kutab", + "stuffed flatbread" + ], + "count": 1 + }, + { + "answers": [ + "börək" + ], + "en_answers": [ + "börek", + "borek", + "filled pastry" + ], + "count": 1 + }, + { + "answers": [ + "pendir-çörək" + ], + "en_answers": [ + "cheese-bread", + "pendir chorek", + "pendir chorak", + "pendir & chorek" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-40": { + "question": "Azərbaycanın hansı yeməyi bütün dünya tərəfindən iyrənc hesab olunur?", + "en_question": "Which food from your country is considered disgusting by the rest of the world?", + "annotations": [ + { + "answers": [ + "xaş" + ], + "en_answers": [ + "khash", + "khashi" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ki-pe-43": { + "question": "Azərbaycanda məşhur çörəyin adı nədir?", + "en_question": "What is the name of the popular bread in your country?", + "annotations": [ + { + "answers": [ + "təndir çörəyi", + "təndir" + ], + "en_answers": [ + "tandoor bread" + ], + "count": 4 + }, + { + "answers": [ + "yuxa" + ], + "en_answers": [ + "lavash" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-51": { + "question": "Azərbaycanda dövlət qurumlarının iş vaxtı nə vaxt bitir? (HH:MM formatında təqdim edin (məsələn, 18:00, 09:00).)", + "en_question": "What time of day are government offices closed in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-53": { + "question": "Azərbaycanda dövlət qurumlarının normal iş başlama vaxtı nə zamandır? (HH:MM formatında təqdim edin (məsələn, 18:00, 09:00).)", + "en_question": "What is the normal start time of government offices in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 4 + }, + { + "answers": [ + "10:00" + ], + "en_answers": [ + "10:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-01": { + "question": "Azərbaycanda ən uzun müddətli milli bayram hansıdır?", + "en_question": "What national holiday has the longest duration in your country?", + "annotations": [ + { + "answers": [ + "novruz bayramı", + "novruz" + ], + "en_answers": [ + "novruz", + "nowruz", + "navroz" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-02": { + "question": "Azərbaycan insanlarının İstiqlal Gününü qeyd etmək üçün etdikləri ümumi fəaliyyətlər nələrdir?", + "en_question": "What are the common activities people from your country do to celebrate Independence day?", + "annotations": [ + { + "answers": [ + "bayraqların asılması" + ], + "en_answers": [ + "hanging flags", + "flag" + ], + "count": 1 + }, + { + "answers": [ + "parad" + ], + "en_answers": [ + "parade" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "Kik-in-04": { + "question": "Azərbaycanda ailə üzvü öləndə evin qarşısında nə quraşdırılır?", + "en_question": "What is installed in front of the house when a family member dies in your country?", + "annotations": [ + { + "answers": [ + "qara bayraq" + ], + "en_answers": [ + "black flag" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "no-answer": 2, + "idk": 0 + } + }, + "Kik-in-05": { + "question": "Azərbaycanda hamiləlik bayramı və ya mərasimi adətən nə vaxt keçirilir?", + "en_question": "When is a pregnancy celebration or ceremony usually held in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Kik-in-06": { + "question": "Azərbaycanda adətən toydan əvvəl hansı tədbir keçirilir?", + "en_question": "What event is usually held before a wedding in your country?", + "annotations": [ + { + "answers": [ + "xınayaxtı" + ], + "en_answers": [ + "henna night", + "henna ceremony", + "henna" + ], + "count": 2 + }, + { + "answers": [ + "qız toyu" + ], + "en_answers": [ + "bridal shower" + ], + "count": 1 + }, + { + "answers": [ + "nişan" + ], + "en_answers": [ + "engagement ceremony" + ], + "count": 1 + }, + { + "answers": [ + "ciyər axşamı" + ], + "en_answers": [ + "tuesday evening" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-07": { + "question": "Azərbaycanda (Ay) Yeni İlində uşaqlara adətən nə paylanılır?", + "en_question": "What is usually shared to the children during (Lunar) New Year in your country?", + "annotations": [ + { + "answers": [ + "oyuncaq", + "oyuncaq hədiyyələr", + "oyuncaqlar" + ], + "en_answers": [ + "toy" + ], + "count": 2 + }, + { + "answers": [ + "şirniyyat" + ], + "en_answers": [ + "sweets" + ], + "count": 1 + }, + { + "answers": [ + "pul" + ], + "en_answers": [ + "money" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Kik-in-08": { + "question": "Azərbaycanda Ramazandan bir neçə gün əvvəl adətən hansı tədbirlər görülür?", + "en_question": "What activities are usually done days before Ramadan in your country?", + "annotations": [ + { + "answers": [ + "ramazan çadırları", + "ramazan çadırı" + ], + "en_answers": [ + "ramadan tent" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 3, + "idk": 1, + "not-applicable": 0 + } + }, + "Kik-in-10": { + "question": "Azərbaycanda xarici qonaqlar üçün ən populyar turistik məkan haradır?", + "en_question": "What is the most popular tourist attraction for foreign visitors in your country?", + "annotations": [ + { + "answers": [ + "i̇çərişəhər" + ], + "en_answers": [ + "old city", + "inner city" + ], + "count": 4 + }, + { + "answers": [ + "dənizkənarı park", + "dənizkənarı milli park" + ], + "en_answers": [ + "seaside national park", + "seaside park", + "baku seaside boulevard", + "baku boulevard", + "dənizkənarı milli park", + "national park" + ], + "count": 2 + }, + { + "answers": [ + "şirvanşahlar sarayı" + ], + "en_answers": [ + "shirvanshah's palace", + "palace of the shirvanshahs" + ], + "count": 1 + }, + { + "answers": [ + "atəşgah" + ], + "en_answers": [ + "ateshgah of baku", + "ateshgah" + ], + "count": 1 + }, + { + "answers": [ + "tarqovu" + ], + "en_answers": [ + "targovu", + "tarqovu" + ], + "count": 1 + }, + { + "answers": [ + "nizami küçəsi" + ], + "en_answers": [ + "nizami street" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-11": { + "question": "Azərbaycanda turizm üçün ən populyar dini yerlər (məbəd, kilsə və s.) hansıdır?", + "en_question": "What is the most popular religious sites (temple, church, etc.) for tourism in your country?", + "annotations": [ + { + "answers": [ + "təzəpir məscidi" + ], + "en_answers": [ + "taza pir mosque", + "təzə pir mosque" + ], + "count": 2 + }, + { + "answers": [ + "bibiheybət məscidi" + ], + "en_answers": [ + "bibiheybat mosque", + "bibi-heybat mosque", + "bibiheybat" + ], + "count": 1 + }, + { + "answers": [ + "atəşgah" + ], + "en_answers": [ + "ateshgah of baku", + "ateshgah" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-15": { + "question": "Azərbaycanda məzuniyyət mərasimində qadınlar adətən hansı paltarları geyinirlər?", + "en_question": "What clothes do women usually wear on graduation commencement ceremony in your country?", + "annotations": [ + { + "answers": [ + "milli geyimlər", + "don", + "milli geyimləri" + ], + "en_answers": [ + "national dress", + "national costume", + "traditional clothing" + ], + "count": 3 + } + ], + "idks": { + "not-applicable": 1, + "no-answer": 1, + "idk": 0 + } + }, + "Kik-in-16": { + "question": "Hava soyuq olduqda Azərbaycanda ən çox hansı içki içilir?", + "en_question": "What drink is commonly consumed in your country when the weather is cold?", + "annotations": [ + { + "answers": [ + "çay" + ], + "en_answers": [ + "tea" + ], + "count": 5 + }, + { + "answers": [ + "kofe" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-17": { + "question": "Azərbaycanda Ramazan ayında hansı meyvə daha çox satılır və tapılır?", + "en_question": "What fruit is more commonly sold and found during Ramadan in your country?", + "annotations": [ + { + "answers": [ + "xurma" + ], + "en_answers": [ + "dates" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-24": { + "question": "Azərbaycanda fast-food restoranlarında toyuqla adətən hansı karbohidrat xidmət edilir?", + "en_question": "What carbohydrate is usually served with chicken in a fast-food restaurant in your country?", + "annotations": [ + { + "answers": [ + "kartof fri", + "kartof qızartması", + "qızardırılmış kartof" + ], + "en_answers": [ + "french fries", + "chips" + ], + "count": 3 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Kik-in-31": { + "question": "Azərbaycanda ən məşhur döyüş növü hansıdır?", + "en_question": "What is the most famous martial art sports in your country?", + "annotations": [ + { + "answers": [ + "güləş" + ], + "en_answers": [ + "wrestling" + ], + "count": 4 + }, + { + "answers": [ + "cüdo" + ], + "en_answers": [ + "judo" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-34": { + "question": "Azərbaycanda milli televiziyada tez-tez hansı idman növləri yayımlanır?", + "en_question": "What sports are often broadcasted on national television in your country?", + "annotations": [ + { + "answers": [ + "futbol" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "basketbol" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "voleybol" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "güləş" + ], + "en_answers": [ + "wrestling" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-35": { + "question": "COVID-19 pandemiyası zamanı Azərbaycanlılar arasında hansı idman növləri populyar idi?", + "en_question": "What sports were popular among people from your country during the COVID-19 pandemic?", + "annotations": [ + { + "answers": [ + "futbol" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "qaçış" + ], + "en_answers": [ + "running" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Kik-in-36": { + "question": "Azərbaycanda ən məşhur futbol məşqçisi kimdir?", + "en_question": "Who is the most popular soccer coach in your country?", + "annotations": [ + { + "answers": [ + "qurban qurbanov" + ], + "en_answers": [ + "gurban gurbanov" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-37": { + "question": "Azərbaycanda hansı futbol komandaları gərgin rəqabəti ilə məşhurdur? (məsələn, ___ vs ___)", + "en_question": "What soccer teams in your country are famous for their intense rivalry? (e.g. ___ vs ___)", + "annotations": [ + { + "answers": [ + "qarabağ vs neftçi", + "neftçi vs qarabağ", + "qarabağ fk vs neftçi pfk", + "qarabağ fk vs neftçi", + "neftçi pfk vs qarabağ fk" + ], + "en_answers": [ + "qarabag vs neftchi", + "qarabag fk vs neftchi", + "qarabag vs neftci", + "qarabag fk vs neftci", + "neftchi vs qarabag", + "neftci vs qarabag" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-38": { + "question": "Azərbaycanda gərgin rəqabəti ilə məşhur olan futbol tərəfdarlarının adları nədir? (məsələn, ___ vs ___)", + "en_question": "What are the names of soccer supporters in your country who are famous for their intense rivalry? (e.g. ___ vs ___)", + "annotations": [], + "idks": { + "idk": 3, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Kik-in-40": { + "question": "Azərbaycanda ən məşhur kişi badmintonçu kimdir?", + "en_question": "Who is the most famous male badminton player in your country?", + "annotations": [ + { + "answers": [ + "orxan qurbanov" + ], + "en_answers": [ + "orkhan qurbanov", + "orkhan gurbanov" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 1, + "no-answer": 0 + } + }, + "Kik-in-41": { + "question": "Azərbaycanda ən məşhur qadın badmintonçu kimdir?", + "en_question": "Who is the most famous female badminton player in your country?", + "annotations": [ + { + "answers": [ + "rəna hüseynova" + ], + "en_answers": [ + "rena huseynova" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 1, + "no-answer": 0 + } + }, + "Kik-in-44": { + "question": "Azərbaycanda hökumətdən ən çox hansı idman növünə dəstək verilir?", + "en_question": "What sport gets the most support from the government in your country?", + "annotations": [ + { + "answers": [ + "futbol" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "güləş" + ], + "en_answers": [ + "wrestling" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-45": { + "question": "Azərbaycanda məktəblərdə adətən hansı idman meydançaları var?", + "en_question": "What sports field facilities are usually available at schools in your country?", + "annotations": [ + { + "answers": [ + "futbol meydançası", + "futbol" + ], + "en_answers": [ + "football field", + "soccer field" + ], + "count": 4 + }, + { + "answers": [ + "basketbol meydançası", + "basketbol" + ], + "en_answers": [ + "basketball court" + ], + "count": 2 + }, + { + "answers": [ + "voleybol meydançası", + "volleybol", + "voleybol" + ], + "en_answers": [ + "volleyball court" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-02": { + "question": "Azərbaycanlılar ən çox hansı kafe içkisindən zövq alırlar?", + "en_question": "What cafe beverage do people from your country most commonly enjoy?", + "annotations": [ + { + "answers": [ + "çay" + ], + "en_answers": [ + "tea" + ], + "count": 3 + }, + { + "answers": [ + "kofe" + ], + "en_answers": [ + "coffee" + ], + "count": 2 + }, + { + "answers": [ + "latte" + ], + "en_answers": [ + "latte" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-04": { + "question": "Azərbaycanda insanlar sərxoşluqdan qurtulmaq üçün hansı yeməyi üstün tuturlar?", + "en_question": "What is the preferred hangover cure food for people from your country?", + "annotations": [ + { + "answers": [ + "turşu suyu" + ], + "en_answers": [ + "pickle juice" + ], + "count": 1 + }, + { + "answers": [ + "yağlı yemək", + "yağlı" + ], + "en_answers": [ + "greasy food" + ], + "count": 1 + }, + { + "answers": [ + "xaş" + ], + "en_answers": [ + "khash", + "khashi" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-05": { + "question": "Azərbaycanda tipik çatdırılma yeməyi nədir?", + "en_question": "What is the typical delivery food in your country?", + "annotations": [ + { + "answers": [ + "dönər" + ], + "en_answers": [ + "doner kebab", + "döner kebab" + ], + "count": 3 + }, + { + "answers": [ + "pizza", + "pitza" + ], + "en_answers": [ + "pizza" + ], + "count": 3 + }, + { + "answers": [ + "burger" + ], + "en_answers": [ + "burger" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-07": { + "question": "Azərbaycan insanları ən çox hansı növ əti istehlak edir?", + "en_question": "What type of meat is consumed most by people from your country?", + "annotations": [ + { + "answers": [ + "mal əti", + "mal" + ], + "en_answers": [ + "beef" + ], + "count": 4 + }, + { + "answers": [ + "quzu əti" + ], + "en_answers": [ + "lamb" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-08": { + "question": "Azərbaycanlılar payız mövsümündə hansı meyvələri tez-tez yeyirlər?", + "en_question": "What fruit do people from your country often eat in the autumn season?", + "annotations": [ + { + "answers": [ + "alma" + ], + "en_answers": [ + "apple" + ], + "count": 4 + }, + { + "answers": [ + "mandarin" + ], + "en_answers": [ + "mandarin" + ], + "count": 2 + }, + { + "answers": [ + "nar" + ], + "en_answers": [ + "pomegranate" + ], + "count": 2 + }, + { + "answers": [ + "üzüm" + ], + "en_answers": [ + "grape" + ], + "count": 1 + }, + { + "answers": [ + "xurma" + ], + "en_answers": [ + "dates" + ], + "count": 1 + }, + { + "answers": [ + "portağal" + ], + "en_answers": [ + "orange" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-09": { + "question": "Azərbaycanda yemək masasında ən çox hansı qarnir xidmət edilir?", + "en_question": "What side dish is the most commonly served on a dining table in your country?", + "annotations": [ + { + "answers": [ + "plov" + ], + "en_answers": [ + "pilaf", + "azerbaijani rice", + "pilav", + "pilau" + ], + "count": 1 + }, + { + "answers": [ + "qarabaşaq" + ], + "en_answers": [ + "buckwheat" + ], + "count": 1 + }, + { + "answers": [ + "kartof püresi" + ], + "en_answers": [ + "mashed potato" + ], + "count": 1 + }, + { + "answers": [ + "xiyar" + ], + "en_answers": [ + "cucumber" + ], + "count": 1 + }, + { + "answers": [ + "pomidor" + ], + "en_answers": [ + "tomato" + ], + "count": 1 + }, + { + "answers": [ + "kartof" + ], + "en_answers": [ + "potato" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-11": { + "question": "Azərbaycanlılar futbol oyununa baxarkən nə yeyirlər?", + "en_question": "What do people from your country eat while watching a soccer game?", + "annotations": [ + { + "answers": [ + "çipsi", + "kola və çipsi", + "cips", + "kartof çipsi" + ], + "en_answers": [ + "chips", + "crisps" + ], + "count": 4 + }, + { + "answers": [ + "qəlyanaltılar" + ], + "en_answers": [ + "snack" + ], + "count": 1 + }, + { + "answers": [ + "çərəz" + ], + "en_answers": [ + "nut" + ], + "count": 1 + }, + { + "answers": [ + "kola", + "kola və çipsi" + ], + "en_answers": [ + "cola", + "coke" + ], + "count": 1 + }, + { + "answers": [ + "günəbaxan tumu" + ], + "en_answers": [ + "sunflower seed" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-15": { + "question": "Azərbaycanda mövcud olan ən məşhur qidalandırıcı yemək hansıdır?", + "en_question": "What is the representative nourishing food in your country?", + "annotations": [ + { + "answers": [ + "plov" + ], + "en_answers": [ + "pilaf", + "azerbaijani rice", + "pilav", + "pilau" + ], + "count": 3 + }, + { + "answers": [ + "dolma" + ], + "en_answers": [ + "dolma", + "stuffed grape leaves" + ], + "count": 3 + }, + { + "answers": [ + "piti" + ], + "en_answers": [ + "piti" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-16": { + "question": "Azərbaycanda ən məşhur futbolçu kimdir?", + "en_question": "Who is the most famous soccer player in your country?", + "annotations": [ + { + "answers": [ + "mahir əmrəli", + "mahir emreli" + ], + "en_answers": [ + "mahir emreli" + ], + "count": 3 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-17": { + "question": "Azərbaycanda məktəbdə tələbə oğlanlar nahar vaxtı hansı idman növlərindən zövq alırlar?", + "en_question": "What sports do male students enjoy during lunch time at school in your country?", + "annotations": [ + { + "answers": [ + "futbol" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-18": { + "question": "Azərbaycanda qızlar bədən tərbiyəsi dərslərində ən çox hansı idman növü ilə məşğul olurlar?", + "en_question": "What is the most common sport girls participate in during physical education classes in your country?", + "annotations": [ + { + "answers": [ + "voleybol", + "volleybol" + ], + "en_answers": [ + "volleyball" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-19": { + "question": "Azərbaycanda ən məşhur voleybolçu kimdir?", + "en_question": "Who is the most popular volleyball player in your country?", + "annotations": [ + { + "answers": [ + "azər qarayev" + ], + "en_answers": [ + "azər qarayev" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-20": { + "question": "Azərbaycanlılar beynəlxalq yarışlarda ən çox hansı idman tədbirini həvəslə dəstəkləyirlər?", + "en_question": "What sports event do people from your country passionately support the most in international competitions?", + "annotations": [ + { + "answers": [ + "güləş" + ], + "en_answers": [ + "wrestling" + ], + "count": 2 + }, + { + "answers": [ + "yay olimpiya oyunları" + ], + "en_answers": [ + "summer olympic games" + ], + "count": 1 + }, + { + "answers": [ + "futbol" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "avropa oyunları" + ], + "en_answers": [ + "european games" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-22": { + "question": "Hansı ölkə Azərbaycan üçün futbol matçlarında ən böyük rəqib hesab edilir?", + "en_question": "Which country is considered the biggest rival in soccer matches for your country?", + "annotations": [ + { + "answers": [ + "ermənistan" + ], + "en_answers": [ + "armenia" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 2, + "no-answer": 0 + } + }, + "Na-ko-23": { + "question": "Azərbaycanda uşaqlar ən çox hansı idman akademiyalarına qatılırlar?", + "en_question": "What type of sports academies do children attend the most in your country?", + "annotations": [ + { + "answers": [ + "futbol", + "futbol akademiyaları" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "judo", + "cüdo" + ], + "en_answers": [ + "judo" + ], + "count": 2 + }, + { + "answers": [ + "şahmat" + ], + "en_answers": [ + "chess" + ], + "count": 1 + }, + { + "answers": [ + "güləş" + ], + "en_answers": [ + "wrestling" + ], + "count": 1 + }, + { + "answers": [ + "karate" + ], + "en_answers": [ + "karate" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-24": { + "question": "Azərbaycanda idman oyunları izləyərkən stadionlarda ən çox hansı yemək yeyilir?", + "en_question": "What is the most commonly eaten food in sports stadiums while watching games in your country?", + "annotations": [ + { + "answers": [ + "cips", + "çips" + ], + "en_answers": [ + "chips", + "crisps" + ], + "count": 2 + }, + { + "answers": [ + "qəlyanaltılar" + ], + "en_answers": [ + "snack" + ], + "count": 1 + }, + { + "answers": [ + "popkorn" + ], + "en_answers": [ + "popcorn" + ], + "count": 1 + }, + { + "answers": [ + "simit" + ], + "en_answers": [ + "simit", + "turkish sesame bread", + "turkish bagel" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-25": { + "question": "Azərbaycanda məktəblilərin idman günündə hansı idman növləri oynanılır?", + "en_question": "What are the typical sports played in your country's school sports day?", + "annotations": [ + { + "answers": [ + "futbol", + "futbol və qaçış" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "voleybol" + ], + "en_answers": [ + "volleyball" + ], + "count": 2 + }, + { + "answers": [ + "basketbol" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "qaçış", + "futbol və qaçış" + ], + "en_answers": [ + "running" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "Na-ko-26": { + "question": "Azərbaycanda orta yaşlı əhalinin arasında populyar idman növləri hansılardır?", + "en_question": "What are the popular sports among the middle-aged population in your country?", + "annotations": [ + { + "answers": [ + "futbol" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "gəzinti", + "gəzmək" + ], + "en_answers": [ + "walking", + "walk" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-28": { + "question": "Azərbaycanda ən məşhur qış idman oyunçusu kimdir?", + "en_question": "Who is the most popular winter sports player in your country?", + "annotations": [ + { + "answers": [ + "firudin ağayev" + ], + "en_answers": [ + "firudin aghayev" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-29": { + "question": "Azərbaycanda ən məşhur üzgüçü kimdir?", + "en_question": "Who is the most famous swimmer in your country?", + "annotations": [ + { + "answers": [ + "hacı hacıyev" + ], + "en_answers": [ + "haci haciyev" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-30": { + "question": "Azərbaycanda ən məşhur e-idman oyunu hansıdır?", + "en_question": "What is the most popular e-sports game in your country?", + "annotations": [ + { + "answers": [ + "dota 2" + ], + "en_answers": [ + "dota 2" + ], + "count": 1 + }, + { + "answers": [ + "cs-go" + ], + "en_answers": [ + "cs:go" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 1, + "no-answer": 0 + } + }, + "Na-ko-33": { + "question": "Azərbaycanlılar (Ay) Yeni İlində hansı simvolik yemək yeyirlər?", + "en_question": "What symbolic food do people from your country eat on (Lunar) New Year?", + "annotations": [ + { + "answers": [ + "plov" + ], + "en_answers": [ + "pilaf", + "azerbaijani rice", + "pilav", + "pilau" + ], + "count": 2 + }, + { + "answers": [ + "şirniyyat" + ], + "en_answers": [ + "sweets" + ], + "count": 1 + }, + { + "answers": [ + "tort" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "paytaxt salatı" + ], + "en_answers": [ + "olivier salad", + "paytaxt salati salad", + "russian salad", + "paytakht salati" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "no-answer": 1, + "idk": 0 + } + }, + "Na-ko-37": { + "question": "Azərbaycanlılar üçün ən populyar yerli istirahət məkanı haradır?", + "en_question": "What is the most popular domestic vacation spot for people from your country?", + "annotations": [ + { + "answers": [ + "quba" + ], + "en_answers": [ + "guba", + "quba" + ], + "count": 2 + }, + { + "answers": [ + "bakı dənizkənarı bulvar", + "dənizkənarı bulvar", + "bakı bulvarı", + "dənizkənarı milli park" + ], + "en_answers": [ + "baku seaside boulevard", + "seaside national park", + "baku boulevard", + "dənizkənarı milli park", + "national park" + ], + "count": 1 + }, + { + "answers": [ + "qəbələ" + ], + "en_answers": [ + "gabala", + "qabala", + "gebele" + ], + "count": 1 + }, + { + "answers": [ + "parklar", + "parkı" + ], + "en_answers": [ + "park" + ], + "count": 1 + }, + { + "answers": [ + "i̇smayıllı" + ], + "en_answers": [ + "ismayilli" + ], + "count": 1 + }, + { + "answers": [ + "şahdağ" + ], + "en_answers": [ + "shahdag", + "mount shahdagh" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-38": { + "question": "Azərbaycanda bəy və gəlin arasında ən çox verilən toy hədiyyəsi nədir?", + "en_question": "What is the most common wedding gift between bride and groom in your country?", + "annotations": [ + { + "answers": [ + "qızıl zinyət əşyaları" + ], + "en_answers": [ + "gold jewelry" + ], + "count": 1 + }, + { + "answers": [ + "zinət əşyaları" + ], + "en_answers": [ + "decorative item", + "jewelry" + ], + "count": 1 + }, + { + "answers": [ + "şokolad" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Na-ko-39": { + "question": "Azərbaycanda bir dostunuzun toyunda iştirak edərkən adətən təbrik jesti olaraq nə verilir?", + "en_question": "What is typically given as a congratulatory gesture when attending a friend's wedding in your country?", + "annotations": [ + { + "answers": [ + "pul", + "pul verilir" + ], + "en_answers": [ + "money" + ], + "count": 4 + }, + { + "answers": [ + "çiçək" + ], + "en_answers": [ + "flower" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-40": { + "question": "Azərbaycanda dəfn mərasimi adətən neçə gün (günlərdə) davam edir? (Yalnız Ərəb rəqəmləri (məsələn, 12) verin.)", + "en_question": "How long (in days) does a funeral typically last in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-41": { + "question": "Azərbaycanda dəfn mərasimində başsağlığı təqdimatı üçün nə hazırlamalısınız?", + "en_question": "What should you prepare as a condolence offering when attending a funeral in your country?", + "annotations": [ + { + "answers": [ + "güllər", + "gül" + ], + "en_answers": [ + "flower" + ], + "count": 2 + }, + { + "answers": [ + "halva" + ], + "en_answers": [ + "halva", + "halvah", + "halwa" + ], + "count": 1 + }, + { + "answers": [ + "qızılgül" + ], + "en_answers": [ + "rose" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Na-ko-42": { + "question": "Azərbaycanda yas mərasimlərində hansı növ yeməklər verilir?", + "en_question": "What type of food is commonly provided at funeral parlors in your country?", + "annotations": [ + { + "answers": [ + "plov" + ], + "en_answers": [ + "pilaf", + "azerbaijani rice", + "pilav", + "pilau" + ], + "count": 4 + }, + { + "answers": [ + "halva" + ], + "en_answers": [ + "halva", + "halvah", + "halwa" + ], + "count": 1 + }, + { + "answers": [ + "dolma" + ], + "en_answers": [ + "dolma", + "stuffed grape leaves" + ], + "count": 1 + }, + { + "answers": [ + "bozbaş" + ], + "en_answers": [ + "bozbash", + "meat soup", + "meat stew" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-43": { + "question": "(Ay) Yeni il səhəri Azərbaycanda insanlar nə edir?", + "en_question": "What do people do in your country in the morning of the (Lunar) New Year?", + "annotations": [ + { + "answers": [ + "evi yığışdırıllar", + "ev yığışdırıllar" + ], + "en_answers": [ + "house cleaning", + "cleaning the house" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 0 + } + }, + "Na-ko-44": { + "question": "Azərbaycanda ən ciddi ümummilli nəqliyyat sıxlığının olduğu gün nə vaxtdır?", + "en_question": "When is the day with your country's most severe nationwide traffic congestion?", + "annotations": [ + { + "answers": [ + "novruz bayramı" + ], + "en_answers": [ + "novruz", + "nowruz", + "navroz" + ], + "count": 1 + }, + { + "answers": [ + "yeni il bayramı" + ], + "en_answers": [ + "new year's holiday", + "new year" + ], + "count": 1 + }, + { + "answers": [ + "bazar ertəsi" + ], + "en_answers": [ + "monday" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-45": { + "question": "Azərbaycanda bal ayı üçün ən populyar məkan hansıdır?", + "en_question": "What is the most popular honeymoon destination in your country?", + "annotations": [ + { + "answers": [ + "qəbələ" + ], + "en_answers": [ + "gabala", + "qabala", + "gebele" + ], + "count": 2 + }, + { + "answers": [ + "türkiyə" + ], + "en_answers": [ + "turkey", + "türkiye" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "Ne-ar-05": { + "question": "Azərbaycanda ən önəmli milli bayram hansıdır?", + "en_question": "What is the most important national holiday in your country?", + "annotations": [ + { + "answers": [ + "novruz bayramı", + "novruz" + ], + "en_answers": [ + "novruz", + "nowruz", + "navroz" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-06": { + "question": "Azərbaycanlılar Ramazan ayında nə yeyirlər?", + "en_question": "What do people from your country eat in Ramadan?", + "annotations": [ + { + "answers": [ + "xurma" + ], + "en_answers": [ + "dates" + ], + "count": 3 + }, + { + "answers": [ + "plov" + ], + "en_answers": [ + "pilaf", + "azerbaijani rice", + "pilav", + "pilau" + ], + "count": 1 + }, + { + "answers": [ + "dolma" + ], + "en_answers": [ + "dolma", + "stuffed grape leaves" + ], + "count": 1 + }, + { + "answers": [ + "şorbalar" + ], + "en_answers": [ + "soup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-09": { + "question": "Azərbaycanda insanlar Ramazan bayramında nə yeyirlər?", + "en_question": "What do people from your country eat in Eid ul Fitr?", + "annotations": [ + { + "answers": [ + "plov" + ], + "en_answers": [ + "pilaf", + "azerbaijani rice", + "pilav", + "pilau" + ], + "count": 3 + }, + { + "answers": [ + "xurma" + ], + "en_answers": [ + "dates" + ], + "count": 2 + }, + { + "answers": [ + "dolma" + ], + "en_answers": [ + "dolma", + "stuffed grape leaves" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-10": { + "question": "Azərbaycanda insanlar Qurban bayramında nə yeyirlər?", + "en_question": "What do people from your country eat in Eid ul Adha?", + "annotations": [ + { + "answers": [ + "qurban əti", + "qurban əti ilə qovurma" + ], + "en_answers": [ + "sacrificial meat" + ], + "count": 2 + }, + { + "answers": [ + "qoyun əti", + "qoyun" + ], + "en_answers": [ + "mutton", + "sheep", + "lamb" + ], + "count": 2 + }, + { + "answers": [ + "qovurma" + ], + "en_answers": [ + "stewed meat" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-11": { + "question": "Azərbaycandan olan insanlar Yeni İl gününü qeyd etmək üçün hara gedirlər?", + "en_question": "Where do people from your country go to celebrate New Year's Day?", + "annotations": [ + { + "answers": [ + "evdə", + "evdə keçirirlər", + "ev" + ], + "en_answers": [ + "home", + "house" + ], + "count": 4 + }, + { + "answers": [ + "restoranda", + "restoran" + ], + "en_answers": [ + "restaurant" + ], + "count": 3 + }, + { + "answers": [ + "bakı dənizkənarı bulvar", + "dənizkənarı bulvar", + "bakı bulvarı", + "dənizkənarı milli park" + ], + "en_answers": [ + "baku seaside boulevard", + "seaside national park", + "baku boulevard", + "dənizkənarı milli park", + "national park" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-14": { + "question": "Azərbaycanda Ramazan bayramı münasibəti ilə ailə harada toplaşır?", + "en_question": "Where do a family gather for Eid festivities in your country?", + "annotations": [ + { + "answers": [ + "evdə", + "evdə keçirirlər", + "ev" + ], + "en_answers": [ + "home", + "house" + ], + "count": 5 + }, + { + "answers": [ + "restoranda" + ], + "en_answers": [ + "restaurant" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-16": { + "question": "Azərbaycanda həftə sonu hansı günlərdir (məsələn, Bazar ertəsi, Çərşənbə)?", + "en_question": "When is the weekend in your country (e.g. Monday, Tuesday)?", + "annotations": [ + { + "answers": [ + "şənbə", + "şənbə və bazar", + "şənbə və bazar günü" + ], + "en_answers": [ + "saturday" + ], + "count": 5 + }, + { + "answers": [ + "bazar", + "şənbə və bazar", + "şənbə və bazar günü" + ], + "en_answers": [ + "sunday" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-17": { + "question": "Azərbaycanda insanların çoxu işə saat neçədə başlayır? (HH:MM formatında təqdim edin (məsələn, 18:00, 09:00).)", + "en_question": "At what time do most people start work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 4 + }, + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-18": { + "question": "Azərbaycanda insanların çoxu işi nə vaxt bitirir? (HH:MM formatında təqdim edin (məsələn, 18:00, 09:00).)", + "en_question": "At what time do most people finish work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-20": { + "question": "Azərbaycanda hansı iş təhlükəsiz hesab olunur?", + "en_question": "What is considered to be a secure job in your country?", + "annotations": [ + { + "answers": [ + "müəllimlik" + ], + "en_answers": [ + "teaching", + "teacher" + ], + "count": 2 + }, + { + "answers": [ + "dövlət işi" + ], + "en_answers": [ + "government job", + "government employee", + "civil service official", + "public servant", + "public employee" + ], + "count": 1 + }, + { + "answers": [ + "həkimlik" + ], + "en_answers": [ + "medicine", + "doctor" + ], + "count": 1 + }, + { + "answers": [ + "masa arxası" + ], + "en_answers": [ + "desk job" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-24": { + "question": "Azərbaycanda əsas ticarət mərkəzi hansı şəhərdir?", + "en_question": "Which city is the primary commercial hub in your country?", + "annotations": [ + { + "answers": [ + "bakı" + ], + "en_answers": [ + "baku" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-25": { + "question": "Azərbaycanda ən yaxşı maaş verən sənaye sahəsi hansıdır?", + "en_question": "What is the industry that pays the best in your country?", + "annotations": [ + { + "answers": [ + "neft və qaz", + "neft", + "neft və qaz sənayesi", + "neft-qaz" + ], + "en_answers": [ + "oil and gas" + ], + "count": 4 + }, + { + "answers": [ + "neft mühəndisliyi" + ], + "en_answers": [ + "petroleum engineering" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-26": { + "question": "Azərbaycanda ən məşhur dövlət korporasiyası hansıdır?", + "en_question": "What is the most famous public corporation in your country?", + "annotations": [ + { + "answers": [ + "socar", + "socar (dövlət neft şirkəti)", + "dövlət neft şirkəti" + ], + "en_answers": [ + "state oil company of azerbaijan", + "socar" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-31": { + "question": "Azərbaycanın ən məşhur yeməyi hansıdır?", + "en_question": "What is the most famous dish in your country?", + "annotations": [ + { + "answers": [ + "plov" + ], + "en_answers": [ + "pilaf", + "azerbaijani rice", + "pilav", + "pilau" + ], + "count": 3 + }, + { + "answers": [ + "dolma" + ], + "en_answers": [ + "dolma", + "stuffed grape leaves" + ], + "count": 3 + }, + { + "answers": [ + "qutab" + ], + "en_answers": [ + "qutab", + "gutap", + "kutab", + "stuffed flatbread" + ], + "count": 1 + }, + { + "answers": [ + "pendir" + ], + "en_answers": [ + "cheese" + ], + "count": 1 + }, + { + "answers": [ + "kabab" + ], + "en_answers": [ + "kebab" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-32": { + "question": "Azərbaycanda insanlar adətən səhər yeməyində nə yeyirlər?", + "en_question": "What do people usually have for breakfast in your country?", + "annotations": [ + { + "answers": [ + "pendir-çörək", + "çörək və pendir", + "pendir", + "çörək", + "pendir-çörək şirinçay" + ], + "en_answers": [ + "cheese-bread", + "pendir chorek", + "pendir chorak", + "pendir & chorek", + "bread and cheese", + "cheese", + "bread" + ], + "count": 4 + }, + { + "answers": [ + "süd məhsulları" + ], + "en_answers": [ + "dairy product", + "milk product", + "lacticinia" + ], + "count": 2 + }, + { + "answers": [ + "şirin çay", + "pendir-çörək şirinçay" + ], + "en_answers": [ + "sweet tea" + ], + "count": 2 + }, + { + "answers": [ + "yumurta" + ], + "en_answers": [ + "egg" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-33": { + "question": "Azərbaycanda insanlar adətən nə vaxt nahar edirlər? (HH:MM formatında təqdim edin (məsələn, 18:00, 09:00).)", + "en_question": "When do people usually have lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-34": { + "question": "Azərbaycanda yeməklərdə adətən nə vacibdir?", + "en_question": "What is typically indispensable in meals in your country?", + "annotations": [ + { + "answers": [ + "duz" + ], + "en_answers": [ + "salt" + ], + "count": 1 + }, + { + "answers": [ + "duzlu yağ", + "duzç yağ" + ], + "en_answers": [ + "clarified butter" + ], + "count": 1 + }, + { + "answers": [ + "ət" + ], + "en_answers": [ + "meat" + ], + "count": 1 + }, + { + "answers": [ + "yağ" + ], + "en_answers": [ + "oil" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-36": { + "question": "Azərbaycanda tipik bayram yeməyi nədir?", + "en_question": "What is a typical festive meal in your country?", + "annotations": [ + { + "answers": [ + "plov", + "aş" + ], + "en_answers": [ + "pilaf", + "azerbaijani rice", + "pilav", + "pilau" + ], + "count": 5 + }, + { + "answers": [ + "dolma" + ], + "en_answers": [ + "dolma", + "stuffed grape leaves" + ], + "count": 3 + }, + { + "answers": [ + "düşbərə" + ], + "en_answers": [ + "dushbara", + "dushbere", + "dushpara", + "dumpling soup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-37": { + "question": "Azərbaycanda insanlar ədətən xaricdən gələn turistlərə/qonaqlara hansı meyvəni təklif edirlər?", + "en_question": "Which fruit do people usually offer tourists/visitors from abroad in your country?", + "annotations": [ + { + "answers": [ + "nar" + ], + "en_answers": [ + "pomegranate" + ], + "count": 4 + }, + { + "answers": [ + "qarpız" + ], + "en_answers": [ + "watermelon" + ], + "count": 1 + }, + { + "answers": [ + "alma" + ], + "en_answers": [ + "apple" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-38": { + "question": "Azərbaycanda insanlar adətən hansı yeməyi sədəqə kimi verirlər?", + "en_question": "Which food do people usually offer as charity in your country?", + "annotations": [ + { + "answers": [ + "halva" + ], + "en_answers": [ + "halva", + "halvah", + "halwa" + ], + "count": 3 + }, + { + "answers": [ + "aş" + ], + "en_answers": [ + "pilaf", + "azerbaijani rice", + "pilav", + "pilau" + ], + "count": 1 + }, + { + "answers": [ + "qoyun əti" + ], + "en_answers": [ + "mutton", + "sheep", + "lamb" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-39": { + "question": "Azərbaycanda ən ucuz fast fud hansıdır?", + "en_question": "What is the cheapest fast food in your country?", + "annotations": [ + { + "answers": [ + "dönər" + ], + "en_answers": [ + "doner kebab", + "döner kebab" + ], + "count": 5 + }, + { + "answers": [ + "qutab" + ], + "en_answers": [ + "qutab", + "gutap", + "kutab", + "stuffed flatbread" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-43": { + "question": "Azərbaycanda insanlar adətən çayla nə içirlər?", + "en_question": "What do people usually have with tea in your country?", + "annotations": [ + { + "answers": [ + "şirniyyat" + ], + "en_answers": [ + "sweets" + ], + "count": 2 + }, + { + "answers": [ + "qənd" + ], + "en_answers": [ + "sugar" + ], + "count": 2 + }, + { + "answers": [ + "konfet" + ], + "en_answers": [ + "candy" + ], + "count": 1 + }, + { + "answers": [ + "mürəbbə" + ], + "en_answers": [ + "jam" + ], + "count": 1 + }, + { + "answers": [ + "şokolad" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-44": { + "question": "Azərbaycanda insanlar kofe ilə nə içirlər?", + "en_question": "What do people have with coffee in your country?", + "annotations": [ + { + "answers": [ + "şirniyyat" + ], + "en_answers": [ + "sweets" + ], + "count": 2 + }, + { + "answers": [ + "qurabiyə" + ], + "en_answers": [ + "qurabiya", + "ghraybe", + "ghorayeba", + "ghoriba", + "ghribia", + "ghraïba", + "gurabija", + "ghriyyaba", + "kourabiedes", + "shortbread-type biscuit" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-am-02": { + "question": "Azərbaycanda ən məşhur ənənəvi yemək hansıdır?", + "en_question": "What is the most popular traditional food in your country?", + "annotations": [ + { + "answers": [ + "plov" + ], + "en_answers": [ + "pilaf", + "azerbaijani rice", + "pilav", + "pilau" + ], + "count": 3 + }, + { + "answers": [ + "dolma" + ], + "en_answers": [ + "dolma", + "stuffed grape leaves" + ], + "count": 3 + }, + { + "answers": [ + "dolma", + "dolma və qutab" + ], + "en_answers": [ + "dolma", + "stuffed grape leaves" + ], + "count": 1 + }, + { + "answers": [ + "qutab", + "dolma və qutab" + ], + "en_answers": [ + "qutab", + "gutap", + "kutab", + "stuffed flatbread" + ], + "count": 1 + }, + { + "answers": [ + "dönər" + ], + "en_answers": [ + "doner kebab", + "döner kebab" + ], + "count": 1 + }, + { + "answers": [ + "kabab" + ], + "en_answers": [ + "kebab" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-04": { + "question": "Azərbaycanda ən məşhur batırma sousu hansıdır?", + "en_question": "What is the most popular dipping sauce in your country?", + "annotations": [ + { + "answers": [ + "qatıq", + "sarımsaqlı qatıq" + ], + "en_answers": [ + "qatiq" + ], + "count": 4 + }, + { + "answers": [ + "narşərab sousu" + ], + "en_answers": [ + "pomegranate molasses", + "pomegranate syrup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-08": { + "question": "Azərbaycanda xristianların orucu zamanı əsasən hansı yeməklər yeyilir?", + "en_question": "What food is most often consumed during Christian fasting in your country?", + "annotations": [ + { + "answers": [ + "kuliç" + ], + "en_answers": [ + "kulich", + "russian easter bread" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-am-15": { + "question": "Azərbaycanda uşaq doğulanda adətən hansı yeməklər bişirilir?", + "en_question": "What food is usually prepared when mothers give birth in your country?", + "annotations": [ + { + "answers": [ + "südlü şirniyyatlar", + "südlü şirniyyatlar və qatıq yeməkləri", + "qatıq yeməkləri" + ], + "en_answers": [ + "dairy dessert", + "yogurt dish" + ], + "count": 1 + }, + { + "answers": [ + "sıyıq", + "aş" + ], + "en_answers": [ + "porridge" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "not-applicable": 1, + "idk": 0 + } + }, + "New-am-27": { + "question": "Azərbaycanda ən məşhur qadın idmançı kimdir?", + "en_question": "Who is the most popular female sportperson in your country?", + "annotations": [ + { + "answers": [ + "zemfira meftahətdinova", + "zemfira meftahətdinova (atıcılıq)" + ], + "en_answers": [ + "zemfira meftahətdinova", + "zemfira meftahatdinova", + "zemfira aliyevna meftahatdinova" + ], + "count": 1 + }, + { + "answers": [ + "mariya stadnik" + ], + "en_answers": [ + "mariya stadnik" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-34": { + "question": "Azərbaycanda əksər ibtidai məktəb şagirdləri imtahanlara harada hazırlaşırlar?", + "en_question": "Where do most elementary school students prepare for their exams in your country?", + "annotations": [ + { + "answers": [ + "evdə", + "evdə və məktəbdənkənar dərslərdə", + "evlərində" + ], + "en_answers": [ + "home", + "house" + ], + "count": 5 + }, + { + "answers": [ + "məktəbdənkənar dərslərdə", + "evdə və məktəbdənkənar dərslərdə" + ], + "en_answers": [ + "extracurricular class", + "extracurricular lesson" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-41": { + "question": "Azərbaycanda şagirdlər ilk dövlət səviyyəli imtahanı neçənci sinifdə verirlər?", + "en_question": "In your country, at which grade level do students take their first national-level examination?", + "annotations": [ + { + "answers": [ + "9-cu sinifdə", + "9" + ], + "en_answers": [ + "9th grade", + "ninth grade" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-53": { + "question": "Azərbaycanda hansı bölgə kofe/çay sənayesi ilə geniş tanınır?", + "en_question": "Which region in your country is widely known for its coffee/tea industry?", + "annotations": [ + { + "answers": [ + "lənkəran", + "lənkəran (çay üçün)", + "lənkaran", + "ləkəran" + ], + "en_answers": [ + "lankaran" + ], + "count": 4 + }, + { + "answers": [ + "astara" + ], + "en_answers": [ + "astara" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-54": { + "question": "Azərbaycanda hansı bölgə mal-qara sənayesi ilə geniş tanınır?", + "en_question": "Which region in your country is widely known for its livestock industry?", + "annotations": [ + { + "answers": [ + "quba", + "şəki və quba rayonları" + ], + "en_answers": [ + "guba", + "quba" + ], + "count": 2 + }, + { + "answers": [ + "şəki", + "şəki və quba rayonları" + ], + "en_answers": [ + "sheki", + "shaki" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "New-am-59": { + "question": "Azərbaycanda səhralarda yaşayan insanların əsas məşğuliyyəti nədir?", + "en_question": "What is the main occupation of people living in deserts in your country?", + "annotations": [ + { + "answers": [ + "heyvandarlıq", + "heyvandarlıq və qoyunçuluq", + "maldarlıq" + ], + "en_answers": [ + "livestock farming", + "animal husbandry", + "animal agriculture" + ], + "count": 1 + }, + { + "answers": [ + "qoyunçuluq", + "heyvandarlıq və qoyunçuluq" + ], + "en_answers": [ + "sheep breeding", + "sheep farming" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 0 + } + }, + "New-am-60": { + "question": "Azərbaycanda nəqliyyat üçün adətən hansı heyvandan istifadə olunur?", + "en_question": "Which animal is typically used for transportation in your country?", + "annotations": [ + { + "answers": [ + "at" + ], + "en_answers": [ + "horse" + ], + "count": 5 + }, + { + "answers": [ + "eşşək" + ], + "en_answers": [ + "donkey" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-72": { + "question": "Azərbaycanda uşaqların oxuması üçün ən populyar komiks hansıdır?", + "en_question": "What is the most popular comic book for children to read in your country?", + "annotations": [ + { + "answers": [ + "marvel" + ], + "en_answers": [ + "marvel comics" + ], + "count": 2 + }, + { + "answers": [ + "maşa və ayı", + "\"maşa və ayı\" komiksləri" + ], + "en_answers": [ + "masha and the bear" + ], + "count": 1 + }, + { + "answers": [ + "tom və cerri", + "\"tom və jerry\"" + ], + "en_answers": [ + "tom and jerry" + ], + "count": 1 + }, + { + "answers": [ + "cırtdan" + ], + "en_answers": [ + "jirtdan" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-am-73": { + "question": "Azərbaycanda uşaqlar üçün ən populyar YouTube kanalı hansıdır?", + "en_question": "What is the most popular YouTube channel for children in your country?", + "annotations": [], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-74": { + "question": "Azərbaycanda ən məşhur tok-şou hansıdır?", + "en_question": "What is the most popular talk show in your country?", + "annotations": [ + { + "answers": [ + "ay zaur" + ], + "en_answers": [ + "ay zaur" + ], + "count": 3 + }, + { + "answers": [ + "zaurla günaydın", + "\"zaurla günaydın\"" + ], + "en_answers": [ + "good morning with zaur" + ], + "count": 1 + }, + { + "answers": [ + "səni axtarıram", + "\"səni axtarıram\"" + ], + "en_answers": [ + "i am looking for you", + "seni axtariram" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-77": { + "question": "Azərbaycanda ən məşhur dini bayram hansıdır?", + "en_question": "What is the most famous religious holiday in your country?", + "annotations": [ + { + "answers": [ + "ramazan bayramı", + "ramazan" + ], + "en_answers": [ + "ramadan feast", + "ramazan bayrami", + "eid al-fitr" + ], + "count": 5 + }, + { + "answers": [ + "qurban bayramı", + "qurban" + ], + "en_answers": [ + "eid al-adha", + "feast of sacrifice", + "greater eid" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-81": { + "question": "Azərbaycanda evlilik mərasimlərinin ən yoğun olduğu ay hansıdır? (Yalnız ərəb rəqəmləri (məsələn, 1) göstərin.)", + "en_question": "What is the busiest month for weddings in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "5", + "5 (may)" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "New-am-83": { + "question": "Azərbaycanda ən məşhur ənənəvi musiqi aləti hansıdır?", + "en_question": "What is the most popular traditional musical instrument in your country?", + "annotations": [ + { + "answers": [ + "saz" + ], + "en_answers": [ + "saz", + "bağlama" + ], + "count": 4 + }, + { + "answers": [ + "tar" + ], + "en_answers": [ + "tar" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-01": { + "question": "Azərbaycanda istehsal olunan əsas kənd təsərrüfatı məhsulu hansıdır?", + "en_question": "What is the main agricultural product produced in your country?", + "annotations": [ + { + "answers": [ + "süd məhsulları" + ], + "en_answers": [ + "dairy product", + "milk product", + "lacticinia" + ], + "count": 2 + }, + { + "answers": [ + "pambıq" + ], + "en_answers": [ + "cotton" + ], + "count": 1 + }, + { + "answers": [ + "pomidor" + ], + "en_answers": [ + "tomato" + ], + "count": 1 + }, + { + "answers": [ + "pendir" + ], + "en_answers": [ + "cheese" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-02": { + "question": "Azərbaycanda ən məşhur buğda əsaslı qida hansıdır?", + "en_question": "What is the most popular wheat-based food item in your country?", + "annotations": [ + { + "answers": [ + "çörək" + ], + "en_answers": [ + "bread" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-05": { + "question": "Azərbaycanda evləri ziyarət edən qonaqlara təklif olunan ən tipik içki hansıdır?", + "en_question": "What is the most typical drink offered to guests when they visit households in your country?", + "annotations": [ + { + "answers": [ + "çay" + ], + "en_answers": [ + "tea" + ], + "count": 5 + }, + { + "answers": [ + "kofe" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-07": { + "question": "Azərbaycanda balıqla hazırlanan ən məşhur yemək nədir?", + "en_question": "What is the most popular dish cooked with fish in your country?", + "annotations": [ + { + "answers": [ + "balıq kababı" + ], + "en_answers": [ + "fish kebab" + ], + "count": 1 + }, + { + "answers": [ + "ləvəngi" + ], + "en_answers": [ + "levengi", + "lavangi" + ], + "count": 1 + }, + { + "answers": [ + "qızardırılmış balıq" + ], + "en_answers": [ + "fried fish" + ], + "count": 1 + }, + { + "answers": [ + "qurut" + ], + "en_answers": [ + "qurut", + "kashk", + "chortan", + "aaruul", + "khuruud", + "dried yogurt", + "jameed", + "shilanch", + "qqet", + "kurut" + ], + "count": 1 + }, + { + "answers": [ + "balıq ləvəngisi" + ], + "en_answers": [ + "fish levengi", + "fish lavangi" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-14": { + "question": "Azərbaycanlılar yağışlı havada nə yeməyi xoşlayırlar?", + "en_question": "What food do people from your country like to eat during rainy weather?", + "annotations": [ + { + "answers": [ + "i̇sti şorba", + "i̇sti şorba və çörək" + ], + "en_answers": [ + "hot soup" + ], + "count": 1 + }, + { + "answers": [ + "çörək", + "i̇sti şorba və çörək" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "xəngəl", + "xingal" + ], + "en_answers": [ + "hingel", + "dumpling" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 1 + } + }, + "New-as-15": { + "question": "Hava isti olduqda Azərbaycanda ən çox nə içki içilir?", + "en_question": "What drink is commonly consumed in your country when the weather is hot?", + "annotations": [ + { + "answers": [ + "çay" + ], + "en_answers": [ + "tea" + ], + "count": 4 + }, + { + "answers": [ + "şərbət", + "şərbət və soyuq çay" + ], + "en_answers": [ + "sherbet", + "sharbat" + ], + "count": 1 + }, + { + "answers": [ + "soyuq çay", + "şərbət və soyuq çay" + ], + "en_answers": [ + "cold tea" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-20": { + "question": "Azərbaycanda ən populyar qapalı idman növü hansıdır?", + "en_question": "What is the most popular indoor sport in your country?", + "annotations": [ + { + "answers": [ + "şahmat" + ], + "en_answers": [ + "chess" + ], + "count": 3 + }, + { + "answers": [ + "basketbol" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-29": { + "question": "Azərbaycanda kişilər hansı idman növünü izləməyi xoşlayırlar?", + "en_question": "What sport do men in your country like to watch?", + "annotations": [ + { + "answers": [ + "futbol", + "futbol və basketbol" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "basketbol", + "futbol və basketbol" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-30": { + "question": "Azərbaycanda qadınlar hansı idman növünü izləməyi xoşlayırlar?", + "en_question": "What sport do women in your country like to watch?", + "annotations": [ + { + "answers": [ + "voleybol", + "voleybol və gimnastika", + "volleybol" + ], + "en_answers": [ + "volleyball" + ], + "count": 5 + }, + { + "answers": [ + "gimnastika", + "voleybol və gimnastika" + ], + "en_answers": [ + "gymnastics" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-58": { + "question": "Azərbaycanlılar iş yerində ən çox hansı içkini içməyi xoşlayırlar?", + "en_question": "What is the most popular beverage that people from your country like to drink in their workplace?", + "annotations": [ + { + "answers": [ + "çay" + ], + "en_answers": [ + "tea" + ], + "count": 5 + }, + { + "answers": [ + "kofe" + ], + "en_answers": [ + "coffee" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-64": { + "question": "Azərbaycanda ailə üzvləri hansı bayramda bir araya gəlirlər?", + "en_question": "On which holiday do all family members tend to reunite in your country?", + "annotations": [ + { + "answers": [ + "novruz bayramı", + "novruz" + ], + "en_answers": [ + "novruz", + "nowruz", + "navroz" + ], + "count": 5 + }, + { + "answers": [ + "yeni i̇l bayramı", + "yeni i̇l" + ], + "en_answers": [ + "new year holiday", + "new year" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-76": { + "question": "Azərbaycanda ənənəvi bayramlarda ailələr hansı ənənəvi oyunları oynayırlar?", + "en_question": "What traditional games do families play during traditional holidays in your country?", + "annotations": [ + { + "answers": [ + "yumurta toqquşdurmaq", + "yumurta toqquşdurmaq oyunu", + "yumurta döyüşdürmə" + ], + "en_answers": [ + "egg tapping game", + "egg fight" + ], + "count": 2 + }, + { + "answers": [ + "nərd", + "nərd (backgammon) və domino" + ], + "en_answers": [ + "backgammon" + ], + "count": 1 + }, + { + "answers": [ + "domino", + "nərd (backgammon) və domino" + ], + "en_answers": [ + "domino" + ], + "count": 1 + }, + { + "answers": [ + "papaqatma" + ], + "en_answers": [ + "papaqatma", + "hat throwing game" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-as-80": { + "question": "Azərbaycanlılar ənənəvi bayramlarda hansı geyimləri geyinirlər?", + "en_question": "What type of clothing do people from your country wear during traditional festivals?", + "annotations": [ + { + "answers": [ + "milli geyimlər", + "milli geyimlər və rəngarəng libaslar", + "milli geyimləri" + ], + "en_answers": [ + "national dress", + "national costume", + "traditional clothing" + ], + "count": 2 + }, + { + "answers": [ + "rəngarəng libas", + "milli geyimlər və rəngarəng libaslar" + ], + "en_answers": [ + "colorful clothes", + "colorful dress" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "no-answer": 1, + "idk": 0 + } + }, + "New-as-89": { + "question": "Azərbaycanlılar hansı ənənəvi bayram aksesuarları geyinirlər?", + "en_question": "What traditional festival accessories do people from your country wear?", + "annotations": [ + { + "answers": [ + "milli baş örtükləri", + "milli baş örtükləri və bəzəkli zinət əşyaları" + ], + "en_answers": [ + "headscarves", + "headscarf", + "head covering" + ], + "count": 1 + }, + { + "answers": [ + "bəzəkli zinət əşyaları", + "milli baş örtükləri və bəzəkli zinət əşyaları" + ], + "en_answers": [ + "ornamental accessories", + "ornamental accessory", + "ornate jewelry", + "decorative jewelry" + ], + "count": 1 + }, + { + "answers": [ + "qızıl bilərzik" + ], + "en_answers": [ + "gold bracelet" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 0, + "no-answer": 0 + } + }, + "New-az-05": { + "question": "Azərbaycanda spirtli içki istehsalı üçün ən məşhur bölgə hansıdır?", + "en_question": "What is the most famous region for alcohol production in your country?", + "annotations": [ + { + "answers": [ + "qazax" + ], + "en_answers": [ + "gazakh", + "qazax" + ], + "count": 2 + }, + { + "answers": [ + "i̇smayıllı", + "qəbələ və i̇smayıllı" + ], + "en_answers": [ + "ismayilli" + ], + "count": 1 + }, + { + "answers": [ + "qəbələ", + "qəbələ və i̇smayıllı" + ], + "en_answers": [ + "gabala", + "qabala", + "gebele" + ], + "count": 1 + }, + { + "answers": [ + "göygöl" + ], + "en_answers": [ + "goygol" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-11": { + "question": "Azərbaycanlılar yay mövsümündə ən çox hansı meyvələri yeyirlər?", + "en_question": "What fruit do people from your country often eat in the summer season?", + "annotations": [ + { + "answers": [ + "qarpız", + "şaftalı və qarpız" + ], + "en_answers": [ + "watermelon" + ], + "count": 3 + }, + { + "answers": [ + "gilas" + ], + "en_answers": [ + "cherry" + ], + "count": 2 + }, + { + "answers": [ + "şaftalı", + "şaftalı və qarpız" + ], + "en_answers": [ + "peach" + ], + "count": 1 + }, + { + "answers": [ + "alma" + ], + "en_answers": [ + "apple" + ], + "count": 1 + }, + { + "answers": [ + "qovun" + ], + "en_answers": [ + "muskmelon" + ], + "count": 1 + }, + { + "answers": [ + "alça" + ], + "en_answers": [ + "alcha", + "greengage", + "cherry plum", + "alucha" + ], + "count": 1 + }, + { + "answers": [ + "ərik" + ], + "en_answers": [ + "apricot" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-12": { + "question": "Azərbaycanda hansı bölgə dəniz məhsulları ilə məşhurdur?", + "en_question": "Which region in your country is known for its seafood?", + "annotations": [ + { + "answers": [ + "lənkəran", + "lənkəran və abşeron" + ], + "en_answers": [ + "lankaran" + ], + "count": 2 + }, + { + "answers": [ + "abşeron", + "lənkəran və abşeron" + ], + "en_answers": [ + "absheron" + ], + "count": 2 + }, + { + "answers": [ + "bakı" + ], + "en_answers": [ + "baku" + ], + "count": 1 + }, + { + "answers": [ + "salyan" + ], + "en_answers": [ + "salyan" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-21": { + "question": "Azərbaycanda xizək üçün ən məşhur bölgə hansıdır?", + "en_question": "Which region in your country is the most popular skiing destination?", + "annotations": [ + { + "answers": [ + "qusar", + "qəbələ və qusar (şahdağ)" + ], + "en_answers": [ + "qusar", + "gusar" + ], + "count": 3 + }, + { + "answers": [ + "şahdağ", + "qəbələ və qusar (şahdağ)" + ], + "en_answers": [ + "shahdag", + "mount shahdagh" + ], + "count": 2 + }, + { + "answers": [ + "qəbələ", + "qəbələ və qusar (şahdağ)" + ], + "en_answers": [ + "gabala", + "qabala", + "gebele" + ], + "count": 2 + }, + { + "answers": [ + "quba" + ], + "en_answers": [ + "guba", + "quba" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-26": { + "question": "Azərbaycanda ən məşhur döyüş sənətçisi kimdir?", + "en_question": "Who is the most popular martial arts player in your country?", + "annotations": [ + { + "answers": [ + "rafael ağayev", + "rafael ağayev (karate)" + ], + "en_answers": [ + "rafael aghayev" + ], + "count": 3 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-27": { + "question": "Son on ildə Azərbaycanda ən sürətlə inkişaf edən idman növü hansıdır?", + "en_question": "Which sport has been one of the fastest-growing in your country over the last decade?", + "annotations": [ + { + "answers": [ + "futbol" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "cüdo" + ], + "en_answers": [ + "judo" + ], + "count": 1 + }, + { + "answers": [ + "güləş" + ], + "en_answers": [ + "wrestling" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-39": { + "question": "Azərbaycanlı tələbələrin xaricdə təhsil üçün ən çox üstünlük verdikləri ölkə hansıdır?", + "en_question": "Which country is the most popular destination for students from your country studying abroad?", + "annotations": [ + { + "answers": [ + "türkiyə", + "türkiyə və almaniya" + ], + "en_answers": [ + "turkey", + "türkiye" + ], + "count": 5 + }, + { + "answers": [ + "almaniya", + "türkiyə və almaniya" + ], + "en_answers": [ + "germany" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-49": { + "question": "Azərbaycanda tipik bir ailədə neçə nəfər işləyir? (Yalnız ərəb rəqəmləri (məsələn, 1) göstərin.)", + "en_question": "How many people work in a typical family in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "2", + "1-2" + ], + "en_answers": [ + "2" + ], + "count": 4 + }, + { + "answers": [ + "1", + "1-2" + ], + "en_answers": [ + "1" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-60": { + "question": "Azərbaycanda hər iki valideyn işləyəndə uşaqlara kim qayğı göstərir?", + "en_question": "In your country, who takes care of kids when both parents are working?", + "annotations": [ + { + "answers": [ + "nənə", + "nənələri" + ], + "en_answers": [ + "grandmother" + ], + "count": 4 + }, + { + "answers": [ + "baxıçı", + "dayə" + ], + "en_answers": [ + "babysitter" + ], + "count": 2 + }, + { + "answers": [ + "nənə-babalar" + ], + "en_answers": [ + "grandparents" + ], + "count": 1 + }, + { + "answers": [ + "baba" + ], + "en_answers": [ + "grandfather" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-69": { + "question": "Azərbaycanlı kişilər arasında üstünlük verilən spirtli içki hansıdır?", + "en_question": "What is the preferred alcoholic beverage for men from your country?", + "annotations": [ + { + "answers": [ + "araq", + "araq", + "arak və viski" + ], + "en_answers": [ + "arak", + "araq", + "distilled spirit" + ], + "count": 4 + }, + { + "answers": [ + "viski", + "arak və viski" + ], + "en_answers": [ + "whiskey" + ], + "count": 1 + }, + { + "answers": [ + "vodka" + ], + "en_answers": [ + "vodka" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-70": { + "question": "Azərbaycanlı qadınlar arasında üstünlük verilən spirtli içki hansıdır?", + "en_question": "What is the preferred alcoholic beverage for women from your country?", + "annotations": [ + { + "answers": [ + "şərab", + "şərab və şampan" + ], + "en_answers": [ + "wine" + ], + "count": 4 + }, + { + "answers": [ + "şampan", + "şərab və şampan" + ], + "en_answers": [ + "champagne" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-73": { + "question": "Azərbaycanda adətən bir toyda orta hesabla neçə nəfər iştirak edir? (Yalnız Ərəb rəqəmləri (məsələn, 1) verin.)", + "en_question": "How many people on average typically attend a wedding in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "200" + ], + "en_answers": [ + "200" + ], + "count": 2 + }, + { + "answers": [ + "300", + "150-300" + ], + "en_answers": [ + "300" + ], + "count": 2 + }, + { + "answers": [ + "150", + "150-300" + ], + "en_answers": [ + "150" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-01": { + "question": "Azərbaycanda barbekü zamanı əsasən hansı növ ət yeyilir?", + "en_question": "What kind of meat do people usually eat when they have barbecue in your country?", + "annotations": [ + { + "answers": [ + "qoyun əti", + "quzu", + "qoyun" + ], + "en_answers": [ + "mutton", + "sheep", + "lamb" + ], + "count": 4 + }, + { + "answers": [ + "mal əti", + "mal" + ], + "en_answers": [ + "beef" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-02": { + "question": "Azərbaycanda səhər yeməyini adətən nə vaxt yeyirlər? (HH:MM formatında təqdim edin (məsələn, 18:00, 09:00).)", + "en_question": "When do people usually have breakfast in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 4 + }, + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-04": { + "question": "Azərbaycanda insanlar gecə qəlyanaltıları üçün adətən hansı yeməkləri yeyirlər?", + "en_question": "What kinds of food do people usually eat for late-night snacks in your country?", + "annotations": [ + { + "answers": [ + "şirniyyat", + "şirin" + ], + "en_answers": [ + "sweets" + ], + "count": 2 + }, + { + "answers": [ + "meyvə", + "meyvə və süd məhsulları" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + }, + { + "answers": [ + "süd məhsulları", + "meyvə və süd məhsulları" + ], + "en_answers": [ + "dairy product", + "milk product", + "lacticinia" + ], + "count": 1 + }, + { + "answers": [ + "kolbasa" + ], + "en_answers": [ + "sausage" + ], + "count": 1 + }, + { + "answers": [ + "çərəz" + ], + "en_answers": [ + "snack" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-05": { + "question": "Azərbaycanda ən məşhur acı yemək hansıdır?", + "en_question": "What is the most famous spicy dish in your country?", + "annotations": [ + { + "answers": [ + "kələm dolması" + ], + "en_answers": [ + "cabbage dolma", + "stuffed cabbage", + "farcellets de col", + "cabbage roll" + ], + "count": 1 + }, + { + "answers": [ + "lahmacun" + ], + "en_answers": [ + "lahmacun", + "turkish pizza", + "lahmajun", + "lahmadjo" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-ch-07": { + "question": "Azərbaycanda insanlar adətən hansı qidaları sərt içki ilə birgə yeyirlər?", + "en_question": "What food items do people typically pair with hard liquor in your country?", + "annotations": [ + { + "answers": [ + "yağlı", + "yağlı yeməklər" + ], + "en_answers": [ + "oily", + "oily meal", + "oily food" + ], + "count": 3 + }, + { + "answers": [ + "qızardılmış ət" + ], + "en_answers": [ + "fried meat" + ], + "count": 1 + }, + { + "answers": [ + "ağır yeməkləri" + ], + "en_answers": [ + "heavy meal" + ], + "count": 1 + }, + { + "answers": [ + "xaş" + ], + "en_answers": [ + "khash", + "khashi" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-08": { + "question": "Azərbaycan mətbəxində hansı ədviyyat əvəzolunmazdır?", + "en_question": "What seasoning is indispensable in cooking in your country?", + "annotations": [ + { + "answers": [ + "duz" + ], + "en_answers": [ + "salt" + ], + "count": 4 + }, + { + "answers": [ + "i̇stiot", + "istiot" + ], + "en_answers": [ + "pepper" + ], + "count": 3 + }, + { + "answers": [ + "sumax" + ], + "en_answers": [ + "sumac" + ], + "count": 1 + }, + { + "answers": [ + "sarıkök", + "kurkuma" + ], + "en_answers": [ + "turmeric", + "curcuma", + "hidden-lilies" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-09": { + "question": "Azərbaycanda hava soyuq olduqda insanlar adətən hansı yeməkləri yeyirlər?", + "en_question": "What food do people typically consume when the weather is cold in your country?", + "annotations": [ + { + "answers": [ + "xəngəl", + "xingal" + ], + "en_answers": [ + "hingel", + "dumpling" + ], + "count": 3 + }, + { + "answers": [ + "bozbaş" + ], + "en_answers": [ + "bozbash", + "meat soup", + "meat stew" + ], + "count": 2 + }, + { + "answers": [ + "düşbərə" + ], + "en_answers": [ + "dushbara", + "dushbere", + "dushpara", + "dumpling soup" + ], + "count": 1 + }, + { + "answers": [ + "xaş" + ], + "en_answers": [ + "khash", + "khashi" + ], + "count": 1 + }, + { + "answers": [ + "sulu" + ], + "en_answers": [ + "soup" + ], + "count": 1 + }, + { + "answers": [ + "küftə" + ], + "en_answers": [ + "kofta", + "meatball", + "meatloaf" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-13": { + "question": "Azərbaycanda ən məşhur alkoqol markası hansıdır?", + "en_question": "What is the most famous alcohol brand in your country?", + "annotations": [ + { + "answers": [ + "banketnaya" + ], + "en_answers": [ + "banketnaya" + ], + "count": 2 + }, + { + "answers": [ + "xan" + ], + "en_answers": [ + "khan" + ], + "count": 1 + }, + { + "answers": [ + "nemiroff" + ], + "en_answers": [ + "nemiroff" + ], + "count": 1 + }, + { + "answers": [ + "xırdalan" + ], + "en_answers": [ + "khirdalan", + "xirdalan" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-14": { + "question": "Azərbaycanda insanlar xəstə olduqda adətən hansı yeməkləri yeyirlər?", + "en_question": "What foods do people usually eat when they are sick in your country?", + "annotations": [ + { + "answers": [ + "toyuq supu", + "bozbaş", + "sulu", + "şorba" + ], + "en_answers": [ + "chicken soup", + "bozbash", + "meat soup", + "meat stew", + "soup" + ], + "count": 5 + }, + { + "answers": [ + "düşbərə" + ], + "en_answers": [ + "dushbara", + "dushbere", + "dushpara", + "dumpling soup" + ], + "count": 2 + }, + { + "answers": [ + "əriştə" + ], + "en_answers": [ + "noodle" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-15": { + "question": "Azərbaycanda insanlar adətən supermarketlərdə hansı hazır yeməkləri alırlar?", + "en_question": "What prepared/ready-to-eat food do people typically buy at supermarkets in your country?", + "annotations": [ + { + "answers": [ + "hazır saladlar", + "hazır salatlar və dondurulmuş yeməklər" + ], + "en_answers": [ + "ready salad", + "ready to eat salad", + "prepared salad" + ], + "count": 1 + }, + { + "answers": [ + "dondurulmuş yeməklər", + "hazır salatlar və dondurulmuş yeməklər" + ], + "en_answers": [ + "frozen meal", + "prepackaged meal", + "ready-made meal", + "ready meal", + "frozen dinner", + "microwave meal" + ], + "count": 1 + }, + { + "answers": [ + "kolbasa" + ], + "en_answers": [ + "sausage" + ], + "count": 1 + }, + { + "answers": [ + "şirniyyat" + ], + "en_answers": [ + "sweets" + ], + "count": 1 + }, + { + "answers": [ + "pelmeni", + "xəngəl", + "xingal" + ], + "en_answers": [ + "pelmeni", + "dumpling", + "hingel" + ], + "count": 1 + }, + { + "answers": [ + "konservləşdirilmiş ət" + ], + "en_answers": [ + "canned meat" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-16": { + "question": "Azərbaycanda idmanla bağlı ən məşhur film hansıdır?", + "en_question": "What is the most famous sports-related movie in your country?", + "annotations": [ + { + "answers": [ + "namus", + "\"namus\"" + ], + "en_answers": [ + "namus", + "honor" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-17": { + "question": "Azərbaycanda insanlar ən çox hansı ekstremal idman növünü sınamaq istəyirlər?", + "en_question": "What extreme sport do people generally wish to try the most in your country?", + "annotations": [ + { + "answers": [ + "dağçılıq" + ], + "en_answers": [ + "mountaineering", + "mountain climbing", + "alpinism" + ], + "count": 1 + }, + { + "answers": [ + "paraşüt" + ], + "en_answers": [ + "parachute" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 1 + } + }, + "New-ch-18": { + "question": "Azərbaycanda yarışlar zamanı hansı yüngül atletika yarışını izləmək ən populyardır?", + "en_question": "Which track and field event is the most popular to watch during competitions in your country?", + "annotations": [ + { + "answers": [ + "100 metr qaçış" + ], + "en_answers": [ + "100 metres", + "100-meter dash" + ], + "count": 1 + }, + { + "answers": [ + "bədii gimnastika" + ], + "en_answers": [ + "rhythmic gymnastics" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-19": { + "question": "Azərbaycanda yarışlar zamanı ən çox hansı gimnastika tədbirinə baxılır?", + "en_question": "Which gymnastics event is the most popular to watch during competitions in your country?", + "annotations": [ + { + "answers": [ + "bədii gimnastika", + "atlama və bədii gimnastika" + ], + "en_answers": [ + "rhythmic gymnastics" + ], + "count": 2 + }, + { + "answers": [ + "atlama", + "atlama və bədii gimnastika" + ], + "en_answers": [ + "jump" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-23": { + "question": "Azərbaycanda ən məşhur stolüstü tennisçi kimdir?", + "en_question": "Who is the most famous table tennis player in your country?", + "annotations": [ + { + "answers": [ + "zaur cəlil" + ], + "en_answers": [ + "zaur jalil" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 1, + "no-answer": 0 + } + }, + "New-ch-26": { + "question": "Qış Olimpiya Oyunlarında Azərbaycanda ən çox izlənilən tədbir hansıdır?", + "en_question": "In the Winter Olympics, which event is the most popular to watch in your country?", + "annotations": [ + { + "answers": [ + "fiqurlu konkisürmə" + ], + "en_answers": [ + "figure skating" + ], + "count": 1 + }, + { + "answers": [ + "gimnastika", + "qimnastika" + ], + "en_answers": [ + "gymnastics" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-27": { + "question": "Azərbaycanda ən məşhur boksçu kimdir?", + "en_question": "Who is the most famous boxer in your country?", + "annotations": [ + { + "answers": [ + "ağası ağayev" + ], + "en_answers": [ + "aghasi aghayev" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-30": { + "question": "Azərbaycanda ən məşhur atletika idmançısı kimdir?", + "en_question": "Who is the most famous track and field athlete in your country?", + "annotations": [ + { + "answers": [ + "ramil quliyev" + ], + "en_answers": [ + "ramil guliyev" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-31": { + "question": "Azərbaycanda valideynlər övladlarının ən çox hansı peşəni seçməsini istəyirlər?", + "en_question": "What job do parents most hope their children will pursue in your country?", + "annotations": [ + { + "answers": [ + "həkim", + "həkimlik" + ], + "en_answers": [ + "doctor" + ], + "count": 5 + }, + { + "answers": [ + "hüquqşünas" + ], + "en_answers": [ + "lawyer" + ], + "count": 2 + }, + { + "answers": [ + "mühəndis" + ], + "en_answers": [ + "engineer" + ], + "count": 1 + }, + { + "answers": [ + "müəllim" + ], + "en_answers": [ + "teacher" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-32": { + "question": "Azərbaycanda iş yerlərində adətən hansı ofis proqramlarından istifadə edirlər?", + "en_question": "What office software do people typically use in the workplace in your country?", + "annotations": [ + { + "answers": [ + "excel", + "microsoft excel" + ], + "en_answers": [ + "excel", + "microsoft excel" + ], + "count": 3 + }, + { + "answers": [ + "word", + "microsoft word" + ], + "en_answers": [ + "word", + "microsoft word" + ], + "count": 3 + }, + { + "answers": [ + "microsoft office", + "mikrosoft ofis proqramları" + ], + "en_answers": [ + "microsoft office", + "microsoft office programs" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-38": { + "question": "Azərbaycanda hansı şəhərlər və ya bölgələr idxal və ixrac fəaliyyətləri ilə tanınırlar?", + "en_question": "Which cities or regions are known for their import and export activities in your country?", + "annotations": [ + { + "answers": [ + "sumqayıt", + "bakı və sumqayıt" + ], + "en_answers": [ + "sumgait" + ], + "count": 3 + }, + { + "answers": [ + "bakı", + "bakı və sumqayıt" + ], + "en_answers": [ + "baku" + ], + "count": 1 + }, + { + "answers": [ + "gədəbəy" + ], + "en_answers": [ + "gadabay" + ], + "count": 1 + }, + { + "answers": [ + "quba" + ], + "en_answers": [ + "guba", + "quba" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-39": { + "question": "Azərbaycanda elektron ticarət sənayesində ən çox hansı platformadan istifadə olunur?", + "en_question": "What platform is commonly used in the e-commerce industry in your country?", + "annotations": [ + { + "answers": [ + "trendyol" + ], + "en_answers": [ + "trendyol" + ], + "count": 4 + }, + { + "answers": [ + "aliexpress" + ], + "en_answers": [ + "aliexpress", + "alịexpress" + ], + "count": 2 + }, + { + "answers": [ + "alibaba" + ], + "en_answers": [ + "alibaba" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-44": { + "question": "Azərbaycanda yeni işçilər üçün rəsmi müqavilə imzalanmadan əvvəl tipik sınama müddəti (probasiya) nə qədər çəkir? (məsələn, 1 ay).", + "en_question": "How long is the typical probation period for new employees before signing a formal contract in your country? (e.g., 1 month).", + "annotations": [ + { + "answers": [ + "3 ay", + "2-3 ay" + ], + "en_answers": [ + "3 months", + "three months" + ], + "count": 2 + }, + { + "answers": [ + "2 ay", + "2-3 ay" + ], + "en_answers": [ + "2 months", + "two months" + ], + "count": 2 + }, + { + "answers": [ + "6 ay" + ], + "en_answers": [ + "6 months", + "six months" + ], + "count": 1 + }, + { + "answers": [ + "1 ay" + ], + "en_answers": [ + "1 month", + "one month" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-45": { + "question": "Gənclər Azərbaycanda adətən hansı sahələrdə biznes qurmağı seçirlər?", + "en_question": "Which industries do young people typically choose to start businesses in your country?", + "annotations": [ + { + "answers": [ + "texnologiya", + "texnologiya və qida xidmətləri" + ], + "en_answers": [ + "technology" + ], + "count": 1 + }, + { + "answers": [ + "qida xidmətləri", + "texnologiya və qida xidmətləri" + ], + "en_answers": [ + "food service", + "foodservice" + ], + "count": 1 + }, + { + "answers": [ + "restoran" + ], + "en_answers": [ + "restaurant" + ], + "count": 1 + }, + { + "answers": [ + "alqı-satqı" + ], + "en_answers": [ + "shopping", + "retail", + "commerce" + ], + "count": 1 + }, + { + "answers": [ + "altı moyka üstü çayxana" + ], + "en_answers": [ + "car wash under teahouse" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-49": { + "question": "Azərbaycanda ailə üzvlərinin uzaqdan ünsiyyət qurması üçün ən çox yayılmış yolu hansıdır?", + "en_question": "What is the most common way for family members to communicate remotely in your country?", + "annotations": [ + { + "answers": [ + "whatsapp", + "whatsapp video zəng", + "vatsap zəngi" + ], + "en_answers": [ + "whatsapp", + "whatsapp video call", + "whatsapp call" + ], + "count": 4 + }, + { + "answers": [ + "messenger" + ], + "en_answers": [ + "messenger" + ], + "count": 1 + }, + { + "answers": [ + "görüntülü zəng" + ], + "en_answers": [ + "video call" + ], + "count": 1 + }, + { + "answers": [ + "skype" + ], + "en_answers": [ + "skype" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-51": { + "question": "Azərbaycanda ailəvi səfərlər üçün adətən hansı yaşayış forması bron edilir?", + "en_question": "What form of accommodation is typically booked for family trips in your country?", + "annotations": [ + { + "answers": [ + "otel" + ], + "en_answers": [ + "hotel" + ], + "count": 3 + }, + { + "answers": [ + "kottec", + "mənzil və kotteclər", + "kirayə ev" + ], + "en_answers": [ + "cottage", + "house for rent", + "rental house" + ], + "count": 2 + }, + { + "answers": [ + "mənzil", + "mənzil və kotteclər" + ], + "en_answers": [ + "apartment" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-54": { + "question": "Azərbaycanda ailə naharları üçün adətən hansı meyvə daha çox hazırlanır?", + "en_question": "Which fruit is usually prepared the most for family dinners in your country?", + "annotations": [ + { + "answers": [ + "alma" + ], + "en_answers": [ + "apple" + ], + "count": 3 + }, + { + "answers": [ + "armud" + ], + "en_answers": [ + "pear" + ], + "count": 1 + }, + { + "answers": [ + "qarpız" + ], + "en_answers": [ + "watermelon" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-ch-64": { + "question": "Azərbaycanda universitet tələbələrinə adətən həftədə neçə saat dərs keçirilir? (Yalnız ərəb rəqəmləri (məsələn, 1) göstərin.)", + "en_question": "How many hours of classes do university students typically have per week in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "30", + "30 saat" + ], + "en_answers": [ + "30" + ], + "count": 1 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-66": { + "question": "Azərbaycanda dövlət liseylərinin tipik tədris haqqı hər semestr üçün nə qədərdir? (Yalnız ərəb rəqəmləri (məsələn, 1) göstərin.)", + "en_question": "What is the typical tuition fee per semester for public high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 2 + }, + { + "answers": [ + "500", + "500 manat" + ], + "en_answers": [ + "500" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-70": { + "question": "Azərbaycanda universitet tələbələrinin ortaq hansı məcburi kursları var?", + "en_question": "What compulsory courses do university students have in common in your country?", + "annotations": [ + { + "answers": [ + "riyaziyyat", + "riyaziyyat və i̇ngilis dili" + ], + "en_answers": [ + "mathematics", + "math" + ], + "count": 1 + }, + { + "answers": [ + "ingilis", + "riyaziyyat və i̇ngilis dili" + ], + "en_answers": [ + "english" + ], + "count": 1 + }, + { + "answers": [ + "i̇dman" + ], + "en_answers": [ + "sports" + ], + "count": 1 + }, + { + "answers": [ + "tarix" + ], + "en_answers": [ + "history" + ], + "count": 1 + }, + { + "answers": [ + "azərbaycan", + "azərbaycan dili" + ], + "en_answers": [ + "azerbaijani" + ], + "count": 1 + }, + { + "answers": [ + "ingilis", + "i̇ngilis dili" + ], + "en_answers": [ + "english" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-71": { + "question": "Azərbaycandakı orta məktəblərdə sinif ölçüsü orta hesabla nə qədərdir? (Yalnız ərəb rəqəmləri (məsələn, 1) göstərin.)", + "en_question": "What is the average class size in high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 4 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-72": { + "question": "Azərbaycanda hansı ixtisasın işə düzəlməyə ən əlverişli olduğu düşünülür?", + "en_question": "Which major is considered most conducive to employment in your country?", + "annotations": [ + { + "answers": [ + "neft və qaz mühəndisliyi" + ], + "en_answers": [ + "oil and gas engineering", + "petroleum and gas engineering", + "petroleum engineering" + ], + "count": 1 + }, + { + "answers": [ + "müəllimlik" + ], + "en_answers": [ + "teacher" + ], + "count": 1 + }, + { + "answers": [ + "kompüter mühəndisliyi" + ], + "en_answers": [ + "computer engineering", + "computer science" + ], + "count": 1 + }, + { + "answers": [ + "həkim" + ], + "en_answers": [ + "doctor", + "medicine" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-73": { + "question": "Azərbaycandakı universitet tələbələri arasında hansı tip klublar ən populyardır?", + "en_question": "What type of clubs are most popular among university students in your country?", + "annotations": [ + { + "answers": [ + "idman", + "i̇dman və musiqi klubları", + "i̇dman" + ], + "en_answers": [ + "sports" + ], + "count": 2 + }, + { + "answers": [ + "musiqi", + "i̇dman və musiqi klubları" + ], + "en_answers": [ + "music" + ], + "count": 1 + }, + { + "answers": [ + "debat" + ], + "en_answers": [ + "debate" + ], + "count": 1 + }, + { + "answers": [ + "özünü inkişaf" + ], + "en_answers": [ + "self-improvement", + "self-development", + "personal development" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "New-ch-74": { + "question": "Azərbaycanda universitet tələbələri adətən hansı yaşayış yerlərində (məs. yataqxana) yaşayırlar?", + "en_question": "What types of accommodation do university students in your country typically live in?", + "annotations": [ + { + "answers": [ + "ev", + "evdə" + ], + "en_answers": [ + "home", + "house" + ], + "count": 4 + }, + { + "answers": [ + "universitet yataqxanaları", + "yataqxanada", + "yada yataqxanada" + ], + "en_answers": [ + "college dormitories", + "university dormitories", + "dorm", + "dormitory" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-75": { + "question": "Azərbaycanda orta məktəb şagirdləri üçün hər dərs neçə dəqiqədir? (Yalnız ərəb rəqəmləri (məsələn, 1) göstərin.)", + "en_question": "How long is each class period for middle school students in your country (minutes)? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "45", + "45 dəqiqə" + ], + "en_answers": [ + "45" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-78": { + "question": "Azərbaycanda təqaüdə çıxmış qadınlar adətən hansı asudə vaxt fəaliyyətlərini sevirlər?", + "en_question": "What leisure activities do retired women typically like in your country?", + "annotations": [ + { + "answers": [ + "tikmə" + ], + "en_answers": [ + "sewing" + ], + "count": 1 + }, + { + "answers": [ + "bağbançılıq" + ], + "en_answers": [ + "gardening" + ], + "count": 1 + }, + { + "answers": [ + "televizora baxmaq" + ], + "en_answers": [ + "watching tv", + "tv" + ], + "count": 1 + }, + { + "answers": [ + "şirniyyat bişirmək" + ], + "en_answers": [ + "baking desserts" + ], + "count": 1 + }, + { + "answers": [ + "toxuma" + ], + "en_answers": [ + "knitting" + ], + "count": 1 + }, + { + "answers": [ + "yemək bişirmək" + ], + "en_answers": [ + "cooking" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-79": { + "question": "Azərbaycanda təqaüdə çıxmış kişilər adətən hansı asudə vaxt fəaliyyətlərini sevirlər?", + "en_question": "What leisure activities do retired men typically like in your country?", + "annotations": [ + { + "answers": [ + "nərd oynamaq", + "nərd" + ], + "en_answers": [ + "playing backgammon", + "backgammon" + ], + "count": 2 + }, + { + "answers": [ + "çayxanada oturmaq", + "çayxana" + ], + "en_answers": [ + "sitting at teahouse", + "teahouse" + ], + "count": 2 + }, + { + "answers": [ + "balıq tutmaq", + "balıq tutmaq və domino oynamaq" + ], + "en_answers": [ + "fishing" + ], + "count": 1 + }, + { + "answers": [ + "domino oynamaq", + "balıq tutmaq və domino oynamaq", + "domino" + ], + "en_answers": [ + "playing domino", + "domino" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-80": { + "question": "Azərbaycanda insanlar adətən hansı bayramlarda dini yerləri (məbədlər, kilsələr və s.) ziyarət edirlər?", + "en_question": "During which holidays do people typically visit religious sites (temples, churches, etc.) in your country?", + "annotations": [ + { + "answers": [ + "qurban", + "qurban bayramı", + "ramazan və qurban bayramlarında" + ], + "en_answers": [ + "eid al-adha", + "feast of sacrifice", + "greater eid" + ], + "count": 4 + }, + { + "answers": [ + "ramazan", + "ramazan bayramı", + "ramazan və qurban bayramlarında" + ], + "en_answers": [ + "ramadan feast", + "ramazan bayrami", + "eid al-fitr" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-81": { + "question": "Azərbaycanda adətən yeni evə köçənlərə nə hədiyyə edilir?", + "en_question": "What are the typical housewarming gifts in your country?", + "annotations": [ + { + "answers": [ + "məişət əşyaları", + "çiçəklər və məişət əşyaları", + "məişət avadanlıqları" + ], + "en_answers": [ + "household item" + ], + "count": 3 + }, + { + "answers": [ + "çiçək", + "çiçəklər və məişət əşyaları" + ], + "en_answers": [ + "flower" + ], + "count": 1 + }, + { + "answers": [ + "cehizlik" + ], + "en_answers": [ + "cehizlik" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-ch-82": { + "question": "Azərbaycanda toy mərasimləri adətən nə vaxt başlayır? (HH:MM formatında təqdim edin (məsələn, 18:00, 09:00).)", + "en_question": "At what time do weddings typically start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 4 + }, + { + "answers": [ + "19:00" + ], + "en_answers": [ + "19:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-83": { + "question": "Azərbaycanda hansı şəhər ən çox festival keçirir?", + "en_question": "Which city in your country hosts festivals the most?", + "annotations": [ + { + "answers": [ + "bakı" + ], + "en_answers": [ + "baku" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-84": { + "question": "Azərbaycanda toy mərasimlərinə gedərkən insanlar adətən hansı rəngdə geyim geyinirlər?", + "en_question": "What color of clothing do people typically wear when attending weddings in your country?", + "annotations": [ + { + "answers": [ + "qara", + "ağ və qara" + ], + "en_answers": [ + "black" + ], + "count": 2 + }, + { + "answers": [ + "ağ", + "ağ və qara" + ], + "en_answers": [ + "white" + ], + "count": 1 + }, + { + "answers": [ + "qırmızı" + ], + "en_answers": [ + "red" + ], + "count": 1 + }, + { + "answers": [ + "ağ olmayan" + ], + "en_answers": [ + "not white", + "non-white", + "except for white" + ], + "count": 1 + }, + { + "answers": [ + "əlvan rənglər" + ], + "en_answers": [ + "colorful" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-85": { + "question": "Azərbaycanda dəfn mərasimlərində insanlar adətən hansı rəngdə paltar geyinirlər?", + "en_question": "What color of clothing do people typically wear when attending funerals in your country?", + "annotations": [ + { + "answers": [ + "qara" + ], + "en_answers": [ + "black" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-01": { + "question": "Azərbaycanda kinoteatrlarda hansı qəlyanaltı yeyilir?", + "en_question": "Which snack is eaten in the cinema in your country?", + "annotations": [ + { + "answers": [ + "popkorn", + "popkorn və şokolad", + "pop-korn" + ], + "en_answers": [ + "popcorn" + ], + "count": 5 + }, + { + "answers": [ + "şokolad", + "popkorn və şokolad" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-02": { + "question": "Azərbaycanda ən populyar cips dadı hansıdır?", + "en_question": "What is the most popular chip/crisp flavour in your country?", + "annotations": [ + { + "answers": [ + "paprika", + "qırmızı bibər" + ], + "en_answers": [ + "paprika" + ], + "count": 4 + }, + { + "answers": [ + "barbekü" + ], + "en_answers": [ + "barbecue" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-04": { + "question": "Azərbaycanda ən məşhur aşpaz kimdir?", + "en_question": "Who is a popular celebrity chef in your country?", + "annotations": [ + { + "answers": [ + "yavər usta" + ], + "en_answers": [ + "chef yaver", + "yaver veliyev" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-05": { + "question": "Azərbaycanda hansı yemək sərfəli və tez hazırlanan yemək seçimidir?", + "en_question": "Which food is a cost-effective and quick meal option in your country?", + "annotations": [ + { + "answers": [ + "dönər" + ], + "en_answers": [ + "doner kebab", + "döner kebab" + ], + "count": 2 + }, + { + "answers": [ + "makaron" + ], + "en_answers": [ + "pasta" + ], + "count": 1 + }, + { + "answers": [ + "kartof" + ], + "en_answers": [ + "potato" + ], + "count": 1 + }, + { + "answers": [ + "qayğanaq" + ], + "en_answers": [ + "scrambled egg" + ], + "count": 1 + }, + { + "answers": [ + "pomidor yumurta" + ], + "en_answers": [ + "tomato egg" + ], + "count": 1 + }, + { + "answers": [ + "kartof qızartması" + ], + "en_answers": [ + "fried potato" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-07": { + "question": "Azərbaycanda ən məşhur aşpazlıq şouları hansılardır?", + "en_question": "What are the most popular cooking shows in your country?", + "annotations": [ + { + "answers": [ + "dadlı bazar", + "\"dadlı bazar\"" + ], + "en_answers": [ + "tasty bazaar" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-08": { + "question": "Azərbaycanda ən məşhur şokolad markası hansıdır?", + "en_question": "What is the most popular chocolate brand in your country?", + "annotations": [ + { + "answers": [ + "roşen", + "roshen" + ], + "en_answers": [ + "roshen" + ], + "count": 3 + }, + { + "answers": [ + "alpen gold" + ], + "en_answers": [ + "alpen gold" + ], + "count": 2 + }, + { + "answers": [ + "milka" + ], + "en_answers": [ + "milka" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-10": { + "question": "Azərbaycanda ən çox yeyilən pendir hansıdır?", + "en_question": "What is the most eaten cheese in your country?", + "annotations": [ + { + "answers": [ + "ağ pendir" + ], + "en_answers": [ + "white cheese" + ], + "count": 3 + }, + { + "answers": [ + "motal pendiri", + "motal" + ], + "en_answers": [ + "motal cheese" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-11": { + "question": "Azərbaycanda ən az sevilən tərəvəz hansıdır?", + "en_question": "What is the most disliked vegetable in your country?", + "annotations": [ + { + "answers": [ + "pomidor" + ], + "en_answers": [ + "tomato" + ], + "count": 2 + }, + { + "answers": [ + "kələm" + ], + "en_answers": [ + "cabbage" + ], + "count": 1 + }, + { + "answers": [ + "soğan" + ], + "en_answers": [ + "onion" + ], + "count": 1 + }, + { + "answers": [ + "çuğundur" + ], + "en_answers": [ + "beetroot" + ], + "count": 1 + }, + { + "answers": [ + "xiyar" + ], + "en_answers": [ + "cucumber" + ], + "count": 1 + }, + { + "answers": [ + "balqabaq" + ], + "en_answers": [ + "pumpkin" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-12": { + "question": "Azərbaycanda yeməkxanalarda ən çox hansı yeməklərə rast gəlinir?", + "en_question": "What food is most commonly found in food courts in your country?", + "annotations": [ + { + "answers": [ + "kabab" + ], + "en_answers": [ + "kebab" + ], + "count": 1 + }, + { + "answers": [ + "dolma" + ], + "en_answers": [ + "dolma", + "stuffed grape leaves" + ], + "count": 1 + }, + { + "answers": [ + "qutab" + ], + "en_answers": [ + "qutab", + "gutap", + "kutab", + "stuffed flatbread" + ], + "count": 1 + }, + { + "answers": [ + "kartof püresi" + ], + "en_answers": [ + "mashed potato" + ], + "count": 1 + }, + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + }, + { + "answers": [ + "qreçka" + ], + "en_answers": [ + "buckwheat" + ], + "count": 1 + }, + { + "answers": [ + "makaron", + "pasta" + ], + "en_answers": [ + "pasta" + ], + "count": 1 + }, + { + "answers": [ + "şorba" + ], + "en_answers": [ + "soup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-17": { + "question": "Azərbaycanda idman həvəskarları tərəfindən istifadə edilən ən məşhur təzahürat vasitələri hansılardır?", + "en_question": "What are the most common cheering tools used by sports fans in your country?", + "annotations": [ + { + "answers": [ + "bayraq", + "bayraq və boru" + ], + "en_answers": [ + "flag" + ], + "count": 1 + }, + { + "answers": [ + "boru", + "bayraq və boru" + ], + "en_answers": [ + "tube" + ], + "count": 1 + }, + { + "answers": [ + "alqışlamaq" + ], + "en_answers": [ + "clap" + ], + "count": 1 + }, + { + "answers": [ + "şərf" + ], + "en_answers": [ + "scarf" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-18": { + "question": "Azərbaycanda canlı oyuna gedən azarkeşlər özləri ilə nələr aparırlar?", + "en_question": "What do fans bring with them when attending a live game in your country?", + "annotations": [ + { + "answers": [ + "bayraq" + ], + "en_answers": [ + "flag" + ], + "count": 3 + }, + { + "answers": [ + "şərf" + ], + "en_answers": [ + "scarf" + ], + "count": 2 + }, + { + "answers": [ + "yemək", + "yemək və su" + ], + "en_answers": [ + "food" + ], + "count": 1 + }, + { + "answers": [ + "su", + "yemək və su" + ], + "en_answers": [ + "water" + ], + "count": 1 + }, + { + "answers": [ + "merç" + ], + "en_answers": [ + "merch" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-19": { + "question": "Azərbaycanda ən məşhur idman stadionu hansıdır?", + "en_question": "What is the most well known sporting stadium in your country?", + "annotations": [ + { + "answers": [ + "tofiq bəhramov stadionu", + "tofiq bəhramov adına futbol stadionu", + "tofiq bayramov adına futbol stadionu", + "tofiq bayramov stadionu" + ], + "en_answers": [ + "tofiq bahramov stadium", + "tofig bahramov republican stadium" + ], + "count": 4 + }, + { + "answers": [ + "bakı olimpiya stadionu" + ], + "en_answers": [ + "baku olympic stadium" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-23": { + "question": "Azərbaycanda ən məşhur Paralimpiyaçı kimdir?", + "en_question": "Who is the most famous Paralympian in your country?", + "annotations": [ + { + "answers": [ + "i̇lham zəkiyev" + ], + "en_answers": [ + "ilham zakiyev" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-26": { + "question": "Azərbaycanda ən tanınmış idman nəğməsi hansıdır?", + "en_question": "What is the best recognized sporting chant in your country?", + "annotations": [ + { + "answers": [ + "marşalımız", + "\"marşalımız\"" + ], + "en_answers": [ + "our marshal" + ], + "count": 1 + }, + { + "answers": [ + "kim sevirsə idmanı" + ], + "en_answers": [ + "whoever loves sports", + "hard passion", + "kim sevirse idmani", + "sport is our passion" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-en-38": { + "question": "Azərbaycanda hansı sahələr daha fleksibl iş saatları ilə tanınır?", + "en_question": "Which industries are known for more flexible working hours in your country?", + "annotations": [ + { + "answers": [ + "biznes" + ], + "en_answers": [ + "business" + ], + "count": 2 + }, + { + "answers": [ + "it", + "i̇t və kreativ sənayelər", + "kompüter", + "kompüter sahəsində" + ], + "en_answers": [ + "it", + "technology", + "computer field" + ], + "count": 2 + }, + { + "answers": [ + "kreativ sənayelər", + "i̇t və kreativ sənayelər" + ], + "en_answers": [ + "creative industries" + ], + "count": 1 + }, + { + "answers": [ + "müəllimlik" + ], + "en_answers": [ + "tutoring" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-41": { + "question": "Azərbaycanda ən məşhur və uğurlu sahibkar kimdir?", + "en_question": "Who is the most well known and successful entrepreneur in your country?", + "annotations": [ + { + "answers": [ + "mübariz mənsimov" + ], + "en_answers": [ + "mubariz mansimov", + "mübariz mansimov" + ], + "count": 3 + }, + { + "answers": [ + "hacı zeynalabdin tağıyev" + ], + "en_answers": [ + "haji zeynalabdin taghiyev", + "zeynalabdin taghiyev", + "hajji mirza zeynalabdin taghi", + "hajji mirza zeynalabdin taghiyev" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-47": { + "question": "Azərbaycanda evlərin arxa bağçasında adətən nələr tapıla bilər?", + "en_question": "What can typically be found in the back garden of houses in your country?", + "annotations": [ + { + "answers": [ + "meyvə ağacları", + "meyvə ağacları və tərəvəz bağları", + "meyvə ağacı" + ], + "en_answers": [ + "fruit tree" + ], + "count": 3 + }, + { + "answers": [ + "güllər", + "gül" + ], + "en_answers": [ + "flower" + ], + "count": 2 + }, + { + "answers": [ + "tərəvəz bağları", + "meyvə ağacları və tərəvəz bağları" + ], + "en_answers": [ + "vegetable garden" + ], + "count": 1 + }, + { + "answers": [ + "zibil" + ], + "en_answers": [ + "trash", + "garbage" + ], + "count": 1 + }, + { + "answers": [ + "ağaclar", + "ağac" + ], + "en_answers": [ + "tree" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-49": { + "question": "Azərbaycanda ən məşhur ailənin adı nədir?", + "en_question": "What is the name of the most famous family in your country?", + "annotations": [ + { + "answers": [ + "paşayevlər" + ], + "en_answers": [ + "pashayevs" + ], + "count": 2 + }, + { + "answers": [ + "əliyevlər" + ], + "en_answers": [ + "aliyevs" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-50": { + "question": "Azərbaycanda ən çox yayılmış soyad hansıdır?", + "en_question": "What is the most common family name in your country?", + "annotations": [ + { + "answers": [ + "məmmədov" + ], + "en_answers": [ + "mammadov" + ], + "count": 2 + }, + { + "answers": [ + "əliyev" + ], + "en_answers": [ + "aliyev" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-55": { + "question": "Azərbaycanda ailələr daha çox hansı dinə etiqad edirlər?", + "en_question": "Which religion is most commonly practiced by families in your country?", + "annotations": [ + { + "answers": [ + "i̇slam", + "i̇slam dini" + ], + "en_answers": [ + "islam", + "islam religion" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-56": { + "question": "Azərbaycanda ailələr tərəfindən ən çox danışılan xarici dil hansıdır?", + "en_question": "What is the most popular foreign language spoken by families in your country?", + "annotations": [ + { + "answers": [ + "rus dili", + "rus" + ], + "en_answers": [ + "russian language", + "russian" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-59": { + "question": "Azərbaycandan olan ailələrin immiqrasiya etmək üçün ən populyar yeri hansı ölkədir?", + "en_question": "Which country is the most popular destination for families from your country to emigrate to?", + "annotations": [ + { + "answers": [ + "rusiya" + ], + "en_answers": [ + "russia" + ], + "count": 5 + }, + { + "answers": [ + "türkiyə" + ], + "en_answers": [ + "turkey", + "türkiye" + ], + "count": 2 + }, + { + "answers": [ + "kanada" + ], + "en_answers": [ + "canada" + ], + "count": 1 + }, + { + "answers": [ + "almaniya" + ], + "en_answers": [ + "germany" + ], + "count": 1 + }, + { + "answers": [ + "abş" + ], + "en_answers": [ + "us", + "united states" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-68": { + "question": "Azərbaycanda məktəblərdə pis davranışın nəticələri nələrdir?", + "en_question": "What repercussions are there for bad behavior in schools in your country?", + "annotations": [ + { + "answers": [ + "valideynlərlə görüş", + "disiplin cəzaları və valideynlərlə görüş", + "valideynlərə bildiriş", + "valideynlərlə söhbət" + ], + "en_answers": [ + "meeting with parents", + "parent-teacher conference", + "parent meeting", + "notice to parents", + "talking to parents" + ], + "count": 3 + }, + { + "answers": [ + "disiplin cəzaları", + "disiplin cəzaları və valideynlərlə görüş", + "cəza almaq" + ], + "en_answers": [ + "disciplinary punishments", + "get punished", + "punishment" + ], + "count": 2 + }, + { + "answers": [ + "müəllim tərəfindən danlanmaq", + "müəllim tərfindən danlanmaq" + ], + "en_answers": [ + "scolded by the teacher" + ], + "count": 1 + }, + { + "answers": [ + "məktəbdən uzaqlaşdırılmaq" + ], + "en_answers": [ + "get suspended from school", + "suspension" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-69": { + "question": "Azərbaycanda ədəbiyyat dərsində adətən hansı yazıçılar öyrənilir?", + "en_question": "Which writers are commonly studied in literature class in your country?", + "annotations": [ + { + "answers": [ + "nizami gəncəvi", + "nizami gəncəvi və füzuli", + "nizami" + ], + "en_answers": [ + "nizami ganjavi", + "nizami ganje'i", + "nizami", + "nezāmi", + "jamal ad-dīn abū muḥammad ilyās ibn-yūsuf ibn-zakkī" + ], + "count": 5 + }, + { + "answers": [ + "füzuli", + "nizami gəncəvi və füzuli", + "fizuli", + "məhəmməd fizuli" + ], + "en_answers": [ + "fuzuli", + "muhammad bin suleyman" + ], + "count": 4 + }, + { + "answers": [ + "səməd vurğun" + ], + "en_answers": [ + "samad vurghun" + ], + "count": 3 + }, + { + "answers": [ + "sabir" + ], + "en_answers": [ + "sabir", + "mirza alakbar sabir" + ], + "count": 1 + }, + { + "answers": [ + "cəfər cabbarlı" + ], + "en_answers": [ + "jafar jabbarli", + "jafar jabbarly", + "jafar gafar oghlu jabbarly" + ], + "count": 1 + }, + { + "answers": [ + "mikayıl müşfiq" + ], + "en_answers": [ + "mikayil mushfig" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-70": { + "question": "Azərbaycanda orta məktəblər üçün bir ildə neçə tətil var? (Yalnız ərəb rəqəmləri (məsələn, 1) göstərin.)", + "en_question": "How many school breaks are there in a year for high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-72": { + "question": "Azərbaycanda tələbələr adətən dərs oxumaq üçün hansı onlayn resursdan istifadə edirlər?", + "en_question": "Which online resource do students usually use to study in your country?", + "annotations": [ + { + "answers": [ + "youtube" + ], + "en_answers": [ + "youtube" + ], + "count": 3 + }, + { + "answers": [ + "khan akademiya", + "khan academy və coursera" + ], + "en_answers": [ + "khan academy" + ], + "count": 1 + }, + { + "answers": [ + "coursera", + "khan academy və coursera" + ], + "en_answers": [ + "coursera" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-75": { + "question": "Azərbaycanda universitetlərdə tədris həftələri baxımından bir semestr orta hesabla nə qədərdir? (Yalnız ərəb rəqəmləri (məsələn, 1) göstərin.)", + "en_question": "What is the average length of a semester in terms of weeks of teaching at universities in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 2 + }, + { + "answers": [ + "16", + "16 həftə" + ], + "en_answers": [ + "16" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-76": { + "question": "Azərbaycanda hansı hava limanı bayram mövsümündə ən işləkdir?", + "en_question": "Which airport in your country is the busiest during the holiday season?", + "annotations": [ + { + "answers": [ + "heydər əliyev", + "heydər əliyev beynəlxalq hava limanı", + "heydər əliyev adına hava limanı", + "heydər əliyev havalimanı" + ], + "en_answers": [ + "heydar aliyev", + "heydar aliyev international airport", + "heydar aliyev airport" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-79": { + "question": "Azərbaycanın hansı bölgəsi teatr tamaşaları ilə məşhurdur?", + "en_question": "Which region of your country is well known for its theatrical performances?", + "annotations": [ + { + "answers": [ + "bakı" + ], + "en_answers": [ + "baku" + ], + "count": 3 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-en-87": { + "question": "Azərbaycanda ən məşhur tarixi abidə hansıdır?", + "en_question": "What is the most famous historic landmark in your country?", + "annotations": [ + { + "answers": [ + "qız qalası" + ], + "en_answers": [ + "maiden tower" + ], + "count": 5 + }, + { + "answers": [ + "şirvanşahlar sarayı" + ], + "en_answers": [ + "shirvanshah's palace", + "palace of the shirvanshahs" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-90": { + "question": "Azərbaycanda ən məşhur otel brendi hansıdır?", + "en_question": "What is the most famous hotel brand in your country?", + "annotations": [ + { + "answers": [ + "hilton", + "hilton otel" + ], + "en_answers": [ + "hilton", + "hilton hotel" + ], + "count": 3 + }, + { + "answers": [ + "four seasons", + "fourseasons" + ], + "en_answers": [ + "four seasons" + ], + "count": 2 + }, + { + "answers": [ + "fairmont" + ], + "en_answers": [ + "fairmont" + ], + "count": 1 + }, + { + "answers": [ + "şahdağ" + ], + "en_answers": [ + "shahdag" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-05": { + "question": "Azərbaycanda ən populyar teykaut səhər yeməyi seçimi nədir?", + "en_question": "What is the most popular grab-and-go breakfast option in your country?", + "annotations": [ + { + "answers": [ + "sendviç", + "qəlyanaltı sandviçlər" + ], + "en_answers": [ + "sandwich" + ], + "count": 3 + }, + { + "answers": [ + "simit" + ], + "en_answers": [ + "simit", + "turkish sesame bread", + "turkish bagel" + ], + "count": 2 + }, + { + "answers": [ + "qoğal" + ], + "en_answers": [ + "gogal", + "savory pastry" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-06": { + "question": "Azərbaycanda gənclər arasında ən populyar yemək hansıdır?", + "en_question": "What is the most popular food in your country among young people?", + "annotations": [ + { + "answers": [ + "dönər" + ], + "en_answers": [ + "doner kebab", + "döner kebab" + ], + "count": 4 + }, + { + "answers": [ + "pizza", + "xüsusilə pizza və burger" + ], + "en_answers": [ + "pizza" + ], + "count": 2 + }, + { + "answers": [ + "burger", + "xüsusilə pizza və burger" + ], + "en_answers": [ + "burger" + ], + "count": 2 + }, + { + "answers": [ + "fast food" + ], + "en_answers": [ + "fast food" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-08": { + "question": "Azərbaycanda festivallarda ən çox hansı spirtli içkilər istehlak olunur?", + "en_question": "What type of alcoholic drink is most commonly consumed at festivals in your country?", + "annotations": [ + { + "answers": [ + "pivə", + "şərab və pivə" + ], + "en_answers": [ + "beer" + ], + "count": 3 + }, + { + "answers": [ + "araq", + "arağ" + ], + "en_answers": [ + "arak", + "araq", + "distilled spirit" + ], + "count": 1 + }, + { + "answers": [ + "şərab", + "şərab və pivə" + ], + "en_answers": [ + "wine" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-13": { + "question": "Azərbaycanda ən çox içilən səhər içkisi nədir?", + "en_question": "What is the most common morning drink in your country?", + "annotations": [ + { + "answers": [ + "çay" + ], + "en_answers": [ + "tea" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-15": { + "question": "Azərbaycanda ən məşhur ənənəvi desert hansıdır?", + "en_question": "What is the most popular traditional dessert in your country?", + "annotations": [ + { + "answers": [ + "paxlava", + "paxlava və şəkərbura" + ], + "en_answers": [ + "pakhlava", + "baklava", + "dessert made of filo pastry sheets" + ], + "count": 5 + }, + { + "answers": [ + "şəkərbura", + "paxlava və şəkərbura" + ], + "en_answers": [ + "shekarbura", + "half-moon shaped sweet pastry" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-21": { + "question": "Azərbaycanda ən populyar raket idman növü hansıdır?", + "en_question": "What is the most popular racket sport in your country?", + "annotations": [ + { + "answers": [ + "tennis" + ], + "en_answers": [ + "tennis" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-24": { + "question": "Azərbaycanda ən populyar atletika idman növü hansıdır?", + "en_question": "What is the most popular track and field sport in your country?", + "annotations": [ + { + "answers": [ + "yüngül atletika" + ], + "en_answers": [ + "track and field" + ], + "count": 1 + }, + { + "answers": [ + "üzgüçülük" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + }, + { + "answers": [ + "100m qaçış" + ], + "en_answers": [ + "100 metres", + "100-meter dash" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-29": { + "question": "Azərbaycanda hansı beynəlxalq idman yarışması ən populyardır?", + "en_question": "Which international sporting event is the most popular in your country?", + "annotations": [ + { + "answers": [ + "formula 1 baki qran-prisi", + "formula 1 bakı qran pri", + "formula 1" + ], + "en_answers": [ + "formula 1 baku grand prix", + "azerbaijan grand prix", + "formula 1" + ], + "count": 2 + }, + { + "answers": [ + "avropa oyunları" + ], + "en_answers": [ + "european games" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-47": { + "question": "Nahar və şam yeməyi istisna olmaqla, Azərbaycanda tipik iş fasilələri neçə dəqiqədir? (Yalnız Ərəb rəqəmləri (məsələn, 1) göstərin.)", + "en_question": "How long (in minutes) are typical work breaks in your country, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "30", + "15-30" + ], + "en_answers": [ + "30" + ], + "count": 2 + }, + { + "answers": [ + "15", + "15-30" + ], + "en_answers": [ + "15" + ], + "count": 1 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + }, + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-58": { + "question": "Azərbaycanda hansı iş az maaşlı hesab olunur?", + "en_question": "Which job is considered underpaid in your country?", + "annotations": [ + { + "answers": [ + "müəllimlik" + ], + "en_answers": [ + "tutoring", + "teacher", + "teaching" + ], + "count": 3 + }, + { + "answers": [ + "satış işçiləri", + "satış və xidmət işçiləri", + "satıcı" + ], + "en_answers": [ + "sales staff", + "sales worker", + "seller" + ], + "count": 2 + }, + { + "answers": [ + "xidmət işçiləri", + "satış və xidmət işçiləri" + ], + "en_answers": [ + "service staff", + "service worker" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-76": { + "question": "Azərbaycanda Pasxa bayramında ən çox hansı yemək verilir?", + "en_question": "What is the most common food served during Easter in your country?", + "annotations": [ + { + "answers": [ + "kuliç", + "kuliçi" + ], + "en_answers": [ + "kulich", + "russian easter bread" + ], + "count": 3 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-gr-82": { + "question": "Azərbaycanda yaşlı əhali arasında ən populyar musiqi janrı hansıdır?", + "en_question": "What is the most popular music genre among the elderly population in your country?", + "annotations": [ + { + "answers": [ + "muğam" + ], + "en_answers": [ + "mugham", + "traditional azerbaijani music", + "mughamat" + ], + "count": 3 + }, + { + "answers": [ + "klassik musiqi", + "kklassik musiqi" + ], + "en_answers": [ + "classical music", + "classic music" + ], + "count": 1 + }, + { + "answers": [ + "retro" + ], + "en_answers": [ + "retro" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-88": { + "question": "Azərbaycanda dəfn mərasimlərində adətən hansı içki təklif olunur?", + "en_question": "What drink is usually offered at funerals in your country?", + "annotations": [ + { + "answers": [ + "çay" + ], + "en_answers": [ + "tea" + ], + "count": 3 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "New-gr-89": { + "question": "Azərbaycanda toy mərasimlərində adətən hansı içki təklif olunur?", + "en_question": "What drink is usually offered at weddings in your country?", + "annotations": [ + { + "answers": [ + "araq" + ], + "en_answers": [ + "arak", + "araq", + "distilled spirit" + ], + "count": 2 + }, + { + "answers": [ + "şampan", + "şampan və şərab" + ], + "en_answers": [ + "champagne" + ], + "count": 1 + }, + { + "answers": [ + "şərab", + "şampan və şərab" + ], + "en_answers": [ + "wine" + ], + "count": 1 + }, + { + "answers": [ + "soda" + ], + "en_answers": [ + "carbonated water" + ], + "count": 1 + }, + { + "answers": [ + "meyvə şirələri" + ], + "en_answers": [ + "juice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-07": { + "question": "Hansı yemək Azərbaycandan qaynaqlanır və dünyanın hər yerində tapıla bilər?", + "en_question": "What food originated from your country and can be found all over the world?", + "annotations": [ + { + "answers": [ + "dolma" + ], + "en_answers": [ + "dolma", + "stuffed grape leaves" + ], + "count": 1 + }, + { + "answers": [ + "qutab" + ], + "en_answers": [ + "qutab", + "gutap", + "kutab", + "stuffed flatbread" + ], + "count": 1 + }, + { + "answers": [ + "plov" + ], + "en_answers": [ + "pilaf", + "azerbaijani rice", + "pilav", + "pilau" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 1, + "no-answer": 0 + } + }, + "New-ha-08": { + "question": "Azərbaycanda uşaqlar tərəfindən adətən xoşlanılmayan, lakin yaşlılar tərəfindən sevilən yemək hansıdır?", + "en_question": "What food is typically disliked by children but enjoyed by the elderly in your country?", + "annotations": [ + { + "answers": [ + "dovğa", + "dovğa (yoğurtlu tərəvəz şorbası)" + ], + "en_answers": [ + "dovga", + "dovgha", + "yogurt soup with vegetables" + ], + "count": 1 + }, + { + "answers": [ + "kələm dolması" + ], + "en_answers": [ + "cabbage dolma", + "stuffed cabbage", + "farcellets de col", + "cabbage roll" + ], + "count": 1 + }, + { + "answers": [ + "şorba" + ], + "en_answers": [ + "soup" + ], + "count": 1 + }, + { + "answers": [ + "çığırtma" + ], + "en_answers": [ + "chigirtma", + "meal with egg" + ], + "count": 1 + }, + { + "answers": [ + "bozbaş" + ], + "en_answers": [ + "bozbash", + "meat soup", + "meat stew" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-09": { + "question": "Azərbaycanda ən çox hansı yemək qabından istifadə olunur?", + "en_question": "What cooking utensil is most commonly used in your country?", + "annotations": [ + { + "answers": [ + "boşqab" + ], + "en_answers": [ + "plate" + ], + "count": 3 + }, + { + "answers": [ + "dərin qazan", + "dərin qazan və tavalar" + ], + "en_answers": [ + "deep pot", + "deep steel" + ], + "count": 1 + }, + { + "answers": [ + "tavalar", + "dərin qazan və tavalar", + "tava" + ], + "en_answers": [ + "pan" + ], + "count": 1 + }, + { + "answers": [ + "plastik qablardan" + ], + "en_answers": [ + "plastic plates" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-13": { + "question": "Azərbaycanda ən populyar tərəvəz hansıdır?", + "en_question": "Which is the most popular vegetable in your country?", + "annotations": [ + { + "answers": [ + "xiyar", + "pomidor və xiyar" + ], + "en_answers": [ + "cucumber" + ], + "count": 4 + }, + { + "answers": [ + "pomidor", + "pomidor və xiyar" + ], + "en_answers": [ + "tomato" + ], + "count": 3 + }, + { + "answers": [ + "vəzəri" + ], + "en_answers": [ + "watercress", + "garden cress", + "cress" + ], + "count": 1 + }, + { + "answers": [ + "kartof" + ], + "en_answers": [ + "potato" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-19": { + "question": "Azərbaycanda idman üçün hansı heyvandan istifadə olunur?", + "en_question": "Which animal is used for sports in your country?", + "annotations": [ + { + "answers": [ + "at", + "at (at üstündə idman növləri üçün)" + ], + "en_answers": [ + "horse" + ], + "count": 3 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "New-ha-66": { + "question": "Azərbaycanda ən məşhur toy məkanı hansıdır?", + "en_question": "What is the most popular wedding venue in your country?", + "annotations": [ + { + "answers": [ + "restoran", + "restoranlar" + ], + "en_answers": [ + "restaurant", + "restaurants" + ], + "count": 2 + }, + { + "answers": [ + "qalaaltı kurortları" + ], + "en_answers": [ + "qalaalti hotel & spa" + ], + "count": 1 + }, + { + "answers": [ + "şadlıq sarayları" + ], + "en_answers": [ + "wedding hall" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-01": { + "question": "Azərbaycanda hansı kofe dükkanı markası ən populyardır?", + "en_question": "Which coffee shop brand is the most popular in your country?", + "annotations": [ + { + "answers": [ + "starbucks" + ], + "en_answers": [ + "starbucks" + ], + "count": 3 + }, + { + "answers": [ + "mado" + ], + "en_answers": [ + "mado" + ], + "count": 2 + }, + { + "answers": [ + "gloria jean’s coffees" + ], + "en_answers": [ + "gloria jean's coffee" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-03": { + "question": "Xaricdəki restoranlarda adətən Azərbaycandan hansı növ yeməklər təqdim edilir?", + "en_question": "What type of food from your country is typically served in restaurants overseas?", + "annotations": [ + { + "answers": [ + "dolma", + "dolma və plov" + ], + "en_answers": [ + "dolma", + "stuffed grape leaves" + ], + "count": 2 + }, + { + "answers": [ + "plov", + "dolma və plov" + ], + "en_answers": [ + "pilaf", + "azerbaijani rice", + "pilav", + "pilau" + ], + "count": 2 + }, + { + "answers": [ + "piti" + ], + "en_answers": [ + "piti" + ], + "count": 1 + }, + { + "answers": [ + "qutab" + ], + "en_answers": [ + "qutab", + "gutap", + "kutab", + "stuffed flatbread" + ], + "count": 1 + }, + { + "answers": [ + "sac" + ], + "en_answers": [ + "sac", + "roasted meat on metal round disk" + ], + "count": 1 + }, + { + "answers": [ + "kabab" + ], + "en_answers": [ + "kebab" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "New-in-33": { + "question": "Azərbaycanda adətən mədənçılıqla əlaqələndirilən bölgə hansıdır?", + "en_question": "What region in your country is usually associated with mining?", + "annotations": [ + { + "answers": [ + "kəlbəcər" + ], + "en_answers": [ + "kalbajar" + ], + "count": 2 + }, + { + "answers": [ + "qəbələ" + ], + "en_answers": [ + "gabala", + "qabala", + "gebele" + ], + "count": 1 + }, + { + "answers": [ + "gədəbəy" + ], + "en_answers": [ + "gadabay" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-34": { + "question": "Azərbaycanda adətən neftlə əlaqələndirilən bölgə hansıdır?", + "en_question": "What region in your country is usually associated with oil?", + "annotations": [ + { + "answers": [ + "abşeron" + ], + "en_answers": [ + "absheron" + ], + "count": 3 + }, + { + "answers": [ + "xəzər dənizi", + "xəzər dənizi regionu" + ], + "en_answers": [ + "caspian sea" + ], + "count": 1 + }, + { + "answers": [ + "bakı" + ], + "en_answers": [ + "baku" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-62": { + "question": "Azərbaycanda mühəndislik ixtisası ilə məşhur olan universitetin rəsmi adı nədir?", + "en_question": "What university in your country is popular because of its engineering major? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "azərbaycan texniki universiteti", + "azərbaycan texiniki üniversiteti", + "aztu", + "atu" + ], + "en_answers": [ + "azerbaijan technical university" + ], + "count": 2 + }, + { + "answers": [ + "azərbaycan dövlət neft və sənaye universiteti", + "azərbaycan neft və sənaye universiteti", + "asoiu" + ], + "en_answers": [ + "azerbaijan state oil and industry university" + ], + "count": 2 + }, + { + "answers": [ + "ada" + ], + "en_answers": [ + "ada university", + "ada", + "‎azerbaijan diplomatic academy" + ], + "count": 1 + }, + { + "answers": [ + "banm", + "baki ali neft məktəbi" + ], + "en_answers": [ + "baku higher oil school", + "bhos" + ], + "count": 1 + }, + { + "answers": [ + "bakı mühəndislik universiteti", + "bmu" + ], + "en_answers": [ + "baku engineering university" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-63": { + "question": "Azərbaycanda tibb fakültəsi ilə məşhur olan universitetin rəsmi adı nədir?", + "en_question": "What university in your country is popular because of its school of medicine? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "azərbaycan tibb universiteti", + "azərbaycan tibb üniversiteti", + "azerbaycan tibb universiteti", + "atu" + ], + "en_answers": [ + "azerbaijan medical university" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-78": { + "question": "Azərbaycanda ən populyar ödəniş üsulu hansıdır?", + "en_question": "What is the most popular payment method in your country?", + "annotations": [ + { + "answers": [ + "nağd", + "nəğd", + "nəğd pulla ödəmək" + ], + "en_answers": [ + "cash" + ], + "count": 5 + }, + { + "answers": [ + "kart", + "bank kartları ilə" + ], + "en_answers": [ + "card" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-80": { + "question": "Azərbaycanda ən məşhur mövzu parkı hansıdır?", + "en_question": "What is the most famous theme park in your country?", + "annotations": [ + { + "answers": [ + "amburan beach club" + ], + "en_answers": [ + "amburan beach club" + ], + "count": 1 + }, + { + "answers": [ + "dalga beach aquapark resort" + ], + "en_answers": [ + "dalga beach aquapark resort" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 1, + "no-answer": 0 + } + }, + "New-ko-01": { + "question": "Azərbaycanda uşaqlar tərəfindən ən çox izlənən uşaq animasiyası hansıdır?", + "en_question": "What is the most popular children's animation that is commonly watched by kids in your country?", + "annotations": [ + { + "answers": [ + "maşa və ayı" + ], + "en_answers": [ + "masha and the bear" + ], + "count": 3 + }, + { + "answers": [ + "tom və cerri", + "tom və ceri" + ], + "en_answers": [ + "tom and jerry" + ], + "count": 2 + }, + { + "answers": [ + "vinni-pux" + ], + "en_answers": [ + "winnie-the-pooh" + ], + "count": 1 + }, + { + "answers": [ + "smurflar" + ], + "en_answers": [ + "smurfs" + ], + "count": 1 + }, + { + "answers": [ + "nu poqodi", + "\"nu poqodi\"" + ], + "en_answers": [ + "well, just you wait" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-02": { + "question": "Azərbaycanda hamilə qadınlar üçün ən populyar prenatal təhsil fəaliyyəti nədir?", + "en_question": "What is the most popular prenatal education activity for pregnant women in your country?", + "annotations": [ + { + "answers": [ + "yoqa", + "yoqa və prenatal siniflər" + ], + "en_answers": [ + "yoga" + ], + "count": 1 + }, + { + "answers": [ + "prenatal siniflər", + "yoqa və prenatal siniflər", + "prenatal sinif" + ], + "en_answers": [ + "prenatal class" + ], + "count": 1 + }, + { + "answers": [ + "meditasiya" + ], + "en_answers": [ + "meditation" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-03": { + "question": "Azərbaycanda ailələrin birlikdə oxuduğu ən məşhur uşaq mahnısı hansıdır?", + "en_question": "What is the most popular children's song in your country that families sing together?", + "annotations": [ + { + "answers": [ + "cücələrim", + "cip-cip cücələrim", + "cip cip cücələrim" + ], + "en_answers": [ + "jujalarim", + "my little chicks" + ], + "count": 5 + }, + { + "answers": [ + "tıq-tıq xanım" + ], + "en_answers": [ + "knock-knock lady", + "tiq tiq xanim" + ], + "count": 1 + }, + { + "answers": [ + "oynaq topum" + ], + "en_answers": [ + "my playful ball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-04": { + "question": "Azərbaycanda oğlanlar arasında ən populyar oyuncaqlar hansılardır?", + "en_question": "Which toys are most popular among boys in your country?", + "annotations": [ + { + "answers": [ + "maşın", + "maşın modelləri", + "lego və maşın modelləri", + "maşınlar", + "maşın model" + ], + "en_answers": [ + "car", + "car model" + ], + "count": 5 + }, + { + "answers": [ + "lego", + "lego və maşın modelləri" + ], + "en_answers": [ + "lego" + ], + "count": 1 + }, + { + "answers": [ + "avtomat və tapançalar" + ], + "en_answers": [ + "gun" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-05": { + "question": "Azərbaycanda qızlar arasında ən populyar oyuncaqlar hansılardır?", + "en_question": "Which toys are most popular among girls in your country?", + "annotations": [ + { + "answers": [ + "gəlincik" + ], + "en_answers": [ + "doll" + ], + "count": 3 + }, + { + "answers": [ + "barbie kuklaları", + "barbie", + "barbi" + ], + "en_answers": [ + "barbie dolls", + "barbie" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-06": { + "question": "Azərbaycanda uşaqlara adətən danışılan ən məşhur xalq nağılı hansıdır?", + "en_question": "What is the most popular folk tale in your country that is typically told to children?", + "annotations": [ + { + "answers": [ + "cırtdan" + ], + "en_answers": [ + "dwarf" + ], + "count": 3 + }, + { + "answers": [ + "məlikməmməd nağılı", + "malikməmməd nağılı" + ], + "en_answers": [ + "tale of malikmammad" + ], + "count": 1 + }, + { + "answers": [ + "tıq-tıq xanım", + "tiq-tıq xanım" + ], + "en_answers": [ + "knock-knock lady", + "tiq tiq xanim" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-07": { + "question": "Azərbaycanda dəfn mərasimlərində istifadə olunan adətən başsağlığı simvolu nədir?", + "en_question": "What is the customary symbol of condolence used at funerals in your country?", + "annotations": [ + { + "answers": [ + "qara lent" + ], + "en_answers": [ + "black tape" + ], + "count": 1 + }, + { + "answers": [ + "gül" + ], + "en_answers": [ + "flower" + ], + "count": 1 + }, + { + "answers": [ + "\"allah rəhmət eləsin\" demək" + ], + "en_answers": [ + "say \"may she/he rest in peace\"" + ], + "count": 1 + }, + { + "answers": [ + "qızılgül" + ], + "en_answers": [ + "rose" + ], + "count": 1 + }, + { + "answers": [ + "qərənfil" + ], + "en_answers": [ + "carnation" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-08": { + "question": "Azərbaycanda universitet tələbələri ən çox harada yarım ştat işləyirlər?", + "en_question": "Where do university students in your country tend to work part-time the most?", + "annotations": [ + { + "answers": [ + "kafe", + "kafelər", + "kafelər və restoranlar", + "kafedə" + ], + "en_answers": [ + "cafe" + ], + "count": 4 + }, + { + "answers": [ + "restoranlar", + "kafelər və restoranlar", + "restoranda", + "restoran" + ], + "en_answers": [ + "restaurant", + "restaurant" + ], + "count": 3 + }, + { + "answers": [ + "kitabxanalar", + "kitabxananı" + ], + "en_answers": [ + "libraries", + "library" + ], + "count": 1 + }, + { + "answers": [ + "mağazada" + ], + "en_answers": [ + "store" + ], + "count": 1 + }, + { + "answers": [ + "i̇ndustriyada" + ], + "en_answers": [ + "industry" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-09": { + "question": "Azərbaycanda fəaliyyət göstərən şirkətlərdə ən çox hansı komanda quruculuğu fəaliyyətləri həyata keçirilir?", + "en_question": "What are the most frequently practiced team-building activities in companies based in your country?", + "annotations": [ + { + "answers": [ + "açıq havada tədbir", + "açıq havada tədbirlər və idman yarışları" + ], + "en_answers": [ + "outdoor event" + ], + "count": 1 + }, + { + "answers": [ + "idman yarışları", + "açıq havada tədbirlər və idman yarışları" + ], + "en_answers": [ + "sports competition" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-10": { + "question": "Azərbaycanda insanlar əlavə iş olaraq ən çox hansı fəaliyyətlərlə məşğul olurlar?", + "en_question": "What are the most common activities people do as a side job in your country?", + "annotations": [ + { + "answers": [ + "sürücülük", + "taksi", + "taksi sürücülüyü" + ], + "en_answers": [ + "driving", + "taxi", + "taxi driving" + ], + "count": 3 + }, + { + "answers": [ + "freelance", + "freelance və özəl dərslər" + ], + "en_answers": [ + "freelancer" + ], + "count": 1 + }, + { + "answers": [ + "özəl dərslər", + "freelance və özəl dərslər" + ], + "en_answers": [ + "private class" + ], + "count": 1 + }, + { + "answers": [ + "biznes" + ], + "en_answers": [ + "business" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-02": { + "question": "Azərbaycanda turistlər üçün ən məşhur yeməli suvenir hansıdır?", + "en_question": "What is the most famous edible souvenir for tourists in your country?", + "annotations": [ + { + "answers": [ + "xurşun qoz-fındıq şirniyyatı" + ], + "en_answers": [ + "khurshan nut candy" + ], + "count": 1 + }, + { + "answers": [ + "şəkərbura" + ], + "en_answers": [ + "shekarbura", + "half-moon shaped sweet pastry" + ], + "count": 1 + }, + { + "answers": [ + "paxlava" + ], + "en_answers": [ + "pakhlava", + "baklava", + "dessert made of filo pastry sheets" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-06": { + "question": "Azərbaycanda ən məşhur yemək hansıdır?", + "en_question": "What is the most popular stew in your country?", + "annotations": [ + { + "answers": [ + "plov" + ], + "en_answers": [ + "pilaf", + "azerbaijani rice", + "pilav", + "pilau" + ], + "count": 3 + }, + { + "answers": [ + "dolma" + ], + "en_answers": [ + "dolma", + "stuffed grape leaves" + ], + "count": 3 + }, + { + "answers": [ + "qutab" + ], + "en_answers": [ + "qutab", + "gutap", + "kutab", + "stuffed flatbread" + ], + "count": 1 + }, + { + "answers": [ + "kabab" + ], + "en_answers": [ + "kebab" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-11": { + "question": "Azərbaycan yeməklərində ən çox istifadə olunan ədviyyat/ot növü hansıdır?", + "en_question": "What is the most common spice/herb used in dishes from your country?", + "annotations": [ + { + "answers": [ + "duz", + "duzç istiot" + ], + "en_answers": [ + "salt" + ], + "count": 4 + }, + { + "answers": [ + "istiot", + "duzç istiot", + "i̇stiot" + ], + "en_answers": [ + "pepper" + ], + "count": 2 + }, + { + "answers": [ + "sumax" + ], + "en_answers": [ + "sumac" + ], + "count": 1 + }, + { + "answers": [ + "zəfəran" + ], + "en_answers": [ + "saffron" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-16": { + "question": "Azərbaycanda ən məşhur ənənəvi idman növü hansıdır?", + "en_question": "What is the most famous traditional sport in your country?", + "annotations": [ + { + "answers": [ + "güləş" + ], + "en_answers": [ + "wrestling" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 1 + } + }, + "New-pe-20": { + "question": "Azərbaycanda çimərlikdə oynamaq üçün hansı idman növü populyardır?", + "en_question": "What sport is popular to play on the beach in your country?", + "annotations": [ + { + "answers": [ + "voleybol", + "volleybol" + ], + "en_answers": [ + "volleyball" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-45": { + "question": "Ramazan ayında Azərbaycanda adətən iş qrafiki necə olur?", + "en_question": "What is the usual work schedule during the month of Ramadan in your country?", + "annotations": [ + { + "answers": [ + "dəyişiklik olmur", + "eyni", + "digər günlərlə eyni" + ], + "en_answers": [ + "there is no change", + "same", + "same as other days" + ], + "count": 3 + }, + { + "answers": [ + "qısalır", + "i̇ş saatları qısalır" + ], + "en_answers": [ + "short" + ], + "count": 1 + }, + { + "answers": [ + "i̇ş günü olmur", + "i̇ş günü olmmur", + "olmur" + ], + "en_answers": [ + "there is no working day", + "don't work" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-47": { + "question": "Azərbaycanda Tələbə Günü nə vaxt qeyd olunur? (MM/DD formatında verin (məsələn, 12/31).)", + "en_question": "When is Student's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [], + "idks": { + "not-applicable": 3, + "idk": 2, + "no-answer": 0 + } + }, + "New-pe-49": { + "question": "Azərbaycanda ailələr birlikdə dua etmək üçün harada toplaşırlar?", + "en_question": "Where do families gather to pray together in your country?", + "annotations": [ + { + "answers": [ + "məsciddə", + "məscidlərdə", + "məscid" + ], + "en_answers": [ + "at mosque", + "at mosques", + "mosque" + ], + "count": 4 + }, + { + "answers": [ + "evdə", + "ev" + ], + "en_answers": [ + "home", + "house" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-53": { + "question": "Azərbaycanda Atalar Günündə (ya da Valideynlər Günündə) atalara nə hədiyyələr verilir?", + "en_question": "What gifts do fathers get on Father's Day (or Parents' Day) in your country?", + "annotations": [ + { + "answers": [ + "saat" + ], + "en_answers": [ + "watch" + ], + "count": 2 + }, + { + "answers": [ + "ətir", + "ətir və kitablar" + ], + "en_answers": [ + "perfume" + ], + "count": 2 + }, + { + "answers": [ + "kitablar", + "ətir və kitablar", + "kitab" + ], + "en_answers": [ + "book" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 0 + } + }, + "New-pe-54": { + "question": "Azərbaycanda Ana Günündə (və ya Valideynlər Günündə) analar nə hədiyyələr alır?", + "en_question": "What gifts do mothers get on Mother's Day (or Parents' Day) in your country?", + "annotations": [ + { + "answers": [ + "gül", + "çiçəklər", + "çiçəklər və zinət əşyaları", + "çiçək" + ], + "en_answers": [ + "flower" + ], + "count": 4 + }, + { + "answers": [ + "ziynət əşyaları", + "çiçəklər və zinət əşyaları", + "zinət əşyaları" + ], + "en_answers": [ + "jewelry" + ], + "count": 1 + }, + { + "answers": [ + "ətir" + ], + "en_answers": [ + "perfume" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-pe-59": { + "question": "Azərbaycanda adətən bir evdə neçə nəsil birlikdə yaşayır? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)", + "en_question": "How many generations typically live together in a household in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-65": { + "question": "Azərbaycanda orta təhsil məktəblərində neçə fənn tədris edilir? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)", + "en_question": "How many subjects are taught in middle schools in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 2 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + }, + { + "answers": [ + "17" + ], + "en_answers": [ + "17" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-66": { + "question": "Azərbaycanda ibtidai məktəblərdə ən populyar məktəbdənkənar fəaliyyətlər hansılardır?", + "en_question": "What is the most popular after school curriculars in elementary schools in your country?", + "annotations": [ + { + "answers": [ + "rəqs", + "rəqs və idman dərnəkləri" + ], + "en_answers": [ + "dance" + ], + "count": 2 + }, + { + "answers": [ + "idman", + "rəqs və idman dərnəkləri", + "i̇dman" + ], + "en_answers": [ + "sports", + "sports" + ], + "count": 2 + }, + { + "answers": [ + "şahmat" + ], + "en_answers": [ + "chess" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-74": { + "question": "Azərbaycanda dövlət universitetlərinin orta illik təhsil haqqı nə qədərdir?", + "en_question": "How much is the average annual tuition fee for public universities in your country?", + "annotations": [ + { + "answers": [ + "3000", + "3000 azn" + ], + "en_answers": [ + "3000" + ], + "count": 2 + }, + { + "answers": [ + "2000", + "~2000 manat" + ], + "en_answers": [ + "2000" + ], + "count": 1 + }, + { + "answers": [ + "2500", + "2500 man" + ], + "en_answers": [ + "2500" + ], + "count": 1 + } + ], + "idks": { + "Depends on the city and the university": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-76": { + "question": "Azərbaycanda parklarda hansı fəaliyyətlə məşğul olmaq populyardır?", + "en_question": "What is a popular activity to do in parks in your country?", + "annotations": [ + { + "answers": [ + "piknik", + "piknik və idman", + "piknik etmək" + ], + "en_answers": [ + "picnic" + ], + "count": 2 + }, + { + "answers": [ + "gəzmək", + "gəzinti" + ], + "en_answers": [ + "walking", + "walk" + ], + "count": 2 + }, + { + "answers": [ + "idman", + "piknik və idman" + ], + "en_answers": [ + "exercising", + "sports" + ], + "count": 1 + }, + { + "answers": [ + "maşın sürmək" + ], + "en_answers": [ + "driving cars", + "drive cars" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-78": { + "question": "Azərbaycanda keçirilən ən məşhur film festivalının adı nədir?", + "en_question": "What is the name of the most famous film festival held in your country?", + "annotations": [ + { + "answers": [ + "bakı beynəlxalq film festivalı" + ], + "en_answers": [ + "baku international film festival" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 1, + "no-answer": 0 + } + }, + "New-pe-83": { + "question": "Azərbaycanda sosial yığıncaqlar zamanı oynanılan populyar kart oyunu hansıdır?", + "en_question": "What is the popular card game played during social gatherings in your country?", + "annotations": [ + { + "answers": [ + "durak", + "duraki" + ], + "en_answers": [ + "durak" + ], + "count": 5 + }, + { + "answers": [ + "uno" + ], + "en_answers": [ + "uno" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-85": { + "question": "Azərbaycandan olanlar üçün xaricdə ən populyar turizm təyinatı haradadır?", + "en_question": "Where is the most popular tourist destination abroad for people from your country?", + "annotations": [ + { + "answers": [ + "türkiyə" + ], + "en_answers": [ + "turkey", + "türkiye" + ], + "count": 5 + }, + { + "answers": [ + "gürcüstan" + ], + "en_answers": [ + "georgia" + ], + "count": 2 + }, + { + "answers": [ + "rusiya" + ], + "en_answers": [ + "russia" + ], + "count": 1 + }, + { + "answers": [ + "dubay" + ], + "en_answers": [ + "dubai" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-86": { + "question": "Azərbaycanda ən məşhur qüllənin adı nədir?", + "en_question": "What is the name of the most famous tower in your country?", + "annotations": [ + { + "answers": [ + "teleqüllə", + "televiziya qülləsi" + ], + "en_answers": [ + "tv tower" + ], + "count": 3 + }, + { + "answers": [ + "qız qalası" + ], + "en_answers": [ + "maiden tower" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-01": { + "question": "Azərbaycanda ən çox hansı yeməli həşərat yeyilir?", + "en_question": "What edible insect is eaten most often in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 1 + } + }, + "New-spme-04": { + "question": "Azərbaycanda ən çox hansı kənd təsərrüfatı məhsulu ixrac edilir?", + "en_question": "Which agricultural product is exported most often in your country?", + "annotations": [ + { + "answers": [ + "meyvə", + "meyvə-tərəvəz", + "meyvələr", + "pambıq və meyvələr" + ], + "en_answers": [ + "fruit" + ], + "count": 3 + }, + { + "answers": [ + "pomidor" + ], + "en_answers": [ + "tomato" + ], + "count": 2 + }, + { + "answers": [ + "tərəvəz", + "meyvə-tərəvəz" + ], + "en_answers": [ + "vegetables" + ], + "count": 2 + }, + { + "answers": [ + "pambıq", + "pambıq və meyvələr" + ], + "en_answers": [ + "cotton" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-05": { + "question": "Azərbaycanda ən məşhur şirniyyatlar hansılardır?", + "en_question": "What are the most popular sweets in your country?", + "annotations": [ + { + "answers": [ + "paxlava" + ], + "en_answers": [ + "pakhlava", + "baklava", + "dessert made of filo pastry sheets" + ], + "count": 5 + }, + { + "answers": [ + "şəkərbura", + "şəkərbura və badambura" + ], + "en_answers": [ + "shekarbura", + "half-moon shaped sweet pastry" + ], + "count": 5 + }, + { + "answers": [ + "badambura", + "şəkərbura və badambura" + ], + "en_answers": [ + "badambura", + "dough filled with almonds" + ], + "count": 1 + }, + { + "answers": [ + "qoğal" + ], + "en_answers": [ + "goghal", + "savory pastry" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-15": { + "question": "Azərbaycanda ən məşhur idman içkisi hansıdır?", + "en_question": "What is the most popular sports drink in your country?", + "annotations": [ + { + "answers": [ + "i̇zotonik içkilər" + ], + "en_answers": [ + "isotonic drinks" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 1 + } + }, + "New-spme-27": { + "question": "Azərbaycanda insanların orta təhsil səviyyəsi necədir?", + "en_question": "What is the average education level for people in your country?", + "annotations": [ + { + "answers": [ + "tam orta təhsil", + "əksər insanlar tam orta təhsil alırlar.", + "orta və ya ali təhsil" + ], + "en_answers": [ + "full secondary education" + ], + "count": 3 + }, + { + "answers": [ + "kollec yada universitet", + "orta və ya ali təhsil" + ], + "en_answers": [ + "college or university" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-37": { + "question": "Azərbaycandan olan tələbələr xaricdə daha çox hansı ixtisas üzrə təhsil alırlar?", + "en_question": "Which profession is most commonly studied abroad by students from your country?", + "annotations": [ + { + "answers": [ + "mühəndislik", + "mühəndislik və tibb" + ], + "en_answers": [ + "engineering" + ], + "count": 4 + }, + { + "answers": [ + "tibb", + "mühəndislik və tibb" + ], + "en_answers": [ + "medicine" + ], + "count": 2 + }, + { + "answers": [ + "i̇qtisadiyyat" + ], + "en_answers": [ + "economy" + ], + "count": 1 + }, + { + "answers": [ + "kompüter elmləri" + ], + "en_answers": [ + "computer science" + ], + "count": 1 + }, + { + "answers": [ + "biznes" + ], + "en_answers": [ + "business" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-60": { + "question": "Azərbaycanda əksər ailələr həftənin hansı günü dini fəaliyyətlərlə məşğul olurlar? (məsələn, Bazar ertəsi, Çərşənbə axşamı)", + "en_question": "Which day of the week do most families in your country practice religious activities? (e.g. Monday, Tuesday)", + "annotations": [ + { + "answers": [ + "cümə" + ], + "en_answers": [ + "friday" + ], + "count": 3 + }, + { + "answers": [ + "bazar" + ], + "en_answers": [ + "sunday" + ], + "count": 1 + }, + { + "answers": [ + "şənbə" + ], + "en_answers": [ + "saturday" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-spme-65": { + "question": "Azərbaycanda Müstəqillik Gününü qeyd etməyin ən populyar yolu hansıdır?", + "en_question": "What is the most popular way to celebrate Independence Day in your country?", + "annotations": [ + { + "answers": [ + "bayram tədbirləri" + ], + "en_answers": [ + "holiday event" + ], + "count": 1 + }, + { + "answers": [ + "parad", + "parada qatılmaq və milli bayraqları asmaq" + ], + "en_answers": [ + "parade" + ], + "count": 1 + }, + { + "answers": [ + "milli bayraqları asmaq", + "parada qatılmaq və milli bayraqları asmaq" + ], + "en_answers": [ + "hoist the national flags", + "flag hoisting" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 1, + "no-answer": 0 + } + }, + "New-spme-68": { + "question": "Azərbaycanda uşaqlar arasında ən populyar içki nədir?", + "en_question": "What is the most popular beverage among children in your country?", + "annotations": [ + { + "answers": [ + "kola", + "koka-kola" + ], + "en_answers": [ + "cola", + "coke", + "coca-cola" + ], + "count": 3 + }, + { + "answers": [ + "meyvə şirələri", + "meyvə şirəsi" + ], + "en_answers": [ + "juice" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-76": { + "question": "Azərbaycanda Müstəqillik Gününü qeyd etmək üçün ən məşhur yer hansıdır?", + "en_question": "What is the most popular place in your country to celebrate Independence Day?", + "annotations": [ + { + "answers": [ + "bakının parkları", + "bakının mərkəzi meydanları və parkları" + ], + "en_answers": [ + "parks of baku", + "parks in baku" + ], + "count": 1 + }, + { + "answers": [ + "bakının mərkəzi meydanları", + "bakının mərkəzi meydanları və parkları" + ], + "en_answers": [ + "central squares of baku", + "central squares in baku" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-spme-78": { + "question": "Azərbaycanda ad günü mərasimlərində adətən oxunan mahnının adı nədir?", + "en_question": "What is the name of the song that is typically sung at birthday parties in your country?", + "annotations": [ + { + "answers": [ + "ad günün mübarək", + "\"ad günün mübarək\" (happy birthday)", + "happy birthday mahnısı", + "happy birthday song", + "\"ad günün mübarək\"" + ], + "en_answers": [ + "happy birthday", + "happy birthday song" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-01": { + "question": "Azərbaycanda məktəblərin qarşısında adətən hansı qəlyanaltılar satılır?", + "en_question": "What snacks are usually sold in front of schools in your country?", + "annotations": [ + { + "answers": [ + "dönər" + ], + "en_answers": [ + "doner kebab", + "döner kebab" + ], + "count": 3 + }, + { + "answers": [ + "simit" + ], + "en_answers": [ + "simit", + "turkish sesame bread", + "turkish bagel" + ], + "count": 1 + }, + { + "answers": [ + "dondurma" + ], + "en_answers": [ + "ice cream" + ], + "count": 1 + }, + { + "answers": [ + "meyvə şirələri", + "və meyvə şirələri" + ], + "en_answers": [ + "juice" + ], + "count": 1 + }, + { + "answers": [ + "qutab" + ], + "en_answers": [ + "qutab", + "gutap", + "kutab", + "stuffed flatbread" + ], + "count": 1 + }, + { + "answers": [ + "pirojki", + "pirojki və s." + ], + "en_answers": [ + "pirozhki" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-su-09": { + "question": "Azərbaycanda adətən yemək bişirmək üçün hansı yağdan istifadə olunur?", + "en_question": "What oil is usually used for cooking in your country?", + "annotations": [ + { + "answers": [ + "kərə yağı" + ], + "en_answers": [ + "butter" + ], + "count": 4 + }, + { + "answers": [ + "günəbaxan yağı", + "zeytun və günəbaxan yağı" + ], + "en_answers": [ + "sunflower oil" + ], + "count": 3 + }, + { + "answers": [ + "qarğıdalı yağı" + ], + "en_answers": [ + "corn oil" + ], + "count": 2 + }, + { + "answers": [ + "zeytun yağı", + "zeytun və günəbaxan yağı" + ], + "en_answers": [ + "olive oil" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-10": { + "question": "Azərbaycanda hamilə qadınlar tərəfindən adətən hansı qidalar istehlak edilir?", + "en_question": "What food is commonly consumed by pregnant women in your country?", + "annotations": [ + { + "answers": [ + "tərəvəz" + ], + "en_answers": [ + "vegetables" + ], + "count": 1 + }, + { + "answers": [ + "meyvə", + "meyvə və süd məhsulları" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + }, + { + "answers": [ + "süd məhsulları", + "meyvə və süd məhsulları" + ], + "en_answers": [ + "dairy product", + "milk product", + "lacticinia" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-15": { + "question": "Azərbaycanda ən məşhur ənənəvi qeyri-alkohol içki nədir?", + "en_question": "What is the most popular traditional non-alcoholic drink in your country?", + "annotations": [ + { + "answers": [ + "çay" + ], + "en_answers": [ + "tea" + ], + "count": 3 + }, + { + "answers": [ + "ayran" + ], + "en_answers": [ + "ayran", + "dhallë", + "dew", + "avamast", + "mastaw", + "shaneena", + "xynogala", + "yogurt-based beverage" + ], + "count": 1 + }, + { + "answers": [ + "kompot" + ], + "en_answers": [ + "kompot", + "compot" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-17": { + "question": "Azərbaycandakı parklarda adətən hansı idman obyektləri mövcuddur?", + "en_question": "What sports facilities are generally available in parks in your country?", + "annotations": [ + { + "answers": [ + "turnik" + ], + "en_answers": [ + "horizontal bar", + "high bar" + ], + "count": 3 + }, + { + "answers": [ + "fitnes avadanlıqları", + "idman avadanlıqları", + "bəzi idman avadanlıqları" + ], + "en_answers": [ + "fitness equipment", + "sports equipment" + ], + "count": 2 + }, + { + "answers": [ + "i̇dman meydançaları" + ], + "en_answers": [ + "sports field" + ], + "count": 1 + }, + { + "answers": [ + "basketbol lövhəsi", + "və basketbol potlar" + ], + "en_answers": [ + "basketball hoop", + "basketball backboard" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-21": { + "question": "Azərbaycanda yaşlıların adətən parklarda etdikləri ümumi fəaliyyətlər nələrdir?", + "en_question": "What are the common activities that seniors usually do in parks in your country?", + "annotations": [ + { + "answers": [ + "gəzmək", + "yürüş etmək", + "gəzinti" + ], + "en_answers": [ + "walking", + "walk" + ], + "count": 4 + }, + { + "answers": [ + "şahmat", + "şahmat/nərd oynamaq" + ], + "en_answers": [ + "chess" + ], + "count": 1 + }, + { + "answers": [ + "nərd", + "şahmat/nərd oynamaq" + ], + "en_answers": [ + "backgammon" + ], + "count": 1 + }, + { + "answers": [ + "dostlarla söhbət", + "və dostlarla söhbət", + "söhbət" + ], + "en_answers": [ + "talk to friends", + "chat with friends", + "chat" + ], + "count": 1 + }, + { + "answers": [ + "oturmaq" + ], + "en_answers": [ + "sit" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-24": { + "question": "Azərbaycanda valideynlər və uşaqlar adətən birlikdə hansı idman növləri ilə məşğul olurlar?", + "en_question": "What sports do parents and children commonly play together in your country?", + "annotations": [ + { + "answers": [ + "yüngül atletika", + "yüngül atletika və velosiped sürmək" + ], + "en_answers": [ + "track and field" + ], + "count": 1 + }, + { + "answers": [ + "velosiped sürmək", + "yüngül atletika və velosiped sürmək" + ], + "en_answers": [ + "cycling" + ], + "count": 1 + }, + { + "answers": [ + "futbol" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "voleybol", + "volleybol" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "gimnastika" + ], + "en_answers": [ + "gymnastics" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "New-su-28": { + "question": "Azərbaycan milli futbol komandası ilə hansı rəng əlaqələndirilir?", + "en_question": "What color is associated with the national soccer team of your country?", + "annotations": [ + { + "answers": [ + "ağ" + ], + "en_answers": [ + "white" + ], + "count": 2 + }, + { + "answers": [ + "qırmızı", + "qırmızı və yaşıl" + ], + "en_answers": [ + "red" + ], + "count": 1 + }, + { + "answers": [ + "yaşıl", + "qırmızı və yaşıl" + ], + "en_answers": [ + "green" + ], + "count": 1 + }, + { + "answers": [ + "göy" + ], + "en_answers": [ + "blue" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-33": { + "question": "Azərbaycanda məktəb müəllimləri üçün ümumi geyim kodu nədir?", + "en_question": "What is the common dress code for school teachers in your country?", + "annotations": [ + { + "answers": [ + "formal", + "formal və peşəkar geyim", + "qara formal kostyum", + "kostyum", + "peşəkar" + ], + "en_answers": [ + "formal clothes", + "professional clothes", + "black formal suit", + "suit" + ], + "count": 3 + }, + { + "answers": [ + "köynəklə ətək", + "don və ya köynəklə ətək geyinirlər", + "ətək və köynək" + ], + "en_answers": [ + "blouse and skirt" + ], + "count": 2 + }, + { + "answers": [ + "don", + "don və ya köynəklə ətək geyinirlər" + ], + "en_answers": [ + "dress" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-34": { + "question": "Azərbaycanda məktəblərdə musiqi ilə bağlı ən populyar sinifdənkənar fəaliyyət hansıdır?", + "en_question": "What is the most popular extracurricular activity related to music in schools in your country?", + "annotations": [ + { + "answers": [ + "musiqi alətləri", + "xor və musiqi alətləri dərsləri", + "musiqi", + "musiqi dərsləri" + ], + "en_answers": [ + "musical intrument", + "music" + ], + "count": 2 + }, + { + "answers": [ + "xor", + "xor və musiqi alətləri dərsləri" + ], + "en_answers": [ + "choir" + ], + "count": 1 + }, + { + "answers": [ + "skripka", + "skripka çalmaq" + ], + "en_answers": [ + "violin" + ], + "count": 1 + }, + { + "answers": [ + "piano" + ], + "en_answers": [ + "piano" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-su-42": { + "question": "Azərbaycanda məktəblərdə əsasən hansı din tədris edilir?", + "en_question": "What religion is mainly taught in schools in your country?", + "annotations": [ + { + "answers": [ + "i̇slam", + "i̇slam dini" + ], + "en_answers": [ + "islam" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 0, + "no-answer": 1 + } + }, + "New-su-45": { + "question": "Azərbaycanda Təhsil Günü hansı tarixdə qeyd olunur? (MM/DD formatında verin (məsələn, 12/31).)", + "en_question": "What date is Education Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "09/15" + ], + "en_answers": [ + "09/15" + ], + "count": 3 + }, + { + "answers": [ + "01/24", + "24 yanvar" + ], + "en_answers": [ + "01/24" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-50": { + "question": "Azərbaycanın dağlıq ərazilərində insanların əsas məşğuliyyəti nədir?", + "en_question": "What is the main occupation of people in mountainous areas in your country?", + "annotations": [ + { + "answers": [ + "maldarlıq", + "heyvandarlıq", + "kənd təsərrüfatı və heyvandarlıq" + ], + "en_answers": [ + "livestock farming", + "animal husbandry", + "animal agriculture" + ], + "count": 5 + }, + { + "answers": [ + "kənd təsərrüfatı", + "kənd təsərrüfatı və heyvandarlıq" + ], + "en_answers": [ + "agriculture" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-51": { + "question": "Azərbaycanın sahil bölgələrində insanların əsas məşğuliyyəti nədir?", + "en_question": "What is the main occupation of people in coastal areas in your country?", + "annotations": [ + { + "answers": [ + "balıqçılıq", + "turizm və balıqçılıq" + ], + "en_answers": [ + "fishing" + ], + "count": 3 + }, + { + "answers": [ + "turizm", + "turizm və balıqçılıq" + ], + "en_answers": [ + "tourism" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-57": { + "question": "Azərbaycanda ən çox hansı mal-qara yetişdirilir?", + "en_question": "What is the most common livestock raised in your country?", + "annotations": [ + { + "answers": [ + "i̇nək", + "inək", + "i̇nək və qoyun" + ], + "en_answers": [ + "cow" + ], + "count": 5 + }, + { + "answers": [ + "qoyun", + "i̇nək və qoyun" + ], + "en_answers": [ + "sheep" + ], + "count": 5 + }, + { + "answers": [ + "keçi" + ], + "en_answers": [ + "goat" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-58": { + "question": "Azərbaycanda kənd təsərrüfatında daha çox hansı heyvanlardan istifadə olunur?", + "en_question": "What animals are commonly used for agriculture in your country?", + "annotations": [ + { + "answers": [ + "i̇nək", + "inək", + "qoyun və inək" + ], + "en_answers": [ + "cow" + ], + "count": 4 + }, + { + "answers": [ + "qoyun", + "qoyun və inək" + ], + "en_answers": [ + "sheep" + ], + "count": 1 + }, + { + "answers": [ + "toyuq" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-59": { + "question": "Azərbaycanda fermerlər istidən qorunmaq üçün adətən nə geyinirlər?", + "en_question": "What do farmers in your country typically wear to protect themselves from the heat whilst farming?", + "annotations": [ + { + "answers": [ + "sərin paltar", + "nazik paltar" + ], + "en_answers": [ + "cool clothes", + "thin clothes" + ], + "count": 2 + }, + { + "answers": [ + "uzun qollu köynək", + "uzun qollu köynək və şlyapalar" + ], + "en_answers": [ + "long sleeve shirt" + ], + "count": 1 + }, + { + "answers": [ + "şlyapalar", + "uzun qollu köynək və şlyapalar" + ], + "en_answers": [ + "hats" + ], + "count": 1 + }, + { + "answers": [ + "ağ paltar", + "ağ" + ], + "en_answers": [ + "white clothes" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-60": { + "question": "Azərbaycanda fermerlər adətən naharda nə yeyirlər?", + "en_question": "What do farmers in your country usually eat for lunch?", + "annotations": [ + { + "answers": [ + "plov", + "plov və yoğurtlu xörəklər" + ], + "en_answers": [ + "pilaf", + "azerbaijani rice", + "pilav", + "pilau" + ], + "count": 1 + }, + { + "answers": [ + "qatıqlı xörəklər", + "plov və yoğurtlu xörəklər" + ], + "en_answers": [ + "yogurt dish" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-71": { + "question": "Azərbaycanda valideynlər adətən övladlarına ad günündə nə kimi hədiyyələr verirlər?", + "en_question": "What gifts do parents generally give to their children for their birthdays in your country?", + "annotations": [ + { + "answers": [ + "pul" + ], + "en_answers": [ + "money" + ], + "count": 3 + }, + { + "answers": [ + "oyuncaqlar", + "oyuncaqlar və kitablar" + ], + "en_answers": [ + "toy" + ], + "count": 1 + }, + { + "answers": [ + "kitablar", + "oyuncaqlar və kitablar" + ], + "en_answers": [ + "book" + ], + "count": 1 + }, + { + "answers": [ + "uşağın istədiyi hədiyyə" + ], + "en_answers": [ + "gift that the kid wants" + ], + "count": 1 + }, + { + "answers": [ + "mobil telefon" + ], + "en_answers": [ + "cell phone", + "mobile phone" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-75": { + "question": "Azərbaycanda əksər ailələr adətən hansı nəqliyyat vasitələrinə sahibdirlər?", + "en_question": "What type of vehicle do most families in your country generally own?", + "annotations": [ + { + "answers": [ + "maşın", + "avtomobil" + ], + "en_answers": [ + "car" + ], + "count": 4 + }, + { + "answers": [ + "sedan maşın", + "sedan maşln" + ], + "en_answers": [ + "sedan car" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-77": { + "question": "Azərbaycanda Qurban (və ya Ramazan) bayramında uşaqlara adətən nə verilir?", + "en_question": "What is usually given to the children during Eid in your country?", + "annotations": [ + { + "answers": [ + "pul", + "pul və şirniyyatlar" + ], + "en_answers": [ + "money" + ], + "count": 2 + }, + { + "answers": [ + "şirniyyatlar", + "pul və şirniyyatlar" + ], + "en_answers": [ + "sweets" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 0, + "no-answer": 0 + } + }, + "New-su-81": { + "question": "Azərbaycanda toyda bəylər adətən nə geyinirlər?", + "en_question": "What clothes do grooms usually wear at weddings in your country?", + "annotations": [ + { + "answers": [ + "kostyum", + "smokin", + "smokinq və ya milli geyim", + "qara kostyum", + "kostyum dəsti" + ], + "en_answers": [ + "suit", + "black suit", + "suit set" + ], + "count": 5 + }, + { + "answers": [ + "milli geyim", + "smokinq və ya milli geyim" + ], + "en_answers": [ + "national dress", + "national costume", + "traditional clothing" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-82": { + "question": "Azərbaycanda toyda gəlinlər adətən nə geyinirlər?", + "en_question": "What clothes do brides usually wear at weddings in your country?", + "annotations": [ + { + "answers": [ + "gəlinlik", + "gəlinlik və bəzəkli aksesuarlar", + "gəlinçik", + "ağ gəlin paltarı", + "ağ gəlinlik" + ], + "en_answers": [ + "wedding dress", + "white wedding dress" + ], + "count": 5 + }, + { + "answers": [ + "bəzəkli aksesuarlar", + "gəlinlik və bəzəkli aksesuarlar" + ], + "en_answers": [ + "decorative accessories" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-83": { + "question": "Azərbaycanda toy mərasimlərində adətən hansı yeməklər verilir?", + "en_question": "What food is usually served at weddings in your country?", + "annotations": [ + { + "answers": [ + "kabab" + ], + "en_answers": [ + "kebab" + ], + "count": 5 + }, + { + "answers": [ + "aş", + "plov", + "və plov" + ], + "en_answers": [ + "rice", + "pilaf", + "azerbaijani rice", + "pilav", + "pilau" + ], + "count": 5 + }, + { + "answers": [ + "salatlar" + ], + "en_answers": [ + "salad" + ], + "count": 2 + }, + { + "answers": [ + "dolma" + ], + "en_answers": [ + "dolma", + "stuffed grape leaves" + ], + "count": 1 + }, + { + "answers": [ + "paytaxt salatı" + ], + "en_answers": [ + "olivier salad", + "paytaxt salati salad", + "russian salad", + "paytakht salati" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-86": { + "question": "Azərbaycanda ən məşhur hökumət binası hansıdır?", + "en_question": "What is the most famous government building in your country?", + "annotations": [ + { + "answers": [ + "hökumət evi", + "hökümət evi" + ], + "en_answers": [ + "government house" + ], + "count": 3 + }, + { + "answers": [ + "azərbaycan milli məclisi binası", + "milli məclis binası", + "milli məclis", + "azərbaycan respublikasının milli məclisi" + ], + "en_answers": [ + "azerbaijan national assembly building", + "national assembly", + "milli mejlis" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-88": { + "question": "Azərbaycanda gənc əhali arasında ən populyar musiqi janrı hansıdır?", + "en_question": "What is the most popular music genre among the younger population in your country?", + "annotations": [ + { + "answers": [ + "hip-hop", + "pop və hip-hop" + ], + "en_answers": [ + "hip-hop" + ], + "count": 3 + }, + { + "answers": [ + "pop", + "pop və hip-hop" + ], + "en_answers": [ + "pop" + ], + "count": 3 + }, + { + "answers": [ + "rep" + ], + "en_answers": [ + "rap" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-02": { + "question": "Azərbaycanda orta məktəb şagirdləri adətən hər gün məktəbi neçədə bitirirlər? (HH:MM formatında təqdim edin (məsələn, 18:00, 09:00).)", + "en_question": "What time do middle school students in your country typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 2 + }, + { + "answers": [ + "15:00" + ], + "en_answers": [ + "15:00" + ], + "count": 2 + }, + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-03": { + "question": "Azərbaycanda insanlar adətən neçə yaşında universitetə gedirlər? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)", + "en_question": "At what age do people in your country typically go to university? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "17" + ], + "en_answers": [ + "17" + ], + "count": 4 + }, + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-06": { + "question": "Azərbaycanda insanlar məcburi təhsilə neçə yaşından başlamalıdırlar? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)", + "en_question": "From what age do people need to attend compulsory education in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-09": { + "question": "Azərbaycanda uşaqlar həftədə neçə gün məktəbə gedirlər? (Yalnız ərəb rəqəmləri (0~7) verin.)", + "en_question": "How many days a week do children attend school in your country? (Provide Arabic numerals (0~7) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 5 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-11": { + "question": "Azərbaycanda magistr dərəcəsini bitirmək adətən neçə il (il sayını rəqəmlərlə, məsələn, 12 kimi, yazın) çəkir?", + "en_question": "In your country, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-12": { + "question": "Azərbaycanda ən yaxşı universitet hansıdır? (Rəsmi adını verin.)", + "en_question": "What is the top university in your country? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "azərbaycan diplomatik akademiyası", + "ada", + "ada universiteti" + ], + "en_answers": [ + "azerbaijan diplomatic academy", + "ada", + "ada university" + ], + "count": 5 + }, + { + "answers": [ + "azərbaycan dövlət i̇qtisad universiteti" + ], + "en_answers": [ + "azerbaijan state university of economics", + "unec" + ], + "count": 1 + }, + { + "answers": [ + "bakı ali neft məktəbi" + ], + "en_answers": [ + "baku higher oil school", + "bhos" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-13": { + "question": "Azərbaycanda əksər insanlar universiteti neçə yaşında bitirir? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)", + "en_question": "At what age do most people in your country graduate from university? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "21" + ], + "en_answers": [ + "21" + ], + "count": 3 + }, + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-15": { + "question": "Azərbaycanda uşaqlar adətən orta məktəbə neçə yaşında gedirlər? (Yalnız ərəb rəqəmləri (məsələn, 12) verin.)", + "en_question": "At what age do children in your country generally start middle school? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 3 + }, + { + "answers": [ + "11" + ], + "en_answers": [ + "11" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-17": { + "question": "Azərbaycanda tam ştatlı işçi adətən həftədə neçə saat işləyir? (Yalnız ərəb rəqəmlərini göstərin (məsələn, 12).)", + "en_question": "How many hours a week does a full-time worker in your country typically work? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-19": { + "question": "Azərbaycanda tam ştatlı işçi adətən həftədə neçə gün işləyir? (Yalnız ərəb rəqəmləri (0~7) verin.)", + "en_question": "How many days a week does a full-time worker work in your country? (Provide Arabic numerals (0~7) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-20": { + "question": "Azərbaycanda insanların çoxu hansı yaşda işləməyə başlayır? (Yalnız ərəb rəqəmlərini göstərin (məsələn, 12).)", + "en_question": "At what age do most people start working in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 4 + }, + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-21": { + "question": "Azərbaycanda fiziki şəxsə neçə yaşdan etibarən işləməyə icazə verilir? (Yalnız ərəb rəqəmlərini göstərin (məsələn, 12).)", + "en_question": "From what age is an individual allowed to work in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 4 + }, + { + "answers": [ + "16" + ], + "en_answers": [ + "16" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-31": { + "question": "Azərbaycanda insanlar Milad bayramında ənənəvi olaraq nə yeyirlər?", + "en_question": "What do people in your country traditionally eat on Christmas Day?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Ni-en-37": { + "question": "İnsanların Azərbaycanda sevgi və romantikanı qeyd etdikləri ilin gününün adı nədir?", + "en_question": "What is the name of the day of the year where people in your country celebrate love and romance?", + "annotations": [ + { + "answers": [ + "sevgililər günü", + "valentin günü" + ], + "en_answers": [ + "valentine's day" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-40": { + "question": "Azərbaycanda ən məşhur Milad mahnısı hansıdır?", + "en_question": "What is the most popular Christmas song in your country?", + "annotations": [ + { + "answers": [ + "jingle bells", + "jingle bells (yerli versiyası)" + ], + "en_answers": [ + "jingle bells" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 3, + "idk": 0, + "no-answer": 0 + } + }, + "Nu-in-04": { + "question": "Azərbaycandakı orta məktəblərdə hər tədris ilində neçə semestr var? (Yalnız Ərəb rəqəmləri ilə (məsələn, 7, 8) verin.)", + "en_question": "How many semesters are there each academic year at high schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 4 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-05": { + "question": "Azərbaycanda yeni tədris ili adətən hansı ayda başlayır? (Yalnız ərəb rəqəmləri (1~12) göstərin.)", + "en_question": "In which month does the new school year typically begin in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "9", + "15 (sentyabr)" + ], + "en_answers": [ + "9" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-06": { + "question": "Azərbaycanda Milli Müəllimlər Günü nə vaxt qeyd olunur? (MM/DD formatında verin (məsələn, 12/31).)", + "en_question": "When is National Teacher's Day commemorated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "10/05" + ], + "en_answers": [ + "10/05" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-11": { + "question": "Azərbaycanda ibtidai məktəb saat neçədə başlayır? (HH:MM formatında təqdim edin (məsələn, 18:00, 09:00).)", + "en_question": "At what time does elementary school start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 3 + }, + { + "answers": [ + "08:30" + ], + "en_answers": [ + "08:30" + ], + "count": 1 + }, + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-20": { + "question": "Azərbaycanda Uşaqlar Günü nə vaxt qeyd olunur? (MM/DD formatında verin (məsələn, 12/31).)", + "en_question": "When is Children's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "06/01" + ], + "en_answers": [ + "06/01" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-40": { + "question": "Azərbaycanda iş axtaranlar üçün əsas mənzil hansı şəhərdir?", + "en_question": "Which city is the main destination for job seekers in your country?", + "annotations": [ + { + "answers": [ + "bakı" + ], + "en_answers": [ + "baku" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-1": { + "question": "Azərbaycanın ən məşhur fast food zənciri hansıdır?", + "en_question": "What is your country's most popular fast food chain?", + "annotations": [ + { + "answers": [ + "mcdonald's", + "mcdonalds" + ], + "en_answers": [ + "mcdonald's" + ], + "count": 4 + }, + { + "answers": [ + "kfc" + ], + "en_answers": [ + "kfc" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Sa-en-13": { + "question": "Azərbaycanda ən çox mübahisəli olan (ya sevilən, ya da nifrət edilən) yemək hansıdır?", + "en_question": "What is the food that is most divisive (either love or hate) in your country?", + "annotations": [ + { + "answers": [ + "kələm dolması" + ], + "en_answers": [ + "cabbage dolma", + "stuffed cabbage", + "farcellets de col", + "cabbage roll" + ], + "count": 2 + }, + { + "answers": [ + "xaş" + ], + "en_answers": [ + "khash", + "khashi" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Sa-en-16": { + "question": "Azərbaycanlılar arasında ən populyar futbol komandası hansıdır?", + "en_question": "What is the most popular soccer team among the people from your country?", + "annotations": [ + { + "answers": [ + "qarabağ", + "qarabağ fk", + "qarabağ futbol klubu" + ], + "en_answers": [ + "qarabag", + "qarabag fk" + ], + "count": 5 + }, + { + "answers": [ + "neftçi pfk", + "neftçi peşəkar futbol klubu" + ], + "en_answers": [ + "neftchi pfk", + "neftchi baku", + "neftchi" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-22": { + "question": "Azərbaycanda idman komandası ilə tanınan ən məşhur universitet hansıdır?", + "en_question": "What is the most famous university in your country known for its sports team?", + "annotations": [ + { + "answers": [ + "azərbaycan dövlət bədən tərbiyəsi və i̇dman akademiyası", + "adbti̇a" + ], + "en_answers": [ + "azerbaijan state academy of physical education and sport", + "adbtia" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 1, + "no-answer": 0 + } + }, + "Sa-en-31": { + "question": "Azərbaycanın ən məşhur ev heyvanı hansıdır?", + "en_question": "What is your country's most popular family pet?", + "annotations": [ + { + "answers": [ + "pişik" + ], + "en_answers": [ + "cat" + ], + "count": 3 + }, + { + "answers": [ + "i̇t" + ], + "en_answers": [ + "dog" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-32": { + "question": "Azərbaycanda ən məşhur ailə televiziya şousu hansıdır?", + "en_question": "What is the most popular family TV show in your country?", + "annotations": [ + { + "answers": [ + "sən xəzərə nə qədər yaxınsan?" + ], + "en_answers": [ + "how close are you to the caspian?" + ], + "count": 1 + }, + { + "answers": [ + "komedixana" + ], + "en_answers": [ + "comedy club" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-37": { + "question": "Azərbaycanda ən məşhur ailə stolüstü oyunu hansıdır?", + "en_question": "What is the most popular family boardgame in your country?", + "annotations": [ + { + "answers": [ + "loto" + ], + "en_answers": [ + "loto" + ], + "count": 2 + }, + { + "answers": [ + "nərd", + "nərd (backgammon)" + ], + "en_answers": [ + "backgammon" + ], + "count": 1 + }, + { + "answers": [ + "monopoliya" + ], + "en_answers": [ + "monopoly" + ], + "count": 1 + }, + { + "answers": [ + "domino" + ], + "en_answers": [ + "domino" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-6": { + "question": "Azərbaycanda ən populyar teykevey yeməyi nədir?", + "en_question": "What is the most popular takeaway food in your country?", + "annotations": [ + { + "answers": [ + "dönər" + ], + "en_answers": [ + "doner kebab", + "döner kebab" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-7": { + "question": "Azərbaycanda populyar qəlyanaltılar hansılardır?", + "en_question": "What are popular snacks in your country?", + "annotations": [ + { + "answers": [ + "çips", + "çipsi" + ], + "en_answers": [ + "chips" + ], + "count": 2 + }, + { + "answers": [ + "qutab" + ], + "en_answers": [ + "qutab", + "gutap", + "kutab", + "stuffed flatbread" + ], + "count": 1 + }, + { + "answers": [ + "pirojki" + ], + "en_answers": [ + "pirozhki" + ], + "count": 1 + }, + { + "answers": [ + "peçenyə" + ], + "en_answers": [ + "cookie" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-9": { + "question": "Azərbaycandan gələnlər çimərlikdə nə yeyirlər?", + "en_question": "What do people from your country eat at the beach?", + "annotations": [ + { + "answers": [ + "qarpız" + ], + "en_answers": [ + "watermelon" + ], + "count": 4 + }, + { + "answers": [ + "sendviç", + "sandviç və meyvə" + ], + "en_answers": [ + "sandwich" + ], + "count": 1 + }, + { + "answers": [ + "meyvə", + "sandviç və meyvə" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + }, + { + "answers": [ + "qarğıdalı" + ], + "en_answers": [ + "corn" + ], + "count": 1 + }, + { + "answers": [ + "pendir" + ], + "en_answers": [ + "cheese" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-10": { + "question": "Azərbaycanda kişilər adətən neçə yaşında evlənirlər? (Yalnız ərəb rəqəmləri (məsələn, 20) göstərin.)", + "en_question": "At what age do men usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 3 + }, + { + "answers": [ + "23" + ], + "en_answers": [ + "23" + ], + "count": 1 + }, + { + "answers": [ + "28" + ], + "en_answers": [ + "28" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-11": { + "question": "Azərbaycanda qadınlar adətən neçə yaşında evlənirlər? (Yalnız ərəb rəqəmləri (məsələn, 20) göstərin.)", + "en_question": "At what age do women usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 1 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + }, + { + "answers": [ + "21" + ], + "en_answers": [ + "21" + ], + "count": 1 + }, + { + "answers": [ + "23" + ], + "en_answers": [ + "23" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-13": { + "question": "Sizin valideynlərinizin nəsli üçün Azərbaycanda ailədə orta hesabla neçə nəfər olub? (Yalnız ərəb rəqəmləri (məsələn, 20) göstərin.)", + "en_question": "In your parents' generation, what was the average number of members in their family in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 2 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 2 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-17": { + "question": "Olimpiya Oyunlarında Azərbaycanda ən populyar idman növü hansıdır?", + "en_question": "In the Olympic Games, which sport is the most popular in your country?", + "annotations": [ + { + "answers": [ + "güləş" + ], + "en_answers": [ + "wrestling" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-21": { + "question": "Uşaqlar adətən Azərbaycanda harada futbol oynayırlar?", + "en_question": "Where do children usually play soccer in your country?", + "annotations": [ + { + "answers": [ + "idman meydançalarında", + "məktəb həyətlərində və idman meydançalarında", + "futbol meydançasında", + "məktəblərdəki futbol meydançalarında" + ], + "en_answers": [ + "sports field", + "football field", + "soccer field" + ], + "count": 3 + }, + { + "answers": [ + "məhlədə", + "məhəllədə", + "küçədə" + ], + "en_answers": [ + "street" + ], + "count": 3 + }, + { + "answers": [ + "məktəb həyətlərində", + "məktəb həyətlərində və idman meydançalarında" + ], + "en_answers": [ + "school yard" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-22": { + "question": "Azərbaycanda qadınlar arasında hansı gündəlik idman məşqi populyardır?", + "en_question": "Which daily exercise is popular among women in your country?", + "annotations": [ + { + "answers": [ + "yoqa", + "yoga və aerobika" + ], + "en_answers": [ + "yoga" + ], + "count": 1 + }, + { + "answers": [ + "aerobika", + "yoga və aerobika" + ], + "en_answers": [ + "aerobics" + ], + "count": 1 + }, + { + "answers": [ + "yürüş" + ], + "en_answers": [ + "walking", + "walk" + ], + "count": 1 + }, + { + "answers": [ + "fitness" + ], + "en_answers": [ + "fitness" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "Ta-pe-23": { + "question": "Azərbaycanda kişilər arasında hansı gündəlik idman məşqi populyardır?", + "en_question": "Which daily exercise is popular among men in your country?", + "annotations": [ + { + "answers": [ + "ağırlıq qaldırma", + "çəki qaldırma" + ], + "en_answers": [ + "weight lifting", + "weightlifting" + ], + "count": 2 + }, + { + "answers": [ + "futbol", + "futbol və fitnes" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "fitnes", + "futbol və fitnes" + ], + "en_answers": [ + "fitness" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "Ta-pe-25": { + "question": "Azərbaycanda milli idman liqasında ən məşhur rəqabət hansıdır? (məsələn, ___ və ___)", + "en_question": "What is the most famous rivalry in a national sports league in your country? (e.g., ___ vs ___)", + "annotations": [ + { + "answers": [ + "neftçi və qarabağ", + "\"neftçi\" və \"qarabağ\"", + "qarabağ və neftçi", + "qarabağ vs neftçi", + "qarabağ fk və neftçi", + "qarabağ fk vs neftçi", + "neftçi pfk və qarabağ" + ], + "en_answers": [ + "qarabag vs neftchi", + "qarabag fk vs neftchi", + "qarabag vs neftci", + "qarabag fk vs neftci", + "neftchi vs qarabag", + "neftci vs qarabag", + "qarabagh fk vs neftchi", + "qarabagh and neftchi" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-29": { + "question": "Azərbaycanda ən çox maaş alan peşəkar idman növü hansıdır?", + "en_question": "Which professional sport is the highest paying in your country?", + "annotations": [ + { + "answers": [ + "futbol" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-30": { + "question": "Azərbaycanda idmanla bağlı ən populyar televiziya proqramı hansıdır/hansı idi?", + "en_question": "What is/was the most popular sports-related TV program in your country?", + "annotations": [ + { + "answers": [ + "i̇dman saatı", + "\"i̇dman saatı\"" + ], + "en_answers": [ + "sports time" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-32": { + "question": "Azərbaycanda adətən ilin hansı günü atəşfəşanlığa həsr olunur?", + "en_question": "What day of the year is usually dedicated to fireworks in your country?", + "annotations": [ + { + "answers": [ + "yeni il", + "yanvarın biri" + ], + "en_answers": [ + "new year", + "january 1st", + "1/1" + ], + "count": 4 + }, + { + "answers": [ + "yeni il ərəfəsi", + "yeni i̇l (31 dekabr)" + ], + "en_answers": [ + "new year's eve", + "december 31", + "12/31" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-37": { + "question": "Azərbaycanda adətən Yeni il gecəsinin ümumi simvolu hansıdır?", + "en_question": "What is the common symbol of New Year's Eve that is usually found in your country?", + "annotations": [ + { + "answers": [ + "şam ağacı" + ], + "en_answers": [ + "pine tree" + ], + "count": 2 + }, + { + "answers": [ + "şaxta baba" + ], + "en_answers": [ + "santa claus" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "Ta-pe-42": { + "question": "Azərbaycanlılar Yeni il ərəfəsində adətən hansı yeməkləri yeyirlər?", + "en_question": "What food do people from your country usually eat on New Year's Eve?", + "annotations": [ + { + "answers": [ + "plov" + ], + "en_answers": [ + "pilaf", + "azerbaijani rice", + "pilav", + "pilau" + ], + "count": 4 + }, + { + "answers": [ + "paytaxt salatı" + ], + "en_answers": [ + "olivier salad", + "paytaxt salati salad", + "russian salad", + "paytakht salati" + ], + "count": 3 + }, + { + "answers": [ + "dolma" + ], + "en_answers": [ + "dolma", + "stuffed grape leaves" + ], + "count": 2 + }, + { + "answers": [ + "kabab" + ], + "en_answers": [ + "kebab" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-45": { + "question": "Azərbaycanda ilin ən uzun gecəsi qeyd olunanda adətən nə yeyilir?", + "en_question": "What is usually eaten during the celebration of the longest night of the year in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Th-en-01": { + "question": "Azərbaycanda ən populyar yay idman növü hansıdır?", + "en_question": "What is the most popular summer sport in your country?", + "annotations": [ + { + "answers": [ + "üzgüçülük" + ], + "en_answers": [ + "swimming" + ], + "count": 2 + }, + { + "answers": [ + "futbol", + "futbol və voleybol" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "voleybol", + "futbol və voleybol" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Th-en-03": { + "question": "Azərbaycanda ən populyar peşəkar idman liqası hansıdır?", + "en_question": "What is the most popular professional sports league in your country?", + "annotations": [ + { + "answers": [ + "misli premyer liqası", + "azərbaycan premyer liqası", + "azərbaycan premyer liqası (futbol)" + ], + "en_answers": [ + "azerbaijan premier league" + ], + "count": 3 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-05": { + "question": "Azərbaycanda ən məşhur qadın idman komandası hansıdır?", + "en_question": "What is the most popular women's sports team in your country?", + "annotations": [ + { + "answers": [ + "lokomotiv bakı" + ], + "en_answers": [ + "locomotive baku" + ], + "count": 2 + }, + { + "answers": [ + "rabitə bakı", + "\"rabitə bakı\" (voleybol)" + ], + "en_answers": [ + "telekom baku", + "rabita baku" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-09": { + "question": "Azərbaycanda ən məşhur turnir hansıdır?", + "en_question": "What is the most popular tournament in your country?", + "annotations": [ + { + "answers": [ + "bakı grand slam", + "bakı grand slam (cüdo)" + ], + "en_answers": [ + "baku grand slam" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-11": { + "question": "Azərbaycanda ən məşhur idmançı kimdir?", + "en_question": "Who is the most popular sportperson in your country?", + "annotations": [ + { + "answers": [ + "rafael ağayev" + ], + "en_answers": [ + "rafael aghayev" + ], + "count": 3 + }, + { + "answers": [ + "teymur rəcəbov", + "teymur rəcəbov (şahmat)" + ], + "en_answers": [ + "teimour radjabov", + "teymur rajabov", + "teimour boris oghlu radjabov" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-12": { + "question": "Azərbaycan beynəlxalq yarışlarda hansı idman növündə ən çox uğur qazanıb?", + "en_question": "In which sport has your country been most successful in international competitions?", + "annotations": [ + { + "answers": [ + "güləş" + ], + "en_answers": [ + "wrestling" + ], + "count": 2 + }, + { + "answers": [ + "karate" + ], + "en_answers": [ + "karate" + ], + "count": 2 + }, + { + "answers": [ + "cüdo" + ], + "en_answers": [ + "judo" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-15": { + "question": "Azərbaycanda ən populyar qış idman növü hansıdır?", + "en_question": "What is the most popular winter sport in your country?", + "annotations": [ + { + "answers": [ + "xizək sürmək", + "xizək" + ], + "en_answers": [ + "skiing", + "ski" + ], + "count": 2 + }, + { + "answers": [ + "snoubordinq" + ], + "en_answers": [ + "snowboarding" + ], + "count": 1 + }, + { + "answers": [ + "fiqur skeytinq" + ], + "en_answers": [ + "figure skating" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-19": { + "question": "Azərbaycanda hansı şəhər və ya rayon istehsal sənayesi ilə məşhurdur?", + "en_question": "What is a city or region in your country known for manufacturing industry?", + "annotations": [ + { + "answers": [ + "sumqayıt", + "sumgait", + "sumqayıt (kimya sənayesi)" + ], + "en_answers": [ + "sumgait" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-21": { + "question": "Azərbaycanda işçilərə adətən təklif edilən ən önəmli imtiyaz nə hesab olunur?", + "en_question": "What is regarded as the most important perk typically offered to employees in your country?", + "annotations": [ + { + "answers": [ + "uzun məzuniyyət" + ], + "en_answers": [ + "long vacation" + ], + "count": 1 + }, + { + "answers": [ + "rütbə artımı" + ], + "en_answers": [ + "promotion" + ], + "count": 1 + }, + { + "answers": [ + "maaş" + ], + "en_answers": [ + "salary" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Th-en-22": { + "question": "Azərbaycan üçün ən faciəli iqtisadi dövr nə vaxt olub?", + "en_question": "What was the most catastrophic economic period for your country?", + "annotations": [ + { + "answers": [ + "1990-cı illər", + "1990-2000" + ], + "en_answers": [ + "1990s", + "90s", + "1990-2000" + ], + "count": 2 + }, + { + "answers": [ + "1990-cı illərin əvvəlləri", + "1990-cı illərin əvvəlləri (post-sovet dövrü)", + "post-sovet dövrü", + "postsovet dövrü" + ], + "en_answers": [ + "early 1900s", + "post-soviet period" + ], + "count": 1 + }, + { + "answers": [ + "1992" + ], + "en_answers": [ + "1992" + ], + "count": 1 + }, + { + "answers": [ + "1991-1994" + ], + "en_answers": [ + "1991-1994" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-24": { + "question": "Azərbaycanda texnologiya işçiləri və startaplar üçün əsas mərkəz olan bölgə hansıdır?", + "en_question": "What region in your country is a major hub for tech workers and start ups?", + "annotations": [ + { + "answers": [ + "bakı", + "bakı (i̇nnovasiya mərkəzləri və texnoparklar)" + ], + "en_answers": [ + "baku" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-27": { + "question": "Azərbaycanda ən önəmli sənaye sahəsi hansıdır?", + "en_question": "What is the most important industry in your country?", + "annotations": [ + { + "answers": [ + "neft", + "neft sənayesi" + ], + "en_answers": [ + "oil", + "oil industry" + ], + "count": 3 + }, + { + "answers": [ + "neft və qaz sənayesi", + "neft və qaz" + ], + "en_answers": [ + "oil and gas industry", + "petroleum industry", + "oil and gas", + "petroleum" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-35": { + "question": "Azərbaycanda gündəlik yeməklərdən hansı adətən ailə üzvləri ilə birlikdə yeyilir? (məsələn, səhər yeməyi, nahar, şam yeməyi)", + "en_question": "Which one of the daily meals is commonly shared with family members in your country? (e.g., breakfast, lunch, dinner)", + "annotations": [ + { + "answers": [ + "şam yeməyi" + ], + "en_answers": [ + "dinner" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-36": { + "question": "Azərbaycanda həftə sonları ailə ilə birlikdə uşaqla nə etmək populyardır?", + "en_question": "What is a popular family activity with a child to do on weekends in your country?", + "annotations": [ + { + "answers": [ + "parklara getmək", + "parklara və oyun meydançalarına getmək", + "parka çıxmaq", + "parkda gəzinti", + "parklara", + "park", + "parkı" + ], + "en_answers": [ + "go to parks", + "park", + "walk in the park" + ], + "count": 3 + }, + { + "answers": [ + "oyun meydançalarına getmək", + "parklara və oyun meydançalarına getmək", + "oyun meydançalar" + ], + "en_answers": [ + "go to playgrounds", + "playground" + ], + "count": 1 + }, + { + "answers": [ + "bağ evinə getmək", + "bağ evi" + ], + "en_answers": [ + "go to the country house", + "go to cottage", + "country house", + "cottage" + ], + "count": 1 + }, + { + "answers": [ + "qonaq getmək" + ], + "en_answers": [ + "visit" + ], + "count": 1 + }, + { + "answers": [ + "əyləncə mərkəzlərinə getmək", + "əyləncə mərkəzləri" + ], + "en_answers": [ + "to go to entertainment centers", + "entertainment center" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-37": { + "question": "Azərbaycanda uşaqlar adətən neçə yaşında valideynlərindən müstəqil olurlar? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)", + "en_question": "At what age do children typically become independent from their parents in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 3 + }, + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 1 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-38": { + "question": "Azərbaycanda ən vacib ailə bayramı hansıdır?", + "en_question": "What is the most important family holiday in your country?", + "annotations": [ + { + "answers": [ + "novruz bayramı", + "novruz" + ], + "en_answers": [ + "novruz", + "nowruz", + "navroz" + ], + "count": 4 + }, + { + "answers": [ + "8 mart" + ], + "en_answers": [ + "eight of march", + "march 8", + "3/8" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-39": { + "question": "Azərbaycanda məşhur ailə oyunu nədir?", + "en_question": "What is a popular family game in your country?", + "annotations": [ + { + "answers": [ + "domino" + ], + "en_answers": [ + "domino" + ], + "count": 2 + }, + { + "answers": [ + "loto" + ], + "en_answers": [ + "loto" + ], + "count": 2 + }, + { + "answers": [ + "nərd", + "nərd (backgammon)" + ], + "en_answers": [ + "backgammon" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-41": { + "question": "Azərbaycanda ilk uşaq dünyaya gətirən cütlüklərin orta yaşı neçədir? (Yalnız ərəb rəqəmləri (məsələn, 20) göstərin.)", + "en_question": "What is the average age for couples to have their first child in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + }, + { + "answers": [ + "26" + ], + "en_answers": [ + "26" + ], + "count": 1 + }, + { + "answers": [ + "23" + ], + "en_answers": [ + "23" + ], + "count": 1 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-43": { + "question": "Azərbaycanda tipik bir ailənin neçə maşını var? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)", + "en_question": "How many cars are owned by a typical family in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-44": { + "question": "Azərbaycanda ailə yeməkləri üçün həftə sonları ən populyar yemək nədir?", + "en_question": "What is your country's most popular food for family meals on weekends?", + "annotations": [ + { + "answers": [ + "plov" + ], + "en_answers": [ + "pilaf", + "azerbaijani rice", + "pilav", + "pilau" + ], + "count": 2 + }, + { + "answers": [ + "kabab", + "qutab və kabab" + ], + "en_answers": [ + "kebab" + ], + "count": 2 + }, + { + "answers": [ + "barbekü", + "barbekü və qril" + ], + "en_answers": [ + "barbecue" + ], + "count": 1 + }, + { + "answers": [ + "qril", + "barbekü və qril" + ], + "en_answers": [ + "grill" + ], + "count": 1 + }, + { + "answers": [ + "qutab", + "qutab və kabab" + ], + "en_answers": [ + "qutab", + "gutap", + "kutab", + "stuffed flatbread" + ], + "count": 1 + }, + { + "answers": [ + "kotlet" + ], + "en_answers": [ + "cutlet" + ], + "count": 1 + }, + { + "answers": [ + "dolma" + ], + "en_answers": [ + "dolma", + "stuffed grape leaves" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-45": { + "question": "Azərbaycanda həftə içi axşamlarının ən populyar ailə fəaliyyəti nədir?", + "en_question": "What is the most popular weekday evening family activity in your country?", + "annotations": [ + { + "answers": [ + "televiziya izləmək", + "televiziya izləmək və stol oyunları oynamaq", + "televizora baxmaq", + "serial izləmək" + ], + "en_answers": [ + "watch television", + "watch tv", + "television", + "tv", + "to watch television", + "watch series" + ], + "count": 3 + }, + { + "answers": [ + "söhbət etmək", + "söhbət" + ], + "en_answers": [ + "to talk", + "talk", + "conversation" + ], + "count": 2 + }, + { + "answers": [ + "stol oyunları oynamaq", + "televiziya izləmək və stol oyunları oynamaq" + ], + "en_answers": [ + "playing board game", + "play board game", + "board game" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-48": { + "question": "Azərbaycanda tapşırıq və imtahanlarda yüksək nəticə göstərən orta məktəb şagirdlərinə verilən ən yüksək qiymət hansıdır?", + "en_question": "What is the highest grade given to top-achieving high school students on assignments and exams in your country?", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-49": { + "question": "Azərbaycanda orta məktəb şagirdləri üçün ən önəmli imtahan hansı hesab olunur?", + "en_question": "What is considered the most important exam for high school students in your country?", + "annotations": [ + { + "answers": [ + "buraxılış imtahanları", + "buraxılış i̇mtahanı", + "buraxılış imtahanı" + ], + "en_answers": [ + "graduation exams", + "graduation exam" + ], + "count": 3 + }, + { + "answers": [ + "böyük summativ qiymətləndirmə", + "bsq" + ], + "en_answers": [ + "large summative assessment" + ], + "count": 2 + }, + { + "answers": [ + "qəbul i̇mtahanı" + ], + "en_answers": [ + "entrance exam" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-51": { + "question": "Azərbaycanda tələbələr üçün ən vacib hesab edilən fənn hansıdır?", + "en_question": "Which subject is considered the most important for students in your country?", + "annotations": [ + { + "answers": [ + "riyaziyyat" + ], + "en_answers": [ + "mathematics", + "math" + ], + "count": 5 + }, + { + "answers": [ + "fizika" + ], + "en_answers": [ + "physics" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-53": { + "question": "Azərbaycanda məktəblərdə ən populyar məktəbdənkənar sosial tədbir hansıdır?", + "en_question": "What is the most popular extracurricular social event at schools in your country?", + "annotations": [ + { + "answers": [ + "idman yarışları", + "i̇dman və rəqs yarışları", + "idman yarışı" + ], + "en_answers": [ + "sports competition" + ], + "count": 1 + }, + { + "answers": [ + "rəqs yarışları", + "i̇dman və rəqs yarışları", + "rəqs yarışı" + ], + "en_answers": [ + "dance competition" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 2, + "no-answer": 0 + } + }, + "Th-en-58": { + "question": "Azərbaycanda universitetə ​​qədər öyrənilən ən ağır riyaziyyat mövzusu hansıdır?", + "en_question": "What is the most advanced math subject learned before university in your country?", + "annotations": [ + { + "answers": [ + "differensial və inteqral hesab", + "kalkulus", + "i̇nteqral" + ], + "en_answers": [ + "differential and integral calculus", + "calculus", + "integral" + ], + "count": 3 + }, + { + "answers": [ + "triqonometriya" + ], + "en_answers": [ + "trigonometry" + ], + "count": 1 + }, + { + "answers": [ + "xətti cəbr" + ], + "en_answers": [ + "linear algebra" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-01": { + "question": "Azərbaycanda universitet tələbələri final imtahanlarına hazırlaşmaq üçün adətən hara gedirlər?", + "en_question": "Where do university students in your country usually go to study for their final exams?", + "annotations": [ + { + "answers": [ + "kitabxana", + "kitabxanalar", + "kitabxanaya" + ], + "en_answers": [ + "library", + "libraries", + "to the library" + ], + "count": 4 + }, + { + "answers": [ + "kafelər", + "kafe" + ], + "en_answers": [ + "cafes", + "cafe" + ], + "count": 1 + }, + { + "answers": [ + "evdə", + "ev" + ], + "en_answers": [ + "at home", + "home", + "house" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-02": { + "question": "Azərbaycanda insanların universitetə getmək üçün istifadə etdikləri ümumi ictimai nəqliyyat vasitəsi nədir?", + "en_question": "What is a common public transport that people use to go to university in your country?", + "annotations": [ + { + "answers": [ + "metro" + ], + "en_answers": [ + "subway" + ], + "count": 5 + }, + { + "answers": [ + "avtobus" + ], + "en_answers": [ + "bus" + ], + "count": 3 + }, + { + "answers": [ + "avtomobil" + ], + "en_answers": [ + "car" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-04": { + "question": "Azərbaycanda ibtidai sinif şagirdləri adətən məktəbdən sonra nə edirlər?", + "en_question": "What do elementary students in your country usually do after school?", + "annotations": [ + { + "answers": [ + "ev tapşırığı", + "ev tapşırıqları" + ], + "en_answers": [ + "homework" + ], + "count": 2 + }, + { + "answers": [ + "idman", + "i̇dman və məktəbdənkənar klublara qatılırlar" + ], + "en_answers": [ + "sports" + ], + "count": 1 + }, + { + "answers": [ + "məktəbdənkənar klublara qatılırlar", + "i̇dman və məktəbdənkənar klublara qatılırlar", + "məktəbdənkənar klub" + ], + "en_answers": [ + "participate in extracurricular clubs", + "extracurricular" + ], + "count": 1 + }, + { + "answers": [ + "oyun oynuyurlar", + "oyun" + ], + "en_answers": [ + "playing games", + "play games", + "game" + ], + "count": 1 + }, + { + "answers": [ + "i̇stirahət edirlər", + "i̇stirahət" + ], + "en_answers": [ + "rest" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + } +} \ No newline at end of file diff --git a/data/annotations/China_data.json b/data/annotations/China_data.json new file mode 100644 index 0000000000000000000000000000000000000000..0d934e22c1a3def6040e50a49f807929addcca6c --- /dev/null +++ b/data/annotations/China_data.json @@ -0,0 +1,24491 @@ +{ + "Al-en-01": { + "question": "在中国,学龄前儿童常见的零食是什么?", + "en_question": "What is a common snack for preschool kids in your country?", + "annotations": [ + { + "answers": [ + "奶酪棒", + "芝士棒" + ], + "en_answers": [ + "cheese stick" + ], + "count": 1 + }, + { + "answers": [ + "水果干" + ], + "en_answers": [ + "dried fruit" + ], + "count": 1 + }, + { + "answers": [ + "薯片" + ], + "en_answers": [ + "chips", + "potato chips" + ], + "count": 1 + }, + { + "answers": [ + "糖", + "糖果" + ], + "en_answers": [ + "candy", + "sweets", + "sweet" + ], + "count": 1 + }, + { + "answers": [ + "冰激凌", + "雪糕", + "冰棍" + ], + "en_answers": [ + "ice cream" + ], + "count": 1 + }, + { + "answers": [ + "ad钙奶", + "娃哈哈" + ], + "en_answers": [ + "ad calcium milk" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Al-en-02": { + "question": "在中国,有什么受欢迎的食物可以搭配啤酒吃?", + "en_question": "What is a popular food to go with beer in your country?", + "annotations": [ + { + "answers": [ + "花生米", + "花生" + ], + "en_answers": [ + "peanuts" + ], + "count": 3 + }, + { + "answers": [ + "炸鸡" + ], + "en_answers": [ + "fried chicken" + ], + "count": 1 + }, + { + "answers": [ + "干虾", + "虾干" + ], + "en_answers": [ + "dried shrimp" + ], + "count": 1 + }, + { + "answers": [ + "开心果" + ], + "en_answers": [ + "pistachio" + ], + "count": 1 + }, + { + "answers": [ + "烤鸡", + "烧鸡" + ], + "en_answers": [ + "roast chicken" + ], + "count": 1 + }, + { + "answers": [ + "烧烤", + "烤串" + ], + "en_answers": [ + "barbecue" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-04": { + "question": "在中国最受欢迎的水果是什么?", + "en_question": "What is the most popular fruit in your country?", + "annotations": [ + { + "answers": [ + "橘子" + ], + "en_answers": [ + "orange" + ], + "count": 4 + }, + { + "answers": [ + "苹果" + ], + "en_answers": [ + "apple" + ], + "count": 3 + }, + { + "answers": [ + "西瓜" + ], + "en_answers": [ + "watermelon" + ], + "count": 1 + }, + { + "answers": [ + "梨子", + "梨" + ], + "en_answers": [ + "pear" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-06": { + "question": "在中国的学校食堂里常见的食物是什么?", + "en_question": "What is a common school cafeteria food in your country?", + "annotations": [ + { + "answers": [ + "面食", + "面条" + ], + "en_answers": [ + "noodles", + "pasta", + "cooked wheaten food" + ], + "count": 1 + }, + { + "answers": [ + "包子" + ], + "en_answers": [ + "steamed stuffed bun", + "steamed bun", + "bun" + ], + "count": 1 + }, + { + "answers": [ + "炒菜" + ], + "en_answers": [ + "stir-fry" + ], + "count": 1 + }, + { + "answers": [ + "米饭", + "白饭", + "大米饭" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "麻辣香锅" + ], + "en_answers": [ + "spicy hot pot" + ], + "count": 1 + }, + { + "answers": [ + "西红柿炒蛋", + "番茄炒蛋", + "番茄炒鸡蛋", + "西红柿炒鸡蛋" + ], + "en_answers": [ + "tomato scrambled eggs", + "scrambled eggs with tomatoes" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-08": { + "question": "在中国的购物中心里,最常见的零食有哪些?", + "en_question": "What are the most commonly eaten snacks at shopping malls in your country?", + "annotations": [ + { + "answers": [ + "薯片" + ], + "en_answers": [ + "chips", + "potato chips" + ], + "count": 2 + }, + { + "answers": [ + "旺旺" + ], + "en_answers": [ + "wangwang" + ], + "count": 2 + }, + { + "answers": [ + "糖果", + "糖" + ], + "en_answers": [ + "candy", + "sweets", + "sweet" + ], + "count": 1 + }, + { + "answers": [ + "糕点" + ], + "en_answers": [ + "pastry", + "cake" + ], + "count": 1 + }, + { + "answers": [ + "瓜子" + ], + "en_answers": [ + "melon seeds", + "sunflower seeds", + "seeds" + ], + "count": 1 + }, + { + "answers": [ + "辣子条", + "辣条" + ], + "en_answers": [ + "spicy strips" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-09": { + "question": "在中国的游乐园里,有什么受欢迎的小吃?", + "en_question": "What is a popular snack at an amusement park in your country?", + "annotations": [ + { + "answers": [ + "棉花糖" + ], + "en_answers": [ + "cotton candy", + "marshmallow" + ], + "count": 2 + }, + { + "answers": [ + "冰淇淋", + "冰激凌", + "雪糕" + ], + "en_answers": [ + "ice cream" + ], + "count": 2 + }, + { + "answers": [ + "轰炸大鱿鱼", + "火爆鱿鱼" + ], + "en_answers": [ + "bombing the giant squid", + "spicy stir-fried squid" + ], + "count": 2 + }, + { + "answers": [ + "水果" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + }, + { + "answers": [ + "淀粉肠" + ], + "en_answers": [ + "starch sausage" + ], + "count": 1 + }, + { + "answers": [ + "冰糖葫芦" + ], + "en_answers": [ + "candied hawthorn stick" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-16": { + "question": "在中国,孩子们几岁开始上幼儿园?(只提供阿拉伯数字(例如,12)。)", + "en_question": "At what age do kids start preschool in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 5 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-17": { + "question": "在中国小学,什么课后运动项目比较受欢迎?", + "en_question": "What is a popular afterschool sport for elementary schools in your country?", + "annotations": [ + { + "answers": [ + "足球", + "踢足球" + ], + "en_answers": [ + "football", + "soccer", + "play soccer", + "play football" + ], + "count": 4 + }, + { + "answers": [ + "篮球" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "羽毛球" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "跳皮筋" + ], + "en_answers": [ + "jump rope", + "rubber band skipping" + ], + "count": 1 + }, + { + "answers": [ + "跑步" + ], + "en_answers": [ + "running" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-18": { + "question": "在中国,小学生通常为哪门学科接受私立教育?", + "en_question": "For which subject do elementary students get private education in your country?", + "annotations": [ + { + "answers": [ + "数学" + ], + "en_answers": [ + "mathematics", + "math" + ], + "count": 5 + }, + { + "answers": [ + "英语" + ], + "en_answers": [ + "english" + ], + "count": 2 + }, + { + "answers": [ + "语文" + ], + "en_answers": [ + "chinese", + "literature" + ], + "count": 1 + }, + { + "answers": [ + "物理" + ], + "en_answers": [ + "physics" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-19": { + "question": "在中国,高中生普遍学习哪种第二外语?", + "en_question": "What is a popular second language for high school students in your country?", + "annotations": [ + { + "answers": [ + "英语" + ], + "en_answers": [ + "english" + ], + "count": 4 + }, + { + "answers": [ + "日语" + ], + "en_answers": [ + "japanese" + ], + "count": 1 + }, + { + "answers": [ + "韩语" + ], + "en_answers": [ + "korean" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-21": { + "question": "在中国,哪个学科对于“天才班”来说最重要?", + "en_question": "Which subject is the most important for gifted education in your country?", + "annotations": [ + { + "answers": [ + "数学" + ], + "en_answers": [ + "mathematics", + "math" + ], + "count": 3 + }, + { + "answers": [ + "计算机科学" + ], + "en_answers": [ + "computer science" + ], + "count": 1 + } + ], + "idks": { + "资优教育不是中国常用的词": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-32": { + "question": "在中国,感恩节的主菜是什么?", + "en_question": "What is the main dish for Thanksgiving in your country?", + "annotations": [ + { + "answers": [ + "烤鸡" + ], + "en_answers": [ + "roast chicken" + ], + "count": 1 + }, + { + "answers": [ + "鱼" + ], + "en_answers": [ + "fish" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-33": { + "question": "在中国,人们怎么庆祝万圣节前夜?", + "en_question": "What do people do to celebrate Halloween in your country?", + "annotations": [ + { + "answers": [ + "聚会" + ], + "en_answers": [ + "party", + "gathering" + ], + "count": 1 + }, + { + "answers": [ + "打扮" + ], + "en_answers": [ + "dress up" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-34": { + "question": "中国人在新年当天通常会做些什么来庆祝呢?", + "en_question": "What do people do to celebrate New Year's Day in your country?", + "annotations": [ + { + "answers": [ + "贴春联" + ], + "en_answers": [ + "pasting spring couplets", + "pasting chinese couplets", + "pasting new year scrolls" + ], + "count": 2 + }, + { + "answers": [ + "拜年" + ], + "en_answers": [ + "pay a new year's visit", + "new year greetings" + ], + "count": 2 + }, + { + "answers": [ + "饺子" + ], + "en_answers": [ + "dumplings" + ], + "count": 1 + }, + { + "answers": [ + "吃团年饭" + ], + "en_answers": [ + "have the reunion dinner" + ], + "count": 1 + }, + { + "answers": [ + "看春晚" + ], + "en_answers": [ + "watch the spring festival gala" + ], + "count": 1 + }, + { + "answers": [ + "踏青" + ], + "en_answers": [ + "spring outing" + ], + "count": 1 + }, + { + "answers": [ + "放鞭炮" + ], + "en_answers": [ + "set off firecrackers" + ], + "count": 1 + }, + { + "answers": [ + "走访亲戚" + ], + "en_answers": [ + "visit relatives" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-35": { + "question": "人们在中国怎样庆祝圣诞节?", + "en_question": "What do people do to celebrate Christmas in your country?", + "annotations": [ + { + "answers": [ + "聚会" + ], + "en_answers": [ + "party", + "gathering" + ], + "count": 1 + }, + { + "answers": [ + "购物" + ], + "en_answers": [ + "shopping" + ], + "count": 1 + }, + { + "answers": [ + "送苹果" + ], + "en_answers": [ + "send apples" + ], + "count": 1 + }, + { + "answers": [ + "吃大餐" + ], + "en_answers": [ + "have a big meal" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-36": { + "question": "在中国,什么食物与万圣节有关联?", + "en_question": "What food is associated with Halloween in your country?", + "annotations": [ + { + "answers": [ + "南瓜" + ], + "en_answers": [ + "pumpkin" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-37": { + "question": "在中国,哪些食物与圣诞节有关联?", + "en_question": "What food is associated with Christmas in your country?", + "annotations": [ + { + "answers": [ + "火鸡" + ], + "en_answers": [ + "turkey" + ], + "count": 2 + }, + { + "answers": [ + "炸鸡" + ], + "en_answers": [ + "fried chicken" + ], + "count": 1 + }, + { + "answers": [ + "牛排" + ], + "en_answers": [ + "steak" + ], + "count": 1 + }, + { + "answers": [ + "披萨饼" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + }, + { + "answers": [ + "苹果" + ], + "en_answers": [ + "apple" + ], + "count": 1 + }, + { + "answers": [ + "热红酒" + ], + "en_answers": [ + "mulled wine" + ], + "count": 1 + }, + { + "answers": [ + "烤鸡" + ], + "en_answers": [ + "roast chicken" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-38": { + "question": "在中国,哪些食物与情人节有关?", + "en_question": "What food is associated with Valentine's day in your country?", + "annotations": [ + { + "answers": [ + "巧克力" + ], + "en_answers": [ + "chocolate" + ], + "count": 4 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-39": { + "question": "在中国,人们在生日时通常吃什么?", + "en_question": "What do people eat on their birthday in your country?", + "annotations": [ + { + "answers": [ + "蛋糕", + "生日蛋糕" + ], + "en_answers": [ + "cake", + "birthday cake" + ], + "count": 5 + }, + { + "answers": [ + "长寿面", + "面条" + ], + "en_answers": [ + "longevity noodles", + "noodles" + ], + "count": 4 + }, + { + "answers": [ + "家常菜" + ], + "en_answers": [ + "home-style cooking" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-40": { + "question": "在中国,有哪些受欢迎的户外场所适合家庭带着小孩子去玩乐?", + "en_question": "What is a popular outdoor place for families to have fun with little kids in your country?", + "annotations": [ + { + "answers": [ + "公园", + "儿童公园" + ], + "en_answers": [ + "park", + "children's park" + ], + "count": 4 + }, + { + "answers": [ + "室外游乐场", + "游乐场" + ], + "en_answers": [ + "outdoor playground", + "amusement park" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-43": { + "question": "在中国,家庭中流行的室内活动是什么?", + "en_question": "What is a popular indoor activity for families in your country?", + "annotations": [ + { + "answers": [ + "麻将", + "打麻将" + ], + "en_answers": [ + "mahjong", + "play mahjong" + ], + "count": 3 + }, + { + "answers": [ + "看电视" + ], + "en_answers": [ + "watch tv" + ], + "count": 2 + }, + { + "answers": [ + "斗地主" + ], + "en_answers": [ + "fight the landlord" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-02": { + "question": "在中国,大学生通常在哪里吃午饭?", + "en_question": "Where do university students have lunch in your country?", + "annotations": [ + { + "answers": [ + "食堂", + "大学食堂" + ], + "en_answers": [ + "canteen", + "university cafeteria" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-03": { + "question": "中国的高中通常在哪个月安排期末考试?(只提供阿拉伯数字(1~12)。)", + "en_question": "Which month is the final exam term usually scheduled at high schools in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 3 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-08": { + "question": "中国的高中生通常每天在学校多少小时?(请提供阿拉伯数字整数(0~24),不要有任何小数点。)", + "en_question": "How many hours a day do students in your country usually spend at high school? (Provide Arabic numerals in integers (0~24), without any decimal points.)", + "annotations": [ + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 2 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 2 + }, + { + "answers": [ + "11" + ], + "en_answers": [ + "11" + ], + "count": 2 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-09": { + "question": "在中国的高中,学生们学习多少种语言?(只提供阿拉伯数字(例如,5)。)", + "en_question": "How many languages do students study at high school in your country? (Provide Arabic numerals (e.g., 5) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 5 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-34": { + "question": "在中国学校里,最受欢迎的团队运动是什么?", + "en_question": "What is the most popular sport played in a team at school in your country?", + "annotations": [ + { + "answers": [ + "足球" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "篮球" + ], + "en_answers": [ + "basketball" + ], + "count": 3 + }, + { + "answers": [ + "排球" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "An-ar-35": { + "question": "谁是中国最受欢迎的体育评论员?", + "en_question": "Who is the most popular sport commentator in your country?", + "annotations": [ + { + "answers": [ + "黄健翔" + ], + "en_answers": [ + "huang jianxiang" + ], + "count": 2 + } + ], + "idks": { + "idk": 6, + "no-answer": 2, + "not-applicable": 0 + } + }, + "An-ar-36": { + "question": "中国最受欢迎的运动队是哪一支?", + "en_question": "What is the most popular sport team in your country?", + "annotations": [ + { + "answers": [ + "乒乓球队", + "乒乓球运动队" + ], + "en_answers": [ + "ping pong team", + "table tennis team" + ], + "count": 2 + }, + { + "answers": [ + "皇家马德里" + ], + "en_answers": [ + "real madrid" + ], + "count": 1 + }, + { + "answers": [ + "曼彻斯特联" + ], + "en_answers": [ + "manchester united" + ], + "count": 1 + }, + { + "answers": [ + "国家跳水队" + ], + "en_answers": [ + "national diving team" + ], + "count": 1 + }, + { + "answers": [ + "山东鲁能" + ], + "en_answers": [ + "shandong luneng" + ], + "count": 1 + }, + { + "answers": [ + "广州恒大" + ], + "en_answers": [ + "guangzhou evergrande" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-43": { + "question": "在中国,人们通常聚集在哪些常见的地点或场所观看体育转播?", + "en_question": "What are the common places or venues where individuals in your country usually gather to watch sports broadcasts?", + "annotations": [ + { + "answers": [ + "家里", + "家" + ], + "en_answers": [ + "home", + "family" + ], + "count": 4 + }, + { + "answers": [ + "酒吧" + ], + "en_answers": [ + "bar", + "pub" + ], + "count": 1 + }, + { + "answers": [ + "烧烤店" + ], + "en_answers": [ + "barbecue restaurant" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-05": { + "question": "中国人通常一天吃几顿饭?(只提供阿拉伯数字(例如,5)。)", + "en_question": "How many meals per day do people from your country usually have? (Provide Arabic numerals (e.g., 5) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-06": { + "question": "对中国人来说,一天中最重要的一餐是哪一餐?", + "en_question": "Which is the most important meal of the day to people from your country?", + "annotations": [ + { + "answers": [ + "晚餐" + ], + "en_answers": [ + "dinner" + ], + "count": 2 + }, + { + "answers": [ + "中餐", + "午餐" + ], + "en_answers": [ + "lunch" + ], + "count": 2 + }, + { + "answers": [ + "早餐" + ], + "en_answers": [ + "breakfast" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-08": { + "question": "中国饮食中最常用的食材是什么?", + "en_question": "What is the most common ingredient used in your country's diet?", + "annotations": [ + { + "answers": [ + "大米", + "葱", + "葱姜蒜" + ], + "en_answers": [ + "rice", + "scallions", + "spring onion" + ], + "count": 5 + }, + { + "answers": [ + "白面", + "姜", + "葱姜蒜" + ], + "en_answers": [ + "white flour", + "ginger" + ], + "count": 2 + }, + { + "answers": [ + "蒜", + "葱姜蒜" + ], + "en_answers": [ + "garlic" + ], + "count": 1 + }, + { + "answers": [ + "面" + ], + "en_answers": [ + "noodles" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-09": { + "question": "中国人通常吃什么甜点?", + "en_question": "What do people from your country usually eat for dessert?", + "annotations": [ + { + "answers": [ + "糕饼", + "糕", + "糕点" + ], + "en_answers": [ + "cakes and pastries", + "cake", + "pastry" + ], + "count": 3 + }, + { + "answers": [ + "月饼" + ], + "en_answers": [ + "mooncake" + ], + "count": 1 + }, + { + "answers": [ + "桂花糕" + ], + "en_answers": [ + "osmanthus cake" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ca-sp-11": { + "question": "在中国,人们通常在一周的哪一天组织家庭聚餐?", + "en_question": "Which day of the week do people usually organize a family meal in your country?", + "annotations": [ + { + "answers": [ + "周五" + ], + "en_answers": [ + "friday" + ], + "count": 1 + }, + { + "answers": [ + "周六" + ], + "en_answers": [ + "saturday" + ], + "count": 1 + }, + { + "answers": [ + "哪天凑上了就哪天" + ], + "en_answers": [ + "whenever it happens, it happens" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 1, + "no-answer": 1 + } + }, + "Ca-sp-14": { + "question": "在中国最受欢迎的热饮是什么?", + "en_question": "Which is the most popular hot drink in your country?", + "annotations": [ + { + "answers": [ + "奶茶" + ], + "en_answers": [ + "milk tea" + ], + "count": 3 + }, + { + "answers": [ + "茶" + ], + "en_answers": [ + "tea" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-19": { + "question": "中国的年轻人在夜店通常喝什么?", + "en_question": "What do young people from your country usually drink at the night club?", + "annotations": [ + { + "answers": [ + "鸡尾酒" + ], + "en_answers": [ + "cocktail" + ], + "count": 2 + }, + { + "answers": [ + "啤酒" + ], + "en_answers": [ + "beer" + ], + "count": 1 + }, + { + "answers": [ + "酒" + ], + "en_answers": [ + "alcohol" + ], + "count": 1 + }, + { + "answers": [ + "洋酒" + ], + "en_answers": [ + "foreign liquor" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-21": { + "question": "在中国,人们通常在哪个月份休假?(只提供1~12的阿拉伯数字。)", + "en_question": "At which month do people usually take holidays in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ca-sp-29": { + "question": "中国在除夕有什么传统?", + "en_question": "What tradition is there in your country for New Year's Eve?", + "annotations": [ + { + "answers": [ + "放鞭炮" + ], + "en_answers": [ + "set off firecrackers" + ], + "count": 2 + }, + { + "answers": [ + "压岁钱", + "发红包" + ], + "en_answers": [ + "lucky money", + "send red envelope" + ], + "count": 2 + }, + { + "answers": [ + "守岁" + ], + "en_answers": [ + "staying up late on new year's eve" + ], + "count": 1 + }, + { + "answers": [ + "包饺子" + ], + "en_answers": [ + "making dumplings" + ], + "count": 1 + }, + { + "answers": [ + "吃年夜饭" + ], + "en_answers": [ + "have the reunion dinner" + ], + "count": 1 + }, + { + "answers": [ + "放烟花" + ], + "en_answers": [ + "set off fireworks" + ], + "count": 1 + }, + { + "answers": [ + "看春晚" + ], + "en_answers": [ + "watch the spring festival gala" + ], + "count": 1 + }, + { + "answers": [ + "吃饺子" + ], + "en_answers": [ + "eat dumplings" + ], + "count": 1 + }, + { + "answers": [ + "家人团聚" + ], + "en_answers": [ + "family reunion" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-38": { + "question": "在中国,典型的家庭住宅是哪种类型的房子?", + "en_question": "Which is the typical type of house for a family in your country?", + "annotations": [ + { + "answers": [ + "公寓", + "公寓楼", + "楼房" + ], + "en_answers": [ + "apartment", + "apartment building" + ], + "count": 5 + }, + { + "answers": [ + "别墅" + ], + "en_answers": [ + "villa" + ], + "count": 1 + }, + { + "answers": [ + "自建房" + ], + "en_answers": [ + "self-built house" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-41": { + "question": "在中国,需要依赖他人照顾的老年人通常住在哪里?", + "en_question": "Where do the dependent elderly usually live in your country?", + "annotations": [ + { + "answers": [ + "子女家庭", + "之女家庭", + "子女家里", + "请护工照顾" + ], + "en_answers": [ + "children's home", + "please take care of the nursing staff" + ], + "count": 2 + }, + { + "answers": [ + "养老院", + "子女家" + ], + "en_answers": [ + "nursing home", + "children's home" + ], + "count": 2 + }, + { + "answers": [ + "乡村老家", + "农村", + "乡下" + ], + "en_answers": [ + "rural hometown", + "rural area", + "countrysize" + ], + "count": 2 + }, + { + "answers": [ + "家里" + ], + "en_answers": [ + "home" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-42": { + "question": "中国的产假有多少周?(只提供阿拉伯数字,例如:20。)", + "en_question": "How long (in weeks) is your country's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "14" + ], + "en_answers": [ + "14" + ], + "count": 2 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 2 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-43": { + "question": "中国的父亲陪产假有多少周?(只提供阿拉伯数字,例如:20。)", + "en_question": "How long (in weeks) is your country's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 2 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + }, + { + "answers": [ + "3天" + ], + "en_answers": [ + "3 days" + ], + "count": 1 + } + ], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-45": { + "question": "在中国,家庭度假通常选择哪种类型的目的地?", + "en_question": "What type of destination is commonly chosen for a family vacation in your country?", + "annotations": [ + { + "answers": [ + "热门城市景点" + ], + "en_answers": [ + "popular city attractions" + ], + "count": 1 + }, + { + "answers": [ + "乡村美景" + ], + "en_answers": [ + "rural beauty", + "countryside views" + ], + "count": 1 + }, + { + "answers": [ + "海滩" + ], + "en_answers": [ + "beach" + ], + "count": 1 + }, + { + "answers": [ + "山" + ], + "en_answers": [ + "mountain" + ], + "count": 1 + }, + { + "answers": [ + "古镇" + ], + "en_answers": [ + "ancient town" + ], + "count": 1 + }, + { + "answers": [ + "海边" + ], + "en_answers": [ + "seaside" + ], + "count": 1 + }, + { + "answers": [ + "花园" + ], + "en_answers": [ + "garden" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-05": { + "question": "在中国,老年人最喜欢什么运动?", + "en_question": "What sports do seniors like the most in your country?", + "annotations": [ + { + "answers": [ + "散步" + ], + "en_answers": [ + "walk" + ], + "count": 3 + }, + { + "answers": [ + "打太极拳", + "太极", + "打太极" + ], + "en_answers": [ + "practice tai chi", + "tai chi", + "playing tai chi" + ], + "count": 3 + }, + { + "answers": [ + "广场舞", + "跳广场舞" + ], + "en_answers": [ + "square dance", + "square dancing" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-06": { + "question": "在中国,男性最喜欢参与什么运动?", + "en_question": "What sports do men like to play the most in your country?", + "annotations": [ + { + "answers": [ + "篮球" + ], + "en_answers": [ + "basketball" + ], + "count": 4 + }, + { + "answers": [ + "足球" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "乒乓球" + ], + "en_answers": [ + "table tennis", + "ping pong" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-07": { + "question": "中国最著名的篮球运动员是谁?", + "en_question": "Who is the most famous basketball player in your country?", + "annotations": [ + { + "answers": [ + "姚明" + ], + "en_answers": [ + "yao ming", + "ming yao" + ], + "count": 4 + }, + { + "answers": [ + "王治郅" + ], + "en_answers": [ + "wang zhizhi", + "zhizhi wang" + ], + "count": 1 + }, + { + "answers": [ + "易建联" + ], + "en_answers": [ + "yi jianlian", + "jianlian yi" + ], + "count": 1 + }, + { + "answers": [ + "穆铁柱" + ], + "en_answers": [ + "mu tiezhu", + "tiezhu mu" + ], + "count": 1 + }, + { + "answers": [ + "郑海霞", + "海霞" + ], + "en_answers": [ + "haixia zheng", + "zheng haixia" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-08": { + "question": "在中国,孩子们最喜欢的运动是什么?", + "en_question": "What is the most popular sports among children in your country?", + "annotations": [ + { + "answers": [ + "篮球" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "足球" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "跑步" + ], + "en_answers": [ + "running" + ], + "count": 1 + }, + { + "answers": [ + "兵乓球" + ], + "en_answers": [ + "table tennis" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-09": { + "question": "在中国,女性最喜欢参与哪些运动?", + "en_question": "What sports do women like to play the most in your country?", + "annotations": [ + { + "answers": [ + "羽毛球" + ], + "en_answers": [ + "badminton" + ], + "count": 2 + }, + { + "answers": [ + "瑜伽" + ], + "en_answers": [ + "yoga" + ], + "count": 2 + }, + { + "answers": [ + "跑步" + ], + "en_answers": [ + "running" + ], + "count": 2 + }, + { + "answers": [ + "广场舞" + ], + "en_answers": [ + "square dance" + ], + "count": 1 + }, + { + "answers": [ + "乒乓球" + ], + "en_answers": [ + "table tennis", + "ping pong" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-11": { + "question": "中国在奥运会上哪个体育项目获得了最多的金牌?", + "en_question": "What sports event has your country won the most gold medals at the Olympics?", + "annotations": [ + { + "answers": [ + "乒乓球" + ], + "en_answers": [ + "table tennis", + "ping pong" + ], + "count": 4 + }, + { + "answers": [ + "跳水" + ], + "en_answers": [ + "diving" + ], + "count": 3 + }, + { + "answers": [ + "举重" + ], + "en_answers": [ + "weightlifting" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-15": { + "question": "在中国,大学里的男生最喜欢玩什么运动?", + "en_question": "What sports do male students in university like to play the most in your country?", + "annotations": [ + { + "answers": [ + "篮球" + ], + "en_answers": [ + "basketball" + ], + "count": 4 + }, + { + "answers": [ + "足球" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "羽毛球" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "游泳" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + }, + { + "answers": [ + "电子游戏", + "电玩" + ], + "en_answers": [ + "video game" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-16": { + "question": "中国的家庭平均有多少人?(只提供阿拉伯数字(例如,12)。)", + "en_question": "How many people are there in a family on average in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-18": { + "question": "在中国,夫妇通常会有几个孩子?(只提供阿拉伯数字(例如,12)。)", + "en_question": "How many children do couples usually have in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 5 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-31": { + "question": "中国小学的学制是多少年?(只提供阿拉伯数字,例如:12。)", + "en_question": "What is the duration of elementary school in years in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-32": { + "question": "中国义务教育的年限是多少年?(只提供阿拉伯数字,例如:12。)", + "en_question": "What is the duration of compulsory education in years in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 4 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-33": { + "question": "在中国,学生从几岁开始学习第二语言?(只提供阿拉伯数字(例如,12)。)", + "en_question": "From which age do students start learning their second language in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 2 + }, + { + "answers": [ + "6", + "6岁" + ], + "en_answers": [ + "6" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "11" + ], + "en_answers": [ + "11" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-38": { + "question": "中国的本科教育周期是多长?(只提供阿拉伯数字(例如,12)。)", + "en_question": "What is the duration of undergraduate education in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-40": { + "question": "中国小学低年级学生什么时候放学?(请以HH:MM格式提供,例如,18:00, 09:00。)", + "en_question": "What time do younger elementary school students finish school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "16:30" + ], + "en_answers": [ + "16:30" + ], + "count": 3 + }, + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 2 + }, + { + "answers": [ + "16:00" + ], + "en_answers": [ + "16:00" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-41": { + "question": "中国的小学生通常会演奏多少种乐器?(只提供阿拉伯数字(例如,12)。)", + "en_question": "How many musical instruments do elementary school students in your country typically play? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + }, + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 2 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-02": { + "question": "中国人更喜欢在一周的哪一天举行公司晚宴?", + "en_question": "What day of the week do people in your country prefer to have company dinners?", + "annotations": [ + { + "answers": [ + "周五", + "星期五" + ], + "en_answers": [ + "friday" + ], + "count": 5 + }, + { + "answers": [ + "周六", + "星期六" + ], + "en_answers": [ + "saturday" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-03": { + "question": "在中国,哪个地区/城市拥有最多的金融公司?", + "en_question": "Which region/city has the highest number of financial companies in your country?", + "annotations": [ + { + "answers": [ + "上海" + ], + "en_answers": [ + "shanghai" + ], + "count": 4 + }, + { + "answers": [ + "北京" + ], + "en_answers": [ + "beijing" + ], + "count": 2 + }, + { + "answers": [ + "香港" + ], + "en_answers": [ + "hong kong" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-07": { + "question": "中国最著名的私营公司是哪一家?", + "en_question": "What is the most famous private company in your country?", + "annotations": [ + { + "answers": [ + "腾讯" + ], + "en_answers": [ + "tencent" + ], + "count": 2 + }, + { + "answers": [ + "阿里巴巴" + ], + "en_answers": [ + "alibaba" + ], + "count": 2 + }, + { + "answers": [ + "华为" + ], + "en_answers": [ + "huawei" + ], + "count": 2 + }, + { + "answers": [ + "京东" + ], + "en_answers": [ + "jd.com, inc.", + "jd.com" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Ji-ko-08": { + "question": "在中国,每周最多可以工作多少小时?(只提供阿拉伯数字(例如,12)。)", + "en_question": "What is the maximum number of hours one can work per week in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 2 + }, + { + "answers": [ + "76" + ], + "en_answers": [ + "76" + ], + "count": 1 + }, + { + "answers": [ + "50" + ], + "en_answers": [ + "50" + ], + "count": 1 + }, + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 1 + }, + { + "answers": [ + "45" + ], + "en_answers": [ + "45" + ], + "count": 1 + }, + { + "answers": [ + "72", + "996" + ], + "en_answers": [ + "72" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-09": { + "question": "在中国的公司聚会上,人们通常吃些什么?", + "en_question": "What do people typically eat during company get-together in your country?", + "annotations": [ + { + "answers": [ + "火锅" + ], + "en_answers": [ + "hot pot" + ], + "count": 2 + }, + { + "answers": [ + "烧烤" + ], + "en_answers": [ + "barbecue" + ], + "count": 1 + }, + { + "answers": [ + "热菜" + ], + "en_answers": [ + "hot dishes" + ], + "count": 1 + }, + { + "answers": [ + "冷盆" + ], + "en_answers": [ + "cold dish" + ], + "count": 1 + }, + { + "answers": [ + "点心" + ], + "en_answers": [ + "dim sum" + ], + "count": 1 + }, + { + "answers": [ + "饺子" + ], + "en_answers": [ + "dumplings" + ], + "count": 1 + }, + { + "answers": [ + "蛋糕" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "水果" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-14": { + "question": "中国的代表性出口商品是什么?", + "en_question": "What is the representative export item of your country?", + "annotations": [ + { + "answers": [ + "义乌小商品" + ], + "en_answers": [ + "yiwu small commodities" + ], + "count": 1 + }, + { + "answers": [ + "手机" + ], + "en_answers": [ + "mobile phone" + ], + "count": 1 + }, + { + "answers": [ + "纺织" + ], + "en_answers": [ + "textile" + ], + "count": 1 + }, + { + "answers": [ + "大米" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "鞋" + ], + "en_answers": [ + "shoes" + ], + "count": 1 + }, + { + "answers": [ + "衣服" + ], + "en_answers": [ + "clothes" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-15": { + "question": "中国的典型午休时间有多长(以小时计)?(仅提供阿拉伯数字,保留到一位小数点(例如,2、3.5)。)", + "en_question": "How long (in hours) is the typical lunch break in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + }, + { + "answers": [ + "1.5" + ], + "en_answers": [ + "1.5" + ], + "count": 2 + }, + { + "answers": [ + "0.5" + ], + "en_answers": [ + "0.5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-16": { + "question": "在中国,产妇在生完孩子后为了恢复会在哪里住一段时间?", + "en_question": "Where do mothers stay for a certain period after childbirth for recovery in your country?", + "annotations": [ + { + "answers": [ + "月子中心" + ], + "en_answers": [ + "postpartum care center" + ], + "count": 4 + }, + { + "answers": [ + "医院" + ], + "en_answers": [ + "hospital" + ], + "count": 2 + }, + { + "answers": [ + "娘家" + ], + "en_answers": [ + "maternal home" + ], + "count": 1 + }, + { + "answers": [ + "家" + ], + "en_answers": [ + "family", + "home" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-19": { + "question": "在父母节上,中国最常赠送的花是什么?", + "en_question": "What is your country's most commonly given flower on Parents' Day?", + "annotations": [ + { + "answers": [ + "康乃馨" + ], + "en_answers": [ + "carnation" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-22": { + "question": "在中国社会,人们的第一份工资通常会特别花在什么上?", + "en_question": "What do people especially spend their first salary on in your country's society?", + "annotations": [ + { + "answers": [ + "衣服" + ], + "en_answers": [ + "clothes" + ], + "count": 2 + }, + { + "answers": [ + "礼物" + ], + "en_answers": [ + "gift", + "presents" + ], + "count": 1 + }, + { + "answers": [ + "请客吃饭" + ], + "en_answers": [ + "treat someone to a meal" + ], + "count": 1 + }, + { + "answers": [ + "购物" + ], + "en_answers": [ + "shopping" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-24": { + "question": "在中国,儿童最喜欢的休闲设施是什么?", + "en_question": "What is the most preferred recreational facility among children in your country?", + "annotations": [ + { + "answers": [ + "秋千" + ], + "en_answers": [ + "swing" + ], + "count": 2 + }, + { + "answers": [ + "游乐场" + ], + "en_answers": [ + "amusement park" + ], + "count": 1 + }, + { + "answers": [ + "滑梯" + ], + "en_answers": [ + "slide" + ], + "count": 1 + }, + { + "answers": [ + "迪士尼" + ], + "en_answers": [ + "disney" + ], + "count": 1 + }, + { + "answers": [ + "滑滑梯" + ], + "en_answers": [ + "slide" + ], + "count": 1 + }, + { + "answers": [ + "小火车" + ], + "en_answers": [ + "little train" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-25": { + "question": "中国有哪些与家庭相关的节日?", + "en_question": "What are the family-related holidays in your country?", + "annotations": [ + { + "answers": [ + "中秋节" + ], + "en_answers": [ + "mid-autumn festival" + ], + "count": 4 + }, + { + "answers": [ + "春节" + ], + "en_answers": [ + "spring festival", + "chinese new year", + "lunar new year" + ], + "count": 3 + }, + { + "answers": [ + "端午节" + ], + "en_answers": [ + "dragon boat festival" + ], + "count": 1 + }, + { + "answers": [ + "母亲节" + ], + "en_answers": [ + "mother's day" + ], + "count": 1 + }, + { + "answers": [ + "父亲节" + ], + "en_answers": [ + "father's day" + ], + "count": 1 + }, + { + "answers": [ + "重阳节" + ], + "en_answers": [ + "double ninth festival" + ], + "count": 1 + }, + { + "answers": [ + "清明节" + ], + "en_answers": [ + "qingming festival" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-26": { + "question": "在中国社会中,与孩子们从父母那里独立出来相关的关键里程碑是什么?", + "en_question": "What are the key milestones associated with children's independence from their parents in your country's society?", + "annotations": [ + { + "answers": [ + "工作" + ], + "en_answers": [ + "work" + ], + "count": 1 + }, + { + "answers": [ + "大学毕业" + ], + "en_answers": [ + "college graduate" + ], + "count": 1 + }, + { + "answers": [ + "买房子", + "买房" + ], + "en_answers": [ + "buy a house" + ], + "count": 1 + }, + { + "answers": [ + "结婚", + "成家" + ], + "en_answers": [ + "get married" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ji-ko-27": { + "question": "在中国拜访年长的父母时,常见的礼物是什么?", + "en_question": "What is the common gift you give when visiting elderly parents in your country?", + "annotations": [ + { + "answers": [ + "保健食品", + "保健品" + ], + "en_answers": [ + "health care products" + ], + "count": 2 + }, + { + "answers": [ + "水果篮" + ], + "en_answers": [ + "fruit basket" + ], + "count": 1 + }, + { + "answers": [ + "牛奶" + ], + "en_answers": [ + "milk" + ], + "count": 1 + }, + { + "answers": [ + "酒" + ], + "en_answers": [ + "alcohol" + ], + "count": 1 + }, + { + "answers": [ + "食品" + ], + "en_answers": [ + "food" + ], + "count": 1 + }, + { + "answers": [ + "钱" + ], + "en_answers": [ + "money" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-28": { + "question": "在中国,孩子出生后人们庆祝的第一天是什么时候?", + "en_question": "When is the first day that people celebrate after a child is born in your country?", + "annotations": [ + { + "answers": [ + "满月" + ], + "en_answers": [ + "first month", + "one month old" + ], + "count": 2 + }, + { + "answers": [ + "出生宴" + ], + "en_answers": [ + "birth feast" + ], + "count": 1 + }, + { + "answers": [ + "百天" + ], + "en_answers": [ + "hundred days" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ji-ko-29": { + "question": "在中国社会中,哪个年龄的生日庆祝得最隆重?", + "en_question": "Which age's birthday is celebrated the most grandly in your country's society?", + "annotations": [ + { + "answers": [ + "80" + ], + "en_answers": [ + "80" + ], + "count": 1 + }, + { + "answers": [ + "90" + ], + "en_answers": [ + "90" + ], + "count": 1 + }, + { + "answers": [ + "20", + "20岁" + ], + "en_answers": [ + "20" + ], + "count": 1 + }, + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 1 + }, + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-31": { + "question": "中国的中学和高中学生通常在哪里为考试学习?", + "en_question": "Where do middle and high school students in your country usually study for exams?", + "annotations": [ + { + "answers": [ + "学校" + ], + "en_answers": [ + "school" + ], + "count": 3 + }, + { + "answers": [ + "教室" + ], + "en_answers": [ + "classroom" + ], + "count": 1 + }, + { + "answers": [ + "课外辅导班" + ], + "en_answers": [ + "extracurricular tutoring class" + ], + "count": 1 + }, + { + "answers": [ + "哪里都可以学" + ], + "en_answers": [ + "can study anywhere" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-33": { + "question": "中国的高中生晚饭后通常去哪里?", + "en_question": "Where do high school students in your country usually go after dinner?", + "annotations": [ + { + "answers": [ + "回家", + "家" + ], + "en_answers": [ + "go home", + "home" + ], + "count": 4 + }, + { + "answers": [ + "操场" + ], + "en_answers": [ + "playground" + ], + "count": 1 + }, + { + "answers": [ + "晚自习" + ], + "en_answers": [ + "evening self-study" + ], + "count": 1 + }, + { + "answers": [ + "学校教室" + ], + "en_answers": [ + "school classroom" + ], + "count": 1 + }, + { + "answers": [ + "课外辅导班" + ], + "en_answers": [ + "extracurricular tutoring class" + ], + "count": 1 + }, + { + "answers": [ + "宿舍" + ], + "en_answers": [ + "dormitory", + "student accommodation" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-34": { + "question": "中国的小学生是怎么上学的?", + "en_question": "How do elementary school students in your country go to school?", + "annotations": [ + { + "answers": [ + "家长接送" + ], + "en_answers": [ + "parent pick-up and drop-off" + ], + "count": 2 + }, + { + "answers": [ + "走路" + ], + "en_answers": [ + "walk" + ], + "count": 2 + }, + { + "answers": [ + "坐公交车", + "坐公交" + ], + "en_answers": [ + "take the bus" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-35": { + "question": "在中国,最常见的私立教育形式是什么?", + "en_question": "What is the most common form of private education in your country?", + "annotations": [ + { + "answers": [ + "私立学校" + ], + "en_answers": [ + "private school" + ], + "count": 2 + }, + { + "answers": [ + "外语学校" + ], + "en_answers": [ + "foreign language school", + "internation school" + ], + "count": 1 + }, + { + "answers": [ + "幼儿园" + ], + "en_answers": [ + "private school" + ], + "count": 1 + }, + { + "answers": [ + "可出国交换" + ], + "en_answers": [ + "international exchange" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-36": { + "question": "在中国,中学或高中学生最常上哪个科目的补习班/私立教育机构?", + "en_question": "Which subject’s academy/private educational institute do middle or high students most frequently attend in your country?", + "annotations": [ + { + "answers": [ + "数学" + ], + "en_answers": [ + "mathematics" + ], + "count": 4 + }, + { + "answers": [ + "英语" + ], + "en_answers": [ + "english" + ], + "count": 3 + }, + { + "answers": [ + "物理" + ], + "en_answers": [ + "physics" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-37": { + "question": "在中国,中学和高中的学生上学通常穿什么样的衣服?", + "en_question": "What type of clothing do middle and high school students wear to school in your country?", + "annotations": [ + { + "answers": [ + "校服" + ], + "en_answers": [ + "school uniform" + ], + "count": 5 + }, + { + "answers": [ + "运动服" + ], + "en_answers": [ + "sportswear" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-38": { + "question": "在中国,哪个专业被认为是最难进入的?", + "en_question": "Which major is considered the most difficult to gain admission to in your country?", + "annotations": [ + { + "answers": [ + "医学" + ], + "en_answers": [ + "medicine" + ], + "count": 2 + }, + { + "answers": [ + "航天科学" + ], + "en_answers": [ + "aerospace science" + ], + "count": 1 + }, + { + "answers": [ + "法学" + ], + "en_answers": [ + "law" + ], + "count": 1 + }, + { + "answers": [ + "建筑学", + "建筑系", + "建筑" + ], + "en_answers": [ + "architecture" + ], + "count": 1 + }, + { + "answers": [ + "金融" + ], + "en_answers": [ + "finance" + ], + "count": 1 + }, + { + "answers": [ + "计算机" + ], + "en_answers": [ + "computer science" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-39": { + "question": "在中国,小学生最常学习的乐器是什么?", + "en_question": "What is the most commonly learned musical instrument by elementary school students in your country?", + "annotations": [ + { + "answers": [ + "钢琴" + ], + "en_answers": [ + "piano" + ], + "count": 5 + }, + { + "answers": [ + "吉他" + ], + "en_answers": [ + "guitar" + ], + "count": 1 + }, + { + "answers": [ + "小提琴" + ], + "en_answers": [ + "violin" + ], + "count": 1 + }, + { + "answers": [ + "口琴" + ], + "en_answers": [ + "harmonica" + ], + "count": 1 + }, + { + "answers": [ + "电子琴" + ], + "en_answers": [ + "electronic keyboard" + ], + "count": 1 + }, + { + "answers": [ + "竖笛" + ], + "en_answers": [ + "vertical flute" + ], + "count": 1 + }, + { + "answers": [ + "二胡" + ], + "en_answers": [ + "erhu" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-40": { + "question": "在中国的学校里,高中生在课间休息时间通常做些什么?", + "en_question": "What do high school students typically do during break time in schools in your country?", + "annotations": [ + { + "answers": [ + "上厕所" + ], + "en_answers": [ + "go to the toilet" + ], + "count": 1 + }, + { + "answers": [ + "聊天" + ], + "en_answers": [ + "chat" + ], + "count": 1 + }, + { + "answers": [ + "玩耍" + ], + "en_answers": [ + "play" + ], + "count": 1 + }, + { + "answers": [ + "睡觉" + ], + "en_answers": [ + "sleep" + ], + "count": 1 + }, + { + "answers": [ + "写作业" + ], + "en_answers": [ + "do homework" + ], + "count": 1 + }, + { + "answers": [ + "学习" + ], + "en_answers": [ + "study" + ], + "count": 1 + }, + { + "answers": [ + "运动" + ], + "en_answers": [ + "sports", + "exercise" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-41": { + "question": "在中国的学校里,学生们通常穿什么样的鞋子?", + "en_question": "What kind of shoes do students wear in schools in your country?", + "annotations": [ + { + "answers": [ + "运动鞋" + ], + "en_answers": [ + "sneakers" + ], + "count": 5 + }, + { + "answers": [ + "皮鞋" + ], + "en_answers": [ + "leather shoes" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-42": { + "question": "中国的大学入学考试都有哪些必考科目?", + "en_question": "What are the required subjects in your country's university entrance exam?", + "annotations": [ + { + "answers": [ + "数学", + "数", + "语数英" + ], + "en_answers": [ + "mathematics", + "math" + ], + "count": 5 + }, + { + "answers": [ + "语文", + "语", + "语数英" + ], + "en_answers": [ + "chinese", + "literature" + ], + "count": 5 + }, + { + "answers": [ + "英语", + "英", + "语数英" + ], + "en_answers": [ + "english" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-44": { + "question": "中国哪个城市里的哪个区域学术热情最高?", + "en_question": "Which region (within a city) in your country has the highest academic fervor?", + "annotations": [ + { + "answers": [ + "北京" + ], + "en_answers": [ + "beijing" + ], + "count": 2 + }, + { + "answers": [ + "浙江" + ], + "en_answers": [ + "zhejiang" + ], + "count": 1 + }, + { + "answers": [ + "上海" + ], + "en_answers": [ + "shanghai" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Ji-ko-45": { + "question": "在中国的大学节日中,人们最期待的是什么?", + "en_question": "What do people look forward to the most at university festivals in your country?", + "annotations": [ + { + "answers": [ + "放假", + "假日" + ], + "en_answers": [ + "holiday" + ], + "count": 3 + }, + { + "answers": [ + "跳舞" + ], + "en_answers": [ + "dance" + ], + "count": 1 + }, + { + "answers": [ + "国庆节" + ], + "en_answers": [ + "national day" + ], + "count": 1 + }, + { + "answers": [ + "聚会" + ], + "en_answers": [ + "party" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-01": { + "question": "中国第二大流行的运动是什么?", + "en_question": "What is the second most popular sport in your country?", + "annotations": [ + { + "answers": [ + "篮球" + ], + "en_answers": [ + "basketball" + ], + "count": 3 + }, + { + "answers": [ + "足球" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-02": { + "question": "在中国,最受欢迎的不用球玩的运动是什么?", + "en_question": "What is the most popular sport played without a ball in your country?", + "annotations": [ + { + "answers": [ + "象棋" + ], + "en_answers": [ + "chinese chess" + ], + "count": 2 + }, + { + "answers": [ + "灌蛋" + ], + "en_answers": [ + "poker" + ], + "count": 1 + }, + { + "answers": [ + "钓鱼" + ], + "en_answers": [ + "fishing" + ], + "count": 1 + }, + { + "answers": [ + "游泳" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + }, + { + "answers": [ + "踢键子" + ], + "en_answers": [ + "shuttlecock kicking" + ], + "count": 1 + }, + { + "answers": [ + "跳绳" + ], + "en_answers": [ + "jump rope" + ], + "count": 1 + }, + { + "answers": [ + "广场舞" + ], + "en_answers": [ + "square dance" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-09": { + "question": "在中国,哪些运动最常与上层阶级联系在一起?", + "en_question": "What sports are most associated with the upper class in your country?", + "annotations": [ + { + "answers": [ + "高尔夫" + ], + "en_answers": [ + "golf" + ], + "count": 4 + }, + { + "answers": [ + "网球" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Jo-sp-13": { + "question": "在中国最受欢迎的水上运动是什么?", + "en_question": "What is the most popular water sport in your country?", + "annotations": [ + { + "answers": [ + "游泳" + ], + "en_answers": [ + "swimming" + ], + "count": 3 + }, + { + "answers": [ + "跳水" + ], + "en_answers": [ + "diving" + ], + "count": 2 + }, + { + "answers": [ + "水上摩托" + ], + "en_answers": [ + "jet ski" + ], + "count": 1 + }, + { + "answers": [ + "水上降落伞" + ], + "en_answers": [ + "parasailing" + ], + "count": 1 + }, + { + "answers": [ + "划龙舟" + ], + "en_answers": [ + "dragon boat racing" + ], + "count": 1 + }, + { + "answers": [ + "潜水" + ], + "en_answers": [ + "diving" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-14": { + "question": "在中国最受欢迎的智力运动是什么?", + "en_question": "What is the most popular mental sport in your country?", + "annotations": [ + { + "answers": [ + "围棋" + ], + "en_answers": [ + "go" + ], + "count": 3 + }, + { + "answers": [ + "象棋", + "中国象棋" + ], + "en_answers": [ + "chinese chess" + ], + "count": 3 + }, + { + "answers": [ + "麻将" + ], + "en_answers": [ + "mahjong" + ], + "count": 1 + }, + { + "answers": [ + "斗地主" + ], + "en_answers": [ + "fight the landlord" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-18": { + "question": "在中国,一个标准工人每年有多少天假期?(只提供阿拉伯数字(例如,12)。)", + "en_question": "How many holiday days per year does a standard worker gets in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 2 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 1 + }, + { + "answers": [ + "115" + ], + "en_answers": [ + "115" + ], + "count": 1 + }, + { + "answers": [ + "116" + ], + "en_answers": [ + "116" + ], + "count": 1 + }, + { + "answers": [ + "11" + ], + "en_answers": [ + "11" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-19": { + "question": "在中国,哪个地区传统上与农业有关?", + "en_question": "What region in your country has been traditionally associated with agriculture?", + "annotations": [ + { + "answers": [ + "河南" + ], + "en_answers": [ + "henan" + ], + "count": 2 + }, + { + "answers": [ + "东北", + "东北平原" + ], + "en_answers": [ + "northeast", + "northeast plain" + ], + "count": 2 + }, + { + "answers": [ + "广东" + ], + "en_answers": [ + "guangdong" + ], + "count": 1 + }, + { + "answers": [ + "华北平原" + ], + "en_answers": [ + "north china plain" + ], + "count": 1 + }, + { + "answers": [ + "长江中下游平原" + ], + "en_answers": [ + "yangtze river middle and lower reaches plain" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Jo-sp-21": { + "question": "在中国,人们通常什么时间离开工作去吃午饭?(请提供HH:MM格式,例如,18:00, 09:00。)", + "en_question": "What time, if any, do people usually leave work for lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "12:00" + ], + "en_answers": [ + "12:00" + ], + "count": 4 + }, + { + "answers": [ + "12:30" + ], + "en_answers": [ + "12:30" + ], + "count": 2 + }, + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 1 + }, + { + "answers": [ + "11:30" + ], + "en_answers": [ + "11:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-31": { + "question": "在中国,高中生通常什么时间放学?(请以HH:MM格式提供,例如,18:00, 09:00。)", + "en_question": "What time do high school students tend to leave school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "22:00" + ], + "en_answers": [ + "22:00" + ], + "count": 2 + }, + { + "answers": [ + "17:15" + ], + "en_answers": [ + "17:15" + ], + "count": 1 + }, + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 1 + }, + { + "answers": [ + "20:00" + ], + "en_answers": [ + "20:00" + ], + "count": 1 + }, + { + "answers": [ + "21:00" + ], + "en_answers": [ + "21:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-32": { + "question": "在中国,小学生通常在学校练习什么运动?", + "en_question": "What sport do elementary school students tend to practice at school in your country?", + "annotations": [ + { + "answers": [ + "跑步", + "跑操" + ], + "en_answers": [ + "running" + ], + "count": 5 + }, + { + "answers": [ + "足球" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "跳绳" + ], + "en_answers": [ + "jump rope" + ], + "count": 2 + }, + { + "answers": [ + "踢毽子" + ], + "en_answers": [ + "kick shuttlecock" + ], + "count": 1 + }, + { + "answers": [ + "拔河" + ], + "en_answers": [ + "tug of war" + ], + "count": 1 + }, + { + "answers": [ + "篮球" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "立定跳远" + ], + "en_answers": [ + "standing long jump" + ], + "count": 1 + }, + { + "answers": [ + "坐卧体前屈" + ], + "en_answers": [ + "sit and reach" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-36": { + "question": "中国小学的暑假有多少周?(只提供阿拉伯数字,例如:7、8。)", + "en_question": "How long (in weeks) are summer vacations at elementary schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-37": { + "question": "中国的大学暑假有多长时间(以周为单位)?(只提供阿拉伯数字,例如:7、8。)", + "en_question": "How long (in weeks) are summer vacations at universities in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 3 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 2 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-39": { + "question": "在中国,小学教育从几岁开始?(只提供阿拉伯数字,例如:7、8。)", + "en_question": "At what age does elementary education begin in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 4 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-43": { + "question": "在中国的小学教育中,除了官方语言外,还学习多少种语言?(请仅用阿拉伯数字提供,例如:7、8。)", + "en_question": "How many languages are studied in elementary education besides your country's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 4 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-01": { + "question": "在中国,人们用餐时通常使用什么餐具?", + "en_question": "What eating utensils do people commonly used in your country?", + "annotations": [ + { + "answers": [ + "筷子" + ], + "en_answers": [ + "chopsticks" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-04": { + "question": "中国人喜欢喝什么不含酒精的饮料?", + "en_question": "What soft drink do people in your country like to have?", + "annotations": [ + { + "answers": [ + "可乐" + ], + "en_answers": [ + "cola", + "coke" + ], + "count": 2 + }, + { + "answers": [ + "奶茶", + "珍珠奶茶" + ], + "en_answers": [ + "milk tea", + "bubble tea" + ], + "count": 1 + }, + { + "answers": [ + "东方树叶" + ], + "en_answers": [ + "oriental leaf" + ], + "count": 1 + }, + { + "answers": [ + "绿茶" + ], + "en_answers": [ + "green tea" + ], + "count": 1 + }, + { + "answers": [ + "茶" + ], + "en_answers": [ + "tea" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-06": { + "question": "中国最受欢迎的传统酒精饮料是什么?", + "en_question": "What is the most popular traditional alcohol in your country?", + "annotations": [ + { + "answers": [ + "白酒" + ], + "en_answers": [ + "chinese spirits", + "white liquor", + "bai" + ], + "count": 4 + }, + { + "answers": [ + "茅台白酒" + ], + "en_answers": [ + "moutai liquor", + "moutai" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-07": { + "question": "在中国,人们平均在餐厅吃晚饭需要多长时间(以小时计)?(只提供阿拉伯数字,保留到一位小数点,例如:2、3.5。)", + "en_question": "How long (in hours) on average does it take for people in your country to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 4 + }, + { + "answers": [ + "1.5" + ], + "en_answers": [ + "1.5" + ], + "count": 2 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-09": { + "question": "在中国,人们通常什么时间吃晚饭?(请以HH:MM格式提供,例如,18:00, 09:00。)", + "en_question": "What time do people usually have dinner in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 3 + }, + { + "answers": [ + "19:00" + ], + "en_answers": [ + "19:00" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-12": { + "question": "中国人喜欢喝什么样的汤?", + "en_question": "What kind of soup do people from your country like to have?", + "annotations": [ + { + "answers": [ + "西红柿马铃薯汤" + ], + "en_answers": [ + "tomato potato soup" + ], + "count": 1 + }, + { + "answers": [ + "猪骨汤" + ], + "en_answers": [ + "pork bone soup" + ], + "count": 1 + }, + { + "answers": [ + "鲜汤", + "鲜的" + ], + "en_answers": [ + "fresh soup" + ], + "count": 1 + }, + { + "answers": [ + "番茄蛋汤" + ], + "en_answers": [ + "tomato egg soup" + ], + "count": 1 + }, + { + "answers": [ + "高汤" + ], + "en_answers": [ + "stock" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-13": { + "question": "中国人喜欢吃什么街头小吃?", + "en_question": "What street food do people from your country like to eat?", + "annotations": [ + { + "answers": [ + "烤肠" + ], + "en_answers": [ + "roasted sausage" + ], + "count": 3 + }, + { + "answers": [ + "烧烤", + "烤串" + ], + "en_answers": [ + "barbecue" + ], + "count": 2 + }, + { + "answers": [ + "糖葫芦", + "冰糖葫芦" + ], + "en_answers": [ + "candied haw" + ], + "count": 1 + }, + { + "answers": [ + "臭豆腐" + ], + "en_answers": [ + "stinky tofu" + ], + "count": 1 + }, + { + "answers": [ + "炸串" + ], + "en_answers": [ + "fried skewers" + ], + "count": 1 + }, + { + "answers": [ + "面筋" + ], + "en_answers": [ + "gluten" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-15": { + "question": "中国人喜欢吃什么样的海鲜?", + "en_question": "What kind of seafood do people from your country like to eat?", + "annotations": [ + { + "answers": [ + "螃蟹" + ], + "en_answers": [ + "crab" + ], + "count": 2 + }, + { + "answers": [ + "鱼" + ], + "en_answers": [ + "fish" + ], + "count": 1 + }, + { + "answers": [ + "三文鱼" + ], + "en_answers": [ + "salmon" + ], + "count": 1 + }, + { + "answers": [ + "龙虾" + ], + "en_answers": [ + "lobster" + ], + "count": 1 + }, + { + "answers": [ + "虾" + ], + "en_answers": [ + "shrimp", + "prawn" + ], + "count": 1 + }, + { + "answers": [ + "鲈鱼" + ], + "en_answers": [ + "perch", + "seabass" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-16": { + "question": "中国最大的节日是什么?", + "en_question": "What is the biggest festival in your country?", + "annotations": [ + { + "answers": [ + "春节" + ], + "en_answers": [ + "spring festival", + "chinese new year", + "lunar new year" + ], + "count": 5 + }, + { + "answers": [ + "中秋节" + ], + "en_answers": [ + "mid-autumn festival" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-28": { + "question": "在中国,人们在城市间旅行时最常用的公共交通工具是什么?", + "en_question": "What is the most commonly used public transport by people when travelling between cites in your country?", + "annotations": [ + { + "answers": [ + "高铁" + ], + "en_answers": [ + "high-speed rail" + ], + "count": 4 + }, + { + "answers": [ + "飞机" + ], + "en_answers": [ + "airplane" + ], + "count": 2 + }, + { + "answers": [ + "动车" + ], + "en_answers": [ + "high-speed train" + ], + "count": 1 + }, + { + "answers": [ + "自驾" + ], + "en_answers": [ + "self-driving" + ], + "count": 1 + }, + { + "answers": [ + "铁路" + ], + "en_answers": [ + "railway" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-30": { + "question": "与中国最大的节日相关的具体装饰或符号有哪些?", + "en_question": "What are the specific decorations or symbols associated with the most biggest festival in your country?", + "annotations": [ + { + "answers": [ + "中国结" + ], + "en_answers": [ + "chinese knot" + ], + "count": 3 + }, + { + "answers": [ + "春联", + "对联" + ], + "en_answers": [ + "spring festival couplets", + "chinese couplets", + "new year scrolls" + ], + "count": 2 + }, + { + "answers": [ + "灯笼" + ], + "en_answers": [ + "lantern" + ], + "count": 2 + }, + { + "answers": [ + "对联" + ], + "en_answers": [ + "couplet" + ], + "count": 1 + }, + { + "answers": [ + "鞭炮" + ], + "en_answers": [ + "firecrackers" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-37": { + "question": "在中国,女性最喜欢观看哪些体育运动?", + "en_question": "What sports do women like to watch the most in your country?", + "annotations": [ + { + "answers": [ + "跳水" + ], + "en_answers": [ + "diving" + ], + "count": 1 + }, + { + "answers": [ + "乒乓球" + ], + "en_answers": [ + "table tennis", + "ping pong" + ], + "count": 1 + }, + { + "answers": [ + "篮球" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "游泳" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + }, + { + "answers": [ + "女排" + ], + "en_answers": [ + "women's volleyball" + ], + "count": 1 + }, + { + "answers": [ + "麻将" + ], + "en_answers": [ + "mahjong" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-38": { + "question": "在中国,男性最喜欢观看哪些体育运动?", + "en_question": "What sports do men like to watch the most in your country?", + "annotations": [ + { + "answers": [ + "足球" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "篮球" + ], + "en_answers": [ + "basketball" + ], + "count": 3 + }, + { + "answers": [ + "跳水" + ], + "en_answers": [ + "diving" + ], + "count": 1 + }, + { + "answers": [ + "f1方程式" + ], + "en_answers": [ + "f1 formula" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-41": { + "question": "中国20多岁的女性通常参加什么休闲活动?", + "en_question": "What is the common leisure activity that females in their 20s in your country engage in?", + "annotations": [ + { + "answers": [ + "逛街" + ], + "en_answers": [ + "shopping" + ], + "count": 2 + }, + { + "answers": [ + "网络游戏" + ], + "en_answers": [ + "online game" + ], + "count": 1 + }, + { + "answers": [ + "剧本杀" + ], + "en_answers": [ + "script murder", + "murder mystery game", + "live action role playing", + "larp" + ], + "count": 1 + }, + { + "answers": [ + "卡拉ok" + ], + "en_answers": [ + "karaoke" + ], + "count": 1 + }, + { + "answers": [ + "旅游" + ], + "en_answers": [ + "tourism" + ], + "count": 1 + }, + { + "answers": [ + "朋友聚会" + ], + "en_answers": [ + "friends gathering" + ], + "count": 1 + }, + { + "answers": [ + "旅行" + ], + "en_answers": [ + "travel" + ], + "count": 1 + }, + { + "answers": [ + "电影" + ], + "en_answers": [ + "movie" + ], + "count": 1 + }, + { + "answers": [ + "打麻将" + ], + "en_answers": [ + "play mahjong" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-42": { + "question": "中国20多岁的男性通常参加什么休闲活动?", + "en_question": "What is the common leisure activity that males in their 20s in your country engage in?", + "annotations": [ + { + "answers": [ + "打游戏" + ], + "en_answers": [ + "play games" + ], + "count": 2 + }, + { + "answers": [ + "篮球" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "跑步" + ], + "en_answers": [ + "running" + ], + "count": 1 + }, + { + "answers": [ + "登山" + ], + "en_answers": [ + "mountaineering" + ], + "count": 1 + }, + { + "answers": [ + "网络游戏" + ], + "en_answers": [ + "online game" + ], + "count": 1 + }, + { + "answers": [ + "运动" + ], + "en_answers": [ + "sports", + "work out" + ], + "count": 1 + }, + { + "answers": [ + "密室逃脱" + ], + "en_answers": [ + "escape room" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-46": { + "question": "在中国,人们通常在工作日的午餐后休息多长时间(以小时计)?(只提供阿拉伯数字,保留到一位小数点,例如:2、3.5。)", + "en_question": "How long (in hours) do people usually take a break after lunch on a weekday in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 4 + }, + { + "answers": [ + "0.5" + ], + "en_answers": [ + "0.5" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-48": { + "question": "在中国的工作日里,人们午餐通常吃什么?", + "en_question": "What do people eat for lunch during the working days in your country?", + "annotations": [ + { + "answers": [ + "米饭" + ], + "en_answers": [ + "rice" + ], + "count": 2 + }, + { + "answers": [ + "食堂盒饭", + "食堂" + ], + "en_answers": [ + "canteen boxed meal", + "canteen" + ], + "count": 2 + }, + { + "answers": [ + "自己带饭" + ], + "en_answers": [ + "bring your own meal" + ], + "count": 1 + }, + { + "answers": [ + "外卖快餐" + ], + "en_answers": [ + "takeout fast food" + ], + "count": 1 + }, + { + "answers": [ + "面条" + ], + "en_answers": [ + "noodles" + ], + "count": 1 + }, + { + "answers": [ + "外卖" + ], + "en_answers": [ + "takeout", + "takeaway" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-50": { + "question": "中国人的平均通勤时间是多少(分钟)?(只提供阿拉伯数字(例如,1)。)", + "en_question": "What is the average commute time (in minutes) for people in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 3 + }, + { + "answers": [ + "90" + ], + "en_answers": [ + "90" + ], + "count": 1 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-51": { + "question": "在中国,人们上班最常用的交通工具是什么?", + "en_question": "What is the most common transportation that people take to get to work in your country?", + "annotations": [ + { + "answers": [ + "地铁" + ], + "en_answers": [ + "subway", + "metro" + ], + "count": 4 + }, + { + "answers": [ + "私家车" + ], + "en_answers": [ + "private car", + "car" + ], + "count": 3 + }, + { + "answers": [ + "公交", + "公交车", + "公共汽车" + ], + "en_answers": [ + "bus" + ], + "count": 3 + }, + { + "answers": [ + "公共交通" + ], + "en_answers": [ + "public transport" + ], + "count": 1 + }, + { + "answers": [ + "共享单车" + ], + "en_answers": [ + "shared bicycle" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-54": { + "question": "中国的婚假有多少天?(只提供阿拉伯数字,例如:12。)", + "en_question": "How long (in days) is the marriage leave in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "3", + "3天" + ], + "en_answers": [ + "3" + ], + "count": 4 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-56": { + "question": "中国女性的典型退休年龄是多少?(只提供阿拉伯数字(例如,12)。)", + "en_question": "What is the typical retirement age for women in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "55" + ], + "en_answers": [ + "55" + ], + "count": 4 + }, + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 1 + }, + { + "answers": [ + "65" + ], + "en_answers": [ + "65" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-57": { + "question": "中国男性的典型退休年龄是多少?(只提供阿拉伯数字(例如,12)。)", + "en_question": "What is the typical retirement age for men in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 3 + }, + { + "answers": [ + "65" + ], + "en_answers": [ + "65" + ], + "count": 1 + }, + { + "answers": [ + "61" + ], + "en_answers": [ + "61" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-58": { + "question": "在中国,哪个职业最受尊敬?", + "en_question": "Which profession is the most respected in your country?", + "annotations": [ + { + "answers": [ + "老师" + ], + "en_answers": [ + "teacher" + ], + "count": 4 + }, + { + "answers": [ + "公务员" + ], + "en_answers": [ + "civil servant" + ], + "count": 2 + }, + { + "answers": [ + "公司总裁", + "ceo" + ], + "en_answers": [ + "company president", + "ceo", + "chief executive officer" + ], + "count": 1 + }, + { + "answers": [ + "消防员" + ], + "en_answers": [ + "firefighter" + ], + "count": 1 + }, + { + "answers": [ + "警察" + ], + "en_answers": [ + "police" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-60": { + "question": "中国的典型工作日时长(以小时计)是多少?(仅提供阿拉伯数字(0~24))。", + "en_question": "What is the duration (in hours) of a typical workday in your country? (Provide Arabic numerals (0~24) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 4 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-61": { + "question": "在中国,女性最偏爱的职业是哪个?", + "en_question": "Which occupation is most preferred among females in your country?", + "annotations": [ + { + "answers": [ + "教师", + "老师" + ], + "en_answers": [ + "teacher" + ], + "count": 4 + }, + { + "answers": [ + "公务员" + ], + "en_answers": [ + "civil servant" + ], + "count": 1 + }, + { + "answers": [ + "社交媒体主播" + ], + "en_answers": [ + "social media influencer" + ], + "count": 1 + }, + { + "answers": [ + "护士" + ], + "en_answers": [ + "nurse" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Jod-ch-62": { + "question": "在中国,男性最偏爱哪种职业?", + "en_question": "Which occupation is most preferred among males in your country?", + "annotations": [ + { + "answers": [ + "公务员" + ], + "en_answers": [ + "civil servant" + ], + "count": 3 + }, + { + "answers": [ + "投行" + ], + "en_answers": [ + "investment bank" + ], + "count": 1 + }, + { + "answers": [ + "医生" + ], + "en_answers": [ + "doctor" + ], + "count": 1 + }, + { + "answers": [ + "程序员" + ], + "en_answers": [ + "programmer", + "software engineer" + ], + "count": 1 + }, + { + "answers": [ + "当官(公务员)" + ], + "en_answers": [ + "be an official (civil servant)" + ], + "count": 1 + }, + { + "answers": [ + "做生意(做老板)" + ], + "en_answers": [ + "doing business (being a boss)" + ], + "count": 1 + }, + { + "answers": [ + "白领(坐办公室)" + ], + "en_answers": [ + "white-collar (office worker)" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ki-pe-17": { + "question": "通常情况下,中国学生平均接受多长时间的教育?(例如,小学、高中)", + "en_question": "On average, how far do students typically pursue their education in your country? (e.g., elementary, high school)", + "annotations": [ + { + "answers": [ + "大学", + "本/专科" + ], + "en_answers": [ + "undergraduate" + ], + "count": 3 + }, + { + "answers": [ + "高中" + ], + "en_answers": [ + "high school" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-24": { + "question": "在中国的学校里除了英语之外还教授哪种语言?", + "en_question": "What language is taught in schools in your country besides English?", + "annotations": [ + { + "answers": [ + "中文", + "汉语" + ], + "en_answers": [ + "chinese", + "chinese language" + ], + "count": 4 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ki-pe-30": { + "question": "中国的学校一般在星期几休息?", + "en_question": "What days of the week are schools closed in your country?", + "annotations": [ + { + "answers": [ + "周六", + "星期六", + "星期六天" + ], + "en_answers": [ + "saturday" + ], + "count": 5 + }, + { + "answers": [ + "周日", + "星期天", + "星期六天", + "星期日", + "周天" + ], + "en_answers": [ + "sunday", + "saturday" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-32": { + "question": "在中国,主人通常为客人准备什么食物?", + "en_question": "What food do the hosts usually prepare for the guests in your country?", + "annotations": [ + { + "answers": [ + "热炒" + ], + "en_answers": [ + "stir-fry" + ], + "count": 1 + }, + { + "answers": [ + "冷盆" + ], + "en_answers": [ + "cold dish" + ], + "count": 1 + }, + { + "answers": [ + "点心" + ], + "en_answers": [ + "dim sum" + ], + "count": 1 + }, + { + "answers": [ + "米饭", + "米饭和菜" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "菜", + "米饭和菜" + ], + "en_answers": [ + "dishes" + ], + "count": 1 + }, + { + "answers": [ + "大鱼大肉" + ], + "en_answers": [ + "plenty of meat and fish", + "dish with generous amounts of meat and fish" + ], + "count": 1 + }, + { + "answers": [ + "鸡" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "鸭" + ], + "en_answers": [ + "duck" + ], + "count": 1 + }, + { + "answers": [ + "鱼" + ], + "en_answers": [ + "fish" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ki-pe-34": { + "question": "在中国,早餐通常喝什么?", + "en_question": "What is the usual drink in the breakfast in your country?", + "annotations": [ + { + "answers": [ + "豆浆" + ], + "en_answers": [ + "soy milk" + ], + "count": 5 + }, + { + "answers": [ + "牛奶" + ], + "en_answers": [ + "milk" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-36": { + "question": "除了源自中国的食物,哪个国家的食物在中国更受欢迎?", + "en_question": "Except the food original from your country, which country's food is more popular in your country?", + "annotations": [ + { + "answers": [ + "美国" + ], + "en_answers": [ + "united states" + ], + "count": 3 + }, + { + "answers": [ + "日本" + ], + "en_answers": [ + "japan" + ], + "count": 2 + }, + { + "answers": [ + "泰国" + ], + "en_answers": [ + "thailand" + ], + "count": 1 + }, + { + "answers": [ + "法国" + ], + "en_answers": [ + "france" + ], + "count": 1 + }, + { + "answers": [ + "英国" + ], + "en_answers": [ + "united kingdom" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-39": { + "question": "在中国,家庭野餐通常准备什么食物?", + "en_question": "What food is usually prepared for a family picnic in your country?", + "annotations": [ + { + "answers": [ + "水果" + ], + "en_answers": [ + "fruit" + ], + "count": 2 + }, + { + "answers": [ + "预制菜" + ], + "en_answers": [ + "ready-to-cook meal" + ], + "count": 1 + }, + { + "answers": [ + "零食" + ], + "en_answers": [ + "snacks" + ], + "count": 1 + }, + { + "answers": [ + "三明治" + ], + "en_answers": [ + "sandwich" + ], + "count": 1 + }, + { + "answers": [ + "蛋糕" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "鸡蛋" + ], + "en_answers": [ + "egg" + ], + "count": 1 + }, + { + "answers": [ + "方便面" + ], + "en_answers": [ + "instant noodles" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-40": { + "question": "哪些来自中国的食物被世界其他地方认为是令人厌恶的?", + "en_question": "Which food from your country is considered disgusting by the rest of the world?", + "annotations": [ + { + "answers": [ + "皮蛋" + ], + "en_answers": [ + "century egg", + "preserved egg" + ], + "count": 2 + }, + { + "answers": [ + "狗肉" + ], + "en_answers": [ + "dog meat" + ], + "count": 1 + }, + { + "answers": [ + "臭豆腐" + ], + "en_answers": [ + "stinky tofu" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-43": { + "question": "中国的流行面包叫什么名字?", + "en_question": "What is the name of the popular bread in your country?", + "annotations": [ + { + "answers": [ + "欧包" + ], + "en_answers": [ + "european-style bread", + "european bread" + ], + "count": 1 + }, + { + "answers": [ + "脏脏包" + ], + "en_answers": [ + "dirty bun" + ], + "count": 1 + }, + { + "answers": [ + "资溪面包" + ], + "en_answers": [ + "zixi bread" + ], + "count": 1 + }, + { + "answers": [ + "鲍师傅" + ], + "en_answers": [ + "master bao" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 2, + "not-applicable": 0 + } + }, + "Ki-pe-51": { + "question": "中国的政府办公室一般什么时间关闭?(请提供HH:MM格式,例如,18:00, 09:00。)", + "en_question": "What time of day are government offices closed in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 3 + }, + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-53": { + "question": "中国政府机关的正常上班时间是什么时候?(请提供HH:MM格式,例如,18:00, 09:00。)", + "en_question": "What is the normal start time of government offices in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 4 + }, + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-01": { + "question": "中国哪个国家假期的持续时间最长?", + "en_question": "What national holiday has the longest duration in your country?", + "annotations": [ + { + "answers": [ + "春节" + ], + "en_answers": [ + "spring festival", + "chinese new year", + "lunar new year" + ], + "count": 4 + }, + { + "answers": [ + "国庆节" + ], + "en_answers": [ + "national day", + "1st of october", + "october 1st" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-02": { + "question": "中国人民庆祝国庆日通常会做哪些活动?", + "en_question": "What are the common activities people from your country do to celebrate Independence day?", + "annotations": [ + { + "answers": [ + "旅游" + ], + "en_answers": [ + "tourism", + "travel" + ], + "count": 2 + }, + { + "answers": [ + "阅兵式", + "看阅兵" + ], + "en_answers": [ + "military parade", + "watch the parade" + ], + "count": 2 + }, + { + "answers": [ + "呆在家里" + ], + "en_answers": [ + "stay at home" + ], + "count": 1 + }, + { + "answers": [ + "烟花" + ], + "en_answers": [ + "fireworks" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Kik-in-04": { + "question": "在中国,当家里有人去世时,房子前面会安装什么?", + "en_question": "What is installed in front of the house when a family member dies in your country?", + "annotations": [ + { + "answers": [ + "挽联", + "白色的挽联" + ], + "en_answers": [ + "funeral couplet", + "white mourning banner" + ], + "count": 2 + }, + { + "answers": [ + "白色灯笼" + ], + "en_answers": [ + "white lantern" + ], + "count": 1 + }, + { + "answers": [ + "灵堂" + ], + "en_answers": [ + "memorial hall" + ], + "count": 1 + } + ], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-05": { + "question": "在中国,怀孕庆祝活动或仪式通常在什么时候举行?", + "en_question": "When is a pregnancy celebration or ceremony usually held in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "idk": 1, + "no-answer": 1 + } + }, + "Kik-in-06": { + "question": "在中国,婚礼前通常会举办什么活动?", + "en_question": "What event is usually held before a wedding in your country?", + "annotations": [ + { + "answers": [ + "订婚仪式" + ], + "en_answers": [ + "engagement ceremony" + ], + "count": 1 + }, + { + "answers": [ + "宴会" + ], + "en_answers": [ + "banquet" + ], + "count": 1 + }, + { + "answers": [ + "祭祀" + ], + "en_answers": [ + "sacrificial ceremony" + ], + "count": 1 + }, + { + "answers": [ + "拍婚纱照" + ], + "en_answers": [ + "wedding photo shoot" + ], + "count": 1 + }, + { + "answers": [ + "买嫁妆" + ], + "en_answers": [ + "buy dowry" + ], + "count": 1 + }, + { + "answers": [ + "接亲" + ], + "en_answers": [ + "pick up the bride" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-07": { + "question": "在中国的(农历)新年期间,通常会给孩子们分发什么?", + "en_question": "What is usually shared to the children during (Lunar) New Year in your country?", + "annotations": [ + { + "answers": [ + "红包", + "红包压岁钱" + ], + "en_answers": [ + "red envelope", + "red packet", + "red envelope with lucky money" + ], + "count": 5 + }, + { + "answers": [ + "糖果" + ], + "en_answers": [ + "candy", + "sweets", + "sweet" + ], + "count": 1 + }, + { + "answers": [ + "零食" + ], + "en_answers": [ + "snacks" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-08": { + "question": "在中国,斋月前几天通常会做些什么活动?", + "en_question": "What activities are usually done days before Ramadan in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 2, + "no-answer": 0 + } + }, + "Kik-in-10": { + "question": "在中国,哪个旅游景点最受外国游客欢迎?", + "en_question": "What is the most popular tourist attraction for foreign visitors in your country?", + "annotations": [ + { + "answers": [ + "长城" + ], + "en_answers": [ + "great wall" + ], + "count": 4 + }, + { + "answers": [ + "故宫" + ], + "en_answers": [ + "forbidden city", + "the palace museum" + ], + "count": 2 + }, + { + "answers": [ + "兵马俑" + ], + "en_answers": [ + "terracotta warriors", + "mausoleum of the first qin emperor" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-11": { + "question": "在中国,最受欢迎的宗教旅游景点(寺庙、教堂等)是哪些?", + "en_question": "What is the most popular religious sites (temple, church, etc.) for tourism in your country?", + "annotations": [ + { + "answers": [ + "少林寺", + "少林寺、五台山" + ], + "en_answers": [ + "shaolin temple" + ], + "count": 3 + }, + { + "answers": [ + "武当山" + ], + "en_answers": [ + "wudang mountains" + ], + "count": 1 + }, + { + "answers": [ + "五台山", + "少林寺、五台山" + ], + "en_answers": [ + "mount wutai" + ], + "count": 1 + }, + { + "answers": [ + "天坛" + ], + "en_answers": [ + "temple of heaven" + ], + "count": 1 + }, + { + "answers": [ + "布拉达宫" + ], + "en_answers": [ + "blagoveshchensk" + ], + "count": 1 + }, + { + "answers": [ + "灵隐寺" + ], + "en_answers": [ + "lingyin temple" + ], + "count": 1 + }, + { + "answers": [ + "雍和宫" + ], + "en_answers": [ + "yonghe temple" + ], + "count": 1 + }, + { + "answers": [ + "普陀寺" + ], + "en_answers": [ + "putuo temple" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-15": { + "question": "在中国的毕业典礼上,女性通常穿什么样的服装?", + "en_question": "What clothes do women usually wear on graduation commencement ceremony in your country?", + "annotations": [ + { + "answers": [ + "学士服", + "学位服" + ], + "en_answers": [ + "bachelor's gown", + "academic dress" + ], + "count": 4 + }, + { + "answers": [ + "白色衣服" + ], + "en_answers": [ + "white clothes" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-16": { + "question": "天气冷的时候,中国人通常喝什么饮料?", + "en_question": "What drink is commonly consumed in your country when the weather is cold?", + "annotations": [ + { + "answers": [ + "茶" + ], + "en_answers": [ + "tea" + ], + "count": 3 + }, + { + "answers": [ + "汤" + ], + "en_answers": [ + "soup" + ], + "count": 1 + }, + { + "answers": [ + "白酒" + ], + "en_answers": [ + "chinese spirits", + "white liquor", + "bai" + ], + "count": 1 + }, + { + "answers": [ + "玉米汁" + ], + "en_answers": [ + "corn juice" + ], + "count": 1 + }, + { + "answers": [ + "豆浆" + ], + "en_answers": [ + "soy milk" + ], + "count": 1 + }, + { + "answers": [ + "奶茶" + ], + "en_answers": [ + "milk tea", + "bubble tea" + ], + "count": 1 + }, + { + "answers": [ + "咖啡" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Kik-in-17": { + "question": "在中国的斋月期间,哪种水果更常见和销售?", + "en_question": "What fruit is more commonly sold and found during Ramadan in your country?", + "annotations": [ + { + "answers": [ + "椰子" + ], + "en_answers": [ + "coconut" + ], + "count": 1 + }, + { + "answers": [ + "瓜" + ], + "en_answers": [ + "melon" + ], + "count": 1 + }, + { + "answers": [ + "苹果" + ], + "en_answers": [ + "apple" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "not-applicable": 2, + "no-answer": 0 + } + }, + "Kik-in-24": { + "question": "在中国的快餐店里,通常与鸡肉一起上桌的碳水化合物是什么?", + "en_question": "What carbohydrate is usually served with chicken in a fast-food restaurant in your country?", + "annotations": [ + { + "answers": [ + "米饭" + ], + "en_answers": [ + "rice" + ], + "count": 2 + }, + { + "answers": [ + "薯条" + ], + "en_answers": [ + "fries" + ], + "count": 1 + }, + { + "answers": [ + "饭" + ], + "en_answers": [ + "meal" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Kik-in-31": { + "question": "中国最著名的武术运动是什么?", + "en_question": "What is the most famous martial art sports in your country?", + "annotations": [ + { + "answers": [ + "中国武术", + "功夫" + ], + "en_answers": [ + "chinese martial arts", + "chinese kung fu", + "kung fu" + ], + "count": 2 + }, + { + "answers": [ + "太极", + "太极拳" + ], + "en_answers": [ + "tai chi" + ], + "count": 2 + }, + { + "answers": [ + "五步拳" + ], + "en_answers": [ + "five-step fist" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-34": { + "question": "在中国的国家电视台上经常播放哪些体育项目?", + "en_question": "What sports are often broadcasted on national television in your country?", + "annotations": [ + { + "answers": [ + "乒乓球" + ], + "en_answers": [ + "table tennis" + ], + "count": 3 + }, + { + "answers": [ + "篮球" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "足球" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "羽毛球" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "排球" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "跳水" + ], + "en_answers": [ + "diving" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-35": { + "question": "在COVID-19大流行期间,中国人民喜欢哪些运动?", + "en_question": "What sports were popular among people from your country during the COVID-19 pandemic?", + "annotations": [ + { + "answers": [ + "健身操", + "跳操" + ], + "en_answers": [ + "aerobics" + ], + "count": 3 + }, + { + "answers": [ + "健身环" + ], + "en_answers": [ + "fitness ring" + ], + "count": 1 + }, + { + "answers": [ + "呆在家里" + ], + "en_answers": [ + "stay at home" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-36": { + "question": "谁是中国最受欢迎的足球教练?", + "en_question": "Who is the most popular soccer coach in your country?", + "annotations": [ + { + "answers": [ + "李铁" + ], + "en_answers": [ + "li tie" + ], + "count": 1 + }, + { + "answers": [ + "李凤楼" + ], + "en_answers": [ + "li feng building" + ], + "count": 1 + }, + { + "answers": [ + "范志毅" + ], + "en_answers": [ + "fan zhiyi" + ], + "count": 1 + }, + { + "answers": [ + "米卢" + ], + "en_answers": [ + "milu" + ], + "count": 1 + } + ], + "idks": { + "idk": 7, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-37": { + "question": "中国有哪些足球队因为他们之间的激烈对抗而闻名?(例如 ___ 对 ___)", + "en_question": "What soccer teams in your country are famous for their intense rivalry? (e.g. ___ vs ___)", + "annotations": [ + { + "answers": [ + "上港对申花" + ], + "en_answers": [ + "shanghai sipg vs shanghai shenhua" + ], + "count": 1 + }, + { + "answers": [ + "恒大对鲁能", + "恒大 鲁能" + ], + "en_answers": [ + "evergrande vs. luneng" + ], + "count": 1 + }, + { + "answers": [ + "山东鲁能对上海申花" + ], + "en_answers": [ + "shandong luneng vs shanghai shenhua" + ], + "count": 1 + }, + { + "answers": [ + "山东鲁能对广东恒大" + ], + "en_answers": [ + "shandong luneng vs guangdong evergrande" + ], + "count": 1 + }, + { + "answers": [ + "浙江队对青岛海牛" + ], + "en_answers": [ + "zhejiang team vs qingdao hainiu" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-38": { + "question": "在中国,哪些足球支持者因其激烈的对抗而闻名?(例如 ___ 对 ___)", + "en_question": "What are the names of soccer supporters in your country who are famous for their intense rivalry? (e.g. ___ vs ___)", + "annotations": [ + { + "answers": [ + "北京国安对天津泰达", + "北京国安vs天津泰达" + ], + "en_answers": [ + "beijing guoan vs tianjin teda" + ], + "count": 1 + } + ], + "idks": { + "idk": 7, + "not-applicable": 1, + "no-answer": 1 + } + }, + "Kik-in-40": { + "question": "中国最著名的男子羽毛球运动员是谁?", + "en_question": "Who is the most famous male badminton player in your country?", + "annotations": [ + { + "answers": [ + "林丹" + ], + "en_answers": [ + "lin dan" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-41": { + "question": "中国最著名的女羽毛球运动员是谁?", + "en_question": "Who is the most famous female badminton player in your country?", + "annotations": [ + { + "answers": [ + "谢杏芳" + ], + "en_answers": [ + "xie xingfang" + ], + "count": 1 + }, + { + "answers": [ + "陈雨菲" + ], + "en_answers": [ + "chen yufei" + ], + "count": 1 + } + ], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-44": { + "question": "在中国,哪项运动得到了政府最多的支持?", + "en_question": "What sport gets the most support from the government in your country?", + "annotations": [ + { + "answers": [ + "乒乓", + "乒乓球" + ], + "en_answers": [ + "table tennis", + "ping pong" + ], + "count": 4 + }, + { + "answers": [ + "跳水" + ], + "en_answers": [ + "diving" + ], + "count": 1 + }, + { + "answers": [ + "体操" + ], + "en_answers": [ + "gymnastics" + ], + "count": 1 + }, + { + "answers": [ + "羽毛球" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "滑雪" + ], + "en_answers": [ + "skiing" + ], + "count": 1 + }, + { + "answers": [ + "足球" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-45": { + "question": "在中国的学校通常有哪些运动场设施?", + "en_question": "What sports field facilities are usually available at schools in your country?", + "annotations": [ + { + "answers": [ + "篮球场", + "篮球馆" + ], + "en_answers": [ + "basketball court" + ], + "count": 4 + }, + { + "answers": [ + "足球场", + "足球馆" + ], + "en_answers": [ + "soccer field", + "soccer stadium" + ], + "count": 3 + }, + { + "answers": [ + "乒乓球桌", + "兵乓球台", + "乒乓球台" + ], + "en_answers": [ + "ping pong table" + ], + "count": 3 + }, + { + "answers": [ + "田径场" + ], + "en_answers": [ + "athletics field" + ], + "count": 1 + }, + { + "answers": [ + "单杠" + ], + "en_answers": [ + "horizontal bar" + ], + "count": 1 + }, + { + "answers": [ + "操场" + ], + "en_answers": [ + "playground" + ], + "count": 1 + }, + { + "answers": [ + "跑道" + ], + "en_answers": [ + "runway" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-02": { + "question": "中国人最常喜欢的咖啡馆饮品是什么?", + "en_question": "What cafe beverage do people from your country most commonly enjoy?", + "annotations": [ + { + "answers": [ + "拿铁", + "拿铁咖啡" + ], + "en_answers": [ + "latte", + "latte coffee" + ], + "count": 2 + }, + { + "answers": [ + "牛奶咖啡" + ], + "en_answers": [ + "milk coffee" + ], + "count": 1 + }, + { + "answers": [ + "星巴克" + ], + "en_answers": [ + "starbucks" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Na-ko-04": { + "question": "中国人最喜欢的宿醉解酒食物是什么?", + "en_question": "What is the preferred hangover cure food for people from your country?", + "annotations": [ + { + "answers": [ + "粥", + "稀饭" + ], + "en_answers": [ + "porridge" + ], + "count": 2 + }, + { + "answers": [ + "蜂蜜水" + ], + "en_answers": [ + "honey water" + ], + "count": 1 + }, + { + "answers": [ + "花生米" + ], + "en_answers": [ + "peanuts" + ], + "count": 1 + }, + { + "answers": [ + "茶" + ], + "en_answers": [ + "tea" + ], + "count": 1 + }, + { + "answers": [ + "面条" + ], + "en_answers": [ + "noodles" + ], + "count": 1 + }, + { + "answers": [ + "牛奶" + ], + "en_answers": [ + "milk" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-05": { + "question": "在中国,典型的外卖食物是什么?", + "en_question": "What is the typical delivery food in your country?", + "annotations": [ + { + "answers": [ + "烧烤" + ], + "en_answers": [ + "barbecue" + ], + "count": 1 + }, + { + "answers": [ + "麻辣烫" + ], + "en_answers": [ + "spicy hot pot" + ], + "count": 1 + }, + { + "answers": [ + "沙县小吃" + ], + "en_answers": [ + "shaxian delicacies" + ], + "count": 1 + }, + { + "answers": [ + "螺蛳粉" + ], + "en_answers": [ + "luosifen", + "snail noodles" + ], + "count": 1 + }, + { + "answers": [ + "煲仔饭" + ], + "en_answers": [ + "claypot rice" + ], + "count": 1 + }, + { + "answers": [ + "盖浇饭" + ], + "en_answers": [ + "rice with toppings", + "rice bowl" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-07": { + "question": "中国人最常吃的肉类是什么?", + "en_question": "What type of meat is consumed most by people from your country?", + "annotations": [ + { + "answers": [ + "猪肉", + "猪" + ], + "en_answers": [ + "pork", + "pig" + ], + "count": 5 + }, + { + "answers": [ + "鸡肉" + ], + "en_answers": [ + "chicken" + ], + "count": 3 + }, + { + "answers": [ + "牛肉" + ], + "en_answers": [ + "beef" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-08": { + "question": "中国人在秋季常吃什么水果?", + "en_question": "What fruit do people from your country often eat in the autumn season?", + "annotations": [ + { + "answers": [ + "苹果" + ], + "en_answers": [ + "apple" + ], + "count": 2 + }, + { + "answers": [ + "柚子" + ], + "en_answers": [ + "pomelo" + ], + "count": 2 + }, + { + "answers": [ + "生梨", + "梨子" + ], + "en_answers": [ + "pear" + ], + "count": 2 + }, + { + "answers": [ + "葡萄" + ], + "en_answers": [ + "grape" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-09": { + "question": "在中国的餐桌上,最常见的配菜是什么?", + "en_question": "What side dish is the most commonly served on a dining table in your country?", + "annotations": [ + { + "answers": [ + "炒青菜", + "青菜" + ], + "en_answers": [ + "stir-fried green vegetables", + "green vegetables" + ], + "count": 2 + }, + { + "answers": [ + "白菜" + ], + "en_answers": [ + "chinese cabbage" + ], + "count": 1 + }, + { + "answers": [ + "炒肉" + ], + "en_answers": [ + "stir-fried meat" + ], + "count": 1 + }, + { + "answers": [ + "榨菜" + ], + "en_answers": [ + "pickled mustard tuber" + ], + "count": 1 + }, + { + "answers": [ + "辣椒" + ], + "en_answers": [ + "chili pepper" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Na-ko-11": { + "question": "中国人在看足球比赛时吃什么?", + "en_question": "What do people from your country eat while watching a soccer game?", + "annotations": [ + { + "answers": [ + "薯片" + ], + "en_answers": [ + "chips", + "potato chips" + ], + "count": 2 + }, + { + "answers": [ + "下酒菜" + ], + "en_answers": [ + "food to accompany alcohol" + ], + "count": 1 + }, + { + "answers": [ + "炸鸡" + ], + "en_answers": [ + "fried chicken" + ], + "count": 1 + }, + { + "answers": [ + "矿泉水" + ], + "en_answers": [ + "mineral water" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-15": { + "question": "中国有哪些代表性的滋补食物?", + "en_question": "What is the representative nourishing food in your country?", + "annotations": [ + { + "answers": [ + "人参" + ], + "en_answers": [ + "ginseng" + ], + "count": 3 + }, + { + "answers": [ + "燕窝" + ], + "en_answers": [ + "bird's nest" + ], + "count": 2 + }, + { + "answers": [ + "枸杞" + ], + "en_answers": [ + "goji berries" + ], + "count": 2 + }, + { + "answers": [ + "红枣" + ], + "en_answers": [ + "red dates", + "dates" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-16": { + "question": "中国最著名的足球运动员是谁?", + "en_question": "Who is the most famous soccer player in your country?", + "annotations": [ + { + "answers": [ + "武磊" + ], + "en_answers": [ + "wu lei", + "lei wu" + ], + "count": 3 + }, + { + "answers": [ + "范志毅" + ], + "en_answers": [ + "fan zhiyi", + "zhiyi fan" + ], + "count": 2 + }, + { + "answers": [ + "韦世豪" + ], + "en_answers": [ + "wei shihao", + "shihao wei" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-17": { + "question": "在中国,男学生在午餐时间喜欢在学校进行什么运动?", + "en_question": "What sports do male students enjoy during lunch time at school in your country?", + "annotations": [ + { + "answers": [ + "篮球", + "打篮球" + ], + "en_answers": [ + "basketball", + "play basketball" + ], + "count": 4 + }, + { + "answers": [ + "摸高" + ], + "en_answers": [ + "reach as high as possible" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-18": { + "question": "在中国的体育课上,女生最常参与的运动是什么?", + "en_question": "What is the most common sport girls participate in during physical education classes in your country?", + "annotations": [ + { + "answers": [ + "篮球" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "跳绳" + ], + "en_answers": [ + "jump rope" + ], + "count": 1 + }, + { + "answers": [ + "女生不怎么参与" + ], + "en_answers": [ + "girls don't participate much" + ], + "count": 1 + }, + { + "answers": [ + "跑步" + ], + "en_answers": [ + "running" + ], + "count": 1 + }, + { + "answers": [ + "排球" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "羽毛球" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "踢键子" + ], + "en_answers": [ + "shuttlecock kicking" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-19": { + "question": "中国最受欢迎的排球运动员是谁?", + "en_question": "Who is the most popular volleyball player in your country?", + "annotations": [ + { + "answers": [ + "郎平" + ], + "en_answers": [ + "lang ping" + ], + "count": 4 + }, + { + "answers": [ + "魏秋月" + ], + "en_answers": [ + "wei qiuyue" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-20": { + "question": "在国际比赛中,中国人最热情支持哪项体育赛事?", + "en_question": "What sports event do people from your country passionately support the most in international competitions?", + "annotations": [ + { + "answers": [ + "足球" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "篮球" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "乒乓球" + ], + "en_answers": [ + "table tennis" + ], + "count": 2 + }, + { + "answers": [ + "排球" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-22": { + "question": "在足球比赛中,哪个国家被认为是中国最大的对手?", + "en_question": "Which country is considered the biggest rival in soccer matches for your country?", + "annotations": [ + { + "answers": [ + "日本" + ], + "en_answers": [ + "japan" + ], + "count": 1 + }, + { + "answers": [ + "韩国" + ], + "en_answers": [ + "south korea" + ], + "count": 1 + }, + { + "answers": [ + "阿根廷" + ], + "en_answers": [ + "argentina" + ], + "count": 1 + }, + { + "answers": [ + "西班牙" + ], + "en_answers": [ + "spain" + ], + "count": 1 + }, + { + "answers": [ + "巴西" + ], + "en_answers": [ + "brazil" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Na-ko-23": { + "question": "在中国,孩子们最常上的体育学院是哪一种?", + "en_question": "What type of sports academies do children attend the most in your country?", + "annotations": [ + { + "answers": [ + "各地区的体育学院", + "各种类型的体校", + "体育类高校" + ], + "en_answers": [ + "sports academies in various regions", + "various types of sports schools", + "sports university" + ], + "count": 3 + }, + { + "answers": [ + "北京体育大学" + ], + "en_answers": [ + "beijing sport university" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-24": { + "question": "在中国的体育场馆里观看比赛时,最常吃的食物是什么?", + "en_question": "What is the most commonly eaten food in sports stadiums while watching games in your country?", + "annotations": [ + { + "answers": [ + "爆米花" + ], + "en_answers": [ + "popcorn" + ], + "count": 2 + }, + { + "answers": [ + "烤肠" + ], + "en_answers": [ + "roasted sausage" + ], + "count": 1 + }, + { + "answers": [ + "能量棒" + ], + "en_answers": [ + "energy bar" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "没有去过体育馆观看比赛": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-25": { + "question": "在中国学校的运动会上通常会进行哪些体育项目?", + "en_question": "What are the typical sports played in your country's school sports day?", + "annotations": [ + { + "answers": [ + "跳远" + ], + "en_answers": [ + "long jump" + ], + "count": 5 + }, + { + "answers": [ + "跑步" + ], + "en_answers": [ + "running" + ], + "count": 3 + }, + { + "answers": [ + "跳高" + ], + "en_answers": [ + "high jump" + ], + "count": 2 + }, + { + "answers": [ + "800米" + ], + "en_answers": [ + "800 meters running" + ], + "count": 1 + }, + { + "answers": [ + "接力跑" + ], + "en_answers": [ + "relay race" + ], + "count": 1 + }, + { + "answers": [ + "长跑" + ], + "en_answers": [ + "long-distance running" + ], + "count": 1 + }, + { + "answers": [ + "短跑" + ], + "en_answers": [ + "sprint" + ], + "count": 1 + }, + { + "answers": [ + "拔河" + ], + "en_answers": [ + "tug of war" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-26": { + "question": "在中国,中年人群中有哪些流行的运动?", + "en_question": "What are the popular sports among the middle-aged population in your country?", + "annotations": [ + { + "answers": [ + "广场舞", + "跳广场舞" + ], + "en_answers": [ + "square dance", + "square dancing" + ], + "count": 3 + }, + { + "answers": [ + "麻将" + ], + "en_answers": [ + "mahjong" + ], + "count": 1 + }, + { + "answers": [ + "爬山" + ], + "en_answers": [ + "hiking" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Na-ko-28": { + "question": "谁是中国最受欢迎的冬季运动员?", + "en_question": "Who is the most popular winter sports player in your country?", + "annotations": [ + { + "answers": [ + "谷爱凌" + ], + "en_answers": [ + "eileen gu" + ], + "count": 3 + }, + { + "answers": [ + "王蒙" + ], + "en_answers": [ + "wang meng" + ], + "count": 1 + }, + { + "answers": [ + "谷爱玲" + ], + "en_answers": [ + "gu ailing" + ], + "count": 1 + }, + { + "answers": [ + "王濛" + ], + "en_answers": [ + "wang meng" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-29": { + "question": "中国最有名的游泳运动员是谁?", + "en_question": "Who is the most famous swimmer in your country?", + "annotations": [ + { + "answers": [ + "孙杨" + ], + "en_answers": [ + "sun yang" + ], + "count": 4 + }, + { + "answers": [ + "张琳" + ], + "en_answers": [ + "zhang lin" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-30": { + "question": "中国最受欢迎的电子竞技游戏是什么?", + "en_question": "What is the most popular e-sports game in your country?", + "annotations": [ + { + "answers": [ + "王者荣耀" + ], + "en_answers": [ + "honor of kings" + ], + "count": 3 + }, + { + "answers": [ + "英雄联盟" + ], + "en_answers": [ + "league of legends" + ], + "count": 2 + }, + { + "answers": [ + "dota" + ], + "en_answers": [ + "defense of the ancients", + "dota" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-33": { + "question": "中国人在(农历)新年期间吃什么具有象征意义的食物?", + "en_question": "What symbolic food do people from your country eat on (Lunar) New Year?", + "annotations": [ + { + "answers": [ + "饺子" + ], + "en_answers": [ + "dumplings" + ], + "count": 4 + }, + { + "answers": [ + "汤圆" + ], + "en_answers": [ + "glutinous rice balls" + ], + "count": 3 + }, + { + "answers": [ + "鸡肉", + "鸡鸭鱼肉" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "鱼" + ], + "en_answers": [ + "fish" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-37": { + "question": "对中国人来说,最受欢迎的国内旅游景点是哪里?", + "en_question": "What is the most popular domestic vacation spot for people from your country?", + "annotations": [ + { + "answers": [ + "长城" + ], + "en_answers": [ + "great wall" + ], + "count": 2 + }, + { + "answers": [ + "西湖", + "杭州西湖" + ], + "en_answers": [ + "west lake", + "hangzhou west lake" + ], + "count": 2 + }, + { + "answers": [ + "大理古镇", + "大理" + ], + "en_answers": [ + "dali ancient town", + "dali" + ], + "count": 2 + }, + { + "answers": [ + "故宫", + "北京故宫" + ], + "en_answers": [ + "forbidden city", + "palace museum" + ], + "count": 2 + }, + { + "answers": [ + "海南岛" + ], + "en_answers": [ + "hainan island", + "hainan" + ], + "count": 1 + }, + { + "answers": [ + "兵马俑" + ], + "en_answers": [ + "terracotta warriors" + ], + "count": 1 + }, + { + "answers": [ + "上海外滩" + ], + "en_answers": [ + "the bund, shanghai" + ], + "count": 1 + }, + { + "answers": [ + "上海" + ], + "en_answers": [ + "shanghai" + ], + "count": 1 + }, + { + "answers": [ + "北京" + ], + "en_answers": [ + "beijing" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-38": { + "question": "在中国,新娘和新郎之间最常见的结婚礼物是什么?", + "en_question": "What is the most common wedding gift between bride and groom in your country?", + "annotations": [ + { + "answers": [ + "戒指" + ], + "en_answers": [ + "ring" + ], + "count": 2 + }, + { + "answers": [ + "黄金首饰" + ], + "en_answers": [ + "gold jewelry" + ], + "count": 1 + }, + { + "answers": [ + "婚戒" + ], + "en_answers": [ + "wedding ring" + ], + "count": 1 + }, + { + "answers": [ + "彩礼" + ], + "en_answers": [ + "bride price" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-39": { + "question": "在中国参加朋友的婚礼时,通常会送什么来表示祝贺?", + "en_question": "What is typically given as a congratulatory gesture when attending a friend's wedding in your country?", + "annotations": [ + { + "answers": [ + "红包", + "现金红包" + ], + "en_answers": [ + "red envelope", + "cash red envelope" + ], + "count": 4 + }, + { + "answers": [ + "随礼" + ], + "en_answers": [ + "cash gift" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-40": { + "question": "在中国,葬礼通常持续多少天?(只提供阿拉伯数字(例如,12)。)", + "en_question": "How long (in days) does a funeral typically last in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 3 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-41": { + "question": "在中国参加葬礼时,你应该准备什么作为慰问品?", + "en_question": "What should you prepare as a condolence offering when attending a funeral in your country?", + "annotations": [ + { + "answers": [ + "花圈" + ], + "en_answers": [ + "flower wreath" + ], + "count": 2 + }, + { + "answers": [ + "帛金", + "现金" + ], + "en_answers": [ + "cash", + "traditional money gift at a funeral" + ], + "count": 2 + }, + { + "answers": [ + "食物" + ], + "en_answers": [ + "food" + ], + "count": 1 + }, + { + "answers": [ + "不用带慰问品" + ], + "en_answers": [ + "no need to bring a gift" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-42": { + "question": "在中国的殡仪馆通常提供什么类型的食物?", + "en_question": "What type of food is commonly provided at funeral parlors in your country?", + "annotations": [ + { + "answers": [ + "家常菜" + ], + "en_answers": [ + "home-style cooking" + ], + "count": 1 + } + ], + "idks": { + "idk": 6, + "not-applicable": 2, + "no-answer": 1 + } + }, + "Na-ko-43": { + "question": "中国人在(农历)新年的早晨通常做些什么?", + "en_question": "What do people do in your country in the morning of the (Lunar) New Year?", + "annotations": [ + { + "answers": [ + "拜年" + ], + "en_answers": [ + "pay a new year's visit" + ], + "count": 2 + }, + { + "answers": [ + "宰杀家禽" + ], + "en_answers": [ + "slaughter poultry" + ], + "count": 1 + }, + { + "answers": [ + "上坟" + ], + "en_answers": [ + "visit a grave" + ], + "count": 1 + }, + { + "answers": [ + "放鞭炮" + ], + "en_answers": [ + "set off firecrackers" + ], + "count": 1 + }, + { + "answers": [ + "烧香" + ], + "en_answers": [ + "burn incense" + ], + "count": 1 + }, + { + "answers": [ + "发红包" + ], + "en_answers": [ + "send red envelope" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-44": { + "question": "中国全国范围内交通拥堵最严重的是哪一天?", + "en_question": "When is the day with your country's most severe nationwide traffic congestion?", + "annotations": [ + { + "answers": [ + "春节" + ], + "en_answers": [ + "spring festival", + "chinese new year", + "lunar new year" + ], + "count": 1 + }, + { + "answers": [ + "国庆" + ], + "en_answers": [ + "national day" + ], + "count": 1 + }, + { + "answers": [ + "国庆第一天" + ], + "en_answers": [ + "national day first day" + ], + "count": 1 + }, + { + "answers": [ + "春节第一天" + ], + "en_answers": [ + "the first day of spring festival" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-45": { + "question": "中国最受欢迎的蜜月旅行目的地是哪里?", + "en_question": "What is the most popular honeymoon destination in your country?", + "annotations": [ + { + "answers": [ + "三亚" + ], + "en_answers": [ + "sanya" + ], + "count": 3 + }, + { + "answers": [ + "海南" + ], + "en_answers": [ + "hainan" + ], + "count": 2 + }, + { + "answers": [ + "云南" + ], + "en_answers": [ + "yunnan" + ], + "count": 2 + }, + { + "answers": [ + "马尔代夫" + ], + "en_answers": [ + "maldives" + ], + "count": 1 + }, + { + "answers": [ + "泰国" + ], + "en_answers": [ + "thailand" + ], + "count": 1 + }, + { + "answers": [ + "厦门" + ], + "en_answers": [ + "xiamen" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-05": { + "question": "中国最重要的国家节日是什么?", + "en_question": "What is the most important national holiday in your country?", + "annotations": [ + { + "answers": [ + "春节" + ], + "en_answers": [ + "spring festival", + "chinese new year", + "lunar new year" + ], + "count": 5 + }, + { + "answers": [ + "国庆节" + ], + "en_answers": [ + "national day" + ], + "count": 2 + }, + { + "answers": [ + "中秋节" + ], + "en_answers": [ + "mid-autumn festival" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-06": { + "question": "中国人在斋月期间吃什么?", + "en_question": "What do people from your country eat in Ramadan?", + "annotations": [ + { + "answers": [ + "牛羊肉" + ], + "en_answers": [ + "beef and mutton" + ], + "count": 1 + }, + { + "answers": [ + "鸡肉" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "面条" + ], + "en_answers": [ + "noodles" + ], + "count": 1 + }, + { + "answers": [ + "苏霍尔" + ], + "en_answers": [ + "suhor" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "not-applicable": 2, + "汉族不过这个节日": 1, + "no-answer": 0 + } + }, + "Ne-ar-09": { + "question": "中国人在开斋节吃什么?", + "en_question": "What do people from your country eat in Eid ul Fitr?", + "annotations": [ + { + "answers": [ + "吃素" + ], + "en_answers": [ + "vegetarian" + ], + "count": 1 + }, + { + "answers": [ + "新疆大盘鸡" + ], + "en_answers": [ + "xinjiang big plate chicken" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "not-applicable": 3, + "no-answer": 0 + } + }, + "Ne-ar-10": { + "question": "在古尔邦节期间,中国人都吃些什么?", + "en_question": "What do people from your country eat in Eid ul Adha?", + "annotations": [ + { + "answers": [ + "烤肉" + ], + "en_answers": [ + "barbecue" + ], + "count": 1 + }, + { + "answers": [ + "米饭" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "抓饭" + ], + "en_answers": [ + "pilaf" + ], + "count": 1 + }, + { + "answers": [ + "炸馓子" + ], + "en_answers": [ + "fried dough twist" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "not-applicable": 2, + "no-answer": 0 + } + }, + "Ne-ar-11": { + "question": "中国人去哪里庆祝新年?", + "en_question": "Where do people from your country go to celebrate New Year's Day?", + "annotations": [ + { + "answers": [ + "家里" + ], + "en_answers": [ + "home" + ], + "count": 3 + }, + { + "answers": [ + "故乡", + "老家" + ], + "en_answers": [ + "hometown" + ], + "count": 2 + }, + { + "answers": [ + "父母家" + ], + "en_answers": [ + "parents' home" + ], + "count": 1 + }, + { + "answers": [ + "祖父母家" + ], + "en_answers": [ + "grandparents' house" + ], + "count": 1 + }, + { + "answers": [ + "餐厅" + ], + "en_answers": [ + "restaurant" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-14": { + "question": "在中国,一个家庭在哪里聚集庆祝开斋节?", + "en_question": "Where do a family gather for Eid festivities in your country?", + "annotations": [ + { + "answers": [ + "清真寺" + ], + "en_answers": [ + "mosque" + ], + "count": 1 + }, + { + "answers": [ + "家里" + ], + "en_answers": [ + "home" + ], + "count": 1 + }, + { + "answers": [ + "饭店" + ], + "en_answers": [ + "restaurant" + ], + "count": 1 + } + ], + "idks": { + "idk": 5, + "not-applicable": 2, + "no-answer": 0 + } + }, + "Ne-ar-16": { + "question": "中国的周末是哪天(例如星期一、星期二)?", + "en_question": "When is the weekend in your country (e.g. Monday, Tuesday)?", + "annotations": [ + { + "answers": [ + "星期六", + "星期六日", + "星期六天", + "星期六 星期天", + "周六" + ], + "en_answers": [ + "saturday" + ], + "count": 5 + }, + { + "answers": [ + "星期日", + "星期六日", + "星期天", + "星期六天", + "星期六 星期天", + "周天", + "周日" + ], + "en_answers": [ + "sunday" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-17": { + "question": "在中国,大多数人是什么时间开始工作的?(请提供HH:MM格式,例如,18:00, 09:00。)", + "en_question": "At what time do most people start work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 3 + }, + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 2 + }, + { + "answers": [ + "19:00" + ], + "en_answers": [ + "19:00" + ], + "count": 1 + }, + { + "answers": [ + "10:00" + ], + "en_answers": [ + "10:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-18": { + "question": "在中国,大多数人什么时间下班?(请提供HH:MM格式,例如,18:00, 09:00。)", + "en_question": "At what time do most people finish work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 2 + }, + { + "answers": [ + "20:00" + ], + "en_answers": [ + "20:00" + ], + "count": 1 + }, + { + "answers": [ + "18:30" + ], + "en_answers": [ + "18:30" + ], + "count": 1 + }, + { + "answers": [ + "17:30" + ], + "en_answers": [ + "17:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-20": { + "question": "在中国,什么被认为是一份稳定的工作?", + "en_question": "What is considered to be a secure job in your country?", + "annotations": [ + { + "answers": [ + "医生" + ], + "en_answers": [ + "doctor" + ], + "count": 3 + }, + { + "answers": [ + "公务员" + ], + "en_answers": [ + "civil servant" + ], + "count": 3 + }, + { + "answers": [ + "老师" + ], + "en_answers": [ + "teacher" + ], + "count": 2 + }, + { + "answers": [ + "国企的工作" + ], + "en_answers": [ + "state-owned enterprise job" + ], + "count": 1 + }, + { + "answers": [ + "律师" + ], + "en_answers": [ + "lawyer" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-24": { + "question": "哪个城市是中国主要的商业中心?", + "en_question": "Which city is the primary commercial hub in your country?", + "annotations": [ + { + "answers": [ + "上海" + ], + "en_answers": [ + "shanghai" + ], + "count": 5 + }, + { + "answers": [ + "北京" + ], + "en_answers": [ + "beijing" + ], + "count": 2 + }, + { + "answers": [ + "广州" + ], + "en_answers": [ + "guangzhou" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-25": { + "question": "在中国,哪个行业的薪酬最高?", + "en_question": "What is the industry that pays the best in your country?", + "annotations": [ + { + "answers": [ + "律师" + ], + "en_answers": [ + "lawyer" + ], + "count": 3 + }, + { + "answers": [ + "银行家" + ], + "en_answers": [ + "banker" + ], + "count": 1 + }, + { + "answers": [ + "互联网" + ], + "en_answers": [ + "internet", + "it" + ], + "count": 1 + }, + { + "answers": [ + "金融" + ], + "en_answers": [ + "finance" + ], + "count": 1 + }, + { + "answers": [ + "医疗" + ], + "en_answers": [ + "medical" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-26": { + "question": "中国最著名的上市公司是哪一家?", + "en_question": "What is the most famous public corporation in your country?", + "annotations": [ + { + "answers": [ + "阿里巴巴" + ], + "en_answers": [ + "alibaba" + ], + "count": 4 + }, + { + "answers": [ + "茅台" + ], + "en_answers": [ + "moutai" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-31": { + "question": "中国最有名的菜是什么?", + "en_question": "What is the most famous dish in your country?", + "annotations": [ + { + "answers": [ + "北京烤鸭" + ], + "en_answers": [ + "peking duck", + "peking roast duck" + ], + "count": 2 + }, + { + "answers": [ + "火锅" + ], + "en_answers": [ + "hot pot" + ], + "count": 2 + }, + { + "answers": [ + "西红柿炒蛋" + ], + "en_answers": [ + "tomato scrambled eggs" + ], + "count": 1 + }, + { + "answers": [ + "狗不理包子" + ], + "en_answers": [ + "goubuli baozi", + "goubuli bun" + ], + "count": 1 + }, + { + "answers": [ + "宫保鸡丁" + ], + "en_answers": [ + "kung pao chicken" + ], + "count": 1 + }, + { + "answers": [ + "麻婆豆腐" + ], + "en_answers": [ + "mapo tofu" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-32": { + "question": "在中国,人们通常早餐吃什么?", + "en_question": "What do people usually have for breakfast in your country?", + "annotations": [ + { + "answers": [ + "豆浆", + "豆浆油条" + ], + "en_answers": [ + "soy milk" + ], + "count": 2 + }, + { + "answers": [ + "油条", + "豆浆油条" + ], + "en_answers": [ + "ried dough sticks" + ], + "count": 2 + }, + { + "answers": [ + "粥", + "粥类", + "稀饭" + ], + "en_answers": [ + "porridge", + "porridge category" + ], + "count": 2 + }, + { + "answers": [ + "鸡蛋灌饼" + ], + "en_answers": [ + "egg-filled pancake" + ], + "count": 1 + }, + { + "answers": [ + "牛奶麦片" + ], + "en_answers": [ + "milk cereal" + ], + "count": 1 + }, + { + "answers": [ + "面食" + ], + "en_answers": [ + "noodles", + "pasta", + "cooked wheaten food" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-33": { + "question": "中国人通常什么时候吃午饭?(请以HH:MM格式提供,例如,18:00, 09:00。)", + "en_question": "When do people usually have lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "12:00" + ], + "en_answers": [ + "12:00" + ], + "count": 3 + }, + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 2 + }, + { + "answers": [ + "12:30" + ], + "en_answers": [ + "12:30" + ], + "count": 1 + }, + { + "answers": [ + "11:40" + ], + "en_answers": [ + "11:40" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-34": { + "question": "在中国的餐饮中通常不可或缺的是什么?", + "en_question": "What is typically indispensable in meals in your country?", + "annotations": [ + { + "answers": [ + "米饭" + ], + "en_answers": [ + "rice" + ], + "count": 2 + }, + { + "answers": [ + "面条" + ], + "en_answers": [ + "noodles" + ], + "count": 1 + }, + { + "answers": [ + "盐" + ], + "en_answers": [ + "salt" + ], + "count": 1 + }, + { + "answers": [ + "主食" + ], + "en_answers": [ + "staple food" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-36": { + "question": "中国的典型节日大餐是什么?", + "en_question": "What is a typical festive meal in your country?", + "annotations": [ + { + "answers": [ + "满汉全席" + ], + "en_answers": [ + "manchu han imperial feast" + ], + "count": 2 + }, + { + "answers": [ + "鱼", + "年年有余(鱼肉)" + ], + "en_answers": [ + "fish", + "may there be surpluses every year (homophone for fish)" + ], + "count": 2 + }, + { + "answers": [ + "饺子" + ], + "en_answers": [ + "dumplings" + ], + "count": 1 + }, + { + "answers": [ + "火锅" + ], + "en_answers": [ + "hot pot" + ], + "count": 1 + }, + { + "answers": [ + "鸡" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-37": { + "question": "在中国,人们通常会给来自国外的游客/访客提供哪种水果?", + "en_question": "Which fruit do people usually offer tourists/visitors from abroad in your country?", + "annotations": [ + { + "answers": [ + "苹果" + ], + "en_answers": [ + "apple" + ], + "count": 3 + }, + { + "answers": [ + "西瓜" + ], + "en_answers": [ + "watermelon" + ], + "count": 2 + }, + { + "answers": [ + "橙子" + ], + "en_answers": [ + "orange" + ], + "count": 1 + }, + { + "answers": [ + "葡萄" + ], + "en_answers": [ + "grape" + ], + "count": 1 + }, + { + "answers": [ + "橘子" + ], + "en_answers": [ + "orange" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ne-ar-38": { + "question": "在中国,人们通常捐赠哪些食物作为慈善?", + "en_question": "Which food do people usually offer as charity in your country?", + "annotations": [ + { + "answers": [ + "方便面" + ], + "en_answers": [ + "instant noodles" + ], + "count": 3 + }, + { + "answers": [ + "肉" + ], + "en_answers": [ + "meat" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 1 + } + }, + "Ne-ar-39": { + "question": "中国最便宜的快餐是什么?", + "en_question": "What is the cheapest fast food in your country?", + "annotations": [ + { + "answers": [ + "包子" + ], + "en_answers": [ + "steamed bun" + ], + "count": 2 + }, + { + "answers": [ + "沙县小吃" + ], + "en_answers": [ + "shaxian delicacies" + ], + "count": 2 + }, + { + "answers": [ + "面条" + ], + "en_answers": [ + "noodles" + ], + "count": 1 + }, + { + "answers": [ + "盖浇饭" + ], + "en_answers": [ + "rice with toppings", + "rice bowl" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-43": { + "question": "在中国,人们通常喝茶时会搭配什么?", + "en_question": "What do people usually have with tea in your country?", + "annotations": [ + { + "answers": [ + "饼干" + ], + "en_answers": [ + "biscuit", + "cookies" + ], + "count": 1 + }, + { + "answers": [ + "点心" + ], + "en_answers": [ + "dim sum" + ], + "count": 1 + }, + { + "answers": [ + "水果" + ], + "en_answers": [ + "fruit", + "fruits" + ], + "count": 1 + }, + { + "answers": [ + "瓜子" + ], + "en_answers": [ + "melon seeds", + "sunflower seeds", + "seeds" + ], + "count": 1 + }, + { + "answers": [ + "小零食" + ], + "en_answers": [ + "snacks" + ], + "count": 1 + }, + { + "answers": [ + "果脯" + ], + "en_answers": [ + "candied fruit" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ne-ar-44": { + "question": "在中国,人们通常和咖啡一起喝些什么?", + "en_question": "What do people have with coffee in your country?", + "annotations": [ + { + "answers": [ + "蛋糕" + ], + "en_answers": [ + "cake" + ], + "count": 2 + }, + { + "answers": [ + "奶" + ], + "en_answers": [ + "milk" + ], + "count": 1 + }, + { + "answers": [ + "面包" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "咖啡伴侣" + ], + "en_answers": [ + "coffee mate" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-02": { + "question": "中国最受欢迎的传统食物是什么?", + "en_question": "What is the most popular traditional food in your country?", + "annotations": [ + { + "answers": [ + "饺子", + "饺子汤圆" + ], + "en_answers": [ + "dumplings" + ], + "count": 3 + }, + { + "answers": [ + "汤圆", + "饺子汤圆" + ], + "en_answers": [ + "glutinous rice balls" + ], + "count": 2 + }, + { + "answers": [ + "肉夹馍" + ], + "en_answers": [ + "roujiamo or chinese hamburger" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-am-04": { + "question": "中国最受欢迎的蘸酱是什么?", + "en_question": "What is the most popular dipping sauce in your country?", + "annotations": [ + { + "answers": [ + "酱油" + ], + "en_answers": [ + "soy sauce" + ], + "count": 2 + }, + { + "answers": [ + "老干妈" + ], + "en_answers": [ + "lao gan ma (brand name, literally 'old godmother')" + ], + "count": 1 + }, + { + "answers": [ + "豆瓣酱" + ], + "en_answers": [ + "bean paste sauce" + ], + "count": 1 + }, + { + "answers": [ + "麻酱", + "麻将" + ], + "en_answers": [ + "sesame sauce" + ], + "count": 1 + }, + { + "answers": [ + "油碟" + ], + "en_answers": [ + "sesame oil" + ], + "count": 1 + }, + { + "answers": [ + "醋" + ], + "en_answers": [ + "vinegar" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-08": { + "question": "在中国基督徒斋戒期间最常食用的食物是什么?", + "en_question": "What food is most often consumed during Christian fasting in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 3, + "no-answer": 0 + } + }, + "New-am-15": { + "question": "在中国,母亲生孩子时通常会准备什么食物?", + "en_question": "What food is usually prepared when mothers give birth in your country?", + "annotations": [ + { + "answers": [ + "鸡汤" + ], + "en_answers": [ + "chicken soup" + ], + "count": 2 + }, + { + "answers": [ + "鲫鱼汤" + ], + "en_answers": [ + "crucian carp soup" + ], + "count": 1 + }, + { + "answers": [ + "粥" + ], + "en_answers": [ + "porridge" + ], + "count": 1 + }, + { + "answers": [ + "面条" + ], + "en_answers": [ + "noodles" + ], + "count": 1 + }, + { + "answers": [ + "奶粉" + ], + "en_answers": [ + "milk powder" + ], + "count": 1 + }, + { + "answers": [ + "鱼汤" + ], + "en_answers": [ + "fish soup" + ], + "count": 1 + }, + { + "answers": [ + "猪肘" + ], + "en_answers": [ + "pork knuckle" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-am-27": { + "question": "中国最受欢迎的女运动员是谁?", + "en_question": "Who is the most popular female sportperson in your country?", + "annotations": [ + { + "answers": [ + "郭晶晶" + ], + "en_answers": [ + "guo jingjing" + ], + "count": 2 + }, + { + "answers": [ + "孙颖莎" + ], + "en_answers": [ + "sun yingsha" + ], + "count": 1 + }, + { + "answers": [ + "陈雨菲" + ], + "en_answers": [ + "chen yufei" + ], + "count": 1 + }, + { + "answers": [ + "朱婷" + ], + "en_answers": [ + "zhu ting" + ], + "count": 1 + }, + { + "answers": [ + "邓亚萍" + ], + "en_answers": [ + "deng yaping" + ], + "count": 1 + }, + { + "answers": [ + "傅园慧" + ], + "en_answers": [ + "fu yuanhui" + ], + "count": 1 + }, + { + "answers": [ + "李娜" + ], + "en_answers": [ + "li na" + ], + "count": 1 + }, + { + "answers": [ + "谷爱凌", + "gu ailing" + ], + "en_answers": [ + "eileen gu" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-34": { + "question": "在中国,大多数小学生在哪里复习准备他们的考试?", + "en_question": "Where do most elementary school students prepare for their exams in your country?", + "annotations": [ + { + "answers": [ + "家里", + "家" + ], + "en_answers": [ + "home", + "family/home" + ], + "count": 4 + }, + { + "answers": [ + "补习班", + "培训班" + ], + "en_answers": [ + "cram school", + "tutoring class", + "training class" + ], + "count": 2 + }, + { + "answers": [ + "学校" + ], + "en_answers": [ + "school" + ], + "count": 1 + }, + { + "answers": [ + "图书馆" + ], + "en_answers": [ + "library" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-41": { + "question": "在中国,学生们在哪个年级参加第一次全国性考试?", + "en_question": "In your country, at which grade level do students take their first national-level examination?", + "annotations": [ + { + "answers": [ + "高三" + ], + "en_answers": [ + "last year of high school", + "final year of high school" + ], + "count": 3 + }, + { + "answers": [ + "12", + "12年级" + ], + "en_answers": [ + "12", + "12th grade" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-53": { + "question": "中国的哪个地区因其咖啡/茶叶产业而广为人知?", + "en_question": "Which region in your country is widely known for its coffee/tea industry?", + "annotations": [ + { + "answers": [ + "云南", + "云南的茶和咖啡" + ], + "en_answers": [ + "yunnan" + ], + "count": 3 + }, + { + "answers": [ + "安徽" + ], + "en_answers": [ + "anhui" + ], + "count": 1 + }, + { + "answers": [ + "河南" + ], + "en_answers": [ + "henan" + ], + "count": 1 + }, + { + "answers": [ + "杭州" + ], + "en_answers": [ + "hangzhou" + ], + "count": 1 + }, + { + "answers": [ + "福建", + "福建的茶" + ], + "en_answers": [ + "fujian's tea" + ], + "count": 1 + }, + { + "answers": [ + "浙江", + "浙江龙井的茶" + ], + "en_answers": [ + "zhejiang" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-54": { + "question": "中国的哪个地区因其畜牧业而广为人知?", + "en_question": "Which region in your country is widely known for its livestock industry?", + "annotations": [ + { + "answers": [ + "内蒙古" + ], + "en_answers": [ + "inner mongolia" + ], + "count": 4 + }, + { + "answers": [ + "新疆" + ], + "en_answers": [ + "xinjiang" + ], + "count": 2 + }, + { + "answers": [ + "河南" + ], + "en_answers": [ + "henan" + ], + "count": 1 + }, + { + "answers": [ + "西藏" + ], + "en_answers": [ + "tibet" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-59": { + "question": "居住在中国沙漠中的人们的主要职业是什么?", + "en_question": "What is the main occupation of people living in deserts in your country?", + "annotations": [ + { + "answers": [ + "农民", + "务农" + ], + "en_answers": [ + "farmer", + "farming" + ], + "count": 3 + }, + { + "answers": [ + "牧民" + ], + "en_answers": [ + "herdsman" + ], + "count": 1 + }, + { + "answers": [ + "环境保护" + ], + "en_answers": [ + "environmental protection" + ], + "count": 1 + }, + { + "answers": [ + "养骆驼" + ], + "en_answers": [ + "raise camels" + ], + "count": 1 + }, + { + "answers": [ + "旅游业" + ], + "en_answers": [ + "tourism" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-60": { + "question": "在中国,通常用哪种动物来作为交通工具?", + "en_question": "Which animal is typically used for transportation in your country?", + "annotations": [ + { + "answers": [ + "马" + ], + "en_answers": [ + "horse" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 0 + } + }, + "New-am-72": { + "question": "在中国,最受儿童欢迎的漫画书是什么?", + "en_question": "What is the most popular comic book for children to read in your country?", + "annotations": [ + { + "answers": [ + "阿衰" + ], + "en_answers": [ + "a shuai" + ], + "count": 2 + }, + { + "answers": [ + "舒克和贝他" + ], + "en_answers": [ + "shuke and beta" + ], + "count": 1 + }, + { + "answers": [ + "十万个为什么" + ], + "en_answers": [ + "one hundred thousand whys" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-am-73": { + "question": "在中国,最受欢迎的儿童YouTube频道是哪一个?", + "en_question": "What is the most popular YouTube channel for children in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 1, + "no-answer": 0 + } + }, + "New-am-74": { + "question": "中国最受欢迎的脱口秀节目是哪一个?", + "en_question": "What is the most popular talk show in your country?", + "annotations": [ + { + "answers": [ + "脱口秀大会" + ], + "en_answers": [ + "talk show conference" + ], + "count": 4 + }, + { + "answers": [ + "金星秀" + ], + "en_answers": [ + "the jinxing show" + ], + "count": 2 + }, + { + "answers": [ + "吐槽大会" + ], + "en_answers": [ + "roast conference" + ], + "count": 1 + }, + { + "answers": [ + "天天向上" + ], + "en_answers": [ + "make progress every day" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-77": { + "question": "中国最著名的宗教节日是什么?", + "en_question": "What is the most famous religious holiday in your country?", + "annotations": [ + { + "answers": [ + "春节", + "农历新年" + ], + "en_answers": [ + "spring festival", + "chinese new year", + "lunar new year" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 3, + "idk": 1, + "no-answer": 0 + } + }, + "New-am-81": { + "question": "在中国, 哪个月份最多人举行婚礼?(只提供阿拉伯数字(例如,1)。)", + "en_question": "What is the busiest month for weddings in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "不取决于月份,取决于具体的日期": 1, + "not-applicable": 1, + "idk": 1 + } + }, + "New-am-83": { + "question": "中国最受欢迎的传统乐器是什么?", + "en_question": "What is the most popular traditional musical instrument in your country?", + "annotations": [ + { + "answers": [ + "二胡" + ], + "en_answers": [ + "erhu" + ], + "count": 3 + }, + { + "answers": [ + "琵琶" + ], + "en_answers": [ + "pipa" + ], + "count": 2 + }, + { + "answers": [ + "唢呐" + ], + "en_answers": [ + "suona" + ], + "count": 2 + }, + { + "answers": [ + "古筝" + ], + "en_answers": [ + "guzheng" + ], + "count": 1 + }, + { + "answers": [ + "长笛" + ], + "en_answers": [ + "flute" + ], + "count": 1 + }, + { + "answers": [ + "鼓" + ], + "en_answers": [ + "drum" + ], + "count": 1 + }, + { + "answers": [ + "古琴" + ], + "en_answers": [ + "guqin" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-01": { + "question": "中国生产的主要农产品是什么?", + "en_question": "What is the main agricultural product produced in your country?", + "annotations": [ + { + "answers": [ + "水稻", + "大米" + ], + "en_answers": [ + "rice" + ], + "count": 4 + }, + { + "answers": [ + "谷物" + ], + "en_answers": [ + "grain" + ], + "count": 1 + }, + { + "answers": [ + "大豆" + ], + "en_answers": [ + "soybean" + ], + "count": 1 + }, + { + "answers": [ + "茶叶" + ], + "en_answers": [ + "tea leaves" + ], + "count": 1 + }, + { + "answers": [ + "小麦" + ], + "en_answers": [ + "wheat" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-02": { + "question": "在中国最受欢迎的小麦制品是什么?", + "en_question": "What is the most popular wheat-based food item in your country?", + "annotations": [ + { + "answers": [ + "面" + ], + "en_answers": [ + "noodles" + ], + "count": 2 + }, + { + "answers": [ + "包子" + ], + "en_answers": [ + "steamed stuffed bun", + "baozi" + ], + "count": 2 + }, + { + "answers": [ + "馒头" + ], + "en_answers": [ + "steamed bun" + ], + "count": 2 + }, + { + "answers": [ + "面包" + ], + "en_answers": [ + "bread" + ], + "count": 2 + }, + { + "answers": [ + "饺子" + ], + "en_answers": [ + "dumplings" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-05": { + "question": "在中国,招待到访家庭的客人时通常提供的饮品是什么?", + "en_question": "What is the most typical drink offered to guests when they visit households in your country?", + "annotations": [ + { + "answers": [ + "茶" + ], + "en_answers": [ + "tea" + ], + "count": 3 + }, + { + "answers": [ + "椰奶" + ], + "en_answers": [ + "coconut milk" + ], + "count": 1 + }, + { + "answers": [ + "白酒" + ], + "en_answers": [ + "chinese spirits", + "white liquor", + "bai" + ], + "count": 1 + }, + { + "answers": [ + "橙汁" + ], + "en_answers": [ + "orange juice" + ], + "count": 1 + }, + { + "answers": [ + "软饮" + ], + "en_answers": [ + "soft drink" + ], + "count": 1 + }, + { + "answers": [ + "可乐", + "如可乐" + ], + "en_answers": [ + "cola", + "coke" + ], + "count": 1 + }, + { + "answers": [ + "咖啡" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-07": { + "question": "在中国,最受欢迎的用鱼做的菜是什么?", + "en_question": "What is the most popular dish cooked with fish in your country?", + "annotations": [ + { + "answers": [ + "水煮鱼" + ], + "en_answers": [ + "sichuan boiled fish" + ], + "count": 3 + }, + { + "answers": [ + "红烧鱼" + ], + "en_answers": [ + "braised fish" + ], + "count": 2 + }, + { + "answers": [ + "酸菜鱼" + ], + "en_answers": [ + "sour cabbage fish" + ], + "count": 1 + }, + { + "answers": [ + "清蒸鲈鱼" + ], + "en_answers": [ + "steamed bass" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-14": { + "question": "下雨天的时候,中国人喜欢吃什么食物?", + "en_question": "What food do people from your country like to eat during rainy weather?", + "annotations": [ + { + "answers": [ + "火锅" + ], + "en_answers": [ + "hot pot" + ], + "count": 3 + }, + { + "answers": [ + "汤面等暖和的食物", + "汤面" + ], + "en_answers": [ + "soup noodles and other warm foods", + "noodle soup" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 0 + } + }, + "New-as-15": { + "question": "天气热的时候,中国人通常喝什么饮料?", + "en_question": "What drink is commonly consumed in your country when the weather is hot?", + "annotations": [ + { + "answers": [ + "冰红茶" + ], + "en_answers": [ + "iced black tea" + ], + "count": 1 + }, + { + "answers": [ + "凉茶" + ], + "en_answers": [ + "herbal tea" + ], + "count": 1 + }, + { + "answers": [ + "矿泉水" + ], + "en_answers": [ + "mineral water" + ], + "count": 1 + }, + { + "answers": [ + "奶茶" + ], + "en_answers": [ + "milk tea", + "bubble tea" + ], + "count": 1 + }, + { + "answers": [ + "冰镇绿豆汤" + ], + "en_answers": [ + "chilled mung bean soup" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-as-20": { + "question": "中国最受欢迎的室内运动是什么?", + "en_question": "What is the most popular indoor sport in your country?", + "annotations": [ + { + "answers": [ + "乒乓球" + ], + "en_answers": [ + "table tennis" + ], + "count": 3 + }, + { + "answers": [ + "羽毛球" + ], + "en_answers": [ + "badminton" + ], + "count": 2 + }, + { + "answers": [ + "电竞" + ], + "en_answers": [ + "e-sports" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-29": { + "question": "中国的男性喜欢观看什么运动?", + "en_question": "What sport do men in your country like to watch?", + "annotations": [ + { + "answers": [ + "足球" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "乒乓球" + ], + "en_answers": [ + "table tennis", + "ping pong" + ], + "count": 3 + }, + { + "answers": [ + "篮球" + ], + "en_answers": [ + "basketball" + ], + "count": 3 + }, + { + "answers": [ + "羽毛球" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-30": { + "question": "中国的女性喜欢观看什么运动?", + "en_question": "What sport do women in your country like to watch?", + "annotations": [ + { + "answers": [ + "乒乓球" + ], + "en_answers": [ + "table tennis", + "ping pong" + ], + "count": 3 + }, + { + "answers": [ + "篮球" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "游泳" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-as-58": { + "question": "中国人在工作场所最喜欢喝的饮料是什么?", + "en_question": "What is the most popular beverage that people from your country like to drink in their workplace?", + "annotations": [ + { + "answers": [ + "茶" + ], + "en_answers": [ + "tea" + ], + "count": 3 + }, + { + "answers": [ + "咖啡" + ], + "en_answers": [ + "coffee" + ], + "count": 3 + }, + { + "answers": [ + "奶茶" + ], + "en_answers": [ + "milk tea", + "bubble tea" + ], + "count": 2 + }, + { + "answers": [ + "可乐" + ], + "en_answers": [ + "cola", + "coke" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-64": { + "question": "在中国,哪个节日家里的所有成员会团聚?", + "en_question": "On which holiday do all family members tend to reunite in your country?", + "annotations": [ + { + "answers": [ + "春节" + ], + "en_answers": [ + "spring festival", + "chinese new year", + "lunar new year" + ], + "count": 4 + }, + { + "answers": [ + "中秋节", + "中秋" + ], + "en_answers": [ + "mid-autumn festival", + "mid-autumn" + ], + "count": 4 + }, + { + "answers": [ + "清明" + ], + "en_answers": [ + "qingming" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-76": { + "question": "在中国的传统节日里,家庭都玩些什么传统游戏?", + "en_question": "What traditional games do families play during traditional holidays in your country?", + "annotations": [ + { + "answers": [ + "麻将", + "打麻将" + ], + "en_answers": [ + "mahjong", + "play mahjong" + ], + "count": 2 + }, + { + "answers": [ + "踢键子" + ], + "en_answers": [ + "shuttlecock kicking" + ], + "count": 1 + }, + { + "answers": [ + "跳皮筋" + ], + "en_answers": [ + "jump rope" + ], + "count": 1 + }, + { + "answers": [ + "象棋" + ], + "en_answers": [ + "chinese chess" + ], + "count": 1 + }, + { + "answers": [ + "斗地主" + ], + "en_answers": [ + "fight the landlord" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-as-80": { + "question": "中国人在传统节日里通常穿什么样的服装?", + "en_question": "What type of clothing do people from your country wear during traditional festivals?", + "annotations": [ + { + "answers": [ + "常服", + "日常服装", + "与平时一样" + ], + "en_answers": [ + "daily wear", + "as usual" + ], + "count": 3 + }, + { + "answers": [ + "汉服" + ], + "en_answers": [ + "hanfu" + ], + "count": 1 + }, + { + "answers": [ + "春节过年时穿洗衣服" + ], + "en_answers": [ + "wear new clothes for the spring festival" + ], + "count": 1 + }, + { + "answers": [ + "颜色鲜艳的衣服" + ], + "en_answers": [ + "brightly colored clothes" + ], + "count": 1 + }, + { + "answers": [ + "旗袍" + ], + "en_answers": [ + "cheongsam", + "qipao" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-89": { + "question": "中国人在传统节日里会佩戴什么装饰品?", + "en_question": "What traditional festival accessories do people from your country wear?", + "annotations": [ + { + "answers": [ + "金做的首饰", + "金饰", + "少数民族服饰" + ], + "en_answers": [ + "gold jewelry", + "ethnic minority costumes" + ], + "count": 3 + }, + { + "answers": [ + "玉器", + "玉器 玉做的首饰", + "玉做的首饰" + ], + "en_answers": [ + "jade", + "jewelry made of jade" + ], + "count": 1 + }, + { + "answers": [ + "中国结" + ], + "en_answers": [ + "chinese knot" + ], + "count": 1 + }, + { + "answers": [ + "玉佩" + ], + "en_answers": [ + "jade pendant" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-05": { + "question": "中国最著名的酒类生产地区是哪里?", + "en_question": "What is the most famous region for alcohol production in your country?", + "annotations": [ + { + "answers": [ + "四川" + ], + "en_answers": [ + "sichuan" + ], + "count": 3 + }, + { + "answers": [ + "贵州" + ], + "en_answers": [ + "guizhou" + ], + "count": 2 + }, + { + "answers": [ + "山西" + ], + "en_answers": [ + "shanxi" + ], + "count": 2 + }, + { + "answers": [ + "贵州茅台镇" + ], + "en_answers": [ + "maotai town, guizhou" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-11": { + "question": "中国人在夏季常吃什么水果?", + "en_question": "What fruit do people from your country often eat in the summer season?", + "annotations": [ + { + "answers": [ + "西瓜" + ], + "en_answers": [ + "watermelon" + ], + "count": 4 + }, + { + "answers": [ + "哈密瓜" + ], + "en_answers": [ + "hami melon" + ], + "count": 1 + }, + { + "answers": [ + "桃" + ], + "en_answers": [ + "peach" + ], + "count": 1 + }, + { + "answers": [ + "苹果" + ], + "en_answers": [ + "apple" + ], + "count": 1 + }, + { + "answers": [ + "山竹" + ], + "en_answers": [ + "mangosteen" + ], + "count": 1 + }, + { + "answers": [ + "龙眼" + ], + "en_answers": [ + "longan" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-12": { + "question": "中国的哪个地区以海鲜闻名?", + "en_question": "Which region in your country is known for its seafood?", + "annotations": [ + { + "answers": [ + "福建" + ], + "en_answers": [ + "fujian" + ], + "count": 2 + }, + { + "answers": [ + "青海" + ], + "en_answers": [ + "qinghai" + ], + "count": 1 + }, + { + "answers": [ + "浙江" + ], + "en_answers": [ + "zhejiang" + ], + "count": 1 + }, + { + "answers": [ + "海滨城市" + ], + "en_answers": [ + "coastal city" + ], + "count": 1 + }, + { + "answers": [ + "广州" + ], + "en_answers": [ + "guangzhou" + ], + "count": 1 + }, + { + "answers": [ + "山东沿海" + ], + "en_answers": [ + "shandong coastal area" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-21": { + "question": "中国哪个地区是最受欢迎的滑雪目的地?", + "en_question": "Which region in your country is the most popular skiing destination?", + "annotations": [ + { + "answers": [ + "东北" + ], + "en_answers": [ + "northeast" + ], + "count": 2 + }, + { + "answers": [ + "吉林长白山" + ], + "en_answers": [ + "jilin changbai mountain" + ], + "count": 2 + }, + { + "answers": [ + "哈尔滨" + ], + "en_answers": [ + "harbin" + ], + "count": 1 + }, + { + "answers": [ + "吉林松花湖" + ], + "en_answers": [ + "jilin songhua lake" + ], + "count": 1 + }, + { + "answers": [ + "新疆可可托海" + ], + "en_answers": [ + "xinjiang keketuohai" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-26": { + "question": "谁是中国最受欢迎的武术运动员?", + "en_question": "Who is the most popular martial arts player in your country?", + "annotations": [ + { + "answers": [ + "李连杰" + ], + "en_answers": [ + "jet li" + ], + "count": 3 + }, + { + "answers": [ + "刘清华" + ], + "en_answers": [ + "liu qinghua" + ], + "count": 1 + }, + { + "answers": [ + "常志昭" + ], + "en_answers": [ + "chang zhizhao" + ], + "count": 1 + }, + { + "answers": [ + "吴京" + ], + "en_answers": [ + "wu jing" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-27": { + "question": "在过去十年中,哪项运动成为中国增长最快的运动之一?", + "en_question": "Which sport has been one of the fastest-growing in your country over the last decade?", + "annotations": [ + { + "answers": [ + "足球" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "篮球" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "冰雪运动" + ], + "en_answers": [ + "ice and snow sports" + ], + "count": 1 + }, + { + "answers": [ + "田径" + ], + "en_answers": [ + "track and field" + ], + "count": 1 + }, + { + "answers": [ + "乒乓球" + ], + "en_answers": [ + "table tennis", + "ping pong" + ], + "count": 1 + }, + { + "answers": [ + "滑雪" + ], + "en_answers": [ + "skiing" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-39": { + "question": "哪个国家是中国留学生最热门的留学目的地?", + "en_question": "Which country is the most popular destination for students from your country studying abroad?", + "annotations": [ + { + "answers": [ + "美国" + ], + "en_answers": [ + "united states" + ], + "count": 4 + }, + { + "answers": [ + "英国" + ], + "en_answers": [ + "united kingdom" + ], + "count": 2 + }, + { + "answers": [ + "澳大利亚" + ], + "en_answers": [ + "australia" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-49": { + "question": "在中国一个家庭中有多少人在工作?(只提供阿拉伯数字(例如,1)。)", + "en_question": "How many people work in a typical family in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 5 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-60": { + "question": "在中国,当父母双方都在工作时,谁来照顾孩子?", + "en_question": "In your country, who takes care of kids when both parents are working?", + "annotations": [ + { + "answers": [ + "保姆" + ], + "en_answers": [ + "nanny" + ], + "count": 2 + }, + { + "answers": [ + "长辈", + "老人" + ], + "en_answers": [ + "elder", + "elderly" + ], + "count": 2 + }, + { + "answers": [ + "爷爷奶奶", + "祖父母" + ], + "en_answers": [ + "grandparents", + "paternal grandparents" + ], + "count": 2 + }, + { + "answers": [ + "外公外婆" + ], + "en_answers": [ + "maternal grandfather and grandmother", + "grandparents" + ], + "count": 1 + }, + { + "answers": [ + "奶奶" + ], + "en_answers": [ + "grandmother" + ], + "count": 1 + }, + { + "answers": [ + "爷爷" + ], + "en_answers": [ + "grandfather" + ], + "count": 1 + }, + { + "answers": [ + "姥姥" + ], + "en_answers": [ + "maternal grandmother" + ], + "count": 1 + }, + { + "answers": [ + "幼儿园" + ], + "en_answers": [ + "kindergarten" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-69": { + "question": "中国男性最喜欢的酒精饮料是什么?", + "en_question": "What is the preferred alcoholic beverage for men from your country?", + "annotations": [ + { + "answers": [ + "白酒" + ], + "en_answers": [ + "chinese spirits", + "white liquor", + "bai" + ], + "count": 4 + }, + { + "answers": [ + "啤酒" + ], + "en_answers": [ + "beer" + ], + "count": 2 + }, + { + "answers": [ + "二锅头" + ], + "en_answers": [ + "erguotou" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-70": { + "question": "中国女性最喜欢的酒精饮料是什么?", + "en_question": "What is the preferred alcoholic beverage for women from your country?", + "annotations": [ + { + "answers": [ + "红酒" + ], + "en_answers": [ + "red wine" + ], + "count": 3 + }, + { + "answers": [ + "鸡尾酒" + ], + "en_answers": [ + "cocktail" + ], + "count": 2 + }, + { + "answers": [ + "奶啤" + ], + "en_answers": [ + "milk beer" + ], + "count": 1 + }, + { + "answers": [ + "白酒" + ], + "en_answers": [ + "chinese spirits", + "white liquor", + "bai" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 2, + "not-applicable": 0 + } + }, + "New-az-73": { + "question": "在中国,一场婚礼平均通常有多少人参加?(只提供阿拉伯数字(例如,1)。)", + "en_question": "How many people on average typically attend a wedding in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "100" + ], + "en_answers": [ + "100" + ], + "count": 3 + }, + { + "answers": [ + "200" + ], + "en_answers": [ + "200" + ], + "count": 2 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + }, + { + "answers": [ + "150" + ], + "en_answers": [ + "150" + ], + "count": 1 + }, + { + "answers": [ + "500" + ], + "en_answers": [ + "500" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-01": { + "question": "在中国烧烤时人们通常吃什么肉?", + "en_question": "What kind of meat do people usually eat when they have barbecue in your country?", + "annotations": [ + { + "answers": [ + "猪肉" + ], + "en_answers": [ + "pork" + ], + "count": 4 + }, + { + "answers": [ + "牛肉" + ], + "en_answers": [ + "beef" + ], + "count": 3 + }, + { + "answers": [ + "羊肉" + ], + "en_answers": [ + "mutton" + ], + "count": 3 + }, + { + "answers": [ + "鸡肉" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "五花肉" + ], + "en_answers": [ + "pork belly" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-02": { + "question": "中国人通常什么时候吃早餐?(请提供HH:MM格式,例如,18:00, 09:00。)", + "en_question": "When do people usually have breakfast in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "07:00" + ], + "en_answers": [ + "07:00" + ], + "count": 2 + }, + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 2 + }, + { + "answers": [ + "07:30" + ], + "en_answers": [ + "07:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-04": { + "question": "中国人通常吃什么食物作为夜宵?", + "en_question": "What kinds of food do people usually eat for late-night snacks in your country?", + "annotations": [ + { + "answers": [ + "烧烤", + "烤串" + ], + "en_answers": [ + "barbecue", + "kebabs" + ], + "count": 4 + }, + { + "answers": [ + "小龙虾" + ], + "en_answers": [ + "crawfish" + ], + "count": 1 + }, + { + "answers": [ + "炒米粉" + ], + "en_answers": [ + "fried rice noodles" + ], + "count": 1 + }, + { + "answers": [ + "泡面" + ], + "en_answers": [ + "instant noodles" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-05": { + "question": "在中国最有名的辣的菜(食物)是什么?", + "en_question": "What is the most famous spicy dish in your country?", + "annotations": [ + { + "answers": [ + "火锅", + "麻辣火锅" + ], + "en_answers": [ + "hot pot", + "spicy hot pot" + ], + "count": 3 + }, + { + "answers": [ + "辣子鸡" + ], + "en_answers": [ + "spicy chicken" + ], + "count": 1 + }, + { + "answers": [ + "麻婆豆腐" + ], + "en_answers": [ + "mapo tofu" + ], + "count": 1 + }, + { + "answers": [ + "辣椒炒肉" + ], + "en_answers": [ + "stir-fried pork with chili peppers" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-07": { + "question": "在中国,人们通常会搭配什么食物来喝烈酒?", + "en_question": "What food items do people typically pair with hard liquor in your country?", + "annotations": [ + { + "answers": [ + "花生", + "花生米" + ], + "en_answers": [ + "peanut", + "peanuts" + ], + "count": 3 + }, + { + "answers": [ + "卤味", + "卤肉" + ], + "en_answers": [ + "braised food", + "braised meat" + ], + "count": 2 + }, + { + "answers": [ + "牛肉" + ], + "en_answers": [ + "beef" + ], + "count": 1 + }, + { + "answers": [ + "猪肉" + ], + "en_answers": [ + "pork" + ], + "count": 1 + }, + { + "answers": [ + "包子" + ], + "en_answers": [ + "steamed bun" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-08": { + "question": "在中国烹饪中什么基本调料是不可或缺的?", + "en_question": "What seasoning is indispensable in cooking in your country?", + "annotations": [ + { + "answers": [ + "酱油" + ], + "en_answers": [ + "soy sauce" + ], + "count": 3 + }, + { + "answers": [ + "盐" + ], + "en_answers": [ + "salt" + ], + "count": 3 + }, + { + "answers": [ + "糖" + ], + "en_answers": [ + "sugar" + ], + "count": 1 + }, + { + "answers": [ + "味精" + ], + "en_answers": [ + "msg", + "monosodium glutamate" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-09": { + "question": "在中国天气寒冷时,人们通常会吃些什么食物?", + "en_question": "What food do people typically consume when the weather is cold in your country?", + "annotations": [ + { + "answers": [ + "火锅" + ], + "en_answers": [ + "hot pot" + ], + "count": 3 + }, + { + "answers": [ + "汤圆" + ], + "en_answers": [ + "glutinous rice balls" + ], + "count": 2 + }, + { + "answers": [ + "饺子" + ], + "en_answers": [ + "dumplings" + ], + "count": 1 + }, + { + "answers": [ + "牛肉汤", + "牛肉汤/羊肉汤" + ], + "en_answers": [ + "beef soup" + ], + "count": 1 + }, + { + "answers": [ + "羊肉汤", + "牛肉汤/羊肉汤" + ], + "en_answers": [ + "mutton soup", + "lamb soup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-13": { + "question": "中国最有名的酒品牌是什么?", + "en_question": "What is the most famous alcohol brand in your country?", + "annotations": [ + { + "answers": [ + "茅台", + "茅台酒" + ], + "en_answers": [ + "moutai", + "moutai liquor" + ], + "count": 5 + }, + { + "answers": [ + "五粮液" + ], + "en_answers": [ + "wuliangye" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-14": { + "question": "在中国,人们生病时通常吃什么食物?", + "en_question": "What foods do people usually eat when they are sick in your country?", + "annotations": [ + { + "answers": [ + "粥", + "稀饭" + ], + "en_answers": [ + "porridge" + ], + "count": 5 + }, + { + "answers": [ + "鸡汤" + ], + "en_answers": [ + "chicken soup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-15": { + "question": "在中国的超市里,人们通常会买哪些预制/即食食品?", + "en_question": "What prepared/ready-to-eat food do people typically buy at supermarkets in your country?", + "annotations": [ + { + "answers": [ + "方便面", + "方便面、盒饭", + "泡面" + ], + "en_answers": [ + "instant noodles" + ], + "count": 3 + }, + { + "answers": [ + "盒饭", + "方便面、盒饭" + ], + "en_answers": [ + "boxed meals" + ], + "count": 1 + }, + { + "answers": [ + "螺狮粉" + ], + "en_answers": [ + "luosifen" + ], + "count": 1 + }, + { + "answers": [ + "素鸡" + ], + "en_answers": [ + "mock chicken" + ], + "count": 1 + }, + { + "answers": [ + "速冻饺子" + ], + "en_answers": [ + "frozen dumplings" + ], + "count": 1 + }, + { + "answers": [ + "饺子" + ], + "en_answers": [ + "dumplings" + ], + "count": 1 + }, + { + "answers": [ + "粽子" + ], + "en_answers": [ + "zongzi" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-16": { + "question": "中国最著名的和体育相关电影是哪一部?", + "en_question": "What is the most famous sports-related movie in your country?", + "annotations": [ + { + "answers": [ + "夺冠" + ], + "en_answers": [ + "leap" + ], + "count": 2 + }, + { + "answers": [ + "灌篮高手" + ], + "en_answers": [ + "slam dunk" + ], + "count": 1 + }, + { + "answers": [ + "女篮五号" + ], + "en_answers": [ + "women basketball team member no. 5" + ], + "count": 1 + }, + { + "answers": [ + "中国女排" + ], + "en_answers": [ + "china women's volleyball team" + ], + "count": 1 + }, + { + "answers": [ + "女排一号" + ], + "en_answers": [ + "women's volleyball number 1" + ], + "count": 1 + }, + { + "answers": [ + "破风" + ], + "en_answers": [ + "to the fore" + ], + "count": 1 + }, + { + "answers": [ + "李小龙" + ], + "en_answers": [ + "bruce lee" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-17": { + "question": "在中国,人们通常最想尝试哪种极限运动?", + "en_question": "What extreme sport do people generally wish to try the most in your country?", + "annotations": [ + { + "answers": [ + "蹦极" + ], + "en_answers": [ + "bungee jumping" + ], + "count": 4 + }, + { + "answers": [ + "攀岩" + ], + "en_answers": [ + "rock climbing" + ], + "count": 1 + }, + { + "answers": [ + "潜水" + ], + "en_answers": [ + "diving" + ], + "count": 1 + }, + { + "answers": [ + "跳伞" + ], + "en_answers": [ + "parachuting" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-18": { + "question": "在中国的田径比赛中,哪个项目最受欢迎?", + "en_question": "Which track and field event is the most popular to watch during competitions in your country?", + "annotations": [ + { + "answers": [ + "跨栏" + ], + "en_answers": [ + "hurdling" + ], + "count": 2 + }, + { + "answers": [ + "100米" + ], + "en_answers": [ + "100 meters" + ], + "count": 1 + }, + { + "answers": [ + "短跑" + ], + "en_answers": [ + "sprint" + ], + "count": 1 + }, + { + "answers": [ + "400米" + ], + "en_answers": [ + "400 meters" + ], + "count": 1 + }, + { + "answers": [ + "800米" + ], + "en_answers": [ + "800 meters" + ], + "count": 1 + }, + { + "answers": [ + "400米接力赛" + ], + "en_answers": [ + "400-meter relay race" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-19": { + "question": "在中国的比赛中,哪项体操赛事最受欢迎?", + "en_question": "Which gymnastics event is the most popular to watch during competitions in your country?", + "annotations": [ + { + "answers": [ + "自由体操" + ], + "en_answers": [ + "floor exercise" + ], + "count": 2 + }, + { + "answers": [ + "平衡木" + ], + "en_answers": [ + "balance beam" + ], + "count": 1 + }, + { + "answers": [ + "花样体操" + ], + "en_answers": [ + "rhythmic gymnastics" + ], + "count": 1 + }, + { + "answers": [ + "跳马" + ], + "en_answers": [ + "vault" + ], + "count": 1 + }, + { + "answers": [ + "双杠" + ], + "en_answers": [ + "parallel bars" + ], + "count": 1 + }, + { + "answers": [ + "足球" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "篮球" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "乒乓球" + ], + "en_answers": [ + "table tennis", + "ping pong" + ], + "count": 1 + }, + { + "answers": [ + "cba" + ], + "en_answers": [ + "chinese basketball association", + "cba" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-23": { + "question": "中国最著名的乒乓球运动员是谁?", + "en_question": "Who is the most famous table tennis player in your country?", + "annotations": [ + { + "answers": [ + "马龙" + ], + "en_answers": [ + "ma long" + ], + "count": 3 + }, + { + "answers": [ + "孔令辉" + ], + "en_answers": [ + "kong linghui" + ], + "count": 1 + }, + { + "answers": [ + "邓亚萍" + ], + "en_answers": [ + "deng yaping" + ], + "count": 1 + }, + { + "answers": [ + "许昕" + ], + "en_answers": [ + "xu xin" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-26": { + "question": "在中国,冬季奥运会中的哪项赛事人们最喜欢观看?", + "en_question": "In the Winter Olympics, which event is the most popular to watch in your country?", + "annotations": [ + { + "answers": [ + "滑雪" + ], + "en_answers": [ + "skiing" + ], + "count": 3 + }, + { + "answers": [ + "花样滑冰" + ], + "en_answers": [ + "figure skating" + ], + "count": 1 + }, + { + "answers": [ + "短道速滑" + ], + "en_answers": [ + "short track speed skating" + ], + "count": 1 + }, + { + "answers": [ + "冰壶" + ], + "en_answers": [ + "curling" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-27": { + "question": "中国最有名的拳击手是谁?", + "en_question": "Who is the most famous boxer in your country?", + "annotations": [ + { + "answers": [ + "邹市明" + ], + "en_answers": [ + "zou shiming" + ], + "count": 2 + }, + { + "answers": [ + "张伟丽" + ], + "en_answers": [ + "zhang weili" + ], + "count": 2 + }, + { + "answers": [ + "张志磊" + ], + "en_answers": [ + "zhang zhilei" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-30": { + "question": "中国最著名的田径运动员是谁?", + "en_question": "Who is the most famous track and field athlete in your country?", + "annotations": [ + { + "answers": [ + "刘翔" + ], + "en_answers": [ + "liu xiang" + ], + "count": 5 + }, + { + "answers": [ + "苏炳添" + ], + "en_answers": [ + "su bingtian" + ], + "count": 1 + }, + { + "answers": [ + "王军霞" + ], + "en_answers": [ + "wang junxia" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-31": { + "question": "在中国,父母最希望他们的孩子追求什么职业?", + "en_question": "What job do parents most hope their children will pursue in your country?", + "annotations": [ + { + "answers": [ + "公务员" + ], + "en_answers": [ + "civil servant" + ], + "count": 3 + }, + { + "answers": [ + "计算机软件开发" + ], + "en_answers": [ + "computer software development" + ], + "count": 1 + }, + { + "answers": [ + "工程师" + ], + "en_answers": [ + "engineer" + ], + "count": 1 + }, + { + "answers": [ + "老师" + ], + "en_answers": [ + "teacher" + ], + "count": 1 + }, + { + "answers": [ + "医生" + ], + "en_answers": [ + "doctor" + ], + "count": 1 + }, + { + "answers": [ + "律师" + ], + "en_answers": [ + "lawyer" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-32": { + "question": "在中国的工作场所,人们通常使用什么办公软件?", + "en_question": "What office software do people typically use in the workplace in your country?", + "annotations": [ + { + "answers": [ + "wps" + ], + "en_answers": [ + "kingsoft office" + ], + "count": 3 + }, + { + "answers": [ + "微软" + ], + "en_answers": [ + "microsoft" + ], + "count": 2 + }, + { + "answers": [ + "微信" + ], + "en_answers": [ + "wechat" + ], + "count": 1 + }, + { + "answers": [ + "microsoft office" + ], + "en_answers": [ + "microsoft office" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-38": { + "question": "中国有哪些以进出口闻名的城市或地区?", + "en_question": "Which cities or regions are known for their import and export activities in your country?", + "annotations": [ + { + "answers": [ + "上海" + ], + "en_answers": [ + "shanghai" + ], + "count": 2 + }, + { + "answers": [ + "深圳" + ], + "en_answers": [ + "shenzhen" + ], + "count": 2 + }, + { + "answers": [ + "青岛" + ], + "en_answers": [ + "qingdao" + ], + "count": 1 + }, + { + "answers": [ + "广州" + ], + "en_answers": [ + "guangzhou" + ], + "count": 1 + }, + { + "answers": [ + "山东半岛" + ], + "en_answers": [ + "shandong peninsula" + ], + "count": 1 + }, + { + "answers": [ + "珠海" + ], + "en_answers": [ + "zhuhai" + ], + "count": 1 + }, + { + "answers": [ + "东莞" + ], + "en_answers": [ + "dongguan" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-39": { + "question": "中国的电商行业普遍使用什么平台?", + "en_question": "What platform is commonly used in the e-commerce industry in your country?", + "annotations": [ + { + "answers": [ + "淘宝" + ], + "en_answers": [ + "taobao" + ], + "count": 5 + }, + { + "answers": [ + "京东" + ], + "en_answers": [ + "jd.com" + ], + "count": 4 + }, + { + "answers": [ + "拼多多" + ], + "en_answers": [ + "pinduoduo" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-44": { + "question": "在中国,新职员在签正式合同前通常有多久的实习期?(例如,1个月)", + "en_question": "How long is the typical probation period for new employees before signing a formal contract in your country? (e.g., 1 month).", + "annotations": [ + { + "answers": [ + "3个月" + ], + "en_answers": [ + "3 months" + ], + "count": 4 + }, + { + "answers": [ + "一个月" + ], + "en_answers": [ + "one month" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-45": { + "question": "在中国,年轻人通常选择哪些行业创业?", + "en_question": "Which industries do young people typically choose to start businesses in your country?", + "annotations": [ + { + "answers": [ + "it行业", + "it" + ], + "en_answers": [ + "information technology", + "it industry" + ], + "count": 2 + }, + { + "answers": [ + "科技" + ], + "en_answers": [ + "technology" + ], + "count": 1 + }, + { + "answers": [ + "互联网" + ], + "en_answers": [ + "internet" + ], + "count": 1 + }, + { + "answers": [ + "自媒体" + ], + "en_answers": [ + "self-media" + ], + "count": 1 + }, + { + "answers": [ + "餐馆" + ], + "en_answers": [ + "restaurant" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-49": { + "question": "在中国,家庭成员远程交流最常用的方式是什么?", + "en_question": "What is the most common way for family members to communicate remotely in your country?", + "annotations": [ + { + "answers": [ + "微信", + "微信交流" + ], + "en_answers": [ + "wechat", + "wechat communication" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-51": { + "question": "在中国,家庭旅行通常会预订哪种形式的住宿?", + "en_question": "What form of accommodation is typically booked for family trips in your country?", + "annotations": [ + { + "answers": [ + "宾馆", + "酒店" + ], + "en_answers": [ + "hotel" + ], + "count": 4 + }, + { + "answers": [ + "民宿", + "民俗" + ], + "en_answers": [ + "homestay" + ], + "count": 2 + }, + { + "answers": [ + "快捷酒店" + ], + "en_answers": [ + "express inn" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-54": { + "question": "中国家庭的晚餐最经常会准备什么水果?", + "en_question": "Which fruit is usually prepared the most for family dinners in your country?", + "annotations": [ + { + "answers": [ + "苹果" + ], + "en_answers": [ + "apple" + ], + "count": 4 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-64": { + "question": "在中国,大学生通常每周有多少小时的课?(只提供阿拉伯数字(例如,1)。)", + "en_question": "How many hours of classes do university students typically have per week in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 2 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 2 + }, + { + "answers": [ + "21" + ], + "en_answers": [ + "21" + ], + "count": 1 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-66": { + "question": "中国公立高中每学期的学费通常是多少?(只提供阿拉伯数字(例如,1)。)", + "en_question": "What is the typical tuition fee per semester for public high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "1000" + ], + "en_answers": [ + "1000" + ], + "count": 2 + }, + { + "answers": [ + "5000" + ], + "en_answers": [ + "5000" + ], + "count": 1 + }, + { + "answers": [ + "2000" + ], + "en_answers": [ + "2000" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-70": { + "question": "在中国,大学生都有哪些必修课?", + "en_question": "What compulsory courses do university students have in common in your country?", + "annotations": [ + { + "answers": [ + "马克思主义" + ], + "en_answers": [ + "marxism" + ], + "count": 2 + }, + { + "answers": [ + "思政", + "思想政治" + ], + "en_answers": [ + "ideology and politics", + "ideological and political education" + ], + "count": 2 + }, + { + "answers": [ + "体育" + ], + "en_answers": [ + "sports" + ], + "count": 1 + }, + { + "answers": [ + "马思克哲学" + ], + "en_answers": [ + "mask philosophy" + ], + "count": 1 + }, + { + "answers": [ + "大学英语" + ], + "en_answers": [ + "college english" + ], + "count": 1 + }, + { + "answers": [ + "英语" + ], + "en_answers": [ + "english" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-71": { + "question": "中国高中的平均班级人数是多少?(只提供阿拉伯数字(例如,1)。)", + "en_question": "What is the average class size in high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 2 + }, + { + "answers": [ + "50" + ], + "en_answers": [ + "50" + ], + "count": 1 + }, + { + "answers": [ + "35" + ], + "en_answers": [ + "35" + ], + "count": 1 + }, + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-72": { + "question": "在中国,哪个专业被认为最好就业?", + "en_question": "Which major is considered most conducive to employment in your country?", + "annotations": [ + { + "answers": [ + "计算机" + ], + "en_answers": [ + "computer" + ], + "count": 2 + }, + { + "answers": [ + "金融" + ], + "en_answers": [ + "finance" + ], + "count": 1 + }, + { + "answers": [ + "医学" + ], + "en_answers": [ + "medicine" + ], + "count": 1 + }, + { + "answers": [ + "法律" + ], + "en_answers": [ + "law" + ], + "count": 1 + }, + { + "answers": [ + "经济" + ], + "en_answers": [ + "economy" + ], + "count": 1 + }, + { + "answers": [ + "医生" + ], + "en_answers": [ + "doctor" + ], + "count": 1 + }, + { + "answers": [ + "工程" + ], + "en_answers": [ + "project" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-73": { + "question": "在中国的大学生中,哪种类型的社团最受欢迎?", + "en_question": "What type of clubs are most popular among university students in your country?", + "annotations": [ + { + "answers": [ + "街舞社团", + "街舞社" + ], + "en_answers": [ + "street dance club" + ], + "count": 2 + }, + { + "answers": [ + "体育类" + ], + "en_answers": [ + "sports category" + ], + "count": 1 + }, + { + "answers": [ + "舞蹈" + ], + "en_answers": [ + "dance" + ], + "count": 1 + }, + { + "answers": [ + "吉他" + ], + "en_answers": [ + "guitar" + ], + "count": 1 + }, + { + "answers": [ + "羽毛球社团" + ], + "en_answers": [ + "badminton club" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-74": { + "question": "在中国,大学生通常住在什么类型的住宿?", + "en_question": "What types of accommodation do university students in your country typically live in?", + "annotations": [ + { + "answers": [ + "宿舍" + ], + "en_answers": [ + "dormitory" + ], + "count": 3 + }, + { + "answers": [ + "学生宿舍" + ], + "en_answers": [ + "student dormitory" + ], + "count": 1 + }, + { + "answers": [ + "4人" + ], + "en_answers": [ + "4 people" + ], + "count": 1 + }, + { + "answers": [ + "6人宿舍" + ], + "en_answers": [ + "6-person dormitory" + ], + "count": 1 + }, + { + "answers": [ + "公寓" + ], + "en_answers": [ + "apartment" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-75": { + "question": "在中国,初中生每节课通常多长时间(分钟)?(只提供阿拉伯数字(例如,1)。)", + "en_question": "How long is each class period for middle school students in your country (minutes)? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "45" + ], + "en_answers": [ + "45" + ], + "count": 4 + }, + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-78": { + "question": "在中国,退休女性通常喜欢什么休闲活动?", + "en_question": "What leisure activities do retired women typically like in your country?", + "annotations": [ + { + "answers": [ + "广场舞", + "跳广场舞" + ], + "en_answers": [ + "square dance", + "square dancing" + ], + "count": 3 + }, + { + "answers": [ + "打麻将" + ], + "en_answers": [ + "play mahjong" + ], + "count": 2 + }, + { + "answers": [ + "踢毽子" + ], + "en_answers": [ + "kick shuttlecock" + ], + "count": 1 + }, + { + "answers": [ + "旅游" + ], + "en_answers": [ + "tourism" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-79": { + "question": "在中国,退休男性通常喜欢什么休闲活动?", + "en_question": "What leisure activities do retired men typically like in your country?", + "annotations": [ + { + "answers": [ + "打太极拳" + ], + "en_answers": [ + "practice tai chi" + ], + "count": 1 + }, + { + "answers": [ + "跳广场舞" + ], + "en_answers": [ + "square dancing" + ], + "count": 1 + }, + { + "answers": [ + "旅游" + ], + "en_answers": [ + "tourism" + ], + "count": 1 + }, + { + "answers": [ + "下棋", + "下象棋" + ], + "en_answers": [ + "play chess" + ], + "count": 1 + }, + { + "answers": [ + "钓鱼" + ], + "en_answers": [ + "fishing" + ], + "count": 1 + }, + { + "answers": [ + "上网" + ], + "en_answers": [ + "surf the internet" + ], + "count": 1 + }, + { + "answers": [ + "下象棋", + "下棋" + ], + "en_answers": [ + "play chess" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-80": { + "question": "在中国,人们通常在什么节假日参观宗教场所(寺庙、教堂等)?", + "en_question": "During which holidays do people typically visit religious sites (temples, churches, etc.) in your country?", + "annotations": [ + { + "answers": [ + "春节" + ], + "en_answers": [ + "spring festival", + "chinese new year", + "lunar new year" + ], + "count": 1 + }, + { + "answers": [ + "圣诞节" + ], + "en_answers": [ + "christmas" + ], + "count": 1 + }, + { + "answers": [ + "初一" + ], + "en_answers": [ + "the first day of the month" + ], + "count": 1 + }, + { + "answers": [ + "十五" + ], + "en_answers": [ + "fifteen" + ], + "count": 1 + }, + { + "answers": [ + "佛诞" + ], + "en_answers": [ + "buddha's birthday" + ], + "count": 1 + }, + { + "answers": [ + "清明节" + ], + "en_answers": [ + "qingming festival" + ], + "count": 1 + }, + { + "answers": [ + "重阳节" + ], + "en_answers": [ + "double ninth festival" + ], + "count": 1 + }, + { + "answers": [ + "年初一" + ], + "en_answers": [ + "the first day of the lunar new year" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-ch-81": { + "question": "在中国,典型的乔迁礼物有哪些?", + "en_question": "What are the typical housewarming gifts in your country?", + "annotations": [ + { + "answers": [ + "床上用品" + ], + "en_answers": [ + "bedding" + ], + "count": 1 + }, + { + "answers": [ + "茶具" + ], + "en_answers": [ + "tea set" + ], + "count": 1 + }, + { + "answers": [ + "餐具" + ], + "en_answers": [ + "tableware" + ], + "count": 1 + }, + { + "answers": [ + "花" + ], + "en_answers": [ + "flower" + ], + "count": 1 + }, + { + "answers": [ + "植物" + ], + "en_answers": [ + "plant" + ], + "count": 1 + }, + { + "answers": [ + "水果篮" + ], + "en_answers": [ + "fruit basket" + ], + "count": 1 + }, + { + "answers": [ + "礼金" + ], + "en_answers": [ + "cash gift" + ], + "count": 1 + }, + { + "answers": [ + "现金" + ], + "en_answers": [ + "cash" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-82": { + "question": "在中国,婚礼通常是什么时间开始的?(请提供HH:MM格式,例如,18:00, 09:00。)", + "en_question": "At what time do weddings typically start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "12:00" + ], + "en_answers": [ + "12:00" + ], + "count": 2 + }, + { + "answers": [ + "19:00" + ], + "en_answers": [ + "19:00" + ], + "count": 1 + }, + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 1 + }, + { + "answers": [ + "18:18" + ], + "en_answers": [ + "18:18" + ], + "count": 1 + } + ], + "idks": { + "每个地方不一样,我家那边好像是早上五点开始接亲。": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-83": { + "question": "中国的哪个城市举办节日最多?", + "en_question": "Which city in your country hosts festivals the most?", + "annotations": [ + { + "answers": [ + "北京" + ], + "en_answers": [ + "beijing" + ], + "count": 3 + }, + { + "answers": [ + "上海" + ], + "en_answers": [ + "shanghai" + ], + "count": 2 + }, + { + "answers": [ + "深圳" + ], + "en_answers": [ + "shenzhen" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-84": { + "question": "在中国参加婚礼时,人们通常穿什么颜色的衣服?", + "en_question": "What color of clothing do people typically wear when attending weddings in your country?", + "annotations": [ + { + "answers": [ + "红", + "红色" + ], + "en_answers": [ + "red" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-85": { + "question": "在中国参加葬礼时,人们通常穿什么颜色的衣服?", + "en_question": "What color of clothing do people typically wear when attending funerals in your country?", + "annotations": [ + { + "answers": [ + "黑色", + "黑" + ], + "en_answers": [ + "black" + ], + "count": 5 + }, + { + "answers": [ + "白色" + ], + "en_answers": [ + "white" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-01": { + "question": "在中国的电影院里,人们通常吃什么小吃?", + "en_question": "Which snack is eaten in the cinema in your country?", + "annotations": [ + { + "answers": [ + "爆米花" + ], + "en_answers": [ + "popcorn" + ], + "count": 4 + }, + { + "answers": [ + "奶茶" + ], + "en_answers": [ + "milk tea" + ], + "count": 2 + }, + { + "answers": [ + "可乐" + ], + "en_answers": [ + "cola" + ], + "count": 1 + }, + { + "answers": [ + "淀粉肠" + ], + "en_answers": [ + "starch sausage" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-02": { + "question": "在中国最受欢迎的薯片口味是什么?", + "en_question": "What is the most popular chip/crisp flavour in your country?", + "annotations": [ + { + "answers": [ + "黄瓜", + "黄瓜味" + ], + "en_answers": [ + "cucumber", + "cucumber flavor" + ], + "count": 3 + }, + { + "answers": [ + "原味" + ], + "en_answers": [ + "original flavor" + ], + "count": 2 + }, + { + "answers": [ + "麻辣" + ], + "en_answers": [ + "spicy and numbing" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-04": { + "question": "中国有哪位知名的厨师?", + "en_question": "Who is a popular celebrity chef in your country?", + "annotations": [ + { + "answers": [ + "王刚" + ], + "en_answers": [ + "wang gang", + "gang wang" + ], + "count": 3 + }, + { + "answers": [ + "黄磊" + ], + "en_answers": [ + "huang lei", + "lei huang" + ], + "count": 1 + }, + { + "answers": [ + "谢霆锋" + ], + "en_answers": [ + "nicholas tse" + ], + "count": 1 + }, + { + "answers": [ + "史正良" + ], + "en_answers": [ + "shi zhengliang", + "zhengliang shi" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-05": { + "question": "在中国,哪种食物是性价比高且快捷的餐饮选择?", + "en_question": "Which food is a cost-effective and quick meal option in your country?", + "annotations": [ + { + "answers": [ + "沙县小吃" + ], + "en_answers": [ + "shaxian delicacies" + ], + "count": 1 + }, + { + "answers": [ + "方便面" + ], + "en_answers": [ + "instant noodles" + ], + "count": 1 + }, + { + "answers": [ + "包子" + ], + "en_answers": [ + "steamed stuffed bun" + ], + "count": 1 + }, + { + "answers": [ + "馒头" + ], + "en_answers": [ + "steamed bun" + ], + "count": 1 + }, + { + "answers": [ + "稀饭" + ], + "en_answers": [ + "porridge" + ], + "count": 1 + }, + { + "answers": [ + "油条" + ], + "en_answers": [ + "fried dough stick" + ], + "count": 1 + }, + { + "answers": [ + "豆浆" + ], + "en_answers": [ + "soy milk" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-07": { + "question": "中国最受欢迎的烹饪节目有哪些?", + "en_question": "What are the most popular cooking shows in your country?", + "annotations": [ + { + "answers": [ + "舌尖上的中国" + ], + "en_answers": [ + "a bite of china" + ], + "count": 3 + }, + { + "answers": [ + "中餐厅" + ], + "en_answers": [ + "chinese restaurant" + ], + "count": 1 + }, + { + "answers": [ + "王刚的频道" + ], + "en_answers": [ + "wang gang's channel" + ], + "count": 1 + }, + { + "answers": [ + "十二道锋味" + ], + "en_answers": [ + "twelve way of sharp flavors" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-08": { + "question": "在中国最受欢迎的巧克力品牌是什么?", + "en_question": "What is the most popular chocolate brand in your country?", + "annotations": [ + { + "answers": [ + "德芙" + ], + "en_answers": [ + "dove" + ], + "count": 4 + }, + { + "answers": [ + "费列罗" + ], + "en_answers": [ + "ferrero" + ], + "count": 1 + }, + { + "answers": [ + "金沙巧克力" + ], + "en_answers": [ + "gold sand chocolate" + ], + "count": 1 + }, + { + "answers": [ + "好时" + ], + "en_answers": [ + "good times" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-10": { + "question": "在中国最常吃的奶酪是什么?", + "en_question": "What is the most eaten cheese in your country?", + "annotations": [ + { + "answers": [ + "马苏里拉" + ], + "en_answers": [ + "mozzarella" + ], + "count": 1 + }, + { + "answers": [ + "白干酪" + ], + "en_answers": [ + "white cheese" + ], + "count": 1 + }, + { + "answers": [ + "酸奶" + ], + "en_answers": [ + "yogurt" + ], + "count": 1 + }, + { + "answers": [ + "羊奶酪" + ], + "en_answers": [ + "sheep cheese" + ], + "count": 1 + }, + { + "answers": [ + "奶酪棒" + ], + "en_answers": [ + "cheese stick" + ], + "count": 1 + }, + { + "answers": [ + "芝士奶酪" + ], + "en_answers": [ + "cheese" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-11": { + "question": "在中国最不受欢迎的蔬菜是什么?", + "en_question": "What is the most disliked vegetable in your country?", + "annotations": [ + { + "answers": [ + "豆芽" + ], + "en_answers": [ + "bean sprouts" + ], + "count": 1 + }, + { + "answers": [ + "西兰花" + ], + "en_answers": [ + "broccoli" + ], + "count": 1 + }, + { + "answers": [ + "苦瓜" + ], + "en_answers": [ + "bitter melon" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-12": { + "question": "在中国的美食广场最常见的食物是什么?", + "en_question": "What food is most commonly found in food courts in your country?", + "annotations": [ + { + "answers": [ + "生煎" + ], + "en_answers": [ + "shengjian (pan-fried bun)" + ], + "count": 1 + }, + { + "answers": [ + "面条" + ], + "en_answers": [ + "noodles" + ], + "count": 1 + }, + { + "answers": [ + "烤肠" + ], + "en_answers": [ + "roasted sausage" + ], + "count": 1 + }, + { + "answers": [ + "臭豆腐" + ], + "en_answers": [ + "stinky tofu" + ], + "count": 1 + }, + { + "answers": [ + "烤鱿鱼" + ], + "en_answers": [ + "grilled squid" + ], + "count": 1 + }, + { + "answers": [ + "烤串", + "烧烤" + ], + "en_answers": [ + "barbecue", + "kebabs" + ], + "count": 1 + }, + { + "answers": [ + "黄焖鸡米饭" + ], + "en_answers": [ + "braised chicken with rice" + ], + "count": 1 + }, + { + "answers": [ + "烧烤" + ], + "en_answers": [ + "barbecue" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-17": { + "question": "在中国,体育迷最常用的助威工具是什么?", + "en_question": "What are the most common cheering tools used by sports fans in your country?", + "annotations": [ + { + "answers": [ + "横幅" + ], + "en_answers": [ + "banner" + ], + "count": 2 + }, + { + "answers": [ + "玩具喇叭" + ], + "en_answers": [ + "toy horn" + ], + "count": 1 + }, + { + "answers": [ + "锣鼓" + ], + "en_answers": [ + "gongs and drums" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-18": { + "question": "中国的粉丝在观看现场体育比赛时会带些什么东西?", + "en_question": "What do fans bring with them when attending a live game in your country?", + "annotations": [ + { + "answers": [ + "水" + ], + "en_answers": [ + "water" + ], + "count": 1 + }, + { + "answers": [ + "望远镜" + ], + "en_answers": [ + "telescope" + ], + "count": 1 + }, + { + "answers": [ + "零食" + ], + "en_answers": [ + "snacks" + ], + "count": 1 + }, + { + "answers": [ + "国旗" + ], + "en_answers": [ + "national flag" + ], + "count": 1 + }, + { + "answers": [ + "口哨" + ], + "en_answers": [ + "whistle" + ], + "count": 1 + }, + { + "answers": [ + "横幅" + ], + "en_answers": [ + "banner" + ], + "count": 1 + }, + { + "answers": [ + "照相机" + ], + "en_answers": [ + "camera" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-19": { + "question": "中国最著名的体育场是哪一个?", + "en_question": "What is the most well known sporting stadium in your country?", + "annotations": [ + { + "answers": [ + "鸟巢" + ], + "en_answers": [ + "bird's nest" + ], + "count": 2 + }, + { + "answers": [ + "工人体育场", + "北京工人体育馆" + ], + "en_answers": [ + "beijing workers stadium" + ], + "count": 2 + }, + { + "answers": [ + "北京工人体育馆", + "工人体育场" + ], + "en_answers": [ + "beijing workers stadium" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-23": { + "question": "谁是中国最著名的残奥会运动员?", + "en_question": "Who is the most famous Paralympian in your country?", + "annotations": [ + { + "answers": [ + "侯斌" + ], + "en_answers": [ + "hou bin" + ], + "count": 1 + }, + { + "answers": [ + "郑鹏" + ], + "en_answers": [ + "zheng peng" + ], + "count": 1 + }, + { + "answers": [ + "桑兰" + ], + "en_answers": [ + "sang lan" + ], + "count": 1 + }, + { + "answers": [ + "董启明" + ], + "en_answers": [ + "dong qiming" + ], + "count": 1 + }, + { + "answers": [ + "许海峰" + ], + "en_answers": [ + "xu haifeng" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-26": { + "question": "中国最知名的体育助威口号是什么?", + "en_question": "What is the best recognized sporting chant in your country?", + "annotations": [ + { + "answers": [ + "加油" + ], + "en_answers": [ + "come on/go for it/you can do it" + ], + "count": 2 + }, + { + "answers": [ + "中国队" + ], + "en_answers": [ + "china team" + ], + "count": 1 + }, + { + "answers": [ + "加油加油" + ], + "en_answers": [ + "go go" + ], + "count": 1 + }, + { + "answers": [ + "雄起" + ], + "en_answers": [ + "cheer up" + ], + "count": 1 + }, + { + "answers": [ + "中国加油" + ], + "en_answers": [ + "go china" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-38": { + "question": "在中国,哪些行业以更灵活的工作时间而闻名?", + "en_question": "Which industries are known for more flexible working hours in your country?", + "annotations": [ + { + "answers": [ + "自媒体" + ], + "en_answers": [ + "self-media" + ], + "count": 2 + }, + { + "answers": [ + "自由职业" + ], + "en_answers": [ + "freelancer" + ], + "count": 1 + }, + { + "answers": [ + "互联网" + ], + "en_answers": [ + "internet" + ], + "count": 1 + }, + { + "answers": [ + "程序员" + ], + "en_answers": [ + "programmer" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-41": { + "question": "谁是中国最著名和最成功的企业家?", + "en_question": "Who is the most well known and successful entrepreneur in your country?", + "annotations": [ + { + "answers": [ + "马云" + ], + "en_answers": [ + "jack ma" + ], + "count": 4 + }, + { + "answers": [ + "马化腾" + ], + "en_answers": [ + "pony ma" + ], + "count": 2 + }, + { + "answers": [ + "任正非" + ], + "en_answers": [ + "ren zhengfei" + ], + "count": 1 + }, + { + "answers": [ + "刘强东" + ], + "en_answers": [ + "liu qiangdong" + ], + "count": 1 + }, + { + "answers": [ + "雷军" + ], + "en_answers": [ + "lei jun" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-47": { + "question": "在中国的房屋后花园通常可以找到什么?", + "en_question": "What can typically be found in the back garden of houses in your country?", + "annotations": [ + { + "answers": [ + "蔬菜种植区域", + "菜地" + ], + "en_answers": [ + "vegetable planting area", + "vegetable garden" + ], + "count": 2 + }, + { + "answers": [ + "蔬菜" + ], + "en_answers": [ + "vegetables" + ], + "count": 1 + }, + { + "answers": [ + "水果" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + }, + { + "answers": [ + "草" + ], + "en_answers": [ + "grass" + ], + "count": 1 + }, + { + "answers": [ + "土" + ], + "en_answers": [ + "earth/soil" + ], + "count": 1 + }, + { + "answers": [ + "砖头" + ], + "en_answers": [ + "brick" + ], + "count": 1 + }, + { + "answers": [ + "菜缸" + ], + "en_answers": [ + "vegetable jar" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-49": { + "question": "中国最有名的家族的名字?", + "en_question": "What is the name of the most famous family in your country?", + "annotations": [ + { + "answers": [ + "李嘉诚" + ], + "en_answers": [ + "li ka-shing" + ], + "count": 2 + }, + { + "answers": [ + "何鸿燊" + ], + "en_answers": [ + "stanley ho" + ], + "count": 1 + }, + { + "answers": [ + "爱新觉罗" + ], + "en_answers": [ + "aisin gioro" + ], + "count": 1 + }, + { + "answers": [ + "红三代" + ], + "en_answers": [ + "red third generation" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-50": { + "question": "中国最常见的姓氏是什么?", + "en_question": "What is the most common family name in your country?", + "annotations": [ + { + "answers": [ + "李" + ], + "en_answers": [ + "li" + ], + "count": 4 + }, + { + "answers": [ + "王" + ], + "en_answers": [ + "wang" + ], + "count": 3 + }, + { + "answers": [ + "陈" + ], + "en_answers": [ + "chen" + ], + "count": 1 + }, + { + "answers": [ + "张" + ], + "en_answers": [ + "zhang" + ], + "count": 1 + }, + { + "answers": [ + "赵" + ], + "en_answers": [ + "zhao" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-55": { + "question": "在中国的家庭中,最常见的宗教信仰是什么?", + "en_question": "Which religion is most commonly practiced by families in your country?", + "annotations": [ + { + "answers": [ + "佛教" + ], + "en_answers": [ + "buddhism" + ], + "count": 4 + }, + { + "answers": [ + "无信仰" + ], + "en_answers": [ + "no religion" + ], + "count": 2 + }, + { + "answers": [ + "道教" + ], + "en_answers": [ + "taoism" + ], + "count": 1 + }, + { + "answers": [ + "基督教" + ], + "en_answers": [ + "christianity" + ], + "count": 1 + }, + { + "answers": [ + "伊斯兰" + ], + "en_answers": [ + "islam" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-56": { + "question": "在中国家庭中最受欢迎的外语是什么?", + "en_question": "What is the most popular foreign language spoken by families in your country?", + "annotations": [ + { + "answers": [ + "英语" + ], + "en_answers": [ + "english" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-59": { + "question": "对于中国家庭来说,哪个国家是最热门的移民目的地?", + "en_question": "Which country is the most popular destination for families from your country to emigrate to?", + "annotations": [ + { + "answers": [ + "加拿大" + ], + "en_answers": [ + "canada" + ], + "count": 4 + }, + { + "answers": [ + "美国" + ], + "en_answers": [ + "united states" + ], + "count": 4 + }, + { + "answers": [ + "澳大利亚" + ], + "en_answers": [ + "australia" + ], + "count": 3 + }, + { + "answers": [ + "英国" + ], + "en_answers": [ + "united kingdom" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-68": { + "question": "在中国的学校里,不良行为会有什么后果?", + "en_question": "What repercussions are there for bad behavior in schools in your country?", + "annotations": [ + { + "answers": [ + "传唤家长", + "叫家长" + ], + "en_answers": [ + "summon parents", + "call parents" + ], + "count": 2 + }, + { + "answers": [ + "写检查", + "写检讨" + ], + "en_answers": [ + "write a self-criticism" + ], + "count": 2 + }, + { + "answers": [ + "退学", + "开除学籍" + ], + "en_answers": [ + "drop out", + "expulsion from school" + ], + "count": 2 + }, + { + "answers": [ + "留校教育" + ], + "en_answers": [ + "boarding school education" + ], + "count": 1 + }, + { + "answers": [ + "记过处分" + ], + "en_answers": [ + "disciplinary notation" + ], + "count": 1 + }, + { + "answers": [ + "体罚" + ], + "en_answers": [ + "corporal punishment" + ], + "count": 1 + }, + { + "answers": [ + "处分" + ], + "en_answers": [ + "punishment" + ], + "count": 1 + }, + { + "answers": [ + "警告" + ], + "en_answers": [ + "warning" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-69": { + "question": "在中国的语文课上通常会学习哪些作家的文章?", + "en_question": "Which writers are commonly studied in literature class in your country?", + "annotations": [ + { + "answers": [ + "鲁迅" + ], + "en_answers": [ + "lu xun" + ], + "count": 4 + }, + { + "answers": [ + "老舍" + ], + "en_answers": [ + "lao she" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-70": { + "question": "中国的高中一年有几次假期?(只提供阿拉伯数字(例如,1)。)", + "en_question": "How many school breaks are there in a year for high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-72": { + "question": "在中国,学生通常使用哪些在线资源来学习?", + "en_question": "Which online resource do students usually use to study in your country?", + "annotations": [ + { + "answers": [ + "bilibili.com", + "bilibili网课" + ], + "en_answers": [ + "bilibili", + "bilibili online course" + ], + "count": 2 + }, + { + "answers": [ + "猿辅导" + ], + "en_answers": [ + "yuanfudao" + ], + "count": 1 + }, + { + "answers": [ + "mooc" + ], + "en_answers": [ + "massive open online course" + ], + "count": 1 + }, + { + "answers": [ + "百度" + ], + "en_answers": [ + "baidu" + ], + "count": 1 + }, + { + "answers": [ + "知网" + ], + "en_answers": [ + "cnki (china national knowledge infrastructure)" + ], + "count": 1 + }, + { + "answers": [ + "网易公开课" + ], + "en_answers": [ + "netease open courses" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-75": { + "question": "中国大学的学期平均教学周数是多少?(只提供阿拉伯数字(例如,1)。)", + "en_question": "What is the average length of a semester in terms of weeks of teaching at universities in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "16", + "16?" + ], + "en_answers": [ + "16" + ], + "count": 2 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 1 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + }, + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-76": { + "question": "在节假日期间,中国哪个机场是最繁忙的?", + "en_question": "Which airport in your country is the busiest during the holiday season?", + "annotations": [ + { + "answers": [ + "北京首都机场", + "首都机场", + "北京首都国际机场" + ], + "en_answers": [ + "beijing capital airport", + "capital airport" + ], + "count": 2 + }, + { + "answers": [ + "上海浦东国际机场", + "上海浦东", + "上海浦东机场" + ], + "en_answers": [ + "shanghai pudong international airport", + "shanghai pudong" + ], + "count": 2 + }, + { + "answers": [ + "北京大兴", + "北京大兴机场" + ], + "en_answers": [ + "beijing daxing" + ], + "count": 1 + }, + { + "answers": [ + "虹桥机场", + "上海虹桥机场", + "上海虹桥" + ], + "en_answers": [ + "hongqiao airport" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-79": { + "question": "中国的哪个地区以其戏剧表演而闻名?", + "en_question": "Which region of your country is well known for its theatrical performances?", + "annotations": [ + { + "answers": [ + "北京" + ], + "en_answers": [ + "beijing" + ], + "count": 2 + }, + { + "answers": [ + "河南" + ], + "en_answers": [ + "henan" + ], + "count": 1 + }, + { + "answers": [ + "安徽" + ], + "en_answers": [ + "anhui" + ], + "count": 1 + }, + { + "answers": [ + "京剧" + ], + "en_answers": [ + "peking opera" + ], + "count": 1 + }, + { + "answers": [ + "川剧" + ], + "en_answers": [ + "sichuan opera" + ], + "count": 1 + }, + { + "answers": [ + "湖北黄梅" + ], + "en_answers": [ + "hubei huangmei" + ], + "count": 1 + }, + { + "answers": [ + "四川" + ], + "en_answers": [ + "sichuan" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-87": { + "question": "中国最著名的历史地标是什么?", + "en_question": "What is the most famous historic landmark in your country?", + "annotations": [ + { + "answers": [ + "长城" + ], + "en_answers": [ + "great wall" + ], + "count": 2 + }, + { + "answers": [ + "故宫" + ], + "en_answers": [ + "forbidden city" + ], + "count": 2 + }, + { + "answers": [ + "兵马俑" + ], + "en_answers": [ + "terracotta warriors" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-90": { + "question": "中国最著名的酒店品牌是什么?", + "en_question": "What is the most famous hotel brand in your country?", + "annotations": [ + { + "answers": [ + "如家" + ], + "en_answers": [ + "home inn" + ], + "count": 2 + }, + { + "answers": [ + "希尔顿" + ], + "en_answers": [ + "hilton" + ], + "count": 2 + }, + { + "answers": [ + "喜来登" + ], + "en_answers": [ + "sheraton" + ], + "count": 1 + }, + { + "answers": [ + "首旅如家" + ], + "en_answers": [ + "btg homeinn" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-05": { + "question": "在中国,最受欢迎的快餐早餐是什么?", + "en_question": "What is the most popular grab-and-go breakfast option in your country?", + "annotations": [ + { + "answers": [ + "豆浆", + "豆浆油条", + "豆浆油条肠粉" + ], + "en_answers": [ + "soy milk" + ], + "count": 3 + }, + { + "answers": [ + "油条", + "豆浆油条", + "豆浆油条肠粉" + ], + "en_answers": [ + "fried dough sticks" + ], + "count": 3 + }, + { + "answers": [ + "包子" + ], + "en_answers": [ + "steamed bun" + ], + "count": 2 + }, + { + "answers": [ + "肠粉", + "豆浆油条肠粉" + ], + "en_answers": [ + "rice noodle roll" + ], + "count": 1 + }, + { + "answers": [ + "面包", + "面包牛奶" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "牛奶", + "面包牛奶" + ], + "en_answers": [ + "milk" + ], + "count": 1 + }, + { + "answers": [ + "kfc", + "肯德基" + ], + "en_answers": [ + "kentucky fried chicken", + "kfc" + ], + "count": 1 + }, + { + "answers": [ + "麦当劳" + ], + "en_answers": [ + "mcdonald's" + ], + "count": 1 + }, + { + "answers": [ + "糍饭团" + ], + "en_answers": [ + "glutinous rice ball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-06": { + "question": "在中国年轻人中最受欢迎的食物是什么?", + "en_question": "What is the most popular food in your country among young people?", + "annotations": [ + { + "answers": [ + "火锅" + ], + "en_answers": [ + "hot pot" + ], + "count": 4 + }, + { + "answers": [ + "螺狮粉" + ], + "en_answers": [ + "luosifen" + ], + "count": 1 + }, + { + "answers": [ + "奶茶" + ], + "en_answers": [ + "milk tea" + ], + "count": 1 + }, + { + "answers": [ + "快餐" + ], + "en_answers": [ + "fast food" + ], + "count": 1 + }, + { + "answers": [ + "肯德基", + "如肯德基麦当劳" + ], + "en_answers": [ + "kfc", + "kentucky fried chicken" + ], + "count": 1 + }, + { + "answers": [ + "麦当劳", + "如肯德基麦当劳" + ], + "en_answers": [ + "mcdonald's" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-08": { + "question": "在中国的节日里,最常见的酒精饮品是什么类型的?", + "en_question": "What type of alcoholic drink is most commonly consumed at festivals in your country?", + "annotations": [ + { + "answers": [ + "白酒" + ], + "en_answers": [ + "chinese spirits", + "white liquor", + "bai" + ], + "count": 5 + }, + { + "answers": [ + "啤酒" + ], + "en_answers": [ + "beer" + ], + "count": 3 + }, + { + "answers": [ + "黄酒" + ], + "en_answers": [ + "yellow wine" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-13": { + "question": "中国最常见的早晨饮料是什么?", + "en_question": "What is the most common morning drink in your country?", + "annotations": [ + { + "answers": [ + "豆浆" + ], + "en_answers": [ + "soy milk" + ], + "count": 5 + }, + { + "answers": [ + "奶", + "牛奶" + ], + "en_answers": [ + "milk" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-15": { + "question": "中国最受欢迎的传统甜点是什么?", + "en_question": "What is the most popular traditional dessert in your country?", + "annotations": [ + { + "answers": [ + "月饼" + ], + "en_answers": [ + "mooncake" + ], + "count": 1 + }, + { + "answers": [ + "桂花糕" + ], + "en_answers": [ + "osmanthus cake" + ], + "count": 1 + }, + { + "answers": [ + "稻香村" + ], + "en_answers": [ + "daoxiangcun" + ], + "count": 1 + }, + { + "answers": [ + "红豆包子" + ], + "en_answers": [ + "red bean bun" + ], + "count": 1 + }, + { + "answers": [ + "刨冰" + ], + "en_answers": [ + "shaved ice" + ], + "count": 1 + }, + { + "answers": [ + "汤圆" + ], + "en_answers": [ + "glutinous rice balls", + "tangyuan" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-gr-21": { + "question": "在中国最受欢迎的球拍运动是什么?", + "en_question": "What is the most popular racket sport in your country?", + "annotations": [ + { + "answers": [ + "乒乓球", + "乒乓" + ], + "en_answers": [ + "table tennis", + "ping pong" + ], + "count": 3 + }, + { + "answers": [ + "羽毛球" + ], + "en_answers": [ + "badminton" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-24": { + "question": "在中国最受欢迎的田径运动是什么?", + "en_question": "What is the most popular track and field sport in your country?", + "annotations": [ + { + "answers": [ + "跨栏" + ], + "en_answers": [ + "hurdling" + ], + "count": 2 + }, + { + "answers": [ + "跑步" + ], + "en_answers": [ + "running" + ], + "count": 1 + }, + { + "answers": [ + "跳高" + ], + "en_answers": [ + "high jump" + ], + "count": 1 + }, + { + "answers": [ + "110米栏" + ], + "en_answers": [ + "110m hurdles" + ], + "count": 1 + }, + { + "answers": [ + "100米跨栏" + ], + "en_answers": [ + "100m hurdles" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-29": { + "question": "在中国最受欢迎的国际体育赛事是哪一个?", + "en_question": "Which international sporting event is the most popular in your country?", + "annotations": [ + { + "answers": [ + "奥运会" + ], + "en_answers": [ + "olympic games" + ], + "count": 2 + }, + { + "answers": [ + "中国网球公开赛" + ], + "en_answers": [ + "china open tennis" + ], + "count": 1 + }, + { + "answers": [ + "世界杯" + ], + "en_answers": [ + "world cup" + ], + "count": 1 + }, + { + "answers": [ + "nba" + ], + "en_answers": [ + "national basketball association", + "nba" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-47": { + "question": "在中国,除了午餐和晚餐休息时间外,典型的工作休息时间(以分钟为单位)通常有多长?(只提供阿拉伯数字(例如,1)。)", + "en_question": "How long (in minutes) are typical work breaks in your country, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "60", + "1小时" + ], + "en_answers": [ + "60" + ], + "count": 2 + }, + { + "answers": [ + "120", + "2小时" + ], + "en_answers": [ + "120" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 1 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-gr-58": { + "question": "在中国,哪些工作被认为薪酬偏低?", + "en_question": "Which job is considered underpaid in your country?", + "annotations": [ + { + "answers": [ + "清洁工" + ], + "en_answers": [ + "cleaner" + ], + "count": 1 + }, + { + "answers": [ + "老师" + ], + "en_answers": [ + "teacher" + ], + "count": 1 + }, + { + "answers": [ + "农民" + ], + "en_answers": [ + "farmer" + ], + "count": 1 + }, + { + "answers": [ + "体力劳动类的工作" + ], + "en_answers": [ + "physical labor jobs" + ], + "count": 1 + }, + { + "answers": [ + "售货员" + ], + "en_answers": [ + "salesperson" + ], + "count": 1 + }, + { + "answers": [ + "建筑工人" + ], + "en_answers": [ + "construction worker" + ], + "count": 1 + }, + { + "answers": [ + "临时工" + ], + "en_answers": [ + "temporary worker" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-76": { + "question": "在中国, 复活节期间最常见的食物是什么?", + "en_question": "What is the most common food served during Easter in your country?", + "annotations": [ + { + "answers": [ + "苹果" + ], + "en_answers": [ + "apple" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 0 + } + }, + "New-gr-82": { + "question": "在中国,老年人群中最受欢迎的音乐类型是什么?", + "en_question": "What is the most popular music genre among the elderly population in your country?", + "annotations": [ + { + "answers": [ + "民族歌曲", + "民歌" + ], + "en_answers": [ + "folk song" + ], + "count": 2 + }, + { + "answers": [ + "口水歌", + "流行歌曲" + ], + "en_answers": [ + "pop song", + "pop songs" + ], + "count": 2 + }, + { + "answers": [ + "凤凰传奇的歌" + ], + "en_answers": [ + "phoenix legend's song" + ], + "count": 1 + }, + { + "answers": [ + "广场舞的曲子" + ], + "en_answers": [ + "square dance tune" + ], + "count": 1 + }, + { + "answers": [ + "舒缓放松的经典音乐" + ], + "en_answers": [ + "soothing and relaxing classical music" + ], + "count": 1 + }, + { + "answers": [ + "戏曲" + ], + "en_answers": [ + "chinese opera" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-88": { + "question": "在中国的葬礼上通常会提供什么饮品?", + "en_question": "What drink is usually offered at funerals in your country?", + "annotations": [ + { + "answers": [ + "白酒" + ], + "en_answers": [ + "chinese spirits", + "white liquor", + "bai" + ], + "count": 2 + }, + { + "answers": [ + "茶" + ], + "en_answers": [ + "tea" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-gr-89": { + "question": "在中国的婚礼上通常会提供什么饮品?", + "en_question": "What drink is usually offered at weddings in your country?", + "annotations": [ + { + "answers": [ + "白酒" + ], + "en_answers": [ + "chinese spirits", + "white liquor", + "bai" + ], + "count": 3 + }, + { + "answers": [ + "酒" + ], + "en_answers": [ + "alcohol" + ], + "count": 1 + }, + { + "answers": [ + "可乐" + ], + "en_answers": [ + "cola" + ], + "count": 1 + }, + { + "answers": [ + "橙汁" + ], + "en_answers": [ + "orange juice" + ], + "count": 1 + }, + { + "answers": [ + "茶" + ], + "en_answers": [ + "tea" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-07": { + "question": "哪种食物起源于中国并且可以在世界各地找到?", + "en_question": "What food originated from your country and can be found all over the world?", + "annotations": [ + { + "answers": [ + "饺子" + ], + "en_answers": [ + "dumplings" + ], + "count": 4 + }, + { + "answers": [ + "包子" + ], + "en_answers": [ + "steamed bun" + ], + "count": 1 + }, + { + "answers": [ + "面条" + ], + "en_answers": [ + "noodles" + ], + "count": 1 + }, + { + "answers": [ + "酸甜鸡" + ], + "en_answers": [ + "sweet and sour chicken" + ], + "count": 1 + }, + { + "answers": [ + "老干妈辣椒酱" + ], + "en_answers": [ + "lao gan ma chili sauce" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-08": { + "question": "在中国,通常有哪些食物是孩子们不喜欢但老年人却喜欢的?", + "en_question": "What food is typically disliked by children but enjoyed by the elderly in your country?", + "annotations": [ + { + "answers": [ + "八宝粥" + ], + "en_answers": [ + "eight-treasure porridge" + ], + "count": 1 + }, + { + "answers": [ + "汤拌饭" + ], + "en_answers": [ + "soup mixed with rice" + ], + "count": 1 + }, + { + "answers": [ + "苦瓜" + ], + "en_answers": [ + "bitter melon" + ], + "count": 1 + }, + { + "answers": [ + "胡萝卜" + ], + "en_answers": [ + "carrot" + ], + "count": 1 + }, + { + "answers": [ + "秋葵" + ], + "en_answers": [ + "okra" + ], + "count": 1 + }, + { + "answers": [ + "蔬菜" + ], + "en_answers": [ + "vegetables", + "vegetable" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ha-09": { + "question": "在中国最常用的烹饪工具是什么?", + "en_question": "What cooking utensil is most commonly used in your country?", + "annotations": [ + { + "answers": [ + "炒锅" + ], + "en_answers": [ + "wok" + ], + "count": 3 + }, + { + "answers": [ + "电饭锅" + ], + "en_answers": [ + "rice cooker" + ], + "count": 2 + }, + { + "answers": [ + "锅" + ], + "en_answers": [ + "pot" + ], + "count": 1 + }, + { + "answers": [ + "铁锅" + ], + "en_answers": [ + "iron pot" + ], + "count": 1 + }, + { + "answers": [ + "蒸锅" + ], + "en_answers": [ + "steamer" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-13": { + "question": "在中国最受欢迎的蔬菜是哪种?", + "en_question": "Which is the most popular vegetable in your country?", + "annotations": [ + { + "answers": [ + "白菜" + ], + "en_answers": [ + "chinese cabbage" + ], + "count": 2 + }, + { + "answers": [ + "青菜" + ], + "en_answers": [ + "green vegetables" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ha-19": { + "question": "在中国,哪种动物被用于体育运动?", + "en_question": "Which animal is used for sports in your country?", + "annotations": [ + { + "answers": [ + "马" + ], + "en_answers": [ + "horse" + ], + "count": 2 + }, + { + "answers": [ + "牛" + ], + "en_answers": [ + "cow" + ], + "count": 1 + }, + { + "answers": [ + "哺乳动物" + ], + "en_answers": [ + "mammal" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-ha-66": { + "question": "在中国最受欢迎的婚礼场地是哪里?", + "en_question": "What is the most popular wedding venue in your country?", + "annotations": [ + { + "answers": [ + "酒店" + ], + "en_answers": [ + "hotel" + ], + "count": 5 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-01": { + "question": "在中国,哪个咖啡店品牌最受欢迎?", + "en_question": "Which coffee shop brand is the most popular in your country?", + "annotations": [ + { + "answers": [ + "瑞幸" + ], + "en_answers": [ + "luckin coffee" + ], + "count": 3 + }, + { + "answers": [ + "星巴克" + ], + "en_answers": [ + "starbucks" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-03": { + "question": "通常在海外餐厅里供应的中国食物有哪些类型?", + "en_question": "What type of food from your country is typically served in restaurants overseas?", + "annotations": [ + { + "answers": [ + "炒面" + ], + "en_answers": [ + "fried noodles", + "chow mein" + ], + "count": 2 + }, + { + "answers": [ + "饺子", + "水饺" + ], + "en_answers": [ + "dumplings" + ], + "count": 2 + }, + { + "answers": [ + "蛋炒饭" + ], + "en_answers": [ + "egg fried rice" + ], + "count": 1 + }, + { + "answers": [ + "麻婆豆腐" + ], + "en_answers": [ + "mapo tofu" + ], + "count": 1 + }, + { + "answers": [ + "包子" + ], + "en_answers": [ + "steamed bun" + ], + "count": 1 + }, + { + "answers": [ + "炒饭" + ], + "en_answers": [ + "fried rice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-33": { + "question": "在中国,通常与采矿业相关联的是哪个地区?", + "en_question": "What region in your country is usually associated with mining?", + "annotations": [ + { + "answers": [ + "山西" + ], + "en_answers": [ + "shanxi" + ], + "count": 3 + }, + { + "answers": [ + "辽宁" + ], + "en_answers": [ + "liaoning" + ], + "count": 1 + }, + { + "answers": [ + "攀枝花" + ], + "en_answers": [ + "panzhihua" + ], + "count": 1 + }, + { + "answers": [ + "内蒙古" + ], + "en_answers": [ + "inner mongolia" + ], + "count": 1 + }, + { + "answers": [ + "西部" + ], + "en_answers": [ + "western" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-34": { + "question": "在中国,通常与石油相关联的是哪个地区?", + "en_question": "What region in your country is usually associated with oil?", + "annotations": [ + { + "answers": [ + "大庆" + ], + "en_answers": [ + "daqing" + ], + "count": 3 + }, + { + "answers": [ + "辽宁" + ], + "en_answers": [ + "liaoning" + ], + "count": 1 + }, + { + "answers": [ + "新疆" + ], + "en_answers": [ + "xinjiang" + ], + "count": 1 + }, + { + "answers": [ + "东北" + ], + "en_answers": [ + "northeast" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-62": { + "question": "哪所中国大学因其工程专业而受欢迎?(请提供官方名称。)", + "en_question": "What university in your country is popular because of its engineering major? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "清华大学" + ], + "en_answers": [ + "tsinghua university" + ], + "count": 4 + }, + { + "answers": [ + "哈尔滨工业大学" + ], + "en_answers": [ + "harbin institute of technology" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-63": { + "question": "哪所中国大学因其医学院而受欢迎?(请提供官方名称。)", + "en_question": "What university in your country is popular because of its school of medicine? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "四川大学" + ], + "en_answers": [ + "sichuan university" + ], + "count": 1 + }, + { + "answers": [ + "北京大学" + ], + "en_answers": [ + "peking university" + ], + "count": 1 + }, + { + "answers": [ + "北京大学医学部" + ], + "en_answers": [ + "peking university health science center" + ], + "count": 1 + }, + { + "answers": [ + "中南大学" + ], + "en_answers": [ + "central south university" + ], + "count": 1 + }, + { + "answers": [ + "北京协和医学院" + ], + "en_answers": [ + "peking union medical college" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-78": { + "question": "在中国最流行的支付方式是什么?", + "en_question": "What is the most popular payment method in your country?", + "annotations": [ + { + "answers": [ + "支付宝", + "阿里支付" + ], + "en_answers": [ + "alipay" + ], + "count": 5 + }, + { + "answers": [ + "微信支付" + ], + "en_answers": [ + "wechat pay" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-80": { + "question": "中国最著名的主题公园是哪个?", + "en_question": "What is the most famous theme park in your country?", + "annotations": [ + { + "answers": [ + "迪士尼世界" + ], + "en_answers": [ + "disney world" + ], + "count": 1 + }, + { + "answers": [ + "海洋公园" + ], + "en_answers": [ + "ocean park" + ], + "count": 1 + }, + { + "answers": [ + "上海迪斯尼公园" + ], + "en_answers": [ + "shanghai disney resort" + ], + "count": 1 + }, + { + "answers": [ + "香港海洋公园" + ], + "en_answers": [ + "hong kong ocean park" + ], + "count": 1 + }, + { + "answers": [ + "北京欢乐谷" + ], + "en_answers": [ + "beijing happy valley" + ], + "count": 1 + }, + { + "answers": [ + "环球影城" + ], + "en_answers": [ + "universal studios" + ], + "count": 1 + }, + { + "answers": [ + "人民广场" + ], + "en_answers": [ + "people's square" + ], + "count": 1 + }, + { + "answers": [ + "中山公园" + ], + "en_answers": [ + "zhongshan park" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-01": { + "question": "在中国,孩子们最常看的最受欢迎的儿童动画是什么?", + "en_question": "What is the most popular children's animation that is commonly watched by kids in your country?", + "annotations": [ + { + "answers": [ + "喜羊羊", + "喜羊羊与灰太狼" + ], + "en_answers": [ + "pleasant goat and big big wolf" + ], + "count": 4 + }, + { + "answers": [ + "海尔兄弟" + ], + "en_answers": [ + "haier brothers" + ], + "count": 1 + }, + { + "answers": [ + "熊出没" + ], + "en_answers": [ + "bears appearing" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-02": { + "question": "在中国,孕妇最流行的胎教活动是什么?", + "en_question": "What is the most popular prenatal education activity for pregnant women in your country?", + "annotations": [ + { + "answers": [ + "听音乐", + "听歌曲", + "音乐", + "听歌" + ], + "en_answers": [ + "listen to music", + "listen to songs", + "music" + ], + "count": 5 + }, + { + "answers": [ + "讲故事", + "听故事" + ], + "en_answers": [ + "tell a story", + "listen to stories" + ], + "count": 2 + }, + { + "answers": [ + "孕期瑜伽" + ], + "en_answers": [ + "prenatal yoga" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-03": { + "question": "在中国的家庭中,大家一起唱的最流行的儿童歌曲是什么?", + "en_question": "What is the most popular children's song in your country that families sing together?", + "annotations": [ + { + "answers": [ + "小老虎" + ], + "en_answers": [ + "little tiger" + ], + "count": 1 + }, + { + "answers": [ + "找朋友" + ], + "en_answers": [ + "seeking friends" + ], + "count": 1 + }, + { + "answers": [ + "一闪一闪亮晶晶" + ], + "en_answers": [ + "twinkle twinkle little star" + ], + "count": 1 + }, + { + "answers": [ + "生日快乐歌" + ], + "en_answers": [ + "happy birthday song" + ], + "count": 1 + }, + { + "answers": [ + "小毛驴" + ], + "en_answers": [ + "little donkey" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ko-04": { + "question": "在中国,哪些玩具在男孩中最受欢迎?", + "en_question": "Which toys are most popular among boys in your country?", + "annotations": [ + { + "answers": [ + "乐高" + ], + "en_answers": [ + "lego" + ], + "count": 2 + }, + { + "answers": [ + "玩具汽车", + "小汽车", + "玩具小汽车" + ], + "en_answers": [ + "toy car" + ], + "count": 2 + }, + { + "answers": [ + "汽车模型" + ], + "en_answers": [ + "car model" + ], + "count": 1 + }, + { + "answers": [ + "奥特曼" + ], + "en_answers": [ + "ultraman" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-05": { + "question": "在中国,哪些玩具最受女孩们的欢迎?", + "en_question": "Which toys are most popular among girls in your country?", + "annotations": [ + { + "answers": [ + "玩偶", + "洋娃娃" + ], + "en_answers": [ + "doll" + ], + "count": 2 + }, + { + "answers": [ + "模拟厨房玩具" + ], + "en_answers": [ + "pretend kitchen toy" + ], + "count": 1 + }, + { + "answers": [ + "毛绒玩具" + ], + "en_answers": [ + "plush toy" + ], + "count": 1 + }, + { + "answers": [ + "芭比娃娃" + ], + "en_answers": [ + "barbie doll" + ], + "count": 1 + }, + { + "answers": [ + "玩具熊" + ], + "en_answers": [ + "teddy bear" + ], + "count": 1 + }, + { + "answers": [ + "玩具狗" + ], + "en_answers": [ + "toy dog" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-06": { + "question": "在中国,通常讲给孩子们听的最流行的民间故事是什么?", + "en_question": "What is the most popular folk tale in your country that is typically told to children?", + "annotations": [ + { + "answers": [ + "西游记" + ], + "en_answers": [ + "journey to the west" + ], + "count": 1 + }, + { + "answers": [ + "牛郎织女" + ], + "en_answers": [ + "the cowherd and the weaver girl" + ], + "count": 1 + }, + { + "answers": [ + "梁祝" + ], + "en_answers": [ + "butterfly lovers" + ], + "count": 1 + }, + { + "answers": [ + "狼来了" + ], + "en_answers": [ + "the boy who cried wolf" + ], + "count": 1 + }, + { + "answers": [ + "嫦娥奔月" + ], + "en_answers": [ + "chang'e flying to the moon" + ], + "count": 1 + }, + { + "answers": [ + "孔融让梨" + ], + "en_answers": [ + "kong rong giving up pears" + ], + "count": 1 + }, + { + "answers": [ + "女娲补天" + ], + "en_answers": [ + "nüwa mends the heavens" + ], + "count": 1 + }, + { + "answers": [ + "司马光砸缸" + ], + "en_answers": [ + "sima guang smashes the vat" + ], + "count": 1 + }, + { + "answers": [ + "安徒生童话" + ], + "en_answers": [ + "andersen's fairy tales" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-07": { + "question": "在中国的葬礼上通常使用什么样的哀悼象征物?", + "en_question": "What is the customary symbol of condolence used at funerals in your country?", + "annotations": [ + { + "answers": [ + "菊花" + ], + "en_answers": [ + "chrysanthemum" + ], + "count": 3 + }, + { + "answers": [ + "花圈" + ], + "en_answers": [ + "flower wreath" + ], + "count": 2 + }, + { + "answers": [ + "猪肉" + ], + "en_answers": [ + "pork" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-08": { + "question": "在中国,大学生最倾向于在哪里做兼职工作?", + "en_question": "Where do university students in your country tend to work part-time the most?", + "annotations": [ + { + "answers": [ + "餐厅" + ], + "en_answers": [ + "restaurant" + ], + "count": 2 + }, + { + "answers": [ + "线上平台" + ], + "en_answers": [ + "online platform" + ], + "count": 1 + }, + { + "answers": [ + "校内" + ], + "en_answers": [ + "on campus" + ], + "count": 1 + }, + { + "answers": [ + "辅导机构" + ], + "en_answers": [ + "tutoring institution" + ], + "count": 1 + }, + { + "answers": [ + "咖啡厅" + ], + "en_answers": [ + "cafe" + ], + "count": 1 + }, + { + "answers": [ + "抖音" + ], + "en_answers": [ + "tiktok" + ], + "count": 1 + }, + { + "answers": [ + "便利店", + "超市" + ], + "en_answers": [ + "convenience store", + "supermarket" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-09": { + "question": "在中国的公司中,最常进行的团队建设活动有哪些?", + "en_question": "What are the most frequently practiced team-building activities in companies based in your country?", + "annotations": [ + { + "answers": [ + "聚餐", + "吃饭聚餐" + ], + "en_answers": [ + "gathering meal", + "eating together" + ], + "count": 3 + }, + { + "answers": [ + "旅游" + ], + "en_answers": [ + "tourism" + ], + "count": 2 + }, + { + "answers": [ + "ktv" + ], + "en_answers": [ + "karaoke" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-10": { + "question": "在中国,人们最常见的兼职活动有哪些?", + "en_question": "What are the most common activities people do as a side job in your country?", + "annotations": [ + { + "answers": [ + "服务员" + ], + "en_answers": [ + "waiter/waitress" + ], + "count": 2 + }, + { + "answers": [ + "滴滴", + "滴滴司机", + "跑滴滴" + ], + "en_answers": [ + "didi (chinese ride-hailing company)" + ], + "count": 1 + }, + { + "answers": [ + "发传单" + ], + "en_answers": [ + "distribute flyers" + ], + "count": 1 + }, + { + "answers": [ + "打杂" + ], + "en_answers": [ + "do odd jobs" + ], + "count": 1 + }, + { + "answers": [ + "外卖员" + ], + "en_answers": [ + "delivery person" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-02": { + "question": "在中国,最有名的可食用旅游纪念品是什么?", + "en_question": "What is the most famous edible souvenir for tourists in your country?", + "annotations": [ + { + "answers": [ + "北京烤鸭" + ], + "en_answers": [ + "peking duck" + ], + "count": 2 + }, + { + "answers": [ + "月饼" + ], + "en_answers": [ + "mooncake" + ], + "count": 2 + }, + { + "answers": [ + "凤梨酥" + ], + "en_answers": [ + "pineapple cake" + ], + "count": 1 + }, + { + "answers": [ + "绿豆糕" + ], + "en_answers": [ + "green bean cake" + ], + "count": 1 + }, + { + "answers": [ + "冰糖葫芦" + ], + "en_answers": [ + "candied hawthorn stick" + ], + "count": 1 + }, + { + "answers": [ + "小笼包" + ], + "en_answers": [ + "xiaolongbao" + ], + "count": 1 + }, + { + "answers": [ + "兰州拉面" + ], + "en_answers": [ + "lanzhou hand-pulled noodles" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-06": { + "question": "中国最受欢迎的炖菜是什么?", + "en_question": "What is the most popular stew in your country?", + "annotations": [ + { + "answers": [ + "猪肉炖粉条" + ], + "en_answers": [ + "pork stew with glass noodles" + ], + "count": 2 + }, + { + "answers": [ + "炖排骨" + ], + "en_answers": [ + "braised spare ribs" + ], + "count": 1 + }, + { + "answers": [ + "炖猪蹄" + ], + "en_answers": [ + "braised pig's trotters" + ], + "count": 1 + }, + { + "answers": [ + "白菜炖猪肉" + ], + "en_answers": [ + "cabbage stewed with pork" + ], + "count": 1 + }, + { + "answers": [ + "炖鸡" + ], + "en_answers": [ + "stewed chicken" + ], + "count": 1 + }, + { + "answers": [ + "红烧肉" + ], + "en_answers": [ + "braised pork" + ], + "count": 1 + }, + { + "answers": [ + "土豆烧肉" + ], + "en_answers": [ + "potato with braised pork" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-11": { + "question": "在中餐里最常用的香料/草药是什么?", + "en_question": "What is the most common spice/herb used in dishes from your country?", + "annotations": [ + { + "answers": [ + "孜然" + ], + "en_answers": [ + "cumin" + ], + "count": 2 + }, + { + "answers": [ + "八角" + ], + "en_answers": [ + "star anise" + ], + "count": 2 + }, + { + "answers": [ + "香菜" + ], + "en_answers": [ + "cilantro" + ], + "count": 1 + }, + { + "answers": [ + "十三香" + ], + "en_answers": [ + "thirteen spices" + ], + "count": 1 + }, + { + "answers": [ + "五香粉" + ], + "en_answers": [ + "five-spice powder" + ], + "count": 1 + }, + { + "answers": [ + "桂皮" + ], + "en_answers": [ + "cinnamon" + ], + "count": 1 + }, + { + "answers": [ + "香叶" + ], + "en_answers": [ + "bay leaf" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-16": { + "question": "中国最有名的传统体育项目是什么?", + "en_question": "What is the most famous traditional sport in your country?", + "annotations": [ + { + "answers": [ + "乒乓球", + "乒乓" + ], + "en_answers": [ + "table tennis", + "ping pong" + ], + "count": 4 + }, + { + "answers": [ + "蹴鞠" + ], + "en_answers": [ + "cuju" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-20": { + "question": "在中国的海滩上,什么运动比较受欢迎?", + "en_question": "What sport is popular to play on the beach in your country?", + "annotations": [ + { + "answers": [ + "冲浪" + ], + "en_answers": [ + "surfing" + ], + "count": 2 + }, + { + "answers": [ + "游泳" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + }, + { + "answers": [ + "排球" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "堆沙堡" + ], + "en_answers": [ + "building sandcastles" + ], + "count": 1 + }, + { + "answers": [ + "沙滩排球" + ], + "en_answers": [ + "beach volleyball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-45": { + "question": "在中国,斋月期间通常的工作时间安排是怎样的?", + "en_question": "What is the usual work schedule during the month of Ramadan in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 3, + "no-answer": 0 + } + }, + "New-pe-47": { + "question": "中国的学生节是哪天庆祝的?(请以MM/DD格式提供,例如:12/31。)", + "en_question": "When is Student's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "05/04" + ], + "en_answers": [ + "05/04" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "not-applicable": 3, + "no-answer": 1 + } + }, + "New-pe-49": { + "question": "在中国,家人们通常在哪里聚集一起祈祷?", + "en_question": "Where do families gather to pray together in your country?", + "annotations": [ + { + "answers": [ + "寺庙" + ], + "en_answers": [ + "temple" + ], + "count": 2 + }, + { + "answers": [ + "家里" + ], + "en_answers": [ + "home" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "New-pe-53": { + "question": "在中国,父亲节(或者父母节)父亲们通常会收到什么礼物?", + "en_question": "What gifts do fathers get on Father's Day (or Parents' Day) in your country?", + "annotations": [ + { + "answers": [ + "刮胡刀" + ], + "en_answers": [ + "razor" + ], + "count": 1 + }, + { + "answers": [ + "钱包" + ], + "en_answers": [ + "wallet" + ], + "count": 1 + }, + { + "answers": [ + "手串" + ], + "en_answers": [ + "bracelet" + ], + "count": 1 + }, + { + "answers": [ + "花" + ], + "en_answers": [ + "flower" + ], + "count": 1 + }, + { + "answers": [ + "手表" + ], + "en_answers": [ + "watch" + ], + "count": 1 + }, + { + "answers": [ + "手机" + ], + "en_answers": [ + "mobile phone" + ], + "count": 1 + }, + { + "answers": [ + "红包" + ], + "en_answers": [ + "red envelope" + ], + "count": 1 + }, + { + "answers": [ + "皮带" + ], + "en_answers": [ + "belt" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-54": { + "question": "在中国,母亲节(或者父母节)母亲们通常会收到什么礼物?", + "en_question": "What gifts do mothers get on Mother's Day (or Parents' Day) in your country?", + "annotations": [ + { + "answers": [ + "康乃馨", + "康乃馨花束" + ], + "en_answers": [ + "carnation", + "carnation bouquet" + ], + "count": 3 + }, + { + "answers": [ + "金首饰" + ], + "en_answers": [ + "gold jewelry" + ], + "count": 1 + }, + { + "answers": [ + "花" + ], + "en_answers": [ + "flower" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-59": { + "question": "在中国,一个家庭通常有几代人住在一起?(只提供阿拉伯数字(例如,12)。)", + "en_question": "How many generations typically live together in a household in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-65": { + "question": "在中国,初中有多少门学科?(只提供阿拉伯数字(例如,12)。)", + "en_question": "How many subjects are taught in middle schools in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 3 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-66": { + "question": "中国小学里最受欢迎的课外兴趣班是什么?", + "en_question": "What is the most popular after school curricular in elementary schools in your country?", + "annotations": [ + { + "answers": [ + "画画" + ], + "en_answers": [ + "drawing" + ], + "count": 2 + }, + { + "answers": [ + "奥数" + ], + "en_answers": [ + "olympiad math" + ], + "count": 1 + }, + { + "answers": [ + "数学" + ], + "en_answers": [ + "mathematics" + ], + "count": 1 + }, + { + "answers": [ + "绘画" + ], + "en_answers": [ + "painting" + ], + "count": 1 + }, + { + "answers": [ + "钢琴" + ], + "en_answers": [ + "piano" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-74": { + "question": "中国公立大学的平均每年学费是多少?", + "en_question": "How much is the average annual tuition fee for public universities in your country?", + "annotations": [ + { + "answers": [ + "6000" + ], + "en_answers": [ + "6000 yuan", + "6000 rmb" + ], + "count": 2 + }, + { + "answers": [ + "5000" + ], + "en_answers": [ + "5000 yuan", + "5000 rmb" + ], + "count": 1 + }, + { + "answers": [ + "6000-12000" + ], + "en_answers": [ + "6000-12000 yuan", + "6000-12000 rmb" + ], + "count": 1 + }, + { + "answers": [ + "10000" + ], + "en_answers": [ + "10000 yuan", + "10000 rmb" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-pe-76": { + "question": "在中国的公园里,有什么受欢迎的活动?", + "en_question": "What is a popular activity to do in parks in your country?", + "annotations": [ + { + "answers": [ + "广场舞" + ], + "en_answers": [ + "square dance" + ], + "count": 4 + }, + { + "answers": [ + "太极", + "太极拳" + ], + "en_answers": [ + "tai chi" + ], + "count": 2 + }, + { + "answers": [ + "打羽毛球" + ], + "en_answers": [ + "play badminton" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-78": { + "question": "中国举办的最著名的电影节叫什么名字?", + "en_question": "What is the name of the most famous film festival held in your country?", + "annotations": [ + { + "answers": [ + "北京电影节" + ], + "en_answers": [ + "beijing film festival" + ], + "count": 3 + }, + { + "answers": [ + "金鸡奖" + ], + "en_answers": [ + "golden rooster awards" + ], + "count": 1 + }, + { + "answers": [ + "百花奖" + ], + "en_answers": [ + "hundred flowers award" + ], + "count": 1 + }, + { + "answers": [ + "金马", + "金马奖" + ], + "en_answers": [ + "golden horse awards", + "golden horse" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-83": { + "question": "在中国的聚会中,流行玩什么纸牌游戏?", + "en_question": "What is the popular card game played during social gatherings in your country?", + "annotations": [ + { + "answers": [ + "斗地主" + ], + "en_answers": [ + "fight the landlord" + ], + "count": 2 + }, + { + "answers": [ + "扑克牌", + "打扑克" + ], + "en_answers": [ + "playing cards", + "poker" + ], + "count": 2 + }, + { + "answers": [ + "麻将" + ], + "en_answers": [ + "mahjong" + ], + "count": 1 + }, + { + "answers": [ + "三国杀" + ], + "en_answers": [ + "three kingdoms kill" + ], + "count": 1 + }, + { + "answers": [ + "斗地主", + "抖地主" + ], + "en_answers": [ + "fight the landlord" + ], + "count": 1 + }, + { + "answers": [ + "拖拉机" + ], + "en_answers": [ + "tractor" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-85": { + "question": "对于中国人来说,最受欢迎的境外旅游目的地在哪里?", + "en_question": "Where is the most popular tourist destination abroad for people from your country?", + "annotations": [ + { + "answers": [ + "美国" + ], + "en_answers": [ + "united states" + ], + "count": 2 + }, + { + "answers": [ + "日本" + ], + "en_answers": [ + "japan" + ], + "count": 2 + }, + { + "answers": [ + "马尔代夫" + ], + "en_answers": [ + "maldives" + ], + "count": 2 + }, + { + "answers": [ + "澳洲" + ], + "en_answers": [ + "australia" + ], + "count": 1 + }, + { + "answers": [ + "土耳其" + ], + "en_answers": [ + "turkey" + ], + "count": 1 + }, + { + "answers": [ + "东南亚" + ], + "en_answers": [ + "southeast asia" + ], + "count": 1 + }, + { + "answers": [ + "香港" + ], + "en_answers": [ + "hong kong" + ], + "count": 1 + }, + { + "answers": [ + "新加坡", + "新马泰" + ], + "en_answers": [ + "singapore" + ], + "count": 1 + }, + { + "answers": [ + "马来西亚", + "新马泰" + ], + "en_answers": [ + "malaysia" + ], + "count": 1 + }, + { + "answers": [ + "泰国", + "新马泰" + ], + "en_answers": [ + "thailand" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-86": { + "question": "中国最著名的塔的名字是什么?", + "en_question": "What is the name of the most famous tower in your country?", + "annotations": [ + { + "answers": [ + "东方明珠", + "东方之珠" + ], + "en_answers": [ + "oriental pearl", + "pearl of the orient" + ], + "count": 2 + }, + { + "answers": [ + "雷锋塔" + ], + "en_answers": [ + "leifeng pagoda" + ], + "count": 1 + }, + { + "answers": [ + "大雁塔" + ], + "en_answers": [ + "big wild goose pagoda" + ], + "count": 1 + }, + { + "answers": [ + "广州塔" + ], + "en_answers": [ + "canton tower" + ], + "count": 1 + }, + { + "answers": [ + "宁古塔" + ], + "en_answers": [ + "ninguta" + ], + "count": 1 + }, + { + "answers": [ + "雷峰塔" + ], + "en_answers": [ + "leifeng pagoda" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-01": { + "question": "在中国最常食用的可食用昆虫是什么?", + "en_question": "What edible insect is eaten most often in your country?", + "annotations": [ + { + "answers": [ + "蝉蛹" + ], + "en_answers": [ + "cicada pupa" + ], + "count": 2 + }, + { + "answers": [ + "蚂蚱" + ], + "en_answers": [ + "grasshopper" + ], + "count": 2 + }, + { + "answers": [ + "蚕蛹" + ], + "en_answers": [ + "silkworm pupa" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-04": { + "question": "中国最常出口哪种农产品?", + "en_question": "Which agricultural product is exported most often in your country?", + "annotations": [ + { + "answers": [ + "蔬菜" + ], + "en_answers": [ + "vegetables", + "vegetable" + ], + "count": 2 + }, + { + "answers": [ + "水果" + ], + "en_answers": [ + "fruits", + "fruit" + ], + "count": 1 + }, + { + "answers": [ + "大米" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "玉米" + ], + "en_answers": [ + "corn" + ], + "count": 1 + }, + { + "answers": [ + "谷物" + ], + "en_answers": [ + "grain" + ], + "count": 1 + }, + { + "answers": [ + "棉花" + ], + "en_answers": [ + "cotton" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-05": { + "question": "中国最受欢迎的甜点是什么?", + "en_question": "What are the most popular sweets in your country?", + "annotations": [ + { + "answers": [ + "糕团" + ], + "en_answers": [ + "cake ball" + ], + "count": 1 + }, + { + "answers": [ + "蛋黄酥" + ], + "en_answers": [ + "egg yolk pastry" + ], + "count": 1 + }, + { + "answers": [ + "鸡蛋卷" + ], + "en_answers": [ + "egg roll" + ], + "count": 1 + }, + { + "answers": [ + "老婆饼" + ], + "en_answers": [ + "wife cake" + ], + "count": 1 + }, + { + "answers": [ + "蛋糕" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "驴打滚" + ], + "en_answers": [ + "rolling donkey" + ], + "count": 1 + }, + { + "answers": [ + "元宵" + ], + "en_answers": [ + "lantern festival" + ], + "count": 1 + }, + { + "answers": [ + "红豆包子" + ], + "en_answers": [ + "red bean bun" + ], + "count": 1 + }, + { + "answers": [ + "蛋挞" + ], + "en_answers": [ + "egg tart" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-15": { + "question": "中国最受欢迎的运动饮料是什么?", + "en_question": "What is the most popular sports drink in your country?", + "annotations": [ + { + "answers": [ + "佳得乐" + ], + "en_answers": [ + "gatorade" + ], + "count": 2 + }, + { + "answers": [ + "东鹏特饮" + ], + "en_answers": [ + "dongpeng special drink" + ], + "count": 1 + }, + { + "answers": [ + "尖叫" + ], + "en_answers": [ + "scream" + ], + "count": 1 + }, + { + "answers": [ + "脉动" + ], + "en_answers": [ + "pulse" + ], + "count": 1 + }, + { + "answers": [ + "可乐" + ], + "en_answers": [ + "cola" + ], + "count": 1 + }, + { + "answers": [ + "红牛" + ], + "en_answers": [ + "red bull" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-27": { + "question": "中国人的平均教育水平是什么?", + "en_question": "What is the average education level for people in your country?", + "annotations": [ + { + "answers": [ + "高中" + ], + "en_answers": [ + "high school" + ], + "count": 3 + }, + { + "answers": [ + "初中" + ], + "en_answers": [ + "junior high school", + "middle school" + ], + "count": 2 + }, + { + "answers": [ + "小学" + ], + "en_answers": [ + "primary school" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-37": { + "question": "中国学生出国留学最常学习的专业/职业是哪个?", + "en_question": "Which profession is most commonly studied abroad by students from your country?", + "annotations": [ + { + "answers": [ + "计算机" + ], + "en_answers": [ + "computer" + ], + "count": 2 + }, + { + "answers": [ + "金融" + ], + "en_answers": [ + "finance" + ], + "count": 2 + }, + { + "answers": [ + "商业管理" + ], + "en_answers": [ + "business management" + ], + "count": 1 + }, + { + "answers": [ + "it" + ], + "en_answers": [ + "information technology" + ], + "count": 1 + }, + { + "answers": [ + "会计" + ], + "en_answers": [ + "accounting" + ], + "count": 1 + }, + { + "answers": [ + "经济" + ], + "en_answers": [ + "economy" + ], + "count": 1 + }, + { + "answers": [ + "艺术" + ], + "en_answers": [ + "art" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-60": { + "question": "在中国,大多数家庭通常在一周的哪一天进行宗教活动?(例如星期一、星期二)", + "en_question": "Which day of the week do most families in your country practice religious activities? (e.g. Monday, Tuesday)", + "annotations": [ + { + "answers": [ + "周日", + "星期天", + "星期日", + "周天" + ], + "en_answers": [ + "sunday" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 0 + } + }, + "New-spme-65": { + "question": "在中国庆祝国庆节最流行的方式是什么?", + "en_question": "What is the most popular way to celebrate Independence Day in your country?", + "annotations": [ + { + "answers": [ + "出去旅游", + "旅游", + "出游" + ], + "en_answers": [ + "go out for a trip", + "tourism", + "travel" + ], + "count": 3 + }, + { + "answers": [ + "放烟花", + "焰火" + ], + "en_answers": [ + "set off fireworks", + "fireworks" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-68": { + "question": "在中国,儿童最喜欢的饮料是什么?", + "en_question": "What is the most popular beverage among children in your country?", + "annotations": [ + { + "answers": [ + "奶茶" + ], + "en_answers": [ + "milk tea" + ], + "count": 2 + }, + { + "answers": [ + "果汁" + ], + "en_answers": [ + "juice" + ], + "count": 2 + }, + { + "answers": [ + "ad钙奶" + ], + "en_answers": [ + "ad calcium milk" + ], + "count": 1 + }, + { + "answers": [ + "汽水" + ], + "en_answers": [ + "soda water" + ], + "count": 1 + }, + { + "answers": [ + "养乐多" + ], + "en_answers": [ + "yakult" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-76": { + "question": "在中国庆祝国庆节最受欢迎的地方是哪里?", + "en_question": "What is the most popular place in your country to celebrate Independence Day?", + "annotations": [ + { + "answers": [ + "天安门广场", + "天安门" + ], + "en_answers": [ + "tiananmen square", + "tiananmen" + ], + "count": 3 + }, + { + "answers": [ + "北京" + ], + "en_answers": [ + "beijing" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-spme-78": { + "question": "在中国生日聚会上通常会唱的歌曲叫什么名字?", + "en_question": "What is the name of the song that is typically sung at birthday parties in your country?", + "annotations": [ + { + "answers": [ + "生日快乐歌", + "祝你生日快乐", + "生日快乐" + ], + "en_answers": [ + "happy birthday song", + "happy birthday" + ], + "count": 4 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-su-01": { + "question": "在中国的学校门前通常卖些什么小吃?", + "en_question": "What snacks are usually sold in front of schools in your country?", + "annotations": [ + { + "answers": [ + "烤串", + "烧烤" + ], + "en_answers": [ + "barbecue" + ], + "count": 1 + }, + { + "answers": [ + "煎饼果子" + ], + "en_answers": [ + "jianbing guozi" + ], + "count": 1 + }, + { + "answers": [ + "烤肠" + ], + "en_answers": [ + "roasted sausage" + ], + "count": 1 + }, + { + "answers": [ + "鸡蛋饼" + ], + "en_answers": [ + "egg pancake" + ], + "count": 1 + }, + { + "answers": [ + "辣条" + ], + "en_answers": [ + "spicy strips" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-09": { + "question": "在中国通常用什么油来烹饪?", + "en_question": "What oil is usually used for cooking in your country?", + "annotations": [ + { + "answers": [ + "花生油" + ], + "en_answers": [ + "peanut oil" + ], + "count": 3 + }, + { + "answers": [ + "菜籽油" + ], + "en_answers": [ + "rapeseed oil" + ], + "count": 2 + }, + { + "answers": [ + "植物油" + ], + "en_answers": [ + "vegetable oil" + ], + "count": 1 + }, + { + "answers": [ + "大豆油" + ], + "en_answers": [ + "soybean oil" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-10": { + "question": "在中国,孕妇通常吃什么食物?", + "en_question": "What food is commonly consumed by pregnant women in your country?", + "annotations": [ + { + "answers": [ + "鸡汤" + ], + "en_answers": [ + "chicken soup" + ], + "count": 1 + }, + { + "answers": [ + "鲫鱼汤" + ], + "en_answers": [ + "crucian carp soup" + ], + "count": 1 + }, + { + "answers": [ + "红枣" + ], + "en_answers": [ + "red dates" + ], + "count": 1 + }, + { + "answers": [ + "营养均衡的食物" + ], + "en_answers": [ + "nutritionally balanced food" + ], + "count": 1 + }, + { + "answers": [ + "营养丰富的食物" + ], + "en_answers": [ + "nutrient-rich food" + ], + "count": 1 + }, + { + "answers": [ + "鸡蛋" + ], + "en_answers": [ + "egg" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 2, + "not-applicable": 0 + } + }, + "New-su-15": { + "question": "中国最受欢迎的传统非酒精饮料是什么?", + "en_question": "What is the most popular traditional non-alcoholic drink in your country?", + "annotations": [ + { + "answers": [ + "茶" + ], + "en_answers": [ + "tea" + ], + "count": 1 + }, + { + "answers": [ + "八宝粥" + ], + "en_answers": [ + "eight-treasure porridge" + ], + "count": 1 + }, + { + "answers": [ + "酸梅汁" + ], + "en_answers": [ + "plum juice" + ], + "count": 1 + }, + { + "answers": [ + "绿茶" + ], + "en_answers": [ + "green tea" + ], + "count": 1 + }, + { + "answers": [ + "红茶" + ], + "en_answers": [ + "black tea" + ], + "count": 1 + }, + { + "answers": [ + "果汁" + ], + "en_answers": [ + "juice" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-17": { + "question": "在中国的公园里通常有什么体育设施?", + "en_question": "What sports facilities are generally available in parks in your country?", + "annotations": [ + { + "answers": [ + "健身设施" + ], + "en_answers": [ + "fitness facilities" + ], + "count": 1 + }, + { + "answers": [ + "秋千" + ], + "en_answers": [ + "swing" + ], + "count": 1 + }, + { + "answers": [ + "篮球场" + ], + "en_answers": [ + "basketball court" + ], + "count": 1 + }, + { + "answers": [ + "足球" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-su-21": { + "question": "在中国的公园里,老年人通常都做些什么活动?", + "en_question": "What are the common activities that seniors usually do in parks in your country?", + "annotations": [ + { + "answers": [ + "太极", + "太极拳" + ], + "en_answers": [ + "tai chi" + ], + "count": 3 + }, + { + "answers": [ + "下象棋" + ], + "en_answers": [ + "play chess" + ], + "count": 1 + }, + { + "answers": [ + "广场舞" + ], + "en_answers": [ + "square dance" + ], + "count": 1 + }, + { + "answers": [ + "散步" + ], + "en_answers": [ + "walk" + ], + "count": 1 + }, + { + "answers": [ + "公园的健身器材" + ], + "en_answers": [ + "park's fitness equipment" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-24": { + "question": "在中国,父母和孩子们通常一起玩什么运动?", + "en_question": "What sports do parents and children commonly play together in your country?", + "annotations": [ + { + "answers": [ + "散步" + ], + "en_answers": [ + "walk" + ], + "count": 1 + }, + { + "answers": [ + "跳绳" + ], + "en_answers": [ + "jump rope" + ], + "count": 1 + }, + { + "answers": [ + "骑行" + ], + "en_answers": [ + "cycling" + ], + "count": 1 + }, + { + "answers": [ + "羽毛球" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "乒乓球", + "乒乓" + ], + "en_answers": [ + "table tennis", + "ping pong" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 1 + } + }, + "New-su-28": { + "question": "中国国家足球队的代表色是什么颜色?", + "en_question": "What color is associated with the national soccer team of your country?", + "annotations": [ + { + "answers": [ + "红色", + "红" + ], + "en_answers": [ + "red" + ], + "count": 5 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-33": { + "question": "中国学校教师的普遍着装要求是什么?", + "en_question": "What is the common dress code for school teachers in your country?", + "annotations": [ + { + "answers": [ + "正装" + ], + "en_answers": [ + "formal attire" + ], + "count": 2 + }, + { + "answers": [ + "衬衫", + "衬衫 长裤", + "长裤" + ], + "en_answers": [ + "shirt", + "trousers" + ], + "count": 1 + }, + { + "answers": [ + "得体" + ], + "en_answers": [ + "appropriate" + ], + "count": 1 + }, + { + "answers": [ + "不暴露" + ], + "en_answers": [ + "do not expose" + ], + "count": 1 + }, + { + "answers": [ + "不奇装异服" + ], + "en_answers": [ + "not dressed in a strange or unusual way" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-34": { + "question": "在中国学校中,最受欢迎的与音乐相关的课外活动是什么?", + "en_question": "What is the most popular extracurricular activity related to music in schools in your country?", + "annotations": [ + { + "answers": [ + "合唱团", + "合唱" + ], + "en_answers": [ + "choir" + ], + "count": 2 + }, + { + "answers": [ + "文艺演出" + ], + "en_answers": [ + "cultural performance" + ], + "count": 1 + }, + { + "answers": [ + "课外乐器班" + ], + "en_answers": [ + "extracurricular music class" + ], + "count": 1 + }, + { + "answers": [ + "广播体操" + ], + "en_answers": [ + "radio calisthenics" + ], + "count": 1 + }, + { + "answers": [ + "短视频挑战" + ], + "en_answers": [ + "short video challenge" + ], + "count": 1 + }, + { + "answers": [ + "听音乐抄歌词" + ], + "en_answers": [ + "listen to music and copy lyrics" + ], + "count": 1 + }, + { + "answers": [ + "合唱比赛" + ], + "en_answers": [ + "choir competition" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-42": { + "question": "在中国的学校里主要教授哪种宗教?", + "en_question": "What religion is mainly taught in schools in your country?", + "annotations": [ + { + "answers": [ + "佛教" + ], + "en_answers": [ + "buddhism" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 1, + "no-answer": 0 + } + }, + "New-su-45": { + "question": "中国的教育日是在哪一天庆祝?(请提供MM/DD格式,例如:12/31。)", + "en_question": "What date is Education Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "09/10", + "09/10教师节" + ], + "en_answers": [ + "09/10" + ], + "count": 1 + }, + { + "answers": [ + "10/09" + ], + "en_answers": [ + "10/09" + ], + "count": 1 + }, + { + "answers": [ + "11/09" + ], + "en_answers": [ + "11/09" + ], + "count": 1 + }, + { + "answers": [ + "01/24" + ], + "en_answers": [ + "01/24" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-su-50": { + "question": "中国山区人们的主要职业是什么?", + "en_question": "What is the main occupation of people in mountainous areas in your country?", + "annotations": [ + { + "answers": [ + "农民", + "农业" + ], + "en_answers": [ + "farmer" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-51": { + "question": "中国沿海地区人们的主要职业是什么?", + "en_question": "What is the main occupation of people in coastal areas in your country?", + "annotations": [ + { + "answers": [ + "渔民" + ], + "en_answers": [ + "fisherman" + ], + "count": 1 + }, + { + "answers": [ + "打渔" + ], + "en_answers": [ + "fishing" + ], + "count": 1 + }, + { + "answers": [ + "白领" + ], + "en_answers": [ + "white-collar" + ], + "count": 1 + }, + { + "answers": [ + "捕捞" + ], + "en_answers": [ + "fishing" + ], + "count": 1 + }, + { + "answers": [ + "养殖" + ], + "en_answers": [ + "breeding" + ], + "count": 1 + }, + { + "answers": [ + "旅游" + ], + "en_answers": [ + "tourism" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-57": { + "question": "在中国最常见的家畜是什么?", + "en_question": "What is the most common livestock raised in your country?", + "annotations": [ + { + "answers": [ + "鸡" + ], + "en_answers": [ + "chicken" + ], + "count": 3 + }, + { + "answers": [ + "鸭" + ], + "en_answers": [ + "duck" + ], + "count": 2 + }, + { + "answers": [ + "狗" + ], + "en_answers": [ + "dog" + ], + "count": 2 + }, + { + "answers": [ + "猫" + ], + "en_answers": [ + "cat" + ], + "count": 2 + }, + { + "answers": [ + "猪" + ], + "en_answers": [ + "pig" + ], + "count": 2 + }, + { + "answers": [ + "鱼" + ], + "en_answers": [ + "fish" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-58": { + "question": "在中国,什么动物通常用于农业?", + "en_question": "What animals are commonly used for agriculture in your country?", + "annotations": [ + { + "answers": [ + "牛" + ], + "en_answers": [ + "cow" + ], + "count": 4 + }, + { + "answers": [ + "猫", + "猫咪" + ], + "en_answers": [ + "cat" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-59": { + "question": "中国的农民在耕作时通常穿什么来保护自己免受炎热的侵害?", + "en_question": "What do farmers in your country typically wear to protect themselves from the heat whilst farming?", + "annotations": [ + { + "answers": [ + "草帽" + ], + "en_answers": [ + "straw hat" + ], + "count": 2 + }, + { + "answers": [ + "斗笠" + ], + "en_answers": [ + "conical hat" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-su-60": { + "question": "中国的农民通常午饭吃什么?", + "en_question": "What do farmers in your country usually eat for lunch?", + "annotations": [ + { + "answers": [ + "米饭" + ], + "en_answers": [ + "rice" + ], + "count": 5 + }, + { + "answers": [ + "玉米" + ], + "en_answers": [ + "corn" + ], + "count": 1 + }, + { + "answers": [ + "馒头" + ], + "en_answers": [ + "steamed bun" + ], + "count": 1 + }, + { + "answers": [ + "肉菜" + ], + "en_answers": [ + "meat dish" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-71": { + "question": "在中国,父母通常会给孩子们什么生日礼物?", + "en_question": "What gifts do parents generally give to their children for their birthdays in your country?", + "annotations": [ + { + "answers": [ + "红包" + ], + "en_answers": [ + "red envelope" + ], + "count": 2 + }, + { + "answers": [ + "玩具" + ], + "en_answers": [ + "toy" + ], + "count": 1 + }, + { + "answers": [ + "学习用品" + ], + "en_answers": [ + "study supplies" + ], + "count": 1 + }, + { + "answers": [ + "电子产品" + ], + "en_answers": [ + "electronic products" + ], + "count": 1 + }, + { + "answers": [ + "蛋糕" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "钱" + ], + "en_answers": [ + "money" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-75": { + "question": "在中国,大多数家庭通常拥有什么类型的车辆?", + "en_question": "What type of vehicle do most families in your country generally own?", + "annotations": [ + { + "answers": [ + "小轿车" + ], + "en_answers": [ + "sedan" + ], + "count": 2 + }, + { + "answers": [ + "轿车" + ], + "en_answers": [ + "sedan" + ], + "count": 2 + }, + { + "answers": [ + "大众汽车" + ], + "en_answers": [ + "volkswagen" + ], + "count": 1 + }, + { + "answers": [ + "byd" + ], + "en_answers": [ + "build your dreams" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-77": { + "question": "在中国, 开斋节期间通常会给孩子们什么?", + "en_question": "What is usually given to the children during Eid in your country?", + "annotations": [ + { + "answers": [ + "钱", + "红包" + ], + "en_answers": [ + "money" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 2, + "no-answer": 0 + } + }, + "New-su-81": { + "question": "在中国的婚礼上,新郎通常穿什么样的衣服?", + "en_question": "What clothes do grooms usually wear at weddings in your country?", + "annotations": [ + { + "answers": [ + "西装", + "西服" + ], + "en_answers": [ + "suit" + ], + "count": 4 + }, + { + "answers": [ + "唐装" + ], + "en_answers": [ + "tang suit" + ], + "count": 1 + }, + { + "answers": [ + "中式礼服" + ], + "en_answers": [ + "chinese-style dress" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-82": { + "question": "在中国的婚礼上,新娘通常穿什么样的衣服?", + "en_question": "What clothes do brides usually wear at weddings in your country?", + "annotations": [ + { + "answers": [ + "婚纱" + ], + "en_answers": [ + "wedding dress" + ], + "count": 2 + }, + { + "answers": [ + "旗袍" + ], + "en_answers": [ + "cheongsam" + ], + "count": 2 + }, + { + "answers": [ + "白色婚纱", + "白婚纱" + ], + "en_answers": [ + "white wedding dress" + ], + "count": 2 + }, + { + "answers": [ + "龙凤红色裙套装" + ], + "en_answers": [ + "dragon and phoenix red dress suit" + ], + "count": 1 + }, + { + "answers": [ + "中式礼服" + ], + "en_answers": [ + "chinese-style dress" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-83": { + "question": "在中国的婚礼上通常会提供什么食物?", + "en_question": "What food is usually served at weddings in your country?", + "annotations": [ + { + "answers": [ + "肉" + ], + "en_answers": [ + "meat" + ], + "count": 1 + }, + { + "answers": [ + "鱼" + ], + "en_answers": [ + "fish" + ], + "count": 1 + }, + { + "answers": [ + "喜糖" + ], + "en_answers": [ + "wedding candy" + ], + "count": 1 + }, + { + "answers": [ + "红枣" + ], + "en_answers": [ + "red dates" + ], + "count": 1 + }, + { + "answers": [ + "花生" + ], + "en_answers": [ + "peanut" + ], + "count": 1 + }, + { + "answers": [ + "各种肉类食物" + ], + "en_answers": [ + "various types of meat" + ], + "count": 1 + }, + { + "answers": [ + "蔬菜" + ], + "en_answers": [ + "vegetables" + ], + "count": 1 + }, + { + "answers": [ + "饮料" + ], + "en_answers": [ + "beverage" + ], + "count": 1 + }, + { + "answers": [ + "四喜丸子" + ], + "en_answers": [ + "four joy meatballs" + ], + "count": 1 + }, + { + "answers": [ + "狮子头" + ], + "en_answers": [ + "lion's head meatball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-86": { + "question": "中国最著名的政府建筑是什么?", + "en_question": "What is the most famous government building in your country?", + "annotations": [ + { + "answers": [ + "人民大会堂" + ], + "en_answers": [ + "the great hall of the people" + ], + "count": 4 + }, + { + "answers": [ + "故宫", + "故宫?" + ], + "en_answers": [ + "forbidden city", + "the palace museum" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-88": { + "question": "在中国年轻人中最受欢迎的音乐类型是什么?", + "en_question": "What is the most popular music genre among the younger population in your country?", + "annotations": [ + { + "answers": [ + "嘻哈说唱", + "说唱" + ], + "en_answers": [ + "rap", + "hip hop", + "hip hop rap" + ], + "count": 2 + }, + { + "answers": [ + "嘻哈", + "说唱" + ], + "en_answers": [ + "rap", + "hip hop", + "hip hop rap" + ], + "count": 1 + }, + { + "answers": [ + "国风" + ], + "en_answers": [ + "national style" + ], + "count": 1 + }, + { + "answers": [ + "流行音乐" + ], + "en_answers": [ + "pop music" + ], + "count": 1 + }, + { + "answers": [ + "节奏布鲁斯" + ], + "en_answers": [ + "rhythm blues" + ], + "count": 1 + }, + { + "answers": [ + "edm" + ], + "en_answers": [ + "electronic dance music" + ], + "count": 1 + }, + { + "answers": [ + "pop" + ], + "en_answers": [ + "pop music" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-02": { + "question": "中国的初中生通常每天几点放学?(请提供HH:MM格式,例如:18:00, 09:00。)", + "en_question": "What time do middle school students in your country typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 3 + }, + { + "answers": [ + "19:00" + ], + "en_answers": [ + "19:00" + ], + "count": 1 + }, + { + "answers": [ + "16:30" + ], + "en_answers": [ + "16:30" + ], + "count": 1 + }, + { + "answers": [ + "12:00" + ], + "en_answers": [ + "12:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-03": { + "question": "中国人通常在多大年龄上大学?(只提供阿拉伯数字(例如,12)。)", + "en_question": "At what age do people in your country typically go to university? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-06": { + "question": "在中国,人们从几岁开始需要接受义务教育?(只提供阿拉伯数字(例如,12)。)", + "en_question": "From what age do people need to attend compulsory education in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 4 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-09": { + "question": "在中国,孩子们一周上几天学?(只提供阿拉伯数字(0~7))。", + "en_question": "How many days a week do children attend school in your country? (Provide Arabic numerals (0~7) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 5 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-11": { + "question": "在中国,一个硕士学位通常需要多少年才能完成?(只提供阿拉伯数字(例如,12))。", + "en_question": "In your country, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 4 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-12": { + "question": "中国最顶尖的大学是哪所?(请提供官方名称。)", + "en_question": "What is the top university in your country? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "清华大学" + ], + "en_answers": [ + "tsinghua university" + ], + "count": 4 + }, + { + "answers": [ + "北京大学" + ], + "en_answers": [ + "peking university" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-13": { + "question": "在中国,大多数人是在多大年龄毕业于大学的?(只提供阿拉伯数字(例如,12)。)", + "en_question": "At what age do most people in your country graduate from university? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 4 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-15": { + "question": "中国的孩子通常几岁开始上初中?(只提供阿拉伯数字(例如,12)。)", + "en_question": "At what age do children in your country generally start middle school? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 2 + }, + { + "answers": [ + "14" + ], + "en_answers": [ + "14" + ], + "count": 1 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "13" + ], + "en_answers": [ + "13" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-17": { + "question": "中国的全职工作者通常每周工作多少小时?(只提供阿拉伯数字,例如:12。)", + "en_question": "How many hours a week does a full-time worker in your country typically work? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 2 + }, + { + "answers": [ + "35" + ], + "en_answers": [ + "35" + ], + "count": 1 + }, + { + "answers": [ + "45" + ], + "en_answers": [ + "45" + ], + "count": 1 + }, + { + "answers": [ + "50" + ], + "en_answers": [ + "50" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-19": { + "question": "在中国,一个全职工作者一周工作几天?(只提供阿拉伯数字(0~7))。", + "en_question": "How many days a week does a full-time worker work in your country? (Provide Arabic numerals (0~7) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 3 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-20": { + "question": "在中国,大多数人开始工作的年龄是多少?(只提供阿拉伯数字(例如,12)。)", + "en_question": "At what age do most people start working in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 4 + }, + { + "answers": [ + "23" + ], + "en_answers": [ + "23" + ], + "count": 2 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-21": { + "question": "在中国,个人从多大年龄开始可以工作?(只提供阿拉伯数字(例如,12)。)", + "en_question": "From what age is an individual allowed to work in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 2 + }, + { + "answers": [ + "16" + ], + "en_answers": [ + "16" + ], + "count": 1 + }, + { + "answers": [ + "23" + ], + "en_answers": [ + "23" + ], + "count": 1 + }, + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 1 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-31": { + "question": "在中国,人们在圣诞节通常吃些什么?", + "en_question": "What do people in your country traditionally eat on Christmas Day?", + "annotations": [ + { + "answers": [ + "苹果" + ], + "en_answers": [ + "apple" + ], + "count": 2 + }, + { + "answers": [ + "巧克力" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + }, + { + "answers": [ + "牛排披萨" + ], + "en_answers": [ + "steak pizza" + ], + "count": 1 + }, + { + "answers": [ + "米饭" + ], + "en_answers": [ + "rice" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "Ni-en-37": { + "question": "中国人在一年中庆祝爱情和浪漫的那一天叫什么名字?", + "en_question": "What is the name of the day of the year where people in your country celebrate love and romance?", + "annotations": [ + { + "answers": [ + "七夕", + "七夕节" + ], + "en_answers": [ + "qixi festival" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-40": { + "question": "在中国最受欢迎的圣诞歌曲是什么?", + "en_question": "What is the most popular Christmas song in your country?", + "annotations": [ + { + "answers": [ + "铃儿响叮当" + ], + "en_answers": [ + "jingle bells" + ], + "count": 3 + }, + { + "answers": [ + "圣诞结" + ], + "en_answers": [ + "lonely christmas" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Nu-in-04": { + "question": "中国高中每个学年有多少个学期?(只提供阿拉伯数字,例如:7、8。)", + "en_question": "How many semesters are there each academic year at high schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-05": { + "question": "在中国,新的学年通常是在哪个月开始的?(只提供阿拉伯数字(1~12))。", + "en_question": "In which month does the new school year typically begin in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-06": { + "question": "中国的教师节是哪天纪念的?(请以MM/DD格式提供,例如:12/31。)", + "en_question": "When is National Teacher's Day commemorated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "09/10" + ], + "en_answers": [ + "09/10" + ], + "count": 3 + }, + { + "answers": [ + "10/10" + ], + "en_answers": [ + "10/10" + ], + "count": 1 + }, + { + "answers": [ + "09/11" + ], + "en_answers": [ + "09/11" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-11": { + "question": "中国的小学一般几点开始上课?(请以HH:MM格式提供,例如,18:00, 09:00。)", + "en_question": "At what time does elementary school start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 4 + }, + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-20": { + "question": "中国的儿童节是哪天庆祝的?(请以MM/DD格式提供,例如12/31。)", + "en_question": "When is Children's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "06/01" + ], + "en_answers": [ + "06/01" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-40": { + "question": "在中国,哪个城市是求职者的主要目的地?", + "en_question": "Which city is the main destination for job seekers in your country?", + "annotations": [ + { + "answers": [ + "北京" + ], + "en_answers": [ + "beijing" + ], + "count": 5 + }, + { + "answers": [ + "上海" + ], + "en_answers": [ + "shanghai" + ], + "count": 4 + }, + { + "answers": [ + "广州" + ], + "en_answers": [ + "guangzhou" + ], + "count": 2 + }, + { + "answers": [ + "香港" + ], + "en_answers": [ + "hong kong" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-1": { + "question": "中国最受欢迎的快餐连锁店是哪家?", + "en_question": "What is your country's most popular fast food chain?", + "annotations": [ + { + "answers": [ + "肯德基", + "kfc" + ], + "en_answers": [ + "kentucky fried chicken", + "kfc" + ], + "count": 4 + }, + { + "answers": [ + "麦当劳" + ], + "en_answers": [ + "mcdonald's" + ], + "count": 3 + }, + { + "answers": [ + "蜜雪冰城" + ], + "en_answers": [ + "mixue bingcheng" + ], + "count": 1 + }, + { + "answers": [ + "沙县小吃" + ], + "en_answers": [ + "shaxian delicacies" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-13": { + "question": "在中国最具有分歧性的食物(要么喜欢要么讨厌)是什么?", + "en_question": "What is the food that is most divisive (either love or hate) in your country?", + "annotations": [ + { + "answers": [ + "榴莲" + ], + "en_answers": [ + "durian" + ], + "count": 2 + }, + { + "answers": [ + "香菜" + ], + "en_answers": [ + "cilantro" + ], + "count": 2 + }, + { + "answers": [ + "萝卜" + ], + "en_answers": [ + "radish" + ], + "count": 1 + }, + { + "answers": [ + "粽子" + ], + "en_answers": [ + "zongzi" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Sa-en-16": { + "question": "在中国人中最受欢迎的足球队是哪一支?", + "en_question": "What is the most popular soccer team among the people from your country?", + "annotations": [ + { + "answers": [ + "广州恒大", + "恒大" + ], + "en_answers": [ + "guangzhou evergrande" + ], + "count": 2 + }, + { + "answers": [ + "皇家马德里", + "皇马" + ], + "en_answers": [ + "real madrid" + ], + "count": 1 + }, + { + "answers": [ + "巴塞罗那" + ], + "en_answers": [ + "barcelona" + ], + "count": 1 + }, + { + "answers": [ + "阿森纳" + ], + "en_answers": [ + "arsenal" + ], + "count": 1 + }, + { + "answers": [ + "曼联" + ], + "en_answers": [ + "manchester united" + ], + "count": 1 + }, + { + "answers": [ + "巴萨" + ], + "en_answers": [ + "barça" + ], + "count": 1 + }, + { + "answers": [ + "中国队", + "国足" + ], + "en_answers": [ + "china team" + ], + "count": 1 + }, + { + "answers": [ + "山东鲁能", + "鲁能" + ], + "en_answers": [ + "shandong luneng" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-22": { + "question": "中国最有名的大学,以其体育队伍而闻名的是哪所?", + "en_question": "What is the most famous university in your country known for its sports team?", + "annotations": [ + { + "answers": [ + "清华大学", + "清华" + ], + "en_answers": [ + "tsinghua university" + ], + "count": 3 + }, + { + "answers": [ + "北京体育大学", + "北体" + ], + "en_answers": [ + "beijing sport university" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-31": { + "question": "中国最受欢迎的家庭宠物是什么?", + "en_question": "What is your country's most popular family pet?", + "annotations": [ + { + "answers": [ + "狗", + "狗狗" + ], + "en_answers": [ + "dog" + ], + "count": 5 + }, + { + "answers": [ + "猫", + "猫咪" + ], + "en_answers": [ + "cat" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-32": { + "question": "中国最受欢迎的家庭电视节目是什么?", + "en_question": "What is the most popular family TV show in your country?", + "annotations": [ + { + "answers": [ + "快乐大本营" + ], + "en_answers": [ + "happy camp" + ], + "count": 1 + }, + { + "answers": [ + "中国好声音" + ], + "en_answers": [ + "the voice of china" + ], + "count": 1 + }, + { + "answers": [ + "新闻联播" + ], + "en_answers": [ + "news simulcast" + ], + "count": 1 + }, + { + "answers": [ + "综艺节目" + ], + "en_answers": [ + "variety show" + ], + "count": 1 + }, + { + "answers": [ + "奔跑吧兄弟" + ], + "en_answers": [ + "run, brothers" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-37": { + "question": "在中国最受欢迎的家庭桌游是什么?", + "en_question": "What is the most popular family boardgame in your country?", + "annotations": [ + { + "answers": [ + "麻将" + ], + "en_answers": [ + "mahjong" + ], + "count": 3 + }, + { + "answers": [ + "台球", + "桌球" + ], + "en_answers": [ + "billiards", + "pool" + ], + "count": 1 + }, + { + "answers": [ + "扑克" + ], + "en_answers": [ + "poker" + ], + "count": 1 + }, + { + "answers": [ + "斗地主" + ], + "en_answers": [ + "fight the landlord" + ], + "count": 1 + }, + { + "answers": [ + "uno" + ], + "en_answers": [ + "uno" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-6": { + "question": "在中国最受欢迎的外卖食物是什么?", + "en_question": "What is the most popular takeaway food in your country?", + "annotations": [ + { + "answers": [ + "麻辣烫" + ], + "en_answers": [ + "spicy hot pot" + ], + "count": 2 + }, + { + "answers": [ + "炒面" + ], + "en_answers": [ + "chow mein", + "fried noodles" + ], + "count": 1 + }, + { + "answers": [ + "饺子" + ], + "en_answers": [ + "dumplings" + ], + "count": 1 + }, + { + "answers": [ + "盖浇饭" + ], + "en_answers": [ + "rice with toppings", + "rice bowl" + ], + "count": 1 + }, + { + "answers": [ + "烧烤", + "烤串" + ], + "en_answers": [ + "barbecue" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Sa-en-7": { + "question": "在中国有哪些受欢迎的小吃?", + "en_question": "What are popular snacks in your country?", + "annotations": [ + { + "answers": [ + "小笼包" + ], + "en_answers": [ + "xiaolongbao" + ], + "count": 1 + }, + { + "answers": [ + "煎饼" + ], + "en_answers": [ + "pancake" + ], + "count": 1 + }, + { + "answers": [ + "油条" + ], + "en_answers": [ + "fried dough stick" + ], + "count": 1 + }, + { + "answers": [ + "烤冷面" + ], + "en_answers": [ + "grilled cold noodles" + ], + "count": 1 + }, + { + "answers": [ + "炒酸奶" + ], + "en_answers": [ + "stirred yogurt" + ], + "count": 1 + }, + { + "answers": [ + "奶茶" + ], + "en_answers": [ + "milk tea" + ], + "count": 1 + }, + { + "answers": [ + "麻辣烫" + ], + "en_answers": [ + "spicy hot pot" + ], + "count": 1 + }, + { + "answers": [ + "汤圆" + ], + "en_answers": [ + "glutinous rice balls" + ], + "count": 1 + }, + { + "answers": [ + "豆腐脑" + ], + "en_answers": [ + "tofu pudding" + ], + "count": 1 + }, + { + "answers": [ + "串串香" + ], + "en_answers": [ + "chuan chuan xiang (a type of chinese skewered food)" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Sa-en-9": { + "question": "中国人在海滩上吃什么?", + "en_question": "What do people from your country eat at the beach?", + "annotations": [ + { + "answers": [ + "烧烤", + "烤串" + ], + "en_answers": [ + "barbecue" + ], + "count": 3 + }, + { + "answers": [ + "海鲜大排档" + ], + "en_answers": [ + "seafood roadside diner", + "seafood stall" + ], + "count": 1 + }, + { + "answers": [ + "虾" + ], + "en_answers": [ + "shrimp" + ], + "count": 1 + }, + { + "answers": [ + "鱼" + ], + "en_answers": [ + "fish" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-10": { + "question": "在中国,男性通常在多大年龄结婚?(只提供阿拉伯数字(例如,20)。)", + "en_question": "At what age do men usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 2 + }, + { + "answers": [ + "28" + ], + "en_answers": [ + "28" + ], + "count": 1 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-11": { + "question": "在中国,女性通常在多大年龄结婚?(只提供阿拉伯数字(例如,20)。)", + "en_question": "At what age do women usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 4 + }, + { + "answers": [ + "26" + ], + "en_answers": [ + "26" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-13": { + "question": "在你父母那一代,中国家庭平均有多少成员?(只提供阿拉伯数字,例如:20。)", + "en_question": "In your parents' generation, what was the average number of members in their family in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 2 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 2 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-17": { + "question": "在奥运会中,哪项运动是中国最受欢迎的?", + "en_question": "In the Olympic Games, which sport is the most popular in your country?", + "annotations": [ + { + "answers": [ + "乒乓球", + "乒乓" + ], + "en_answers": [ + "table tennis", + "ping pong", + "pingpong" + ], + "count": 4 + }, + { + "answers": [ + "田径" + ], + "en_answers": [ + "athletics", + "track and field" + ], + "count": 1 + }, + { + "answers": [ + "篮球" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-21": { + "question": "在中国,孩子们通常在哪里踢足球?", + "en_question": "Where do children usually play soccer in your country?", + "annotations": [ + { + "answers": [ + "操场" + ], + "en_answers": [ + "playground" + ], + "count": 3 + }, + { + "answers": [ + "足球场" + ], + "en_answers": [ + "soccer field" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ta-pe-22": { + "question": "在中国,哪种日常锻炼在女性中很受欢迎?", + "en_question": "Which daily exercise is popular among women in your country?", + "annotations": [ + { + "answers": [ + "瑜伽" + ], + "en_answers": [ + "yoga" + ], + "count": 2 + }, + { + "answers": [ + "广场舞" + ], + "en_answers": [ + "square dance" + ], + "count": 2 + }, + { + "answers": [ + "走路" + ], + "en_answers": [ + "walk" + ], + "count": 1 + }, + { + "answers": [ + "抖音跳操" + ], + "en_answers": [ + "douyin workout" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-23": { + "question": "在中国,男性中哪种日常锻炼很受欢迎?", + "en_question": "Which daily exercise is popular among men in your country?", + "annotations": [ + { + "answers": [ + "跑步" + ], + "en_answers": [ + "running" + ], + "count": 3 + }, + { + "answers": [ + "健身" + ], + "en_answers": [ + "work out", + "go to gym" + ], + "count": 2 + }, + { + "answers": [ + "篮球" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "羽毛球" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "慢跑" + ], + "en_answers": [ + "jogging" + ], + "count": 1 + }, + { + "answers": [ + "太极" + ], + "en_answers": [ + "tai chi" + ], + "count": 1 + }, + { + "answers": [ + "引体向上" + ], + "en_answers": [ + "pull-ups" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-25": { + "question": "中国国内体育联赛中最著名的对抗是什么?(例如,___ 对 ___)", + "en_question": "What is the most famous rivalry in a national sports league in your country? (e.g., ___ vs ___)", + "annotations": [ + { + "answers": [ + "北京国安对上海申花", + "上海申花对北京国安" + ], + "en_answers": [ + "beijing guoan vs shanghai shenhua", + "shanghai shenhua vs beijing guoan" + ], + "count": 3 + }, + { + "answers": [ + "北京国安对天津泰达" + ], + "en_answers": [ + "beijing guoan vs tianjin teda" + ], + "count": 1 + }, + { + "answers": [ + "辽宁男篮对广东男篮" + ], + "en_answers": [ + "liaoning men's basketball vs. guangdong men's basketball" + ], + "count": 1 + } + ], + "idks": { + "我不太懂体育": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-29": { + "question": "在中国,哪项职业体育运动的薪酬最高?", + "en_question": "Which professional sport is the highest paying in your country?", + "annotations": [ + { + "answers": [ + "足球" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "篮球" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-30": { + "question": "在中国,最受欢迎的体育相关电视节目是什么?", + "en_question": "What is/was the most popular sports-related TV program in your country?", + "annotations": [ + { + "answers": [ + "天下足球" + ], + "en_answers": [ + "world football" + ], + "count": 2 + }, + { + "answers": [ + "势不可挡" + ], + "en_answers": [ + "unstoppable" + ], + "count": 1 + }, + { + "answers": [ + "nba" + ], + "en_answers": [ + "national basketball association" + ], + "count": 1 + }, + { + "answers": [ + "cctv5" + ], + "en_answers": [ + "cctv-5" + ], + "count": 1 + }, + { + "answers": [ + "足球比赛", + "足球" + ], + "en_answers": [ + "football game", + "football match" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-32": { + "question": "中国通常在一年中的哪一天放烟花?", + "en_question": "What day of the year is usually dedicated to fireworks in your country?", + "annotations": [ + { + "answers": [ + "除夕", + "除夕夜" + ], + "en_answers": [ + "chinese new year's eve", + "spring festival's eve", + "lunar nee year's eve" + ], + "count": 3 + }, + { + "answers": [ + "新年" + ], + "en_answers": [ + "new year" + ], + "count": 1 + }, + { + "answers": [ + "大年初一" + ], + "en_answers": [ + "the first day of the lunar new year", + "the first day of the chinese new year", + "the first day of the spring festival" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ta-pe-37": { + "question": "在中国,通常在除夕会有什么常见的象征?", + "en_question": "What is the common symbol of New Year's Eve that is usually found in your country?", + "annotations": [ + { + "answers": [ + "春联" + ], + "en_answers": [ + "spring festival couplets", + "chinese couplets", + "new year scrolls" + ], + "count": 2 + }, + { + "answers": [ + "春运" + ], + "en_answers": [ + "spring festival travel rush" + ], + "count": 1 + }, + { + "answers": [ + "窗花" + ], + "en_answers": [ + "paper-cut for window decoration" + ], + "count": 1 + }, + { + "answers": [ + "鞭炮" + ], + "en_answers": [ + "firecrackers" + ], + "count": 1 + } + ], + "idks": { + "这个问题问得很奇怪": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-42": { + "question": "中国人在除夕通常吃什么食物?", + "en_question": "What food do people from your country usually eat on New Year's Eve?", + "annotations": [ + { + "answers": [ + "饺子" + ], + "en_answers": [ + "dumplings" + ], + "count": 4 + }, + { + "answers": [ + "盆菜" + ], + "en_answers": [ + "盆菜" + ], + "count": 1 + }, + { + "answers": [ + "八宝饭" + ], + "en_answers": [ + "eight treasures rice" + ], + "count": 1 + }, + { + "answers": [ + "酒酿圆子" + ], + "en_answers": [ + "sweet fermented rice balls" + ], + "count": 1 + }, + { + "answers": [ + "鱼" + ], + "en_answers": [ + "fish" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-45": { + "question": "在中国一年中最长的夜晚庆祝活动中通常吃些什么?", + "en_question": "What is usually eaten during the celebration of the longest night of the year in your country?", + "annotations": [ + { + "answers": [ + "饺子" + ], + "en_answers": [ + "dumplings" + ], + "count": 5 + }, + { + "answers": [ + "汤圆" + ], + "en_answers": [ + "glutinous rice balls", + "tangyuan" + ], + "count": 1 + }, + { + "answers": [ + "羊肉" + ], + "en_answers": [ + "mutton", + "lamb" + ], + "count": 1 + }, + { + "answers": [ + "鱼" + ], + "en_answers": [ + "fish" + ], + "count": 1 + }, + { + "answers": [ + "排骨" + ], + "en_answers": [ + "spareribs", + "ribs" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-01": { + "question": "中国最受欢迎的夏季运动是什么?", + "en_question": "What is the most popular summer sport in your country?", + "annotations": [ + { + "answers": [ + "篮球" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "游泳" + ], + "en_answers": [ + "swimming" + ], + "count": 2 + }, + { + "answers": [ + "散步" + ], + "en_answers": [ + "walk" + ], + "count": 1 + }, + { + "answers": [ + "乒乓球" + ], + "en_answers": [ + "table tennis", + "ping pong" + ], + "count": 1 + }, + { + "answers": [ + "足球" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-03": { + "question": "中国最受欢迎的职业体育联赛是哪一个?", + "en_question": "What is the most popular professional sports league in your country?", + "annotations": [ + { + "answers": [ + "乒乓球联赛", + "乒乓球" + ], + "en_answers": [ + "table tennis", + "table tennis league" + ], + "count": 2 + }, + { + "answers": [ + "中国足球超级联赛", + "中超" + ], + "en_answers": [ + "chinese football super league", + "chinese super league" + ], + "count": 2 + }, + { + "answers": [ + "cba", + "中国男子篮球职业联赛" + ], + "en_answers": [ + "chinese basketball association" + ], + "count": 2 + }, + { + "answers": [ + "跳水联赛", + "跳水" + ], + "en_answers": [ + "diving" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-05": { + "question": "中国最受欢迎的女子运动队是哪一支?", + "en_question": "What is the most popular women's sports team in your country?", + "annotations": [ + { + "answers": [ + "中国女足" + ], + "en_answers": [ + "china women's national football team" + ], + "count": 2 + }, + { + "answers": [ + "中国女排" + ], + "en_answers": [ + "china women's volleyball team" + ], + "count": 2 + }, + { + "answers": [ + "中国女子跳水梦之队" + ], + "en_answers": [ + "china women's diving dream team" + ], + "count": 1 + }, + { + "answers": [ + "女子排球队" + ], + "en_answers": [ + "women's volleyball team" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-09": { + "question": "中国最受欢迎的比赛是什么?", + "en_question": "What is the most popular tournament in your country?", + "annotations": [ + { + "answers": [ + "乒乓球", + "兵乓球", + "乒乓" + ], + "en_answers": [ + "table tennis", + "ping pong" + ], + "count": 4 + }, + { + "answers": [ + "篮球" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "跳水" + ], + "en_answers": [ + "diving" + ], + "count": 1 + }, + { + "answers": [ + "体操" + ], + "en_answers": [ + "gymnastics" + ], + "count": 1 + }, + { + "answers": [ + "足球" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "排球" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-11": { + "question": "谁是中国最受欢迎的运动员?", + "en_question": "Who is the most popular sportperson in your country?", + "annotations": [ + { + "answers": [ + "姚明" + ], + "en_answers": [ + "ming yao", + "yao ming" + ], + "count": 3 + }, + { + "answers": [ + "孙颖莎" + ], + "en_answers": [ + "yingsha sun", + "sun yingsha" + ], + "count": 1 + }, + { + "answers": [ + "马龙" + ], + "en_answers": [ + "long ma", + "ma long" + ], + "count": 1 + }, + { + "answers": [ + "苏翊鸣" + ], + "en_answers": [ + "yiming su", + "su yiming" + ], + "count": 1 + }, + { + "answers": [ + "刘翔" + ], + "en_answers": [ + "xiang liu", + "liu xiang" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-12": { + "question": "中国在哪项运动中在国际比赛中最成功?", + "en_question": "In which sport has your country been most successful in international competitions?", + "annotations": [ + { + "answers": [ + "乒乓球" + ], + "en_answers": [ + "table tennis", + "ping pong" + ], + "count": 5 + }, + { + "answers": [ + "跳水" + ], + "en_answers": [ + "diving" + ], + "count": 2 + }, + { + "answers": [ + "羽毛球" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "滑雪" + ], + "en_answers": [ + "skiing" + ], + "count": 1 + }, + { + "answers": [ + "举重" + ], + "en_answers": [ + "weightlifting" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-15": { + "question": "中国最受欢迎的冬季运动是什么?", + "en_question": "What is the most popular winter sport in your country?", + "annotations": [ + { + "answers": [ + "滑雪" + ], + "en_answers": [ + "skiing" + ], + "count": 4 + }, + { + "answers": [ + "溜冰" + ], + "en_answers": [ + "skating" + ], + "count": 3 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-19": { + "question": "中国有哪些以制造业闻名的城市或地区?", + "en_question": "What is a city or region in your country known for manufacturing industry?", + "annotations": [ + { + "answers": [ + "深圳" + ], + "en_answers": [ + "shenzhen" + ], + "count": 3 + }, + { + "answers": [ + "苏州" + ], + "en_answers": [ + "suzhou" + ], + "count": 3 + }, + { + "answers": [ + "江浙" + ], + "en_answers": [ + "jiangsu-zhejiang" + ], + "count": 1 + }, + { + "answers": [ + "义乌" + ], + "en_answers": [ + "yiwu" + ], + "count": 1 + }, + { + "answers": [ + "杭州" + ], + "en_answers": [ + "hangzhou" + ], + "count": 1 + }, + { + "answers": [ + "武汉" + ], + "en_answers": [ + "wuhan" + ], + "count": 1 + }, + { + "answers": [ + "东莞" + ], + "en_answers": [ + "dongguan" + ], + "count": 1 + }, + { + "answers": [ + "上海" + ], + "en_answers": [ + "shanghai" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-21": { + "question": "在中国,通常认为给员工提供的最重要的福利是什么?", + "en_question": "What is regarded as the most important perk typically offered to employees in your country?", + "annotations": [ + { + "answers": [ + "五险一金" + ], + "en_answers": [ + "five insurances and one fund" + ], + "count": 3 + }, + { + "answers": [ + "双休" + ], + "en_answers": [ + "weekends off" + ], + "count": 2 + }, + { + "answers": [ + "婚假产假" + ], + "en_answers": [ + "marriage and maternity leave" + ], + "count": 1 + }, + { + "answers": [ + "年假" + ], + "en_answers": [ + "annual leave" + ], + "count": 1 + }, + { + "answers": [ + "休假" + ], + "en_answers": [ + "vacation" + ], + "count": 1 + }, + { + "answers": [ + "薪水" + ], + "en_answers": [ + "salary" + ], + "count": 1 + }, + { + "answers": [ + "房补" + ], + "en_answers": [ + "housing allowance" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-22": { + "question": "中国最灾难性的经济时期是哪一个?", + "en_question": "What was the most catastrophic economic period for your country?", + "annotations": [ + { + "answers": [ + "2008", + "2008年" + ], + "en_answers": [ + "2008" + ], + "count": 2 + }, + { + "answers": [ + "三年困难时期" + ], + "en_answers": [ + "three years of difficulty" + ], + "count": 1 + }, + { + "answers": [ + "2007" + ], + "en_answers": [ + "2007" + ], + "count": 1 + }, + { + "answers": [ + "1953饥荒" + ], + "en_answers": [ + "1953 famine" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-24": { + "question": "中国的哪个地区是科技工作者和初创企业的主要集中地?", + "en_question": "What region in your country is a major hub for tech workers and start ups?", + "annotations": [ + { + "answers": [ + "深圳" + ], + "en_answers": [ + "shenzhen" + ], + "count": 3 + }, + { + "answers": [ + "苏州" + ], + "en_answers": [ + "suzhou" + ], + "count": 1 + }, + { + "answers": [ + "北京" + ], + "en_answers": [ + "beijing" + ], + "count": 1 + }, + { + "answers": [ + "上海" + ], + "en_answers": [ + "shanghai" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-27": { + "question": "中国最重要的产业是什么?", + "en_question": "What is the most important industry in your country?", + "annotations": [ + { + "answers": [ + "第三产业" + ], + "en_answers": [ + "tertiary industry" + ], + "count": 1 + }, + { + "answers": [ + "服务" + ], + "en_answers": [ + "service" + ], + "count": 1 + }, + { + "answers": [ + "生产" + ], + "en_answers": [ + "production" + ], + "count": 1 + }, + { + "answers": [ + "基建" + ], + "en_answers": [ + "infrastructure" + ], + "count": 1 + }, + { + "answers": [ + "农业" + ], + "en_answers": [ + "agriculture" + ], + "count": 1 + }, + { + "answers": [ + "制造业" + ], + "en_answers": [ + "manufacturing" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-35": { + "question": "在中国,通常哪一顿日常餐会与家人共享?(例如,早餐、午餐、晚餐)", + "en_question": "Which one of the daily meals is commonly shared with family members in your country? (e.g., breakfast, lunch, dinner)", + "annotations": [ + { + "answers": [ + "晚餐" + ], + "en_answers": [ + "dinner" + ], + "count": 5 + }, + { + "answers": [ + "早餐" + ], + "en_answers": [ + "breakfast" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-36": { + "question": "在中国,周末和孩子一起做的一项受欢迎的家庭活动是什么?", + "en_question": "What is a popular family activity with a child to do on weekends in your country?", + "annotations": [ + { + "answers": [ + "去公园", + "逛公园" + ], + "en_answers": [ + "go to the park", + "stroll in the park" + ], + "count": 2 + }, + { + "answers": [ + "逛街" + ], + "en_answers": [ + "shopping" + ], + "count": 1 + }, + { + "answers": [ + "逛购物中心" + ], + "en_answers": [ + "shopping mall stroll" + ], + "count": 1 + }, + { + "answers": [ + "室外活动" + ], + "en_answers": [ + "outdoor activities" + ], + "count": 1 + }, + { + "answers": [ + "聚餐" + ], + "en_answers": [ + "gathering meal" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Th-en-37": { + "question": "在中国,孩子们通常在多大年龄从父母那里独立出来?(只提供阿拉伯数字(例如,12)。)", + "en_question": "At what age do children typically become independent from their parents in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 2 + }, + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 1 + }, + { + "answers": [ + "21" + ], + "en_answers": [ + "21" + ], + "count": 1 + }, + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 1 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + }, + { + "answers": [ + "23" + ], + "en_answers": [ + "23" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-38": { + "question": "中国最重要的家庭节日是什么?", + "en_question": "What is the most important family holiday in your country?", + "annotations": [ + { + "answers": [ + "春节", + "新年" + ], + "en_answers": [ + "spring festival", + "chinese new year", + "lunar new year" + ], + "count": 5 + }, + { + "answers": [ + "中秋节" + ], + "en_answers": [ + "mid-autumn festival" + ], + "count": 2 + }, + { + "answers": [ + "元旦" + ], + "en_answers": [ + "new year's day", + "chinese new year" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-39": { + "question": "在中国有什么受欢迎的家庭游戏?", + "en_question": "What is a popular family game in your country?", + "annotations": [ + { + "answers": [ + "捉迷藏" + ], + "en_answers": [ + "hide and seek" + ], + "count": 2 + }, + { + "answers": [ + "乒乓", + "打麻将" + ], + "en_answers": [ + "ping pong", + "table tennis", + "play mahjong", + "mahjong" + ], + "count": 2 + }, + { + "answers": [ + "uno" + ], + "en_answers": [ + "uno" + ], + "count": 1 + }, + { + "answers": [ + "三国杀" + ], + "en_answers": [ + "three kingdoms kill" + ], + "count": 1 + }, + { + "answers": [ + "麻将" + ], + "en_answers": [ + "mahjong" + ], + "count": 1 + }, + { + "answers": [ + "扑克牌" + ], + "en_answers": [ + "poker" + ], + "count": 1 + }, + { + "answers": [ + "台球" + ], + "en_answers": [ + "billiards" + ], + "count": 1 + }, + { + "answers": [ + "斗地主" + ], + "en_answers": [ + "fight the landlord" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-41": { + "question": "在中国,夫妇生第一个孩子的平均年龄是多少?(只提供阿拉伯数字(例如,20)。)", + "en_question": "What is the average age for couples to have their first child in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 2 + }, + { + "answers": [ + "28" + ], + "en_answers": [ + "28" + ], + "count": 1 + }, + { + "answers": [ + "26" + ], + "en_answers": [ + "26" + ], + "count": 1 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-43": { + "question": "在中国,一个典型家庭拥有多少辆汽车?(只提供阿拉伯数字,例如:12。)", + "en_question": "How many cars are owned by a typical family in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 4 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-44": { + "question": "在周末家庭聚餐中,中国最受欢迎的食物是什么?", + "en_question": "What is your country's most popular food for family meals on weekends?", + "annotations": [ + { + "answers": [ + "火锅" + ], + "en_answers": [ + "hot pot" + ], + "count": 2 + }, + { + "answers": [ + "烧烤" + ], + "en_answers": [ + "barbecue" + ], + "count": 1 + }, + { + "answers": [ + "麻薯" + ], + "en_answers": [ + "mochi" + ], + "count": 1 + }, + { + "answers": [ + "饺子" + ], + "en_answers": [ + "dumplings" + ], + "count": 1 + }, + { + "answers": [ + "鱼" + ], + "en_answers": [ + "fish" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-45": { + "question": "在中国,最受欢迎的工作日晚上家庭活动是什么?", + "en_question": "What is the most popular weekday evening family activity in your country?", + "annotations": [ + { + "answers": [ + "看电视" + ], + "en_answers": [ + "watch tv" + ], + "count": 2 + }, + { + "answers": [ + "看电视剧" + ], + "en_answers": [ + "watch tv series" + ], + "count": 2 + }, + { + "answers": [ + "看电影" + ], + "en_answers": [ + "watch movie" + ], + "count": 1 + }, + { + "answers": [ + "外出吃饭" + ], + "en_answers": [ + "eating out" + ], + "count": 1 + }, + { + "answers": [ + "散步" + ], + "en_answers": [ + "walk" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-48": { + "question": "在中国,成绩优异的高中生在作业和考试中获得的最高成绩是什么?", + "en_question": "What is the highest grade given to top-achieving high school students on assignments and exams in your country?", + "annotations": [ + { + "answers": [ + "100" + ], + "en_answers": [ + "100" + ], + "count": 2 + }, + { + "answers": [ + "150", + "150分满分" + ], + "en_answers": [ + "150" + ], + "count": 2 + }, + { + "answers": [ + "120" + ], + "en_answers": [ + "120" + ], + "count": 1 + }, + { + "answers": [ + "750" + ], + "en_answers": [ + "750" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-49": { + "question": "在中国,什么被认为是高中生最重要的考试?", + "en_question": "What is considered the most important exam for high school students in your country?", + "annotations": [ + { + "answers": [ + "高考" + ], + "en_answers": [ + "national college entrance examination" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-51": { + "question": "在中国,哪门学科被认为对学生来说最重要?", + "en_question": "Which subject is considered the most important for students in your country?", + "annotations": [ + { + "answers": [ + "数学" + ], + "en_answers": [ + "mathematics", + "math" + ], + "count": 4 + }, + { + "answers": [ + "语文" + ], + "en_answers": [ + "chinese literature" + ], + "count": 2 + }, + { + "answers": [ + "英语" + ], + "en_answers": [ + "english" + ], + "count": 1 + }, + { + "answers": [ + "哲学" + ], + "en_answers": [ + "philosophy" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-53": { + "question": "在中国的学校里,最受欢迎的课外社交活动是什么?", + "en_question": "What is the most popular extracurricular social event at schools in your country?", + "annotations": [ + { + "answers": [ + "去网吧" + ], + "en_answers": [ + "go to the internet cafe" + ], + "count": 1 + }, + { + "answers": [ + "卡拉ok" + ], + "en_answers": [ + "karaoke" + ], + "count": 1 + }, + { + "answers": [ + "玩游戏" + ], + "en_answers": [ + "play games" + ], + "count": 1 + }, + { + "answers": [ + "社团" + ], + "en_answers": [ + "association" + ], + "count": 1 + }, + { + "answers": [ + "学术竞赛" + ], + "en_answers": [ + "academic competition" + ], + "count": 1 + }, + { + "answers": [ + "王者荣耀" + ], + "en_answers": [ + "honor of kings" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-58": { + "question": "在中国大学之前,学的最高级的数学科目是什么?", + "en_question": "What is the most advanced math subject learned before university in your country?", + "annotations": [ + { + "answers": [ + "微积分" + ], + "en_answers": [ + "calculus" + ], + "count": 1 + }, + { + "answers": [ + "解析几何" + ], + "en_answers": [ + "analytic geometry" + ], + "count": 1 + }, + { + "answers": [ + "线性代数" + ], + "en_answers": [ + "linear algebra" + ], + "count": 1 + }, + { + "answers": [ + "高中数学" + ], + "en_answers": [ + "high school mathematics" + ], + "count": 1 + }, + { + "answers": [ + "代数" + ], + "en_answers": [ + "algebra" + ], + "count": 1 + }, + { + "answers": [ + "几何" + ], + "en_answers": [ + "geometry" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-01": { + "question": "中国的大学生通常去哪里复习准备期末考试?", + "en_question": "Where do university students in your country usually go to study for their final exams?", + "annotations": [ + { + "answers": [ + "图书馆" + ], + "en_answers": [ + "library" + ], + "count": 4 + }, + { + "answers": [ + "自习室" + ], + "en_answers": [ + "study room" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-02": { + "question": "在中国,人们通常乘坐什么公共交通工具去大学?", + "en_question": "What is a common public transport that people use to go to university in your country?", + "annotations": [ + { + "answers": [ + "地铁" + ], + "en_answers": [ + "subway" + ], + "count": 4 + }, + { + "answers": [ + "滴滴快车" + ], + "en_answers": [ + "didi express" + ], + "count": 1 + }, + { + "answers": [ + "火车" + ], + "en_answers": [ + "train" + ], + "count": 1 + }, + { + "answers": [ + "汽车" + ], + "en_answers": [ + "car" + ], + "count": 1 + }, + { + "answers": [ + "飞机" + ], + "en_answers": [ + "airplane" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-04": { + "question": "中国的小学生放学后通常做些什么?", + "en_question": "What do elementary students in your country usually do after school?", + "annotations": [ + { + "answers": [ + "写作业", + "做作业" + ], + "en_answers": [ + "do homework" + ], + "count": 4 + }, + { + "answers": [ + "玩弹珠游戏" + ], + "en_answers": [ + "play marbles game" + ], + "count": 1 + }, + { + "answers": [ + "去游乐场" + ], + "en_answers": [ + "go to the amusement park" + ], + "count": 1 + }, + { + "answers": [ + "吃饭" + ], + "en_answers": [ + "eat" + ], + "count": 1 + }, + { + "answers": [ + "看中央1", + "看中央7" + ], + "en_answers": [ + "watch cctv-1" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + } +} \ No newline at end of file diff --git a/data/annotations/Ethiopia_data.json b/data/annotations/Ethiopia_data.json new file mode 100644 index 0000000000000000000000000000000000000000..7122347baa4845dc58b6c45daf08f6da067121a9 --- /dev/null +++ b/data/annotations/Ethiopia_data.json @@ -0,0 +1,18095 @@ +{ + "Al-en-01": { + "question": "በኢትዮጵያ ቅድመ መደበኛ ልጆች የተለመደ መክሰስ ምንድን ነው?", + "en_question": "What is a common snack for preschool kids in your country?", + "annotations": [ + { + "answers": [ + "ቺፕስ", + "ድንች ጥብስ" + ], + "en_answers": [ + "chips", + "potato fries" + ], + "count": 2 + }, + { + "answers": [ + "ዳቦ", + "ኬክ" + ], + "en_answers": [ + "bread" + ], + "count": 2 + }, + { + "answers": [ + "ሻይ በዳቦ" + ], + "en_answers": [ + "tea with bread" + ], + "count": 2 + }, + { + "answers": [ + "ሽሮ" + ], + "en_answers": [ + "shiro", + "shiro stew", + "shiro wat" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Al-en-02": { + "question": "በኢትዮጵያ ቢራ ጋር ምን ዓይነት ምግብ የተወደደ ነው?", + "en_question": "What is a popular food to go with beer in your country?", + "annotations": [ + { + "answers": [ + "ቁርጥ", + "ቁርጥ ስጋ" + ], + "en_answers": [ + "meat cuts", + "cut meat" + ], + "count": 2 + }, + { + "answers": [ + "ጥብስ", + "ስጋ ጥብስ" + ], + "en_answers": [ + "tibs", + "tebs", + "t’ibs", + "tibbs", + "roasted meat", + "roast meat" + ], + "count": 2 + }, + { + "answers": [ + "ጥሬ ስጋ" + ], + "en_answers": [ + "raw meat" + ], + "count": 2 + }, + { + "answers": [ + "ሸክላ ጥብስ" + ], + "en_answers": [ + "clay fried meat", + "clay-fried meat", + "shekla tibs" + ], + "count": 2 + }, + { + "answers": [ + "ስጋ" + ], + "en_answers": [ + "meat" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-04": { + "question": "በኢትዮጵያ ምን ዓይነት ፍሬ እጅግ ታዋቂ ነው?", + "en_question": "What is the most popular fruit in your country?", + "annotations": [ + { + "answers": [ + "ብርቱካን", + "የብርቱካን ፍሬ", + "መንደሪን" + ], + "en_answers": [ + "orange" + ], + "count": 4 + }, + { + "answers": [ + "ማንጎ" + ], + "en_answers": [ + "mango" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Al-en-06": { + "question": "በኢትዮጵያ በትምህርት ቤት መኖሪያ የተለመደ ምግብ ምንድነው?", + "en_question": "What is a common school cafeteria food in your country?", + "annotations": [ + { + "answers": [ + "ብስኩት" + ], + "en_answers": [ + "biscuits" + ], + "count": 2 + }, + { + "answers": [ + "ጮርናቄ" + ], + "en_answers": [ + "biscuits" + ], + "count": 2 + }, + { + "answers": [ + "ሳሙቡሳ", + "እርጥብ" + ], + "en_answers": [ + "samboosa", + "samosa" + ], + "count": 2 + }, + { + "answers": [ + "ዳቦ" + ], + "en_answers": [ + "bread" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Al-en-08": { + "question": "በኢትዮጵያ በገባያ አዳራሽ ውስጥ በተለይ የሚበሉ ምግቦች ምንናቸው ናቸው?", + "en_question": "What are the most commonly eaten snacks at shopping malls in your country?", + "annotations": [ + { + "answers": [ + "ኩኪስ" + ], + "en_answers": [ + "cookies" + ], + "count": 2 + }, + { + "answers": [ + "ሸንኮራ", + "አገዳ" + ], + "en_answers": [ + "sugar cane" + ], + "count": 2 + }, + { + "answers": [ + "ቆሎ", + "ቆሎ/ዳቦቆሎ" + ], + "en_answers": [ + "qollo", + "kolo", + "qolo" + ], + "count": 2 + }, + { + "answers": [ + "ዳቦ ቆሎ", + "ቆሎ/ዳቦቆሎ" + ], + "en_answers": [ + "dabo qollo", + "dabo kolo", + "daboqolo" + ], + "count": 2 + }, + { + "answers": [ + "ሳንቡሳ" + ], + "en_answers": [ + "samboosa", + "samosa" + ], + "count": 2 + }, + { + "answers": [ + "የታሽጉ ምግቦች", + "የታሽጉ" + ], + "en_answers": [ + "packed foods", + "packaged food" + ], + "count": 1 + }, + { + "answers": [ + "ፍራፍሬ", + "ሙዝ" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-09": { + "question": "በኢትዮጵያ የመዝናኛ ፓርክ ውስጥ ታዋቂ አሰራር ምግብ ምንድነው?", + "en_question": "What is a popular snack at an amusement park in your country?", + "annotations": [ + { + "answers": [ + "ኬክ" + ], + "en_answers": [ + "cake" + ], + "count": 2 + }, + { + "answers": [ + "በርገር" + ], + "en_answers": [ + "burger", + "hamburger" + ], + "count": 2 + }, + { + "answers": [ + "ሳንዱች", + "እርጥብ" + ], + "en_answers": [ + "sandwich" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-16": { + "question": "በኢትዮጵያ ልጆች ቅድመ መደበኛ ትምህርት የሚጀምሩበት እድሜ ስንት ነው? (በአረብኛ ቁጥሮች (ምሳሌ 12) ብቻ ይምረጡ።)", + "en_question": "At what age do kids start preschool in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 3 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-17": { + "question": "በኢትዮጵያ በመጀመሪያ ደረጃ ትምህርት ቤቶች ከትምህርት በኋላ የሚካሄድ ዝነኛ ስፖርት ዓይነት ምንድነው?", + "en_question": "What is a popular afterschool sport for elementary schools in your country?", + "annotations": [ + { + "answers": [ + "እግር ኳስ" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "መረብ ኳስ" + ], + "en_answers": [ + "volleyball" + ], + "count": 2 + }, + { + "answers": [ + "ሩጫ", + "እሩጫ", + "ዝላይ" + ], + "en_answers": [ + "athletics", + "run", + "running" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-18": { + "question": "በኢትዮጵያ በመጀመሪያ ደረጃ ትምህርት ተማሪዎቸ የግል አስጠኚ የሚቀጠርላቸው በተለየ ለየትኛው የትምህርት አይነት ነው?", + "en_question": "For which subject do elementary students get private education in your country?", + "annotations": [ + { + "answers": [ + "ለ ሂሳብ", + "ለሒሳብ", + "ለሂሳብ", + "ለፊዚክስ", + "ለኬሚስትሪ" + ], + "en_answers": [ + "for mathematics", + "mathematics", + "math" + ], + "count": 5 + }, + { + "answers": [ + "ለእንግሊዘኛ", + "ለእንግሊዝኛ" + ], + "en_answers": [ + "for english", + "english" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-19": { + "question": "በኢትዮጵያ በሁለተኛ ደረጃ ትምህርት ተማሪዎች ተመራጭ ሁለተኛ ቋንቋ ምንድን ነው?", + "en_question": "What is a popular second language for high school students in your country?", + "annotations": [ + { + "answers": [ + "እንግሊዛኛ", + "እንግሊዘኛ", + "እንግሊዝኛ" + ], + "en_answers": [ + "english" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-21": { + "question": "በኢትዮጵያ ለብልህ ተማሪ ጠቃሚ ትምህርት ነው ሚባለው የትምህርት አይነት የቱ ነው?", + "en_question": "Which subject is the most important for gifted education in your country?", + "annotations": [ + { + "answers": [ + "ሂሳብ", + "ለ ሂሳብ", + "ሒሳብ" + ], + "en_answers": [ + "mathematics", + "math" + ], + "count": 4 + }, + { + "answers": [ + "ፊዚክስ" + ], + "en_answers": [ + "physics" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-32": { + "question": "በኢትዮጵያ ለምስጋና በዓል ዋነኛው ምግብ ምንድን ነው?", + "en_question": "What is the main dish for Thanksgiving in your country?", + "annotations": [ + { + "answers": [ + "ስጋ" + ], + "en_answers": [ + "meat" + ], + "count": 1 + }, + { + "answers": [ + "ዶሮ" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "ስጋ ቁርጥ" + ], + "en_answers": [ + "meat cuts", + "cut meat" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-33": { + "question": "ሰዎች በኢትዮጵያ ሃሎዊንን ለመውደም ምን ያደርጋሉ?", + "en_question": "What do people do to celebrate Halloween in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "idk": 1, + "no-answer": 0 + } + }, + "Al-en-34": { + "question": "ሰዎች በኢትዮጵያ አዲስ አመት ቀን ሊያከብሩት ምን ያደርጋሉ?", + "en_question": "What do people do to celebrate New Year's Day in your country?", + "annotations": [ + { + "answers": [ + "ችቦ ያበራሉ" + ], + "en_answers": [ + "light a torch", + "lighting a torch" + ], + "count": 2 + }, + { + "answers": [ + "የባህል ልብስ ይለብሳሉ" + ], + "en_answers": [ + "wearing traditional clothes", + "traditional clothes", + "traditional clothing" + ], + "count": 2 + }, + { + "answers": [ + "ስጋ ይገዛሉ" + ], + "en_answers": [ + "buy meat", + "meat" + ], + "count": 1 + }, + { + "answers": [ + "ምግብ ይበላሉ" + ], + "en_answers": [ + "eat food", + "food" + ], + "count": 1 + }, + { + "answers": [ + "ወደ እምነት ስፍራዎች ይሄዳሉ" + ], + "en_answers": [ + "places of faith", + "religious place" + ], + "count": 1 + }, + { + "answers": [ + "ዶሮ ይሰራሉ" + ], + "en_answers": [ + "cook chicken stew", + "chicken stew" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-35": { + "question": "በኢትዮጵያ ሰዎች ገና በአል ለማክበር ምን ያደርጋሉ?", + "en_question": "What do people do to celebrate Christmas in your country?", + "annotations": [ + { + "answers": [ + "የገና ጨዋታ ይጫወታሉ" + ], + "en_answers": [ + "play the gena game", + "gena game", + "christmas game" + ], + "count": 2 + }, + { + "answers": [ + "ዶሮ ይገዛሉ" + ], + "en_answers": [ + "buy chicken", + "chicken" + ], + "count": 2 + }, + { + "answers": [ + "በግ ይገዛሉ" + ], + "en_answers": [ + "buy a sheep", + "buy sheep", + "sheep" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Al-en-36": { + "question": "በኢትዮጵያ ምን ዓይነት ምግብ ከሃሎዊን ጋር ተያይዞ ይገኛል?", + "en_question": "What food is associated with Halloween in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "idk": 1, + "no-answer": 0 + } + }, + "Al-en-37": { + "question": "በኢትዮጵያ በገና በዓል ላይ የተያያዘ ምግብ ምንድነው?", + "en_question": "What food is associated with Christmas in your country?", + "annotations": [ + { + "answers": [ + "ዶሮ ወጥ" + ], + "en_answers": [ + "chicken stew", + "doro wot" + ], + "count": 2 + }, + { + "answers": [ + "ድፎ ዳቦ" + ], + "en_answers": [ + "big bread", + "dough bread", + "difo dabo" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Al-en-38": { + "question": "በኢትዮጵያ በቪልንቴይን ቀን ምን ዓይነት ምግብ ይታያል?", + "en_question": "What food is associated with Valentine's day in your country?", + "annotations": [ + { + "answers": [ + "ቸኮሌት" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Al-en-39": { + "question": "በኢትዮጵያ ሰዎች በልደታቸው ቀን ምን ይበላሉ?", + "en_question": "What do people eat on their birthday in your country?", + "annotations": [ + { + "answers": [ + "ኬክ", + "ኩኪስ" + ], + "en_answers": [ + "cake" + ], + "count": 4 + }, + { + "answers": [ + "ዳቦ" + ], + "en_answers": [ + "bread" + ], + "count": 2 + }, + { + "answers": [ + "በርገር", + "ሳንዱች" + ], + "en_answers": [ + "burger", + "hamburger" + ], + "count": 1 + }, + { + "answers": [ + "ፒዛ", + "ሳምቡሳ" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + }, + { + "answers": [ + "ሙዝ", + "ብርቱካን", + "ፖም", + "ወይን" + ], + "en_answers": [ + "banana" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-40": { + "question": "በኢትዮጵያ ቤተሰቦች ከታናሽ ልጆች ጋር ለመዝናናት የተመረጡ የውጭ ቦታዎች ምንድን ናቸው?", + "en_question": "What is a popular outdoor place for families to have fun with little kids in your country?", + "annotations": [ + { + "answers": [ + "መናፈሻዎች", + "መናፈሻ", + "ፓርኮች" + ], + "en_answers": [ + "parks", + "park" + ], + "count": 4 + }, + { + "answers": [ + "ሞል" + ], + "en_answers": [ + "mall" + ], + "count": 3 + }, + { + "answers": [ + "የዋና ቦታወች" + ], + "en_answers": [ + "swimming places", + "swim" + ], + "count": 1 + }, + { + "answers": [ + "ካፌ" + ], + "en_answers": [ + "cafe" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-43": { + "question": "በኢትዮጵያ ለቤተሰቦች የታወቀ ውስጥ ቤት እንክብካቤ ምንድን ነው?", + "en_question": "What is a popular indoor activity for families in your country?", + "annotations": [ + { + "answers": [ + "ቤት ማጽዳት" + ], + "en_answers": [ + "house cleaning" + ], + "count": 1 + }, + { + "answers": [ + "ማስዋብ" + ], + "en_answers": [ + "decoration" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "no-answer": 1, + "idk": 0 + } + }, + "An-ar-02": { + "question": "በኢትዮጵያ ዩኒቨርስቲ ተማሪዎች ምሳቸውን የሚበሉበት ቦታ የት ነው?", + "en_question": "Where do university students have lunch in your country?", + "annotations": [ + { + "answers": [ + "የዩኒቨርሲቲው ካፌ ውስጥ", + "መመገቢያ አዳራሽ" + ], + "en_answers": [ + "university cafe" + ], + "count": 3 + }, + { + "answers": [ + "ካፌ" + ], + "en_answers": [ + "cafe" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-03": { + "question": "በኢትዮጵያ በከፍተኛ ትምህርት ቤቶች የማጠቃለያ ፈተና ባብዛኛው በየትኛው ወር ይሆን? (በአረቢኛ ቁጥሮች (1~12) ብቻ ምላሽ ይስጡ።)", + "en_question": "Which month is the final exam term usually scheduled at high schools in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 5 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-08": { + "question": "በኢትዮጵያ ተማሪዎች ቀን ትምህርት ቤት ውስጥ ስንት ሰዓት ያሳልፋሉ? (በሙሉ ቁጥር (0~24) ያቅርቡ፣ ያለ ነጥብ)", + "en_question": "How many hours a day do students in your country usually spend at high school? (Provide Arabic numerals in integers (0~24), without any decimal points.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 2 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 2 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-09": { + "question": "በኢትዮጵያ በከፍተኛ ትምህርት ቤት ተማሪዎች ባብዛኛው ስንተ ቋንቋዎችን ይማሩ? (በአረቢኛ ቁጥር (ምሳሌ 5) ብቻ ይምልኩ።)", + "en_question": "How many languages do students study at high school in your country? (Provide Arabic numerals (e.g., 5) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-34": { + "question": "በኢትዮጵያ በትምህርት ቤት በቡድን የሚጫወቱ እጅግ ታዋቂ ስፖርት ምንድን ነው?", + "en_question": "What is the most popular sport played in a team at school in your country?", + "annotations": [ + { + "answers": [ + "ኳስ", + "እግር ኳስ" + ], + "en_answers": [ + "ball", + "football" + ], + "count": 4 + }, + { + "answers": [ + "መረብ ኳስ" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-35": { + "question": "በኢትዮጵያ ታዋቂ የስፖርት አስተያየት ሰጪ ማን ነው?", + "en_question": "Who is the most popular sport commentator in your country?", + "annotations": [ + { + "answers": [ + "ፍቅር ይልቃል" + ], + "en_answers": [ + "feker yilekal" + ], + "count": 4 + }, + { + "answers": [ + "መንሱር አብዱልቀኒ" + ], + "en_answers": [ + "mansur abdulkeni" + ], + "count": 3 + }, + { + "answers": [ + "ኤፍሬም የማነ" + ], + "en_answers": [ + "ephrem yemane" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "An-ar-36": { + "question": "በኢትዮጵያ ምን ዓይነት ስፖርት ቡድን እጅግ ታዋቂ ነው?", + "en_question": "What is the most popular sport team in your country?", + "annotations": [ + { + "answers": [ + "ቡና", + "ኢትዮጵያ ቡና" + ], + "en_answers": [ + "coffee", + "ethiopian coffee sport club" + ], + "count": 3 + }, + { + "answers": [ + "ጊዮርጊስ", + "ቅዱስ ጊዎርጊስ" + ], + "en_answers": [ + "saint george sports club", + "saint george", + "kidus giorgis" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-43": { + "question": "በኢትዮጵያ ሰዎች በተለይ ስፖርት ዝግጅቶችን ተሰባስበው ለመመልከት የሚያዘወትሩት ቦታ የት ነው?", + "en_question": "What are the common places or venues where individuals in your country usually gather to watch sports broadcasts?", + "annotations": [ + { + "answers": [ + "መጠጥ ቤቶች" + ], + "en_answers": [ + "groseri", + "bars" + ], + "count": 4 + }, + { + "answers": [ + "ዲኤስ ቲቪ ቤቶች", + "ዲኤስቲቪ ቤት" + ], + "en_answers": [ + "dstv" + ], + "count": 3 + }, + { + "answers": [ + "ስታዲየም" + ], + "en_answers": [ + "stadium" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-05": { + "question": "በኢትዮጵያ ሰዎች በተለይነት በአንድ ቀን ስንት ጊዜ ይመገባሉ? (በአረቢኛ ቁጥሮች (ምሳሌ 5) ብቻ ይምረጡ።)", + "en_question": "How many meals per day do people from your country usually have? (Provide Arabic numerals (e.g., 5) only.)", + "annotations": [ + { + "answers": [ + "3", + "2", + "4" + ], + "en_answers": [ + "3" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-06": { + "question": "በኢትዮጵያ ሰዎች በቀን ውስጥ እጅግ አስፈላጊ የሆነው ምግብ ምንድን ነው?", + "en_question": "Which is the most important meal of the day to people from your country?", + "annotations": [ + { + "answers": [ + "እንጀራ" + ], + "en_answers": [ + "injera" + ], + "count": 4 + }, + { + "answers": [ + "ሽሮ" + ], + "en_answers": [ + "shiro", + "shiro stew", + "shiro wat" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-08": { + "question": "በኢትዮጵያ የምግብ አሰራር ላይ በተለይ የተለመደ ንጥረ ነግር ምንድን ናቸው?", + "en_question": "What is the most common ingredient used in your country's diet?", + "annotations": [ + { + "answers": [ + "ጨው" + ], + "en_answers": [ + "salt" + ], + "count": 4 + }, + { + "answers": [ + "ዘይት" + ], + "en_answers": [ + "oil" + ], + "count": 2 + }, + { + "answers": [ + "ሽንኩርት" + ], + "en_answers": [ + "onion" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ca-sp-09": { + "question": "ኢትዮጵያውያን በተለይ ምግብ ከጨረሱ በኋላ ምን ይመገባሉ?", + "en_question": "What do people from your country usually eat for dessert?", + "annotations": [ + { + "answers": [ + "ብርቱካን" + ], + "en_answers": [ + "orange" + ], + "count": 1 + }, + { + "answers": [ + "ሾርባ" + ], + "en_answers": [ + "soup" + ], + "count": 1 + }, + { + "answers": [ + "ቡና" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "Ca-sp-11": { + "question": "በኢትዮጵያ ሰዎች በሳምንት ውስጥ በተለይ የቤተሰብ ምግብ የሚያዘጋጁበት ቀን የትኛው ነው?", + "en_question": "Which day of the week do people usually organize a family meal in your country?", + "annotations": [ + { + "answers": [ + "እሁድ", + "ሰንበት" + ], + "en_answers": [ + "sunday" + ], + "count": 3 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "Ca-sp-14": { + "question": "በኢትዮጵያ ተወዳጅ ትኩስ መጠጥ ምንድን ነው?", + "en_question": "Which is the most popular hot drink in your country?", + "annotations": [ + { + "answers": [ + "ቡና" + ], + "en_answers": [ + "coffee" + ], + "count": 5 + }, + { + "answers": [ + "ሻይ" + ], + "en_answers": [ + "tea" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-19": { + "question": "በኢትዮጵያ የሚገኙ ወጣቶች ሌሊት ክለብ ሲሄዱ በተለይ ምን ይጠጣሉ?", + "en_question": "What do young people from your country usually drink at the night club?", + "annotations": [ + { + "answers": [ + "ቢራ" + ], + "en_answers": [ + "beer" + ], + "count": 5 + }, + { + "answers": [ + "አረቄ" + ], + "en_answers": [ + "liquor" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-21": { + "question": "በኢትዮጵያ ሰዎች በተለይ በየትኛው ወር በአላት ይበዛሉ? (በአረቢኛ ቁጥር (1~12) ብቻ ስጡ።)", + "en_question": "At which month do people usually take holidays in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "8", + "ሚያዚያ" + ], + "en_answers": [ + "8" + ], + "count": 4 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-29": { + "question": "በኢትዮጵያ ሰዎች አዲስ አመት ዋዜማ ምን ባህል አለ?", + "en_question": "What tradition is there in your country for New Year's Eve?", + "annotations": [ + { + "answers": [ + "የችቦ ማብራት" + ], + "en_answers": [ + "lighting a torch", + "light a torch", + "torch" + ], + "count": 2 + }, + { + "answers": [ + "ርችት መተኮስ" + ], + "en_answers": [ + "shooting fireworks", + "firework" + ], + "count": 1 + }, + { + "answers": [ + "ጨፌ ማጨድ" + ], + "en_answers": [ + "grass collecting", + "burn chibo", + "burn grass", + "collect grass", + "chibo" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-38": { + "question": "በኢትዮጵያ ለአንድ ቤተሰብ የተለመደ የቤት አይነት ምን አይንት ነው?", + "en_question": "Which is the typical type of house for a family in your country?", + "annotations": [ + { + "answers": [ + "የቆርቆሮ ቤት" + ], + "en_answers": [ + "tin house" + ], + "count": 2 + }, + { + "answers": [ + "የሳር ቤት", + "ጎጆ ቤት" + ], + "en_answers": [ + "bothy house", + "grass house" + ], + "count": 2 + }, + { + "answers": [ + "የጭቃ ቤት" + ], + "en_answers": [ + "mud house" + ], + "count": 1 + }, + { + "answers": [ + "ኮንደሚኒየም", + "የጋራ መኖሪያ ቤት" + ], + "en_answers": [ + "condominium" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ca-sp-41": { + "question": "በኢትዮጵያ አረጋዊያን በተለይ የሚኖሩበት ቦታ የት ነው?", + "en_question": "Where do the dependent elderly usually live in your country?", + "annotations": [ + { + "answers": [ + "የአረጋዊያን እንክብካቤ ማእከል", + "መቄዶንያ" + ], + "en_answers": [ + "elderly care center", + "center for the elderly care", + "mekedonia" + ], + "count": 3 + }, + { + "answers": [ + "የዕምነት ተቋማት", + "የምነት ተቋማት" + ], + "en_answers": [ + "religious institutions", + "religious places" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-42": { + "question": "ኢትዮጵያ የእናትነት ፍቃድ ለእናቶች ስንት ሳምንት ነው? (በአረብ ቁጥሮች ብቻ ምላሽ ይስጡ (ምሳሌ 20)።)", + "en_question": "How long (in weeks) is your country's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "16" + ], + "en_answers": [ + "16" + ], + "count": 3 + }, + { + "answers": [ + "17" + ], + "en_answers": [ + "17" + ], + "count": 1 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-43": { + "question": "የኢትዮጵያ ለአባቶች ለስንት ሳምንት ፍቃድ ይሰጣል? (በዓረብ ቁጥር ብቻ ምላሽ ይስጡ (ለምሳሌ፣ 20)።)", + "en_question": "How long (in weeks) is your country's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 4 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-45": { + "question": "በኢትዮጵያ ለቤተሰብ ሽርሽር በተመረጡት መድረኮች ውስጥ የታወቀ ዓይነት መድረክ ምንድን ነው?", + "en_question": "What type of destination is commonly chosen for a family vacation in your country?", + "annotations": [ + { + "answers": [ + "ሆቴል" + ], + "en_answers": [ + "hotel" + ], + "count": 1 + }, + { + "answers": [ + "ፓርኮች", + "ፓርክ", + "መናፈሻ" + ], + "en_answers": [ + "park" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Gu-ch-05": { + "question": "በኢትዮጵያ ትልቅ ሰዎች ምን ዓይነት ስፖርት በጣም ይዎዳሉ?", + "en_question": "What sports do seniors like the most in your country?", + "annotations": [ + { + "answers": [ + "ከረንቡላ" + ], + "en_answers": [ + "billiard" + ], + "count": 2 + }, + { + "answers": [ + "ዳማ" + ], + "en_answers": [ + "ethiopian dama", + "dama" + ], + "count": 2 + }, + { + "answers": [ + "ካርታ" + ], + "en_answers": [ + "map" + ], + "count": 2 + }, + { + "answers": [ + "ሶምሶማ" + ], + "en_answers": [ + "trot", + "jogging" + ], + "count": 1 + }, + { + "answers": [ + "ገበጣ" + ], + "en_answers": [ + "gebeta", + "gabata", + "gäbäta" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-06": { + "question": "በኢትዮጵያ ወንዶች ምን ዓይነት ስፖርት እንደሚወዱ በርካታ ይጫወታሉ?", + "en_question": "What sports do men like to play the most in your country?", + "annotations": [ + { + "answers": [ + "እግር ኳስ" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "መረብ ኳስ" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-07": { + "question": "በኢትዮጵያ እጅግ ዝነኛ ቅርጫት ኳስ ተጫዋች ማን ነው?", + "en_question": "Who is the most famous basketball player in your country?", + "annotations": [], + "idks": { + "idk": 4, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Gu-ch-08": { + "question": "በኢትዮጵያ ልጆች መካከል እጅግ ታዋቂ የሆነ ስፖርት ምንድነው?", + "en_question": "What is the most popular sports among children in your country?", + "annotations": [ + { + "answers": [ + "እግር ኳስ", + "ኳስ" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-09": { + "question": "በኢትዮጵያ ሴቶች ምን ዓይነት ስፖርት እንደሚወዱ እጅግ ይጫወታሉ?", + "en_question": "What sports do women like to play the most in your country?", + "annotations": [ + { + "answers": [ + "ገመድ ዝላይ" + ], + "en_answers": [ + "jumping rope", + "jump rope" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Gu-ch-11": { + "question": "ኢትዮጵያ በኦሊምፒክ ብዙ ሜዳሊያ በምን ዓይነት ስፖርት ነው ያመጣችው?", + "en_question": "What sports event has your country won the most gold medals at the Olympics?", + "annotations": [ + { + "answers": [ + "በሩጫ" + ], + "en_answers": [ + "athletics", + "race", + "running" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-15": { + "question": "በኢትዮጵያ ዩኒቨርስቲ ውስጥ ወንድ ተማሪዎች በተረኛም የሚወዱት ስፖርት ምንድን ነው?", + "en_question": "What sports do male students in university like to play the most in your country?", + "annotations": [ + { + "answers": [ + "እግር ኳስ" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-16": { + "question": "በኢትዮጵያ በአንድ ቤተሰብ በአማካይ ስንት ሰዎች ይኖራሉ? (በአረቢክ ቁጥሮች (ምሳሌ 12) ብቻ ይምረጡ።)", + "en_question": "How many people are there in a family on average in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 2 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 2 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-18": { + "question": "በኢትዮጵያ አንድ ባል እና ሚስት በአማካይ ስንት ሰዎች ይኖራሉ? (በአረቢኛ ቁጥር ብቻ ምላሽ ይስጡ። ምሳሌ 12።)", + "en_question": "How many children do couples usually have in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "Gu-ch-31": { + "question": "በኢትዮጵያ የመጀመሪያ ደረጃ ትምህርት ስንት አመት ነው? (በአረቢኛ ቁጥሮች ብቻ (ምሳሌ 12) ይምላሉ።)", + "en_question": "What is the duration of elementary school in years in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 3 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-32": { + "question": "በኢትዮጵያ የተማሪዎች ዝቅተኛ የማጠናቀቂያ ዓመት ስንት ነው? (በአረቢኛ ቁጥሮች ብቻ ምላሽ ይስጡ (ለምሳሌ፣ 12)።)", + "en_question": "What is the duration of compulsory education in years in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 2 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 2 + }, + { + "answers": [ + "23" + ], + "en_answers": [ + "23" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-33": { + "question": "በኢትዮጵያ ተማሪዎች ሁለተኛውን ቋንቋ ከምንት ዓመት ጀምሮ ማስተማር ይጀምራሉ? (በአረቢኛ ቁጥሮች (ምሳሌ 12) ብቻ ይምልከቱ።)", + "en_question": "From which age do students start learning their second language in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "13" + ], + "en_answers": [ + "13" + ], + "count": 2 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 2 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-38": { + "question": "በኢትዮጵያ የመጀመሪያ ዲግሪ ትምህርት ርዝመቱ ስንት ነው? (በአረብኛ ቁጥሮች ብቻ (ምሳሌ 12) ይምልኩ።)", + "en_question": "What is the duration of undergraduate education in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 3 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-40": { + "question": "በኢትዮጵያ ቅድመ የመጀመሪያ ደረጃ ተማሪዎች ትምህርት ቤት ስንት ሰዓት ይጨርሳሉ? (በየሰዓቱ ቅጽ ይምረጡ (ምሳሌ 18:00, 09:00).)", + "en_question": "What time do younger elementary school students finish school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "14:00", + "08:00" + ], + "en_answers": [ + "14:00" + ], + "count": 2 + }, + { + "answers": [ + "17:00", + "11:00" + ], + "en_answers": [ + "17:00" + ], + "count": 2 + }, + { + "answers": [ + "17:30", + "05:30" + ], + "en_answers": [ + "17:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-41": { + "question": "በኢትዮጵያ የመጀመሪያ ደረጃ ተማሪዎች በተለይ ምን እና ስንት የሙዚቃ መሣሪያዎች ይጫወታሉ? (በአረብኛ ቁጥሮች (ምሳሌ 12) ብቻ ስጡ።)", + "en_question": "How many musical instruments do elementary school students in your country typically play? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Ji-ko-02": { + "question": "በኢትዮጵያ ሰዎች በሳምንቱ ምን ቀን የድርጅት እራት ምግብ መብላትን ይመርጣሉ?", + "en_question": "What day of the week do people in your country prefer to have company dinners?", + "annotations": [ + { + "answers": [ + "እሁድ", + "ሰንበት" + ], + "en_answers": [ + "sunday" + ], + "count": 1 + }, + { + "answers": [ + "ሰኞ", + "1" + ], + "en_answers": [ + "monday" + ], + "count": 1 + }, + { + "answers": [ + "ቅዳሜ" + ], + "en_answers": [ + "saturday" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "Ji-ko-03": { + "question": "በኢትዮጵያ ከፍተኛ ብዛት ያላቸው ፋይናንስ ኩባንያዎች በየት ክልል/ከተማ ላይ ናቸው?", + "en_question": "Which region/city has the highest number of financial companies in your country?", + "annotations": [ + { + "answers": [ + "አዲስ አበባ" + ], + "en_answers": [ + "addis abeba", + "addis ababa" + ], + "count": 4 + }, + { + "answers": [ + "ኦሮሚያ" + ], + "en_answers": [ + "oromia" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-07": { + "question": "በኢትዮጵያ ውስጥ እጅግ ታዋቂ የሆነ የግል ድርጅት ምንድን ነው?", + "en_question": "What is the most famous private company in your country?", + "annotations": [ + { + "answers": [ + "ሜድሮክ", + "ሚድሮክ" + ], + "en_answers": [ + "medroc", + "midroc" + ], + "count": 4 + }, + { + "answers": [ + "ኢንሹራንስ", + "ሶስተኛ ወገን" + ], + "en_answers": [ + "insurance" + ], + "count": 1 + }, + { + "answers": [ + "ቢአይካ" + ], + "en_answers": [ + "bika", + "beaeka general business", + "beaeka" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-08": { + "question": "በኢትዮጵያ ሰው ከፍተኛው ሰዓት በአንድ ሳምንት ሊሠራ የሚችል ሰዓት ስንት ነው? (በአረቢክ ቁጥሮች (ምሳሌ 12) ብቻ ይምረጡ።)", + "en_question": "What is the maximum number of hours one can work per week in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 3 + }, + { + "answers": [ + "48" + ], + "en_answers": [ + "48" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-09": { + "question": "በኢትዮጵያ ሰዎች በድርጅት ስብሰባ ጊዜ በተለይ ምን ይበላሉ?", + "en_question": "What do people typically eat during company get-together in your country?", + "annotations": [ + { + "answers": [ + "ቆሎ" + ], + "en_answers": [ + "qollo", + "kolo", + "qolo" + ], + "count": 5 + }, + { + "answers": [ + "ኩኪስ" + ], + "en_answers": [ + "cookies" + ], + "count": 4 + }, + { + "answers": [ + "ማስቲካ" + ], + "en_answers": [ + "chewing gum", + "gum" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-14": { + "question": "የኢትዮጵያ ወኪል የወጭ ንግድ ምርት ምንድነው?", + "en_question": "What is the representative export item of your country?", + "annotations": [ + { + "answers": [ + "ቡና" + ], + "en_answers": [ + "coffee" + ], + "count": 4 + }, + { + "answers": [ + "ቆዳ", + "ቆዳ እና ሌጦ", + "ሌጦ" + ], + "en_answers": [ + "skin", + "animal skin", + "leather" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-15": { + "question": "በኢትዮጵያ የምሳ ሰዓት በሰዓት ስንት ሰዓት ነው? (እባኮትን በአረቢክ ቁጥር እስከ አንድ ነጥብ ቁጥር (ምሳሌ 2, 3.5) ብቻ ያቅርቡ።)", + "en_question": "How long (in hours) is the typical lunch break in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-16": { + "question": "በኢትዮጵያ እናቶች ከወሊድ በኋላ ለተወሰነ ጊዜ ረፍት የሚያደርጉት የት ነው ?", + "en_question": "Where do mothers stay for a certain period after childbirth for recovery in your country?", + "annotations": [ + { + "answers": [ + "4 ወር" + ], + "en_answers": [ + "4 months", + "four months" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-19": { + "question": "በወላጆች ቀን በኢትዮጵያ በተለይ የሚሰጥ አበባ ምንድነው?", + "en_question": "What is your country's most commonly given flower on Parents' Day?", + "annotations": [ + { + "answers": [ + "ጽጌረዳ", + "ጽጌሬዳ" + ], + "en_answers": [ + "rose" + ], + "count": 3 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-22": { + "question": "በኢትዮጵያ ሰዎች በተለይ የመጀመሪያ ደመወዛቸውን በምን ላይ ያውላሉ?", + "en_question": "What do people especially spend their first salary on in your country's society?", + "annotations": [ + { + "answers": [ + "ለግብዣ", + "ሰው ይጋብዛሉ" + ], + "en_answers": [ + "feast", + "invite people", + "party" + ], + "count": 3 + }, + { + "answers": [ + "እቃ ለመግዛት" + ], + "en_answers": [ + "goods" + ], + "count": 2 + }, + { + "answers": [ + "ልብስ ይገዛሉ" + ], + "en_answers": [ + "clothes" + ], + "count": 2 + }, + { + "answers": [ + "ለምግብ" + ], + "en_answers": [ + "food" + ], + "count": 1 + }, + { + "answers": [ + "ስጦታ ይሰጣሉ" + ], + "en_answers": [ + "gift" + ], + "count": 1 + }, + { + "answers": [ + "የቤት እቃ ይገዛሉ" + ], + "en_answers": [ + "furniture" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-24": { + "question": "በኢትዮጵያ ልጆች በሚወዷቸው የመዝናኛ ተቋማት መካከል እጅግ የተመረጠው የመዝናኛ ተቋም ማንኛው ነው?", + "en_question": "What is the most preferred recreational facility among children in your country?", + "annotations": [ + { + "answers": [ + "ኤድናሞል", + "ኤድና ሞል" + ], + "en_answers": [ + "edinamol", + "ednamall", + "edna mall" + ], + "count": 3 + }, + { + "answers": [ + "ቦራ" + ], + "en_answers": [ + "bora", + "bora amusement park" + ], + "count": 2 + }, + { + "answers": [ + "ቴሌቭዝን" + ], + "en_answers": [ + "television", + "tv" + ], + "count": 1 + }, + { + "answers": [ + "ሲግናል ሞል" + ], + "en_answers": [ + "signal mall", + "centurymall", + "century mall" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-25": { + "question": "በኢትዮጵያ የቤተሰብ በዓላት ምንናን ናቸው?", + "en_question": "What are the family-related holidays in your country?", + "annotations": [ + { + "answers": [ + "አዲስ አመት", + "እንቁጣጣሽ" + ], + "en_answers": [ + "new year" + ], + "count": 1 + }, + { + "answers": [ + "መስቀል" + ], + "en_answers": [ + "cross", + "meskel", + "meskal", + "mesqel" + ], + "count": 1 + }, + { + "answers": [ + "የሀይማኖት በዓላት" + ], + "en_answers": [ + "religious holidays" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "not-applicable": 1, + "idk": 0 + } + }, + "Ji-ko-26": { + "question": "በኢትዮጵያ ማህበረሰብ ውስጥ ልጆች ከወላጆቻቸው እገዛ መውጣታቸውን ሚያሳይ ቁልፍ ማህበረሰብ ምስል እንዲሁም እንቅስቃሴዎች ምንድነው?", + "en_question": "What are the key milestones associated with children's independence from their parents in your country's society?", + "annotations": [ + { + "answers": [ + "ስራ መያዝ", + "ስራ መያዛቸው", + "የራሳቸው ስራ ሲጀምሩ" + ], + "en_answers": [ + "getting a job", + "job", + "starting their work", + "work" + ], + "count": 4 + }, + { + "answers": [ + "ወደ ትዳር ሲገቡ", + "ጋብቻ" + ], + "en_answers": [ + "getting married", + "married", + "marriage" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-27": { + "question": "በኢትዮጵያ አያቶችን ስትጎብኙ በተለመደ የምትሰጡት ስጦታ ምንድነው?", + "en_question": "What is the common gift you give when visiting elderly parents in your country?", + "annotations": [ + { + "answers": [ + "መቁጠሪያ" + ], + "en_answers": [ + "monk counter", + "calendar" + ], + "count": 2 + }, + { + "answers": [ + "ልብስ" + ], + "en_answers": [ + "clothes", + "clothing" + ], + "count": 2 + }, + { + "answers": [ + "የባህል ልብስ", + "የአበሻ ልብስ", + "የአበሻ ቀሚስ", + "ጥበብ" + ], + "en_answers": [ + "traditional clothing", + "traditional clothes", + "traditional dress" + ], + "count": 1 + }, + { + "answers": [ + "ጥሬ ቡና", + "ቡና በኪሎ" + ], + "en_answers": [ + "coffee", + "row coffee", + "raw coffee" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-28": { + "question": "በኢትዮጵያ ልጅ ከተወለደ በኋላ ሰዎች የመጀመሪያውን የሚያከብሩት ቀን መቼ ነው?", + "en_question": "When is the first day that people celebrate after a child is born in your country?", + "annotations": [ + { + "answers": [ + "ከሳምንት በኋላ" + ], + "en_answers": [ + "after a week" + ], + "count": 2 + }, + { + "answers": [ + "ክርስትና" + ], + "en_answers": [ + "epiphany", + "christening", + "baptism" + ], + "count": 2 + }, + { + "answers": [ + "በ1 አመቱ", + "ልደት" + ], + "en_answers": [ + "in 1 year", + "one year", + "first year" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-29": { + "question": "በኢትዮጵያ ማኅበር ውስጥ የትኛው እድሜ በታላቅ ልምምድ የሚከበር የልደት ቀን ነው?", + "en_question": "Which age's birthday is celebrated the most grandly in your country's society?", + "annotations": [ + { + "answers": [ + "25" + ], + "en_answers": [ + "25", + "twenty fifth" + ], + "count": 2 + }, + { + "answers": [ + "18" + ], + "en_answers": [ + "eighteenth", + "18" + ], + "count": 1 + }, + { + "answers": [ + "1", + "1ኛ አምት", + "ልደት" + ], + "en_answers": [ + "1", + "first", + "birth" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ji-ko-31": { + "question": "በኢትዮጵያ የአንደኛ እና ሁለተኛ ደረጃ ተማሪዎች ለፈተናዎች በተለይ የት ያጠናሉ?", + "en_question": "Where do middle and high school students in your country usually study for exams?", + "annotations": [ + { + "answers": [ + "ቤተ-መፅሐፍት", + "ቤተ መፃህፍት", + "ቤተ መጽሀፍት", + "ላይብረሪ" + ], + "en_answers": [ + "library" + ], + "count": 4 + }, + { + "answers": [ + "ቤታቸው" + ], + "en_answers": [ + "home", + "house" + ], + "count": 2 + }, + { + "answers": [ + "ሜዳ", + "ሜዳ ላይ" + ], + "en_answers": [ + "field", + "at field" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-33": { + "question": "በኢትዮጵያ የሁለተኛ ደረጃ ትምህርት ቤት ተማሪዎች ከእራት በኋላ በተለምዶ የት ይሄዳሉ?", + "en_question": "Where do high school students in your country usually go after dinner?", + "annotations": [ + { + "answers": [ + "ጥናት", + "ወደ ጥናት" + ], + "en_answers": [ + "study", + "go to study" + ], + "count": 2 + }, + { + "answers": [ + "ቤታቸው ውስጥ ይሆናሉ" + ], + "en_answers": [ + "home" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "Ji-ko-34": { + "question": "በኢትዮጵያ የመጀመሪያ ደረጃ ተማሪዎች ወደ ትምህርት ቤት እንዴት ይሄዳሉ?", + "en_question": "How do elementary school students in your country go to school?", + "annotations": [ + { + "answers": [ + "በእግር", + "በእግር ጉዞ" + ], + "en_answers": [ + "walk" + ], + "count": 4 + }, + { + "answers": [ + "በሰርቪስ" + ], + "en_answers": [ + "by using service" + ], + "count": 2 + }, + { + "answers": [ + "በቤተሰብ እገዛ", + "በቤተሰቦቻቸው እገዛ" + ], + "en_answers": [ + "with family" + ], + "count": 1 + }, + { + "answers": [ + "በታክሲ" + ], + "en_answers": [ + "taxi" + ], + "count": 1 + }, + { + "answers": [ + "በሳይክል", + "በብስክሌት" + ], + "en_answers": [ + "bike", + "bicycle" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-35": { + "question": "በኢትዮጵያ ውስጥ በጣም የተለመደው የግል ትምህርት ምንድነው?", + "en_question": "What is the most common form of private education in your country?", + "annotations": [ + { + "answers": [ + "ሴንጆሴፍ" + ], + "en_answers": [ + "st. joseph", + "st. joseph school", + "st joseph's school" + ], + "count": 2 + }, + { + "answers": [ + "ናዝሬት ስኩል" + ], + "en_answers": [ + "nazeret school", + "nazareth school" + ], + "count": 2 + }, + { + "answers": [ + "የሙያ", + "የእጅ ስራ" + ], + "en_answers": [ + "vocational", + "career" + ], + "count": 1 + }, + { + "answers": [ + "የኮምፒተር ትምህርት" + ], + "en_answers": [ + "computer training", + "computer engineering" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-36": { + "question": "በኢትዮጵያ ትምህርት አካዳሚ/የግል ትምህርታዊ ተቋማት መካከለኛ ወይም ከፍተኛ ትምህርት ደረጃ ተማሪዎች በብዛት የሚከታተሉት ትምህርት ምንድን ነው?", + "en_question": "Which subject’s academy/private educational institute do middle or high students most frequently attend in your country?", + "annotations": [ + { + "answers": [ + "ሒሳብ", + "ሂሳብ" + ], + "en_answers": [ + "mathematics", + "math" + ], + "count": 2 + }, + { + "answers": [ + "አካውንቲንግ", + "የሒሳብ ስራ" + ], + "en_answers": [ + "accounting" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-37": { + "question": "በኢትዮጵያ የአንደኛ እና ሁለተኛ ደረጃ ትምህርት ቤት ተማሪዎች ወደ ትምህርት ቤት ሲሄዱ ምን አይነት አልባሳት ይለብሳሉ?", + "en_question": "What type of clothing do middle and high school students wear to school in your country?", + "annotations": [ + { + "answers": [ + "ዩኒፎርም", + "የደንብ ልብስ" + ], + "en_answers": [ + "uniform" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-38": { + "question": "በኢትዮጵያ ለመግባት በጣም ከባድ የሆነው የትምህርት ዘርፍ የቱ ነው?", + "en_question": "Which major is considered the most difficult to gain admission to in your country?", + "annotations": [ + { + "answers": [ + "ሒሳብ", + "ሂሳብ" + ], + "en_answers": [ + "mathematics", + "math" + ], + "count": 4 + }, + { + "answers": [ + "ፊዚክስ" + ], + "en_answers": [ + "physics" + ], + "count": 3 + }, + { + "answers": [ + "ጤና", + "ህክምና" + ], + "en_answers": [ + "health", + "medicine" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-39": { + "question": "በኢትዮጵያ የመጀመሪያ ትምህርት ተማሪዎች በተለይ የሚማሩት ሙዚቃ መሣሪያ ምንድን ነው?", + "en_question": "What is the most commonly learned musical instrument by elementary school students in your country?", + "annotations": [ + { + "answers": [ + "ክራር" + ], + "en_answers": [ + "kirare", + "krar" + ], + "count": 3 + }, + { + "answers": [ + "ከበሮ" + ], + "en_answers": [ + "drum" + ], + "count": 2 + }, + { + "answers": [ + "ዋሽንት" + ], + "en_answers": [ + "washint", + "flute" + ], + "count": 2 + }, + { + "answers": [ + "ኪቦርድ", + "ፒያኖ" + ], + "en_answers": [ + "keyboard", + "piano" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ji-ko-40": { + "question": "በኢትዮጵያ ሁለተኛ ደረጃ በትምህርት ቤቶች ውስጥ በእረፍት ጊዜ ተማሪዎች ምን ያደርጋሉ?", + "en_question": "What do high school students typically do during break time in schools in your country?", + "annotations": [ + { + "answers": [ + "ኳስ ይጫወታሉ" + ], + "en_answers": [ + "playing football", + "playing soccer", + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "ሻይ ይጠጣሉ" + ], + "en_answers": [ + "drink tea", + "tea" + ], + "count": 2 + }, + { + "answers": [ + "ከጓደኛ ጋር ያወራሉ" + ], + "en_answers": [ + "talking with a friend", + "talk with friends", + "chat" + ], + "count": 1 + }, + { + "answers": [ + "ይጫወታሉ" + ], + "en_answers": [ + "play" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-41": { + "question": "በኢትዮጵያ በትምህርት ቤቶች ውስጥ ተማሪዎች የአይነት ጫማ ይለብሳሉ?", + "en_question": "What kind of shoes do students wear in schools in your country?", + "annotations": [ + { + "answers": [ + "ስኒከር" + ], + "en_answers": [ + "sneakers" + ], + "count": 2 + }, + { + "answers": [ + "አይለብሱም" + ], + "en_answers": [ + "don't wear" + ], + "count": 1 + }, + { + "answers": [ + "ነጠላ ጫማ", + "ክፍት ጫማ" + ], + "en_answers": [ + "flip flops", + "flat shoes", + "sandals" + ], + "count": 1 + }, + { + "answers": [ + "ሽፍን ጫማ" + ], + "en_answers": [ + "closed shoes" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-42": { + "question": "በኢትዮጵያ ዩኒቨርስቲ መግቢያ ፈተና የሚሰጥባቸው የትምህርት አይነቶች እነማን ናቸው?", + "en_question": "What are the required subjects in your country's university entrance exam?", + "annotations": [ + { + "answers": [ + "ተፈጥሮ ሳይንስ" + ], + "en_answers": [ + "natural science" + ], + "count": 2 + }, + { + "answers": [ + "ማህበራዊ ሳይንስ" + ], + "en_answers": [ + "social science" + ], + "count": 2 + }, + { + "answers": [ + "ሒሳብ" + ], + "en_answers": [ + "mathematics", + "math" + ], + "count": 2 + }, + { + "answers": [ + "እንግሊዘኛ" + ], + "en_answers": [ + "english" + ], + "count": 2 + }, + { + "answers": [ + "ስነ-ዜጋ", + "ስነ ዜጋ" + ], + "en_answers": [ + "civics", + "citizenship" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-44": { + "question": "በኢትዮጵያ ውስጥ ለትምህርት ከፍተኛ ትኩረት ያለው ክልል ወይም ከተማ ማንኛው ነው?", + "en_question": "Which region (within a city) in your country has the highest academic fervor?", + "annotations": [ + { + "answers": [ + "አማራ ክልል" + ], + "en_answers": [ + "amhara region", + "amhara" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 2, + "not-applicable": 0 + } + }, + "Ji-ko-45": { + "question": "በኢትዮጵያ ዩኒቨርስቲ ፌስቲቫሎች ላይ ሰዎች እንደሚጠብቁት ነገር ምንድን ነው?", + "en_question": "What do people look forward to the most at university festivals in your country?", + "annotations": [ + { + "answers": [ + "የሙዚቃ ፕሮግራም" + ], + "en_answers": [ + "music program", + "music" + ], + "count": 1 + }, + { + "answers": [ + "የስፖርት ውድድር" + ], + "en_answers": [ + "sports competition", + "sports" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "Jo-sp-01": { + "question": "በኢትዮጵያ ሁለተኛው ተወዳጅ ስፖርት ምንድነው?", + "en_question": "What is the second most popular sport in your country?", + "annotations": [ + { + "answers": [ + "ሩጫ" + ], + "en_answers": [ + "athletics", + "run", + "running" + ], + "count": 4 + }, + { + "answers": [ + "መረብ ኳስ" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-02": { + "question": "በኢትዮጵያ ያልኳስ ተወዳጅ ስፖርት ምንድን ነው?", + "en_question": "What is the most popular sport played without a ball in your country?", + "annotations": [ + { + "answers": [ + "ሩጫ" + ], + "en_answers": [ + "athletics", + "run", + "running" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-09": { + "question": "በኢትዮጵያ ምን ዓይነት ስፖርቶች በባለሃብቶች ይዘወተራል?", + "en_question": "What sports are most associated with the upper class in your country?", + "annotations": [ + { + "answers": [ + "ሶምሶማ", + "ዱብዱብ" + ], + "en_answers": [ + "trot", + "jogging" + ], + "count": 1 + }, + { + "answers": [ + "ጎልፍ" + ], + "en_answers": [ + "golf" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-13": { + "question": "በኢትዮጵያ ምን ዓይነት ውሃ ስፖርት እጅግ ታዋቂ ነው?", + "en_question": "What is the most popular water sport in your country?", + "annotations": [ + { + "answers": [ + "የውሀ ዋና", + "ዋና", + "የውሃ ዋና", + "ውሃ ዋና" + ], + "en_answers": [ + "swimming", + "swim" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-14": { + "question": "በኢትዮጵያ ምን ዓይነት አእምሮ ስፖርት እጅግ ታዋቂ ነው?", + "en_question": "What is the most popular mental sport in your country?", + "annotations": [ + { + "answers": [ + "ዳማ" + ], + "en_answers": [ + "ethiopian dama", + "dama" + ], + "count": 2 + }, + { + "answers": [ + "ቸዝ" + ], + "en_answers": [ + "chess" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Jo-sp-18": { + "question": "በኢትዮጵያ አንድ መደበኛ ሠራተኛ በአንድ ዓመት ስንት ቀን በአል እንደሚያገኝ ነው? (በአረቢክ ቁጥሮች (ምሳሌ 12) ብቻ ይምረጡ።)", + "en_question": "How many holiday days per year does a standard worker gets in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 2 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Jo-sp-19": { + "question": "በኢትዮጵያ ከግብርና ጋር ተያይዞ በተለምዶ የተያያዘው ክልል የቱ ነው?", + "en_question": "What region in your country has been traditionally associated with agriculture?", + "annotations": [ + { + "answers": [ + "አማራ" + ], + "en_answers": [ + "amhara" + ], + "count": 5 + }, + { + "answers": [ + "ኦሮሚያ" + ], + "en_answers": [ + "oromia" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-21": { + "question": "በኢትዮጵያ ሰዎች ለምሳ በምን ሰዓት ከሥራ ሲወጡ በተለይ ሰዓት ካለ ምን ሰዓት ነው? (በ HH:MM ቅጽ ያቅርቡ (ምሳሌ 18:00, 09:00).)", + "en_question": "What time, if any, do people usually leave work for lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "12:00", + "06:00" + ], + "en_answers": [ + "12:00" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-31": { + "question": "በኢትዮጵያ ሁለተኛ ደረጃ ትምህርት ቤት ተማሪዎች በስንት ሰዓት ከትምህርት ቤት ይወጣሉ? (በየሰዓቱ በ HH:MM ቅጽ (ምሳሌ 18:00, 09:00) ይምረጡ።)", + "en_question": "What time do high school students tend to leave school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "15:30", + "09:30" + ], + "en_answers": [ + "15:30" + ], + "count": 2 + }, + { + "answers": [ + "12:30", + "06:30" + ], + "en_answers": [ + "12:30" + ], + "count": 2 + }, + { + "answers": [ + "17:00", + "11:00" + ], + "en_answers": [ + "17:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-32": { + "question": "በኢትዮጵያ በመጀመሪያ ደረጃ ትምህርት ቤት በተማሪዎች በትምህርት ቤት ውስጥ ምን ዓይነት ስፖርት ይሠሩ ነው?", + "en_question": "What sport do elementary school students tend to practice at school in your country?", + "annotations": [ + { + "answers": [ + "ሩጫ" + ], + "en_answers": [ + "athletics", + "run", + "running" + ], + "count": 2 + }, + { + "answers": [ + "ሰርከስ", + "መተጣጠፍ" + ], + "en_answers": [ + "circus" + ], + "count": 1 + }, + { + "answers": [ + "አክሮባት", + "መገልበጥ" + ], + "en_answers": [ + "acrobat" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jo-sp-36": { + "question": "በኢትዮጵያ የምጀመሪያ ደረጃ ትምህርት ቤቶች የክረምት የእረፍት ጊዜ ስንት ሳምንት ነው? (በአረቢክ ቁጥሮች (ምሳሌ 7, 8) ብቻ ይምላሉ።)", + "en_question": "How long (in weeks) are summer vacations at elementary schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-37": { + "question": "በኢትዮጵያ ዩኒቨርስቲዎች ትምህርት ቤቶች የክረምት የእረፍት ጊዜ ስንት ሳምንት ነው?(በዓረብ ቁጥር ብቻ ምላሽ ይስጡ (ምሳሌ 7, 8)።)", + "en_question": "How long (in weeks) are summer vacations at universities in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-39": { + "question": "በኢትዮጵያ የመጀመሪያ ደረጃ ትምህርት በስንት አመት ይጀመራል? (በዓረብ ቁጥር ብቻ ምላሽ ይስጡ (ምሳሌ 7, 8)።)", + "en_question": "At what age does elementary education begin in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-43": { + "question": "በኢትዮጵያ በመጀመሪያ ደረጃ ትምህርት ምን ያህል ቋንቋዎች ይሰጣሉ? (በዓረብ ቁጥር ብቻ ምላሽ ይስጡ (ለምሳሌ 7, 8)።)", + "en_question": "How many languages are studied in elementary education besides your country's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-01": { + "question": "በኢትዮጵያ ሰዎች በተደጋጋሚ የሚጠቀሟቸው የምግብ መመገቢያ እቃዎች ምንድናቸው? ", + "en_question": "What eating utensils do people commonly used in your country?", + "annotations": [ + { + "answers": [ + "ሳህን", + "ሰሀን" + ], + "en_answers": [ + "plate" + ], + "count": 5 + }, + { + "answers": [ + "ትሪ" + ], + "en_answers": [ + "big plate", + "tray" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-04": { + "question": "በኢትዮጵያ ሰዎች ምን የልስላሳ መጠጥ መጠጣትን ይወዳሉ?", + "en_question": "What soft drink do people in your country like to have?", + "annotations": [ + { + "answers": [ + "ሚሪንዳ", + "ሜሪንዳ" + ], + "en_answers": [ + "mirinda" + ], + "count": 4 + }, + { + "answers": [ + "ኮካ ኮላ" + ], + "en_answers": [ + "coca cola", + "coke", + "coca-cola" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-06": { + "question": "በኢትዮጵያ ምን ዓይነት ባህልያዊ አልኮል ታዋቂ ነው?", + "en_question": "What is the most popular traditional alcohol in your country?", + "annotations": [ + { + "answers": [ + "አረቄ" + ], + "en_answers": [ + "areqe", + "areke", + "areki" + ], + "count": 4 + }, + { + "answers": [ + "ጠጅ" + ], + "en_answers": [ + "honey wine", + "tej" + ], + "count": 3 + }, + { + "answers": [ + "ጠላ" + ], + "en_answers": [ + "tella", + "talla", + "beer" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-07": { + "question": "በኢትዮጵያ ሰዎች በአማካይነት እራት ለመመገብ በምግብ ቤት ስንት ሰአት የቆያሉ? (እባክዎን በአረቢክ ቁጥሮች እስከ አንድ ነጥብ ቁጥር (ምሳሌ 2, 3.5) ብቻ ያቅርቡ።)", + "en_question": "How long (in hours) on average does it take for people in your country to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + }, + { + "answers": [ + "1.5" + ], + "en_answers": [ + "1.5" + ], + "count": 2 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-09": { + "question": "በኢትዮጵያ ሰዎች እራት በምን ሰዓት ይበላሉ? (በ HH:MM ቅጽ ያቅርቡ (ምሳሌ 18:00, 09:00).)", + "en_question": "What time do people usually have dinner in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "20:00", + "02:00" + ], + "en_answers": [ + "20:00" + ], + "count": 2 + }, + { + "answers": [ + "20:30", + "02:30" + ], + "en_answers": [ + "20:30" + ], + "count": 2 + }, + { + "answers": [ + "00:00" + ], + "en_answers": [ + "00:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-12": { + "question": "ኢትዮጵያውያን ምን ዓይነት ሾርብ መብላት ይወዳሉ?", + "en_question": "What kind of soup do people from your country like to have?", + "annotations": [ + { + "answers": [ + "የአትክልት ሾርባ", + "ያትክልት ሾርባ", + "የአትክልት" + ], + "en_answers": [ + "vegetable soup", + "vegetable" + ], + "count": 3 + }, + { + "answers": [ + "መኮሮኒ" + ], + "en_answers": [ + "macaroni" + ], + "count": 2 + }, + { + "answers": [ + "የቅቅል" + ], + "en_answers": [ + "meat soup", + "meat" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-13": { + "question": "ኢትዮጵያውያን ምን የጎዳና ምግብ ይወዳሉ?", + "en_question": "What street food do people from your country like to eat?", + "annotations": [ + { + "answers": [ + "ችፕስ", + "ድንች ጥብስ" + ], + "en_answers": [ + "chips", + "potato fries" + ], + "count": 4 + }, + { + "answers": [ + "ቆሎ" + ], + "en_answers": [ + "qollo", + "kolo", + "qolo" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-15": { + "question": "ኢትዮጵያውያን የባህር ምግብ እንዴት ያለ አይነት ይወዳሉ?", + "en_question": "What kind of seafood do people from your country like to eat?", + "annotations": [ + { + "answers": [ + "አሳ" + ], + "en_answers": [ + "fish" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-16": { + "question": "በኢትዮጵያ ትልቅ ዓለም አቀፍ በዓል የቱ ነው?", + "en_question": "What is the biggest festival in your country?", + "annotations": [ + { + "answers": [ + "ፋሲካ", + "ትንሳየ" + ], + "en_answers": [ + "easter" + ], + "count": 2 + }, + { + "answers": [ + "ረመዳን" + ], + "en_answers": [ + "ramadan" + ], + "count": 1 + }, + { + "answers": [ + "የእናቶች ቀን", + "የናቶች ቀን" + ], + "en_answers": [ + "mother's day" + ], + "count": 1 + }, + { + "answers": [ + "መስቀል", + "መስቀል አደባባይ" + ], + "en_answers": [ + "cross square", + "meskel square" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-28": { + "question": "በኢትዮጵያ ከከተማ ወደ ከተማ ሲጓዙ ሰዎች በተለይ የሚጠቀሙበት ህዝባዊ ትራንስፖርት ምንድን ነው?", + "en_question": "What is the most commonly used public transport by people when travelling between cites in your country?", + "annotations": [ + { + "answers": [ + "ባስ", + "አውቶባስ" + ], + "en_answers": [ + "bus" + ], + "count": 4 + }, + { + "answers": [ + "ሚኒ ባስ", + "አባዱላ", + "ሀይሩፍ" + ], + "en_answers": [ + "van" + ], + "count": 2 + }, + { + "answers": [ + "መኪና" + ], + "en_answers": [ + "car" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-30": { + "question": "በኢትዮጵያ ውስጥ በእጅጉ ታላቅ በዓል ጋር የተያያዙ ምልክቶች ወይም ምስሎች ምንድነው?", + "en_question": "What are the specific decorations or symbols associated with the most biggest festival in your country?", + "annotations": [ + { + "answers": [ + "ባንዲራ" + ], + "en_answers": [ + "flag" + ], + "count": 2 + }, + { + "answers": [ + "ጋሻ" + ], + "en_answers": [ + "shield" + ], + "count": 2 + }, + { + "answers": [ + "ጦር", + "አንካሴ" + ], + "en_answers": [ + "javelin" + ], + "count": 2 + }, + { + "answers": [ + "ገበያ መጨናነቅ" + ], + "en_answers": [ + "market congestion", + "market" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-37": { + "question": "በኢትዮጵያ ሴቶች ምን ዓይነት ስፖርት ማየት እናፈቅራሉ?", + "en_question": "What sports do women like to watch the most in your country?", + "annotations": [ + { + "answers": [ + "ሩጫ" + ], + "en_answers": [ + "athletics", + "run", + "running" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Jod-ch-38": { + "question": "በኢትዮጵያ ወንዶች ምን ዓይነት ስፖርት ማየት እናፈቅራሉ?", + "en_question": "What sports do men like to watch the most in your country?", + "annotations": [ + { + "answers": [ + "እግር ኳስ", + "የእግር ኳስ" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-41": { + "question": "በኢትዮጵያ ወስጥ እድሜያቸው 20ዎቹ የሚገኙ ሴቶች በዋናነት የሚያደርጉት የመዝናኛ እንቅስቃሴ ምንድን ነው?", + "en_question": "What is the common leisure activity that females in their 20s in your country engage in?", + "annotations": [ + { + "answers": [ + "ሩጫ" + ], + "en_answers": [ + "athletics", + "run", + "running" + ], + "count": 2 + }, + { + "answers": [ + "የእግር ጉዞ", + "የግር ጉዞ" + ], + "en_answers": [ + "walk" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-42": { + "question": "በኢትዮጵያ ወስጥ እድሜያቸው 20ዎቹ የሚገኙ ወንዶች በዋናነት የሚያደርጉት የመዝናኛ እንቅስቃሴ ምንድን ነው?", + "en_question": "What is the common leisure activity that males in their 20s in your country engage in?", + "annotations": [ + { + "answers": [ + "የእግር ኳስ", + "እግር ኳስ መጫወት" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-46": { + "question": "በኢትዮጵያ በሳምንቱ ቀናት ሰዎች ከምሳ በኋላ ለስንት ሰዓት (በሰዓት) የማረፍያ ቀንበር ይወስዳሉ? (በአረቢክ ቁጥሮች እስከ አንድ ነጥብ ቁጥር (ምሳሌ 2, 3.5) ብቻ ይምረጡ።)", + "en_question": "How long (in hours) do people usually take a break after lunch on a weekday in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "2", + "1" + ], + "en_answers": [ + "2", + "1" + ], + "count": 3 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-48": { + "question": "በኢትዮጵያ በስራ ቀናት ላይ ሰዎች ለምሳ ምን ይበላሉ?", + "en_question": "What do people eat for lunch during the working days in your country?", + "annotations": [ + { + "answers": [ + "ሽሮ" + ], + "en_answers": [ + "shiro", + "shiro stew", + "shiro wat" + ], + "count": 4 + }, + { + "answers": [ + "በየአይነቱ", + "በያይነት" + ], + "en_answers": [ + "mixed food", + "be-yeayntu", + "combo" + ], + "count": 4 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-50": { + "question": "በኢትዮጵያ የሰዎች አማካይ የጉዞ ጊዜያቸው (በደቂቃ) ምን ያክል ነው? (እባኮትን በቁጥር (ምሳሌ 1) ያስቀምጡ።)", + "en_question": "What is the average commute time (in minutes) for people in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "45", + "45፡00", + "70" + ], + "en_answers": [ + "45", + "70" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-51": { + "question": "በኢትዮጵያ ሰዎች ለመስራት የሚወስዱት እጅግ ተደጋጋሚ መጓጓዣ እንደምን ነው?", + "en_question": "What is the most common transportation that people take to get to work in your country?", + "annotations": [ + { + "answers": [ + "ታክሲ", + "አውቶቡስ", + "ባጃጅ" + ], + "en_answers": [ + "taxi" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-54": { + "question": "በኢትዮጵያ የጋብቻ የፍቃድ ጊዜ ስንት ቀን ነው? ", + "en_question": "How long (in days) is the marriage leave in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 2 + }, + { + "answers": [ + "10", + "10 ቀን" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-56": { + "question": "በኢትዮጵያ ሴቶች ጡረታ የሚዎጡበት እድሜ ስንት ነው? ", + "en_question": "What is the typical retirement age for women in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "60", + "55" + ], + "en_answers": [ + "60" + ], + "count": 2 + }, + { + "answers": [ + "65" + ], + "en_answers": [ + "65" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-57": { + "question": "በኢትዮጵያ ወንዶች ጡረታ የሚዎጡበት እድሜ ስንት ነው?", + "en_question": "What is the typical retirement age for men in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "60", + "55" + ], + "en_answers": [ + "60" + ], + "count": 3 + }, + { + "answers": [ + "65" + ], + "en_answers": [ + "65" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-58": { + "question": "በኢትዮጵያ ምን ዓይነት ሙያ እጅግ ከበረታች ነው?", + "en_question": "Which profession is the most respected in your country?", + "annotations": [ + { + "answers": [ + "ህክምና", + "ዶክተር" + ], + "en_answers": [ + "medicine", + "doctor" + ], + "count": 3 + }, + { + "answers": [ + "ዳኛ" + ], + "en_answers": [ + "judge" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-60": { + "question": "በኢትዮጵያ ውስጥ አንድ ቀን የስራ ሰዓት ርዝመት ስንት ሰዓት ነው? (በአረቢኛ ቁጥሮች (0~24) ብቻ ምላሽ ይስጡ።)", + "en_question": "What is the duration (in hours) of a typical workday in your country? (Provide Arabic numerals (0~24) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-61": { + "question": "በኢትዮጵያ ውስጥ ሴቶች በሚመርጡት ሙያዎች መካከል ምንም ሙያ በተሻለ ይመረጣል?", + "en_question": "Which occupation is most preferred among females in your country?", + "annotations": [ + { + "answers": [ + "የአውሮፕላን አስተናጋጅ", + "ሆስተስ" + ], + "en_answers": [ + "hostess", + "host", + "flight attendant" + ], + "count": 3 + }, + { + "answers": [ + "ሞዴሊንግ" + ], + "en_answers": [ + "modeling", + "model" + ], + "count": 2 + }, + { + "answers": [ + "ነርስ", + "ሀኪም" + ], + "en_answers": [ + "nurse" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-62": { + "question": "በኢትዮጵያ ውስጥ ወንዶች በሚመረጡት ሙያዎች መካከል ምንም ሙያ በተሻለ ይመረጣል?", + "en_question": "Which occupation is most preferred among males in your country?", + "annotations": [ + { + "answers": [ + "ዶክተር", + "ህክምና", + "ሀኪም" + ], + "en_answers": [ + "doctor", + "medicine", + "healthcare" + ], + "count": 4 + }, + { + "answers": [ + "ፓይለት", + "ፓይሌት", + "የአውሮፕላን አብራሪ", + "ካፒቴን" + ], + "en_answers": [ + "pilot" + ], + "count": 2 + }, + { + "answers": [ + "ጆርናሊስት", + "ጅርናሊስት", + "ጋዜጠኛ" + ], + "en_answers": [ + "journalist" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ki-pe-17": { + "question": "በኢትዮጵያ ተማሪዎች በአማካኝ እስከ የትኛውን ደረጃ ትምህርት ይቀጥላሉ? (ምሳሌ፣ ታናሽ ወይም ከፍተኛ ትምህርት)", + "en_question": "On average, how far do students typically pursue their education in your country? (e.g., elementary, high school)", + "annotations": [ + { + "answers": [ + "ሁለተኛ ደረጃ" + ], + "en_answers": [ + "high school" + ], + "count": 3 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "ዲግሪ" + ], + "en_answers": [ + "degree", + "university", + "college" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-24": { + "question": "በኢትዮጵያ ትምህርት ቤቶች ከእንግሊዝኛ ቋንቋ በተጨማሪ ምን ይማራል?", + "en_question": "What language is taught in schools in your country besides English?", + "annotations": [ + { + "answers": [ + "አማርኛ" + ], + "en_answers": [ + "amharic" + ], + "count": 4 + }, + { + "answers": [ + "ኦሮምኛ" + ], + "en_answers": [ + "oromic", + "oromo" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-30": { + "question": "በኢትዮጵያ ትምህርት ቤቶች ከሳምንቱ ቀኖች ውስጥ በየትኞቹ ይዘጋሉ?", + "en_question": "What days of the week are schools closed in your country?", + "annotations": [ + { + "answers": [ + "እሁድ", + "ቅዳሜ እና እሁድ" + ], + "en_answers": [ + "sunday" + ], + "count": 5 + }, + { + "answers": [ + "ቅዳሜ", + "ቅዳሜ እና እሁድ" + ], + "en_answers": [ + "saturday" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-32": { + "question": "በኢትዮጵያ እንግዶችን ለመቀበል ቤተሰቦች በተለይ ምን ምግብ ያዘጋጃሉ?", + "en_question": "What food do the hosts usually prepare for the guests in your country?", + "annotations": [ + { + "answers": [ + "ዶሮ ወጥ" + ], + "en_answers": [ + "chicken stew", + "doro wot" + ], + "count": 4 + }, + { + "answers": [ + "የበግ ስጋ" + ], + "en_answers": [ + "goat meat stew", + "yebeg key wat" + ], + "count": 2 + }, + { + "answers": [ + "ጥብስ" + ], + "en_answers": [ + "tibs", + "tebs", + "t’ibs", + "tibbs", + "roasted meat", + "roast meat" + ], + "count": 1 + }, + { + "answers": [ + "አይነት" + ], + "en_answers": [ + "mixed food", + "combo" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-34": { + "question": "በኢትዮጵያ በማለዳ ምግብ ጊዜ የተለመደ መጠጥ ምንድን ነው?", + "en_question": "What is the usual drink in the breakfast in your country?", + "annotations": [ + { + "answers": [ + "ሻይ" + ], + "en_answers": [ + "tea" + ], + "count": 5 + }, + { + "answers": [ + "ቡና" + ], + "en_answers": [ + "coffee" + ], + "count": 3 + }, + { + "answers": [ + "ወተት" + ], + "en_answers": [ + "milk" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-36": { + "question": "ከኢትዮጵያ ከተመረተ ምግብ ውጭ የምን አገር ምግብ በኢትዮጵያ ታዋቂ ነው?", + "en_question": "Except the food original from your country, which country's food is more popular in your country?", + "annotations": [ + { + "answers": [ + "የጣልያን", + "የጣሊያን" + ], + "en_answers": [ + "italian" + ], + "count": 3 + }, + { + "answers": [ + "የተባበሩት አረብ ኤምሬስ", + "ዱባይ" + ], + "en_answers": [ + "united arab emirates", + "uae", + "middle eastern" + ], + "count": 1 + }, + { + "answers": [ + "ግብጽ" + ], + "en_answers": [ + "egypt" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-39": { + "question": "በኢትዮጵያ ለቤተሰብ ሽርሽር ጊዜ በተለይ ምን ዓይነት ምግብ ይዘጋጃል?", + "en_question": "What food is usually prepared for a family picnic in your country?", + "annotations": [ + { + "answers": [ + "ዳቦ ቆሎ" + ], + "en_answers": [ + "dabo qollo", + "dabo kolo", + "daboqolo" + ], + "count": 1 + }, + { + "answers": [ + "ጭቆ", + "ጩኮ" + ], + "en_answers": [ + "chiko" + ], + "count": 1 + }, + { + "answers": [ + "ኩኪስ" + ], + "en_answers": [ + "cookies" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "not-applicable": 1, + "idk": 0 + } + }, + "Ki-pe-40": { + "question": "ከኢትዮጵያ የትኛው ምግብ በአለም ላይ በተለይ የሚጠላ ምግብ ነው?", + "en_question": "Which food from your country is considered disgusting by the rest of the world?", + "annotations": [], + "idks": { + "idk": 4, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Ki-pe-43": { + "question": "በኢትዮጵያ የታወቀው የዳቦ ስም ምን ይባላል?", + "en_question": "What is the name of the popular bread in your country?", + "annotations": [ + { + "answers": [ + "ድፎ ዳቦ", + "ድፎ" + ], + "en_answers": [ + "big bread", + "dough bread", + "difo dabo" + ], + "count": 4 + }, + { + "answers": [ + "ሙልሙል ዳቦ", + "ሙልሙል" + ], + "en_answers": [ + "mulmul" + ], + "count": 1 + }, + { + "answers": [ + "ቂጣ" + ], + "en_answers": [ + "kita", + "kitcha", + "flatbread" + ], + "count": 1 + }, + { + "answers": [ + "የውሀ ዳቦ" + ], + "en_answers": [ + "steamed bread", + "steam bread" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-51": { + "question": "በኢትዮጵያ የመንግሥት ቢሮዎች በምን ሰዓት ይዘጋሉ? (በኤችኤች:ኤምኤም ቅጽ ይምረጡ (ምሳሌ 18:00, 09:00).)", + "en_question": "What time of day are government offices closed in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "17:30", + "11:30" + ], + "en_answers": [ + "17:30" + ], + "count": 3 + }, + { + "answers": [ + "17:00", + "11:00" + ], + "en_answers": [ + "17:00" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-53": { + "question": "በኢትዮጵያ የመንግሥት ቢሮዎች መደበኛ የመጀመሪያ ሰዓት ምን ሰዓት ነው? (በዚህ ቅጽ ይምረጡ HH:MM ምሳሌ 18:00, 09:00).", + "en_question": "What is the normal start time of government offices in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:30", + "02:30" + ], + "en_answers": [ + "08:30" + ], + "count": 3 + }, + { + "answers": [ + "08:00", + "02:00" + ], + "en_answers": [ + "08:00" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-01": { + "question": "በኢትዮጵያ ምን ብሔራዊ በዓል ረጅም ጊዜ ይከበራል?", + "en_question": "What national holiday has the longest duration in your country?", + "annotations": [ + { + "answers": [ + "የፋሲካ", + "ፋሲካ", + "የትንሳየ" + ], + "en_answers": [ + "easter" + ], + "count": 3 + }, + { + "answers": [ + "የጥምቀት" + ], + "en_answers": [ + "epiphany", + "christening", + "baptism" + ], + "count": 1 + }, + { + "answers": [ + "የአድዋ ድል በአል" + ], + "en_answers": [ + "victory of adwa", + "adwa's victory", + "victory of adwa anniversary", + "adwa victory day" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-02": { + "question": "ኢትዮጵያውያን የነጣነት ቀን ሲከበር የተለመደ እንቅስቃሴዎች ምንድን ናቸው?", + "en_question": "What are the common activities people from your country do to celebrate Independence day?", + "annotations": [ + { + "answers": [ + "የመንገድ ላይ ትሪቶች" + ], + "en_answers": [ + "street trots", + "march" + ], + "count": 3 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "Kik-in-04": { + "question": "በኢትዮጵያ ቤተሰብ አንድ አባል ሲሞት በቤት ፊት ምን ይተክላል?", + "en_question": "What is installed in front of the house when a family member dies in your country?", + "annotations": [ + { + "answers": [ + "ድንኳን", + "ዳስ" + ], + "en_answers": [ + "tent" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 1, + "no-answer": 0 + } + }, + "Kik-in-05": { + "question": "በኢትዮጵያ የእርግዝና በዓል ወይም ሥነ-ሥርዓት መቼ ይካሄዳል?", + "en_question": "When is a pregnancy celebration or ceremony usually held in your country?", + "annotations": [ + { + "answers": [ + "የወሊድ ጊዜ ሲቀርብ" + ], + "en_answers": [ + "when the birth time arrives", + "birth approches" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 2, + "no-answer": 0 + } + }, + "Kik-in-06": { + "question": "በኢትዮጵያ ከሰርግ በፊት ምን ዓይነት ክስተት ይካሄዳል?", + "en_question": "What event is usually held before a wedding in your country?", + "annotations": [ + { + "answers": [ + "ጥሎሽ መጣል" + ], + "en_answers": [ + "give dowry", + "giving dowry" + ], + "count": 1 + }, + { + "answers": [ + "ሽምግልና" + ], + "en_answers": [ + "arbitration" + ], + "count": 1 + }, + { + "answers": [ + "የቤተሰብ ትውውቅ" + ], + "en_answers": [ + "family acquaintance", + "acquaintance of family", + "family gathering" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Kik-in-07": { + "question": "በኢትዮጵያ አዲስ አመት ልጆች የሚጋሩት ነገር ምንድን ነው?", + "en_question": "What is usually shared to the children during (Lunar) New Year in your country?", + "annotations": [ + { + "answers": [ + "መዋቢያ" + ], + "en_answers": [ + "make up", + "cosmetics" + ], + "count": 2 + }, + { + "answers": [ + "ስጦታ መሰጣጠት" + ], + "en_answers": [ + "giving a gift", + "gift" + ], + "count": 1 + }, + { + "answers": [ + "አበባ ስጦታ" + ], + "en_answers": [ + "flower gift", + "gift of flower", + "flower" + ], + "count": 1 + }, + { + "answers": [ + "ወደ መዝናኛ ቦታ መሄድ", + "መናፈሻ", + "ፓርክ" + ], + "en_answers": [ + "going to the park", + "going to the parkway", + "park" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-08": { + "question": "በኢትዮጵያ ረመዳን ከመጀመሪያው ቀናት በፊት ምን ዓይነት እንቅስቃሴዎች ተደርገዋል?", + "en_question": "What activities are usually done days before Ramadan in your country?", + "annotations": [ + { + "answers": [ + "የጽዳት ስራ" + ], + "en_answers": [ + "cleaning work", + "cleaning", + "clean" + ], + "count": 1 + }, + { + "answers": [ + "ማፍጠር" + ], + "en_answers": [ + "prepare" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Kik-in-10": { + "question": "በኢትዮጵያ ለውጭ ጉብኝቶች እጅግ ታዋቂው የመስብ ቦታዎች ምንድን ነው?", + "en_question": "What is the most popular tourist attraction for foreign visitors in your country?", + "annotations": [ + { + "answers": [ + "ላልይበላ", + "የላልይበላ ቤ", + "ላሊበላ ቤ/ክርስቲያኖች", + "ላሊበላ" + ], + "en_answers": [ + "lalibela", + "lalibela's church", + "church of lalibela", + "lalibela church" + ], + "count": 4 + }, + { + "answers": [ + "ሰሜን ተራሮች" + ], + "en_answers": [ + "semien teraroch national park", + "semien teraroch", + "semien mountain" + ], + "count": 3 + }, + { + "answers": [ + "የጣና ገዳማት", + "ጣና ገዳማት" + ], + "en_answers": [ + "tana gedamat", + "the monasteries of tana", + "tana monasteries", + "lake tana", + "tana lake", + "tana" + ], + "count": 2 + }, + { + "answers": [ + "የአክሱም ሐውልት", + "አክሱም ሀውልት", + "አክሱም" + ], + "en_answers": [ + "statuary of axum", + "axum's statuary", + "obelisk of axum", + "axum" + ], + "count": 2 + }, + { + "answers": [ + "የጎንደር ግንብ", + "ጎንደር ግንብ", + "ጎንደር", + "የፋሲል ግንብ" + ], + "en_answers": [ + "gondar's barrage", + "barrage of gondar", + "gondar" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-11": { + "question": "በኢትዮጵያ ለቱሪዝም የታወቀው የሃይማኖት ቦታ (ቤተ መቅደስ፣ ቤተ ክርስቲያን ማለት ነው፣ ወዘተ) ምንድን ነው?", + "en_question": "What is the most popular religious sites (temple, church, etc.) for tourism in your country?", + "annotations": [ + { + "answers": [ + "አክሱም ፂዎን", + "አክሱም ጺዎን", + "አክሱም" + ], + "en_answers": [ + "axum zion", + "axum church" + ], + "count": 5 + }, + { + "answers": [ + "ላልይበላ", + "ላሊበላ" + ], + "en_answers": [ + "lalibela" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-15": { + "question": "በኢትዮጵያ ሴቶች በመጨረሻ የተመረቀችውን የምረቃ ስነስርዓት ላይ በተለይ ምን ዓይነት ልብስ ይለብሳሉ?", + "en_question": "What clothes do women usually wear on graduation commencement ceremony in your country?", + "annotations": [ + { + "answers": [ + "የባህል ቀሚስ", + "የሀበሻ ልብስ", + "የሀበሻ ቀሚስ" + ], + "en_answers": [ + "traditional dress", + "ethiopian clothing", + "habesha" + ], + "count": 3 + }, + { + "answers": [ + "ነጭ ልብስ", + "ነጭ" + ], + "en_answers": [ + "white clothes", + "white" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-16": { + "question": "በኢትዮጵያ የሙቀት ሲቀዝቅዝ በተለይ ምን መጠጥ ይጠጣል?", + "en_question": "What drink is commonly consumed in your country when the weather is cold?", + "annotations": [ + { + "answers": [ + "አረቄ", + "አረቂ" + ], + "en_answers": [ + "liquor" + ], + "count": 3 + }, + { + "answers": [ + "ሻይ", + "ትኩስ ሻይ" + ], + "en_answers": [ + "hot tea", + "tea" + ], + "count": 2 + }, + { + "answers": [ + "ቡና" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-17": { + "question": "በኢትዮጵያ ረመዳን ጊዜ በተለይ የሚሸጥና የሚገኝ ፍሬ ምንድነው?", + "en_question": "What fruit is more commonly sold and found during Ramadan in your country?", + "annotations": [ + { + "answers": [ + "ቴምር", + "ተምር" + ], + "en_answers": [ + "dates" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-24": { + "question": "በኢትዮጵያ ውስጥ በፈጣን ምግብ ቤት ከዶሮ ጋር ተመጣጣኝ የሚሆን ካርቦሃድሬት ምንድን ነው?", + "en_question": "What carbohydrate is usually served with chicken in a fast-food restaurant in your country?", + "annotations": [ + { + "answers": [ + "እንቁላል" + ], + "en_answers": [ + "egg" + ], + "count": 2 + }, + { + "answers": [ + "ድንች" + ], + "en_answers": [ + "potato" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Kik-in-31": { + "question": "በኢትዮጵያ ውስጥ እጅግ ተውዳጅ የሆን የማርሻል አርት ስፖርት ምንድን ነው?", + "en_question": "What is the most famous martial art sports in your country?", + "annotations": [ + { + "answers": [ + "ዎርልድ ቴኳንዶ", + "ቴኳንዶ", + "ካራቲ", + "ውሹ" + ], + "en_answers": [ + "world taekwondo", + "taekwondo" + ], + "count": 3 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-34": { + "question": "በኢትዮጵያ ብሄራዊ ቴሌቪዥን ላይ በተደጋጋሚ የሚሰሩ ስፖርቶች ምንናን ናቸው?", + "en_question": "What sports are often broadcasted on national television in your country?", + "annotations": [ + { + "answers": [ + "እግር ኳስ" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "የአካል ብቃት እንቅስቃሴ", + "የአካል ብቃት", + "ጅምናስቲክ" + ], + "en_answers": [ + "physical exercise", + "gymnastics" + ], + "count": 2 + }, + { + "answers": [ + "ሶምሶማ", + "ዱብዱብ" + ], + "en_answers": [ + "trot", + "jogging", + "running", + "race" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-35": { + "question": "በCOVID-19 እለት በኢትዮጵያ ላይ ምን ዓይነት ስፖርቶች በሰዎች መካከል ታዋቂ ነበሩ?", + "en_question": "What sports were popular among people from your country during the COVID-19 pandemic?", + "annotations": [ + { + "answers": [ + "የቤት ውስጥ ስፖርት", + "የቤት ውስጥ" + ], + "en_answers": [ + "inside the home", + "home workout" + ], + "count": 1 + }, + { + "answers": [ + "ሩጫ" + ], + "en_answers": [ + "athletics", + "run", + "running" + ], + "count": 1 + }, + { + "answers": [ + "የሰውነት ማጎልበሻ", + "ክብደት ማንሳት", + "ብረት ማንሳት", + "ድንጋይ መግፋት" + ], + "en_answers": [ + "physical exercise", + "lift load", + "bodybuilding", + "weight lifting", + "weightlifting" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-36": { + "question": "በኢትዮጵያ ታዋቂ የእግር ኳስ አሰልጣኝ ማን ነው?", + "en_question": "Who is the most popular soccer coach in your country?", + "annotations": [ + { + "answers": [ + "ሰውነት ቢሻው" + ], + "en_answers": [ + "sewnet bishaw" + ], + "count": 5 + }, + { + "answers": [ + "ውበቱ አባተ" + ], + "en_answers": [ + "wubetu abate" + ], + "count": 3 + }, + { + "answers": [ + "አስራት ሀይሌ" + ], + "en_answers": [ + "aserat haylie", + "asrat haile" + ], + "count": 1 + }, + { + "answers": [ + "ገብረመድን ሀይሌ" + ], + "en_answers": [ + "gebremedhin haile" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-37": { + "question": "በኢትዮጵያ ውስጥ ምንኛው እግር ኳስ ቡድኖች ለባሕርይ መዋዕላቸው ለመሆን የታወቁ ናቸው? (ምሳሌ ፡፡ ___ እና ___)", + "en_question": "What soccer teams in your country are famous for their intense rivalry? (e.g. ___ vs ___)", + "annotations": [ + { + "answers": [ + "ቡና እና ጊዮርጊስ", + "የጊዮርጊስ እና የቡና", + "የጊወርጊስና የቡና", + "ጊዮርጊስ እና ቡና", + "የቡናማዎቹ እና የፈረሰኞቹ" + ], + "en_answers": [ + "saint george vs ethiopian coffee", + "ethiopian coffee vs saint george", + "saint george vs coffee", + "coffee vs saint george", + "st. george vs ethiopian coffee", + "ethiopian coffee vs st. george", + "st. george vs coffee", + "coffee vs st. george" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Kik-in-38": { + "question": "በኢትዮጵያ ውስጥ ለታላቅ ባህርይ የታወቁ እግር ኳስ ደጋፊዎች ስም ምን ይባላል? (ምሳሌ ፡፡ ___ እና ___)", + "en_question": "What are the names of soccer supporters in your country who are famous for their intense rivalry? (e.g. ___ vs ___)", + "annotations": [], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Kik-in-40": { + "question": "በኢትዮጵያ እጅግ የታወቀ ወንድ ባድሜንተን ተጫዋች ማን ነው?", + "en_question": "Who is the most famous male badminton player in your country?", + "annotations": [], + "idks": { + "idk": 4, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Kik-in-41": { + "question": "በኢትዮጵያ እጅግ የታወቀ ሴት ባድሜንተን ተጫዋች ማን ነው?", + "en_question": "Who is the most famous female badminton player in your country?", + "annotations": [], + "idks": { + "idk": 4, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Kik-in-44": { + "question": "በኢትዮጵያ የትኛው ስፖርት ከመንግሥት የበለጠ ድጋፍ ይከተላል?", + "en_question": "What sport gets the most support from the government in your country?", + "annotations": [ + { + "answers": [ + "እግር ኳስ" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "ሩጫ", + "አትሌቲክስ", + "የሩጫ" + ], + "en_answers": [ + "athletics", + "run", + "running" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-45": { + "question": "በኢትዮጵያ የትምህርት ቤቶች ውስጥ በተለይ የሚገኙ የስፖርት መስኮች እንዳሉ ምን ናቸው?", + "en_question": "What sports field facilities are usually available at schools in your country?", + "annotations": [ + { + "answers": [ + "የእግር ኳስ ሜዳ", + "እግር ኳስ" + ], + "en_answers": [ + "football", + "soccer", + "football field" + ], + "count": 3 + }, + { + "answers": [ + "የመረብ ኳስ ሜዳ", + "መረብ ኳስ" + ], + "en_answers": [ + "volleyball", + "volleyball field" + ], + "count": 2 + }, + { + "answers": [ + "የቅርጫት ኳስ ኮርት", + "ቅርጫት ኳስ" + ], + "en_answers": [ + "basketball", + "basketball court" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-02": { + "question": "በኢትዮጵያ ሰዎች በተለይ የሚወዱት የካፌ መጠጥ ምንድነው?", + "en_question": "What cafe beverage do people from your country most commonly enjoy?", + "annotations": [ + { + "answers": [ + "ማኪያቶ", + "ወተት በቡና" + ], + "en_answers": [ + "macchiato" + ], + "count": 3 + }, + { + "answers": [ + "ሻይ" + ], + "en_answers": [ + "tea" + ], + "count": 1 + }, + { + "answers": [ + "ቢራ" + ], + "en_answers": [ + "beer" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-04": { + "question": "ከኢትዮጵያ ሰዎች የተመረጡት የሐንጋቨር ፈውስ ምግቦች ምንድነው?", + "en_question": "What is the preferred hangover cure food for people from your country?", + "annotations": [ + { + "answers": [ + "ሽሮ ፍትፍት" + ], + "en_answers": [ + "shiro fitft", + "shiro fitfit" + ], + "count": 3 + }, + { + "answers": [ + "እርጎ" + ], + "en_answers": [ + "yogurt" + ], + "count": 2 + }, + { + "answers": [ + "እንጀራ ፍርፍር" + ], + "en_answers": [ + "injera ferfer", + "injera firfir" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "Na-ko-05": { + "question": "በኢትዮጵያ የተለመደው ከፈለጉት ቦታ የሚመጣ ምግብ ምንድን ነው?", + "en_question": "What is the typical delivery food in your country?", + "annotations": [ + { + "answers": [ + "በርገር" + ], + "en_answers": [ + "burger", + "hamgurger" + ], + "count": 2 + }, + { + "answers": [ + "ሽሮ" + ], + "en_answers": [ + "shiro", + "shiro stew", + "shiro wat" + ], + "count": 2 + }, + { + "answers": [ + "ሳንድዊች" + ], + "en_answers": [ + "sandwich" + ], + "count": 1 + }, + { + "answers": [ + "ፒዛ" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Na-ko-07": { + "question": "በኢትዮጵያ ሰዎች በብዛት የሚበሉት የሥጋ አይነት ምንድን ነው?", + "en_question": "What type of meat is consumed most by people from your country?", + "annotations": [ + { + "answers": [ + "የበሬ ስጋ" + ], + "en_answers": [ + "beef" + ], + "count": 3 + }, + { + "answers": [ + "የበግ ስጋ" + ], + "en_answers": [ + "lamb" + ], + "count": 3 + }, + { + "answers": [ + "የፍየል ስጋ" + ], + "en_answers": [ + "goat" + ], + "count": 3 + }, + { + "answers": [ + "ጥሬ ስጋ", + "ቁርጥ" + ], + "en_answers": [ + "raw meat" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-08": { + "question": "በኢትዮጵያ በመህር ወቅት ምን ዓይነት ፍራፍሬ በብዛት ይመገባሉ?", + "en_question": "What fruit do people from your country often eat in the autumn season?", + "annotations": [ + { + "answers": [ + "ብርቱካን", + "ብርትካን", + "ቦሮ" + ], + "en_answers": [ + "orange" + ], + "count": 3 + }, + { + "answers": [ + "ሙዝ" + ], + "en_answers": [ + "banana" + ], + "count": 2 + }, + { + "answers": [ + "ማንጎ" + ], + "en_answers": [ + "mango" + ], + "count": 1 + }, + { + "answers": [ + "አቦካዶ" + ], + "en_answers": [ + "avocado" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-09": { + "question": "በኢትዮጵያ የምግብ ጠረጴዛ ላይ በተቻለ መጠን በብዛት የሚቀርብ ምግብ ምንድን ነው?", + "en_question": "What side dish is the most commonly served on a dining table in your country?", + "annotations": [ + { + "answers": [ + "ቀይ ወጥ", + "ስጋ ወጥ" + ], + "en_answers": [ + "red stew", + "kiy wat", + "key wat", + "beef stew" + ], + "count": 3 + }, + { + "answers": [ + "እንጀራ" + ], + "en_answers": [ + "injera" + ], + "count": 1 + }, + { + "answers": [ + "አትክልት" + ], + "en_answers": [ + "vegetable" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-11": { + "question": "ኢትዮጵያውያን እግር ኳስ ጨዋታ ሲመለከቱ ምን ይበላሉ?", + "en_question": "What do people from your country eat while watching a soccer game?", + "annotations": [ + { + "answers": [ + "ብስኩት" + ], + "en_answers": [ + "biscuit" + ], + "count": 1 + }, + { + "answers": [ + "ቦምቦሊኖ" + ], + "en_answers": [ + "bombolino", + "donut" + ], + "count": 1 + }, + { + "answers": [ + "ቆሎ" + ], + "en_answers": [ + "qollo", + "kolo", + "qolo" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Na-ko-15": { + "question": "በኢትዮጵያ የሚወክል ምግብ ምንድን ነው?", + "en_question": "What is the representative nourishing food in your country?", + "annotations": [ + { + "answers": [ + "እንጀራ" + ], + "en_answers": [ + "injera" + ], + "count": 4 + }, + { + "answers": [ + "ዶሮ ወጥ", + "ዶሮ" + ], + "en_answers": [ + "chicken stew", + "doro wot" + ], + "count": 2 + }, + { + "answers": [ + "ክትፎ" + ], + "en_answers": [ + "chopped meat", + "kitfo" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-16": { + "question": "በኢትዮጵያ የእግር ኳስ ተጫዋቾች ዝነኛው ማን ነው?", + "en_question": "Who is the most famous soccer player in your country?", + "annotations": [ + { + "answers": [ + "አቡበከር ናስር" + ], + "en_answers": [ + "abubeker nassir" + ], + "count": 2 + }, + { + "answers": [ + "አሸንፊ ግርማ" + ], + "en_answers": [ + "girma ashenafi" + ], + "count": 1 + }, + { + "answers": [ + "ሳላዲን" + ], + "en_answers": [ + "saladin said", + "salah el din ahmed said", + "salhadin said" + ], + "count": 1 + }, + { + "answers": [ + "ጌታነህ ከበድ" + ], + "en_answers": [ + "getaneh kebede" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-17": { + "question": "በኢትዮጵያ በትምህርት ቤት በምሳ ሰዓት ወንድ ተማሪዎች ምን ዓይነት ስፖርት ይወዳሉ?", + "en_question": "What sports do male students enjoy during lunch time at school in your country?", + "annotations": [ + { + "answers": [ + "እግር ኳስ" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "የእግር ጉዞ", + "የግር ጉዞ" + ], + "en_answers": [ + "walk" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Na-ko-18": { + "question": "በኢትዮጵያ የተማሪዎች በተጨማሪ ትምህርት ክፍሎች ላይ ሴቶች በተለይ በምን ዓይነት ስፖርት ላይ ተባባሪዎች ናቸው?", + "en_question": "What is the most common sport girls participate in during physical education classes in your country?", + "annotations": [ + { + "answers": [ + "በመረብ ኳስ", + "መረብ ኳስ" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "በሩጫ" + ], + "en_answers": [ + "athletics", + "run", + "running" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Na-ko-19": { + "question": "በኢትዮጵያ ታዋቂ የመረብ ኳስ ተጫዋች ማን ነው?", + "en_question": "Who is the most popular volleyball player in your country?", + "annotations": [], + "idks": { + "idk": 4, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Na-ko-20": { + "question": "በኢትዮጵያ ሰዎች በአለም አቀፍ ውድድር ላይ በታላቅ ቅንንት የሚደግፉት ስፖርት ክስተት ምንድን ነው?", + "en_question": "What sports event do people from your country passionately support the most in international competitions?", + "annotations": [ + { + "answers": [ + "ሩጫ" + ], + "en_answers": [ + "athletics", + "run", + "running" + ], + "count": 3 + }, + { + "answers": [ + "ቻምፒዮንስ ሊግ ፍፃሜ", + "ቻምፒየንስ ሊግ ፍጻሜ", + "የአውሮፓ ቻምፒዮንስ ሊግ ፍፃሜ" + ], + "en_answers": [ + "champions league final" + ], + "count": 1 + }, + { + "answers": [ + "ያለም ዋንጫ" + ], + "en_answers": [ + "world cup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-22": { + "question": "በእግር ኳስ ጨዋታዎች ለኢትዮጵያ ትልቅ ተቃዋሚ የሚባለው ሀገር ማን ነው?", + "en_question": "Which country is considered the biggest rival in soccer matches for your country?", + "annotations": [ + { + "answers": [ + "ኬኒያ" + ], + "en_answers": [ + "kenya" + ], + "count": 2 + }, + { + "answers": [ + "ግብፅ", + "ግብጽ" + ], + "en_answers": [ + "egypt" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Na-ko-23": { + "question": "በኢትዮጵያ ልጆች በብዛት የምን ዓይነት ስፖርት አካዳሚዎችን ይሰሩባቸዋል?", + "en_question": "What type of sports academies do children attend the most in your country?", + "annotations": [ + { + "answers": [ + "ቲኳንዶ", + "ካራቲ", + "ውሹ", + "ማርሻላት" + ], + "en_answers": [ + "world taekwondo", + "taekwondo" + ], + "count": 2 + }, + { + "answers": [ + "የእግር ኳስ", + "እግር ኳስ", + "የግር ኳስ አካዳሚዎችን" + ], + "en_answers": [ + "football", + "soccer", + "football academies" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Na-ko-24": { + "question": "በኢትዮጵያ ስፖርት ስታዲዮሞች ላይ ጨዋታዎችን በመመልከት ምን ዓይነት ምግብ በተለይ ይመገባል?", + "en_question": "What is the most commonly eaten food in sports stadiums while watching games in your country?", + "annotations": [ + { + "answers": [ + "ኩኪስ" + ], + "en_answers": [ + "cookies" + ], + "count": 1 + }, + { + "answers": [ + "ብስኩት" + ], + "en_answers": [ + "biscuits" + ], + "count": 1 + }, + { + "answers": [ + "ችብስ", + "ድንች ጥብስ" + ], + "en_answers": [ + "chips", + "potato fries" + ], + "count": 1 + }, + { + "answers": [ + "ቆሎ" + ], + "en_answers": [ + "qollo", + "kolo", + "qolo" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-25": { + "question": "በኢትዮጵያ ትምህርት ቤቶች የስፖርት ቀን ላይ ተጫወቱ የሚሆኑ አይነቶች የስፖርት መድረኮች ምንድን ናቸው?", + "en_question": "What are the typical sports played in your country's school sports day?", + "annotations": [ + { + "answers": [ + "የእግር ኳስ", + "እግር ኳስ", + "የእግር ኳስ ውድድር" + ], + "en_answers": [ + "football", + "soccer", + "football competition", + "soccer competition" + ], + "count": 2 + }, + { + "answers": [ + "ሩጫ", + "አትለቲክስ", + "የሩጫ ውድድር" + ], + "en_answers": [ + "athletics", + "run", + "running", + "race", + "running competition", + "athletics competition" + ], + "count": 2 + }, + { + "answers": [ + "መረብ ኳስ" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Na-ko-26": { + "question": "በኢትዮጵያ በመካከለኛ ዕድሜ ላሉ ህዝቦች መካከል ታዋቂ ስፖርቶች ምንድን ናቸው?", + "en_question": "What are the popular sports among the middle-aged population in your country?", + "annotations": [ + { + "answers": [ + "መረብ ኳስ" + ], + "en_answers": [ + "volleyball" + ], + "count": 3 + }, + { + "answers": [ + "ቅርጭት ኳስ" + ], + "en_answers": [ + "basket ball", + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "እግር ኳስ" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-28": { + "question": "በኢትዮጵያ ታዋቂ ስፖርተኛ ማን ይባላል?", + "en_question": "Who is the most popular winter sports player in your country?", + "annotations": [ + { + "answers": [ + "ሀይሌ ገ/ስላሴ", + "ሀይሌ ግ/ሰላሴ", + "ሀይሌ ገብረስላሴ" + ], + "en_answers": [ + "haile gebreselassie", + "haile g/selassie" + ], + "count": 4 + }, + { + "answers": [ + "አበበ ቢቂላ", + "አበበ ቢቄላ" + ], + "en_answers": [ + "abebe bekila" + ], + "count": 3 + }, + { + "answers": [ + "ቀነኒሳ" + ], + "en_answers": [ + "kenenisa" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-29": { + "question": "በኢትዮጵያ ታዋቂ ዋናተኛ ማን ነው?", + "en_question": "Who is the most famous swimmer in your country?", + "annotations": [ + { + "answers": [ + "ያኔት ስዩም" + ], + "en_answers": [ + "yanet seyum" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Na-ko-30": { + "question": "በኢትዮጵያ ምን ዓይነት የኢ-ስፖርት ጨዋታ እጅግ ታዋቂ ነው?", + "en_question": "What is the most popular e-sports game in your country?", + "annotations": [ + { + "answers": [ + "ሩጫ" + ], + "en_answers": [ + "athletics", + "run", + "running" + ], + "count": 2 + }, + { + "answers": [ + "ገበጣ" + ], + "en_answers": [ + "gebeta" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 0 + } + }, + "Na-ko-33": { + "question": "በ(የጨረቃ) አዲስ አመት ላይ ኢትዮጵያውያን ምን የምሳሌ ምግብ ይበላሉ?", + "en_question": "What symbolic food do people from your country eat on (Lunar) New Year?", + "annotations": [], + "idks": { + "idk": 3, + "not-applicable": 2, + "no-answer": 0 + } + }, + "Na-ko-37": { + "question": "ከኢትዮጵያ ሰዎች የሚመርጡት መኖሪያ የእረፍት ቦታ ምንድን ነው?", + "en_question": "What is the most popular domestic vacation spot for people from your country?", + "annotations": [ + { + "answers": [ + "ጫጫታ የሌለበት" + ], + "en_answers": [ + "quient place", + "quiescence" + ], + "count": 2 + }, + { + "answers": [ + "ጎጆ ቤት" + ], + "en_answers": [ + "a cottage" + ], + "count": 1 + }, + { + "answers": [ + "ቤታቸው" + ], + "en_answers": [ + "in their home" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-38": { + "question": "በኢትዮጵያ ከሙሽራና ከሙሽራዪቱ መካከል የሚሰጣጡት ስጦታዎች ምንድናቸው?", + "en_question": "What is the most common wedding gift between bride and groom in your country?", + "annotations": [ + { + "answers": [ + "ጌጣጌጥ", + "ግጣጌጥ" + ], + "en_answers": [ + "jewelry" + ], + "count": 2 + }, + { + "answers": [ + "ጥሎሽ" + ], + "en_answers": [ + "dowry", + "give gift" + ], + "count": 1 + }, + { + "answers": [ + "ቀለበት" + ], + "en_answers": [ + "ring" + ], + "count": 1 + }, + { + "answers": [ + "የወርቅ ሀብል" + ], + "en_answers": [ + "gold necklace" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-39": { + "question": "በኢትዮጵያ ወዳጅ ሰው ሰርግ ሲሄድ እንደ በርካታ እጅ መንሻ ምን ይሰጣል?", + "en_question": "What is typically given as a congratulatory gesture when attending a friend's wedding in your country?", + "annotations": [ + { + "answers": [ + "ልብስ" + ], + "en_answers": [ + "clothes" + ], + "count": 2 + }, + { + "answers": [ + "የቤት ዕቃዎች", + "የቤት እቃዎች", + "የቤት ዕቃ" + ], + "en_answers": [ + "household items" + ], + "count": 2 + }, + { + "answers": [ + "ጋቢ", + "ኩታ" + ], + "en_answers": [ + "gabi" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-40": { + "question": "በኢትዮጵያ ሃዘን ስንት ቀን ይቆያል? (በአረቢክ ቁጥር ብቻ ምላሽ ይስጡ (ለምሳሌ፣ 12)።)", + "en_question": "How long (in days) does a funeral typically last in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 3 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-41": { + "question": "በኢትዮጵያ ሃዘን ስትሄድ ምን ማስተዛዘኛ መዘጋጀት አለብዎት?", + "en_question": "What should you prepare as a condolence offering when attending a funeral in your country?", + "annotations": [ + { + "answers": [ + "ገንዘብ", + "ብር", + "ሳንቲም", + "ፍራንክ" + ], + "en_answers": [ + "money", + "birr" + ], + "count": 2 + }, + { + "answers": [ + "እንጀራ", + "እንጅራ" + ], + "en_answers": [ + "injera" + ], + "count": 2 + }, + { + "answers": [ + "ቆሎ" + ], + "en_answers": [ + "qollo", + "kolo", + "qolo" + ], + "count": 1 + }, + { + "answers": [ + "ምግብ" + ], + "en_answers": [ + "food" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-42": { + "question": "በኢትዮጵያ ሃዘን ቤት በተለይ የሚመገበው የምግብ አይነት ምንድነው?", + "en_question": "What type of food is commonly provided at funeral parlors in your country?", + "annotations": [ + { + "answers": [ + "ቆሎ" + ], + "en_answers": [ + "qollo", + "kolo", + "qolo" + ], + "count": 2 + }, + { + "answers": [ + "ምስር ወጥ" + ], + "en_answers": [ + "lentil stew" + ], + "count": 2 + }, + { + "answers": [ + "እንጀራ" + ], + "en_answers": [ + "injera" + ], + "count": 1 + }, + { + "answers": [ + "ሽሮ" + ], + "en_answers": [ + "shiro" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-43": { + "question": "በ(የጨረቃ) አዲስ አመት ማለዳ በኢትዮጵያ ሰዎች ምን ያደርጋሉ?", + "en_question": "What do people do in your country in the morning of the (Lunar) New Year?", + "annotations": [ + { + "answers": [ + "ዶሮ ይታረዳል", + "ዶሮ ይሰራል" + ], + "en_answers": [ + "chicken is slaughtered", + "slaughtered of chicken", + "slaughter chicken" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Na-ko-44": { + "question": "በኢትዮጵያ የትራፊክ መጨናነቅ ቀን መቼ ነው?", + "en_question": "When is the day with your country's most severe nationwide traffic congestion?", + "annotations": [ + { + "answers": [ + "የበአል", + "የአመትባል", + "ባውዳመት" + ], + "en_answers": [ + "holiday" + ], + "count": 1 + }, + { + "answers": [ + "ቅዳሜ" + ], + "en_answers": [ + "saturday" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 1, + "no-answer": 0 + } + }, + "Na-ko-45": { + "question": "በኢትዮጵያ ምን ዓይነት ሆነይሙን መድረክ ታዋቂ ነው?", + "en_question": "What is the most popular honeymoon destination in your country?", + "annotations": [ + { + "answers": [ + "የሙዚቃ ፕሮግራም", + "የሙዚቃ ድግስ", + "ኮንሰርት" + ], + "en_answers": [ + "music program" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 2, + "no-answer": 0 + } + }, + "Ne-ar-05": { + "question": "በኢትዮጵያ እጅግ አስፈላጊ ብሔራዊ በዓል ምንድን ነው?", + "en_question": "What is the most important national holiday in your country?", + "annotations": [ + { + "answers": [ + "የአድዋ በአል", + "አድዋ", + "የአድዋ ድል በአል", + "ያድዋ ድል በአል" + ], + "en_answers": [ + "victory of adwa", + "adwa's victory", + "victory of adwa anniversary", + "adwa victory day", + "adwa" + ], + "count": 3 + }, + { + "answers": [ + "የነፃነት ቀን", + "የነጣነት ቀን" + ], + "en_answers": [ + "independence day", + "day of independence" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-06": { + "question": "በራማዳን ወቅት ኢትዮጵያውያን ምን ይበላሉ?", + "en_question": "What do people from your country eat in Ramadan?", + "annotations": [ + { + "answers": [ + "ቴምር", + "ተምር" + ], + "en_answers": [ + "dates" + ], + "count": 4 + }, + { + "answers": [ + "ስጋ" + ], + "en_answers": [ + "meat" + ], + "count": 1 + }, + { + "answers": [ + "ሳንቡሳ", + "ሳቡሳ" + ], + "en_answers": [ + "samboosa", + "samosa" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-09": { + "question": "በኢድ አል-ፍጥር በኢትዮጵያ ሰዎች ምን ይበላሉ?", + "en_question": "What do people from your country eat in Eid ul Fitr?", + "annotations": [ + { + "answers": [ + "ስጋ", + "ቁርጥ", + "ስጋ ቁርጥ", + "ጥሬ ስጋ" + ], + "en_answers": [ + "meat", + "meat cuts", + "cut meat" + ], + "count": 4 + }, + { + "answers": [ + "ዳቦ" + ], + "en_answers": [ + "bread" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ne-ar-10": { + "question": "በኢድ አል-አድሃ በኢትዮጵያ ሰዎች ምን ይበላሉ?", + "en_question": "What do people from your country eat in Eid ul Adha?", + "annotations": [ + { + "answers": [ + "ስጋ", + "ቁርጥ", + "ስጋ ቁርጥ", + "ጥሬ ስጋ" + ], + "en_answers": [ + "meat", + "meat cuts", + "cut meat" + ], + "count": 4 + }, + { + "answers": [ + "ዳቦ" + ], + "en_answers": [ + "bread" + ], + "count": 3 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ne-ar-11": { + "question": "ኢትዮጵያውያን አዲስ አመትን ለመዝናናት ወዴት ይሄዳሉ?", + "en_question": "Where do people from your country go to celebrate New Year's Day?", + "annotations": [ + { + "answers": [ + "ወደ ቤተሰብ" + ], + "en_answers": [ + "to family" + ], + "count": 2 + }, + { + "answers": [ + "ወደ ሙዚቃ ድግስ", + "ወደ ሙዚቃ ፕሮግራም", + "ወደ ኮንሰርት" + ], + "en_answers": [ + "to music program" + ], + "count": 1 + }, + { + "answers": [ + "ወደ ፓርክ", + "ወደ መናፈሻ" + ], + "en_answers": [ + "to the park" + ], + "count": 1 + } + ], + "idks": { + "በቤታቸው ያከብራሉ": 1, + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ne-ar-14": { + "question": "ቤተሰብ በኢትዮጵያ ለኢድ በዓል የሚሰበሰብበት ቦታ የት ነው?", + "en_question": "Where do a family gather for Eid festivities in your country?", + "annotations": [ + { + "answers": [ + "መስጅድ", + "መስጊድ" + ], + "en_answers": [ + "mosque" + ], + "count": 4 + }, + { + "answers": [ + "ስታድየም" + ], + "en_answers": [ + "stadium" + ], + "count": 2 + }, + { + "answers": [ + "በየቤተሰባቸው ቤት" + ], + "en_answers": [ + "in the family house" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-16": { + "question": "በኢትዮጵያ የሳምንቱ መጨረሻ ቀን መቼ ነው (ምሳሌ ሰኞ፣ ማክሰኞ)?", + "en_question": "When is the weekend in your country (e.g. Monday, Tuesday)?", + "annotations": [ + { + "answers": [ + "እሁድ", + "ሰንበት" + ], + "en_answers": [ + "sunday" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-17": { + "question": "በኢትዮጵያ ብዙም ሰዎች ስራን በምን ሰዓት ይጀምራሉ? (በኤችኤች:ኤምኤም ቅጽ ይምረጡ (ምሳሌ 18:00, 09:00).)", + "en_question": "At what time do most people start work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:30", + "02:30" + ], + "en_answers": [ + "08:30" + ], + "count": 4 + }, + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-18": { + "question": "በኢትዮጵያ ብዙዎቹ ሰዎች ስራ በምን ሰዓት ይጨርሳሉ? (በኤችኤች:ኤምኤም ቅጽ ያቅርቡ (ምሳሌ 18:00, 09:00).)", + "en_question": "At what time do most people finish work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "17:30", + "11:30", + "05:30" + ], + "en_answers": [ + "17:30" + ], + "count": 4 + }, + { + "answers": [ + "17:00", + "11:00" + ], + "en_answers": [ + "17:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-20": { + "question": "በኢትዮጵያ የታመነ ሥራ ምን ነው?", + "en_question": "What is considered to be a secure job in your country?", + "annotations": [ + { + "answers": [ + "መምህርነት", + "አስተማሪነት" + ], + "en_answers": [ + "teaching", + "teacher" + ], + "count": 2 + }, + { + "answers": [ + "ዳኛ" + ], + "en_answers": [ + "judge" + ], + "count": 1 + }, + { + "answers": [ + "ንግድ" + ], + "en_answers": [ + "trade", + "commerce", + "merchant", + "businessman", + "trader" + ], + "count": 1 + }, + { + "answers": [ + "አትሌት", + "እሩዋጭ" + ], + "en_answers": [ + "athlete", + "runing" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-24": { + "question": "በኢትዮጵያ ዋናው ንግድ ማእከል የሆነው ከተማ ማንኛው ነው?", + "en_question": "Which city is the primary commercial hub in your country?", + "annotations": [ + { + "answers": [ + "አዲስ አበባ", + "አድስ አበባ" + ], + "en_answers": [ + "addis abeba" + ], + "count": 4 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-25": { + "question": "በኢትዮጵያ ምን ዓይነት ኢንዱስትሪ እጅግ የሚከፍል ነው?", + "en_question": "What is the industry that pays the best in your country?", + "annotations": [ + { + "answers": [ + "ወርቅ ማምረት", + "ወርቅ ቁፋሮ" + ], + "en_answers": [ + "gold production", + "gold mining", + "mining of gold", + "production of gold" + ], + "count": 1 + }, + { + "answers": [ + "ጨርቃ ጨርቅ", + "ጨርቃጨርቅ" + ], + "en_answers": [ + "textile" + ], + "count": 1 + }, + { + "answers": [ + "የመጠጥ" + ], + "en_answers": [ + "alcoholic drink", + "beverage" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-26": { + "question": "በኢትዮጵያ ውስጥ እጅግ የሚታወቀው የህዝብ ኩባንያው ምንድን ነው?", + "en_question": "What is the most famous public corporation in your country?", + "annotations": [ + { + "answers": [ + "ኢትዮ ቴሌኮም", + "ቴሌ" + ], + "en_answers": [ + "ethio telecom", + "ethiopian telecom", + "ethiopian telecommunication", + "tele" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Ne-ar-31": { + "question": "በኢትዮጵያ ምን ዓይነት ምግብ እጅግ ዝናና ነው?", + "en_question": "What is the most famous dish in your country?", + "annotations": [ + { + "answers": [ + "ክትፎ" + ], + "en_answers": [ + "chopped meat" + ], + "count": 2 + }, + { + "answers": [ + "ሸሮ ወጥ" + ], + "en_answers": [ + "shiro", + "shiro stew", + "shiro wat" + ], + "count": 2 + }, + { + "answers": [ + "ዶሮ ወጥ" + ], + "en_answers": [ + "chicken stew", + "doro wot" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-32": { + "question": "በኢትዮጵያ ሰዎች ለእለታዊ ቁርስ እንዴት ዓይነት ምግብ ይመገባሉ?", + "en_question": "What do people usually have for breakfast in your country?", + "annotations": [ + { + "answers": [ + "እንጀራ ፍርፍር", + "ፍርፍር" + ], + "en_answers": [ + "injera ferefer" + ], + "count": 3 + }, + { + "answers": [ + "ዳቦ በሻይ", + "ሻይበዳቦ" + ], + "en_answers": [ + "bread with tea" + ], + "count": 3 + }, + { + "answers": [ + "ቀለል ያለ" + ], + "en_answers": [ + "soft food" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-33": { + "question": "በኢትዮጵያ ሰዎች ምሳ በተለይ ምን ሰዓት ይበላሉ? (በ HH:MM ቅጽ ያቅርቡ (ምሳሌ 18:00, 09:00).)", + "en_question": "When do people usually have lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "13:00", + "07:00" + ], + "en_answers": [ + "13:00" + ], + "count": 3 + }, + { + "answers": [ + "12:30", + "06:30" + ], + "en_answers": [ + "12:30" + ], + "count": 1 + }, + { + "answers": [ + "12:00" + ], + "en_answers": [ + "12:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-34": { + "question": "በኢትዮጵያ ምግብ በተለይ ምን ነገር አስፈላጊ ነው?", + "en_question": "What is typically indispensable in meals in your country?", + "annotations": [ + { + "answers": [ + "እንጀራ" + ], + "en_answers": [ + "injera" + ], + "count": 3 + }, + { + "answers": [ + "ወጥ" + ], + "en_answers": [ + "stew" + ], + "count": 2 + }, + { + "answers": [ + "ጨው" + ], + "en_answers": [ + "salt" + ], + "count": 1 + }, + { + "answers": [ + "ቅመም" + ], + "en_answers": [ + "spice" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-36": { + "question": "በኢትዮጵያ እንደበዓል የሚበላ አነስተኛ ምግብ ምንድነው?", + "en_question": "What is a typical festive meal in your country?", + "annotations": [ + { + "answers": [ + "ሸሮ" + ], + "en_answers": [ + "shiro" + ], + "count": 2 + }, + { + "answers": [ + "ዳቦ" + ], + "en_answers": [ + "bread" + ], + "count": 2 + }, + { + "answers": [ + "ስጋ" + ], + "en_answers": [ + "meat" + ], + "count": 1 + }, + { + "answers": [ + "ኬክ" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "ድንች ቅቅል" + ], + "en_answers": [ + "potato wrap up" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-37": { + "question": "በኢትዮጵያ በሚመጡ ጎብኚዎች ምን ዓይነት ፍራፍሬ በተለምዶ ይሰጣሉ?", + "en_question": "Which fruit do people usually offer tourists/visitors from abroad in your country?", + "annotations": [ + { + "answers": [ + "ብርቱካን", + "ቦሮ" + ], + "en_answers": [ + "orange" + ], + "count": 3 + }, + { + "answers": [ + "ሙዝ" + ], + "en_answers": [ + "banana" + ], + "count": 2 + }, + { + "answers": [ + "አፕል", + "ፖም" + ], + "en_answers": [ + "apple" + ], + "count": 1 + }, + { + "answers": [ + "ማንጎ" + ], + "en_answers": [ + "mango" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-38": { + "question": "በኢትዮጵያ ሰዎች በተለምዶ ለበጎ አድራጎት ምን ዓይነት ምግብ ይሰጣሉ?", + "en_question": "Which food do people usually offer as charity in your country?", + "annotations": [ + { + "answers": [ + "ክክ ወጥ", + "ማርሳ ወጥ" + ], + "en_answers": [ + "grits stew" + ], + "count": 2 + }, + { + "answers": [ + "ፓስታ" + ], + "en_answers": [ + "pasta" + ], + "count": 1 + }, + { + "answers": [ + "ማኮሮኒ" + ], + "en_answers": [ + "macaroni" + ], + "count": 1 + }, + { + "answers": [ + "እንጀራ" + ], + "en_answers": [ + "injera" + ], + "count": 1 + }, + { + "answers": [ + "ዳቦ" + ], + "en_answers": [ + "bread" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-39": { + "question": "በኢትዮጵያ ውስጥ ትንሽ ዋጋ ያለው ፈጣን ምግብ ምንድነው?", + "en_question": "What is the cheapest fast food in your country?", + "annotations": [ + { + "answers": [ + "ሽሮ" + ], + "en_answers": [ + "shiro" + ], + "count": 3 + }, + { + "answers": [ + "ሳንድዊች" + ], + "en_answers": [ + "sandwich" + ], + "count": 1 + }, + { + "answers": [ + "ፒዛ" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + }, + { + "answers": [ + "ሳንቡሳ", + "ሳቡሳ" + ], + "en_answers": [ + "samboosa", + "samosa" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-43": { + "question": "በኢትዮጵያ ሰዎች በተለይ ከሻይ ጋር ምን ይመገባሉ?", + "en_question": "What do people usually have with tea in your country?", + "annotations": [ + { + "answers": [ + "ዳቦ" + ], + "en_answers": [ + "bread" + ], + "count": 5 + }, + { + "answers": [ + "ሳንቡሳ" + ], + "en_answers": [ + "samboosa", + "samosa" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-44": { + "question": "በኢትዮጵያ ሰዎች ከቡና ጋር ምን ይበላሉ?", + "en_question": "What do people have with coffee in your country?", + "annotations": [ + { + "answers": [ + "ፈንድሻ", + "ፈንድሻ ቆሎ" + ], + "en_answers": [ + "popcorn qollo" + ], + "count": 3 + }, + { + "answers": [ + "ቆሎ" + ], + "en_answers": [ + "qollo", + "kolo", + "qolo" + ], + "count": 2 + }, + { + "answers": [ + "የቡና ቁርስ", + "ቡና ቁርስ" + ], + "en_answers": [ + "coffee snacks" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-02": { + "question": "በኢትዮጵያ እጅግ ታዋቂው ባህላዊ ምግብ ምንድነው?", + "en_question": "What is the most popular traditional food in your country?", + "annotations": [ + { + "answers": [ + "ክትፎ" + ], + "en_answers": [ + "chopped meat" + ], + "count": 3 + }, + { + "answers": [ + "ዶሮ ወጥ" + ], + "en_answers": [ + "chicken stew", + "doro wot" + ], + "count": 2 + }, + { + "answers": [ + "እንጀራ" + ], + "en_answers": [ + "injera" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-04": { + "question": "በኢትዮጵያ ምን ዓይነት ወጥ እጅግ ታዋቂ ነው?", + "en_question": "What is the most popular dipping sauce in your country?", + "annotations": [ + { + "answers": [ + "ሽሮ ወጥ" + ], + "en_answers": [ + "shiro", + "shiro stew", + "shiro wat" + ], + "count": 3 + }, + { + "answers": [ + "ዶሮ ወጥ" + ], + "en_answers": [ + "chicken stew", + "doro wot" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-08": { + "question": "በኢትዮጵያ በክርስቲያኖች ጾም ጊዜ በተለይ የሚበላ ምግብ ምንድን ነው?", + "en_question": "What food is most often consumed during Christian fasting in your country?", + "annotations": [ + { + "answers": [ + "በየአይነቱ", + "በያይነት", + "አይነት", + "በየአይነት", + "የፆም ማህበራዊ" + ], + "en_answers": [ + "mixed food" + ], + "count": 5 + }, + { + "answers": [ + "ሽሮ" + ], + "en_answers": [ + "shiro" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-15": { + "question": "እናቶች በኢትዮጵያ ሲወልዱ በተለይ የሚዘጋጀው ምግብ ምንድን ነው?", + "en_question": "What food is usually prepared when mothers give birth in your country?", + "annotations": [ + { + "answers": [ + "ገንፎ" + ], + "en_answers": [ + "porridge" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-27": { + "question": "በኢትዮጵያ እጅግ ታዋቂዋ ሴት ስፖርተኛ ማን ናት?", + "en_question": "Who is the most popular female sportperson in your country?", + "annotations": [ + { + "answers": [ + "ደራርቱ ቱሉ", + "ደራርቱ" + ], + "en_answers": [ + "deraretu tulu" + ], + "count": 4 + }, + { + "answers": [ + "ጥሩነሽ ዲባባ" + ], + "en_answers": [ + "terunesh dibaba" + ], + "count": 2 + }, + { + "answers": [ + "ገንዘቤ ዲባባ", + "ግንዘቤ" + ], + "en_answers": [ + "genzebie dibaba" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-34": { + "question": "በኢትዮጵያ በአብዛኛው የመጀመሪያ ደረጃ ት/ቤት ተማሪዎች ለፈተናቸው የት ቦታ ይዘጋጃሉ?", + "en_question": "Where do most elementary school students prepare for their exams in your country?", + "annotations": [ + { + "answers": [ + "ቤታቸው", + "መኖሪያ ቤት" + ], + "en_answers": [ + "in their home", + "at home" + ], + "count": 3 + }, + { + "answers": [ + "ሜዳ ላይ", + "ሜዳ" + ], + "en_answers": [ + "on the field", + "field" + ], + "count": 3 + }, + { + "answers": [ + "ቤተ-መጽሐፍት", + "ቤተ-መጽሀፍት" + ], + "en_answers": [ + "library" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-41": { + "question": "በኢትዮጵያ በስንተኛው የክፍል ደረጃ ላይ ተማሪዎች የመጀመሪያውን ብሄራዊ ፈተና የሚወስዱት?", + "en_question": "In your country, at which grade level do students take their first national-level examination?", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 3 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-53": { + "question": "በኢትዮጵያ ምንኛው ክልል ለቡና/ሻይ ኢንዱስትሪ በስፋት ታውቃል?", + "en_question": "Which region in your country is widely known for its coffee/tea industry?", + "annotations": [ + { + "answers": [ + "ኦሮሚያ", + "ኦሮምያ" + ], + "en_answers": [ + "oromia", + "oromia region" + ], + "count": 4 + }, + { + "answers": [ + "ደቡብ" + ], + "en_answers": [ + "south", + "south region" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-54": { + "question": "በኢትዮጵያ ውስጥ የትኛው ክልል በእንስሳት እርባታ ኢንዱስትሪ በስፋት ይታወቃል?", + "en_question": "Which region in your country is widely known for its livestock industry?", + "annotations": [ + { + "answers": [ + "አፋር" + ], + "en_answers": [ + "afar", + "afar region" + ], + "count": 3 + }, + { + "answers": [ + "አማራ" + ], + "en_answers": [ + "amhara", + "amhara region" + ], + "count": 2 + }, + { + "answers": [ + "ሶማሊ" + ], + "en_answers": [ + "somali", + "somali region" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-59": { + "question": "በኢትዮጵያ በበርሃማ አካባቢ የሚኖሩ ሰዎች ዋና ሥራ ምንድን ነው?", + "en_question": "What is the main occupation of people living in deserts in your country?", + "annotations": [ + { + "answers": [ + "አርበቶ አደር", + "የቤት እንስሳት እርባታ" + ], + "en_answers": [ + "shepherd" + ], + "count": 2 + }, + { + "answers": [ + "ከብት ማርባት", + "ከብት እርባታ" + ], + "en_answers": [ + "cattle breeding" + ], + "count": 2 + }, + { + "answers": [ + "የሰሊጥ እርሻ" + ], + "en_answers": [ + "sesame farm" + ], + "count": 1 + }, + { + "answers": [ + "የፍየል እርባታ" + ], + "en_answers": [ + "goat breeding" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-60": { + "question": "በኢትዮጵያ የትኛው እንስሳት ነው ለመጓጓዣነት የሚያገለግለው?", + "en_question": "Which animal is typically used for transportation in your country?", + "annotations": [ + { + "answers": [ + "ፈረስ" + ], + "en_answers": [ + "horse" + ], + "count": 3 + }, + { + "answers": [ + "ግመል", + "ግምል" + ], + "en_answers": [ + "camel" + ], + "count": 3 + }, + { + "answers": [ + "በቅሎ" + ], + "en_answers": [ + "mule" + ], + "count": 2 + }, + { + "answers": [ + "አህያ" + ], + "en_answers": [ + "donkey" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-72": { + "question": "በኢትዮጵያ ለልጆች ለመነበብ በአዝናኝነቱ በጣም ታዋቂው መጽሐፍ የቱ ነው?", + "en_question": "What is the most popular comic book for children to read in your country?", + "annotations": [ + { + "answers": [ + "የተረት መጽሐፍቶች", + "የተረት መጽሀፎች", + "የተረት" + ], + "en_answers": [ + "story books", + "fairy books", + "fairy", + "folklore" + ], + "count": 2 + }, + { + "answers": [ + "አላዲንና አስደናቂው ፋኖስ" + ], + "en_answers": [ + "aladdin and the wonderful lamp" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-73": { + "question": "በኢትዮጵያ ለልጆች በጣም ታዋቂ የዩቲዩብ ቻናል ምንድን ነው?", + "en_question": "What is the most popular YouTube channel for children in your country?", + "annotations": [ + { + "answers": [ + "የኢትዮጵያ ልጆች" + ], + "en_answers": [ + "ethiopia children" + ], + "count": 2 + }, + { + "answers": [ + "ዶንኪ ቱብ", + "ድንቅ ልጆች" + ], + "en_answers": [ + "donkey tube" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-74": { + "question": "በኢትዮጵያ እጅግ ተወዳጁ የውይይት ፕሮርጋም ነው?", + "en_question": "What is the most popular talk show in your country?", + "annotations": [ + { + "answers": [ + "አርሂቡ" + ], + "en_answers": [ + "arehibu" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-am-77": { + "question": "በኢትዮጵያ እጅግ ታዋቂው ሃይማኖታዊ ባዓል የቱ ነው?", + "en_question": "What is the most famous religious holiday in your country?", + "annotations": [ + { + "answers": [ + "ፋሲካ", + "ትንሳየ" + ], + "en_answers": [ + "easter" + ], + "count": 2 + }, + { + "answers": [ + "መስቅል" + ], + "en_answers": [ + "cross" + ], + "count": 1 + }, + { + "answers": [ + "ጥምቀት" + ], + "en_answers": [ + "epiphany" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-am-81": { + "question": "በኢትዮጵያ እጅግ በጣም ሰርግ የሚበዛበት ወር የትኛው ነው? (በቁጥረ (ምሳሌ 1) ብቻ ስጡ።)", + "en_question": "What is the busiest month for weddings in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "5", + "ጥር" + ], + "en_answers": [ + "5", + "january" + ], + "count": 5 + }, + { + "answers": [ + "8", + "ሚያዝያ" + ], + "en_answers": [ + "april" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-83": { + "question": "በኢትዮጵያ ምን ዓይነት ባህላዊ የሙዚቃ መሣሪያ እጅግ ታዋቂ ነው?", + "en_question": "What is the most popular traditional musical instrument in your country?", + "annotations": [ + { + "answers": [ + "ዋሽንት" + ], + "en_answers": [ + "flute" + ], + "count": 4 + }, + { + "answers": [ + "ክራር" + ], + "en_answers": [ + "kirare" + ], + "count": 3 + }, + { + "answers": [ + "ማሲንቆ", + "ማሰንቆ" + ], + "en_answers": [ + "masinko" + ], + "count": 2 + }, + { + "answers": [ + "ከበሮ" + ], + "en_answers": [ + "drum" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-01": { + "question": "በኢትዮጵያ የሚመረተው ዋና የእርሻ ምርት ምንድነው?", + "en_question": "What is the main agricultural product produced in your country?", + "annotations": [ + { + "answers": [ + "ጤፍ" + ], + "en_answers": [ + "tef" + ], + "count": 4 + }, + { + "answers": [ + "ስንዴ" + ], + "en_answers": [ + "wheat" + ], + "count": 3 + }, + { + "answers": [ + "ሰሊጥ" + ], + "en_answers": [ + "sesame" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-02": { + "question": "በኢትዮጵያ እጅግ ታዋቂው ከስንዴ ግባአት የሚዘጋጅ ምግብ ምንድን ነው?", + "en_question": "What is the most popular wheat-based food item in your country?", + "annotations": [ + { + "answers": [ + "ዳቦ" + ], + "en_answers": [ + "bread" + ], + "count": 4 + }, + { + "answers": [ + "አባሻ ዳቦ" + ], + "en_answers": [ + "abasha bread" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-05": { + "question": "በኢትዮጵያ እንግዶች ቤተሰቦችን ሲጎበኙ የሚቀርብላቸው እጅግ እንደተለመደ መጠጥ ምንድን ነው?", + "en_question": "What is the most typical drink offered to guests when they visit households in your country?", + "annotations": [ + { + "answers": [ + "ጠላ" + ], + "en_answers": [ + "tela" + ], + "count": 5 + }, + { + "answers": [ + "ጠጅ", + "ጥጅ" + ], + "en_answers": [ + "teji", + "teje" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-07": { + "question": "በኢትዮጵያ በጣም የታወቀው ከአሳ የሚዘጋጅ ምግብ ምንድን ነው?", + "en_question": "What is the most popular dish cooked with fish in your country?", + "annotations": [ + { + "answers": [ + "አሳ ጥብስ" + ], + "en_answers": [ + "fish fry" + ], + "count": 3 + }, + { + "answers": [ + "ቱና" + ], + "en_answers": [ + "tuna" + ], + "count": 1 + }, + { + "answers": [ + "አሳ ዱለት" + ], + "en_answers": [ + "fish dulet" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-14": { + "question": "በዝናባማ ወራት ጊዜ ኢትዮጵያውያን ምን ምግብ ይወዳሉ?", + "en_question": "What food do people from your country like to eat during rainy weather?", + "annotations": [ + { + "answers": [ + "ቦቆሎ", + "በቆሎ", + "በቆሎ ጥብስ" + ], + "en_answers": [ + "millet", + "millet fry" + ], + "count": 4 + }, + { + "answers": [ + "ትኩስ ድንች", + "ጥኩስ ደንች", + "ድንች" + ], + "en_answers": [ + "hot potatoes", + "potatoes" + ], + "count": 3 + }, + { + "answers": [ + "አትክልት" + ], + "en_answers": [ + "vegetable" + ], + "count": 1 + }, + { + "answers": [ + "ጎመን" + ], + "en_answers": [ + "cabbage" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-15": { + "question": "በኢትዮጵያ የአየር ሙቀት ሲጨምር ምን መጠጥ በአብዛኛው ይጠጣል?", + "en_question": "What drink is commonly consumed in your country when the weather is hot?", + "annotations": [ + { + "answers": [ + "ቢራ" + ], + "en_answers": [ + "beer" + ], + "count": 3 + }, + { + "answers": [ + "ውሀ", + "ውሃ", + "የቀዘቀዘ ዉሀ" + ], + "en_answers": [ + "water", + "chilled water", + "cold water" + ], + "count": 3 + }, + { + "answers": [ + "አልኮል" + ], + "en_answers": [ + "alcohol" + ], + "count": 1 + }, + { + "answers": [ + "ድራፍት", + "ጃምቦ" + ], + "en_answers": [ + "drafte" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-20": { + "question": "በኢትዮጵያ የትኛው ዓይነት የቤት ውስጥ ስፖርት በጣም ታዋቂ ነው?", + "en_question": "What is the most popular indoor sport in your country?", + "annotations": [ + { + "answers": [ + "ቦክስ" + ], + "en_answers": [ + "boxing" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-as-29": { + "question": "በኢትዮጵያ ወንዶች ምን ዓይነት ስፖርት መመልከት ይወዳሉ?", + "en_question": "What sport do men in your country like to watch?", + "annotations": [ + { + "answers": [ + "እግር ኳስ" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-30": { + "question": "ኢትዮጵያዊት ሴቶች ምን ዓይነት ስፖርት መመልከት ይወዳሉ?", + "en_question": "What sport do women in your country like to watch?", + "annotations": [ + { + "answers": [ + "እግር ኳስ" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "ሩጫ", + "እሩጫ" + ], + "en_answers": [ + "athletics", + "run", + "running" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-as-58": { + "question": "በኢትዮጵያ ሰዎች በየስራ ቦታቸው ለመጠጣት የሚወዱት እጅግ ታዋቂ መጠጥ ምንድን ነው?", + "en_question": "What is the most popular beverage that people from your country like to drink in their workplace?", + "annotations": [ + { + "answers": [ + "ቡና", + "ብና" + ], + "en_answers": [ + "coffee" + ], + "count": 4 + }, + { + "answers": [ + "ሻይ" + ], + "en_answers": [ + "tea" + ], + "count": 3 + }, + { + "answers": [ + "ውሀ", + "ውሃ" + ], + "en_answers": [ + "water" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-64": { + "question": "በኢትዮጵያ በየትኛው በዓል ሁሉም ቤተሰቦች በአንድ ላይ ለመሆን ይሻሉ?", + "en_question": "On which holiday do all family members tend to reunite in your country?", + "annotations": [ + { + "answers": [ + "ፋሲካ", + "ትንሳየ" + ], + "en_answers": [ + "easter" + ], + "count": 2 + }, + { + "answers": [ + "ረመዳን", + "ሮመዳን" + ], + "en_answers": [ + "ramadan" + ], + "count": 1 + }, + { + "answers": [ + "ዘመን መለወጫ", + "አዲስ አመትፍ", + "እንቁጣጣሽ" + ], + "en_answers": [ + "new year" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-as-76": { + "question": "በኢትዮጵያ በባህላዊ በዓላት ጊዜ ቤተሰቦች ምን ዓይነት ባህላዊ ጨዋታዎች ይጫወታሉ?", + "en_question": "What traditional games do families play during traditional holidays in your country?", + "annotations": [ + { + "answers": [ + "ጭፈራ", + "ውዝዋዜ" + ], + "en_answers": [ + "dancing" + ], + "count": 1 + }, + { + "answers": [ + "የገና ጨዋታ" + ], + "en_answers": [ + "gena play", + "gena game" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 3, + "idk": 0, + "not-applicable": 0 + } + }, + "New-as-80": { + "question": "በኢትዮጵያ በባህላዊ በዓላት ላይ ሰዎች የምን ዓይነት አልባሳት ይለብሳሉ?", + "en_question": "What type of clothing do people from your country wear during traditional festivals?", + "annotations": [ + { + "answers": [ + "የባህል ልብስ", + "የባዕል ልብስ", + "የባህል", + "የሸማ የባህል ልብሶችን", + "ጥበብ" + ], + "en_answers": [ + "traditional clothing", + "traditional", + "cultural" + ], + "count": 5 + }, + { + "answers": [ + "ነጠላ" + ], + "en_answers": [ + "ordinary" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-89": { + "question": "በኢትዮጵያ በባህላዊ በዓላት ላይ ሰዎች የምን ዓይነት ጌጣጌጥ ይለብሳሉ?", + "en_question": "What traditional festival accessories do people from your country wear?", + "annotations": [ + { + "answers": [ + "ወርቅ", + "የወርቅ" + ], + "en_answers": [ + "gold" + ], + "count": 4 + }, + { + "answers": [ + "የአንገት ሀብል", + "ያንገት ሀብል" + ], + "en_answers": [ + "necklace" + ], + "count": 2 + }, + { + "answers": [ + "አምባር" + ], + "en_answers": [ + "bracelet" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-05": { + "question": "በኢትዮጵያ በአልኮል ምርት እጅግ ታዋቂ የሆነ ክልል የት ነው?", + "en_question": "What is the most famous region for alcohol production in your country?", + "annotations": [ + { + "answers": [ + "አዲስ አበባ" + ], + "en_answers": [ + "addis abeba" + ], + "count": 1 + }, + { + "answers": [ + "አማራ" + ], + "en_answers": [ + "amhara" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-az-11": { + "question": "በክረምት ወራት ሰዎች በኢትዮጵያ በብዛት የሚበሉት ፍሬ ምንድን ነው?", + "en_question": "What fruit do people from your country often eat in the summer season?", + "annotations": [ + { + "answers": [ + "ብርቱካን", + "ቦሮ" + ], + "en_answers": [ + "orange" + ], + "count": 1 + }, + { + "answers": [ + "ማንጎ" + ], + "en_answers": [ + "mango" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-az-12": { + "question": "በኢትዮጵያ ውስጥ በባህር ምግብ ምርቱ የታወቀው ክልል የቱ ነው?", + "en_question": "Which region in your country is known for its seafood?", + "annotations": [ + { + "answers": [ + "ኦሮሚያ", + "ኦሮፙ" + ], + "en_answers": [ + "oromia", + "oromia region" + ], + "count": 1 + }, + { + "answers": [ + "ሀዋሳ" + ], + "en_answers": [ + "hawassa" + ], + "count": 1 + }, + { + "answers": [ + "ደቡብ" + ], + "en_answers": [ + "south", + "south region" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-az-21": { + "question": "በኢትዮጵያ የትኛው ክልል ለበረዶ መንሸራተቻ ጨዋታ በጣም ታዋቂ ነው?", + "en_question": "Which region in your country is the most popular skiing destination?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "New-az-26": { + "question": "በኢትዮጵያ እጅግ ታዋቂ የማርሻል አርት ተጫዋች ማነው?", + "en_question": "Who is the most popular martial arts player in your country?", + "annotations": [], + "idks": { + "idk": 3, + "not-applicable": 2, + "no-answer": 0 + } + }, + "New-az-27": { + "question": "ባለፉት አስር አመታት ውስጥ በኢትዮጵያ እያደገ የነበረው ስፖርት ምንድን ነው?", + "en_question": "Which sport has been one of the fastest-growing in your country over the last decade?", + "annotations": [ + { + "answers": [ + "ሩጫ", + "አትሌቲክስ" + ], + "en_answers": [ + "athletics", + "run", + "running" + ], + "count": 3 + }, + { + "answers": [ + "እግር ኳስ" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-39": { + "question": "ከኢትዮጵያ ለትምህርት ወዴ ውጭ የሚሄዱ ተማሪዎች በአብዛኛው የሚመርጡት አገር የቱ ነው?", + "en_question": "Which country is the most popular destination for students from your country studying abroad?", + "annotations": [ + { + "answers": [ + "አሜሪካ", + "አውሮፓ" + ], + "en_answers": [ + "america" + ], + "count": 2 + }, + { + "answers": [ + "ስዊደን", + "ኖርዌ", + "ጀርመን", + "ፈረንሳይ" + ], + "en_answers": [ + "sweden" + ], + "count": 2 + }, + { + "answers": [ + "ቻይና", + "ታይዋን", + "ታይላንድ", + "ደቡብ ኮሪያ", + "ጃፓን" + ], + "en_answers": [ + "china" + ], + "count": 1 + }, + { + "answers": [ + "ህንድ" + ], + "en_answers": [ + "india" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-49": { + "question": "በኢትዮጵያ በአንድ ቤተሰብ ስንት ሰዎች ይኖራሉ? (እባኮትን በቁጥር (ምሳሌ 1) ብቻ ያቅርቡ።)", + "en_question": "How many people work in a typical family in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "6", + "7" + ], + "en_answers": [ + "6" + ], + "count": 2 + }, + { + "answers": [ + "4", + "3" + ], + "en_answers": [ + "4" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "9", + "8" + ], + "en_answers": [ + "9" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-60": { + "question": "በኢትዮጵያ፣ ሁለቱም ወላጆች ሰራተኞች ከሆኑ ልጆችን ማን ይከታተላል?", + "en_question": "In your country, who takes care of kids when both parents are working?", + "annotations": [ + { + "answers": [ + "የቤት ሰራተኛ" + ], + "en_answers": [ + "housekeeper", + "servant" + ], + "count": 3 + }, + { + "answers": [ + "እናት", + "እናትን", + "አያት", + "አክስት", + "እህት" + ], + "en_answers": [ + "mother" + ], + "count": 2 + }, + { + "answers": [ + "ዘመድ", + "ጎረቤት" + ], + "en_answers": [ + "relative", + "kin" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-69": { + "question": "ኢትዮጵያ ወንዶች የሚመርጡት የአልኮል መጠጥ ምንድነው?", + "en_question": "What is the preferred alcoholic beverage for men from your country?", + "annotations": [ + { + "answers": [ + "ቢራ" + ], + "en_answers": [ + "beer" + ], + "count": 5 + }, + { + "answers": [ + "ድራፍት" + ], + "en_answers": [ + "drafete" + ], + "count": 1 + }, + { + "answers": [ + "አረቄ", + "ጂን", + "ቮድካ" + ], + "en_answers": [ + "liquor" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-70": { + "question": "ኢትዮጵያ ሴቶች የሚመርጡት አስካሪ መጠጥ መጠጥ ምንድነው?", + "en_question": "What is the preferred alcoholic beverage for women from your country?", + "annotations": [ + { + "answers": [ + "ወይን", + "ቢራ" + ], + "en_answers": [ + "wine" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-73": { + "question": "ኢትዮጵያ በተለይ ሰርግ ላይ በአማካይ ስንት ሰዎች ይሳተፋሉ? (በቁጥረ (ምሳሌ 1) ብቻ ስጡ።)", + "en_question": "How many people on average typically attend a wedding in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "200" + ], + "en_answers": [ + "200" + ], + "count": 2 + }, + { + "answers": [ + "150" + ], + "en_answers": [ + "150" + ], + "count": 1 + }, + { + "answers": [ + "70" + ], + "en_answers": [ + "70" + ], + "count": 1 + }, + { + "answers": [ + "300" + ], + "en_answers": [ + "300" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-01": { + "question": "በኢትዮጵያ ሰዎች ጥብስ ሲሰሩ በተለይ የሚጠቀሙት ምን ዓይነት ሥጋ ነው?", + "en_question": "What kind of meat do people usually eat when they have barbecue in your country?", + "annotations": [ + { + "answers": [ + "ቀይ ስጋ", + "ቀይ" + ], + "en_answers": [ + "red meat" + ], + "count": 4 + }, + { + "answers": [ + "የበግ ስጋ" + ], + "en_answers": [ + "lamb meat" + ], + "count": 1 + }, + { + "answers": [ + "የከብት ስጋ" + ], + "en_answers": [ + "beef" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-02": { + "question": "በኢትዮጵያ ሰዎች በተለይ ምን ሰዓት ቁርስ ይበላሉ? (በሰዓት አስቅምጡ (ምሳሌ 18:00, 09:00).)", + "en_question": "When do people usually have breakfast in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:30", + "02:30" + ], + "en_answers": [ + "08:30" + ], + "count": 3 + }, + { + "answers": [ + "07:30", + "01:30" + ], + "en_answers": [ + "07:30" + ], + "count": 1 + }, + { + "answers": [ + "09:00", + "03:00" + ], + "en_answers": [ + "09:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-04": { + "question": "በኢትዮጵያ ሰዎች በምሽት ምግብ ሲበሉ በተለይ ምን ዓይነት ምግብ ይመገባሉ?", + "en_question": "What kinds of food do people usually eat for late-night snacks in your country?", + "annotations": [ + { + "answers": [ + "አትክልት" + ], + "en_answers": [ + "vegetable" + ], + "count": 2 + }, + { + "answers": [ + "ሽሮ" + ], + "en_answers": [ + "shiro" + ], + "count": 1 + }, + { + "answers": [ + "እንቁላል" + ], + "en_answers": [ + "egg" + ], + "count": 1 + }, + { + "answers": [ + "እንጀራ" + ], + "en_answers": [ + "injera" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-05": { + "question": "በኢትዮጵያ በጣም ዝኘኛ የሚያቃጥል ምግብ ምንድነው?", + "en_question": "What is the most famous spicy dish in your country?", + "annotations": [ + { + "answers": [ + "ሚጥሚጣ" + ], + "en_answers": [ + "piri piri" + ], + "count": 2 + }, + { + "answers": [ + "አፋኝ", + "ዳጣ", + "ቃጠሎ", + "ድንች ጥብስ በሚጥሚጣ" + ], + "en_answers": [ + "idk" + ], + "count": 2 + }, + { + "answers": [ + "ቃሪያ" + ], + "en_answers": [ + "pepper" + ], + "count": 1 + }, + { + "answers": [ + "ዶሮ ወጥ" + ], + "en_answers": [ + "chicken stew", + "doro wot" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-07": { + "question": "በኢትዮጵያ ሰዎች ከጠንካራ መጠጥ ጋር በተለይ የሚወሰዱ ምግቦች ምንምን ናቸው?", + "en_question": "What food items do people typically pair with hard liquor in your country?", + "annotations": [ + { + "answers": [ + "ስጋ" + ], + "en_answers": [ + "meat" + ], + "count": 3 + }, + { + "answers": [ + "ጥሬ ስጋ" + ], + "en_answers": [ + "raw meat" + ], + "count": 1 + }, + { + "answers": [ + "ጥብስ" + ], + "en_answers": [ + "tibs", + "tebs", + "t’ibs", + "tibbs", + "roasted meat", + "roast meat" + ], + "count": 1 + }, + { + "answers": [ + "ስጋ ቁርጥ" + ], + "en_answers": [ + "meat cuts", + "cut meat" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-08": { + "question": "በኢትዮጵያ ምግብ ለማብሰል ምን ዓይነት ቅመማ ቅመም አስፈላጊ ነው??", + "en_question": "What seasoning is indispensable in cooking in your country?", + "annotations": [ + { + "answers": [ + "ጨው", + "ዘይት" + ], + "en_answers": [ + "salt" + ], + "count": 1 + }, + { + "answers": [ + "ዝንጅብል", + "ሽንኩርት" + ], + "en_answers": [ + "ginger" + ], + "count": 1 + }, + { + "answers": [ + "በርበሬ", + "ነጭ ሽንኩርት" + ], + "en_answers": [ + "red pepper" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ch-09": { + "question": "በኢትዮጵያ የአየር ሁኔታ ቀዝቃዛ ሲሆን ሰዎች በተለይ ምን ምግብ ይመገባሉ?", + "en_question": "What food do people typically consume when the weather is cold in your country?", + "annotations": [ + { + "answers": [ + "ትኩስ ምግብ", + "ትኩስ የሆነ" + ], + "en_answers": [ + "hot foods" + ], + "count": 2 + }, + { + "answers": [ + "ሩዝ" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "ፓስታ" + ], + "en_answers": [ + "pasta" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "New-ch-13": { + "question": "በኢትዮጵያ ምን ዓይነት አልኮል ብራንድ እጅግ ዝነኛ ነው?", + "en_question": "What is the most famous alcohol brand in your country?", + "annotations": [ + { + "answers": [ + "ውስኪ", + "አረቄ", + "አረቂ" + ], + "en_answers": [ + "whiskey", + "liquor" + ], + "count": 3 + }, + { + "answers": [ + "አረቄ" + ], + "en_answers": [ + "liquor" + ], + "count": 1 + }, + { + "answers": [ + "ጊዮርጊስ ቢራ" + ], + "en_answers": [ + "st. george beer" + ], + "count": 1 + }, + { + "answers": [ + "ዳሽን ቢራ" + ], + "en_answers": [ + "dashen beer" + ], + "count": 1 + }, + { + "answers": [ + "ጠላ" + ], + "en_answers": [ + "tela" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-14": { + "question": "በኢትዮጵያ ሰዎች ሲታመሙ በተለይ ምን ምግቦችን ይመገባሉ?", + "en_question": "What foods do people usually eat when they are sick in your country?", + "annotations": [ + { + "answers": [ + "ጣፋጭ" + ], + "en_answers": [ + "delicious", + "sweet" + ], + "count": 2 + }, + { + "answers": [ + "ገንፎ" + ], + "en_answers": [ + "porridge" + ], + "count": 1 + }, + { + "answers": [ + "መኮረኒ" + ], + "en_answers": [ + "mekoreni" + ], + "count": 1 + }, + { + "answers": [ + "ፓስታ" + ], + "en_answers": [ + "pasta" + ], + "count": 1 + }, + { + "answers": [ + "አትክልት", + "አትክልት እና ፍራፍሬ" + ], + "en_answers": [ + "vegetables" + ], + "count": 1 + }, + { + "answers": [ + "ፍራፍሬ", + "አትክልት እና ፍራፍሬ" + ], + "en_answers": [ + "fruits" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-15": { + "question": "በኢትዮጵያ ሰዎች ከሱፐርማርኬቶች ምን አይነት የተዘጋጁ ምግቦችን በተለይ ይገዛሉ?", + "en_question": "What prepared/ready-to-eat food do people typically buy at supermarkets in your country?", + "annotations": [ + { + "answers": [ + "የታሸጉ መግቦችን", + "የታሸጉ", + "ቆሎ" + ], + "en_answers": [ + "packed foods" + ], + "count": 3 + }, + { + "answers": [ + "በርበሬ" + ], + "en_answers": [ + "red pepper" + ], + "count": 1 + }, + { + "answers": [ + "ምጥን ሽሮ" + ], + "en_answers": [ + "spiced shiro" + ], + "count": 1 + }, + { + "answers": [ + "ዶሮ" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "የዶሮ አረስቶ" + ], + "en_answers": [ + "roasted chicken" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-16": { + "question": "በኢትዮጵያ በጣም ታዋቂው ከስፖርት ጋር የተያያዥነት ያለው ፊልም ምንድነው?", + "en_question": "What is the most famous sports-related movie in your country?", + "annotations": [ + { + "answers": [ + "ሴት" + ], + "en_answers": [ + "woman", + "girl" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 2, + "no-answer": 0 + } + }, + "New-ch-17": { + "question": "በኢትዮጵያ ሰዎች ብዙ ለመሞከር የሚፈልጉት ምን ዓይነት ስፖርት ነው?", + "en_question": "What extreme sport do people generally wish to try the most in your country?", + "annotations": [ + { + "answers": [ + "እግር ኳስ" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "ሩጫ" + ], + "en_answers": [ + "athletics", + "run", + "running" + ], + "count": 2 + }, + { + "answers": [ + "አትሌቲክስ" + ], + "en_answers": [ + "athletics" + ], + "count": 1 + }, + { + "answers": [ + "መርብ ኳስ" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-18": { + "question": "በኢትዮጵያ በቤት ወስጥ እና በሜዳ ላይ ከሚከናወኑ ውድድሮች ለመመልከት እጅግ ታዋቂዎቹ የትኞቹ ናቸው?", + "en_question": "Which track and field event is the most popular to watch during competitions in your country?", + "annotations": [ + { + "answers": [ + "እግር ኳስ" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "በሜዳ" + ], + "en_answers": [ + "in the field" + ], + "count": 2 + }, + { + "answers": [ + "ሩጫ", + "የሩጫ ውድድር" + ], + "en_answers": [ + "athletics", + "run", + "running", + "running competition", + "race" + ], + "count": 2 + }, + { + "answers": [ + "መርብ ኳስ" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-19": { + "question": "በኢትዮጵያ ከሚደረጉ ውድድሮች ለመታየት በጣም ተወዳጅ የሆነው የትኛው የጂምናስቲክ ዝግጅት ነው?", + "en_question": "Which gymnastics event is the most popular to watch during competitions in your country?", + "annotations": [ + { + "answers": [ + "ሰርከስ" + ], + "en_answers": [ + "circus" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 2, + "no-answer": 0 + } + }, + "New-ch-23": { + "question": "በኢትዮጵያ በጣም ታዋቂው የጠረጴዛ ቴኒስ ተጫዋች ማነው?", + "en_question": "Who is the most famous table tennis player in your country?", + "annotations": [], + "idks": { + "idk": 3, + "not-applicable": 2, + "no-answer": 0 + } + }, + "New-ch-26": { + "question": "በኢትዮጵያ በክረምት ኦሊምፒክ ለመታየት በጣም ታዋቂ የሆነው የትኛው ዝግጅት ነው?", + "en_question": "In the Winter Olympics, which event is the most popular to watch in your country?", + "annotations": [ + { + "answers": [ + "ሩጫ" + ], + "en_answers": [ + "athletics", + "run", + "running" + ], + "count": 3 + }, + { + "answers": [ + "የበረዶ መሸራተት" + ], + "en_answers": [ + "ice sliding" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-ch-27": { + "question": "በኢትዮጵያ በጣም ታዋቂው ቦክሰኛ ማነው? ", + "en_question": "Who is the most famous boxer in your country?", + "annotations": [ + { + "answers": [ + "ገረመው ደምቦባ" + ], + "en_answers": [ + "girmaw demboba" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 2, + "no-answer": 0 + } + }, + "New-ch-30": { + "question": "በኢትዮጵያ በቤት ወስጥና በሜዳ ውድድሮች እጅግ ታዋቂ የሆነው አትሌት ማነው? ", + "en_question": "Who is the most famous track and field athlete in your country?", + "annotations": [ + { + "answers": [ + "ቀነኒሳ በቀለ", + "ቀነኒሳ" + ], + "en_answers": [ + "kennisa bekele" + ], + "count": 4 + }, + { + "answers": [ + "ሀይሌ ገ/ስላሴ", + "ሀይሌ ገብረስላሴ" + ], + "en_answers": [ + "haile gebreselassie", + "haile g/selassie" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-31": { + "question": "በኢትዮጵያ ወላጆች ለልጆቻቸው ከሁሉ ይልቅ የሚመኙት የስራ አይነት ምንድነው?", + "en_question": "What job do parents most hope their children will pursue in your country?", + "annotations": [ + { + "answers": [ + "ዶክተር", + "የህክምና ዶክተር" + ], + "en_answers": [ + "doctor", + "medical doctor" + ], + "count": 5 + }, + { + "answers": [ + "ፓይለት", + "አይሮፕላን አብራሪ" + ], + "en_answers": [ + "pilot" + ], + "count": 2 + }, + { + "answers": [ + "ሀኪም" + ], + "en_answers": [ + "doctor", + "physician", + "therapist" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-32": { + "question": "በኢትዮጵያ ሰዎች ምን አይነት የተለየ ሶፍትዌን ለቢሮ ስራ ይጠቀማሉ?", + "en_question": "What office software do people typically use in the workplace in your country?", + "annotations": [ + { + "answers": [ + "ማይክሮሶፍት ወርድ", + "ኦፊስ" + ], + "en_answers": [ + "microsoft word", + "office", + "ms office" + ], + "count": 4 + }, + { + "answers": [ + "ፓወር ግእዝ" + ], + "en_answers": [ + "power geez" + ], + "count": 1 + }, + { + "answers": [ + "አፕልኬሽን ሶፍትዌር" + ], + "en_answers": [ + "application software", + "software" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-38": { + "question": "በኢትዮጵያ ምርት ወደ ውጭ በመላክና ከውጭም በማስገባት ታዋቂ የሆነ ከተማ ወይም ክልል የቱ ነው? ", + "en_question": "Which cities or regions are known for their import and export activities in your country?", + "annotations": [ + { + "answers": [ + "ድሬዳዋ", + "ድሬ" + ], + "en_answers": [ + "dire dawa", + "diredawa" + ], + "count": 2 + }, + { + "answers": [ + "ጅጅጋ", + "ጂግጂጋ" + ], + "en_answers": [ + "jigjiga" + ], + "count": 1 + }, + { + "answers": [ + "አዲስ አበባ" + ], + "en_answers": [ + "addis ababa" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-39": { + "question": "በኢትዮጵያ በበይነ-መረብ ንግድ ኢንዱስትሪው በአብዛኛው የሚታወቅ ድረ-ገፅ የትኛው ነው?", + "en_question": "What platform is commonly used in the e-commerce industry in your country?", + "annotations": [ + { + "answers": [ + "አሊባባ" + ], + "en_answers": [ + "alibaba" + ], + "count": 2 + }, + { + "answers": [ + "መኪና" + ], + "en_answers": [ + "car" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-44": { + "question": "በኢትዮጵያ የአዲስ ሠራተኞች መደበኛዉን የቅጥር ፎርም ከመፈረማቸው በፊት በተልየ የሚፈርሙት የሙከራ ቅጥር ለምን ያክል ጊዜ ነው? (ምሳሌ 1 ወር)።", + "en_question": "How long is the typical probation period for new employees before signing a formal contract in your country? (e.g., 1 month).", + "annotations": [ + { + "answers": [ + "6 ወር", + "6" + ], + "en_answers": [ + "6 months" + ], + "count": 4 + }, + { + "answers": [ + "45 ቀን" + ], + "en_answers": [ + "45 days" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-45": { + "question": "በኢትዮጵያ ወጣቶች ስራ ለመጀመር በተለይ የትኛውን ዓይነት የስራ ዘርፍ ይመርጣሉ?", + "en_question": "Which industries do young people typically choose to start businesses in your country?", + "annotations": [ + { + "answers": [ + "አነስተኛ ካፒታል የሚፈልገውን" + ], + "en_answers": [ + "minimum capital required" + ], + "count": 1 + }, + { + "answers": [ + "ሜካኒክ" + ], + "en_answers": [ + "mechanic" + ], + "count": 1 + }, + { + "answers": [ + "የባንክ" + ], + "en_answers": [ + "bank", + "banker" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-49": { + "question": "በኢትዮጵያ ቤተሰቦች የርቀት ግንኙነት ለማድረግ በተለይ የሚመርጡት የመገናኛ ዘዴ ምንድን ነው?", + "en_question": "What is the most common way for family members to communicate remotely in your country?", + "annotations": [ + { + "answers": [ + "ስልክ", + "ስልክ መደወል" + ], + "en_answers": [ + "phone", + "phone call" + ], + "count": 5 + }, + { + "answers": [ + "ሶሻል ሜዲያ" + ], + "en_answers": [ + "social media" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-51": { + "question": "በኢትዮጵያ ለቤተሰብ ጉዞዎች በተለይ የሚመረጠው የእንግዳ ማረፊያ የትኛው ነው?", + "en_question": "What form of accommodation is typically booked for family trips in your country?", + "annotations": [ + { + "answers": [ + "ፔንሲወን", + "አልጋ ቤት" + ], + "en_answers": [ + "pension", + "gust house", + "bedroom" + ], + "count": 3 + }, + { + "answers": [ + "ሶደሬ" + ], + "en_answers": [ + "sodere" + ], + "count": 1 + }, + { + "answers": [ + "ላንጋኖ" + ], + "en_answers": [ + "langano" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-54": { + "question": "በኢትዮጵያ በቤተሰቦች የእራት ምግብ ላይ በተለይ ተዘጋጅቶ የሚቀርብ ፍራፍሬ ምንድን ነው?", + "en_question": "Which fruit is usually prepared the most for family dinners in your country?", + "annotations": [ + { + "answers": [ + "ብርቱካን", + "ማንጎ" + ], + "en_answers": [ + "orenge" + ], + "count": 1 + }, + { + "answers": [ + "ፓፓዬ", + "አናናስ" + ], + "en_answers": [ + "papaya" + ], + "count": 1 + }, + { + "answers": [ + "ሙዝ" + ], + "en_answers": [ + "banana" + ], + "count": 1 + }, + { + "answers": [ + "እንጀራ ፍርፍር" + ], + "en_answers": [ + "injera firfir" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "New-ch-64": { + "question": "በኢትዮጵያ ዩኒቨርስቲ ተማሪዎች በሳምንት ለምን ያክል ሰዓት ክፍለጊዜ አሉአቸው? (በቁጥር (ምሳሌ 1) በለው ይስጡ።)", + "en_question": "How many hours of classes do university students typically have per week in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 2 + }, + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 1 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-66": { + "question": "በኢትዮጵያ በህዝብ ከፍተኛ ትምህርት ቤቶች ለአንድ ሴሜስተር የሚከፈል የትምህርት ክፍያ ስንት ነው? (በቁጥር (ምሳሌ 1) ብለው ይስጡ።)", + "en_question": "What is the typical tuition fee per semester for public high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "1000" + ], + "en_answers": [ + "1000" + ], + "count": 3 + }, + { + "answers": [ + "300", + "300 ብር" + ], + "en_answers": [ + "300" + ], + "count": 1 + }, + { + "answers": [ + "1200" + ], + "en_answers": [ + "1200" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-70": { + "question": "በኢትዮጵያ ሁሉም የዩኒቨርስቲ ተማሪዎች በጋራ የሚማሯቸው አስፈላጊ ኮርሶች የትኞቹ ናቸው?", + "en_question": "What compulsory courses do university students have in common in your country?", + "annotations": [ + { + "answers": [ + "እንግሊዘኛ", + "እንግሊዝኛ" + ], + "en_answers": [ + "english" + ], + "count": 5 + }, + { + "answers": [ + "ሒሳብ", + "ሂሳብ" + ], + "en_answers": [ + "mathematics", + "math" + ], + "count": 3 + }, + { + "answers": [ + "ሲቪክስ", + "ሲዢክስ", + "ስነ-ዜጋ" + ], + "en_answers": [ + "c6" + ], + "count": 1 + }, + { + "answers": [ + "ፕሮግራሚንግ", + "ኮዲንግ" + ], + "en_answers": [ + "programming" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-71": { + "question": "በኢትዮጵያ በከፍተኛ 2ኛ ደረጃ ትምህርት ቤቶች ውስጥ በአንድ የክፍል አማካይ መጠን ስንት ነው? (በቁጥር (ምሳሌ 1) ይፃፉ።)", + "en_question": "What is the average class size in high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 3 + }, + { + "answers": [ + "45" + ], + "en_answers": [ + "45" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-72": { + "question": "በኢትዮጵያ የትኛው ዓይነት ዋና የትምህርት መስከ ለሥራ ቅጥር እጅግ ጥሩ ነው?", + "en_question": "Which major is considered most conducive to employment in your country?", + "annotations": [ + { + "answers": [ + "ኢኮኖሚክስ", + "ቢዝነስ እና ኢኮኖሚክስ" + ], + "en_answers": [ + "economics" + ], + "count": 2 + }, + { + "answers": [ + "ቢዝነስ", + "ቢዝነስ እና ኢኮኖሚክስ" + ], + "en_answers": [ + "business" + ], + "count": 2 + }, + { + "answers": [ + "ህክምና/ጤና" + ], + "en_answers": [ + "health", + "medicine" + ], + "count": 1 + }, + { + "answers": [ + "አካውንቲንግ" + ], + "en_answers": [ + "accounting" + ], + "count": 1 + }, + { + "answers": [ + "ኢንፎርሜሽን ቴክኖሎጂይ", + "አይቲ" + ], + "en_answers": [ + "information technology" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-73": { + "question": "በኢትዮጵያ በዩኒቨርስቲ ተማሪዎች በዝነኛነት የሚታወቁት ክለቦች ምን አይነት ናቸው?", + "en_question": "What type of clubs are most popular among university students in your country?", + "annotations": [ + { + "answers": [ + "የእግር ኳስ ክለቦች" + ], + "en_answers": [ + "football clubs", + "soccer clubs" + ], + "count": 1 + }, + { + "answers": [ + "የኪነ ጠበብ" + ], + "en_answers": [ + "art" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 1, + "no-answer": 0 + } + }, + "New-ch-74": { + "question": "በኢትዮጵያ የዩኒቨርስቲ ተማሪዎች በተለይ የምን ዓይነት መኖሪያ ይኖራሉ?", + "en_question": "What types of accommodation do university students in your country typically live in?", + "annotations": [ + { + "answers": [ + "ዶርም", + "ዶርምተሪ", + "የጋራ ዶርም" + ], + "en_answers": [ + "dormitory", + "common dormitory", + "shared dormitory" + ], + "count": 3 + }, + { + "answers": [ + "የጋራ መኖሪያ" + ], + "en_answers": [ + "apartment", + "shared residence" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-75": { + "question": "በኢትዮጵያ ለመካከለኛ ት/ቤት ተማሪዎች እያንዳንዱ ክፍለ-ትምህርት ጊዜ ስንት ደቂቃ ነው? (በቁጥር ብቻ ምላሽ ይስጡ። ምሳሌ፡ 1)", + "en_question": "How long is each class period for middle school students in your country (minutes)? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 4 + }, + { + "answers": [ + "45" + ], + "en_answers": [ + "45" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-78": { + "question": "በኢትዮጵያ ጡረተኛ ሴቶች የሚወዷቸው የመዝናኛ እንቅስቃሴዎች የትኞቹ ናቸው? ", + "en_question": "What leisure activities do retired women typically like in your country?", + "annotations": [ + { + "answers": [ + "የባህል ውዝዋዜወች", + "ጭፈራ" + ], + "en_answers": [ + "cultural dance" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 2, + "no-answer": 0 + } + }, + "New-ch-79": { + "question": "በኢትዮጵያ ጡረተኛ ወንዶች የሚወዷቸው የመዝናኛ እንቅስቃሴዎች የትኞቹ ናቸው? ", + "en_question": "What leisure activities do retired men typically like in your country?", + "annotations": [ + { + "answers": [ + "የእግር ጉዞ", + "የግር ጉዞ" + ], + "en_answers": [ + "walk" + ], + "count": 3 + }, + { + "answers": [ + "ዳማ" + ], + "en_answers": [ + "ethiopian dama", + "dama" + ], + "count": 1 + }, + { + "answers": [ + "ከረንቡላ" + ], + "en_answers": [ + "karambula" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-80": { + "question": "በኢትዮጵያ ሰዎች በተለይ በየትኞቹ ሀይማኖታዊ በዓላት ጊዜ ነው ቅዱሳን ቦታዎችን (ቤተ ክርስቲያኖች፣ መቅደሶች ወዘተ) የሚጎበኙት? ", + "en_question": "During which holidays do people typically visit religious sites (temples, churches, etc.) in your country?", + "annotations": [ + { + "answers": [ + "በትንሳኤ", + "በፋሲካ" + ], + "en_answers": [ + "on easter" + ], + "count": 3 + }, + { + "answers": [ + "ገና" + ], + "en_answers": [ + "x-mas" + ], + "count": 1 + }, + { + "answers": [ + "ጥምቀት" + ], + "en_answers": [ + "epiphany" + ], + "count": 1 + }, + { + "answers": [ + "በረመዳን" + ], + "en_answers": [ + "on ramadan" + ], + "count": 1 + }, + { + "answers": [ + "የንግስ በአላት" + ], + "en_answers": [ + "memorial feast" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-81": { + "question": "በኢትዮጵያ በተለይ ቤት የሚያደምቁ ስጦታዎች የትኞቹ ናቸው?", + "en_question": "What are the typical housewarming gifts in your country?", + "annotations": [ + { + "answers": [ + "አበባ" + ], + "en_answers": [ + "flower" + ], + "count": 2 + }, + { + "answers": [ + "ጥቅሶች", + "አባባሎች" + ], + "en_answers": [ + "quotes" + ], + "count": 1 + }, + { + "answers": [ + "ቴሌቭዝን" + ], + "en_answers": [ + "television" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-82": { + "question": "በኢትዮጵያ የሰርግ ስነስርዓት በተለይ ስንት ሰዓት ላይ ይጀመራል? (ምሳሌ 18:00, 09:00) ይምረጡ።)", + "en_question": "At what time do weddings typically start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "12:00", + "06:00" + ], + "en_answers": [ + "12:00" + ], + "count": 3 + }, + { + "answers": [ + "14:00", + "08:00" + ], + "en_answers": [ + "14:00" + ], + "count": 1 + }, + { + "answers": [ + "12:30" + ], + "en_answers": [ + "12:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-83": { + "question": "ከኢትዮጵያ ከተሞች በርካታ ዝግጅቶችን የሚያስተናግደው የትኛው ነው? ", + "en_question": "Which city in your country hosts festivals the most?", + "annotations": [ + { + "answers": [ + "አዲስ አበባ", + "አዲዲስ አበባ", + "አዳማ", + "ባህር ዳር" + ], + "en_answers": [ + "addis ababa" + ], + "count": 3 + }, + { + "answers": [ + "ሐዋሳ", + "ሃዋሳ" + ], + "en_answers": [ + "hawassa" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-84": { + "question": "በኢትዮጵያ ሰዎች ሰርግ ስነስርዓት ላይ ለመታደም በተለይ የሚለብሱት የልብስ ቀለም ምን አይነት ነው? ", + "en_question": "What color of clothing do people typically wear when attending weddings in your country?", + "annotations": [ + { + "answers": [ + "ነጭ" + ], + "en_answers": [ + "white" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-85": { + "question": "በኢትዮጵያ ሰዎች ሀዘን ስነስርዓት ላይ ለመታደም በተለይ የሚለብሱት የልብስ ቀለም ምን አይነት ነው? ", + "en_question": "What color of clothing do people typically wear when attending funerals in your country?", + "annotations": [ + { + "answers": [ + "ጥቁር" + ], + "en_answers": [ + "black" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-01": { + "question": "በኢትዮጵያ ሲኒማ ውስጥ የሚመገቡት ምግብ የትኛው ነው?", + "en_question": "Which snack is eaten in the cinema in your country?", + "annotations": [ + { + "answers": [ + "ፈንድሻ ቆሎ", + "ፈንድሻ" + ], + "en_answers": [ + "popcorn qollo", + "popcorn" + ], + "count": 2 + }, + { + "answers": [ + "ኩኪስ" + ], + "en_answers": [ + "cookies" + ], + "count": 1 + }, + { + "answers": [ + "ብስኩት" + ], + "en_answers": [ + "biscuit" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "New-en-02": { + "question": "በኢትዮጵያ ታዋቂውና ጥራት ያለው ጣዕም የትኛው ነው?", + "en_question": "What is the most popular chip/crisp flavour in your country?", + "annotations": [ + { + "answers": [ + "ኬክ" + ], + "en_answers": [ + "cake" + ], + "count": 2 + }, + { + "answers": [ + "ስኳር" + ], + "en_answers": [ + "sugar" + ], + "count": 1 + }, + { + "answers": [ + "የዶሮ ጣእም" + ], + "en_answers": [ + "chicken flavor" + ], + "count": 1 + }, + { + "answers": [ + "ማር" + ], + "en_answers": [ + "honey" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-04": { + "question": "በኢትዮጵያ ውስጥ ውስጥ ዝነኛና ታዋቂ ሼፍ ማን ነው?", + "en_question": "Who is a popular celebrity chef in your country?", + "annotations": [ + { + "answers": [ + "መክብብ" + ], + "en_answers": [ + "mekbib" + ], + "count": 1 + }, + { + "answers": [ + "ሼፍ ዩሀንስ" + ], + "en_answers": [ + "chef yohanis" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 1, + "no-answer": 0 + } + }, + "New-en-05": { + "question": "በኢትዮጵያ ውስጥ የትኛው የምግብ አይነት ነው በጣም ርካሽና ፈጣን የምግብ አማራጭ የሚባለው?", + "en_question": "Which food is a cost-effective and quick meal option in your country?", + "annotations": [ + { + "answers": [ + "ሳምቡሳ" + ], + "en_answers": [ + "sambusa" + ], + "count": 2 + }, + { + "answers": [ + "ሽሮ" + ], + "en_answers": [ + "shiro", + "shiri stew", + "shiro wot" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-07": { + "question": "በኢትዮጵያ ዝነኛውና ታዋቂው የምግብ ዝግጅት ፕሮግራም/ሾው የቱ ነው? ", + "en_question": "What are the most popular cooking shows in your country?", + "annotations": [ + { + "answers": [ + "ምርጡ ገበታ" + ], + "en_answers": [ + "mirtu gebeta" + ], + "count": 1 + }, + { + "answers": [ + "ጆርዳና ኪችን" + ], + "en_answers": [ + "jordan kitchen" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 1, + "no-answer": 0 + } + }, + "New-en-08": { + "question": "በኢትዮጵያ ምን ዓይነት ቸኮሌት ብራንድ እጅግ ታዋቂ ነው?", + "en_question": "What is the most popular chocolate brand in your country?", + "annotations": [ + { + "answers": [ + "ጋላክሲ" + ], + "en_answers": [ + "galaxy" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 2, + "no-answer": 0 + } + }, + "New-en-10": { + "question": "ኢትዮጵያ ውስጥ በብዛት የሚበላው የአይብ አይነት የትኛው ነው? ", + "en_question": "What is the most eaten cheese in your country?", + "annotations": [ + { + "answers": [ + "የላም ወተት", + "የላም" + ], + "en_answers": [ + "cow milk", + "of cow" + ], + "count": 3 + }, + { + "answers": [ + "ነጭ" + ], + "en_answers": [ + "white" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-11": { + "question": "በኢትዮጵያ እጅግ የተጠላ አትክልት ምንድን ነው?", + "en_question": "What is the most disliked vegetable in your country?", + "annotations": [ + { + "answers": [ + "ዱባ" + ], + "en_answers": [ + "pumpkin" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 2, + "no-answer": 0 + } + }, + "New-en-12": { + "question": "ኢትዮጵያ ወስጥ የትኛው የምግብ አይነት ነው በአብዛኛው የምግብ ጠርጴዛ ላይ የማይታጣው? ", + "en_question": "What food is most commonly found in food courts in your country?", + "annotations": [ + { + "answers": [ + "እንጀራ" + ], + "en_answers": [ + "injera" + ], + "count": 2 + }, + { + "answers": [ + "ዳቦ", + "እንጎቻ" + ], + "en_answers": [ + "bread" + ], + "count": 2 + }, + { + "answers": [ + "እንጀራ በሽሮ" + ], + "en_answers": [ + "injera with shiro" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-17": { + "question": "ኢትዮጵያ ውስጥ የስፖርት አድናቂዎች የሚጠቀሙባቸው በጣም የተለመዱ የደስታ መግለጫ ምግቦች የትኞቹ ናትው?", + "en_question": "What are the most common cheering tools used by sports fans in your country?", + "annotations": [ + { + "answers": [ + "የታሽጉ" + ], + "en_answers": [ + "packaged" + ], + "count": 2 + }, + { + "answers": [ + "ቸኮሌት" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + }, + { + "answers": [ + "ኬክ" + ], + "en_answers": [ + "cake" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-18": { + "question": "ኢትዮጵያ ውስጥ በቀጥታ ጨዋታ ላይ ሲገኙ የስፖርት አድናቂዎች የሚጠቀሙባቸው በጣም የተለመዱ የደስታ መግለጫ ምግቦች የትኞቹ ናትው?", + "en_question": "What do fans bring with them when attending a live game in your country?", + "annotations": [ + { + "answers": [ + "ቸኮሌት" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + }, + { + "answers": [ + "ኬክ" + ], + "en_answers": [ + "cake" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 2, + "no-answer": 0 + } + }, + "New-en-19": { + "question": "በኢትዮጵያ ውስጥ በጣም ታዋቂ የስፖርት ስታዲየም የትኛው ነው?", + "en_question": "What is the most well known sporting stadium in your country?", + "annotations": [ + { + "answers": [ + "ባህር ዳር" + ], + "en_answers": [ + "bahir dar", + "bahir dar stadium" + ], + "count": 2 + }, + { + "answers": [ + "አዲስ አበባ ስታዲየም", + "አዲስ አበባ", + "አዲዲስ አበባ" + ], + "en_answers": [ + "addis ababa stadium", + "addis ababa" + ], + "count": 2 + }, + { + "answers": [ + "አበበ ቢቂላ ስታዲየም" + ], + "en_answers": [ + "abebe bikila stadium" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-23": { + "question": "በኢትዮጵያ ወስጥ በትም ታዋቂው የፓራሊምፒክ ስፖርተኛ ማን ነው?", + "en_question": "Who is the most famous Paralympian in your country?", + "annotations": [], + "idks": { + "idk": 3, + "not-applicable": 2, + "no-answer": 0 + } + }, + "New-en-26": { + "question": "በኢትዮጵያ ውስጥ በጣም ታዋቂው የስፖርት ዝማሬ ምንድነው?", + "en_question": "What is the best recognized sporting chant in your country?", + "annotations": [ + { + "answers": [ + "ሳንጆርጅ" + ], + "en_answers": [ + "san jorge", + "st. george" + ], + "count": 1 + }, + { + "answers": [ + "ዋሊያ" + ], + "en_answers": [ + "walya" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 1, + "no-answer": 0 + } + }, + "New-en-38": { + "question": "በኢትዮጵያ የትኛው የስራ ዘርፍ ነው ተለማጭ የስራ ሰዓት ያለው?", + "en_question": "Which industries are known for more flexible working hours in your country?", + "annotations": [ + { + "answers": [ + "የግል" + ], + "en_answers": [ + "private" + ], + "count": 2 + }, + { + "answers": [ + "ጤና", + "ህክምና" + ], + "en_answers": [ + "health" + ], + "count": 1 + }, + { + "answers": [ + "ጥበቃ" + ], + "en_answers": [ + "security" + ], + "count": 1 + }, + { + "answers": [ + "መምህርነት" + ], + "en_answers": [ + "teaching" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-41": { + "question": "በኢትዮጵያ ውስጥ በጣም ታዋቂ እና ስኬታማ የስራ ፈጣሪ ማን ነው?", + "en_question": "Who is the most well known and successful entrepreneur in your country?", + "annotations": [ + { + "answers": [ + "ሀይሌ ገ/ስላሴ" + ], + "en_answers": [ + "haile gebreselassie", + "haile g/selassie" + ], + "count": 1 + }, + { + "answers": [ + "ቤቴልሄም ጥላሁን" + ], + "en_answers": [ + "bethlehem tilahun" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "New-en-47": { + "question": "በኢትዮጵያ በቤቶች የኋላ ቦታ/ጓሮ ውስጥ ምን ይገኛል? ", + "en_question": "What can typically be found in the back garden of houses in your country?", + "annotations": [ + { + "answers": [ + "አትክልት" + ], + "en_answers": [ + "vegetable" + ], + "count": 3 + }, + { + "answers": [ + "ጎመን" + ], + "en_answers": [ + "cabbage" + ], + "count": 1 + }, + { + "answers": [ + "ሽንት ቤት", + "መፀዳጃ ቤት" + ], + "en_answers": [ + "toilet" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-49": { + "question": "በኢትዮጵያ ውስጥ እጅግ ዝነኛ የሆነው የቤተሰብ አባል ማነው? ", + "en_question": "What is the name of the most famous family in your country?", + "annotations": [ + { + "answers": [ + "አባት" + ], + "en_answers": [ + "father" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-50": { + "question": "በኢትዮጵያ በጣም ታዋቂ የቤተሰብ ስም ምንድን ነው?", + "en_question": "What is the most common family name in your country?", + "annotations": [ + { + "answers": [ + "የዲባባ ቤተሰብ" + ], + "en_answers": [ + "dibaba family" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "not-applicable": 1, + "idk": 1 + } + }, + "New-en-55": { + "question": "በኢትዮጵያ ውስጥ የትኛው ሃይማኖት ነው በርካታ ተከታይ ያለው? ", + "en_question": "Which religion is most commonly practiced by families in your country?", + "annotations": [ + { + "answers": [ + "ክርስትና" + ], + "en_answers": [ + "christianity" + ], + "count": 3 + }, + { + "answers": [ + "ኦርቶዶክስ" + ], + "en_answers": [ + "orthodox" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-56": { + "question": "በኢትዮጵያ ውስጥ የትኛው የውጭ ቋንቋ ነው በአብዛኛው የቤተሰብ አባላት የሚነገረው? ", + "en_question": "What is the most popular foreign language spoken by families in your country?", + "annotations": [ + { + "answers": [ + "እንግሊዘኛ" + ], + "en_answers": [ + "english" + ], + "count": 3 + }, + { + "answers": [ + "አረበኛ" + ], + "en_answers": [ + "arabic" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-59": { + "question": "የትኛው ሀገር ነው ለበርካታ ኢትዮጵያዊያን ቤተሰቦች በጣም ታዋቂ የስደት መዳረሻ የሆነው? ", + "en_question": "Which country is the most popular destination for families from your country to emigrate to?", + "annotations": [ + { + "answers": [ + "ሳውድአረቢያ", + "ሳውዲ" + ], + "en_answers": [ + "saudi arabia" + ], + "count": 2 + }, + { + "answers": [ + "አሜሪካ" + ], + "en_answers": [ + "america" + ], + "count": 2 + }, + { + "answers": [ + "ደቡብ አፍሪካ" + ], + "en_answers": [ + "south africa" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-68": { + "question": "በኢትዮጵያ ትምህርት ቤቶች ውስጥ ለመጥፎ ባህሪ የሚዳርጉ ተግባራት የትኞቹ ናቸው? ", + "en_question": "What repercussions are there for bad behavior in schools in your country?", + "annotations": [ + { + "answers": [ + "የአቻ ግፊት" + ], + "en_answers": [ + "peer pressure" + ], + "count": 1 + }, + { + "answers": [ + "የቁማር ቤቶቸ" + ], + "en_answers": [ + "casinos" + ], + "count": 1 + }, + { + "answers": [ + "ከትምህርት ቤቶች ማባረር" + ], + "en_answers": [ + "expulsion from schools" + ], + "count": 1 + }, + { + "answers": [ + "የውጭ ፊልም" + ], + "en_answers": [ + "foreign film" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-69": { + "question": "በኢትዮጵያ ውስጥ የትኞቹ ጸሐፊዎች በሥነ ጽሑፍ ክፍል ውስጥ በብዛት ይጠናሉ?", + "en_question": "Which writers are commonly studied in literature class in your country?", + "annotations": [ + { + "answers": [ + "የልብ ወለድ", + "የልብወለድ" + ], + "en_answers": [ + "fiction" + ], + "count": 3 + }, + { + "answers": [ + "ሀዲስ አለማየሁ" + ], + "en_answers": [ + "haddis alemayehu" + ], + "count": 2 + }, + { + "answers": [ + "በአሉ ግርማ" + ], + "en_answers": [ + "balu girema" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-70": { + "question": "ኢትዮጵያ ውስጥ በአንድ ዓመት ተምህርት ለስንት ጊዜ ለዕርፍት ይዘጋል ? (በቁጥር ብቻ ምላሽ ይስጡ (ለምሳሌ፣ 1)።)", + "en_question": "How many school breaks are there in a year for high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 4 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-72": { + "question": "በኢትዮጵያ ተማሪዎች ለጥናት በተለይ የሚጠቀሙበት የበይነ-መረብ የትምህርት መርጃ ምንድነው?", + "en_question": "Which online resource do students usually use to study in your country?", + "annotations": [ + { + "answers": [ + "ቪዲኦ" + ], + "en_answers": [ + "video" + ], + "count": 2 + }, + { + "answers": [ + "ዩቲውብ", + "ዩቲዩብ" + ], + "en_answers": [ + "youtube" + ], + "count": 2 + }, + { + "answers": [ + "ጎግል" + ], + "en_answers": [ + "google" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-75": { + "question": "በኢትዮጵያ ዩኒቨርስቲዎች ውስጥ አንድ ሴሜስተር ለምን ያክል ሳምንት ይቆያል? (በቁጥር (ምሳሌ 1) በለው ይሙሉ።)", + "en_question": "What is the average length of a semester in terms of weeks of teaching at universities in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "16" + ], + "en_answers": [ + "16" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-76": { + "question": "በኢትዮጵያ በዓል ወቅት በጣም የሚጨናነቅ አየር ማረፊያ የቱ ነው?", + "en_question": "Which airport in your country is the busiest during the holiday season?", + "annotations": [ + { + "answers": [ + "ቦሌ", + "ፖሌ", + "ቦሌ አየር ማረፊያ", + "አዲስ አበባ", + "አድስ አበባ", + "አዲስ አበባ አየር መንገድ" + ], + "en_answers": [ + "bole", + "bole international airport", + "addis abeba" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-79": { + "question": "የኢትዮጵያ የትኛው የሀገሪቱ ክፍል ነው በቲያትር ትወና በጣም ታዋቂ የሆነው ነው?", + "en_question": "Which region of your country is well known for its theatrical performances?", + "annotations": [ + { + "answers": [ + "አዲስ አበባ", + "አዲዲስ አበባ" + ], + "en_answers": [ + "addis abeba" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "New-en-87": { + "question": "በኢትዮጵያ ውስጥ የታሪክ እጅግ ታዋቂ ቦታ የቱ ነው?", + "en_question": "What is the most famous historic landmark in your country?", + "annotations": [ + { + "answers": [ + "አክሱም" + ], + "en_answers": [ + "axum" + ], + "count": 2 + }, + { + "answers": [ + "ጎንደር", + "ግንደር" + ], + "en_answers": [ + "gondar" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-90": { + "question": "በኢትዮጵያ ውስጥ እጅግ ዝነኛ የሆነ ሆቴል ብራንድ ምንድን ነው?", + "en_question": "What is the most famous hotel brand in your country?", + "annotations": [ + { + "answers": [ + "ሸራተን" + ], + "en_answers": [ + "sheraton", + "sheraton hotel" + ], + "count": 2 + }, + { + "answers": [ + "ባለ አምስት ኮኮብ", + "ባለ5 ኮከብ" + ], + "en_answers": [ + "five star hotel" + ], + "count": 2 + }, + { + "answers": [ + "ስካይ ላይት" + ], + "en_answers": [ + "skylight", + "skylight hotel" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-05": { + "question": "በኢትዮጵያ በጣም ታዋቂው ለቁርስ ተመራጭ የሆነው የፈጣን እና ተይዞ የሚኬድ ምግብ ምድነው?", + "en_question": "What is the most popular grab-and-go breakfast option in your country?", + "annotations": [ + { + "answers": [ + "ዳቦ", + "እንጎቻ" + ], + "en_answers": [ + "bread" + ], + "count": 2 + }, + { + "answers": [ + "ፓስታ" + ], + "en_answers": [ + "pasta" + ], + "count": 2 + }, + { + "answers": [ + "ፍርፍር" + ], + "en_answers": [ + "firfir" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-06": { + "question": "በኢትዮጵያ ውስጥ በአብዛኛው በሰዎች ዘንድ ታዋቂው ምግብ ምንድነው?", + "en_question": "What is the most popular food in your country among young people?", + "annotations": [ + { + "answers": [ + "ሽሮ" + ], + "en_answers": [ + "shiro", + "shiro stew", + "shiro wote" + ], + "count": 4 + }, + { + "answers": [ + "እንጀራ በሽሮ" + ], + "en_answers": [ + "injera with shiro" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-08": { + "question": "በኢትዮጵያ በተለያዩ በዓሎች ላይ የሚጠጣ የአልኮል መጠጥ አይነት ምንድነው?", + "en_question": "What type of alcoholic drink is most commonly consumed at festivals in your country?", + "annotations": [ + { + "answers": [ + "ጠላ" + ], + "en_answers": [ + "tela" + ], + "count": 3 + }, + { + "answers": [ + "አረቄ", + "አረቂ" + ], + "en_answers": [ + "liquor" + ], + "count": 3 + }, + { + "answers": [ + "ቢራ" + ], + "en_answers": [ + "beer" + ], + "count": 2 + }, + { + "answers": [ + "ጠጅ" + ], + "en_answers": [ + "teji" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-13": { + "question": "በኢትዮጵያ በጥዋት የተለመደ መጠጥ ምንድነው?", + "en_question": "What is the most common morning drink in your country?", + "annotations": [ + { + "answers": [ + "ሻይ" + ], + "en_answers": [ + "tea" + ], + "count": 5 + }, + { + "answers": [ + "ቡና" + ], + "en_answers": [ + "coffee" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-15": { + "question": "በኢትዮጵያ ምን ዓይነት ባህላዊ ጣፋጭ ምግብ እጅግ ታዋቂ ነው?", + "en_question": "What is the most popular traditional dessert in your country?", + "annotations": [ + { + "answers": [ + "ክትፎ" + ], + "en_answers": [ + "chopped meat" + ], + "count": 2 + }, + { + "answers": [ + "ጥብስ" + ], + "en_answers": [ + "tibs", + "tebs", + "t’ibs", + "tibbs", + "roasted meat", + "roast meat" + ], + "count": 1 + }, + { + "answers": [ + "ዶሮ ወጥ" + ], + "en_answers": [ + "chicken stew", + "doro wot" + ], + "count": 1 + }, + { + "answers": [ + "ቅቤ" + ], + "en_answers": [ + "butter" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-21": { + "question": "በኢትዮጵያ ምን ዓይነት ሬኬት ስፖርት እጅግ ታዋቂ ነው?", + "en_question": "What is the most popular racket sport in your country?", + "annotations": [], + "idks": { + "idk": 3, + "no-answer": 2, + "not-applicable": 0 + } + }, + "New-gr-24": { + "question": "በኢትዮጵያ ውስጥ በትራክና በመስክ ስፖርት ውስጥ እጅግ ታዋቂ የሆነው ስፖርት ምንድን ነው?", + "en_question": "What is the most popular track and field sport in your country?", + "annotations": [ + { + "answers": [ + "እግር ኳስ" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "ሩጫ" + ], + "en_answers": [ + "athletics", + "run", + "running" + ], + "count": 2 + }, + { + "answers": [ + "ረጅም ርቀት ሩጨ" + ], + "en_answers": [ + "long distance running", + "maraton" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-29": { + "question": "በኢትዮጵያ ምንኛው ዓለም አቀፍ የስፖርት ዝግጅት እጅግ ታዋቂ ነው?", + "en_question": "Which international sporting event is the most popular in your country?", + "annotations": [ + { + "answers": [ + "እግር ኳስ", + "ያለም ዋንጫ" + ], + "en_answers": [ + "football", + "soccer", + "world cup" + ], + "count": 3 + }, + { + "answers": [ + "ሩጫ", + "አትሌቲክስ" + ], + "en_answers": [ + "athletics", + "run", + "running" + ], + "count": 2 + }, + { + "answers": [ + "ኦሎፒክ" + ], + "en_answers": [ + "olympic" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-47": { + "question": "በኢትዮጵያ ውስጥ በተለይ የስራ ዕረፍት ጊዜ (በደቂቃ) የምሳ እና የእራት ጊዜን ሳይጨምር በደቂቃ ስንት ነው? (እባክዎን በቁጥር (ምሳሌ 1) ብቻ ያቅርቡ።)", + "en_question": "How long (in minutes) are typical work breaks in your country, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 2 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-gr-58": { + "question": "በኢትዮጵያ ዝቅተኛ ክፍያ ያለው ምን ዓይነት ስራ ነው?", + "en_question": "Which job is considered underpaid in your country?", + "annotations": [ + { + "answers": [ + "ጽዳት" + ], + "en_answers": [ + "cleaning", + "cleaner" + ], + "count": 2 + }, + { + "answers": [ + "የጉልበት ስራ" + ], + "en_answers": [ + "labor" + ], + "count": 1 + }, + { + "answers": [ + "ጥበቃ", + "ዘበኛ" + ], + "en_answers": [ + "security" + ], + "count": 1 + }, + { + "answers": [ + "የመንግስት ስራ" + ], + "en_answers": [ + "government job", + "civil servants" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-76": { + "question": "በኢትዮጵያ በአብዛኛው በፋሲካ በዓል የሚቀርብ ምግብ ምንድነው?", + "en_question": "What is the most common food served during Easter in your country?", + "annotations": [ + { + "answers": [ + "ስጋ", + "ቁርጥ", + "ስጋ ቁርጥ", + "ጥሬ ስጋ" + ], + "en_answers": [ + "meat", + "meat cuts", + "cut meat" + ], + "count": 4 + }, + { + "answers": [ + "ዶሮ ወጥ", + "ደሮ ወጥ" + ], + "en_answers": [ + "chicken stew", + "doro wot" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-82": { + "question": "በኢትዮጵያ በታላላቅ ሰዎች/አዋቂዎች መካከል እጅግ ታዋቂ የሆነ የሙዚቃ አይነት ምንድን ነው?", + "en_question": "What is the most popular music genre among the elderly population in your country?", + "annotations": [ + { + "answers": [ + "ትዝታ" + ], + "en_answers": [ + "memory" + ], + "count": 2 + }, + { + "answers": [ + "ኢትዮ ጃዝ" + ], + "en_answers": [ + "ethio jazz" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-gr-88": { + "question": "በኢትዮጵያ የቀብር ሥነ ሥርዓቶች ላይ የሚቀርብ መጠጥ ምንድነው?", + "en_question": "What drink is usually offered at funerals in your country?", + "annotations": [ + { + "answers": [ + "ውሀ", + "ውሃ", + "ዉሀ" + ], + "en_answers": [ + "water" + ], + "count": 3 + }, + { + "answers": [ + "ቡና" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + }, + { + "answers": [ + "የለስላሳ መጠጥ" + ], + "en_answers": [ + "soft drink" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-89": { + "question": "በኢትዮጵያ በሰርግ ሥነ ሥርዓቶች ላይ የሚቀርብ መጠጥ ምንድነው?", + "en_question": "What drink is usually offered at weddings in your country?", + "annotations": [ + { + "answers": [ + "ጠላ" + ], + "en_answers": [ + "tela" + ], + "count": 3 + }, + { + "answers": [ + "ቢራ" + ], + "en_answers": [ + "beer" + ], + "count": 2 + }, + { + "answers": [ + "ወይን" + ], + "en_answers": [ + "wine" + ], + "count": 2 + }, + { + "answers": [ + "ጠጅ" + ], + "en_answers": [ + "teji" + ], + "count": 2 + }, + { + "answers": [ + "ብርዝ" + ], + "en_answers": [ + "breeze" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-07": { + "question": "በዓለም አቀፍ ደረጃ ሁሉም ቦታ የሚገኝ የኢትዮጵያ የምግብ አይነት ምንድነው?", + "en_question": "What food originated from your country and can be found all over the world?", + "annotations": [ + { + "answers": [ + "እንጀራ" + ], + "en_answers": [ + "injera" + ], + "count": 2 + }, + { + "answers": [ + "ክትፎ" + ], + "en_answers": [ + "chopped meat" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-08": { + "question": "በኢትዮጵያ ልጆች በተለይ የሚጠሉት ምግብ ነገር ግን ሽማግሌዎች የሚወዱት ምንድነው?", + "en_question": "What food is typically disliked by children but enjoyed by the elderly in your country?", + "annotations": [ + { + "answers": [ + "ዶሮ ወጥ" + ], + "en_answers": [ + "chicken stew", + "doro wot" + ], + "count": 1 + }, + { + "answers": [ + "ቀይ ወጥ" + ], + "en_answers": [ + "red stew" + ], + "count": 1 + }, + { + "answers": [ + "እንጀራ" + ], + "en_answers": [ + "injera" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 3, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ha-09": { + "question": "በኢትዮጵያ በተለይ የሚጠቀምበት የምግብ ማብሰሪያ ምንድነው?", + "en_question": "What cooking utensil is most commonly used in your country?", + "annotations": [ + { + "answers": [ + "ብረት ድስት" + ], + "en_answers": [ + "dish", + "iron pot" + ], + "count": 2 + }, + { + "answers": [ + "ምድጃ", + "ምድጃዠ", + "ማንደጃ" + ], + "en_answers": [ + "oven" + ], + "count": 1 + }, + { + "answers": [ + "ድስት" + ], + "en_answers": [ + "dish" + ], + "count": 1 + }, + { + "answers": [ + "እሳት" + ], + "en_answers": [ + "fire" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-13": { + "question": "በኢትዮጵያ ምን ዓይነት አትክልት እጅግ ታዋቂ ነው?", + "en_question": "Which is the most popular vegetable in your country?", + "annotations": [ + { + "answers": [ + "ጎመን" + ], + "en_answers": [ + "cabbage" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-19": { + "question": "በኢትዮጵያ ለስፖርት እንቅስቃሴ የሚውል እንስሳ ምንድነው?", + "en_question": "Which animal is used for sports in your country?", + "annotations": [ + { + "answers": [ + "ፈረስ" + ], + "en_answers": [ + "horse" + ], + "count": 3 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "New-ha-66": { + "question": "በኢትዮጵያ በጣም ታዋቂው የሰርግ መድረክ ምን ይባላል?", + "en_question": "What is the most popular wedding venue in your country?", + "annotations": [ + { + "answers": [ + "ጫጉላ" + ], + "en_answers": [ + "honey moon" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 2, + "no-answer": 0 + } + }, + "New-in-01": { + "question": "በኢትዮጵያ ውስጥ የትኛው ቡና መሸጫ መለያ/ብራንድ እጅግ ታዋቂ ነው?", + "en_question": "Which coffee shop brand is the most popular in your country?", + "annotations": [ + { + "answers": [ + "ይርጋ ጨፌ" + ], + "en_answers": [ + "yirga chefie" + ], + "count": 3 + }, + { + "answers": [ + "የሀረር" + ], + "en_answers": [ + "harar" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-03": { + "question": "ከኢትዮጵያ በተለይ የትኛው አይነት ምግብ በውጭ አገር ምግብ ቤቶች ይሸጣል?", + "en_question": "What type of food from your country is typically served in restaurants overseas?", + "annotations": [ + { + "answers": [ + "እንጀራ" + ], + "en_answers": [ + "injera" + ], + "count": 1 + }, + { + "answers": [ + "ክትፎ" + ], + "en_answers": [ + "chopped meat" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-33": { + "question": "በኢትዮጵያ የትኛው ክልል ነው ከማዕድን ቁፋሮ ጋር በብዛት የሚታወቀው? ", + "en_question": "What region in your country is usually associated with mining?", + "annotations": [ + { + "answers": [ + "ቤንሻንጉል ጉሙዝ", + "ቤንሻንጉል" + ], + "en_answers": [ + "benshangul gumuz", + "benshangul gumuz region", + "benshangul", + "benshangul region" + ], + "count": 3 + }, + { + "answers": [ + "ሶማልያ" + ], + "en_answers": [ + "somalia", + "somalia region" + ], + "count": 2 + }, + { + "answers": [ + "ኦሮምያ" + ], + "en_answers": [ + "oromia", + "oromia region" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-34": { + "question": "በኢትዮጵያ የቱ ክልል ነው በተለይ ዘይት/ነዳጅ ጋር ትስስር ያለው?", + "en_question": "What region in your country is usually associated with oil?", + "annotations": [ + { + "answers": [ + "ሱማሌ", + "ሶማልያ", + "ሶማሌ" + ], + "en_answers": [ + "somalia", + "somalia region", + "somali", + "somali region" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-62": { + "question": "በኢትዮጵያ በምህንድስና የትምህርት መስኮች ምክንያት ታወቀቂ ዩኒቨርስቲ የሆነው? (የሙሉ ስሙን ይፃፉ።)", + "en_question": "What university in your country is popular because of its engineering major? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "ባህር ዳር", + "ባህር ዳር ዩኒቨርስቲ" + ], + "en_answers": [ + "bahir dar", + "bahirdar", + "bahir dar university", + "bahirdar university" + ], + "count": 3 + }, + { + "answers": [ + "አርባ ምንጭ" + ], + "en_answers": [ + "areba minch" + ], + "count": 2 + }, + { + "answers": [ + "አዳማ" + ], + "en_answers": [ + "adama" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-63": { + "question": "በኢትዮጵያ የትኛው ዩኒቨርስቲ ነው በሕክምና ትምህርት መስኩ ምክንያት በጣም ታወቂ ዩኒቨርስቲ የሆነው? (የሙሉ ስሙን ፃፉ።)", + "en_question": "What university in your country is popular because of its school of medicine? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "ጎንደር" + ], + "en_answers": [ + "gondar" + ], + "count": 4 + }, + { + "answers": [ + "ጅማ" + ], + "en_answers": [ + "jima" + ], + "count": 2 + }, + { + "answers": [ + "አዲስ አበባ ዩኒቨርስቲ - ጥቁር አንበሳ" + ], + "en_answers": [ + "addis ababa university - black lion" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-78": { + "question": "በኢትዮጵያ ዝነኛው የክፍያ መንገድ የቱ ነው?", + "en_question": "What is the most popular payment method in your country?", + "annotations": [ + { + "answers": [ + "በጥሬ ብር", + "በጥሬ ገንዘብ", + "ፍራንክ" + ], + "en_answers": [ + "in cash" + ], + "count": 2 + }, + { + "answers": [ + "በባንክ", + "ባንክ" + ], + "en_answers": [ + "bank" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-in-80": { + "question": "በኢትዮጵያ ውስጥ እጅግ ዝነኛ የሆነ የመዝናኛ ፓርክ የቱ ነው?", + "en_question": "What is the most famous theme park in your country?", + "annotations": [ + { + "answers": [ + "እንጦጦ" + ], + "en_answers": [ + "entoto" + ], + "count": 2 + }, + { + "answers": [ + "ሰሜን ብሄራዊ ፓርክ" + ], + "en_answers": [ + "north national park", + "north mounten national park" + ], + "count": 2 + }, + { + "answers": [ + "ሶደሬ" + ], + "en_answers": [ + "sodere" + ], + "count": 1 + }, + { + "answers": [ + "ኩሪፍቱ" + ], + "en_answers": [ + "kurifetu" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-01": { + "question": "በኢትዮጵያ ውስጥ ልጆች በተደጋጋሚ የሚመለከቱት ታዋቂ ህፃናት ተንቀሳቃሽ ምስል ፕሮግራም ምንድን ነው?", + "en_question": "What is the most popular children's animation that is commonly watched by kids in your country?", + "annotations": [ + { + "answers": [ + "የኢትዮጵያ ልጆች" + ], + "en_answers": [ + "ethiopia children" + ], + "count": 2 + }, + { + "answers": [ + "ቶምና ጄሪ" + ], + "en_answers": [ + "tom and jerry" + ], + "count": 1 + }, + { + "answers": [ + "ኢትዮጲስ" + ], + "en_answers": [ + "ethiopis" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-02": { + "question": "በኢትዮጵያ ወስጥ በጣም ታዋቂው ለነብሰጡሮች የሚሰጠው የቅድመ ወሊድ ትምህርት ምንድን ነው?", + "en_question": "What is the most popular prenatal education activity for pregnant women in your country?", + "annotations": [ + { + "answers": [ + "የወሊድ ክትትል" + ], + "en_answers": [ + "birth follow up" + ], + "count": 2 + }, + { + "answers": [ + "አተኛኘት" + ], + "en_answers": [ + "sleeping position" + ], + "count": 1 + }, + { + "answers": [ + "አመጋገብ" + ], + "en_answers": [ + "nutrition" + ], + "count": 1 + }, + { + "answers": [ + "ስነ-ተዋልዶ", + "ስነ ተዋልዶ" + ], + "en_answers": [ + "reproduction" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-03": { + "question": "ኢትዮጵያ ወስጥ ቤተሰቦች አንድ ላይ የሚዘፍኑት በጣም ተወዳጅ የሆነው የልጆች ዘፈን ምንድነው?", + "en_question": "What is the most popular children's song in your country that families sing together?", + "annotations": [ + { + "answers": [ + "ወንድሜ ያዕቆብ", + "እህቴ የሽ" + ], + "en_answers": [ + "my brother jacob" + ], + "count": 1 + }, + { + "answers": [ + "ወፏ ነግራኛለች" + ], + "en_answers": [ + "the bird told me" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ko-04": { + "question": "በኢትዮጵያ በወንዶች ልጆች በጣም የሚወደዱ መጫወቻዎች ምንድናቸው?", + "en_question": "Which toys are most popular among boys in your country?", + "annotations": [ + { + "answers": [ + "መኪና" + ], + "en_answers": [ + "car" + ], + "count": 1 + }, + { + "answers": [ + "ብስክሌት" + ], + "en_answers": [ + "biscuit" + ], + "count": 1 + }, + { + "answers": [ + "ኳስ" + ], + "en_answers": [ + "ball" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ko-05": { + "question": "በኢትዮጵያ በሴቶች ልጆች በጣም የሚወደዱ መጫወቻዎች ምንድናቸው?", + "en_question": "Which toys are most popular among girls in your country?", + "annotations": [ + { + "answers": [ + "አሻንጉሊት" + ], + "en_answers": [ + "toy" + ], + "count": 2 + }, + { + "answers": [ + "ኳስ" + ], + "en_answers": [ + "ball" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ko-06": { + "question": "በኢትዮጵያ በጣም ታዋቂው ለህፃናት የሚነገርው ተረት ምንድነው? ", + "en_question": "What is the most popular folk tale in your country that is typically told to children?", + "annotations": [ + { + "answers": [ + "አንበሳና ጦጣ" + ], + "en_answers": [ + "lion and monkey" + ], + "count": 1 + }, + { + "answers": [ + "ብልጧ ጦጢት" + ], + "en_answers": [ + "the smart monkey" + ], + "count": 1 + }, + { + "answers": [ + "አይጥ እና ደመት" + ], + "en_answers": [ + "mouse and cat" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ko-07": { + "question": "በኢትዮጵያ ወስጥ በቀብር ሥነ ሥርዓት ላይ ለሐዘን መግለጫነት የሚውለው ባሕላዊ ምልክት ምንድነው?", + "en_question": "What is the customary symbol of condolence used at funerals in your country?", + "annotations": [ + { + "answers": [ + "ጥቁር ልብስ" + ], + "en_answers": [ + "black clothes" + ], + "count": 3 + }, + { + "answers": [ + "ድንኳን መጣል", + "ዳስ መጣል" + ], + "en_answers": [ + "pitching a tent" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-08": { + "question": "ኢትዮጵያ ውስጥ የዩኒቨርስቲ ተማሪዎች የትርፍ ሰዓት ስራ ለመስራት በጣም የሚፈልጉት የትነው? ", + "en_question": "Where do university students in your country tend to work part-time the most?", + "annotations": [ + { + "answers": [ + "በኢንተርኔት", + "የኦንላይን", + "በበይነ መረብ" + ], + "en_answers": [ + "on the internet", + "online" + ], + "count": 2 + }, + { + "answers": [ + "ኢንደስትሪ ውስጥ" + ], + "en_answers": [ + "on industry" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ko-09": { + "question": "በኢትዮጵያ ባሉ ኩባንያዎች ውስጥ በአብዛኛው የተለመዱት የስራ ቡድን ግንባታ ሂደቶች ምንድናቸው?", + "en_question": "What are the most frequently practiced team-building activities in companies based in your country?", + "annotations": [], + "idks": { + "idk": 3, + "no-answer": 2, + "not-applicable": 0 + } + }, + "New-ko-10": { + "question": "በኢትዮጵያ ውስጥ ሰዎች በአብዛኛው እንደ ተጨማሪ ስራ የሚሠሯቸው ስራዎች ምንድን ናቸው?", + "en_question": "What are the most common activities people do as a side job in your country?", + "annotations": [ + { + "answers": [ + "ንግድ" + ], + "en_answers": [ + "trade", + "commerce" + ], + "count": 3 + }, + { + "answers": [ + "የስፖርት ዳኝነት" + ], + "en_answers": [ + "sports refereeing" + ], + "count": 1 + }, + { + "answers": [ + "የሆቴል እንግዳ ተቀባይ" + ], + "en_answers": [ + "hotel receptionist" + ], + "count": 1 + }, + { + "answers": [ + "ድለላ" + ], + "en_answers": [ + "brokerage" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-02": { + "question": "በኢትዮጵያ ለቱሪስትዎች እጅግ ዝነኛና የማይረሳ የሆነ ምግብ ምንድን ነው?", + "en_question": "What is the most famous edible souvenir for tourists in your country?", + "annotations": [ + { + "answers": [ + "ዶሮ ወጥ" + ], + "en_answers": [ + "chicken stew", + "doro wot" + ], + "count": 3 + }, + { + "answers": [ + "እንጀራ" + ], + "en_answers": [ + "injera" + ], + "count": 1 + }, + { + "answers": [ + "ክትፎ" + ], + "en_answers": [ + "chopped meat" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-pe-06": { + "question": "በኢትዮጵያ በጣም ታዋቂው ወጥ ምንድነው?", + "en_question": "What is the most popular stew in your country?", + "annotations": [ + { + "answers": [ + "ሽሮ ወጥ", + "ሽሮ" + ], + "en_answers": [ + "shiro", + "shiro stew", + "shiro wat" + ], + "count": 3 + }, + { + "answers": [ + "ዶሮ ወጥ" + ], + "en_answers": [ + "chicken stew", + "doro wot" + ], + "count": 2 + }, + { + "answers": [ + "ክክ", + "ማርሳ ወጥ" + ], + "en_answers": [ + "grits" + ], + "count": 1 + }, + { + "answers": [ + "ምስር" + ], + "en_answers": [ + "lentils" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-11": { + "question": "ኢትዮጵያ በጣም ታዋቂው ለምግብ መስሪያ የምንጠቀምበት ቅመ /ምንድነው? ", + "en_question": "What is the most common spice/herb used in dishes from your country?", + "annotations": [ + { + "answers": [ + "በርበሬ" + ], + "en_answers": [ + "pepper" + ], + "count": 2 + }, + { + "answers": [ + "ክኖር" + ], + "en_answers": [ + "knorr" + ], + "count": 2 + }, + { + "answers": [ + "ዝንጅብል" + ], + "en_answers": [ + "ginger" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-16": { + "question": "በኢትዮጵያ ውስጥ እጅግ ዝነኛ ባህልናዊ ስፖርት ምንድን ነው?", + "en_question": "What is the most famous traditional sport in your country?", + "annotations": [ + { + "answers": [ + "ገና ጨዋታ" + ], + "en_answers": [ + "gena geme" + ], + "count": 2 + }, + { + "answers": [ + "ትግል" + ], + "en_answers": [ + "wrestling" + ], + "count": 2 + }, + { + "answers": [ + "የፈረስ ጉግስ", + "ፈረስ ጉግስ" + ], + "en_answers": [ + "horseshoes" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-20": { + "question": "በኢትዮጵያ ታዋቂው የባሕር ዳርቻ ላይ ጫዋታ የቱ ነው ነው?", + "en_question": "What sport is popular to play on the beach in your country?", + "annotations": [ + { + "answers": [ + "መረብ ኳስ" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "የእጅ ኳስ" + ], + "en_answers": [ + "handball" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "not-applicable": 1, + "idk": 0 + } + }, + "New-pe-45": { + "question": "በኢትዮጵያ በረመዳን ወር የተለመደው የስራ መርሐ ግብር ምንድነው?", + "en_question": "What is the usual work schedule during the month of Ramadan in your country?", + "annotations": [ + { + "answers": [ + "ድሀወችን ማፍጠር", + "እርዳታ" + ], + "en_answers": [ + "help the poor people" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-pe-47": { + "question": "በኢትዮጵያ የተማሪዎች ቀን መቼ ይከበራል? (በወር/ቀን ቅጽ መሰረት ይሙሉ (ምሳሌ 12/31).)", + "en_question": "When is Student's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "10/30", + "ሰኔ ሰላሳ" + ], + "en_answers": [ + "10/30", + "june 30" + ], + "count": 3 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "New-pe-49": { + "question": "ኢትዮጵያ ወስጥ ቤተሰቦች በአንድነት ለመጸለይ የሚሰበሰቡበት ቦታ የት ነው?", + "en_question": "Where do families gather to pray together in your country?", + "annotations": [ + { + "answers": [ + "ቤተ-ክርስቲያን", + "ቤተ ክርስቲያን", + "ቤተክርስቲያን", + "ደብር" + ], + "en_answers": [ + "church" + ], + "count": 3 + }, + { + "answers": [ + "መስጅድ", + "መስጂድ" + ], + "en_answers": [ + "mosque" + ], + "count": 3 + }, + { + "answers": [ + "ሳሎን" + ], + "en_answers": [ + "living room" + ], + "count": 1 + }, + { + "answers": [ + "የእምነት ቦታ" + ], + "en_answers": [ + "place of faith" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-53": { + "question": "በኢትዮጵያ አባቶች በአባት ቀን (ወይም ወላጆች ቀን) ምን ስጦታዎች ይቀበላሉ?", + "en_question": "What gifts do fathers get on Father's Day (or Parents' Day) in your country?", + "annotations": [ + { + "answers": [ + "ልብስ" + ], + "en_answers": [ + "clothes" + ], + "count": 3 + }, + { + "answers": [ + "ጫማ" + ], + "en_answers": [ + "shoe" + ], + "count": 2 + }, + { + "answers": [ + "የስጦታ ካርድ", + "ፖስት ካርድ" + ], + "en_answers": [ + "gift card" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-pe-54": { + "question": "እናቶች በኢትዮጵያ በእናት ቀን (ወይም ባለወላጆች ቀን) ምን ዓይነት ስጦታዎች ይቀበላሉ?", + "en_question": "What gifts do mothers get on Mother's Day (or Parents' Day) in your country?", + "annotations": [ + { + "answers": [ + "ሽቶ" + ], + "en_answers": [ + "perfume" + ], + "count": 2 + }, + { + "answers": [ + "የስጦታ ካርድ", + "ፖስት ካርድ" + ], + "en_answers": [ + "gift card" + ], + "count": 1 + }, + { + "answers": [ + "ቀሚስ", + "ቄሚስ" + ], + "en_answers": [ + "dress" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-pe-59": { + "question": "በኢትዮጵያ በአንድ ቤተሰብ ውስጥ በተለይ ስንት ትውልድ ይኖራሉ? (በቁጥር ብቻ ምላሽ ይስጡ (ምሳሌ 12)።)", + "en_question": "How many generations typically live together in a household in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 3 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-65": { + "question": "በኢትዮጵያ በመካከለኛ ደረጃ ት/ቤቶች ስንት የትምህርት አይነቶች ይሰጣሉ? (በቁጥር (ምሳሌ 12) ብቻ ያስቅምጡ።)", + "en_question": "How many subjects are taught in middle schools in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "11" + ], + "en_answers": [ + "11" + ], + "count": 2 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 2 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-66": { + "question": "በኢትዮጵያ በመጀመሪያ ደረጃ ትምህርቶች ውስጥ ከትምህርት በኋላ የሚሰጡ ታዋቂ ተጨማሪ ኢመደበኛ እንቅስቃሴዎች ምንድን ናቸው?", + "en_question": "What is the most popular after school curriculars in elementary schools in your country?", + "annotations": [ + { + "answers": [ + "ክበባት" + ], + "en_answers": [ + "clubs" + ], + "count": 2 + }, + { + "answers": [ + "አባሮሽ ጨዋታ" + ], + "en_answers": [ + "ababrosh game" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "New-pe-74": { + "question": "በኢትዮጵያ የህዝብ ዩኒቨርስቲዎች አማካኝ ዓመታዊ ትምህርት ክፍያ ስንት ነው? (ለመጀመሪያ ለድግሪ)", + "en_question": "How much is the average annual tuition fee for public universities in your country?", + "annotations": [ + { + "answers": [ + "5400", + "5400 ብር" + ], + "en_answers": [ + "5400" + ], + "count": 2 + }, + { + "answers": [ + "8000" + ], + "en_answers": [ + "8000" + ], + "count": 1 + }, + { + "answers": [ + "5000" + ], + "en_answers": [ + "5000" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-76": { + "question": "በኢትዮጵያ ፓርክስ ውስጥ የሚደረግ ታዋቂ እንቅስቃሴ ምንድነው?", + "en_question": "What is a popular activity to do in parks in your country?", + "annotations": [ + { + "answers": [ + "ሩጫ" + ], + "en_answers": [ + "athletics", + "run", + "running" + ], + "count": 2 + }, + { + "answers": [ + "ፎቶ መነሳት" + ], + "en_answers": [ + "taking a photo" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "New-pe-78": { + "question": "በኢትዮጵያ የሚካሄደው እጅግ ዝኘኛ የፊልም ፌስቲቫል ስም ምን ይባላል?", + "en_question": "What is the name of the most famous film festival held in your country?", + "annotations": [ + { + "answers": [ + "ለዛ አዋርድ" + ], + "en_answers": [ + "leza award" + ], + "count": 2 + }, + { + "answers": [ + "ጉማ አዋርድ" + ], + "en_answers": [ + "guma award" + ], + "count": 2 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-83": { + "question": "በኢትዮጵያ በማህበራዊ ስብሰባዎች ላይ የታወቀ የካርድ ጨዋታ ምንድን ነው?", + "en_question": "What is the popular card game played during social gatherings in your country?", + "annotations": [ + { + "answers": [ + "ካርታ", + "ላጥ ላጥ" + ], + "en_answers": [ + "card game" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-85": { + "question": "ከኢትዮጵያ የሚሄዱ ጎብኝዎች በጣም የታወቀ የውጭ ሀገር መዳራሻ ቦታ የት ነው?", + "en_question": "Where is the most popular tourist destination abroad for people from your country?", + "annotations": [ + { + "answers": [ + "ዱባይ" + ], + "en_answers": [ + "dubai" + ], + "count": 3 + }, + { + "answers": [ + "እየሩስአሌም" + ], + "en_answers": [ + "jerusalem" + ], + "count": 2 + }, + { + "answers": [ + "መካ መዲና" + ], + "en_answers": [ + "mecca medina" + ], + "count": 2 + }, + { + "answers": [ + "እስራኤል" + ], + "en_answers": [ + "israel" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-86": { + "question": "በኢትዮጵያ ውስጥ እጅግ ዝነኛ የሆነው ግንብ/ፎቅ ስም ምን ይባላል?", + "en_question": "What is the name of the most famous tower in your country?", + "annotations": [ + { + "answers": [ + "ፋሲል ግንብ", + "የፋሲል ግንብ" + ], + "en_answers": [ + "fasil barrage" + ], + "count": 3 + }, + { + "answers": [ + "የሀረር ግንብ" + ], + "en_answers": [ + "harar barrage" + ], + "count": 2 + }, + { + "answers": [ + "ጀጎል", + "ጀጎል ግንብ" + ], + "en_answers": [ + "jegol", + "jegol barrage" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-spme-01": { + "question": "በኢትዮጵያ በብዛት ለምግብለት የሚውል ነፍሳት ምንድነው?", + "en_question": "What edible insect is eaten most often in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "New-spme-04": { + "question": "በኢትዮጵያ ምን የእርሻ ምርት ውጤቶች በብዛት ወደ ውጭ አገር ይላካሉ?", + "en_question": "Which agricultural product is exported most often in your country?", + "annotations": [ + { + "answers": [ + "ቡና" + ], + "en_answers": [ + "coffee" + ], + "count": 2 + }, + { + "answers": [ + "ሰሊጥ" + ], + "en_answers": [ + "sesame" + ], + "count": 2 + }, + { + "answers": [ + "ስንዴ" + ], + "en_answers": [ + "wheat" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-05": { + "question": "በኢትዮጵያ ምን ዓይነት ጣፋጮች በጣም ታዋቂ ናቸው?", + "en_question": "What are the most popular sweets in your country?", + "annotations": [ + { + "answers": [ + "ቴምር" + ], + "en_answers": [ + "temmer" + ], + "count": 2 + }, + { + "answers": [ + "ባቅላባ" + ], + "en_answers": [ + "baqlaba" + ], + "count": 2 + }, + { + "answers": [ + "ማር" + ], + "en_answers": [ + "honey" + ], + "count": 1 + }, + { + "answers": [ + "የታሸጉ ምግቦች" + ], + "en_answers": [ + "packaged foods" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-15": { + "question": "በኢትዮጵያ ምን ዓይነት ስፖርት መጠጥ እጅግ ታዋቂ ነው?", + "en_question": "What is the most popular sports drink in your country?", + "annotations": [ + { + "answers": [ + "ግልኮስ" + ], + "en_answers": [ + "glucose" + ], + "count": 2 + }, + { + "answers": [ + "ማልታ" + ], + "en_answers": [ + "malta" + ], + "count": 1 + }, + { + "answers": [ + "ለስላሳ" + ], + "en_answers": [ + "soft drink" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-spme-27": { + "question": "በኢትዮጵያ ሰዎች አማካኝ ትምህርት ደረጃ ምንድነው?", + "en_question": "What is the average education level for people in your country?", + "annotations": [ + { + "answers": [ + "ዲፕሎማ" + ], + "en_answers": [ + "diploma" + ], + "count": 3 + }, + { + "answers": [ + "8ኛ ክፍል", + "8" + ], + "en_answers": [ + "8ኛ ክፍል" + ], + "count": 1 + }, + { + "answers": [ + "ዲግሪ" + ], + "en_answers": [ + "degree" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-37": { + "question": "ከኢትዮጵያ ለትምህርት ወደ ዉጭ አሀር የሚሄዱ ተማሪዎች በተለይ የሚያጠኑት ሙያ ምንድን ነው?", + "en_question": "Which profession is most commonly studied abroad by students from your country?", + "annotations": [ + { + "answers": [ + "ምህንድስና" + ], + "en_answers": [ + "engineering" + ], + "count": 3 + }, + { + "answers": [ + "ቴክኖሎጂ" + ], + "en_answers": [ + "technology" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-spme-60": { + "question": "በኢትዮጵያ የትኛው የሳምንቱ ቀን በተለይ ሰዎች ሃይማኖታዊ እንቅስቃሴዎችን ያደርጋሉ? (ምሳሌ ሰኞ, ማክሰኞ)", + "en_question": "Which day of the week do most families in your country practice religious activities? (e.g. Monday, Tuesday)", + "annotations": [ + { + "answers": [ + "እሁድ" + ], + "en_answers": [ + "sunday" + ], + "count": 5 + }, + { + "answers": [ + "አርብ" + ], + "en_answers": [ + "friday" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-65": { + "question": "በኢትዮጵያ በጣም ታዋቂ የሆነው በተለይ ብሔራዊ የነፃነት ቀን የሚከበርበት ሁኔታ/መንገድ ምን አይነት ነው?", + "en_question": "What is the most popular way to celebrate Independence Day in your country?", + "annotations": [ + { + "answers": [ + "በፉከራ", + "በሽለላ" + ], + "en_answers": [ + "traditional bravary song" + ], + "count": 2 + }, + { + "answers": [ + "አርበኞችን በመዘከር", + "አርበኞችን በማክበር" + ], + "en_answers": [ + "remembering the veterans" + ], + "count": 2 + }, + { + "answers": [ + "በድምቀት", + "በጉልህ" + ], + "en_answers": [ + "in the spotlight" + ], + "count": 1 + }, + { + "answers": [ + "አድዋ" + ], + "en_answers": [ + "adwa" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-spme-68": { + "question": "በኢትዮጵያ ልጆች መካከል እጅግ ታዋቂ የሆነ መጠጥ ምንድነው?", + "en_question": "What is the most popular beverage among children in your country?", + "annotations": [ + { + "answers": [ + "ለስላሳ መጠጥ", + "ለስላሳ" + ], + "en_answers": [ + "soft drink" + ], + "count": 3 + }, + { + "answers": [ + "ዮዮ" + ], + "en_answers": [ + "yo-yo" + ], + "count": 1 + }, + { + "answers": [ + "ጆርጁስ" + ], + "en_answers": [ + "gor jusce" + ], + "count": 1 + }, + { + "answers": [ + "ጆሊጁስ" + ], + "en_answers": [ + "juli jusce" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-76": { + "question": "በኢትዮጵያ በጣም ታዋቂ የሆነው በተለይ ብሔራዊ የነፃነት ቀን የሚከበርበት ቦታ ስም ማን ይባላል?", + "en_question": "What is the most popular place in your country to celebrate Independence Day?", + "annotations": [ + { + "answers": [ + "አብዮት አደባባይ" + ], + "en_answers": [ + "revolution square" + ], + "count": 2 + }, + { + "answers": [ + "ምኒሊክ አደባባይ" + ], + "en_answers": [ + "menelik square" + ], + "count": 1 + }, + { + "answers": [ + "አደዋ" + ], + "en_answers": [ + "adwa" + ], + "count": 1 + }, + { + "answers": [ + "ፒያሳ ጊወርጊስ" + ], + "en_answers": [ + "piasa st. george" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-78": { + "question": "በኢትዮጵያ በተለይ ለልደት ዝግጅት የሚዘመር መዝሙር ስም ማን ይባላል?", + "en_question": "What is the name of the song that is typically sung at birthday parties in your country?", + "annotations": [ + { + "answers": [ + "መልካም ልደት" + ], + "en_answers": [ + "happy birthday" + ], + "count": 2 + }, + { + "answers": [ + "ሀፒ በርዝዴይ" + ], + "en_answers": [ + "happy birthday" + ], + "count": 1 + }, + { + "answers": [ + "የኢትዮጵያ ልጆች" + ], + "en_answers": [ + "ethiopian children" + ], + "count": 1 + }, + { + "answers": [ + "እንኳን ተውለድክ/ሽ" + ], + "en_answers": [ + "happy birthday" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-01": { + "question": "በኢትዮጵያ ት/ቤቶች ፊት ለፊት የሚሸጡ አማራጮች ምንናን ናቸው?", + "en_question": "What snacks are usually sold in front of schools in your country?", + "annotations": [ + { + "answers": [ + "ብስኩት" + ], + "en_answers": [ + "biscuits" + ], + "count": 3 + }, + { + "answers": [ + "ጀላቲ", + "ጅላቲ" + ], + "en_answers": [ + "jelati" + ], + "count": 2 + }, + { + "answers": [ + "እስክርቢቶ", + "እስኪብርቶ" + ], + "en_answers": [ + "pen" + ], + "count": 2 + }, + { + "answers": [ + "ወረቀት" + ], + "en_answers": [ + "paper" + ], + "count": 1 + }, + { + "answers": [ + "ማስቲካ" + ], + "en_answers": [ + "chewing gum" + ], + "count": 1 + }, + { + "answers": [ + "ደብተር" + ], + "en_answers": [ + "notebook" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-09": { + "question": "በኢትዮጵያ ለምግብ ማብሰል በተለይ የሚጠቀምበት ዘይት ምንድን ነው?", + "en_question": "What oil is usually used for cooking in your country?", + "annotations": [ + { + "answers": [ + "የኑግ ዘይት" + ], + "en_answers": [ + "sesame oil" + ], + "count": 3 + }, + { + "answers": [ + "አትክልት ዘይት" + ], + "en_answers": [ + "vegetable oil" + ], + "count": 2 + }, + { + "answers": [ + "ፎር ኦል" + ], + "en_answers": [ + "for all" + ], + "count": 1 + }, + { + "answers": [ + "ኡመር" + ], + "en_answers": [ + "umer" + ], + "count": 1 + }, + { + "answers": [ + "ጤና" + ], + "en_answers": [ + "health" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-10": { + "question": "በኢትዮጵያ በእርግዝና ያሉ ሴቶች በተደጋጋሚ የሚጠቀሙት ምግብ ምን አይነት ነው?", + "en_question": "What food is commonly consumed by pregnant women in your country?", + "annotations": [ + { + "answers": [ + "እንጀራ" + ], + "en_answers": [ + "injera" + ], + "count": 2 + }, + { + "answers": [ + "ሾርባ" + ], + "en_answers": [ + "soup" + ], + "count": 2 + }, + { + "answers": [ + "ሽሮ" + ], + "en_answers": [ + "shiro", + "shiro stew", + "shiro wote" + ], + "count": 1 + }, + { + "answers": [ + "ተልባ" + ], + "en_answers": [ + "linen" + ], + "count": 1 + }, + { + "answers": [ + "አትክልት", + "አትክልት እና ፈራፍሬ" + ], + "en_answers": [ + "fruits" + ], + "count": 1 + }, + { + "answers": [ + "ፈራፍሬ", + "አትክልት እና ፈራፍሬ" + ], + "en_answers": [ + "vegetables" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-15": { + "question": "በኢትዮጵያ ምን ዓይነት ከአልኮል ነፃ የሆነ ባህላዊ መጠጥ እጅግ ታዋቂ ነው?", + "en_question": "What is the most popular traditional non-alcoholic drink in your country?", + "annotations": [ + { + "answers": [ + "ኬኔቶ", + "የገብስ ጠላ" + ], + "en_answers": [ + "keneto" + ], + "count": 5 + }, + { + "answers": [ + "ቀሪቦ" + ], + "en_answers": [ + "qeribo", + "keribo" + ], + "count": 1 + }, + { + "answers": [ + "አብሽ" + ], + "en_answers": [ + "absh" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-17": { + "question": "በኢትዮጵያ ፓርኮች ውስጥ በጣም የሚገኙ ስፖርት ተቋማት እነማን ናቸው?", + "en_question": "What sports facilities are generally available in parks in your country?", + "annotations": [ + { + "answers": [ + "አትሌቲክስ ፌዴሬሽን" + ], + "en_answers": [ + "athletics federation" + ], + "count": 2 + }, + { + "answers": [ + "ውሃ ዋና ፌዴሬሽን" + ], + "en_answers": [ + "swimming federation" + ], + "count": 2 + }, + { + "answers": [ + "ቴኒስ" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + }, + { + "answers": [ + "ፑል" + ], + "en_answers": [ + "pool" + ], + "count": 1 + }, + { + "answers": [ + "የዕጅ ኳስ" + ], + "en_answers": [ + "handball" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-su-21": { + "question": "በኢትዮጵያ የሽማግሌዎች በፓርኮች ውስጥ የሚያደርጉት የተለመዱ እንቅስቃሴዎች ምንድናቸው?", + "en_question": "What are the common activities that seniors usually do in parks in your country?", + "annotations": [ + { + "answers": [ + "የእግር ጉዞ", + "የግር ጉዞ", + "የእግር እንቅስቃሴ", + "የዕግር እንቅስቃሴ" + ], + "en_answers": [ + "walk" + ], + "count": 3 + }, + { + "answers": [ + "ጉብኝት" + ], + "en_answers": [ + "visit" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-24": { + "question": "በኢትዮጵያ ወላጆች እና ልጆች በጋራ በተለይ የሚጫወቱ ስፖርቶች ምንናን ናቸው?", + "en_question": "What sports do parents and children commonly play together in your country?", + "annotations": [ + { + "answers": [ + "ኳስ", + "ኳስ ጨዋታ" + ], + "en_answers": [ + "ball", + "football game", + "soccer game" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-28": { + "question": "የኢትዮጵያ ብሄራዊ እግር ኳስ ቡድን ጋር የተያያዘ ቀለም ምንድን ነው?", + "en_question": "What color is associated with the national soccer team of your country?", + "annotations": [ + { + "answers": [ + "አረንጓዴ", + "አርንጓዴ" + ], + "en_answers": [ + "green" + ], + "count": 4 + }, + { + "answers": [ + "ቢጫ" + ], + "en_answers": [ + "yellow" + ], + "count": 2 + }, + { + "answers": [ + "ውሃ ሰማያዊ" + ], + "en_answers": [ + "light blue" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-33": { + "question": "በኢትዮጵያ በትምህርት ቤት መምህራን ለተለመደ ልብስ አይነት ምንድነው?", + "en_question": "What is the common dress code for school teachers in your country?", + "annotations": [ + { + "answers": [ + "ጋዋን", + "ጋወን", + "ነጭ ጋዋን", + "ጋውን" + ], + "en_answers": [ + "gown", + "white gown" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-34": { + "question": "በኢትዮጵያ ትምህርት ቤቶች ውስጥ በሙዚቃ የተያያዘ እና ተወዳጅ የተጨማሪ ትምህርት እንቅስቃሴ ምንድን ነው?", + "en_question": "What is the most popular extracurricular activity related to music in schools in your country?", + "annotations": [ + { + "answers": [ + "የስፖርት ትምህርት" + ], + "en_answers": [ + "sports education" + ], + "count": 2 + }, + { + "answers": [ + "ዳንስ", + "ውዝዋዜ" + ], + "en_answers": [ + "dance" + ], + "count": 1 + }, + { + "answers": [ + "ሙዚቃ" + ], + "en_answers": [ + "music" + ], + "count": 1 + }, + { + "answers": [ + "አርት", + "ስነ-ጥበብ" + ], + "en_answers": [ + "art" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-42": { + "question": "በኢትዮጵያ ትምህርት ቤቶች ውስጥ የትኛው ሃይማኖት በትምህርት መልክ ይሰጣል?", + "en_question": "What religion is mainly taught in schools in your country?", + "annotations": [ + { + "answers": [ + "ካቶሊክ" + ], + "en_answers": [ + "catholic" + ], + "count": 1 + }, + { + "answers": [ + "ክርሰትና" + ], + "en_answers": [ + "christianity" + ], + "count": 1 + }, + { + "answers": [ + "እስልምና" + ], + "en_answers": [ + "islam" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-su-45": { + "question": "ትምህርት ቀን በኢትዮጵያ በምን ቀን ይከበራል? (በወር/ቀን ቅፅ ምሳሌ 12/31 እንደሆነ ያቅርቡ።)", + "en_question": "What date is Education Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 1 + } + }, + "New-su-50": { + "question": "በኢትዮጵያ በተራራማ አካባቢዎች ሰዎች ዋና ሙያቸው ምንድን ነው?", + "en_question": "What is the main occupation of people in mountainous areas in your country?", + "annotations": [ + { + "answers": [ + "እንስሳት እርባታ", + "አርብቶ አደር" + ], + "en_answers": [ + "animal breeding" + ], + "count": 2 + }, + { + "answers": [ + "ግብርና" + ], + "en_answers": [ + "agriculture" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "New-su-51": { + "question": "በኢትዮጵያ በባህር ዳርቻ አካባቢ የሚኖሩ ሰዎች ዋና ስራቸው ምን ነው?", + "en_question": "What is the main occupation of people in coastal areas in your country?", + "annotations": [ + { + "answers": [ + "አሳ ማጥመድ", + "አሳ እርባታ" + ], + "en_answers": [ + "fishing", + "fish farming" + ], + "count": 4 + }, + { + "answers": [ + "መስኖ" + ], + "en_answers": [ + "irrigation" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-57": { + "question": "በኢትዮጵያ በተለይ የሚረቡ እንስሳት ምንድነው?", + "en_question": "What is the most common livestock raised in your country?", + "annotations": [ + { + "answers": [ + "በግ" + ], + "en_answers": [ + "sheep" + ], + "count": 4 + }, + { + "answers": [ + "ከብት" + ], + "en_answers": [ + "cattle" + ], + "count": 3 + }, + { + "answers": [ + "ዶሮ" + ], + "en_answers": [ + "chicken" + ], + "count": 2 + }, + { + "answers": [ + "ላም" + ], + "en_answers": [ + "lamb" + ], + "count": 1 + }, + { + "answers": [ + "በሬ" + ], + "en_answers": [ + "ox", + "cow" + ], + "count": 1 + }, + { + "answers": [ + "አህያ" + ], + "en_answers": [ + "donkey" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-58": { + "question": "በኢትዮጵያ በአብዛኛው ለእርሻ ስራ የሚያገለግሉ እንስሳት የትኞቹ ናቸው?", + "en_question": "What animals are commonly used for agriculture in your country?", + "annotations": [ + { + "answers": [ + "በሬ" + ], + "en_answers": [ + "ox", + "cow" + ], + "count": 5 + }, + { + "answers": [ + "ፈረስ" + ], + "en_answers": [ + "horse" + ], + "count": 4 + }, + { + "answers": [ + "አህያ" + ], + "en_answers": [ + "donkey" + ], + "count": 1 + }, + { + "answers": [ + "ላም" + ], + "en_answers": [ + "lamb" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-59": { + "question": "በኢትዮጵያ ገበሬዎች ከፀሐይ ሙቀት ራሳቸውን ለመከላከል ምን ይለብሳሉ?", + "en_question": "What do farmers in your country typically wear to protect themselves from the heat whilst farming?", + "annotations": [ + { + "answers": [ + "ባርኔጣ", + "ቆብ", + "ኮፍያ" + ], + "en_answers": [ + "hat", + "cap" + ], + "count": 3 + }, + { + "answers": [ + "የሰኔል ቆብ" + ], + "en_answers": [ + "sunel's hat" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-60": { + "question": "በኢትዮጵያ እርሻ ሠራተኞች በምሳ ላይ በተለይ ምን ይበላሉ?", + "en_question": "What do farmers in your country usually eat for lunch?", + "annotations": [ + { + "answers": [ + "እንጀራ" + ], + "en_answers": [ + "injera" + ], + "count": 2 + }, + { + "answers": [ + "ሽሮ", + "እንጀራ በሽሮ", + "ዕንጀራ በሽሮ" + ], + "en_answers": [ + "shiro", + "shiro stew", + "shiro wote", + "injera with shiro" + ], + "count": 2 + }, + { + "answers": [ + "የአገልግል ምግብ" + ], + "en_answers": [ + "agelegel's food" + ], + "count": 1 + }, + { + "answers": [ + "ምስር" + ], + "en_answers": [ + "lentils" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-71": { + "question": "በኢትዮጵያ ወላጆች ለልጆቻቸው በልደታቸው ቀን በአብዛኛው ምን ስጦታዎች ይሰጣሉ?", + "en_question": "What gifts do parents generally give to their children for their birthdays in your country?", + "annotations": [ + { + "answers": [ + "አሻንጉሊት" + ], + "en_answers": [ + "toy" + ], + "count": 2 + }, + { + "answers": [ + "ልብስ", + "የልብስ" + ], + "en_answers": [ + "clothing", + "clothes" + ], + "count": 2 + }, + { + "answers": [ + "መጫወቻ" + ], + "en_answers": [ + "toy" + ], + "count": 1 + }, + { + "answers": [ + "ታብሌት", + "ስማርት ስልክ" + ], + "en_answers": [ + "tablet" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-75": { + "question": "በኢትዮጵያ አብዛኛው ቤተሰቦች የትኛው መኪና አይነት አላቸው?", + "en_question": "What type of vehicle do most families in your country generally own?", + "annotations": [ + { + "answers": [ + "ቪትዝ" + ], + "en_answers": [ + "vitz" + ], + "count": 2 + }, + { + "answers": [ + "ዲኤክስ", + "ዲ ኤ ክ ስ", + "ወያኔ" + ], + "en_answers": [ + "dx" + ], + "count": 1 + }, + { + "answers": [ + "የቤት መኪና" + ], + "en_answers": [ + "automobile" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-su-77": { + "question": "በኢትዮጵያ ለልጆች ለኢድ ባዕል ምን ስጦታ ይሰጣል?", + "en_question": "What is usually given to the children during Eid in your country?", + "annotations": [ + { + "answers": [ + "አልባሳት", + "ልብስ" + ], + "en_answers": [ + "clothes" + ], + "count": 2 + }, + { + "answers": [ + "መጫዎቻዎች" + ], + "en_answers": [ + "toy" + ], + "count": 1 + }, + { + "answers": [ + "ፖስተር" + ], + "en_answers": [ + "poster" + ], + "count": 1 + }, + { + "answers": [ + "የተረት መጽሐፍ", + "የተረት መጽሃፍ" + ], + "en_answers": [ + "a book of stories" + ], + "count": 1 + }, + { + "answers": [ + "ቴምር" + ], + "en_answers": [ + "a book of fairy tail" + ], + "count": 1 + }, + { + "answers": [ + "ዳቦ", + "እንጎቻ" + ], + "en_answers": [ + "bread" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-81": { + "question": "በኢትዮጵያ ወንድ ሙሽራዎች በሰርጋቸው ቀን በተለይ የሚለብሱት አልባሳት ምንድነው?", + "en_question": "What clothes do grooms usually wear at weddings in your country?", + "annotations": [ + { + "answers": [ + "ሱፍ", + "ሙሉ ልብስ" + ], + "en_answers": [ + "suite" + ], + "count": 5 + }, + { + "answers": [ + "የሀበሻ ልብስ", + "የባህል ልብስ" + ], + "en_answers": [ + "traditional habesha clothes" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-82": { + "question": "በኢትዮጵያ ሴት ሙሽራዎች በሰርጋቸው ቀን በተለይ የሚለብሱት አልባሳት ምንድነው?", + "en_question": "What clothes do brides usually wear at weddings in your country?", + "annotations": [ + { + "answers": [ + "ቬሎ" + ], + "en_answers": [ + "velo" + ], + "count": 5 + }, + { + "answers": [ + "የሀበሻ ቀሚስ", + "የባህል ልብስ" + ], + "en_answers": [ + "traditional clothes" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-83": { + "question": "በኢትዮጵያ ምን ዓይነት ምግብ በሰርግ ቀን ላይ ተመጣጣኝ ይሆናል?", + "en_question": "What food is usually served at weddings in your country?", + "annotations": [ + { + "answers": [ + "ቀይ ወጥ" + ], + "en_answers": [ + "red stew" + ], + "count": 3 + }, + { + "answers": [ + "የፍስክ ምግብ" + ], + "en_answers": [ + "nonfasting food" + ], + "count": 1 + }, + { + "answers": [ + "የስጋ ውጤት" + ], + "en_answers": [ + "meat yield" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-86": { + "question": "በኢትዮጵያ ውስጥ እጅግ ታዋቂ የመንግሥት ሕንጻ የትኛው ነው?", + "en_question": "What is the most famous government building in your country?", + "annotations": [ + { + "answers": [ + "የንግድ ባንክ ሕንፃ", + "የንግድ ባንክ ህንፃ", + "የኢትዮጲያ ንግድ ባንክ ሕንጻ" + ], + "en_answers": [ + "commercial bank building", + "ethiopian commercial bank building" + ], + "count": 4 + }, + { + "answers": [ + "ፋሲል", + "ፋሲል ግንብ" + ], + "en_answers": [ + "fasil" + ], + "count": 1 + }, + { + "answers": [ + "አክሱም", + "አክሱም ሐውልት" + ], + "en_answers": [ + "axum" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-88": { + "question": "በኢትዮጵያ ወጣቶች በእጅጉ የሚወዱት ሙዚቃ አይነት ምንድነው?", + "en_question": "What is the most popular music genre among the younger population in your country?", + "annotations": [ + { + "answers": [ + "ዘመናዊ" + ], + "en_answers": [ + "modern" + ], + "count": 2 + }, + { + "answers": [ + "ራፕ" + ], + "en_answers": [ + "rap" + ], + "count": 2 + }, + { + "answers": [ + "ትዝታ" + ], + "en_answers": [ + "memory" + ], + "count": 1 + }, + { + "answers": [ + "አምባሰል" + ], + "en_answers": [ + "ambasel" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-02": { + "question": "በኢትዮጵያ የመካከለኛ ትምህርት ቤት ተማሪዎች የቀኑን ትምህርት የሚያጠናቅቁት ስንት ሰዓት ነው? (በሰዓት አስቀምጡ (ምሳሌ 10:00, 09:00) ይምረጡ።)", + "en_question": "What time do middle school students in your country typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "17:00", + "11:00" + ], + "en_answers": [ + "17:00" + ], + "count": 4 + }, + { + "answers": [ + "15:30", + "09:30" + ], + "en_answers": [ + "11:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-03": { + "question": "በኢትዮጵያ ሰዎች በምን ዕድሜ በተለይ ወደ ዩኒቨርስቲ ይሄዳሉ? (በአረብኛ ቁጥር ብቻ ምሳሌ 12 ይምረጡ።)", + "en_question": "At what age do people in your country typically go to university? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "19" + ], + "en_answers": [ + "19" + ], + "count": 4 + }, + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-06": { + "question": "በኢትዮጵያ ሰዎች ከስንት አመት ጀምሮ ወደ ትምህርት ቤት መሄድ አለባቸው? (በአረቢክ ቁጥሮች (ምሳሌ 12) ብቻ ይምላሉ።)", + "en_question": "From what age do people need to attend compulsory education in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 3 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-09": { + "question": "በኢትዮጵያ ልጆች በሳምንት ስንት ቀን ት/ቤት ይሄዳሉ? (ከ0 እስከ 7 ድረስ የዓረብ ቁጥሮችን ብቻ ያቅርቡ።)", + "en_question": "How many days a week do children attend school in your country? (Provide Arabic numerals (0~7) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-11": { + "question": "በኢትዮጵያ የሁለተኛ ዲግሪ ለመጨረስ ስንት አመት ይፈጃል? (በአረቢክ ቁጥር ብቻ ምላሽ ይስጡ (ለምሳሌ፣ 12)።)", + "en_question": "In your country, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-12": { + "question": "በኢትዮጵያ ስመጥር ዩኒቨርስቲ ማን ነው? (የራሱን እጅግ የሚያመለክት ስም ያቅርቡ።)", + "en_question": "What is the top university in your country? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "አዲስ አበባ ዩኒቨርስቲ", + "አዲስ አበባ", + "አድስ አበባ" + ], + "en_answers": [ + "addis ababa university", + "addis ababa" + ], + "count": 5 + }, + { + "answers": [ + "ባህር ዳር" + ], + "en_answers": [ + "bahir dar" + ], + "count": 1 + }, + { + "answers": [ + "ሀዋሳ" + ], + "en_answers": [ + "hawassa" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-13": { + "question": "በኢትዮጵያ ባብዛኛው ሰዎች በስንት ዕድሜያቸው ከዩኒቨርስቲ ይመረቃሉ?(በአረቢኛ ቁጥሮች (ምሳሌ 12) ብቻ ይምረጡ።)", + "en_question": "At what age do most people in your country graduate from university? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "23" + ], + "en_answers": [ + "23" + ], + "count": 2 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 2 + }, + { + "answers": [ + "21" + ], + "en_answers": [ + "21" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-15": { + "question": "በኢትዮጵያ ልጆች በየትኛው ዕድሜ ያቸው ነው መካከለኛ ደርጃ ትምህርት ቤት የሚጀመሩት? (በቁጥር ብቻ ምላሽ ይስጡ (ለምሳሌ፣ 12)።)", + "en_question": "At what age do children in your country generally start middle school? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "14" + ], + "en_answers": [ + "14" + ], + "count": 3 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-17": { + "question": "በኢትዮጵያ አንድ ሙሉ ጊዜ ሠራተኛ በሳምንት ስንት ሰዓት ይሠራል? (በአረቢኛ ቁጥር ብቻ ምላሽ ይስጡ (ለምሳሌ፣ 12)።)", + "en_question": "How many hours a week does a full-time worker in your country typically work? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 2 + }, + { + "answers": [ + "48" + ], + "en_answers": [ + "48" + ], + "count": 2 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-19": { + "question": "በኢትዮጵያ አስተማማኝ ሙሉ ጊዜ ሠራተኛ በአንድ ሳምንት ስንት ቀን ይሠራል? (ከ0 እስከ 7 ድረስ የዓረብ ቁጥሮችን ብቻ ስጡ።)", + "en_question": "How many days a week does a full-time worker work in your country? (Provide Arabic numerals (0~7) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 3 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-20": { + "question": "በኢትዮጵያ በተለይ ሰዎች ስራ የሚጀምሩ በስንት እድሜያቸው ነው? (በዓረብ ቁጥር ብቻ ምላሽ ይስጡ (ለምሳሌ፣ 12)።)", + "en_question": "At what age do most people start working in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 2 + }, + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 1 + }, + { + "answers": [ + "13" + ], + "en_answers": [ + "13" + ], + "count": 1 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-21": { + "question": "በኢትዮጵያ እንደሚሠራ የተፈቀደ እድሜ ምንነት ነው? (በአረቢክ ቁጥሮች ብቻ (ምሳሌ 12) ይምረጡ።)", + "en_question": "From what age is an individual allowed to work in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 4 + }, + { + "answers": [ + "65" + ], + "en_answers": [ + "65" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-31": { + "question": "በኢትዮጵያ ሰዎች ገና በአል ሲያከብሩ ምን ይመገባሉ?", + "en_question": "What do people in your country traditionally eat on Christmas Day?", + "annotations": [ + { + "answers": [ + "ስጋ", + "ቁርጥ", + "ስጋ ቁርጥ", + "ጥሬ ስጋ" + ], + "en_answers": [ + "meat", + "meat cuts", + "cut meat" + ], + "count": 4 + }, + { + "answers": [ + "ድፎ ዳቦ" + ], + "en_answers": [ + "big bread", + "dough bread", + "difo dabo" + ], + "count": 2 + }, + { + "answers": [ + "ዳቦ", + "እንጎቻ" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "ዶሮ ወጥ" + ], + "en_answers": [ + "chicken stew", + "doro wot" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-37": { + "question": "በኢትዮጵያ ሰዎች ፍቅርን እና ሮማንስን የሚያከብሩበት ዓመት ውስጥ የቀኑን ስም ምንድን ነው?", + "en_question": "What is the name of the day of the year where people in your country celebrate love and romance?", + "annotations": [ + { + "answers": [ + "ቫላንታይን ቀን", + "ቫላንታይስ ደይ" + ], + "en_answers": [ + "valentine's day" + ], + "count": 3 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "Ni-en-40": { + "question": "በኢትዮጵያ ምን ዓይነት የገና ሙዚቃ እጅግ ታዋቂ ነው?", + "en_question": "What is the most popular Christmas song in your country?", + "annotations": [ + { + "answers": [ + "እዮሃ አዚና ገናየ", + "አሲና በል" + ], + "en_answers": [ + "eyohe azna genaye", + "asina bel" + ], + "count": 3 + }, + { + "answers": [ + "ባህላዊ" + ], + "en_answers": [ + "traditional", + "cultural" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Nu-in-04": { + "question": "በኢትዮጵያ ሁለተኛ ደረጃ ትምህርት ቤቶች በአንድ ዓመት ስንት ሴሜስተሮች አሉ? (በዓረብ ቁጥሮች ብቻ ምላሽ ይስጡ (ምሳሌ 7, 8)።)", + "en_question": "How many semesters are there each academic year at high schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-05": { + "question": "በኢትዮጵያ አዲስ የትምህርት ዓመት በየትኛው ወር ይጀምራል? (በአረብኛ ቁጥር (1~12) ብቻ ይምረጡ።)", + "en_question": "In which month does the new school year typically begin in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "1", + "መስከረም" + ], + "en_answers": [ + "1", + "september" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-06": { + "question": "በኢትዮጵያ ብሄራዊ መምህራን ቀን መቼ ይከበራል? (በወር/ቀን ቅጽ ይምረጡ (ምሳሌ 12/31).)", + "en_question": "When is National Teacher's Day commemorated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "10/05" + ], + "en_answers": [ + "10/05" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Nu-in-11": { + "question": "በኢትዮጵያ የመጀመሪያ ደረጃ ትምህርት ቤት በምን ሰዓት ይጀምራል? (በኤችኤች:ኤምኤም ቅጽ ያቅርቡ (ምሳሌ 18:00, 09:00).)", + "en_question": "At what time does elementary school start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:00", + "02:00" + ], + "en_answers": [ + "08:00" + ], + "count": 4 + }, + { + "answers": [ + "08:30", + "02:30" + ], + "en_answers": [ + "08:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-20": { + "question": "በኢትዮጵያ የልጆች ቀን መቼ ይከበራል? (በወር/ቀን ቅጽ ይምረጡ (ምሳሌ 12/31).)", + "en_question": "When is Children's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [], + "idks": { + "idk": 3, + "not-applicable": 2, + "no-answer": 0 + } + }, + "Nu-in-40": { + "question": "በኢትዮጵያ ለሥራ ፈላጊዎች ዋናው መድረሻ ከተማ ማንዣት ነው?", + "en_question": "Which city is the main destination for job seekers in your country?", + "annotations": [ + { + "answers": [ + "አዲስ አበባ" + ], + "en_answers": [ + "addis ababa" + ], + "count": 4 + }, + { + "answers": [ + "አዲስ አበባ", + "አዲዲስ አበባ" + ], + "en_answers": [ + "addis ababa" + ], + "count": 1 + }, + { + "answers": [ + "ባህር ዳር" + ], + "en_answers": [ + "bahir dar" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-1": { + "question": "ኢትዮጵያውያን በጣም የተወደዱ ፈጣን ምግብ ሰንሰለት ምንድነው?", + "en_question": "What is your country's most popular fast food chain?", + "annotations": [ + { + "answers": [ + "ሽሮ", + "ሸሮ" + ], + "en_answers": [ + "shiro", + "shiro stew", + "shiro wote" + ], + "count": 2 + }, + { + "answers": [ + "ፍርፍር" + ], + "en_answers": [ + "firfir" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-13": { + "question": "በኢትዮጵያ ምን ዓይነት ምግብ ነው በጣም የሚከፋፈለው?", + "en_question": "What is the food that is most divisive (either love or hate) in your country?", + "annotations": [ + { + "answers": [ + "ዳቦ", + "ንጎቻ" + ], + "en_answers": [ + "bread" + ], + "count": 3 + }, + { + "answers": [ + "በየአይነቱ", + "አይነት", + "የፆም ማህበራዊ" + ], + "en_answers": [ + "mixed food" + ], + "count": 1 + }, + { + "answers": [ + "እንቁላል" + ], + "en_answers": [ + "egg" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Sa-en-16": { + "question": "በኢትዮጵያ ሰዎች መካከል እጅግ ታዋቂ የእግር ኳስ ቡድን ማን ነው?", + "en_question": "What is the most popular soccer team among the people from your country?", + "annotations": [ + { + "answers": [ + "ቅዱስ ጊዎርጊስ", + "ጊዮርጊስ", + "ቅ/ጊወርጊስ", + "ጊውርጊስ", + "ፈረሰኞች" + ], + "en_answers": [ + "saint george", + "st. george", + "saint george sport clube", + "st. george sport club", + "giorgis", + "giorgis sport club" + ], + "count": 5 + }, + { + "answers": [ + "ኢትዮጵያ ቡና", + "ቡና", + "ኢትዮጲያ ቡና", + "ቡናማዎች" + ], + "en_answers": [ + "ethiopian coffee", + "coffee", + "ethiopian coffee sport club" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-22": { + "question": "በኢትዮጵያ ስፖርት ቡድኑ የታወቀው እጅግ ዝናና ዩኒቨርስቲ ማንነት ምንድን ነው?", + "en_question": "What is the most famous university in your country known for its sports team?", + "annotations": [ + { + "answers": [ + "አዲግራት ዩኒቨርስቲ" + ], + "en_answers": [ + "adigrat university" + ], + "count": 2 + }, + { + "answers": [ + "አዲስ አበባ ዩኒቨርስቲ" + ], + "en_answers": [ + "addis ababa university" + ], + "count": 1 + }, + { + "answers": [ + "እግር ኳስ" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Sa-en-31": { + "question": "በኢትዮጵያ ቤተሰብ ተወዳጅ የቤት እንስሳ ምንድን ነው?", + "en_question": "What is your country's most popular family pet?", + "annotations": [ + { + "answers": [ + "ድመት" + ], + "en_answers": [ + "cat" + ], + "count": 5 + }, + { + "answers": [ + "ውሻ" + ], + "en_answers": [ + "dog" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-32": { + "question": "በኢትዮጵያ ምን ዓይነት ቤተሰብ ቴሌቪዥን ሾው እጅግ ታዋቂ ነው?", + "en_question": "What is the most popular family TV show in your country?", + "annotations": [ + { + "answers": [ + "ሰይፉ ሾው", + "ሰይፉ ኦን ኢቢሴ" + ], + "en_answers": [ + "seyfu show", + "seyfu on ebs" + ], + "count": 4 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Sa-en-37": { + "question": "በኢትዮጵያ ምን ዓይነት ቤተሰብ ቦርድ ጌም እጅግ ታዋቂ ነው?", + "en_question": "What is the most popular family boardgame in your country?", + "annotations": [], + "idks": { + "idk": 3, + "not-applicable": 2, + "no-answer": 0 + } + }, + "Sa-en-6": { + "question": "በኢትዮጵያ ምን ዓይነት የምግብ ቤት ምግብ እንደሚወስድ ታዋቂ ነው?", + "en_question": "What is the most popular takeaway food in your country?", + "annotations": [ + { + "answers": [ + "ፒዛ" + ], + "en_answers": [ + "pizza" + ], + "count": 2 + }, + { + "answers": [ + "ሆቴል" + ], + "en_answers": [ + "hotel" + ], + "count": 1 + }, + { + "answers": [ + "የባህል ምግብ ቤት", + "የባህል ምግብ አዳራሽ" + ], + "en_answers": [ + "cultural restaurant" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Sa-en-7": { + "question": "በኢትዮጵያ የታወቁ መክሰስ ምግቦች ምንናቸው?", + "en_question": "What are popular snacks in your country?", + "annotations": [ + { + "answers": [ + "እንጀራ ፍርፍር" + ], + "en_answers": [ + "injera firfir" + ], + "count": 2 + }, + { + "answers": [ + "ሳንድዊች" + ], + "en_answers": [ + "sandwich" + ], + "count": 1 + }, + { + "answers": [ + "ብስኩት" + ], + "en_answers": [ + "biscuits" + ], + "count": 1 + }, + { + "answers": [ + "ሳምቡሳ" + ], + "en_answers": [ + "sambusa" + ], + "count": 1 + }, + { + "answers": [ + "ሻይ በዳቦ" + ], + "en_answers": [ + "tea with bread" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Sa-en-9": { + "question": "በባህር ዳር ላይ የኢትዮጵያ ሰዎች ምን ይበላሉ?", + "en_question": "What do people from your country eat at the beach?", + "annotations": [ + { + "answers": [ + "አሳ" + ], + "en_answers": [ + "fish" + ], + "count": 4 + }, + { + "answers": [ + "እንጀራ" + ], + "en_answers": [ + "injera" + ], + "count": 1 + }, + { + "answers": [ + "ሽሮ", + "በሽሮ" + ], + "en_answers": [ + "shiro", + "shiro stew", + "shiro wote" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-10": { + "question": "በኢትዮጵያ ወንዶች በስንት ዓመት ጋብቻ ይፈጥማሉ? (በአረብኛ ቁጥር ብቻ ምላሽ ይስጡ (ለምሳሌ፣ 20)።)", + "en_question": "At what age do men usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 2 + }, + { + "answers": [ + "35" + ], + "en_answers": [ + "35" + ], + "count": 2 + }, + { + "answers": [ + "27" + ], + "en_answers": [ + "27" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-11": { + "question": "በኢትዮጵያ ሴቶች በስንት ዓመት ጋብቻ ይፈጥማሉ? (በአረቢክ ቁጥር ብቻ ምላሽ ይስጡ (ምሳሌ 20)።)", + "en_question": "At what age do women usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 2 + }, + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 1 + }, + { + "answers": [ + "21" + ], + "en_answers": [ + "21" + ], + "count": 1 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-13": { + "question": "በወላጆችዎ ትውልድ በኢትዮጵያ በቤተሰባቸው ውስጥ አማካይነት የነበሩት አባላት ብዛት ስንት ነበር? (በአረቢክ ቁጥሮች (ምሳሌ 20) ብቻ ይምረጡ።)", + "en_question": "In your parents' generation, what was the average number of members in their family in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 3 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-17": { + "question": "በኦሊምፒክ ጨዋታዎች ውስጥ፣ እንዴት ዓይነት ስፖርት በኢትዮጵያ ታዋቂ ነው?", + "en_question": "In the Olympic Games, which sport is the most popular in your country?", + "annotations": [ + { + "answers": [ + "እሩጫ", + "ሩጫ", + "አትሌቲክስ", + "በሩጫ" + ], + "en_answers": [ + "athletics", + "run", + "running" + ], + "count": 5 + }, + { + "answers": [ + "ቦክስ" + ], + "en_answers": [ + "box", + "boxing" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-21": { + "question": "ልጆች በኢትዮጵያ በተለይ የእግር ኳስ የሚጫወቱበት ቦታ የት ነው?", + "en_question": "Where do children usually play soccer in your country?", + "annotations": [ + { + "answers": [ + "ሜዳ ላይ", + "ኳስ ሜዳ", + "ሜዳ" + ], + "en_answers": [ + "on the field", + "football field", + "field" + ], + "count": 4 + }, + { + "answers": [ + "አስፓልት ላይ" + ], + "en_answers": [ + "on asphalt", + "on road" + ], + "count": 2 + }, + { + "answers": [ + "መስቀል አደባባይ" + ], + "en_answers": [ + "meskel square", + "cross square" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-22": { + "question": "በኢትዮጵያ የተወዳጅ የዕለታዊ እንቅስቃሴ በሴቶች መካከል ምንድን ነው?", + "en_question": "Which daily exercise is popular among women in your country?", + "annotations": [ + { + "answers": [ + "ጅምናስቲክ" + ], + "en_answers": [ + "gymnastics" + ], + "count": 3 + } + ], + "idks": { + "ግልጽ አይደለም": 1, + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ta-pe-23": { + "question": "በኢትዮጵያ ውስጥ ወንዶች መካከል በተመሳሳይ የሚደረግ ትርጉም እንደሚኖረው አውታረ መስመር ምንድን ነው?", + "en_question": "Which daily exercise is popular among men in your country?", + "annotations": [ + { + "answers": [ + "ፌስቡክ" + ], + "en_answers": [ + "facebook" + ], + "count": 2 + }, + { + "answers": [ + "ግብረ ሶዶም" + ], + "en_answers": [ + "sodomy" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "Ta-pe-25": { + "question": "በኢትዮጵያ በብሔራዊ ስፖርት ሊግ ውስጥ እጅግ ዝነኛ የሆነ ፉክክር ምንድን ነው? (ምሳሌ: ___ ከ ___)", + "en_question": "What is the most famous rivalry in a national sports league in your country? (e.g., ___ vs ___)", + "annotations": [ + { + "answers": [ + "ጊዮርጊስ ከ ቡና ጋር", + "ቡና ከ ጊዮርጊስ", + "ቅዱስ ጊዮርጊስ ከ ቡና", + "ጊዮርጊስ ከ ቡና", + "ጊዮርጊስ ከ ቡና" + ], + "en_answers": [ + "george vs coffee", + "saint george vs ethiopian coffee", + "saint george sport club vs ethiopian coffee sport club", + "coffee vs george", + "ethiopian coffee vs saint george", + "ethiopian coffee sport club vs saint george sport club" + ], + "count": 4 + }, + { + "answers": [ + "ባህር ዳር ከ ፋሲል" + ], + "en_answers": [ + "bahir dar vs fasil", + "bahir dar kenema vs fasil kenema", + "bahirdar vs fasil", + "fasil vs bahir dar", + "fasil kenema vs bahir dar kenema", + "fasil vs bahirdar" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-29": { + "question": "በኢትዮጵያ ውስጥ የትኛው ስፖርት እጅግ የሚከፍል ነው?", + "en_question": "Which professional sport is the highest paying in your country?", + "annotations": [ + { + "answers": [ + "እግር ኳስ", + "እግር ዃስ" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-30": { + "question": "በኢትዮጵያ ምን ነበር/ነው ተወዳጅ የስፖርት ተያያዥ ቴሌቪዥን ፕሮግራም?", + "en_question": "What is/was the most popular sports-related TV program in your country?", + "annotations": [ + { + "answers": [ + "ብስራት ስፖርት" + ], + "en_answers": [ + "beserat sport" + ], + "count": 2 + }, + { + "answers": [ + "ፕሪሚየር ሊግ" + ], + "en_answers": [ + "premier league" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Ta-pe-32": { + "question": "በኢትዮጵያ የአመቱ ምን ቀን በተለይ ለርችት የተመደበ ነው?", + "en_question": "What day of the year is usually dedicated to fireworks in your country?", + "annotations": [ + { + "answers": [ + "አዲስ አመት", + "የአዲስ አመት መግቢያ", + "ለአዲስ አመት", + "እንቁጣጣሽ", + "ዘመን መለወጫ", + "አዲስ አመፅ" + ], + "en_answers": [ + "new year", + "for new year" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-37": { + "question": "በኢትዮጵያ የአዲስ አመት ምሽት በተለይ የተለመደ መለያ ምንድነው?", + "en_question": "What is the common symbol of New Year's Eve that is usually found in your country?", + "annotations": [ + { + "answers": [ + "ወደ ሙዚቃ ፕሮግራም መሄድ", + "ዋዜማ ሙዚቃ", + "ኮንሰርት መሄድ" + ], + "en_answers": [ + "going to a music program", + "eve music" + ], + "count": 3 + }, + { + "answers": [ + "ርችት" + ], + "en_answers": [ + "firework" + ], + "count": 1 + }, + { + "answers": [ + "ዋዜማ" + ], + "en_answers": [ + "eve" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ta-pe-42": { + "question": "በኢትዮጵያ ሰዎች በአዲስ አመት እለት ምን አይነት ምግብ ይበላሉ?", + "en_question": "What food do people from your country usually eat on New Year's Eve?", + "annotations": [ + { + "answers": [ + "ስጋ" + ], + "en_answers": [ + "meat" + ], + "count": 5 + }, + { + "answers": [ + "ዶሮ" + ], + "en_answers": [ + "chicken" + ], + "count": 3 + }, + { + "answers": [ + "ዳቦ", + "እንጎቻ" + ], + "en_answers": [ + "bread" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-45": { + "question": "በኢትዮጵያ በአመቱ ረዥም ሌሊት በዓል ላይ በተለይ ምን ይበላል?", + "en_question": "What is usually eaten during the celebration of the longest night of the year in your country?", + "annotations": [ + { + "answers": [ + "ዶሮ", + "ዶሮ ወጥ" + ], + "en_answers": [ + "chicken", + "chicken stew", + "doro wot" + ], + "count": 3 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "Th-en-01": { + "question": "በኢትዮጵያ በክረምት ወቅት ምን ዓይነት ስፖርት ታዋቂ ነው?", + "en_question": "What is the most popular summer sport in your country?", + "annotations": [ + { + "answers": [ + "እግር ኳስ" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "ሩጫ" + ], + "en_answers": [ + "athletics", + "run", + "running" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-03": { + "question": "በኢትዮጵያ ምን ዓይነት የሙያዊ ስፖርት ሊግ እጅግ ታዋቂ ነው?", + "en_question": "What is the most popular professional sports league in your country?", + "annotations": [ + { + "answers": [ + "የእግር ኳስ ሊግ", + "ፕሪሚየር ሊግ", + "እግር ኳስ" + ], + "en_answers": [ + "football league", + "premier league", + "football", + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "መረብ ኳስ" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Th-en-05": { + "question": "በኢትዮጵያ ምንም ተወዳጅ የሴቶች ስፖርት ቡድን ምንድን ነው?", + "en_question": "What is the most popular women's sports team in your country?", + "annotations": [ + { + "answers": [ + "ንግድ ባንክ" + ], + "en_answers": [ + "commercial bank" + ], + "count": 2 + }, + { + "answers": [ + "ሉሲ" + ], + "en_answers": [ + "lucy" + ], + "count": 1 + }, + { + "answers": [ + "እግር ኳስ መጫወት" + ], + "en_answers": [ + "playing football", + "playing soccer" + ], + "count": 1 + }, + { + "answers": [ + "ሩጫ" + ], + "en_answers": [ + "athletics", + "run", + "running" + ], + "count": 1 + }, + { + "answers": [ + "መረብ ኳስ" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Th-en-09": { + "question": "በኢትዮጵያ ምን ዓይነት ውድድር እጅግ ታዋቂ ነው?", + "en_question": "What is the most popular tournament in your country?", + "annotations": [ + { + "answers": [ + "ሩጫ", + "የሩጫ ውድድር" + ], + "en_answers": [ + "athletics", + "run", + "running", + "race", + "running competition" + ], + "count": 5 + }, + { + "answers": [ + "እግር ኳስ" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "ዉሃ ዋና" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-11": { + "question": "በኢትዮጵያ እጅግ ታዋቂ ስፖርተኛ የሆነ ሰው?", + "en_question": "Who is the most popular sportperson in your country?", + "annotations": [ + { + "answers": [ + "ሀይሌ ገብረስላሴ", + "ሀይሌ ገ/ስላሴ", + "ሀይሌ ግ/ስላሴ", + "ሀይሌ" + ], + "en_answers": [ + "haile gebreselassie", + "haile g/selassie" + ], + "count": 5 + }, + { + "answers": [ + "አበበ ቢቂላ", + "አበበ ቢቄላ" + ], + "en_answers": [ + "abebe bikila", + "ababa bikila" + ], + "count": 2 + }, + { + "answers": [ + "ጥሩነሽ ዲባባ" + ], + "en_answers": [ + "tirunesh dibaba" + ], + "count": 1 + }, + { + "answers": [ + "ደራርቱ ቱሉ", + "ደራርቱ" + ], + "en_answers": [ + "deraretu tulu" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-12": { + "question": "ኢትዮጵያ በአለም አቀፍ ውድድሮች ውስጥ በምን ስፖርት እጅግ ሰኬታም ናት?", + "en_question": "In which sport has your country been most successful in international competitions?", + "annotations": [ + { + "answers": [ + "ሩጫ", + "በአትሌቲክስ", + "በሩጫ" + ], + "en_answers": [ + "athletics", + "run", + "running" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-15": { + "question": "በኢትዮጵያ በክረምት የተወደደ ስፖርት ምንድነው?", + "en_question": "What is the most popular winter sport in your country?", + "annotations": [ + { + "answers": [ + "ሩጫ" + ], + "en_answers": [ + "athletics", + "run", + "running" + ], + "count": 3 + }, + { + "answers": [ + "ጅም" + ], + "en_answers": [ + "gym", + "gymnastics" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Th-en-19": { + "question": "በኢትዮጵያ ምን ከተማ ወይም ክልል ለአምራች ኢንዱስትሪ ታውቃለች?", + "en_question": "What is a city or region in your country known for manufacturing industry?", + "annotations": [ + { + "answers": [ + "ኮምቦልቻ" + ], + "en_answers": [ + "combolcha" + ], + "count": 2 + }, + { + "answers": [ + "ኦሮሚያ" + ], + "en_answers": [ + "oromia", + "oromia region" + ], + "count": 2 + }, + { + "answers": [ + "ድሬዳዋ", + "ድሬ" + ], + "en_answers": [ + "dire dawa" + ], + "count": 1 + }, + { + "answers": [ + "ሀዋሳ" + ], + "en_answers": [ + "hawassa" + ], + "count": 1 + }, + { + "answers": [ + "አማራ" + ], + "en_answers": [ + "amhara", + "amhara region" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-21": { + "question": "በኢትዮጵያ ለሠራተኞች ተለይቶ የሚቀርብ እና እጅግ ዋና የሆነ ተጨማሪ አበል ምንድነው?", + "en_question": "What is regarded as the most important perk typically offered to employees in your country?", + "annotations": [ + { + "answers": [ + "የቤት አበል" + ], + "en_answers": [ + "housing allowance" + ], + "count": 2 + }, + { + "answers": [ + "ውሎ አበል" + ], + "en_answers": [ + "allowance" + ], + "count": 1 + }, + { + "answers": [ + "ቦነስ", + "ድጎማ" + ], + "en_answers": [ + "bonus" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-22": { + "question": "ለኢትዮጵያ እጅግ አስቸጋሪ የኢኮኖሚ ድቀት ወቅት መቸ ነበር?", + "en_question": "What was the most catastrophic economic period for your country?", + "annotations": [ + { + "answers": [ + "የኮሮና ወቅት" + ], + "en_answers": [ + "corona time" + ], + "count": 2 + }, + { + "answers": [ + "በትግራይ ጦርነት ወቅት" + ], + "en_answers": [ + "during the tigray conflict" + ], + "count": 2 + }, + { + "answers": [ + "የ1977 ዓ.ም ድርቅ", + "1977 ድርቅ" + ], + "en_answers": [ + "drought of 1977 ec" + ], + "count": 1 + }, + { + "answers": [ + "አዎ" + ], + "en_answers": [ + "yes" + ], + "count": 1 + }, + { + "answers": [ + "ክረምት" + ], + "en_answers": [ + "summer" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-24": { + "question": "በኢትዮጵያ ውስጥ ለቴክ ሠራተኞች እና ለእነሆም እንቅስቃሴዎች ዋና መሀል የሆነው ክልል ማንኛው ነው?", + "en_question": "What region in your country is a major hub for tech workers and start ups?", + "annotations": [ + { + "answers": [ + "አዲስ አበባ" + ], + "en_answers": [ + "addis ababa" + ], + "count": 3 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "Th-en-27": { + "question": "በኢትዮጵያ እጅግ አስፈላጊ የሚሆን ኢንዱስትሪ ምንድነው?", + "en_question": "What is the most important industry in your country?", + "annotations": [ + { + "answers": [ + "የግብርና ኢንዱስትሪ" + ], + "en_answers": [ + "agricultural industry" + ], + "count": 2 + }, + { + "answers": [ + "ከባድ ኢንደስትሪ" + ], + "en_answers": [ + "industrys" + ], + "count": 1 + }, + { + "answers": [ + "ንግድ" + ], + "en_answers": [ + "trade", + "commerce" + ], + "count": 1 + }, + { + "answers": [ + "የልብስ" + ], + "en_answers": [ + "textile", + "clothing" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-35": { + "question": "በኢትዮጵያ በቤተሰብ አባላት ከተለያዩ የቀኑ ምግቦች መካከል ባብዛኛው አብረው የሚመገቡት የትኛው ነው? (ምሳሌ፣ እራት፣ ምሳ፣ እራት)", + "en_question": "Which one of the daily meals is commonly shared with family members in your country? (e.g., breakfast, lunch, dinner)", + "annotations": [ + { + "answers": [ + "እራት" + ], + "en_answers": [ + "dinner" + ], + "count": 3 + }, + { + "answers": [ + "እንጀራ" + ], + "en_answers": [ + "injera" + ], + "count": 2 + }, + { + "answers": [ + "ቁርስ" + ], + "en_answers": [ + "breakfast" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-36": { + "question": "በኢትዮጵያ በሳምንት መጨረሻ ቤተሰብ ከልጅ ጋር ለመስራት የታወቀ እንቅስቃሴ ምንድን ነው?", + "en_question": "What is a popular family activity with a child to do on weekends in your country?", + "annotations": [ + { + "answers": [ + "ሩጫ", + "እሩጫ" + ], + "en_answers": [ + "athletics", + "run", + "running" + ], + "count": 2 + }, + { + "answers": [ + "ልብስ ማጠብ" + ], + "en_answers": [ + "washing clothes" + ], + "count": 1 + }, + { + "answers": [ + "ቤት ማጽዳት", + "ቤት ማትጥዳት" + ], + "en_answers": [ + "house cleaning" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Th-en-37": { + "question": "በኢትዮጵያ ልጆች ከወላጆቻቸው ከጥገኝነት በስንት እድሜአቸው ይወጣሉ? (በአረብኛ ቁጥር ብቻ ምላሽ ይስጡ (ምሳሌ 12)።)", + "en_question": "At what age do children typically become independent from their parents in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 2 + }, + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 2 + }, + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-38": { + "question": "በኢትዮጵያ ቤተሰብ የሚያከብሩት በአስፈላጊ በዓል የትኛው ነው?", + "en_question": "What is the most important family holiday in your country?", + "annotations": [ + { + "answers": [ + "ፋሲካ", + "ትንሳየ" + ], + "en_answers": [ + "easter" + ], + "count": 2 + }, + { + "answers": [ + "ገና" + ], + "en_answers": [ + "gena", + "x-mass", + "christmas", + "xmas" + ], + "count": 2 + }, + { + "answers": [ + "የልደት በአሎች" + ], + "en_answers": [ + "birthdays" + ], + "count": 1 + }, + { + "answers": [ + "እንቁጣጣሽ", + "አዲስ አመት", + "ዘመን መለወጫ" + ], + "en_answers": [ + "new year" + ], + "count": 1 + }, + { + "answers": [ + "መንፈሳዊ በአላት" + ], + "en_answers": [ + "spiritual holidays" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-39": { + "question": "በኢትዮጵያ ታዋቂ የቤተሰብ ጨዋታ ምንድነው?", + "en_question": "What is a popular family game in your country?", + "annotations": [], + "idks": { + "no-answer": 3, + "idk": 2, + "not-applicable": 0 + } + }, + "Th-en-41": { + "question": "በኢትዮጵያ አንድ ባል እና ሚስት በአማካይ የመጀመሪያ ልጅ የሚዎልዱ በስንት አመታቸው ነው? (በአረቢክ ቁጥሮች (ምሳሌ 20) ብቻ ይምረጡ።)", + "en_question": "What is the average age for couples to have their first child in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "20", + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + }, + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 1 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-43": { + "question": "በኢትዮጵያ አንድ ቤተሰብ ውስጥ ስንት የመኪና ብዛት ይኖራል? (በአረቢክ ቁጥር (ምሳሌ 12) ብቻ ይምላሉ።)", + "en_question": "How many cars are owned by a typical family in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-44": { + "question": "በሳምንቱ መጨረሻ በቤተሰቦች ምግብ ላይ በተለይ የተወደደ የኢትዮጵያ ምግብ ምንድን ነው?", + "en_question": "What is your country's most popular food for family meals on weekends?", + "annotations": [ + { + "answers": [ + "ጥብስ" + ], + "en_answers": [ + "tibs", + "tebs", + "t’ibs", + "tibbs", + "roasted meat", + "roast meat" + ], + "count": 3 + }, + { + "answers": [ + "ዶሮ ወጥ" + ], + "en_answers": [ + "chicken stew", + "doro wot" + ], + "count": 1 + }, + { + "answers": [ + "ስጋ" + ], + "en_answers": [ + "meat" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Th-en-45": { + "question": "በኢትዮጵያ በሳምንት ቀናት ምሽት ቤተሰቦች የሚወዱት እንቅስቃሴ ምንድን ነው?", + "en_question": "What is the most popular weekday evening family activity in your country?", + "annotations": [ + { + "answers": [ + "ውዝዋዜ", + "ባህላዊ ጭፈራዎች", + "ጭፈራ" + ], + "en_answers": [ + "dance", + "dancing", + "traditional dance" + ], + "count": 4 + }, + { + "answers": [ + "የእግር ጉዞ" + ], + "en_answers": [ + "walk" + ], + "count": 1 + }, + { + "answers": [ + "ዳንስ" + ], + "en_answers": [ + "dance", + "dancing" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-48": { + "question": "በኢትዮጵያ በምርመራና በፈተናዎች ላይ ከፍተኛ ውጤት ያሳዩ ተማሪዎች የተሰጣቸው ከፍተኛ ደረጃ ምንድነው?", + "en_question": "What is the highest grade given to top-achieving high school students on assignments and exams in your country?", + "annotations": [ + { + "answers": [ + "የውጭ የትምህርት እድል" + ], + "en_answers": [ + "scholarship" + ], + "count": 2 + }, + { + "answers": [ + "ሽልማት", + "ስጦታ" + ], + "en_answers": [ + "award", + "gift" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-49": { + "question": "በኢትዮጵያ ለከፍለ ትምህርት ተማሪዎች እጅግ አስፈላጊ የሚቆጠር ፈተና ምንድን ነው?", + "en_question": "What is considered the most important exam for high school students in your country?", + "annotations": [ + { + "answers": [ + "የሒሳብ ፈተና" + ], + "en_answers": [ + "math exam", + "mathmatches exam" + ], + "count": 2 + }, + { + "answers": [ + "የፊዚክስ ፈተና" + ], + "en_answers": [ + "physics exam" + ], + "count": 2 + }, + { + "answers": [ + "ማጠቃለያ ፈተና" + ], + "en_answers": [ + "entrance exam" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-51": { + "question": "በኢትዮጵያ በተማሪዎች ላይ እጅግ አስፈላጊ የሚቆጠር ምርምር ማንኛው ነው?", + "en_question": "Which subject is considered the most important for students in your country?", + "annotations": [ + { + "answers": [ + "የቴክኖሎጂ ምርምር" + ], + "en_answers": [ + "technology research" + ], + "count": 2 + }, + { + "answers": [ + "ቴሲስ", + "ጥናታዊ ፅሁፍ" + ], + "en_answers": [ + "thesis" + ], + "count": 1 + }, + { + "answers": [ + "ሲኒየር ኢሴይ" + ], + "en_answers": [ + "senior essay" + ], + "count": 1 + }, + { + "answers": [ + "ስፔስ ሳይንስ" + ], + "en_answers": [ + "space science" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Th-en-53": { + "question": "በኢትዮጵያ ት/ቤቶች ውስጥ ታዋቂው ከመደበኛ ትምህርት ውጪ ማኅበራዊ ክስተት ምንድን ነው?", + "en_question": "What is the most popular extracurricular social event at schools in your country?", + "annotations": [ + { + "answers": [ + "ፓርቲ", + "ድግስ" + ], + "en_answers": [ + "party" + ], + "count": 2 + }, + { + "answers": [ + "የግል ኮሌጅ" + ], + "en_answers": [ + "private college" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-58": { + "question": "በኢትዮጵያ ዩኒቨርስቲ በመግባት በፊት የተማሩት ከፍተኛ የሂሳብ ርዕስ ምንድን ነው?", + "en_question": "What is the most advanced math subject learned before university in your country?", + "annotations": [ + { + "answers": [ + "ኳልኩለስ", + "ካልኩለስ" + ], + "en_answers": [ + "calculus" + ], + "count": 3 + }, + { + "answers": [ + "አልጀብራ" + ], + "en_answers": [ + "algebra" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Tmp-ar-01": { + "question": "በኢትዮጵያ ዩኒቨርስቲ ተማሪዎች ለማጠቃላያ ፈተናቸው ለማጥናት በተለይ የሚሄዱበት ስፍራ የት ነው?", + "en_question": "Where do university students in your country usually go to study for their final exams?", + "annotations": [ + { + "answers": [ + "ቤተ-መጻሐፍት", + "ላይብረሪ", + "ቤተ-መጻህፍት", + "ቤተ መጽሀፍት", + "ላይብራሪ" + ], + "en_answers": [ + "library" + ], + "count": 5 + }, + { + "answers": [ + "ፓርክ" + ], + "en_answers": [ + "park" + ], + "count": 2 + }, + { + "answers": [ + "ስፔስ" + ], + "en_answers": [ + "space" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-02": { + "question": "በኢትዮጵያ ሰዎች በተለይ ወደ ዩኒቨርስቲ ለመሄድ የሚጠቀሙበት የህዝብ ትራንስፖርት ምንድነው?", + "en_question": "What is a common public transport that people use to go to university in your country?", + "annotations": [ + { + "answers": [ + "አውቶብስ", + "ባስ", + "አውቶቡስ" + ], + "en_answers": [ + "bus" + ], + "count": 3 + }, + { + "answers": [ + "ታክሲ" + ], + "en_answers": [ + "taxi" + ], + "count": 1 + }, + { + "answers": [ + "መኪና" + ], + "en_answers": [ + "car" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-04": { + "question": "በኢትዮጵያ የመጀመሪያ ደረጃ ተማሪዎች ከትምህርት ቤት በኋላ በተለይ ምን ያደርጋሉ?", + "en_question": "What do elementary students in your country usually do after school?", + "annotations": [ + { + "answers": [ + "ይጫወታሉ" + ], + "en_answers": [ + "they will play", + "play" + ], + "count": 4 + }, + { + "answers": [ + "ያነባሉ", + "ያጠናሉ" + ], + "en_answers": [ + "they will read", + "read" + ], + "count": 2 + }, + { + "answers": [ + "ኳስ ይጫውታሉ" + ], + "en_answers": [ + "they will play football", + "they will play soccer", + "play football", + "play soccer" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + } +} \ No newline at end of file diff --git a/data/annotations/Greece_data.json b/data/annotations/Greece_data.json new file mode 100644 index 0000000000000000000000000000000000000000..8826ad919e6a1fe8be79b3975cc8e09b0765c34e --- /dev/null +++ b/data/annotations/Greece_data.json @@ -0,0 +1,23256 @@ +{ + "Al-en-01": { + "question": "Ποιο είναι ένα συνηθισμένο σνακ για παιδιά προσχολικής ηλικίας στην Ελλάδα;", + "en_question": "What is a common snack for preschool kids in your country?", + "annotations": [ + { + "answers": [ + "τοστ" + ], + "en_answers": [ + "toast" + ], + "count": 2 + }, + { + "answers": [ + "κουλούρι" + ], + "en_answers": [ + "bagel" + ], + "count": 1 + }, + { + "answers": [ + "φρούτο" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + }, + { + "answers": [ + "μπισκότα" + ], + "en_answers": [ + "biscuits" + ], + "count": 1 + }, + { + "answers": [ + "σοκολάτα" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-02": { + "question": "Ποιο είναι ένα δημοφιλές φαγητό που συνοδεύει τη μπύρα στην Ελλάδα;", + "en_question": "What is a popular food to go with beer in your country?", + "annotations": [ + { + "answers": [ + "σουβλάκι", + "σουβλακι" + ], + "en_answers": [ + "souvlaki" + ], + "count": 2 + }, + { + "answers": [ + "λουκάνικο" + ], + "en_answers": [ + "sausage" + ], + "count": 1 + }, + { + "answers": [ + "πατατάκια" + ], + "en_answers": [ + "potato chips" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Al-en-04": { + "question": "Ποιο είναι το πιο δημοφιλές φρούτο στην Ελλάδα;", + "en_question": "What is the most popular fruit in your country?", + "annotations": [ + { + "answers": [ + "καρπούζι" + ], + "en_answers": [ + "watermelon" + ], + "count": 2 + }, + { + "answers": [ + "μήλο" + ], + "en_answers": [ + "apple" + ], + "count": 2 + }, + { + "answers": [ + "πεπόνι" + ], + "en_answers": [ + "melon" + ], + "count": 1 + }, + { + "answers": [ + "μανταρίνι" + ], + "en_answers": [ + "mandarin" + ], + "count": 1 + }, + { + "answers": [ + "πορτοκάλι" + ], + "en_answers": [ + "orange" + ], + "count": 1 + }, + { + "answers": [ + "μπανάνα" + ], + "en_answers": [ + "banana" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-06": { + "question": "Ποιο είναι ένα συνηθισμένο φαγητό στα σχολεία στην Ελλάδα;", + "en_question": "What is a common school cafeteria food in your country?", + "annotations": [ + { + "answers": [ + "σάντουιτς" + ], + "en_answers": [ + "sandwich" + ], + "count": 2 + }, + { + "answers": [ + "τυρόπιτα", + "τυροπιτα" + ], + "en_answers": [ + "cheese pie" + ], + "count": 1 + }, + { + "answers": [ + "κρουασάν", + "κρουασαν" + ], + "en_answers": [ + "croissant" + ], + "count": 1 + }, + { + "answers": [ + "κουλούρι" + ], + "en_answers": [ + "bagel" + ], + "count": 1 + }, + { + "answers": [ + "τοστ" + ], + "en_answers": [ + "toast" + ], + "count": 1 + }, + { + "answers": [ + "σφολιάτες" + ], + "en_answers": [ + "puff pastries" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-08": { + "question": "Ποια είναι τα πιο συνηθισμένα σνακ που καταναλώνονται στα εμπορικά κέντρα στην Ελλάδα;", + "en_question": "What are the most commonly eaten snacks at shopping malls in your country?", + "annotations": [ + { + "answers": [ + "σουβλάκι" + ], + "en_answers": [ + "souvlaki" + ], + "count": 1 + }, + { + "answers": [ + "πίτσα" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + }, + { + "answers": [ + "κρουασάν", + "κρουασαν" + ], + "en_answers": [ + "croissant" + ], + "count": 1 + }, + { + "answers": [ + "ποπκόρν", + "ποπκορν" + ], + "en_answers": [ + "popcorn" + ], + "count": 1 + }, + { + "answers": [ + "πατατάκια" + ], + "en_answers": [ + "potato chips" + ], + "count": 1 + }, + { + "answers": [ + "πατάτες" + ], + "en_answers": [ + "potatoes" + ], + "count": 1 + }, + { + "answers": [ + "μπέργκερ", + "μπεργκερ", + "χάμπουργκερ" + ], + "en_answers": [ + "burger" + ], + "count": 1 + }, + { + "answers": [ + "κοτομπουκιές", + "κοτομπουκιες" + ], + "en_answers": [ + "chicken nuggets" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-09": { + "question": "Ποιο είναι ένα δημοφιλές σνακ σε λούνα παρκ στην Ελλάδα;", + "en_question": "What is a popular snack at an amusement park in your country?", + "annotations": [ + { + "answers": [ + "μαλλί της γριάς", + "μαλλί της γριας" + ], + "en_answers": [ + "cotton candy" + ], + "count": 3 + }, + { + "answers": [ + "club sandwich" + ], + "en_answers": [ + "club sandwich" + ], + "count": 1 + }, + { + "answers": [ + "nachos" + ], + "en_answers": [ + "nachos" + ], + "count": 1 + }, + { + "answers": [ + "λουκουμάδες" + ], + "en_answers": [ + "donuts" + ], + "count": 1 + }, + { + "answers": [ + "ζαχαρωτά", + "ζαχαρωτα" + ], + "en_answers": [ + "sweets" + ], + "count": 1 + }, + { + "answers": [ + "χοτ ντογκ" + ], + "en_answers": [ + "hot dog" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-16": { + "question": "Σε ποια ηλικία αρχίζουν τα παιδιά το νηπιαγωγείο στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 4).)", + "en_question": "At what age do kids start preschool in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 4 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-17": { + "question": "Ποιο είναι ένα δημοφιλές απογευματινό άθλημα για τα δημοτικά σχολεία στην Ελλάδα;", + "en_question": "What is a popular afterschool sport for elementary schools in your country?", + "annotations": [ + { + "answers": [ + "ποδόσφαιρο", + "ποδοσφαιρο" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "μπάσκετ", + "μπασκετ" + ], + "en_answers": [ + "basketball" + ], + "count": 3 + }, + { + "answers": [ + "βόλεϊ", + "βόλεϋ" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Al-en-18": { + "question": "Για ποιο μάθημα παίρνουν ιδιαίτερα μαθήματα οι μαθητές δημοτικού στην Ελλάδα;", + "en_question": "For which subject do elementary students get private education in your country?", + "annotations": [ + { + "answers": [ + "μαθηματικά", + "μαθηματικα" + ], + "en_answers": [ + "mathematics" + ], + "count": 4 + }, + { + "answers": [ + "γλώσσα", + "νεοελληνική γλώσσα", + "ελληνική γλώσσα", + "έκθεση" + ], + "en_answers": [ + "language" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-19": { + "question": "Ποια είναι μια δημοφιλής δεύτερη γλώσσα για τους μαθητές λυκείου στην Ελλάδα;", + "en_question": "What is a popular second language for high school students in your country?", + "annotations": [ + { + "answers": [ + "αγγλικά", + "αγγλικα" + ], + "en_answers": [ + "english" + ], + "count": 5 + }, + { + "answers": [ + "γαλλικά", + "γαλλικα" + ], + "en_answers": [ + "french" + ], + "count": 4 + }, + { + "answers": [ + "γερμανικά", + "γερμανικ" + ], + "en_answers": [ + "german" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-21": { + "question": "Ποιο μάθημα είναι το πιο σημαντικό για την εκπαίδευση των προικισμένων παιδιών στην Ελλάδα;", + "en_question": "Which subject is the most important for gifted education in your country?", + "annotations": [ + { + "answers": [ + "μαθηματικά", + "μαθηματικα" + ], + "en_answers": [ + "mathematics" + ], + "count": 5 + }, + { + "answers": [ + "ελληνική γλώσσα" + ], + "en_answers": [ + "greek language" + ], + "count": 1 + }, + { + "answers": [ + "φυσική" + ], + "en_answers": [ + "physics" + ], + "count": 1 + }, + { + "answers": [ + "τεχνολογία" + ], + "en_answers": [ + "technology" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-32": { + "question": "Ποιο είναι το κυρίως πιάτο για την Ημέρα των Ευχαριστιών στην Ελλάδα;", + "en_question": "What is the main dish for Thanksgiving in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-33": { + "question": "Τι κάνουν οι άνθρωποι για να γιορτάσουν το Halloween στην Ελλάδα;", + "en_question": "What do people do to celebrate Halloween in your country?", + "annotations": [ + { + "answers": [ + "ντύνονται σαν τα καρναβάλια." + ], + "en_answers": [ + "they dress like carnival figures." + ], + "count": 1 + }, + { + "answers": [ + "τιποτα" + ], + "en_answers": [ + "nothing" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-34": { + "question": "Τι κάνουν οι άνθρωποι για να γιορτάσουν την Πρωτοχρονιά στην Ελλάδα;", + "en_question": "What do people do to celebrate New Year's Day in your country?", + "annotations": [ + { + "answers": [ + "κόβουν βασιλόπιτα.", + "βασιλόπιτα" + ], + "en_answers": [ + "cutting vasilopita.", + "vasilopita" + ], + "count": 2 + }, + { + "answers": [ + "οικογενειακό γευμα", + "τραπέζι", + "τραπέζι & νυχτερινή εξοδος" + ], + "en_answers": [ + "family meal", + "dinner" + ], + "count": 2 + }, + { + "answers": [ + "μπουζούκια", + "μπουζουκια" + ], + "en_answers": [ + "bouzoukia" + ], + "count": 1 + }, + { + "answers": [ + "κλαμπιγκ" + ], + "en_answers": [ + "clubbing" + ], + "count": 1 + }, + { + "answers": [ + "ρεβεγιόν" + ], + "en_answers": [ + "new year's eve party" + ], + "count": 1 + }, + { + "answers": [ + "νυχτερινή εξοδος", + "τραπέζι & νυχτερινή εξοδος" + ], + "en_answers": [ + "night out" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-35": { + "question": "Τι κάνουν οι άνθρωποι για να γιορτάσουν τα Χριστούγεννα στην Ελλάδα;", + "en_question": "What do people do to celebrate Christmas in your country?", + "annotations": [ + { + "answers": [ + "οικογενειακό τραπέζι", + "τραπέζι με την οικογένεια" + ], + "en_answers": [ + "meal with the family" + ], + "count": 3 + }, + { + "answers": [ + "ταξιδεύουν στο εξωτερικό" + ], + "en_answers": [ + "travel abroad" + ], + "count": 1 + }, + { + "answers": [ + "δείπνο", + "δειπνο", + "βραδινό γεύμα" + ], + "en_answers": [ + "dinner" + ], + "count": 1 + }, + { + "answers": [ + "εκδηλώσεις", + "εκδηλωσεις" + ], + "en_answers": [ + "events" + ], + "count": 1 + }, + { + "answers": [ + "μουσικά φεστιβάλ", + "μουσικα φεστιβαλ" + ], + "en_answers": [ + "music festivals" + ], + "count": 1 + }, + { + "answers": [ + "περνούν χρόνο με την οικογένειά τους ή τους φίλους τους" + ], + "en_answers": [ + "spend time with their family or their friends" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-36": { + "question": "Ποιο φαγητό συνδέεται με το Halloween στην Ελλάδα;", + "en_question": "What food is associated with Halloween in your country?", + "annotations": [ + { + "answers": [ + "κανένα" + ], + "en_answers": [ + "none" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-37": { + "question": "Ποιο φαγητό συνδέεται με τα Χριστούγεννα στην Ελλάδα;", + "en_question": "What food is associated with Christmas in your country?", + "annotations": [ + { + "answers": [ + "μελομακάρονα", + "μελομακαρονα" + ], + "en_answers": [ + "honey cookies" + ], + "count": 3 + }, + { + "answers": [ + "κουραμπιέδες", + "κουραμπιεδες" + ], + "en_answers": [ + "kourabiedes" + ], + "count": 3 + }, + { + "answers": [ + "γαλοπούλα", + "γαλοπουλα" + ], + "en_answers": [ + "turkey" + ], + "count": 2 + }, + { + "answers": [ + "γεμιστό κοτόπουλο" + ], + "en_answers": [ + "stuffed chicken" + ], + "count": 1 + }, + { + "answers": [ + "χοιρινό" + ], + "en_answers": [ + "pork" + ], + "count": 1 + }, + { + "answers": [ + "πατάτες φούρνου" + ], + "en_answers": [ + "oven potatoes" + ], + "count": 1 + }, + { + "answers": [ + "κοτόπουλο" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-38": { + "question": "Τι φαγητό συνδέεται με την ημέρα του Αγίου Βαλεντίνου στην Ελλάδα;", + "en_question": "What food is associated with Valentine's day in your country?", + "annotations": [ + { + "answers": [ + "σοκολάτα", + "σοκολατα" + ], + "en_answers": [ + "chocolate" + ], + "count": 3 + }, + { + "answers": [ + "ζυμαρικά" + ], + "en_answers": [ + "pasta" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-39": { + "question": "Τι τρώνε οι άνθρωποι στα γενέθλιά τους στην Ελλάδα;", + "en_question": "What do people eat on their birthday in your country?", + "annotations": [ + { + "answers": [ + "τούρτα", + "τουρτα" + ], + "en_answers": [ + "cake" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-40": { + "question": "Ποιο είναι ένα δημοφιλές υπαίθριο μέρος για τις οικογένειες να διασκεδάζουν με μικρά παιδιά στην Ελλάδα;", + "en_question": "What is a popular outdoor place for families to have fun with little kids in your country?", + "annotations": [ + { + "answers": [ + "παιδική χαρά", + "παιδικές χαρές" + ], + "en_answers": [ + "playground", + "playgrounds" + ], + "count": 3 + }, + { + "answers": [ + "εθνικός κήπος" + ], + "en_answers": [ + "national garden" + ], + "count": 1 + }, + { + "answers": [ + "πάρκο" + ], + "en_answers": [ + "park" + ], + "count": 1 + }, + { + "answers": [ + "πάρκο νιάρχου", + "πάρκο σταύρος νιάρχος" + ], + "en_answers": [ + "niarchos park" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-43": { + "question": "Ποια είναι μια δημοφιλής δραστηριότητα εσωτερικού χώρου για οικογένειες στην Ελλάδα;", + "en_question": "What is a popular indoor activity for families in your country?", + "annotations": [ + { + "answers": [ + "επιτραπέζια παιχνίδια" + ], + "en_answers": [ + "board games" + ], + "count": 3 + }, + { + "answers": [ + "τάβλι" + ], + "en_answers": [ + "backgammon" + ], + "count": 2 + }, + { + "answers": [ + "ταινίες" + ], + "en_answers": [ + "movies" + ], + "count": 1 + }, + { + "answers": [ + "χαρτιά" + ], + "en_answers": [ + "card games" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "An-ar-02": { + "question": "Πού τρώνε μεσημεριανό οι φοιτητές του πανεπιστημίου στην Ελλάδα;", + "en_question": "Where do university students have lunch in your country?", + "annotations": [ + { + "answers": [ + "λέσχη", + "στο εστιατόριο της σχολής", + "λεσχη" + ], + "en_answers": [ + "school's restaurant", + "at the school's restaurant" + ], + "count": 4 + }, + { + "answers": [ + "σπίτι", + "σπιτι" + ], + "en_answers": [ + "house" + ], + "count": 2 + }, + { + "answers": [ + "καντίνα" + ], + "en_answers": [ + "canteen" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "An-ar-03": { + "question": "Σε ποιον μήνα συνήθως προγραμματίζονται οι τελικές εξετάσεις στα λύκεια στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (1~12).)", + "en_question": "Which month is the final exam term usually scheduled at high schools in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 5 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-08": { + "question": "Πόσες ώρες την ημέρα συνήθως περνούν οι μαθητές στο λύκειο στην Ελλάδα; (Χρησιμοποιείστε ακέραιους αραβικούς αριθμούς (0~24), χωρίς δεκαδικά ψηφία.)", + "en_question": "How many hours a day do students in your country usually spend at high school? (Provide Arabic numerals in integers (0~24), without any decimal points.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 4 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-09": { + "question": "Πόσες γλώσσες μελετούν οι μαθητές στο λύκειο στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 5).)", + "en_question": "How many languages do students study at high school in your country? (Provide Arabic numerals (e.g., 5) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 3 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-34": { + "question": "Ποιο είναι το πιο δημοφιλές ομαδικό άθλημα που παίζεται στα σχολεία στην Ελλάδα;", + "en_question": "What is the most popular sport played in a team at school in your country?", + "annotations": [ + { + "answers": [ + "ποδόσφαιρο", + "ποδοσφαιρο" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "βόλεϊ", + "βολλευ", + "βόλλεϋ" + ], + "en_answers": [ + "volleyball" + ], + "count": 2 + }, + { + "answers": [ + "μπάσκετ" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-35": { + "question": "Ποιος είναι ο πιο δημοφιλής αθλητικός σχολιαστής στην Ελλάδα;", + "en_question": "Who is the most popular sport commentator in your country?", + "annotations": [ + { + "answers": [ + "γιώργος θαναηλάκης", + "σωτηρακόπουλος", + "σωτηρακοπουλος" + ], + "en_answers": [ + "george thanailakis", + "sotirakopoulos" + ], + "count": 3 + }, + { + "answers": [ + "κώστας ραπτόπουλος" + ], + "en_answers": [ + "kostas raptopoulos" + ], + "count": 1 + }, + { + "answers": [ + "διακογιάννης γιαννής" + ], + "en_answers": [ + "diakogiannis giannis" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-36": { + "question": "Ποια είναι η πιο δημοφιλής αθλητική ομάδα στην Ελλάδα;", + "en_question": "What is the most popular sport team in your country?", + "annotations": [ + { + "answers": [ + "ολυμπιακός", + "ολυμπιακος" + ], + "en_answers": [ + "olympiacos" + ], + "count": 4 + }, + { + "answers": [ + "αεκ" + ], + "en_answers": [ + "aek" + ], + "count": 2 + }, + { + "answers": [ + "παναθηναικός", + "παναθηναικος" + ], + "en_answers": [ + "panathinaikos" + ], + "count": 2 + }, + { + "answers": [ + "παοκ" + ], + "en_answers": [ + "paok" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-43": { + "question": "Ποια είναι τα συνηθισμένα μέρη ή χώροι όπου τα άτομα στην Ελλάδα συνήθως συγκεντρώνονται για να παρακολουθήσουν αθλητικές μεταδόσεις;", + "en_question": "What are the common places or venues where individuals in your country usually gather to watch sports broadcasts?", + "annotations": [ + { + "answers": [ + "καφετέριες", + "καφετεριες" + ], + "en_answers": [ + "cafes" + ], + "count": 3 + }, + { + "answers": [ + "σπίτια" + ], + "en_answers": [ + "houses" + ], + "count": 1 + }, + { + "answers": [ + "καφενείο" + ], + "en_answers": [ + "coffee shop" + ], + "count": 1 + }, + { + "answers": [ + "παλέ ντε σπορ", + "παλαι ντε σπορ θεσσαλονίκη", + "αλεξάνδρειο μέλαθρο", + "nick galis hall", + "αλεξάνδρειο" + ], + "en_answers": [ + "nick galis hall" + ], + "count": 1 + }, + { + "answers": [ + "γήπεδο τούμπας", + "γήπεδο παοκ τούμπα" + ], + "en_answers": [ + "toumba stadium" + ], + "count": 1 + }, + { + "answers": [ + "ολυμπιακό αθλητικό κέντρο αθηνών", + "οακα" + ], + "en_answers": [ + "olympic athletic center of athens" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-05": { + "question": "Πόσα γεύματα την ημέρα συνήθως έχουν οι άνθρωποι από την Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς, π.χ., 5.)", + "en_question": "How many meals per day do people from your country usually have? (Provide Arabic numerals (e.g., 5) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 4 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-06": { + "question": "Ποιο είναι το πιο σημαντικό γεύμα της ημέρας για τους Έλληνες;", + "en_question": "Which is the most important meal of the day to people from your country?", + "annotations": [ + { + "answers": [ + "μεσημεριανό", + "το μεσημεριανό", + "μεσημεριανο" + ], + "en_answers": [ + "lunch" + ], + "count": 5 + }, + { + "answers": [ + "πρωινό" + ], + "en_answers": [ + "breakfast" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-08": { + "question": "Ποιο είναι το πιο συνηθισμένο συστατικό που χρησιμοποιείται στη διατροφή της Ελλάδας;", + "en_question": "What is the most common ingredient used in your country's diet?", + "annotations": [ + { + "answers": [ + "ελαιόλαδο", + "ελαιολαδο" + ], + "en_answers": [ + "olive oil" + ], + "count": 4 + }, + { + "answers": [ + "φέτα", + "τυρί φέτα" + ], + "en_answers": [ + "feta" + ], + "count": 1 + }, + { + "answers": [ + "λάδι" + ], + "en_answers": [ + "oil" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-09": { + "question": "Τι συνήθως τρώνε οι άνθρωποι από την Ελλάδα για επιδόρπιο;", + "en_question": "What do people from your country usually eat for dessert?", + "annotations": [ + { + "answers": [ + "σοκολάτα", + "σοκολατα" + ], + "en_answers": [ + "chocolate" + ], + "count": 2 + }, + { + "answers": [ + "γλυκό του κουταλιού" + ], + "en_answers": [ + "spoon sweet" + ], + "count": 1 + }, + { + "answers": [ + "φρούτο", + "φρουτο" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + }, + { + "answers": [ + "πάστες" + ], + "en_answers": [ + "pastries" + ], + "count": 1 + }, + { + "answers": [ + "γαλακτομπούρεκο", + "γαλακτομπουρεκο" + ], + "en_answers": [ + "galaktoboureko" + ], + "count": 1 + }, + { + "answers": [ + "μπακλαβά", + "μπακλαβα" + ], + "en_answers": [ + "baklava" + ], + "count": 1 + }, + { + "answers": [ + "κέικ" + ], + "en_answers": [ + "cake" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-11": { + "question": "Ποια μέρα της εβδομάδας συνήθως οργανώνουν οι άνθρωποι ένα οικογενειακό γεύμα στην Ελλάδα;", + "en_question": "Which day of the week do people usually organize a family meal in your country?", + "annotations": [ + { + "answers": [ + "κυριακή", + "κυριακη", + "sunday" + ], + "en_answers": [ + "sunday" + ], + "count": 5 + }, + { + "answers": [ + "σάββατο", + "σαββατο", + "saturday" + ], + "en_answers": [ + "saturday" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-14": { + "question": "Ποιο είναι το πιο δημοφιλές ζεστό ποτό στην Ελλάδα;", + "en_question": "Which is the most popular hot drink in your country?", + "annotations": [ + { + "answers": [ + "καφές" + ], + "en_answers": [ + "coffee" + ], + "count": 2 + }, + { + "answers": [ + "ρακόμελο", + "ρακομελο" + ], + "en_answers": [ + "rakomelo" + ], + "count": 2 + }, + { + "answers": [ + "ζεστό κρασί" + ], + "en_answers": [ + "hot wine" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-19": { + "question": "Τι συνήθως πίνουν οι νέοι από την Ελλάδα στα νυχτερινά κέντρα;", + "en_question": "What do young people from your country usually drink at the night club?", + "annotations": [ + { + "answers": [ + "βότκα", + "ποτά (βοτκα", + "βοτκα" + ], + "en_answers": [ + "vodka" + ], + "count": 3 + }, + { + "answers": [ + "τζιν" + ], + "en_answers": [ + "gin" + ], + "count": 2 + }, + { + "answers": [ + "μπύρα", + "μπύρες" + ], + "en_answers": [ + "beer", + "beers" + ], + "count": 2 + }, + { + "answers": [ + "ποτά", + "ποτά (βοτκα", + "αλκοολούχα ποτά" + ], + "en_answers": [ + "drinks", + "alcoholic beverages" + ], + "count": 2 + }, + { + "answers": [ + "ουίσκι" + ], + "en_answers": [ + "whiskey" + ], + "count": 1 + }, + { + "answers": [ + "κοκτέιλ" + ], + "en_answers": [ + "cocktail" + ], + "count": 1 + }, + { + "answers": [ + "ρούμι", + "ρούμι κλπ)" + ], + "en_answers": [ + "rum etc)" + ], + "count": 1 + }, + { + "answers": [ + "κρασιά" + ], + "en_answers": [ + "wines" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-21": { + "question": "Σε ποιον μήνα συνήθως οι άνθρωποι παίρνουν διακοπές στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (1~12).)", + "en_question": "At which month do people usually take holidays in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 5 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-29": { + "question": "Ποια είναι η παράδοση στην Ελλάδα για την Πρωτοχρονιά;", + "en_question": "What tradition is there in your country for New Year's Eve?", + "annotations": [ + { + "answers": [ + "οικογενειακό τραπέζι", + "οικογενειακή μάζωξη με φαγητό" + ], + "en_answers": [ + "family meal", + "family gathering with food" + ], + "count": 2 + }, + { + "answers": [ + "βασιλόπιτα", + "κοπή της βασιλόπιτας" + ], + "en_answers": [ + "vasilopita", + "cutting of the vasilopita" + ], + "count": 2 + }, + { + "answers": [ + "είναι εθνική αργία" + ], + "en_answers": [ + "is a national holiday" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-38": { + "question": "Ποιος είναι ο τυπικός τύπος σπιτιού για μια οικογένεια στην Ελλάδα;", + "en_question": "Which is the typical type of house for a family in your country?", + "annotations": [ + { + "answers": [ + "διαμέρισμα", + "διαμέρισμα σε πολυκατοικία", + "μεσαίο διαμέρισμα" + ], + "en_answers": [ + "apartment", + "apartment in an apartment building", + "medium apartment" + ], + "count": 4 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ca-sp-41": { + "question": "Πού συνήθως ζουν οι εξαρτώμενοι ηλικιωμένοι στην Ελλάδα;", + "en_question": "Where do the dependent elderly usually live in your country?", + "annotations": [ + { + "answers": [ + "γηροκομείο", + "οίκους ευγηρίας", + "οίκοι ευγηρίας", + "οικοι ευγυριας" + ], + "en_answers": [ + "nursing home", + "nursing homes", + "houses of prosperity" + ], + "count": 4 + }, + { + "answers": [ + "με σύνταξη" + ], + "en_answers": [ + "with pension" + ], + "count": 1 + }, + { + "answers": [ + "σπίτι με κάποιον να τους φροντίζει", + "σπίτι με κάποιον να τουσ φροντίζει" + ], + "en_answers": [ + "home with someone to take care of them" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-42": { + "question": "Πόσο διαρκεί (σε εβδομάδες) η άδεια μητρότητας στην Ελλάδα για τις μητέρες; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 20).)", + "en_question": "How long (in weeks) is your country's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "14" + ], + "en_answers": [ + "14" + ], + "count": 2 + }, + { + "answers": [ + "52" + ], + "en_answers": [ + "52" + ], + "count": 1 + }, + { + "answers": [ + "17" + ], + "en_answers": [ + "17" + ], + "count": 1 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-43": { + "question": "Πόσο διαρκεί (σε εβδομάδες) η άδεια πατρότητας στην Ελλάδα για τους μπαμπάδες; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 20).)", + "en_question": "How long (in weeks) is your country's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "36" + ], + "en_answers": [ + "36" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-45": { + "question": "Ποιο είδος προορισμού επιλέγεται συνήθως για οικογενειακές διακοπές στην Ελλάδα;", + "en_question": "What type of destination is commonly chosen for a family vacation in your country?", + "annotations": [ + { + "answers": [ + "νησί", + "νησιά" + ], + "en_answers": [ + "island", + "islands" + ], + "count": 2 + }, + { + "answers": [ + "ηπειρωτικά χωριά" + ], + "en_answers": [ + "continental villages" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 3, + "idk": 0, + "not-applicable": 0 + } + }, + "Gu-ch-05": { + "question": "Ποια αθλήματα προτιμούν περισσότερο οι ηλικιωμένοι στην Ελλάδα;", + "en_question": "What sports do seniors like the most in your country?", + "annotations": [ + { + "answers": [ + "ποδόσφαιρο", + "ποδοσφαιρο" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "περπάτημα", + "περπατημα" + ], + "en_answers": [ + "walking" + ], + "count": 2 + }, + { + "answers": [ + "κολύμπι" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + }, + { + "answers": [ + "μπάσκετ" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "στίβος" + ], + "en_answers": [ + "track and field" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-06": { + "question": "Ποια αθλήματα προτιμούν περισσότερο οι άνδρες να παίζουν στην Ελλάδα;", + "en_question": "What sports do men like to play the most in your country?", + "annotations": [ + { + "answers": [ + "ποδόσφαιρο", + "ποδοσφαιρο" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "μπάσκετ", + "μπασκετ" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-07": { + "question": "Ποιος είναι ο πιο διάσημος μπασκετμπολίστας στην Ελλάδα;", + "en_question": "Who is the most famous basketball player in your country?", + "annotations": [ + { + "answers": [ + "αντετοκούνμπο", + "αντετοκούμπο", + "γιάννης αντετοκούνμπο", + "γιάννης αντετόνκουμπο", + "γιάννης ατετοκούμπο" + ], + "en_answers": [ + "antetokounmpo", + "giannis antetokounmpo" + ], + "count": 3 + }, + { + "answers": [ + "σπανούλης" + ], + "en_answers": [ + "spanoulis" + ], + "count": 1 + }, + { + "answers": [ + "φασούλας", + "φασούλης" + ], + "en_answers": [ + "fasoulas" + ], + "count": 1 + }, + { + "answers": [ + "γκάλης" + ], + "en_answers": [ + "galis" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-08": { + "question": "Ποιο είναι το πιο δημοφιλές άθλημα μεταξύ των παιδιών στην Ελλάδα;", + "en_question": "What is the most popular sports among children in your country?", + "annotations": [ + { + "answers": [ + "ποδόσφαιρο", + "ποδοσφαιρο" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "μπάσκετ", + "μπασκετ" + ], + "en_answers": [ + "basketball" + ], + "count": 4 + }, + { + "answers": [ + "στίβος" + ], + "en_answers": [ + "track and field" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-09": { + "question": "Ποια αθλήματα προτιμούν περισσότερο οι γυναίκες να παίζουν στην Ελλάδα;", + "en_question": "What sports do women like to play the most in your country?", + "annotations": [ + { + "answers": [ + "βόλεϊ", + "βόλει", + "βολλευ" + ], + "en_answers": [ + "volleyball" + ], + "count": 4 + }, + { + "answers": [ + "μπάσκετ", + "μπασκετ" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "στίβος" + ], + "en_answers": [ + "track and field" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Gu-ch-11": { + "question": "Σε ποιο αθλητικό γεγονός έχει κερδίσει η Ελλάδα τα περισσότερα χρυσά μετάλλια στους Ολυμπιακούς Αγώνες;", + "en_question": "What sports event has your country won the most gold medals at the Olympics?", + "annotations": [ + { + "answers": [ + "άρση βαρών" + ], + "en_answers": [ + "weightlifting" + ], + "count": 1 + }, + { + "answers": [ + "στίβο", + "στιβο" + ], + "en_answers": [ + "track and field" + ], + "count": 1 + }, + { + "answers": [ + "κρίκους" + ], + "en_answers": [ + "rings" + ], + "count": 1 + }, + { + "answers": [ + "πόλο", + "υδατοσφαίριση" + ], + "en_answers": [ + "water polo" + ], + "count": 1 + }, + { + "answers": [ + "υγρός στίβος", + "υγρόσ στίβος" + ], + "en_answers": [ + "wet track" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-15": { + "question": "Ποια αθλήματα προτιμούν να παίζουν περισσότερο οι άνδρες φοιτητές στα πανεπιστήμια στην Ελλάδα;", + "en_question": "What sports do male students in university like to play the most in your country?", + "annotations": [ + { + "answers": [ + "ποδόσφαιρο" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "μπάσκετ", + "μπασκετ" + ], + "en_answers": [ + "basketball" + ], + "count": 3 + }, + { + "answers": [ + "στίβος" + ], + "en_answers": [ + "track and field" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-16": { + "question": "Πόσα άτομα υπάρχουν κατά μέσο όρο σε μια οικογένεια στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 12).)", + "en_question": "How many people are there in a family on average in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 5 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-18": { + "question": "Πόσα παιδιά έχουν συνήθως τα ζευγάρια στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 12).)", + "en_question": "How many children do couples usually have in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 5 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-31": { + "question": "Ποια είναι η διάρκεια του δημοτικού σχολείου σε χρόνια στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 12).)", + "en_question": "What is the duration of elementary school in years in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-32": { + "question": "Ποια είναι η διάρκεια της υποχρεωτικής εκπαίδευσης σε έτη στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 12).)", + "en_question": "What is the duration of compulsory education in years in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 3 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-33": { + "question": "Από ποια ηλικία ξεκινούν οι μαθητές να μαθαίνουν δεύτερη γλώσσα στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς, π.χ., 12.)", + "en_question": "From which age do students start learning their second language in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-38": { + "question": "Ποια είναι η διάρκεια της προπτυχιακής εκπαίδευσης στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 12).)", + "en_question": "What is the duration of undergraduate education in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 3 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-40": { + "question": "Τι ώρα τελειώνουν το σχολείο οι μικρότεροι μαθητές δημοτικού στην Ελλάδα; (Απαντήστε σε μορφή ΩΩ:ΛΛ, π.χ., 18:00, 09:00).", + "en_question": "What time do younger elementary school students finish school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 3 + }, + { + "answers": [ + "12:25" + ], + "en_answers": [ + "12:25" + ], + "count": 1 + }, + { + "answers": [ + "12:00" + ], + "en_answers": [ + "12:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-41": { + "question": "Πόσα μουσικά όργανα συνήθως παίζουν οι μαθητές δημοτικού στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 12).)", + "en_question": "How many musical instruments do elementary school students in your country typically play? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 4 + }, + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-02": { + "question": "Ποια μέρα της εβδομάδας προτιμούν οι άνθρωποι στην Ελλάδα να έχουν εταιρικά δείπνα;", + "en_question": "What day of the week do people in your country prefer to have company dinners?", + "annotations": [ + { + "answers": [ + "παρασκευή", + "παρασκευη" + ], + "en_answers": [ + "friday" + ], + "count": 2 + }, + { + "answers": [ + "κυριακή" + ], + "en_answers": [ + "sunday" + ], + "count": 1 + }, + { + "answers": [ + "τετάρτη" + ], + "en_answers": [ + "wednesday" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "no-answer": 1, + "idk": 0 + } + }, + "Ji-ko-03": { + "question": "Ποια περιοχή/πόλη έχει τον υψηλότερο αριθμό χρηματοοικονομικών εταιρειών στην Ελλάδα;", + "en_question": "Which region/city has the highest number of financial companies in your country?", + "annotations": [ + { + "answers": [ + "αθήνα", + "αθηνα", + "aθήνα" + ], + "en_answers": [ + "athens" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-07": { + "question": "Ποια είναι η πιο διάσημη ιδιωτική εταιρεία στην Ελλάδα;", + "en_question": "What is the most famous private company in your country?", + "annotations": [ + { + "answers": [ + "δεη", + "δ.ε.η.", + "δημόσια επιχείρηση ηλεκτρισμού" + ], + "en_answers": [ + "public power corporation" + ], + "count": 2 + }, + { + "answers": [ + "vodafone" + ], + "en_answers": [ + "vodafone" + ], + "count": 1 + }, + { + "answers": [ + "αμστελ" + ], + "en_answers": [ + "amstel" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Ji-ko-08": { + "question": "Ποιος είναι ο μέγιστος αριθμός ωρών που κάποιος μπορεί να εργαστεί ανά εβδομάδα στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 12).)", + "en_question": "What is the maximum number of hours one can work per week in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "43" + ], + "en_answers": [ + "43" + ], + "count": 1 + }, + { + "answers": [ + "60", + "60+" + ], + "en_answers": [ + "60" + ], + "count": 1 + }, + { + "answers": [ + "48" + ], + "en_answers": [ + "48" + ], + "count": 1 + }, + { + "answers": [ + "16" + ], + "en_answers": [ + "16" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-09": { + "question": "Τι τρώνε συνήθως οι άνθρωποι σε εταιρικές συναθροίσεις στην Ελλάδα;", + "en_question": "What do people typically eat during company get-together in your country?", + "annotations": [ + { + "answers": [ + "σάντουιτς" + ], + "en_answers": [ + "sandwich" + ], + "count": 1 + }, + { + "answers": [ + "κουλουράκια" + ], + "en_answers": [ + "cookies" + ], + "count": 1 + }, + { + "answers": [ + "καναπεδάκια", + "καναπεδακια" + ], + "en_answers": [ + "canapés" + ], + "count": 1 + }, + { + "answers": [ + "σουβλάκια", + "σουβλάκι" + ], + "en_answers": [ + "souvlaki" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 0 + } + }, + "Ji-ko-14": { + "question": "Ποιο είναι το αντιπροσωπευτικό εξαγωγικό προϊόν της Ελλάδας;", + "en_question": "What is the representative export item of your country?", + "annotations": [ + { + "answers": [ + "ελαιόλαδο" + ], + "en_answers": [ + "olive oil" + ], + "count": 3 + }, + { + "answers": [ + "φέτα", + "τυρί φέτα" + ], + "en_answers": [ + "feta" + ], + "count": 3 + }, + { + "answers": [ + "λάδι" + ], + "en_answers": [ + "oil" + ], + "count": 2 + }, + { + "answers": [ + "γιαούρτι", + "greek yoghart" + ], + "en_answers": [ + "yogurt", + "greek yogurt" + ], + "count": 2 + }, + { + "answers": [ + "ανθρώπινο δυναμικό" + ], + "en_answers": [ + "human resources" + ], + "count": 1 + }, + { + "answers": [ + "κρασί" + ], + "en_answers": [ + "wine" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-15": { + "question": "Πόσο διαρκεί (σε ώρες) το τυπικό μεσημεριανό διάλειμμα στην Ελλάδα; (Δώστε αριθμούς σε αραβικά ψηφία μέχρι ένα δεκαδικό σημείο (π.χ., 2, 3.5) μόνο.)", + "en_question": "How long (in hours) is the typical lunch break in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + }, + { + "answers": [ + "0.5", + "1/2 ωρα η 30 λεπτα" + ], + "en_answers": [ + "0.5" + ], + "count": 2 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-16": { + "question": "Πού μένουν οι μητέρες για ένα συγκεκριμένο διάστημα μετά τον τοκετό για ανάρρωση στην Ελλάδα;", + "en_question": "Where do mothers stay for a certain period after childbirth for recovery in your country?", + "annotations": [ + { + "answers": [ + "σπίτι τους", + "σπιτι τους", + "σπίτι" + ], + "en_answers": [ + "their house", + "house" + ], + "count": 3 + }, + { + "answers": [ + "στο μαιευτήριο", + "μαιευτήριο" + ], + "en_answers": [ + "at the maternity hospital", + "maternity hospital" + ], + "count": 2 + }, + { + "answers": [ + "νοσοκομείο", + "νοσοκομειο" + ], + "en_answers": [ + "hospital" + ], + "count": 1 + }, + { + "answers": [ + "μεθ", + "μονάδα εντατικής θεραπείας" + ], + "en_answers": [ + "intensive care unit" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-19": { + "question": "Ποιο είναι το πιο συνηθισμένο λουλούδι που δίνεται στην Ελλάδα την Ημέρα των Γονέων;", + "en_question": "What is your country's most commonly given flower on Parents' Day?", + "annotations": [ + { + "answers": [ + "μαργαρίτα", + "μαργαρίτες" + ], + "en_answers": [ + "daisy", + "daisies" + ], + "count": 2 + }, + { + "answers": [ + "τριαντάφυλλο", + "τριανταφυλλο", + "τριαντάφυλλα" + ], + "en_answers": [ + "rose" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "Ji-ko-22": { + "question": "Σε τι ξοδεύουν οι άνθρωποι ιδιαίτερα τον πρώτο τους μισθό στην κοινωνία της Ελλάδας;", + "en_question": "What do people especially spend their first salary on in your country's society?", + "annotations": [ + { + "answers": [ + "φαγητό", + "εξοδους (ποτο - φαγητο)" + ], + "en_answers": [ + "food" + ], + "count": 3 + }, + { + "answers": [ + "ρεύμα" + ], + "en_answers": [ + "electricity" + ], + "count": 1 + }, + { + "answers": [ + "ενοίκιο" + ], + "en_answers": [ + "rent" + ], + "count": 1 + }, + { + "answers": [ + "καθημερινα εξοδα" + ], + "en_answers": [ + "daily expenses" + ], + "count": 1 + }, + { + "answers": [ + "εξόδους", + "εξοδους (ποτο - φαγητο)" + ], + "en_answers": [ + "going out" + ], + "count": 1 + }, + { + "answers": [ + "ποτό", + "εξοδους (ποτο - φαγητο)" + ], + "en_answers": [ + "drinks" + ], + "count": 1 + }, + { + "answers": [ + "ρούχα" + ], + "en_answers": [ + "clothes" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-24": { + "question": "Ποια είναι η πιο προτιμώμενη ψυχαγωγική εγκατάσταση από τα παιδιά στην Ελλάδα;", + "en_question": "What is the most preferred recreational facility among children in your country?", + "annotations": [ + { + "answers": [ + "παιδότοπος", + "παιδικές χαρές" + ], + "en_answers": [ + "playground", + "playgrounds" + ], + "count": 2 + }, + { + "answers": [ + "playstation" + ], + "en_answers": [ + "playstation" + ], + "count": 1 + }, + { + "answers": [ + "αθλητικοί σύλλογοι" + ], + "en_answers": [ + "sports clubs" + ], + "count": 1 + }, + { + "answers": [ + "καφετέριες" + ], + "en_answers": [ + "cafes" + ], + "count": 1 + }, + { + "answers": [ + "κινηματογράφος" + ], + "en_answers": [ + "cinema" + ], + "count": 1 + } + ], + "idks": { + "Δεν μπορω να καταλαβω τον ορο \"ψυχαγωγικη εγκατασταση\" αλλα αν το εννοείται γενικα, αθλητικες εγκαταστασεις": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-25": { + "question": "Ποιες είναι οι οικογενειακές γιορτές στην Ελλάδα;", + "en_question": "What are the family-related holidays in your country?", + "annotations": [ + { + "answers": [ + "χριστούγεννα" + ], + "en_answers": [ + "christmas" + ], + "count": 5 + }, + { + "answers": [ + "πάσχα" + ], + "en_answers": [ + "easter" + ], + "count": 5 + }, + { + "answers": [ + "δεκαπενταύγουστος", + "15 αύγουστος" + ], + "en_answers": [ + "august 15th" + ], + "count": 3 + }, + { + "answers": [ + "πρωτοχρονιά" + ], + "en_answers": [ + "new year's day" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-26": { + "question": "Ποια είναι τα κύρια ορόσημα που σχετίζονται με την ανεξαρτησία των παιδιών από τους γονείς τους στην ελληνική κοινωνία;", + "en_question": "What are the key milestones associated with children's independence from their parents in your country's society?", + "annotations": [ + { + "answers": [ + "γάμος" + ], + "en_answers": [ + "marriage" + ], + "count": 2 + }, + { + "answers": [ + "εύρεση εργασίας", + "δουλειά", + "δουλεια" + ], + "en_answers": [ + "job finding", + "work" + ], + "count": 2 + }, + { + "answers": [ + "ενηλικίωση" + ], + "en_answers": [ + "coming of age" + ], + "count": 1 + }, + { + "answers": [ + "σπουδές" + ], + "en_answers": [ + "studies" + ], + "count": 1 + }, + { + "answers": [ + "στράτευση" + ], + "en_answers": [ + "military service" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-27": { + "question": "Ποιο είναι ένα συνηθισμένο δώρο που δίνετε όταν επισκέπτεστε ηλικιωμένους γονείς στην Ελλάδα;", + "en_question": "What is the common gift you give when visiting elderly parents in your country?", + "annotations": [ + { + "answers": [ + "γλυκά", + "γλυκα", + "ένα κουτί γλυκά" + ], + "en_answers": [ + "sweets", + "a box of sweets" + ], + "count": 3 + }, + { + "answers": [ + "εικόνες", + "φωτογραφίες" + ], + "en_answers": [ + "images" + ], + "count": 1 + }, + { + "answers": [ + "κάλτσες" + ], + "en_answers": [ + "socks" + ], + "count": 1 + }, + { + "answers": [ + "κούπα", + "κούπες" + ], + "en_answers": [ + "cup" + ], + "count": 1 + }, + { + "answers": [ + "φανέλα", + "φανέλες" + ], + "en_answers": [ + "jersey" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-28": { + "question": "Πότε είναι η πρώτη μέρα που οι άνθρωποι γιορτάζουν μετά τη γέννηση ενός παιδιού στην Ελλάδα;", + "en_question": "When is the first day that people celebrate after a child is born in your country?", + "annotations": [ + { + "answers": [ + "μετά από 40 μέρες", + "40" + ], + "en_answers": [ + "after 40 days" + ], + "count": 3 + }, + { + "answers": [ + "γενέθλια", + "γενέθλια (;) (κακή διατύπωση)" + ], + "en_answers": [ + "birthday" + ], + "count": 1 + }, + { + "answers": [ + "γιορτή" + ], + "en_answers": [ + "name day" + ], + "count": 1 + }, + { + "answers": [ + "πρωτοχρονιά" + ], + "en_answers": [ + "new year's day" + ], + "count": 1 + }, + { + "answers": [ + "πάσχα" + ], + "en_answers": [ + "easter" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-29": { + "question": "Ποια ηλικία γιορτάζει τα γενέθλιά της πιο μεγαλοπρεπώς στην ελληνική κοινωνία;", + "en_question": "Which age's birthday is celebrated the most grandly in your country's society?", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 3 + }, + { + "answers": [ + "21" + ], + "en_answers": [ + "21" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-31": { + "question": "Πού συνήθως μελετούν οι μαθητές του γυμνασίου και του λυκείου στην Ελλάδα για τις εξετάσεις;", + "en_question": "Where do middle and high school students in your country usually study for exams?", + "annotations": [ + { + "answers": [ + "σπίτι", + "σπίτι τους", + "σπιτι τους" + ], + "en_answers": [ + "house", + "their house" + ], + "count": 5 + }, + { + "answers": [ + "φροντιστήριο" + ], + "en_answers": [ + "tutoring center" + ], + "count": 2 + }, + { + "answers": [ + "βιβλιοθήκη", + "βιβλιοθηκη" + ], + "en_answers": [ + "library" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-33": { + "question": "Πού συνήθως πηγαίνουν οι μαθητές λυκείου στην Ελλάδα μετά το δείπνο;", + "en_question": "Where do high school students in your country usually go after dinner?", + "annotations": [ + { + "answers": [ + "διάβασμα", + "διαβασμα" + ], + "en_answers": [ + "study" + ], + "count": 1 + }, + { + "answers": [ + "ύπνο", + "υπνο" + ], + "en_answers": [ + "sleep" + ], + "count": 1 + }, + { + "answers": [ + "φροντιστήριο", + "φροντιστηριο" + ], + "en_answers": [ + "tutoring center" + ], + "count": 1 + }, + { + "answers": [ + "νυχτερινή έξοδο" + ], + "en_answers": [ + "night out" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "Ji-ko-34": { + "question": "Πώς πηγαίνουν στο σχολείο οι μαθητές δημοτικού στην Ελλάδα;", + "en_question": "How do elementary school students in your country go to school?", + "annotations": [ + { + "answers": [ + "με τα πόδια", + "με τα ποδια", + "με τα ποδιά", + "ποδια", + "πόδια" + ], + "en_answers": [ + "on foot", + "with the aprons" + ], + "count": 5 + }, + { + "answers": [ + "λεωφορείο", + "λεωφορειο" + ], + "en_answers": [ + "bus" + ], + "count": 2 + }, + { + "answers": [ + "μ.μ.μ", + "μεσα μαζικής μεταφοράς" + ], + "en_answers": [ + "public transport" + ], + "count": 1 + }, + { + "answers": [ + "αυτοκίνητο", + "αυτοκινητο" + ], + "en_answers": [ + "car" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-35": { + "question": "Ποια είναι η πιο συνηθισμένη μορφή ιδιωτικής εκπαίδευσης στην Ελλάδα;", + "en_question": "What is the most common form of private education in your country?", + "annotations": [ + { + "answers": [ + "κολλέγια" + ], + "en_answers": [ + "colleges" + ], + "count": 3 + }, + { + "answers": [ + "ιδιωτικά σχολεία", + "ιδιωτικά σχολείο πρωτοβάθμιας εκπαίδευσης", + "ιδιωτικά σχολείο πρωτοβάθμιας και δευτεροβάθμιας εκπαίδευσης", + "ιδιωτικά σχολείο δευτεροβάθμιας εκπαίδευσης" + ], + "en_answers": [ + "private schools" + ], + "count": 2 + }, + { + "answers": [ + "μεταπτυχιακό", + "μεταπτυχιακο" + ], + "en_answers": [ + "postgraduate" + ], + "count": 1 + }, + { + "answers": [ + "ιδιωτικοί παιδικοί σταθμοί" + ], + "en_answers": [ + "private nurseries" + ], + "count": 1 + }, + { + "answers": [ + "ιδιωτικά ιεκ", + "ιδιωτικά ινστιτούτα επαγγελματικής κατάρτισης" + ], + "en_answers": [ + "private vocational training institutes" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-36": { + "question": "Ποια μαθήματα παρακολουθούν πιο συχνά οι μαθητές του γυμνασίου ή του λυκείου στην Ελλάδα;", + "en_question": "Which subject’s academy/private educational institute do middle or high students most frequently attend in your country?", + "annotations": [ + { + "answers": [ + "μαθηματικά", + "μαθηματικα" + ], + "en_answers": [ + "mathematics" + ], + "count": 4 + }, + { + "answers": [ + "έκθεση", + "γλώσσα", + "νεοελληνική γλώσσα", + "ελληνική γλώσσα" + ], + "en_answers": [ + "language" + ], + "count": 2 + }, + { + "answers": [ + "φυσική" + ], + "en_answers": [ + "physics" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-37": { + "question": "Τι είδους ρούχα φορούν οι μαθητές του γυμνασίου και του λυκείου στο σχολείο στην Ελλάδα;", + "en_question": "What type of clothing do middle and high school students wear to school in your country?", + "annotations": [ + { + "answers": [ + "κανονικά", + "απλά καθημερινά", + "καθημερινα" + ], + "en_answers": [ + "casual" + ], + "count": 3 + }, + { + "answers": [ + "φόρμες", + "αθλητικά ρούχα (φόρμες κλπ)", + "τζιν και φόρμες" + ], + "en_answers": [ + "tracksuits" + ], + "count": 2 + }, + { + "answers": [ + "τζιν", + "τζιν και φόρμες" + ], + "en_answers": [ + "jeans" + ], + "count": 2 + }, + { + "answers": [ + "αθλητικά ρούχα", + "αθλητικά ρούχα (φόρμες κλπ)" + ], + "en_answers": [ + "sportswear" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 2, + "not-applicable": 0 + } + }, + "Ji-ko-38": { + "question": "Ποια ειδικότητα θεωρείται η πιο δύσκολη για να εισαχθεί κανείς στην Ελλάδα;", + "en_question": "Which major is considered the most difficult to gain admission to in your country?", + "annotations": [ + { + "answers": [ + "ιατρική", + "ιατρικη", + "γιατρός", + "γιατρος" + ], + "en_answers": [ + "medical science", + "doctor" + ], + "count": 2 + }, + { + "answers": [ + "δικηγόρος", + "δικηγορος" + ], + "en_answers": [ + "lawyer" + ], + "count": 1 + }, + { + "answers": [ + "επιστήμονας" + ], + "en_answers": [ + "scientist" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 0 + } + }, + "Ji-ko-39": { + "question": "Ποιο είναι το πιο συνηθισμένο μουσικό όργανο που μαθαίνουν οι μαθητές του δημοτικού στην Ελλάδα;", + "en_question": "What is the most commonly learned musical instrument by elementary school students in your country?", + "annotations": [ + { + "answers": [ + "κιθάρα", + "κιθαρα" + ], + "en_answers": [ + "guitar" + ], + "count": 5 + }, + { + "answers": [ + "πιάνο", + "πιανο" + ], + "en_answers": [ + "piano" + ], + "count": 4 + }, + { + "answers": [ + "μπουζούκι" + ], + "en_answers": [ + "bouzouki" + ], + "count": 1 + }, + { + "answers": [ + "μαράκες", + "μαρακες" + ], + "en_answers": [ + "maracas" + ], + "count": 1 + }, + { + "answers": [ + "αρμόνιο", + "αρμονιο" + ], + "en_answers": [ + "keyboard" + ], + "count": 1 + }, + { + "answers": [ + "φλογέρα" + ], + "en_answers": [ + "flute" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-40": { + "question": "Τι κάνουν συνήθως οι μαθητές του λυκείου κατά τη διάρκεια του διαλείμματος στα σχολεία στην Ελλάδα;", + "en_question": "What do high school students typically do during break time in schools in your country?", + "annotations": [ + { + "answers": [ + "συναναστρέφονται με συμμαθητες", + "συναναστρεφονται με συμμαθητες", + "περνούν χρόνο με την παρέα τους", + "συζητάνε", + "συζητανε" + ], + "en_answers": [ + "spend time with their classmates", + "spend time with their friends", + "they discuss" + ], + "count": 3 + }, + { + "answers": [ + "καπνίζουν", + "καπνιζουν" + ], + "en_answers": [ + "smoking" + ], + "count": 1 + }, + { + "answers": [ + "αντιγράφουν εργασίες", + "αντιγράφουν", + "αντιγράφουν σημειώσεις" + ], + "en_answers": [ + "copy homework", + "copy notes" + ], + "count": 1 + }, + { + "answers": [ + "τρώνε" + ], + "en_answers": [ + "eat" + ], + "count": 1 + }, + { + "answers": [ + "ξεκουράζονται" + ], + "en_answers": [ + "resting" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-41": { + "question": "Τι είδους παπούτσια φορούν οι μαθητές στα σχολεία στην Ελλάδα;", + "en_question": "What kind of shoes do students wear in schools in your country?", + "annotations": [ + { + "answers": [ + "αθλητικά", + "αθλητικα", + "sneakers" + ], + "en_answers": [ + "sport shoes" + ], + "count": 3 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 0 + } + }, + "Ji-ko-42": { + "question": "Ποια είναι τα απαιτούμενα μαθήματα στις πανελλήνιες εξετάσεις εισαγωγής στα πανεπιστήμια της Ελλάδας;", + "en_question": "What are the required subjects in your country's university entrance exam?", + "annotations": [ + { + "answers": [ + "έκθεση", + "εκθεση", + "νεοελληνική γλώσσα", + "ελληνική γλώσσα" + ], + "en_answers": [ + "language" + ], + "count": 4 + }, + { + "answers": [ + "μαθηματικά" + ], + "en_answers": [ + "mathematics" + ], + "count": 3 + }, + { + "answers": [ + "λογοτεχνία" + ], + "en_answers": [ + "literature" + ], + "count": 1 + }, + { + "answers": [ + "αγγλικά" + ], + "en_answers": [ + "english" + ], + "count": 1 + }, + { + "answers": [ + "φυσική" + ], + "en_answers": [ + "physics" + ], + "count": 1 + }, + { + "answers": [ + "αρχαία", + "αρχαία ελληνικά" + ], + "en_answers": [ + "ancient" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-44": { + "question": "Ποια περιοχή (εντός μιας πόλης) στην Ελλάδα έχει τον υψηλότερο ακαδημαϊκό ζήλο;", + "en_question": "Which region (within a city) in your country has the highest academic fervor?", + "annotations": [ + { + "answers": [ + "ζωγράφου" + ], + "en_answers": [ + "zografrou" + ], + "count": 1 + }, + { + "answers": [ + "aριστοτέλειο", + "πανεπιστήμια θεσσαλονίκη (αριστοτέλειο)", + "αριστοτέλειο πανεπιστήμιο" + ], + "en_answers": [ + "aristotle university" + ], + "count": 1 + }, + { + "answers": [ + "ε.κ.π.α.", + "εθνικό καποδιστριακό πανεπιστημίο αθηνών" + ], + "en_answers": [ + "e.k.p.a. (national and kapodistrian university of athens)" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 3 + } + }, + "Ji-ko-45": { + "question": "Τι ανυπομονούν περισσότερο να δουν οι άνθρωποι στα πανεπιστημιακά φεστιβάλ στην Ελλάδα;", + "en_question": "What do people look forward to the most at university festivals in your country?", + "annotations": [ + { + "answers": [ + "τραγουδιστές", + "τραγουδιστες" + ], + "en_answers": [ + "singers" + ], + "count": 1 + }, + { + "answers": [ + "μουσική" + ], + "en_answers": [ + "music" + ], + "count": 1 + }, + { + "answers": [ + "συναυλίες" + ], + "en_answers": [ + "concerts" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 0 + } + }, + "Jo-sp-01": { + "question": "Ποιο είναι το δεύτερο πιο δημοφιλές άθλημα στην Ελλάδα;", + "en_question": "What is the second most popular sport in your country?", + "annotations": [ + { + "answers": [ + "μπάσκετ", + "μπασκετ" + ], + "en_answers": [ + "basketball" + ], + "count": 4 + }, + { + "answers": [ + "ποδόσφαιρο", + "ποδόσφαιρο." + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-02": { + "question": "Ποιο είναι το πιο δημοφιλές άθλημα που παίζεται χωρίς μπάλα στην Ελλάδα;", + "en_question": "What is the most popular sport played without a ball in your country?", + "annotations": [ + { + "answers": [ + "σκάκι", + "σκακι" + ], + "en_answers": [ + "chess" + ], + "count": 2 + }, + { + "answers": [ + "στίβος" + ], + "en_answers": [ + "track and field" + ], + "count": 1 + }, + { + "answers": [ + "πυγμαχία", + "boxing", + "μποξ" + ], + "en_answers": [ + "boxing" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Jo-sp-09": { + "question": "Ποια αθλήματα συνδέονται περισσότερο με την ανώτερη τάξη στην Ελλάδα;", + "en_question": "What sports are most associated with the upper class in your country?", + "annotations": [ + { + "answers": [ + "τένις", + "τεννισ", + "αντισφαιριση", + "τέννις" + ], + "en_answers": [ + "tennis" + ], + "count": 3 + }, + { + "answers": [ + "ιππασία", + "ιππασια" + ], + "en_answers": [ + "horse riding" + ], + "count": 1 + }, + { + "answers": [ + "σκι", + "χιονοδρομία" + ], + "en_answers": [ + "skiing" + ], + "count": 1 + }, + { + "answers": [ + "ποδόσφαιρο" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "γκολφ" + ], + "en_answers": [ + "golf" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-13": { + "question": "Ποιο είναι το πιο δημοφιλές υδάτινο σπορ στην Ελλάδα;", + "en_question": "What is the most popular water sport in your country?", + "annotations": [ + { + "answers": [ + "πόλο", + "πολο" + ], + "en_answers": [ + "city", + "polo" + ], + "count": 4 + }, + { + "answers": [ + "συγχρονισμένη κολύμβηση", + "ενοργανη" + ], + "en_answers": [ + "synchronized swimming" + ], + "count": 2 + }, + { + "answers": [ + "κολύμπι" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-14": { + "question": "Ποιο είναι το πιο δημοφιλές νοητικό άθλημα στην Ελλάδα;", + "en_question": "What is the most popular mental sport in your country?", + "annotations": [ + { + "answers": [ + "σκάκι", + "σκακι" + ], + "en_answers": [ + "chess" + ], + "count": 3 + } + ], + "idks": { + "no-answer": 2, + "idk": 2, + "not-applicable": 0 + } + }, + "Jo-sp-18": { + "question": "Πόσες ημέρες διακοπών το χρόνο δικαιούται ένας τυπικός εργαζόμενος στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς, π.χ., 12.)", + "en_question": "How many holiday days per year does a standard worker gets in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 2 + }, + { + "answers": [ + "21" + ], + "en_answers": [ + "21" + ], + "count": 1 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-19": { + "question": "Ποια περιοχή στην Ελλάδα έχει παραδοσιακά συνδεθεί με τη γεωργία;", + "en_question": "What region in your country has been traditionally associated with agriculture?", + "annotations": [ + { + "answers": [ + "κρήτη", + "κρητη" + ], + "en_answers": [ + "crete" + ], + "count": 2 + }, + { + "answers": [ + "θεσσαλία" + ], + "en_answers": [ + "thessaly" + ], + "count": 1 + }, + { + "answers": [ + "λάρισα", + "λαρισσα" + ], + "en_answers": [ + "larissa" + ], + "count": 1 + }, + { + "answers": [ + "καστοριά", + "καστορια" + ], + "en_answers": [ + "kastoria" + ], + "count": 1 + }, + { + "answers": [ + "βόλος" + ], + "en_answers": [ + "volos" + ], + "count": 1 + }, + { + "answers": [ + "πελοπόννησος", + "πελοπόνησος" + ], + "en_answers": [ + "peloponnese" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "Jo-sp-21": { + "question": "Ποια ώρα, αν υπάρχει, συνήθως φεύγουν οι άνθρωποι από τη δουλειά για μεσημεριανό στην Ελλάδα; (Απαντήστε σε μορφή ΩΩ:ΛΛ, π.χ., 18:00, 09:00).", + "en_question": "What time, if any, do people usually leave work for lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 2 + }, + { + "answers": [ + "16:00", + "04:00" + ], + "en_answers": [ + "16:00" + ], + "count": 1 + }, + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 1 + }, + { + "answers": [ + "15:00" + ], + "en_answers": [ + "15:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-31": { + "question": "Τι ώρα συνήθως αποχωρούν οι μαθητές του λυκείου από το σχολείο στην Ελλάδα; (Απαντήστε σε μορφή ΩΩ:ΛΛ, π.χ., 18:00, 09:00).", + "en_question": "What time do high school students tend to leave school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 4 + }, + { + "answers": [ + "14:10" + ], + "en_answers": [ + "14:10" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-32": { + "question": "Ποιο άθλημα συνηθίζουν να εξασκούν οι μαθητές δημοτικού στα σχολεία στην Ελλάδα;", + "en_question": "What sport do elementary school students tend to practice at school in your country?", + "annotations": [ + { + "answers": [ + "ποδόσφαιρο", + "ποδοσφαιρο" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "μπάσκετ", + "μπασκετ" + ], + "en_answers": [ + "basketball" + ], + "count": 4 + }, + { + "answers": [ + "βόλεϊ", + "βόλει", + "βόλλεϊ" + ], + "en_answers": [ + "volleyball" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-36": { + "question": "Πόσο διαρκούν (σε εβδομάδες) οι θερινές διακοπές στα δημοτικά σχολεία στην Ελλάδα; (Δώστε την απάντηση μόνο σε αραβικούς αριθμούς (π.χ., 7, 8).)", + "en_question": "How long (in weeks) are summer vacations at elementary schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 2 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 2 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-37": { + "question": "Πόσο διαρκούν (σε εβδομάδες) οι καλοκαιρινές διακοπές στα πανεπιστήμια στην Ελλάδα; (Δώστε την απάντηση μόνο με αραβικούς αριθμούς (π.χ., 7, 8).)", + "en_question": "How long (in weeks) are summer vacations at universities in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 2 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-39": { + "question": "Σε ποια ηλικία αρχίζει η πρωτοβάθμια εκπαίδευση στην Ελλάδα; (Δώστε την απάντηση μόνο με αραβικούς αριθμούς (π.χ., 7, 8).)", + "en_question": "At what age does elementary education begin in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 4 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-43": { + "question": "Πόσες γλώσσες μελετώνται στην πρωτοβάθμια εκπαίδευση εκτός από την επίσημη γλώσσα της Ελλάδας; (Δώστε την απάντηση σε αραβικούς αριθμούς (π.χ., 7, 8) μόνο.)", + "en_question": "How many languages are studied in elementary education besides your country's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-01": { + "question": "Ποια σκεύη φαγητού χρησιμοποιούν συνήθως οι άνθρωποι στην Ελλάδα;", + "en_question": "What eating utensils do people commonly used in your country?", + "annotations": [ + { + "answers": [ + "πίατα", + "πιατα", + "πιάτα" + ], + "en_answers": [ + "dishes" + ], + "count": 3 + }, + { + "answers": [ + "κατσαρόλα", + "κατσαρολα" + ], + "en_answers": [ + "pot" + ], + "count": 3 + }, + { + "answers": [ + "τηγάνι", + "τηγανι" + ], + "en_answers": [ + "pan", + "frying pan" + ], + "count": 3 + }, + { + "answers": [ + "ταψί" + ], + "en_answers": [ + "pan" + ], + "count": 2 + }, + { + "answers": [ + "ποτήρια", + "ποτηρια" + ], + "en_answers": [ + "glasses" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-04": { + "question": "Ποιο αναψυκτικό προτιμούν οι άνθρωποι στην Ελλάδα;", + "en_question": "What soft drink do people in your country like to have?", + "annotations": [ + { + "answers": [ + "κόκα κόλα", + "κοκα κολα", + "κόκα κολα", + "coca cola" + ], + "en_answers": [ + "coca cola" + ], + "count": 5 + }, + { + "answers": [ + "πέπσι", + "pepsi" + ], + "en_answers": [ + "pepsi" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-06": { + "question": "Ποιο είναι το πιο δημοφιλές παραδοσιακό αλκοολούχο ποτό στην Ελλάδα;", + "en_question": "What is the most popular traditional alcohol in your country?", + "annotations": [ + { + "answers": [ + "τσίπουρο" + ], + "en_answers": [ + "tsipouro" + ], + "count": 2 + }, + { + "answers": [ + "ούζο" + ], + "en_answers": [ + "ouzo" + ], + "count": 2 + }, + { + "answers": [ + "ρακή", + "ρακί" + ], + "en_answers": [ + "raki" + ], + "count": 2 + }, + { + "answers": [ + "κρασί" + ], + "en_answers": [ + "wine" + ], + "count": 1 + }, + { + "answers": [ + "μπύρα", + "μπυρα" + ], + "en_answers": [ + "beer" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-07": { + "question": "Πόσο χρόνο (σε ώρες) κατά μέσο όρο χρειάζονται οι άνθρωποι στην Ελλάδα για να δειπνήσουν σε ένα εστιατόριο; (Χρησιμοποιείστε αραβικούς αριθμούς μέχρι ένα δεκαδικό ψηφίο (π.χ., 2, 3.5) μόνο.)", + "en_question": "How long (in hours) on average does it take for people in your country to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 2 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + }, + { + "answers": [ + "1.5" + ], + "en_answers": [ + "1.5" + ], + "count": 1 + }, + { + "answers": [ + "2.5" + ], + "en_answers": [ + "2.5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-09": { + "question": "Τι ώρα συνήθως τρώνε δείπνο οι άνθρωποι στην Ελλάδα; (Απαντήστε σε μορφή ΩΩ:ΛΛ, π.χ., 18:00, 09:00).", + "en_question": "What time do people usually have dinner in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "15:00" + ], + "en_answers": [ + "15:00" + ], + "count": 1 + }, + { + "answers": [ + "20:00", + "08:00" + ], + "en_answers": [ + "20:00" + ], + "count": 1 + }, + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 1 + }, + { + "answers": [ + "21:30", + "09:30" + ], + "en_answers": [ + "21:30" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-12": { + "question": "Τι είδους σούπα συνηθίζουν να τρώνε οι άνθρωποι στην Ελλάδα;", + "en_question": "What kind of soup do people from your country like to have?", + "annotations": [ + { + "answers": [ + "κοτόσουπα" + ], + "en_answers": [ + "chicken soup" + ], + "count": 3 + }, + { + "answers": [ + "ψαρόσουπα" + ], + "en_answers": [ + "fish soup" + ], + "count": 1 + }, + { + "answers": [ + "μανιταρόσουπα" + ], + "en_answers": [ + "mushroom soup" + ], + "count": 1 + }, + { + "answers": [ + "γιουβαρλάκια", + "γουρβαλάκια" + ], + "en_answers": [ + "meatball soup" + ], + "count": 1 + }, + { + "answers": [ + "φακές" + ], + "en_answers": [ + "lentils soup" + ], + "count": 1 + }, + { + "answers": [ + "φασολάδα" + ], + "en_answers": [ + "bean soup" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-13": { + "question": "Τι street food συνηθίζουν να τρώνε οι άνθρωποι στην Ελλάδα;", + "en_question": "What street food do people from your country like to eat?", + "annotations": [ + { + "answers": [ + "πιτόγυρο", + "πιτογυρο", + "πίτα γύρο" + ], + "en_answers": [ + "pita gyro" + ], + "count": 3 + }, + { + "answers": [ + "σουβλάκι", + "σουβλακι", + "σουβλάκια", + "σουβλακια" + ], + "en_answers": [ + "souvlaki" + ], + "count": 3 + }, + { + "answers": [ + "πίτσα", + "πιτσα" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-15": { + "question": "Τι είδους θαλασσινά συνηθίζουν να τρώνε οι Έλληνες;", + "en_question": "What kind of seafood do people from your country like to eat?", + "annotations": [ + { + "answers": [ + "καλαμαράκια", + "καλαμάρι" + ], + "en_answers": [ + "small squids", + "squid" + ], + "count": 4 + }, + { + "answers": [ + "χταπόδι" + ], + "en_answers": [ + "octopus" + ], + "count": 2 + }, + { + "answers": [ + "γαύρο" + ], + "en_answers": [ + "anchovy" + ], + "count": 1 + }, + { + "answers": [ + "μπακαλιάρο", + "μπακαλιαρο" + ], + "en_answers": [ + "cod" + ], + "count": 1 + }, + { + "answers": [ + "τσιπούρα", + "τσιπουρα" + ], + "en_answers": [ + "sea bream" + ], + "count": 1 + }, + { + "answers": [ + "πέστροφα", + "πεστροφα" + ], + "en_answers": [ + "trout" + ], + "count": 1 + }, + { + "answers": [ + "γαρίδες" + ], + "en_answers": [ + "shrimps" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-16": { + "question": "Ποιο είναι το μεγαλύτερο φεστιβάλ στην Ελλάδα;", + "en_question": "What is the biggest festival in your country?", + "annotations": [ + { + "answers": [ + "πατρινό καρναβάλι", + "καρναβάλι της πάτρας" + ], + "en_answers": [ + "patras carnival" + ], + "count": 1 + }, + { + "answers": [ + "φεστιβάλ κινηματογράφου", + "φεστιβαλ κινηματογραφου", + "φεστιβάλ κινηματογράφου θεσσαλονίκης" + ], + "en_answers": [ + "film festival" + ], + "count": 1 + }, + { + "answers": [ + "rockwave festival", + "rockwave" + ], + "en_answers": [ + "rockwave" + ], + "count": 1 + }, + { + "answers": [ + "φεστιβάλ επιδαύρου", + "eπιδαύρου", + "επιδαύρια" + ], + "en_answers": [ + "athens and epidaurus festival" + ], + "count": 1 + }, + { + "answers": [ + "φεστιβάλ κινηματογράφου θεσσαλονίκης", + "κινηματογράφου θεσσαλονίκης" + ], + "en_answers": [ + "thessaloniki international film festival" + ], + "count": 1 + }, + { + "answers": [ + "δημήτρια θεσσαλονίκης", + "φεστιβάλ δημητρίων" + ], + "en_answers": [ + "dimitria of thessaloniki" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Jod-ch-28": { + "question": "Ποιο είναι το πιο συχνά χρησιμοποιούμενο μέσο δημόσιας μεταφοράς από τους ανθρώπους όταν ταξιδεύουν μεταξύ πόλεων στην Ελλάδα;", + "en_question": "What is the most commonly used public transport by people when travelling between cites in your country?", + "annotations": [ + { + "answers": [ + "κτελ" + ], + "en_answers": [ + "coach" + ], + "count": 3 + }, + { + "answers": [ + "τρένο", + "τραίνο" + ], + "en_answers": [ + "train" + ], + "count": 3 + }, + { + "answers": [ + "κτελ", + "κτελ (λεωφορείο)", + "λεωφορείο" + ], + "en_answers": [ + "bus (coach)" + ], + "count": 1 + }, + { + "answers": [ + "μετρό", + "μετρο" + ], + "en_answers": [ + "subway" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-30": { + "question": "Ποιες είναι οι συγκεκριμένες διακοσμήσεις ή σύμβολα που συνδέονται με το μεγαλύτερο φεστιβάλ στην Ελλάδα;", + "en_question": "What are the specific decorations or symbols associated with the most biggest festival in your country?", + "annotations": [ + { + "answers": [ + "μπύρα" + ], + "en_answers": [ + "beer" + ], + "count": 1 + }, + { + "answers": [ + "μεταμφιέσεις" + ], + "en_answers": [ + "costumes" + ], + "count": 1 + }, + { + "answers": [ + "κίονες" + ], + "en_answers": [ + "columns" + ], + "count": 1 + }, + { + "answers": [ + "μαίανδρος" + ], + "en_answers": [ + "meander" + ], + "count": 1 + }, + { + "answers": [ + "ελιά" + ], + "en_answers": [ + "olive" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 1 + } + }, + "Jod-ch-37": { + "question": "Ποια αθλήματα προτιμούν να παρακολουθούν περισσότερο οι γυναίκες στην Ελλάδα;", + "en_question": "What sports do women like to watch the most in your country?", + "annotations": [ + { + "answers": [ + "μπάσκετ", + "μπασκετ" + ], + "en_answers": [ + "basketball" + ], + "count": 4 + }, + { + "answers": [ + "στίβος", + "στίβο" + ], + "en_answers": [ + "track and field" + ], + "count": 2 + }, + { + "answers": [ + "ποδόσφαιρο" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "τένις", + "τέννις" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-38": { + "question": "Ποια αθλήματα προτιμούν οι άνδρες να παρακολουθούν περισσότερο στην Ελλάδα;", + "en_question": "What sports do men like to watch the most in your country?", + "annotations": [ + { + "answers": [ + "ποδόσφαιρο" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "μπάσκετ" + ], + "en_answers": [ + "basketball" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-41": { + "question": "Ποια είναι μια συνηθισμένη δραστηριότητα ελεύθερου χρόνου για γυναίκες στα 20 τους στην Ελλάδα;", + "en_question": "What is the common leisure activity that females in their 20s in your country engage in?", + "annotations": [ + { + "answers": [ + "πηγαίνουν για καφέ", + "καφές", + "καφες", + "καφέ", + "μπαρ / καφέ" + ], + "en_answers": [ + "go for coffee", + "coffee", + "bar / cafe" + ], + "count": 3 + }, + { + "answers": [ + "να βγαίνουν έξω", + "βόλτες" + ], + "en_answers": [ + "to go out", + "walks" + ], + "count": 2 + }, + { + "answers": [ + "γυμναστήριο", + "γυμναστηριο" + ], + "en_answers": [ + "gym" + ], + "count": 1 + }, + { + "answers": [ + "μπαρ", + "μπαρ / καφέ" + ], + "en_answers": [ + "bar / cafe" + ], + "count": 1 + }, + { + "answers": [ + "βόλτα στα μαγαζιά" + ], + "en_answers": [ + "shopping" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-42": { + "question": "Ποια είναι μια συνηθισμένη δραστηριότητα ελεύθερου χρόνου για άνδρες στα 20 τους στην Ελλάδα;", + "en_question": "What is the common leisure activity that males in their 20s in your country engage in?", + "annotations": [ + { + "answers": [ + "ποδόσφαιρο", + "ποδοσφαιρο" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "παιχνίδια σε υπολογιστή" + ], + "en_answers": [ + "computer games" + ], + "count": 1 + }, + { + "answers": [ + "καφές με φίλους" + ], + "en_answers": [ + "coffee with friends" + ], + "count": 1 + }, + { + "answers": [ + "τζόγος" + ], + "en_answers": [ + "gambling" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-46": { + "question": "Πόσο καιρό (σε ώρες) συνήθως κάνουν διάλειμμα οι άνθρωποι μετά το μεσημεριανό γεύμα μια καθημερινή στην Ελλάδα; (Δώστε αριθμούς σε αραβικά ψηφία μέχρι μία δεκαδική ψηφία (π.χ., 2, 3.5) μόνο.)", + "en_question": "How long (in hours) do people usually take a break after lunch on a weekday in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 3 + }, + { + "answers": [ + "0.5" + ], + "en_answers": [ + "0.5" + ], + "count": 1 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-48": { + "question": "Τι τρώνε οι άνθρωποι για μεσημεριανό κατά τις εργάσιμες ημέρες στην Ελλάδα;", + "en_question": "What do people eat for lunch during the working days in your country?", + "annotations": [ + { + "answers": [ + "κρέας" + ], + "en_answers": [ + "meat" + ], + "count": 1 + }, + { + "answers": [ + "μακαρόνια" + ], + "en_answers": [ + "pasta" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 4, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-50": { + "question": "Ποια είναι η μέση διάρκεια της καθημερινής μετακίνησης (σε λεπτά) για τους ανθρώπους στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 1).)", + "en_question": "What is the average commute time (in minutes) for people in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + }, + { + "answers": [ + "60", + "αθήνα ~60 λεπτά" + ], + "en_answers": [ + "60" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-51": { + "question": "Ποιο είναι το πιο συνηθισμένο μέσο μεταφοράς που χρησιμοποιούν οι άνθρωποι για να πάνε στη δουλειά στην Ελλάδα;", + "en_question": "What is the most common transportation that people take to get to work in your country?", + "annotations": [ + { + "answers": [ + "μετρό" + ], + "en_answers": [ + "metro" + ], + "count": 3 + }, + { + "answers": [ + "αυτοκίνητο", + "αυτοκινητο", + "αμάξι" + ], + "en_answers": [ + "car" + ], + "count": 2 + }, + { + "answers": [ + "λεωφορείο" + ], + "en_answers": [ + "bus" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-54": { + "question": "Πόσο διαρκεί (σε ημέρες) η άδεια γάμου στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 12).)", + "en_question": "How long (in days) is the marriage leave in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 2 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "14" + ], + "en_answers": [ + "14" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-56": { + "question": "Ποια είναι η τυπική ηλικία συνταξιοδότησης για τις γυναίκες στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 12).)", + "en_question": "What is the typical retirement age for women in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "67" + ], + "en_answers": [ + "67" + ], + "count": 2 + }, + { + "answers": [ + "68" + ], + "en_answers": [ + "68" + ], + "count": 1 + }, + { + "answers": [ + "62" + ], + "en_answers": [ + "62" + ], + "count": 1 + }, + { + "answers": [ + "64" + ], + "en_answers": [ + "64" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-57": { + "question": "Ποια είναι η τυπική ηλικία συνταξιοδότησης για τους άνδρες στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 12).)", + "en_question": "What is the typical retirement age for men in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "67" + ], + "en_answers": [ + "67" + ], + "count": 3 + }, + { + "answers": [ + "65" + ], + "en_answers": [ + "65" + ], + "count": 2 + }, + { + "answers": [ + "62" + ], + "en_answers": [ + "62" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-58": { + "question": "Ποιά είναι η πιο σεβαστή επαγγελματική ιδιότητα στην Ελλάδα;", + "en_question": "Which profession is the most respected in your country?", + "annotations": [ + { + "answers": [ + "γιατρός", + "γιατρος" + ], + "en_answers": [ + "doctor" + ], + "count": 3 + }, + { + "answers": [ + "δικηγόρος", + "δικηγορος" + ], + "en_answers": [ + "lawyer" + ], + "count": 3 + }, + { + "answers": [ + "πυροσβέστης" + ], + "en_answers": [ + "firefighter" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-60": { + "question": "Ποια είναι η διάρκεια (σε ώρες) μιας τυπικής εργάσιμης ημέρας στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (0~24).)", + "en_question": "What is the duration (in hours) of a typical workday in your country? (Provide Arabic numerals (0~24) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 3 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 3 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-61": { + "question": "Ποιά είναι η πιο προτιμώμενη επαγγελματική ασχολία από τις γυναίκες στην Ελλάδα;", + "en_question": "Which occupation is most preferred among females in your country?", + "annotations": [ + { + "answers": [ + "εκπαιδευτικός", + "δασκάλα", + "δασκαλα" + ], + "en_answers": [ + "educator", + "teacher" + ], + "count": 2 + }, + { + "answers": [ + "ψυχολόγος" + ], + "en_answers": [ + "psychologist" + ], + "count": 1 + }, + { + "answers": [ + "φαρμακοποιός" + ], + "en_answers": [ + "pharmacist" + ], + "count": 1 + }, + { + "answers": [ + "κομμώτριες", + "κομμώτρια" + ], + "en_answers": [ + "hairdressers" + ], + "count": 1 + }, + { + "answers": [ + "γραμματεία", + "γραμματεια", + "γραμματέας" + ], + "en_answers": [ + "secretariat" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Jod-ch-62": { + "question": "Ποιά είναι η πιο προτιμώμενη επαγγελματική ασχολία ανάμεσα στους άνδρες στην Ελλάδα;", + "en_question": "Which occupation is most preferred among males in your country?", + "annotations": [ + { + "answers": [ + "γιατρός", + "γιατρος" + ], + "en_answers": [ + "doctor" + ], + "count": 1 + }, + { + "answers": [ + "πολιτκός μηχανικός", + "πολιτικοσ μηχανικος" + ], + "en_answers": [ + "civil engineer" + ], + "count": 1 + }, + { + "answers": [ + "δημόσιος υπάλληλος", + "δημόσιοσ υπάλληλος" + ], + "en_answers": [ + "public servant" + ], + "count": 1 + }, + { + "answers": [ + "σερβιτόροι", + "σερβιτοροι", + "σερβιτόρος" + ], + "en_answers": [ + "waiters" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ki-pe-17": { + "question": "Κατά μέσο όρο, μέχρι ποιο στάδιο συνήθως φτάνουν οι μαθητές στην εκπαίδευσή τους στην Ελλάδα; (π.χ. δημοτικό, λύκειο)", + "en_question": "On average, how far do students typically pursue their education in your country? (e.g., elementary, high school)", + "annotations": [ + { + "answers": [ + "λύκειο" + ], + "en_answers": [ + "high school" + ], + "count": 5 + }, + { + "answers": [ + "γυμνάσιο" + ], + "en_answers": [ + "gymnasium" + ], + "count": 2 + }, + { + "answers": [ + "δημοτικό" + ], + "en_answers": [ + "elementary" + ], + "count": 1 + }, + { + "answers": [ + "αει", + "πανεπισήμιο", + "πολυτεχνείο" + ], + "en_answers": [ + "university" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-24": { + "question": "Ποια γλώσσα διδάσκεται στα σχολεία στην Ελλάδα πέρα από τα Αγγλικά;", + "en_question": "What language is taught in schools in your country besides English?", + "annotations": [ + { + "answers": [ + "γερμανικά" + ], + "en_answers": [ + "german" + ], + "count": 5 + }, + { + "answers": [ + "γαλλικά" + ], + "en_answers": [ + "french" + ], + "count": 5 + }, + { + "answers": [ + "ελληνικά" + ], + "en_answers": [ + "greek" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-30": { + "question": "Ποιες μέρες της εβδομάδας είναι κλειστά τα σχολεία στην Ελλάδα;", + "en_question": "What days of the week are schools closed in your country?", + "annotations": [ + { + "answers": [ + "σάββατο", + "σαββατο και κυριακη" + ], + "en_answers": [ + "saturday" + ], + "count": 3 + }, + { + "answers": [ + "κυριακή", + "σαββατο και κυριακη" + ], + "en_answers": [ + "sunday" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-32": { + "question": "Τι φαγητό συνήθως ετοιμάζουν οι οικοδεσπότες για τους καλεσμένους στην Ελλάδα;", + "en_question": "What food do the hosts usually prepare for the guests in your country?", + "annotations": [ + { + "answers": [ + "σαλάτες", + "σαλατες", + "σαλάτα", + "φέτα και σαλάτα" + ], + "en_answers": [ + "salads", + "feta and salad" + ], + "count": 3 + }, + { + "answers": [ + "μουσακά", + "μουσακα" + ], + "en_answers": [ + "moussaka" + ], + "count": 1 + }, + { + "answers": [ + "κρέας" + ], + "en_answers": [ + "meat" + ], + "count": 1 + }, + { + "answers": [ + "μακαρόνια" + ], + "en_answers": [ + "pasta" + ], + "count": 1 + }, + { + "answers": [ + "πατάτες τηγανητές", + "πατάτες τηγανητές με κάποιου είδους συνοδευτικό (τύπου τζατζίκι ή τυροκαυτερή)" + ], + "en_answers": [ + "french fries" + ], + "count": 1 + }, + { + "answers": [ + "τζατζίκι", + "πατάτες τηγανητές με κάποιου είδους συνοδευτικό (τύπου τζατζίκι ή τυροκαυτερή)" + ], + "en_answers": [ + "tzatziki" + ], + "count": 1 + }, + { + "answers": [ + "τυροκαυτερή", + "πατάτες τηγανητές με κάποιου είδους συνοδευτικό (τύπου τζατζίκι ή τυροκαυτερή)" + ], + "en_answers": [ + "spicy cheese dip" + ], + "count": 1 + }, + { + "answers": [ + "κρέας στο φούρνο", + "κάποιο κρεατικό ψημένο στον φούρνο (π.χ. κοτόπουλο" + ], + "en_answers": [ + "oven baked meat" + ], + "count": 1 + }, + { + "answers": [ + "κοτόπουλο στο φούρνο", + "κάποιο κρεατικό ψημένο στον φούρνο (π.χ. κοτόπουλο" + ], + "en_answers": [ + "oven baked chicken" + ], + "count": 1 + }, + { + "answers": [ + "μπριζόλες" + ], + "en_answers": [ + "pork chops" + ], + "count": 1 + }, + { + "answers": [ + "πανσέτες", + "πανσέτες)" + ], + "en_answers": [ + "pork belly" + ], + "count": 1 + }, + { + "answers": [ + "φέτα", + "φέτα και σαλάτα" + ], + "en_answers": [ + "feta and salad" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ki-pe-34": { + "question": "Ποιο είναι το συνηθισμένο ποτό στο πρωινό στην Ελλάδα;", + "en_question": "What is the usual drink in the breakfast in your country?", + "annotations": [ + { + "answers": [ + "καφές", + "καφες" + ], + "en_answers": [ + "coffee" + ], + "count": 4 + }, + { + "answers": [ + "γάλα" + ], + "en_answers": [ + "milk" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-36": { + "question": "Εκτός από τα φαγητά Ελληνικής προέλευσης, ποιας χώρας το φαγητό είναι πιο δημοφιλές στην Ελλάδα;", + "en_question": "Except the food original from your country, which country's food is more popular in your country?", + "annotations": [ + { + "answers": [ + "ιταλία", + "ιταλική κουζίνα" + ], + "en_answers": [ + "italy", + "italian cuisine" + ], + "count": 2 + }, + { + "answers": [ + "ασιατική" + ], + "en_answers": [ + "asian" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 0 + } + }, + "Ki-pe-39": { + "question": "Τι φαγητό συνήθως ετοιμάζεται για ένα οικογενειακό πικνίκ στην Ελλάδα;", + "en_question": "What food is usually prepared for a family picnic in your country?", + "annotations": [ + { + "answers": [ + "τοστ", + "κρύο σάντουιτς", + "σάντουιτς" + ], + "en_answers": [ + "toast", + "cold sandwich", + "sandwich" + ], + "count": 3 + }, + { + "answers": [ + "κρέας ψητό" + ], + "en_answers": [ + "roast meat" + ], + "count": 1 + }, + { + "answers": [ + "παστίτσιο" + ], + "en_answers": [ + "pastitsio" + ], + "count": 1 + }, + { + "answers": [ + "μουσακά" + ], + "en_answers": [ + "moussaka" + ], + "count": 1 + }, + { + "answers": [ + "κεφτεδάκια" + ], + "en_answers": [ + "meatballs" + ], + "count": 1 + }, + { + "answers": [ + "χωριάτικη σαλάτα" + ], + "en_answers": [ + "greek salad" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-40": { + "question": "Ποιο φαγητό από την Ελλάδα θεωρείται αηδιαστικό από τον υπόλοιπο κόσμο;", + "en_question": "Which food from your country is considered disgusting by the rest of the world?", + "annotations": [ + { + "answers": [ + "κοκορέτσι", + "κοκορετσι" + ], + "en_answers": [ + "kokoretsi" + ], + "count": 3 + }, + { + "answers": [ + "πατσάς", + "πατσας" + ], + "en_answers": [ + "tripe soup" + ], + "count": 2 + }, + { + "answers": [ + "αμελέτητα" + ], + "en_answers": [ + "unstudied" + ], + "count": 1 + }, + { + "answers": [ + "σαλιγκάρια", + "σαλιγκαρια" + ], + "en_answers": [ + "snails" + ], + "count": 1 + } + ], + "idks": { + "δεν έχουμε": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-43": { + "question": "Πώς ονομάζεται το πιο δημοφιλές ψωμί στην Ελλάδα;", + "en_question": "What is the name of the popular bread in your country?", + "annotations": [ + { + "answers": [ + "μπαγκέτα" + ], + "en_answers": [ + "baguette" + ], + "count": 1 + }, + { + "answers": [ + "προζυμένιο" + ], + "en_answers": [ + "sourdough" + ], + "count": 1 + }, + { + "answers": [ + "πολύσπορο" + ], + "en_answers": [ + "multigrain" + ], + "count": 1 + }, + { + "answers": [ + "καραμολέγκος", + "καραμολεγκος" + ], + "en_answers": [ + "κaramolegos" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ki-pe-51": { + "question": "Τι ώρα κλείνουν τα κρατικά γραφεία στην Ελλάδα; (Απαντήστε σε μορφή ΩΩ:ΛΛ, π.χ., 18:00, 09:00).", + "en_question": "What time of day are government offices closed in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 4 + }, + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-53": { + "question": "Ποια είναι η κανονική ώρα έναρξης των κρατικών γραφείων στην Ελλάδα; (Απαντήστε σε μορφή ΩΩ:ΛΛ, π.χ., 18:00, 09:00).", + "en_question": "What is the normal start time of government offices in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 3 + }, + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-01": { + "question": "Ποια εθνική αργία έχει τη μεγαλύτερη διάρκεια στην Ελλάδα;", + "en_question": "What national holiday has the longest duration in your country?", + "annotations": [ + { + "answers": [ + "πάσχα" + ], + "en_answers": [ + "easter" + ], + "count": 4 + }, + { + "answers": [ + "χριστούγεννα" + ], + "en_answers": [ + "christmas" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-02": { + "question": "Ποιες είναι οι συνηθισμένες δραστηριότητες που κάνουν οι Έλληνες για να γιορτάσουν την Ημέρα της Ανεξαρτησίας;", + "en_question": "What are the common activities people from your country do to celebrate Independence day?", + "annotations": [ + { + "answers": [ + "παρέλαση", + "παρελαση", + "παρευρίσκονται στην παρέλαση" + ], + "en_answers": [ + "parade", + "are present at the parade" + ], + "count": 2 + }, + { + "answers": [ + "τρώνε έξω", + "τρωνε εξω" + ], + "en_answers": [ + "eating out" + ], + "count": 1 + }, + { + "answers": [ + "ξεκούραση", + "ξεκουραση" + ], + "en_answers": [ + "rest" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "Kik-in-04": { + "question": "Τι τοποθετείται μπροστά από το σπίτι όταν πεθαίνει ένα μέλος της οικογένειας στην Ελλάδα;", + "en_question": "What is installed in front of the house when a family member dies in your country?", + "annotations": [ + { + "answers": [ + "κηδειόχαρτο", + "χαρτί", + "χαρτι", + "κηδειοχαρτο" + ], + "en_answers": [ + "obituary" + ], + "count": 3 + }, + { + "answers": [ + "η κάσα", + "φέρετρο" + ], + "en_answers": [ + "coffin" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Kik-in-05": { + "question": "Πότε συνήθως γίνεται η γιορτή ή η τελετή για την εγκυμοσύνη στην Ελλάδα;", + "en_question": "When is a pregnancy celebration or ceremony usually held in your country?", + "annotations": [], + "idks": { + "not-applicable": 3, + "Δεν γνωρίζω": 1, + "no-answer": 1, + "idk": 1 + } + }, + "Kik-in-06": { + "question": "Ποια εκδήλωση συνήθως πραγματοποιείται πριν από έναν γάμο στην Ελλάδα;", + "en_question": "What event is usually held before a wedding in your country?", + "annotations": [ + { + "answers": [ + "αρραβώνας" + ], + "en_answers": [ + "engagement" + ], + "count": 3 + }, + { + "answers": [ + "μπάτσελορ" + ], + "en_answers": [ + "bachelor party" + ], + "count": 1 + }, + { + "answers": [ + "το στρώσιμο του κρεβατιού", + "το στρόσιμο του κρεβατιού" + ], + "en_answers": [ + "the making of the bed" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-07": { + "question": "Τι συνήθως μοιράζεται στα παιδιά κατά τη διάρκεια του (Λουνάρ) Νέου Έτους στην Ελλάδα;", + "en_question": "What is usually shared to the children during (Lunar) New Year in your country?", + "annotations": [ + { + "answers": [ + "βασιλόπιτα" + ], + "en_answers": [ + "vasilopita" + ], + "count": 1 + }, + { + "answers": [ + "παιχνίδια", + "παιχνιδια" + ], + "en_answers": [ + "games" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "no-answer": 1, + "idk": 0 + } + }, + "Kik-in-08": { + "question": "Ποιες δραστηριότητες συνήθως γίνονται λίγες μέρες πριν από το Ραμαζάνι στην Ελλάδα;", + "en_question": "What activities are usually done days before Ramadan in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 1, + "no-answer": 0 + } + }, + "Kik-in-10": { + "question": "Ποιο είναι το πιο δημοφιλές τουριστικό αξιοθέατο για τους ξένους επισκέπτες στην Ελλάδα;", + "en_question": "What is the most popular tourist attraction for foreign visitors in your country?", + "annotations": [ + { + "answers": [ + "ακρόπολη", + "ακροπολη" + ], + "en_answers": [ + "acropolis" + ], + "count": 3 + }, + { + "answers": [ + "παρθενωνας", + "παρθενώνας" + ], + "en_answers": [ + "parthenon" + ], + "count": 2 + }, + { + "answers": [ + "νησιά", + "νησια" + ], + "en_answers": [ + "islands" + ], + "count": 1 + }, + { + "answers": [ + "παραλίες", + "παραλιες" + ], + "en_answers": [ + "beaches" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-11": { + "question": "Ποιοι είναι οι πιο δημοφιλείς θρησκευτικοί χώροι (ναός, εκκλησία κλπ.) για τουρισμό στην Ελλάδα;", + "en_question": "What is the most popular religious sites (temple, church, etc.) for tourism in your country?", + "annotations": [ + { + "answers": [ + "άγιο όρος" + ], + "en_answers": [ + "mount athos" + ], + "count": 2 + }, + { + "answers": [ + "αρχαίοι ναοί", + "αρχαιοι ναοι", + "αρχαιοελληνικοί ναοί", + "αρχαιοελληνικοί ναοι" + ], + "en_answers": [ + "ancient temples", + "ancient greek temples" + ], + "count": 2 + }, + { + "answers": [ + "μοναστήρια", + "μοναστηρια" + ], + "en_answers": [ + "monasteries" + ], + "count": 1 + }, + { + "answers": [ + "μετέωρα" + ], + "en_answers": [ + "meteora" + ], + "count": 1 + }, + { + "answers": [ + "εκκλησιά" + ], + "en_answers": [ + "church" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Kik-in-15": { + "question": "Τι ρούχα φορούν συνήθως οι γυναίκες στην τελετή αποφοίτησης στην Ελλάδα;", + "en_question": "What clothes do women usually wear on graduation commencement ceremony in your country?", + "annotations": [ + { + "answers": [ + "ταγέρ", + "ταγερ" + ], + "en_answers": [ + "suit" + ], + "count": 2 + }, + { + "answers": [ + "τήβεννο", + "τήβεννος" + ], + "en_answers": [ + "graduation gown" + ], + "count": 2 + }, + { + "answers": [ + "επίσημα", + "επισημα" + ], + "en_answers": [ + "smart dressing" + ], + "count": 1 + }, + { + "answers": [ + "φόρεμα" + ], + "en_answers": [ + "dress" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-16": { + "question": "Ποιο ποτό καταναλώνεται συνήθως στην Ελλάδα όταν ο καιρός είναι κρύος;", + "en_question": "What drink is commonly consumed in your country when the weather is cold?", + "annotations": [ + { + "answers": [ + "τσίπουρο" + ], + "en_answers": [ + "tsipouro" + ], + "count": 3 + }, + { + "answers": [ + "ούζο" + ], + "en_answers": [ + "ouzo" + ], + "count": 2 + }, + { + "answers": [ + "κρασί" + ], + "en_answers": [ + "wine" + ], + "count": 1 + }, + { + "answers": [ + "ρακόμελο" + ], + "en_answers": [ + "rakomelo" + ], + "count": 1 + }, + { + "answers": [ + "ρακί" + ], + "en_answers": [ + "raki" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-17": { + "question": "Ποιο φρούτο πωλείται και βρίσκεται συχνότερα κατά τη διάρκεια του Ραμαζανιού στην Ελλάδα;", + "en_question": "What fruit is more commonly sold and found during Ramadan in your country?", + "annotations": [ + { + "answers": [ + "φράουλες" + ], + "en_answers": [ + "strawberries" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 0 + } + }, + "Kik-in-24": { + "question": "Ποιο υδατάνθρακα συνήθως σερβίρεται με κοτόπουλο σε ένα fast-food εστιατόριο στην Ελλάδα;", + "en_question": "What carbohydrate is usually served with chicken in a fast-food restaurant in your country?", + "annotations": [ + { + "answers": [ + "τηγανιτές πατάτες", + "τηγανητές πατάτες", + "πατατες τηγανητες" + ], + "en_answers": [ + "french fries" + ], + "count": 4 + }, + { + "answers": [ + "πατάτες" + ], + "en_answers": [ + "potatoes" + ], + "count": 1 + }, + { + "answers": [ + "ρύζι" + ], + "en_answers": [ + "rice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-31": { + "question": "Ποιο είναι το πιο διάσημο πολεμικό άθλημα στην Ελλάδα;", + "en_question": "What is the most famous martial art sports in your country?", + "annotations": [ + { + "answers": [ + "μποξ", + "box", + "πυγμαχία", + "πυγμαχια" + ], + "en_answers": [ + "boxing" + ], + "count": 2 + }, + { + "answers": [ + "καράτε" + ], + "en_answers": [ + "karate" + ], + "count": 1 + }, + { + "answers": [ + "ξιφομαχία" + ], + "en_answers": [ + "fencing" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Kik-in-34": { + "question": "Ποια αθλήματα μεταδίδονται συχνά στην εθνική τηλεόραση στην Ελλάδα;", + "en_question": "What sports are often broadcasted on national television in your country?", + "annotations": [ + { + "answers": [ + "ποδόσφαιρο", + "ποδοσφαιρο" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "μπάσκετ", + "μπασκετ" + ], + "en_answers": [ + "basketball" + ], + "count": 4 + }, + { + "answers": [ + "βόλεϊ", + "βόλλευ" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-35": { + "question": "Ποια αθλήματα ήταν δημοφιλή μεταξύ των ανθρώπων από την Ελλάδα κατά τη διάρκεια της πανδημίας COVID-19;", + "en_question": "What sports were popular among people from your country during the COVID-19 pandemic?", + "annotations": [ + { + "answers": [ + "ποδόσφαιρο" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "τρέξιμο" + ], + "en_answers": [ + "running" + ], + "count": 1 + }, + { + "answers": [ + "μπάσκετ" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "τένις" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Kik-in-36": { + "question": "Ποιος είναι ο πιο δημοφιλής προπονητής ποδοσφαίρου στην Ελλάδα;", + "en_question": "Who is the most popular soccer coach in your country?", + "annotations": [ + { + "answers": [ + "φατίχ τερίμ", + "φατιχ τεριμ" + ], + "en_answers": [ + "fatih terim" + ], + "count": 2 + }, + { + "answers": [ + "λουτσέσκου" + ], + "en_answers": [ + "lucescu" + ], + "count": 1 + }, + { + "answers": [ + "ντιέγκο σιμεόνε" + ], + "en_answers": [ + "diego simeone" + ], + "count": 1 + }, + { + "answers": [ + "μπαρτζώκας", + "μπαρτζωκας" + ], + "en_answers": [ + "bartzokas" + ], + "count": 1 + }, + { + "answers": [ + "αταμάν", + "αταμαν" + ], + "en_answers": [ + "ataman" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Kik-in-37": { + "question": "Ποιες ποδοσφαιρικές ομάδες στην Ελλάδα είναι διάσημες για τον έντονο ανταγωνισμό τους; (π.χ. ___ έναντι ___)", + "en_question": "What soccer teams in your country are famous for their intense rivalry? (e.g. ___ vs ___)", + "annotations": [ + { + "answers": [ + "ολυμπιακός έναντι παναθηναϊκός", + "ολυμπιακός έναντι παναθηναικός", + "παναθηναϊκός έναντι ολυμπιακού", + "παναθηναϊκός εναντι ολυμπιακου" + ], + "en_answers": [ + "olympiacos versus panathinaikos", + "panathinaikos against olympiacos" + ], + "count": 4 + }, + { + "answers": [ + "αεκ έναντι παοκ" + ], + "en_answers": [ + "aek vs paok" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-38": { + "question": "Πώς λέγονται οι οπαδοί του ποδοσφαίρου στην Ελλάδα που είναι διάσημοι για τον έντονο ανταγωνισμό τους; (π.χ. ___ έναντι ___)", + "en_question": "What are the names of soccer supporters in your country who are famous for their intense rivalry? (e.g. ___ vs ___)", + "annotations": [ + { + "answers": [ + "φανατικοί", + "φανατικοι" + ], + "en_answers": [ + "fanatics" + ], + "count": 2 + }, + { + "answers": [ + "γαύροι", + "γαυροι" + ], + "en_answers": [ + "gavroi" + ], + "count": 1 + }, + { + "answers": [ + "αεκτζήδες", + "αεκτζηδες" + ], + "en_answers": [ + "aektzides" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-40": { + "question": "Ποιος είναι ο πιο διάσημος ανδρικός παίκτης μπάντμιντον στην Ελλάδα;", + "en_question": "Who is the most famous male badminton player in your country?", + "annotations": [], + "idks": { + "idk": 5, + "not-applicable": 4, + "no-answer": 0 + } + }, + "Kik-in-41": { + "question": "Ποια είναι η πιο διάσημη γυναίκα παίκτρια του μπάντμιντον στην Ελλάδα;", + "en_question": "Who is the most famous female badminton player in your country?", + "annotations": [], + "idks": { + "idk": 5, + "not-applicable": 4, + "no-answer": 0 + } + }, + "Kik-in-44": { + "question": "Ποιο άθλημα λαμβάνει την περισσότερη υποστήριξη από την κυβέρνηση στην Ελλάδα;", + "en_question": "What sport gets the most support from the government in your country?", + "annotations": [ + { + "answers": [ + "ποδόσφαιρο", + "ποδοσφαιρο" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "μπάσκετ", + "μπασκετ" + ], + "en_answers": [ + "basketball" + ], + "count": 3 + }, + { + "answers": [ + "κανένα", + "κανενα" + ], + "en_answers": [ + "none" + ], + "count": 1 + }, + { + "answers": [ + "στίβος" + ], + "en_answers": [ + "track and field" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-45": { + "question": "Ποιες εγκαταστάσεις αθλητικών γηπέδων είναι συνήθως διαθέσιμες στα σχολεία στην Ελλάδα;", + "en_question": "What sports field facilities are usually available at schools in your country?", + "annotations": [ + { + "answers": [ + "μπάσκετ", + "γήπεδο μπάσκετ", + "γηπεδο μπασκετ" + ], + "en_answers": [ + "basketball", + "basketball court" + ], + "count": 4 + }, + { + "answers": [ + "ποδόσφαιρο", + "ποδοσφαίρου" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "βόλεϊ", + "βόλλεϊ" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-02": { + "question": "Ποιο ρόφημα καφενείου απολαμβάνουν πιο συχνά οι Έλληνες;", + "en_question": "What cafe beverage do people from your country most commonly enjoy?", + "annotations": [ + { + "answers": [ + "φραπέ", + "φραπές" + ], + "en_answers": [ + "frappe" + ], + "count": 3 + }, + { + "answers": [ + "καφέ", + "καφές" + ], + "en_answers": [ + "coffee" + ], + "count": 2 + }, + { + "answers": [ + "espresso freddo", + "φρέντο εσπρέσσο", + "fredo espresso" + ], + "en_answers": [ + "cold espresso", + "freddo espresso" + ], + "count": 2 + }, + { + "answers": [ + "ελληνικός καφές" + ], + "en_answers": [ + "greek coffee" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-04": { + "question": "Ποια είναι η προτιμώμενη τροφή για τη θεραπεία του hangover για τους ανθρώπους από την Ελλάδα;", + "en_question": "What is the preferred hangover cure food for people from your country?", + "annotations": [ + { + "answers": [ + "πατσάς" + ], + "en_answers": [ + "tripe soup" + ], + "count": 2 + }, + { + "answers": [ + "αυγά", + "αυγα" + ], + "en_answers": [ + "eggs" + ], + "count": 1 + }, + { + "answers": [ + "ηλεκτρολύτες" + ], + "en_answers": [ + "electrolytes" + ], + "count": 1 + }, + { + "answers": [ + "μήλα" + ], + "en_answers": [ + "apples" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Na-ko-05": { + "question": "Ποιο είναι το τυπικό φαγητό που παραδίδεται (delivery/ντελίβερι) στην Ελλάδα;", + "en_question": "What is the typical delivery food in your country?", + "annotations": [ + { + "answers": [ + "σουβλάκια", + "σουβλακια", + "σουβλάκι" + ], + "en_answers": [ + "souvlaki" + ], + "count": 4 + }, + { + "answers": [ + "πίτσα", + "πιτσα" + ], + "en_answers": [ + "pizza" + ], + "count": 3 + }, + { + "answers": [ + "γύρος" + ], + "en_answers": [ + "gyros" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-07": { + "question": "Ποιο είδος κρέατος καταναλώνεται περισσότερο από τους Έλληνες;", + "en_question": "What type of meat is consumed most by people from your country?", + "annotations": [ + { + "answers": [ + "χοιρινό", + "χοιρινο" + ], + "en_answers": [ + "pork" + ], + "count": 3 + }, + { + "answers": [ + "κοτόπουλο", + "κατόπουλο" + ], + "en_answers": [ + "chicken" + ], + "count": 3 + }, + { + "answers": [ + "μοσχάρι", + "μοσχαρι" + ], + "en_answers": [ + "beef" + ], + "count": 2 + }, + { + "answers": [ + "αρνί", + "αρνι" + ], + "en_answers": [ + "lamb" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-08": { + "question": "Ποιο φρούτο τρώνε συχνά οι άνθρωποι στην Ελλάδα κατά τη διάρκεια του φθινοπώρου;", + "en_question": "What fruit do people from your country often eat in the autumn season?", + "annotations": [ + { + "answers": [ + "μήλα", + "μήλο", + "μηλο" + ], + "en_answers": [ + "apples", + "apple" + ], + "count": 5 + }, + { + "answers": [ + "σταφύλι", + "σταφυλή", + "σταφύλια" + ], + "en_answers": [ + "grape" + ], + "count": 1 + }, + { + "answers": [ + "πορτοκάλια", + "πορτοκάλι" + ], + "en_answers": [ + "oranges" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-09": { + "question": "Ποιο συνοδευτικό πιάτο σερβίρεται πιο συχνά σε ένα τραπέζι στην Ελλάδα;", + "en_question": "What side dish is the most commonly served on a dining table in your country?", + "annotations": [ + { + "answers": [ + "σαλάτα", + "σαλατα" + ], + "en_answers": [ + "salad" + ], + "count": 2 + }, + { + "answers": [ + "πίτα" + ], + "en_answers": [ + "pie" + ], + "count": 1 + }, + { + "answers": [ + "τζατζίκι" + ], + "en_answers": [ + "tzatziki" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-11": { + "question": "Τι τρώνε οι άνθρωποι από την Ελλάδα ενώ παρακολουθούν έναν αγώνα ποδοσφαίρου;", + "en_question": "What do people from your country eat while watching a soccer game?", + "annotations": [ + { + "answers": [ + "πίτσα", + "πιτσα" + ], + "en_answers": [ + "pizza" + ], + "count": 4 + }, + { + "answers": [ + "σουβλάκια", + "σουβλακια", + "σουβλάκι" + ], + "en_answers": [ + "souvlaki" + ], + "count": 3 + }, + { + "answers": [ + "κινέζικο" + ], + "en_answers": [ + "chinese" + ], + "count": 1 + }, + { + "answers": [ + "πιτόγυρα", + "πιτογυρα", + "πίτα σουβλάκι", + "πίτα γύρο" + ], + "en_answers": [ + "pita gyro" + ], + "count": 1 + }, + { + "answers": [ + "πατατάκια", + "πατατακια" + ], + "en_answers": [ + "potato chips" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-15": { + "question": "Ποιο είναι το αντιπροσωπευτικό θρεπτικό φαγητό στην Ελλάδα;", + "en_question": "What is the representative nourishing food in your country?", + "annotations": [ + { + "answers": [ + "ελαιόλαδο" + ], + "en_answers": [ + "olive oil" + ], + "count": 1 + }, + { + "answers": [ + "μακαρόνια με κιμά" + ], + "en_answers": [ + "pasta with minced meat" + ], + "count": 1 + }, + { + "answers": [ + "λάδι", + "λαδι" + ], + "en_answers": [ + "oil" + ], + "count": 1 + }, + { + "answers": [ + "μουσακάς" + ], + "en_answers": [ + "moussaka" + ], + "count": 1 + }, + { + "answers": [ + "γύρος" + ], + "en_answers": [ + "gyros" + ], + "count": 1 + }, + { + "answers": [ + "ελιά" + ], + "en_answers": [ + "olive" + ], + "count": 1 + }, + { + "answers": [ + "φακές" + ], + "en_answers": [ + "lentils" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-16": { + "question": "Ποιος είναι ο πιο διάσημος ποδοσφαιριστής στην Ελλάδα;", + "en_question": "Who is the most famous soccer player in your country?", + "annotations": [ + { + "answers": [ + "zαγοράκης", + "ζαγοράκης", + "θεόδωρος ζαγοράκης" + ], + "en_answers": [ + "zagorakis", + "theodoros zagorakis" + ], + "count": 2 + }, + { + "answers": [ + "γιώργος κούδας" + ], + "en_answers": [ + "giorgos koudas" + ], + "count": 1 + }, + { + "answers": [ + "άγγελος χαριστέας" + ], + "en_answers": [ + "angelos charisteas" + ], + "count": 1 + }, + { + "answers": [ + "μέσι", + "μεσι" + ], + "en_answers": [ + "messi" + ], + "count": 1 + }, + { + "answers": [ + "γιώργος καραγκούνης", + "γιωργος καραγκουνης" + ], + "en_answers": [ + "giorgos karagounis" + ], + "count": 1 + }, + { + "answers": [ + "φορτούνης" + ], + "en_answers": [ + "fortounis" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-17": { + "question": "Ποια αθλήματα απολαμβάνουν οι άνδρες μαθητές κατά τη διάρκεια του διαλείμματος του μεσημεριανού φαγητού στο σχολείο στην Ελλάδα;", + "en_question": "What sports do male students enjoy during lunch time at school in your country?", + "annotations": [ + { + "answers": [ + "ποδόσφαιρο", + "ποδοσφαιρο" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "βόλεϊ", + "βόλλευ" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "μπάσκετ", + "μπασκετ" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-18": { + "question": "Ποιο είναι το πιο συνηθισμένο άθλημα στο οποίο συμμετέχουν τα κορίτσια κατά τη διάρκεια των μαθημάτων φυσικής αγωγής στην Ελλάδα;", + "en_question": "What is the most common sport girls participate in during physical education classes in your country?", + "annotations": [ + { + "answers": [ + "βόλεϊ", + "βολλευ", + "βολει", + "βόλει" + ], + "en_answers": [ + "volleyball" + ], + "count": 3 + }, + { + "answers": [ + "ποδόσφαιρο", + "ποδοσφαιρο" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "τρέξιμο" + ], + "en_answers": [ + "running" + ], + "count": 1 + }, + { + "answers": [ + "μπάσκετ" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-19": { + "question": "Ποιος είναι ο πιο δημοφιλής παίκτης βόλεϊ στην Ελλάδα;", + "en_question": "Who is the most popular volleyball player in your country?", + "annotations": [ + { + "answers": [ + "πρωτοψάλτης", + "πρωτοψαλτης" + ], + "en_answers": [ + "protopsaltis" + ], + "count": 1 + }, + { + "answers": [ + "εύα χαντάβα", + "εύα χανταβά" + ], + "en_answers": [ + "eva chantava" + ], + "count": 1 + } + ], + "idks": { + "idk": 6, + "Δεν γνωρίζω": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-20": { + "question": "Ποια αθλητική εκδήλωση υποστηρίζουν πιο παθιασμένα οι Έλληνες στους διεθνείς αγώνες;", + "en_question": "What sports event do people from your country passionately support the most in international competitions?", + "annotations": [ + { + "answers": [ + "ευρωμπάσκετ", + "ευρωμπασκετ" + ], + "en_answers": [ + "eurobasket" + ], + "count": 1 + }, + { + "answers": [ + "champions league", + "τσάμπιονς λιγκ" + ], + "en_answers": [ + "champions league" + ], + "count": 1 + }, + { + "answers": [ + "mundial", + "παγκόσμιο κύπελλο ποδοσφαίρου", + "παγκόσμιο κύπελλο" + ], + "en_answers": [ + "fifa world cup" + ], + "count": 1 + }, + { + "answers": [ + "euro", + "ευρωπαϊκό πρωτάθλημα ποδοσφαίρου" + ], + "en_answers": [ + "uefa european championship" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 3, + "not-applicable": 0 + } + }, + "Na-ko-22": { + "question": "Ποια χώρα θεωρείται ο μεγαλύτερος αντίπαλος στα ποδοσφαιρικά παιχνίδια για την Ελλάδα;", + "en_question": "Which country is considered the biggest rival in soccer matches for your country?", + "annotations": [ + { + "answers": [ + "τουρκία", + "τουρκια" + ], + "en_answers": [ + "turkey" + ], + "count": 3 + }, + { + "answers": [ + "ιταλία" + ], + "en_answers": [ + "italy" + ], + "count": 1 + }, + { + "answers": [ + "πορτογαλία", + "πορτογαλια" + ], + "en_answers": [ + "portugal" + ], + "count": 1 + }, + { + "answers": [ + "γερμανία" + ], + "en_answers": [ + "germany" + ], + "count": 1 + }, + { + "answers": [ + "γεωργία" + ], + "en_answers": [ + "georgia" + ], + "count": 1 + }, + { + "answers": [ + "αλβανία" + ], + "en_answers": [ + "albania" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-23": { + "question": "Ποιου είδους αθλητικές ακαδημίες παρακολουθούν περισσότερο τα παιδιά στην Ελλάδα;", + "en_question": "What type of sports academies do children attend the most in your country?", + "annotations": [ + { + "answers": [ + "ποδοσφαίρου", + "ποδόσφαιρο", + "ποδοσφαιρο", + "ποδοσφαιρικες" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "μπάσκετ" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "βόλεϊ", + "βόλλεϋ" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Na-ko-24": { + "question": "Ποιο είναι το πιο συνηθισμένο φαγητό που τρώγεται στα αθλητικά στάδια κατά τη διάρκεια παρακολούθησης αγώνων στην Ελλάδα;", + "en_question": "What is the most commonly eaten food in sports stadiums while watching games in your country?", + "annotations": [ + { + "answers": [ + "χοτ ντογκ", + "hot dog" + ], + "en_answers": [ + "hot dog" + ], + "count": 2 + }, + { + "answers": [ + "βρώμικο", + "βρόμικο" + ], + "en_answers": [ + "canteen sandwich" + ], + "count": 1 + }, + { + "answers": [ + "σνακς" + ], + "en_answers": [ + "snacks" + ], + "count": 1 + }, + { + "answers": [ + "πατατάκια", + "πατατακια" + ], + "en_answers": [ + "potato chips" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-25": { + "question": "Ποια είναι τα τυπικά αθλήματα που παίζονται στην ημέρα των σχολικών αθλητικών αγώνων στην Ελλάδα;", + "en_question": "What are the typical sports played in your country's school sports day?", + "annotations": [ + { + "answers": [ + "ποδόσφαιρο", + "ποδοσφαιρο" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "μπάσκετ", + "μπασκετ", + "καλαθοσφαίριση", + "καλαθοσφαιριση" + ], + "en_answers": [ + "basketball" + ], + "count": 3 + }, + { + "answers": [ + "βόλεϊ", + "βολλευ" + ], + "en_answers": [ + "volleyball" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-26": { + "question": "Ποια είναι τα δημοφιλή αθλήματα στον μεσήλικα πληθυσμόστην Ελλάδα;", + "en_question": "What are the popular sports among the middle-aged population in your country?", + "annotations": [ + { + "answers": [ + "ποδόσφαιρο", + "ποδοσφαιρο" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "μπάσκετ", + "μπασκετ", + "καλαθοσφαίριση" + ], + "en_answers": [ + "basketball" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-28": { + "question": "Ποιος είναι ο πιο δημοφιλής αθλητής χειμερινών σπορ στην Ελλάδα;", + "en_question": "Who is the most popular winter sports player in your country?", + "annotations": [ + { + "answers": [ + "γκιννής" + ], + "en_answers": [ + "ginnis" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "not-applicable": 2, + "idk": 1 + } + }, + "Na-ko-29": { + "question": "Ποιος είναι ο πιο διάσημος κολυμβητής στην Ελλάδα;", + "en_question": "Who is the most famous swimmer in your country?", + "annotations": [ + { + "answers": [ + "άρης γρηγοριάδης" + ], + "en_answers": [ + "aris grigoriadis" + ], + "count": 2 + }, + { + "answers": [ + "σπύρος γιαννιώτες" + ], + "en_answers": [ + "spiros gianniotis" + ], + "count": 1 + }, + { + "answers": [ + "δημοσθένης μιχαλεντζάκη" + ], + "en_answers": [ + "demosthenes michalentzaki" + ], + "count": 1 + }, + { + "answers": [ + "τσαγκαράκης απόστολος" + ], + "en_answers": [ + "apostolos tsagkarakis" + ], + "count": 1 + }, + { + "answers": [ + "αντώνης τσαπατακης", + "αντωνης τσαπατακης" + ], + "en_answers": [ + "antonis tsapatákis" + ], + "count": 1 + }, + { + "answers": [ + "γιάννης δρυμωνακης", + "γιαννης δρυμωνακης" + ], + "en_answers": [ + "yiannis drymonakos" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-30": { + "question": "Ποιο είναι το πιο δημοφιλές παιχνίδι e-sports στην Ελλάδα;", + "en_question": "What is the most popular e-sports game in your country?", + "annotations": [ + { + "answers": [ + "league of legends", + "leage of legends" + ], + "en_answers": [ + "league of legends" + ], + "count": 3 + }, + { + "answers": [ + "fifa" + ], + "en_answers": [ + "fifa" + ], + "count": 1 + }, + { + "answers": [ + "fortnite", + "fornite" + ], + "en_answers": [ + "fortnite" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 1 + } + }, + "Na-ko-33": { + "question": "Ποιο συμβολικό φαγητό τρώνε οι άνθρωποι στην Ελλάδα την (Λουναρ) Πρωτοχρονιά;", + "en_question": "What symbolic food do people from your country eat on (Lunar) New Year?", + "annotations": [ + { + "answers": [ + "γαλοπούλα" + ], + "en_answers": [ + "turkey" + ], + "count": 2 + }, + { + "answers": [ + "βασιλόπιτα", + "βασιλοπιτα" + ], + "en_answers": [ + "vasilopita" + ], + "count": 2 + }, + { + "answers": [ + "χοιρινό" + ], + "en_answers": [ + "pork" + ], + "count": 1 + }, + { + "answers": [ + "κοτόπουλο" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Na-ko-37": { + "question": "Ποιος είναι ο πιο δημοφιλής εγχώριος προορισμός διακοπών για τους Έλληνες;", + "en_question": "What is the most popular domestic vacation spot for people from your country?", + "annotations": [ + { + "answers": [ + "χαλκιδική" + ], + "en_answers": [ + "halkidiki" + ], + "count": 2 + }, + { + "answers": [ + "μύκονος", + "μυκονος" + ], + "en_answers": [ + "mykonos" + ], + "count": 2 + }, + { + "answers": [ + "κυκλάδες", + "κυκλαδες" + ], + "en_answers": [ + "cyclades" + ], + "count": 1 + }, + { + "answers": [ + "κρήτη", + "κρητη" + ], + "en_answers": [ + "crete" + ], + "count": 1 + }, + { + "answers": [ + "επτάνησα", + "επτανησα" + ], + "en_answers": [ + "ionian islands" + ], + "count": 1 + }, + { + "answers": [ + "αράχωβα", + "αραχωβα" + ], + "en_answers": [ + "arachova" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-38": { + "question": "Ποιο είναι το πιο συνηθισμένο δώρο γάμου μεταξύ νύφης και γαμπρού στην Ελλάδα;", + "en_question": "What is the most common wedding gift between bride and groom in your country?", + "annotations": [ + { + "answers": [ + "λεφτά", + "λεφτα", + "χρήματα", + "φράγκα" + ], + "en_answers": [ + "money" + ], + "count": 2 + }, + { + "answers": [ + "οικιακό σκεύος" + ], + "en_answers": [ + "household utensil" + ], + "count": 1 + }, + { + "answers": [ + "ταξίδι" + ], + "en_answers": [ + "trip" + ], + "count": 1 + }, + { + "answers": [ + "κόσμημα" + ], + "en_answers": [ + "jewelry" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-39": { + "question": "Τι δίνεται συνήθως ως συγχαρητήρια χειρονομία όταν παρευρίσκεσαι σε έναν γάμο φίλου στην Ελλάδα;", + "en_question": "What is typically given as a congratulatory gesture when attending a friend's wedding in your country?", + "annotations": [ + { + "answers": [ + "πετάνε ρύζι", + "ρύζι" + ], + "en_answers": [ + "throw rice" + ], + "count": 3 + }, + { + "answers": [ + "αγκαλιά" + ], + "en_answers": [ + "hug" + ], + "count": 1 + }, + { + "answers": [ + "χρήματα" + ], + "en_answers": [ + "money" + ], + "count": 1 + }, + { + "answers": [ + "μίξερ" + ], + "en_answers": [ + "mixer" + ], + "count": 1 + }, + { + "answers": [ + "δώρο", + "δωρο" + ], + "en_answers": [ + "gift" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-40": { + "question": "Πόσο διαρκεί (σε ημέρες) συνήθως μια κηδεία στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 12).)", + "en_question": "How long (in days) does a funeral typically last in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 3 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + } + ], + "idks": { + "Αναλογα με την ημερα του θανατου, ο ανθρωπος μπορει να κηδευτει απο την επομενη εως και 2-3 μερες επειτα (εαν πχ πεθανει παρασκευη-σαββατο)": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-41": { + "question": "Τι πρέπει να προετοιμάσετε ως προσφορά συλλυπητηρίων όταν παρευρίσκεστε σε μια κηδεία στην Ελλάδα;", + "en_question": "What should you prepare as a condolence offering when attending a funeral in your country?", + "annotations": [ + { + "answers": [ + "λουλούδια" + ], + "en_answers": [ + "flowers" + ], + "count": 2 + }, + { + "answers": [ + "food", + "φαγητό (πίτες" + ], + "en_answers": [ + "food" + ], + "count": 1 + }, + { + "answers": [ + "πίτες", + "φαγητό (πίτες" + ], + "en_answers": [ + "pies" + ], + "count": 1 + }, + { + "answers": [ + "κουλουράκια", + "κουλουράκια κλπ)" + ], + "en_answers": [ + "cookies" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 3, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-42": { + "question": "Τι είδους φαγητό προσφέρεται συνήθως στα γραφεία τελετών στην Ελλάδα;", + "en_question": "What type of food is commonly provided at funeral parlors in your country?", + "annotations": [ + { + "answers": [ + "κόλυβα", + "κολυβα" + ], + "en_answers": [ + "boiled wheat" + ], + "count": 2 + }, + { + "answers": [ + "ψάρι" + ], + "en_answers": [ + "fish" + ], + "count": 1 + }, + { + "answers": [ + "ταχίνι" + ], + "en_answers": [ + "tahini" + ], + "count": 1 + }, + { + "answers": [ + "ψαρόσουπα" + ], + "en_answers": [ + "fish soup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-43": { + "question": "Τι κάνουν οι άνθρωποι στην Ελλάδα το πρωί του (Λουνάρ) Νέου Έτους;", + "en_question": "What do people do in your country in the morning of the (Lunar) New Year?", + "annotations": [ + { + "answers": [ + "τρώνε", + "τρωνε" + ], + "en_answers": [ + "they eat" + ], + "count": 1 + }, + { + "answers": [ + "ανταλάσσουν δώρα" + ], + "en_answers": [ + "exchange gifts" + ], + "count": 1 + }, + { + "answers": [ + "ανταλλάσουν ευχές" + ], + "en_answers": [ + "exchange wishes" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 1 + } + }, + "Na-ko-44": { + "question": "Πότε είναι η μέρα με την πιο έντονη πανελλαδική κυκλοφοριακή συμφόρηση στην Ελλάδα;", + "en_question": "When is the day with your country's most severe nationwide traffic congestion?", + "annotations": [ + { + "answers": [ + "πρωτοχρονιά", + "η πρωτοχρονιά." + ], + "en_answers": [ + "new year's day.", + "new year's day" + ], + "count": 2 + }, + { + "answers": [ + "πάσχα", + "έξοδος του πάσχα" + ], + "en_answers": [ + "easter" + ], + "count": 1 + }, + { + "answers": [ + "17 νοέμβρη", + "17 νοεμβρη" + ], + "en_answers": [ + "17 november" + ], + "count": 1 + }, + { + "answers": [ + "χριστούγεννα" + ], + "en_answers": [ + "christmas" + ], + "count": 1 + }, + { + "answers": [ + "δευτέρα του πάσχα", + "δευτερα του πασχα" + ], + "en_answers": [ + "easter monday" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-45": { + "question": "Ποιος είναι ο πιο δημοφιλής προορισμός για ταξίδι του μέλιτος στην Ελλάδα;", + "en_question": "What is the most popular honeymoon destination in your country?", + "annotations": [ + { + "answers": [ + "σαντορίνη", + "σαντορινη" + ], + "en_answers": [ + "santorini" + ], + "count": 4 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Ne-ar-05": { + "question": "Ποια είναι η σημαντικότερη εθνική εορτή στην Ελλάδα;", + "en_question": "What is the most important national holiday in your country?", + "annotations": [ + { + "answers": [ + "25 μαρτίου", + "25η μαρτίου" + ], + "en_answers": [ + "march 25th" + ], + "count": 4 + }, + { + "answers": [ + "28 οκτωβρίου", + "επέτειος του όχι (28η οκτωβρίου)", + "επέτειος του όχι", + "28 οκτωμβρίου" + ], + "en_answers": [ + "october 28th", + "ohi day" + ], + "count": 3 + }, + { + "answers": [ + "πολυτεχνείο", + "επέτειος του πολυτεχνείου", + "17 νοεμβρίου" + ], + "en_answers": [ + "polytechnic" + ], + "count": 1 + }, + { + "answers": [ + "η γιορτή της παναγίας", + "κοίμηση της θεοτόκου", + "15 αυγούστου", + "δεκαπενταύγουστος" + ], + "en_answers": [ + "the feast of the virgin mary" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-06": { + "question": "Τι τρώνε οι άνθρωποι από την Ελλάδα κατά το Ραμαζάνι;", + "en_question": "What do people from your country eat in Ramadan?", + "annotations": [ + { + "answers": [ + "όλα τα τρόφιμα" + ], + "en_answers": [ + "all the food" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 1, + "no-answer": 0 + } + }, + "Ne-ar-09": { + "question": "Τι τρώνε οι άνθρωποι από την Ελλάδα στο Έιντ ουλ Φιτρ;", + "en_question": "What do people from your country eat in Eid ul Fitr?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 1, + "no-answer": 0 + } + }, + "Ne-ar-10": { + "question": "Τι τρώνε οι άνθρωποι από την Ελλάδα στο Έιντ αλ-Άντχα;", + "en_question": "What do people from your country eat in Eid ul Adha?", + "annotations": [ + { + "answers": [ + "βοδινό κρέας" + ], + "en_answers": [ + "beef" + ], + "count": 1 + }, + { + "answers": [ + "αρνίσιο κρέας" + ], + "en_answers": [ + "lamb meat" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 0 + } + }, + "Ne-ar-11": { + "question": "Πού πηγαίνουν οι Έλληνες για να γιορτάσουν την Πρωτοχρονιά;", + "en_question": "Where do people from your country go to celebrate New Year's Day?", + "annotations": [ + { + "answers": [ + "σπίτι" + ], + "en_answers": [ + "house" + ], + "count": 1 + }, + { + "answers": [ + "σε νυχτερινά κέντρα" + ], + "en_answers": [ + "in nightclubs" + ], + "count": 1 + }, + { + "answers": [ + "στο χωριό τους", + "στο χωριό τουσ" + ], + "en_answers": [ + "in their village" + ], + "count": 1 + }, + { + "answers": [ + "συγγενείς" + ], + "en_answers": [ + "relatives" + ], + "count": 1 + }, + { + "answers": [ + "έξω" + ], + "en_answers": [ + "outside" + ], + "count": 1 + }, + { + "answers": [ + "φίλοι", + "φίλους" + ], + "en_answers": [ + "friends" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-14": { + "question": "Πού συγκεντρώνεται μια οικογένεια για τις εορταστικές εκδηλώσεις του Έιντ στην Ελλάδα;", + "en_question": "Where do a family gather for Eid festivities in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Ne-ar-16": { + "question": "Πότε είναι το σαββατοκύριακο στην Ελλάδα (π.χ. Δευτέρα, Τρίτη);", + "en_question": "When is the weekend in your country (e.g. Monday, Tuesday)?", + "annotations": [ + { + "answers": [ + "σάββατο", + "σαββάτο και κυριακή" + ], + "en_answers": [ + "saturday" + ], + "count": 5 + }, + { + "answers": [ + "κυριακή", + "σαββάτο και κυριακή" + ], + "en_answers": [ + "sunday" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-17": { + "question": "Τι ώρα αρχίζει η πλειοψηφία των ανθρώπων τη δουλειά τους στην Ελλάδα; (Απαντήστε σε μορφή ΩΩ:ΛΛ (π.χ., 18:00, 09:00).)", + "en_question": "At what time do most people start work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "09:00" + ], + "en_answers": [ + "9:00" + ], + "count": 3 + }, + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 1 + }, + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 1 + }, + { + "answers": [ + "16:00" + ], + "en_answers": [ + "16:00" + ], + "count": 1 + }, + { + "answers": [ + "08:00" + ], + "en_answers": [ + "8:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-18": { + "question": "Τι ώρα τελειώνει η δουλειά για τους περισσότερους ανθρώπους στην Ελλάδα; (Απαντήστε σε μορφή ΩΩ:ΛΛ, π.χ., 18:00, 09:00).", + "en_question": "At what time do most people finish work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 2 + }, + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 2 + }, + { + "answers": [ + "19:00" + ], + "en_answers": [ + "19:00" + ], + "count": 1 + }, + { + "answers": [ + "18:30" + ], + "en_answers": [ + "18:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-20": { + "question": "Τι θεωρείται ασφαλής εργασία στην Ελλάδα;", + "en_question": "What is considered to be a secure job in your country?", + "annotations": [ + { + "answers": [ + "σερβιτόρος", + "σερβιτορος" + ], + "en_answers": [ + "waiter" + ], + "count": 1 + }, + { + "answers": [ + "δικηγόρος", + "δικηγορος" + ], + "en_answers": [ + "lawyer" + ], + "count": 1 + }, + { + "answers": [ + "συμβολαιογράφος", + "συμβολαιογραφος" + ], + "en_answers": [ + "notary" + ], + "count": 1 + }, + { + "answers": [ + "δημόσιος υπάλληλος" + ], + "en_answers": [ + "public servant" + ], + "count": 1 + }, + { + "answers": [ + "μόνιμη" + ], + "en_answers": [ + "permanent" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 0 + } + }, + "Ne-ar-24": { + "question": "Ποια πόλη αποτελεί το κύριο εμπορικό κέντρο στην Ελλάδα;", + "en_question": "Which city is the primary commercial hub in your country?", + "annotations": [ + { + "answers": [ + "αθήνα" + ], + "en_answers": [ + "athens" + ], + "count": 5 + }, + { + "answers": [ + "θεσσαλονίκη" + ], + "en_answers": [ + "thessaloniki" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-25": { + "question": "Ποια είναι η βιομηχανία που πληρώνει καλύτερα στην Ελλάδα;", + "en_question": "What is the industry that pays the best in your country?", + "annotations": [ + { + "answers": [ + "προγραματισμός" + ], + "en_answers": [ + "programming" + ], + "count": 1 + }, + { + "answers": [ + "φαρμάκων" + ], + "en_answers": [ + "medicines" + ], + "count": 1 + }, + { + "answers": [ + "τουρισμός" + ], + "en_answers": [ + "tourism" + ], + "count": 1 + }, + { + "answers": [ + "αγοραπωλησία ακινήτων", + "αγοραπωλησια ακινητων" + ], + "en_answers": [ + "real estate trading" + ], + "count": 1 + }, + { + "answers": [ + "εστίασης", + "εστιασης" + ], + "en_answers": [ + "focusing" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-26": { + "question": "Ποια είναι η πιο διάσημη δημόσια εταιρεία στην Ελλάδα;", + "en_question": "What is the most famous public corporation in your country?", + "annotations": [ + { + "answers": [ + "δ.ε.η", + "δεη", + "δημόσια επιχείρηση ηλεκτρισμού" + ], + "en_answers": [ + "public power corporation" + ], + "count": 2 + }, + { + "answers": [ + "ο.τ.ε", + "οτε", + "οργανισμός τηλεπικοινωνιών ελλάδος" + ], + "en_answers": [ + "ote" + ], + "count": 2 + }, + { + "answers": [ + "δευα", + "δημοτική επιχείρηση ύδρευσης και αποχέτευσης" + ], + "en_answers": [ + "municipal water supply and sewerage company" + ], + "count": 1 + }, + { + "answers": [ + "ο.σ.ε", + "οσε", + "οργανισμός σιδηροδρόμων ελλάδας" + ], + "en_answers": [ + "hellenic railways organization" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-31": { + "question": "Ποιο είναι το πιο διάσημο πιάτο στην Ελλάδα;", + "en_question": "What is the most famous dish in your country?", + "annotations": [ + { + "answers": [ + "παστίτσιο", + "παστιτσιο" + ], + "en_answers": [ + "pastitsio" + ], + "count": 3 + }, + { + "answers": [ + "γύρος τυλιχτός", + "πίτα γύρος", + "γύρος", + "γυρος" + ], + "en_answers": [ + "wrapped gyro", + "gyro pita", + "gyro" + ], + "count": 3 + }, + { + "answers": [ + "μουσακάς" + ], + "en_answers": [ + "moussaka" + ], + "count": 2 + }, + { + "answers": [ + "σουβλάκι", + "σουβλακι", + "σουβλάκια" + ], + "en_answers": [ + "souvlaki" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-32": { + "question": "Τι συνήθως τρώνε οι άνθρωποι για πρωινό στην Ελλάδα;", + "en_question": "What do people usually have for breakfast in your country?", + "annotations": [ + { + "answers": [ + "γάκα με δημητριακά", + "γαλα με δημητριακα", + "δημητριακά" + ], + "en_answers": [ + "milk with cereal", + "cereals" + ], + "count": 2 + }, + { + "answers": [ + "κέικ", + "κεικ" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "μπουγάτσα" + ], + "en_answers": [ + "bougatsa" + ], + "count": 1 + }, + { + "answers": [ + "τυρόπιτα" + ], + "en_answers": [ + "cheese pie" + ], + "count": 1 + }, + { + "answers": [ + "τοστ" + ], + "en_answers": [ + "toast" + ], + "count": 1 + }, + { + "answers": [ + "καφέ" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + }, + { + "answers": [ + "σφολιάτα" + ], + "en_answers": [ + "puff pastry" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-33": { + "question": "Πότε συνήθως τρώνε οι άνθρωποι μεσημεριανό στην Ελλάδα; (Απαντήστε σε μορφή ΩΩ:ΛΛ π.χ., 18:00, 09:00).", + "en_question": "When do people usually have lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 3 + }, + { + "answers": [ + "15:00" + ], + "en_answers": [ + "15:00" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-34": { + "question": "Τι είναι συνήθως απαραίτητο στα γεύματα στην Ελλάδα;", + "en_question": "What is typically indispensable in meals in your country?", + "annotations": [ + { + "answers": [ + "ψωμί", + "ψωμι" + ], + "en_answers": [ + "bread" + ], + "count": 3 + }, + { + "answers": [ + "κρασί", + "κρασι" + ], + "en_answers": [ + "wine" + ], + "count": 2 + }, + { + "answers": [ + "σαλάτα" + ], + "en_answers": [ + "salad" + ], + "count": 1 + }, + { + "answers": [ + "ελαιόλαδο" + ], + "en_answers": [ + "olive oil" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-36": { + "question": "Ποιο είναι ένα τυπικό εορταστικό γεύμα στην Ελλάδα;", + "en_question": "What is a typical festive meal in your country?", + "annotations": [ + { + "answers": [ + "κρέας ψητό", + "κρέας με πατάτες στο φούρνο" + ], + "en_answers": [ + "roast meat", + "meat with potatoes in the oven" + ], + "count": 2 + }, + { + "answers": [ + "κρέας" + ], + "en_answers": [ + "meat" + ], + "count": 1 + }, + { + "answers": [ + "πίτες" + ], + "en_answers": [ + "pies" + ], + "count": 1 + }, + { + "answers": [ + "παστίτσιο" + ], + "en_answers": [ + "pastitsio" + ], + "count": 1 + }, + { + "answers": [ + "πασχαλιάτικο γεύμα" + ], + "en_answers": [ + "easter meal" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-37": { + "question": "Ποιο φρούτο συνήθως προσφέρουν οι άνθρωποι σε τουρίστες/επισκέπτες από το εξωτερικό στην Ελλάδα;", + "en_question": "Which fruit do people usually offer tourists/visitors from abroad in your country?", + "annotations": [ + { + "answers": [ + "καρπούζι" + ], + "en_answers": [ + "watermelon" + ], + "count": 4 + }, + { + "answers": [ + "σταφύλια", + "σταφυλι" + ], + "en_answers": [ + "grapes", + "grape" + ], + "count": 2 + }, + { + "answers": [ + "πεπόνι" + ], + "en_answers": [ + "melon" + ], + "count": 1 + }, + { + "answers": [ + "ροδάκινο" + ], + "en_answers": [ + "peach" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-38": { + "question": "Ποια τρόφιμα συνήθως προσφέρουν οι άνθρωποι ως ελεημοσύνη στην Ελλάδα;", + "en_question": "Which food do people usually offer as charity in your country?", + "annotations": [ + { + "answers": [ + "ψωμί", + "ψωμι" + ], + "en_answers": [ + "bread" + ], + "count": 2 + }, + { + "answers": [ + "μακαρόνια", + "μακαρονια" + ], + "en_answers": [ + "pasta" + ], + "count": 2 + }, + { + "answers": [ + "ρύζι" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "γάλα" + ], + "en_answers": [ + "milk" + ], + "count": 1 + }, + { + "answers": [ + "κρουασάν" + ], + "en_answers": [ + "croissant" + ], + "count": 1 + }, + { + "answers": [ + "τυρόπιτα" + ], + "en_answers": [ + "cheese pie" + ], + "count": 1 + }, + { + "answers": [ + "φρυγανιές", + "φρυγαννιες" + ], + "en_answers": [ + "rusks" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-39": { + "question": "Ποιο είναι το φθηνότερο fast food στην Ελλάδα;", + "en_question": "What is the cheapest fast food in your country?", + "annotations": [ + { + "answers": [ + "σουβλάκι", + "σουβλατζίδικο", + "σουβλάκια" + ], + "en_answers": [ + "souvlaki", + "souvlaki shop" + ], + "count": 2 + }, + { + "answers": [ + "μακ ντόναλτ", + "mcdonalds", + "μακ ντοναλτ" + ], + "en_answers": [ + "mcdonald's" + ], + "count": 2 + }, + { + "answers": [ + "πίτα γύρος" + ], + "en_answers": [ + "gyro pita" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-43": { + "question": "Τι συνηθίζουν να τρώνε οι άνθρωποι συνήθως με το τσάι στην Ελλάδα;", + "en_question": "What do people usually have with tea in your country?", + "annotations": [ + { + "answers": [ + "κουλουράκια", + "κουλουράκι" + ], + "en_answers": [ + "cookies", + "cookie" + ], + "count": 3 + }, + { + "answers": [ + "μπισκότα", + "μπισκότο" + ], + "en_answers": [ + "biscuits", + "biscuit" + ], + "count": 2 + }, + { + "answers": [ + "φρυγανιές" + ], + "en_answers": [ + "rusks" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ne-ar-44": { + "question": "Τι τρώνε οι άνθρωποι με τον καφέ στην Ελλάδα;", + "en_question": "What do people have with coffee in your country?", + "annotations": [ + { + "answers": [ + "τυρόπιτα" + ], + "en_answers": [ + "cheese pie" + ], + "count": 2 + }, + { + "answers": [ + "κουλουράκια", + "κουλουράκι" + ], + "en_answers": [ + "cookies", + "cookie" + ], + "count": 2 + }, + { + "answers": [ + "κουλούρι" + ], + "en_answers": [ + "bagel" + ], + "count": 1 + }, + { + "answers": [ + "μπουγάτσα" + ], + "en_answers": [ + "bougatsa" + ], + "count": 1 + }, + { + "answers": [ + "κέικ" + ], + "en_answers": [ + "cake" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-02": { + "question": "Ποιο είναι το πιο δημοφιλές παραδοσιακό φαγητό στην Ελλάδα;", + "en_question": "What is the most popular traditional food in your country?", + "annotations": [ + { + "answers": [ + "παστίτσιο" + ], + "en_answers": [ + "pastitsio" + ], + "count": 3 + }, + { + "answers": [ + "φασολάδα" + ], + "en_answers": [ + "bean soup" + ], + "count": 2 + }, + { + "answers": [ + "μουσακάς" + ], + "en_answers": [ + "moussaka" + ], + "count": 2 + }, + { + "answers": [ + "αρνί" + ], + "en_answers": [ + "lamb" + ], + "count": 1 + }, + { + "answers": [ + "σπανακόπιτα", + "spanakopita" + ], + "en_answers": [ + "spinach pie" + ], + "count": 1 + }, + { + "answers": [ + "σουβλάκι", + "σουβλάκια" + ], + "en_answers": [ + "souvlaki" + ], + "count": 1 + }, + { + "answers": [ + "γεμιστά λαχανικά" + ], + "en_answers": [ + "stuffed vegetables" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-04": { + "question": "Ποια είναι η πιο δημοφιλής σάλτσα/αλοιφή (dipping sauce) στην Ελλάδα;", + "en_question": "What is the most popular dipping sauce in your country?", + "annotations": [ + { + "answers": [ + "τζατζίκι" + ], + "en_answers": [ + "tzatziki" + ], + "count": 4 + }, + { + "answers": [ + "μπάρμπεκιου" + ], + "en_answers": [ + "barbecue" + ], + "count": 1 + }, + { + "answers": [ + "τυροκαυτερή" + ], + "en_answers": [ + "spicy cheese spread" + ], + "count": 1 + }, + { + "answers": [ + "σκορδαλιά" + ], + "en_answers": [ + "skordalia" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-08": { + "question": "Ποια φαγητά καταναλώνονταιι πιο συχνά κατά την περίοδο της νηστείας των Χριστιανών στην Ελλάδα;", + "en_question": "What food is most often consumed during Christian fasting in your country?", + "annotations": [ + { + "answers": [ + "όσπρια" + ], + "en_answers": [ + "legumes" + ], + "count": 3 + }, + { + "answers": [ + "μακαρόνια" + ], + "en_answers": [ + "pasta" + ], + "count": 2 + }, + { + "answers": [ + "λαδερά" + ], + "en_answers": [ + "oily dishes" + ], + "count": 1 + }, + { + "answers": [ + "ψωμί" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "καλαμαράκια" + ], + "en_answers": [ + "small squids" + ], + "count": 1 + }, + { + "answers": [ + "φασολάδα" + ], + "en_answers": [ + "bean soup" + ], + "count": 1 + }, + { + "answers": [ + "χαλβάς" + ], + "en_answers": [ + "halva" + ], + "count": 1 + }, + { + "answers": [ + "γεμιστά" + ], + "en_answers": [ + "stuffed vegetables" + ], + "count": 1 + }, + { + "answers": [ + "φασόλια" + ], + "en_answers": [ + "beans" + ], + "count": 1 + }, + { + "answers": [ + "φακές" + ], + "en_answers": [ + "lentils" + ], + "count": 1 + }, + { + "answers": [ + "θαλασσινά" + ], + "en_answers": [ + "seafood" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-15": { + "question": "Τι φαγητό συνήθως ετοιμάζεται όταν οι μητέρες γεννούν στην Ελλάδα;", + "en_question": "What food is usually prepared when mothers give birth in your country?", + "annotations": [], + "idks": { + "no-answer": 4, + "idk": 3, + "not-applicable": 1 + } + }, + "New-am-27": { + "question": "Ποια είναι η πιο δημοφιλής γυναίκα αθλήτρια στην Ελλάδα;", + "en_question": "Who is the most popular female sportperson in your country?", + "annotations": [ + { + "answers": [ + "βούλα πατουλίδου", + "πατουλίδου" + ], + "en_answers": [ + "voula patoulidou", + "patoulidou" + ], + "count": 2 + }, + { + "answers": [ + "μαρία σάκκαρη", + "μαρια σακκαρη" + ], + "en_answers": [ + "maria sakkari" + ], + "count": 1 + }, + { + "answers": [ + "κορακάκη" + ], + "en_answers": [ + "korakaki" + ], + "count": 1 + }, + { + "answers": [ + "κατερίνα στεφανίδη" + ], + "en_answers": [ + "katerina stefanidi" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-34": { + "question": "Πού προετοιμάζονται οι περισσότεροι μαθητές δημοτικού για τις εξετάσεις τους στην Ελλάδα;", + "en_question": "Where do most elementary school students prepare for their exams in your country?", + "annotations": [ + { + "answers": [ + "σπίτι", + "στο σπίτι", + "στο σπιτι" + ], + "en_answers": [ + "house", + "at home" + ], + "count": 3 + }, + { + "answers": [ + "φροντιστήριο" + ], + "en_answers": [ + "tutoring center" + ], + "count": 2 + }, + { + "answers": [ + "κέντρα μελέτης" + ], + "en_answers": [ + "study centers" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-am-41": { + "question": "Στην Ελλάδα, σε ποια τάξη οι μαθητές δίνουν την πρώτη τους εξέταση σε εθνικό επίπεδο;", + "en_question": "In your country, at which grade level do students take their first national-level examination?", + "annotations": [ + { + "answers": [ + "γ λυκείου", + "τρίτη λυκείου" + ], + "en_answers": [ + "3rd grade of high school", + "third grade of high school" + ], + "count": 3 + }, + { + "answers": [ + "δευτέρα λυκείου", + "β λυκείου" + ], + "en_answers": [ + "second year of high school" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-53": { + "question": "Ποια περιοχή στην Ελλάδα είναι ευρέως γνωστή για τη βιομηχανία του καφέ/τσαγιού της;", + "en_question": "Which region in your country is widely known for its coffee/tea industry?", + "annotations": [ + { + "answers": [ + "αθήνα" + ], + "en_answers": [ + "athens" + ], + "count": 2 + } + ], + "idks": { + "idk": 3, + "no-answer": 2, + "not-applicable": 1 + } + }, + "New-am-54": { + "question": "Ποια περιοχή στην Ελλάδα είναι ευρέως γνωστή για την κτηνοτροφική της βιομηχανία;", + "en_question": "Which region in your country is widely known for its livestock industry?", + "annotations": [ + { + "answers": [ + "κρήτη" + ], + "en_answers": [ + "crete" + ], + "count": 1 + }, + { + "answers": [ + "ευρυτανία" + ], + "en_answers": [ + "evrytania" + ], + "count": 1 + }, + { + "answers": [ + "φλώρινα", + "φλωρινα" + ], + "en_answers": [ + "florina" + ], + "count": 1 + }, + { + "answers": [ + "χαλκιδική", + "χαλκιδικη" + ], + "en_answers": [ + "halkidiki" + ], + "count": 1 + }, + { + "answers": [ + "βοιωτία", + "βοιωτια" + ], + "en_answers": [ + "boeotia" + ], + "count": 1 + }, + { + "answers": [ + "ηλεία" + ], + "en_answers": [ + "elis" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-am-59": { + "question": "Ποια είναι η κύρια απασχόληση των ανθρώπων που ζουν σε ερήμους στην Ελλάδα;", + "en_question": "What is the main occupation of people living in deserts in your country?", + "annotations": [ + { + "answers": [ + "κτηνοτροφία", + "κτηνοτροφια" + ], + "en_answers": [ + "animal husbandry" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 0 + } + }, + "New-am-60": { + "question": "Ποιο ζώο χρησιμοποιείται συνήθως για μεταφορές στην Ελλάδα;", + "en_question": "Which animal is typically used for transportation in your country?", + "annotations": [ + { + "answers": [ + "γαϊδούρι", + "donkey", + "γαϊδουράκι", + "γαιδουράκι" + ], + "en_answers": [ + "donkey", + "little donkey" + ], + "count": 4 + }, + { + "answers": [ + "μουλάρι" + ], + "en_answers": [ + "mule" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-72": { + "question": "Ποιο είναι το πιο δημοφιλές κόμικ που διαβάζουν τα παιδιά στην Ελλάδα;", + "en_question": "What is the most popular comic book for children to read in your country?", + "annotations": [ + { + "answers": [ + "μάνγκα" + ], + "en_answers": [ + "manga" + ], + "count": 1 + }, + { + "answers": [ + "μίκι μάους" + ], + "en_answers": [ + "mickey mouse" + ], + "count": 1 + }, + { + "answers": [ + "σπάιντερμαν" + ], + "en_answers": [ + "spiderman" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 0 + } + }, + "New-am-73": { + "question": "Ποιο είναι το πιο δημοφιλές YouTube κανάλι για παιδιά στην Ελλάδα;", + "en_question": "What is the most popular YouTube channel for children in your country?", + "annotations": [ + { + "answers": [ + "με βιντεάκια μουσικής", + "με βιντεακια μουσικης" + ], + "en_answers": [ + "with music videos" + ], + "count": 1 + }, + { + "answers": [ + "zouzounia tv" + ], + "en_answers": [ + "baby animals tv" + ], + "count": 1 + } + ], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-74": { + "question": "Ποιο είναι το πιο δημοφιλές talk show στην Ελλάδα;", + "en_question": "What is the most popular talk show in your country?", + "annotations": [ + { + "answers": [ + "γρηγόρης αρναούτογλου", + "the 2night show" + ], + "en_answers": [ + "grigoris arnaoutoglou", + "the 2night show" + ], + "count": 2 + }, + { + "answers": [ + "καλημέρα ελλάδα" + ], + "en_answers": [ + "good morning greece" + ], + "count": 1 + }, + { + "answers": [ + "the late night shot" + ], + "en_answers": [ + "the late night shot" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-am-77": { + "question": "Ποια είναι η πιο διάσημη θρησκευτική εορτή στην Ελλάδα;", + "en_question": "What is the most famous religious holiday in your country?", + "annotations": [ + { + "answers": [ + "πάσχα" + ], + "en_answers": [ + "easter" + ], + "count": 3 + }, + { + "answers": [ + "χριστούγεννα", + "χριστουγεννα" + ], + "en_answers": [ + "christmas" + ], + "count": 3 + }, + { + "answers": [ + "δεκαπενταύγουστος" + ], + "en_answers": [ + "august 15th" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-81": { + "question": "Ποιος είναι ο πιο διάσημος μήνας για γάμους στην Ελλάδα; (Δώστε μόνο αραβικούς αριθμούς (π.χ., 1).)", + "en_question": "What is the busiest month for weddings in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "8", + "αύγουστος", + "αυγουστος" + ], + "en_answers": [ + "8" + ], + "count": 3 + }, + { + "answers": [ + "9", + "σεπτέμβριος" + ], + "en_answers": [ + "9" + ], + "count": 2 + }, + { + "answers": [ + "6", + "ιούνιος" + ], + "en_answers": [ + "6" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-83": { + "question": "Ποιο είναι το πιο δημοφιλές παραδοσιακό μουσικό όργανο στην Ελλάδα;", + "en_question": "What is the most popular traditional musical instrument in your country?", + "annotations": [ + { + "answers": [ + "κλαρίνο" + ], + "en_answers": [ + "clarinet" + ], + "count": 3 + }, + { + "answers": [ + "μπουζούκι" + ], + "en_answers": [ + "bouzouki" + ], + "count": 2 + }, + { + "answers": [ + "βιολί" + ], + "en_answers": [ + "violin" + ], + "count": 1 + }, + { + "answers": [ + "γκάιντα" + ], + "en_answers": [ + "bagpipe" + ], + "count": 1 + }, + { + "answers": [ + "λύρα" + ], + "en_answers": [ + "lyre" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-as-01": { + "question": "Ποιο είναι το κύριο γεωργικό προϊόν που παράγεται στην Ελλάδα;", + "en_question": "What is the main agricultural product produced in your country?", + "annotations": [ + { + "answers": [ + "ελαιόλαδο" + ], + "en_answers": [ + "olive oil" + ], + "count": 2 + }, + { + "answers": [ + "λάδι", + "λαδι" + ], + "en_answers": [ + "oil" + ], + "count": 2 + }, + { + "answers": [ + "ελιές" + ], + "en_answers": [ + "olives" + ], + "count": 1 + }, + { + "answers": [ + "σιτάρι" + ], + "en_answers": [ + "wheat" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-02": { + "question": "Ποιο είναι το πιο δημοφιλές τρόφιμο βασισμένο στο σιτάρι στην Ελλάδα;", + "en_question": "What is the most popular wheat-based food item in your country?", + "annotations": [ + { + "answers": [ + "ψωμί", + "ψωμι" + ], + "en_answers": [ + "bread" + ], + "count": 4 + }, + { + "answers": [ + "μακαρονια" + ], + "en_answers": [ + "pasta" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-05": { + "question": "Ποιο είναι το πιο τυπικό ποτό/ρόφημα που προσφέρεται στους επισκέπτες όταν επισκέπτονται σπίτια στην Ελλάδα;", + "en_question": "What is the most typical drink offered to guests when they visit households in your country?", + "annotations": [ + { + "answers": [ + "καφές", + "καφες" + ], + "en_answers": [ + "coffee" + ], + "count": 4 + }, + { + "answers": [ + "λικέρ", + "λικερ" + ], + "en_answers": [ + "liqueur" + ], + "count": 2 + }, + { + "answers": [ + "τσάι" + ], + "en_answers": [ + "tea" + ], + "count": 1 + }, + { + "answers": [ + "ελληνικός καφές" + ], + "en_answers": [ + "greek coffee" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-07": { + "question": "Ποιο είναι το πιο δημοφιλές πιάτο με ψάρι που μαγειρεύεταιστην Ελλάδα;", + "en_question": "What is the most popular dish cooked with fish in your country?", + "annotations": [ + { + "answers": [ + "μπακαλιάρος σκορδαλιά" + ], + "en_answers": [ + "cod skordalia" + ], + "count": 2 + }, + { + "answers": [ + "ψαρόσουπα" + ], + "en_answers": [ + "fish soup" + ], + "count": 2 + }, + { + "answers": [ + "μπακαλιάρος" + ], + "en_answers": [ + "cod" + ], + "count": 1 + }, + { + "answers": [ + "τσιπούρα" + ], + "en_answers": [ + "sea bream" + ], + "count": 1 + }, + { + "answers": [ + "ψάρι ψητό" + ], + "en_answers": [ + "grilled fish" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-14": { + "question": "Τι φαγητό συνηθίζουν να τρώνε οι Έλληνες όταν βρέχει;", + "en_question": "What food do people from your country like to eat during rainy weather?", + "annotations": [ + { + "answers": [ + "σούπες" + ], + "en_answers": [ + "soups" + ], + "count": 1 + }, + { + "answers": [ + "τραχανά" + ], + "en_answers": [ + "tarhana" + ], + "count": 1 + }, + { + "answers": [ + "μακαρόνια με κιμά" + ], + "en_answers": [ + "pasta with minced meat" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-as-15": { + "question": "Ποιο ποτό/ρόφημα καταναλώνεται συνήθως στην Ελλάδα όταν ο καιρός είναι ζεστός;", + "en_question": "What drink is commonly consumed in your country when the weather is hot?", + "annotations": [ + { + "answers": [ + "φρέντο εσπρέσσο", + "φρεντο εσπρεσσο", + "freddo espresso", + "φρέντο εσπρέσο" + ], + "en_answers": [ + "cold espresso" + ], + "count": 2 + }, + { + "answers": [ + "μπύρα", + "μπυρα" + ], + "en_answers": [ + "beer" + ], + "count": 1 + }, + { + "answers": [ + "καφές" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + }, + { + "answers": [ + "σοκολάτα" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + }, + { + "answers": [ + "κόκα κόλα", + "κοκα κολα" + ], + "en_answers": [ + "coca cola" + ], + "count": 1 + }, + { + "answers": [ + "τσάι" + ], + "en_answers": [ + "tea" + ], + "count": 1 + }, + { + "answers": [ + "αναψυκτικά" + ], + "en_answers": [ + "soft drinks" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-20": { + "question": "Ποιο είναι το πιο δημοφιλές άθλημα εσωτερικού χώρου στην Ελλάδα;", + "en_question": "What is the most popular indoor sport in your country?", + "annotations": [ + { + "answers": [ + "μπάσκετ", + "μπασκετ" + ], + "en_answers": [ + "basketball" + ], + "count": 4 + }, + { + "answers": [ + "ποδόσφαιρο" + ], + "en_answers": [ + "football" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-29": { + "question": "Ποιο άθλημα αρέσει στους άνδρες στην Ελλάδα να παρακολουθούν;", + "en_question": "What sport do men in your country like to watch?", + "annotations": [ + { + "answers": [ + "ποδόσφαιρο", + "ποδόσφαιρό", + "ποδοσφαιρο" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "μπάσκετ" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-30": { + "question": "Ποιο άθλημα αρέσει στις γυναίκες στην Ελλάδα να παρακολουθούν;", + "en_question": "What sport do women in your country like to watch?", + "annotations": [ + { + "answers": [ + "μπάσκετ", + "καλαθοσφαίριση" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "βόλεϊ", + "βόλει" + ], + "en_answers": [ + "volleyball" + ], + "count": 2 + }, + { + "answers": [ + "στίβος" + ], + "en_answers": [ + "track and field" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-as-58": { + "question": "Ποιο είναι το πιο δημοφιλές ποτό/ρόφημα που οι Έλληνες προτιμούν να πίνουν στον χώρο εργασίας τους;", + "en_question": "What is the most popular beverage that people from your country like to drink in their workplace?", + "annotations": [ + { + "answers": [ + "καφές", + "καφέ" + ], + "en_answers": [ + "coffee" + ], + "count": 5 + }, + { + "answers": [ + "τσάι" + ], + "en_answers": [ + "tea" + ], + "count": 2 + }, + { + "answers": [ + "χυμός" + ], + "en_answers": [ + "juice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-64": { + "question": "Σε ποια εορτή συνηθίζουν όλα τα μέλη της οικογένειας να επανασυνδέονται στην Ελλάδα;", + "en_question": "On which holiday do all family members tend to reunite in your country?", + "annotations": [ + { + "answers": [ + "πάσχα", + "πασχα" + ], + "en_answers": [ + "easter" + ], + "count": 4 + }, + { + "answers": [ + "χριστούγεννα", + "χρηστουγεννα" + ], + "en_answers": [ + "christmas" + ], + "count": 3 + }, + { + "answers": [ + "γενέθλια" + ], + "en_answers": [ + "birthday" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-76": { + "question": "Ποια παραδοσιακά παιχνίδια παίζουν οι οικογένειες κατά τη διάρκεια των παραδοσιακών εορτών στην Ελλάδα;", + "en_question": "What traditional games do families play during traditional holidays in your country?", + "annotations": [ + { + "answers": [ + "χαρτιά" + ], + "en_answers": [ + "card games" + ], + "count": 2 + }, + { + "answers": [ + "καρβουνιάρης - παιχνίδι με χαρτιά" + ], + "en_answers": [ + "coalman - card game" + ], + "count": 1 + }, + { + "answers": [ + "τάβλι" + ], + "en_answers": [ + "backgammon" + ], + "count": 1 + }, + { + "answers": [ + "τσούκρισμα αυγών" + ], + "en_answers": [ + "egg tapping" + ], + "count": 1 + }, + { + "answers": [ + "μπάλα - μήλα" + ], + "en_answers": [ + "dodgeball" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-as-80": { + "question": "Τι είδους ρούχα φορούν οι άνθρωποι από την Ελλάδα στα παραδοσιακά πανηγύρια;", + "en_question": "What type of clothing do people from your country wear during traditional festivals?", + "annotations": [ + { + "answers": [ + "παραδοσιακές φορεσιές", + "παραδοσιακές στολές", + "παραδοσιακά", + "παραδοσιακα" + ], + "en_answers": [ + "traditional costumes", + "traditional" + ], + "count": 3 + }, + { + "answers": [ + "πουκάμισα", + "πουκάμισο" + ], + "en_answers": [ + "shirts", + "shirt" + ], + "count": 2 + }, + { + "answers": [ + "άνετα κάζουαλ" + ], + "en_answers": [ + "comfortable casual" + ], + "count": 1 + }, + { + "answers": [ + "φορέματα" + ], + "en_answers": [ + "dresses" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-89": { + "question": "Ποια παραδοσιακά αξεσουάρ για φεστιβάλ/πανηγύρια φορούν οι άνθρωποι από την Ελλάδα;", + "en_question": "What traditional festival accessories do people from your country wear?", + "annotations": [ + { + "answers": [ + "μαντήλες", + "μαντηλες", + "μαντήλια" + ], + "en_answers": [ + "handkerchiefs" + ], + "count": 2 + }, + { + "answers": [ + "παραδοσιακές στολές", + "παραδοσιακες στολες", + "στολές" + ], + "en_answers": [ + "traditional costumes", + "uniforms" + ], + "count": 2 + }, + { + "answers": [ + "φουστανέλα" + ], + "en_answers": [ + "fustanella" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "Δεν φοράμε κάτι παραδοσιακό στις γιορτές": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-az-05": { + "question": "Ποια είναι η πιο διάσημη περιοχή για την παραγωγή αλκοόλ στην Ελλάδα;", + "en_question": "What is the most famous region for alcohol production in your country?", + "annotations": [ + { + "answers": [ + "χίος", + "χιος" + ], + "en_answers": [ + "chios" + ], + "count": 1 + }, + { + "answers": [ + "κρήτη", + "κρητη" + ], + "en_answers": [ + "crete" + ], + "count": 1 + }, + { + "answers": [ + "μυτιλήνη" + ], + "en_answers": [ + "mytilene" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-az-11": { + "question": "Ποιο φρούτο τρώνε συχνά οι άνθρωποι στην Ελλάδα την καλοκαιρινή περίοδο;", + "en_question": "What fruit do people from your country often eat in the summer season?", + "annotations": [ + { + "answers": [ + "καρπούζι", + "καρπούζια" + ], + "en_answers": [ + "watermelon" + ], + "count": 3 + }, + { + "answers": [ + "πεπόνι", + "πεπόνια" + ], + "en_answers": [ + "melon" + ], + "count": 2 + }, + { + "answers": [ + "φράουλες", + "φράουλα" + ], + "en_answers": [ + "strawberries" + ], + "count": 1 + }, + { + "answers": [ + "βανίλιες" + ], + "en_answers": [ + "vanillas" + ], + "count": 1 + }, + { + "answers": [ + "σταφύλια", + "σταφύλι" + ], + "en_answers": [ + "grapes" + ], + "count": 1 + }, + { + "answers": [ + "μπανάνα", + "μπανάνες" + ], + "en_answers": [ + "banana" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-12": { + "question": "Ποια περιοχή στην Ελλάδα είναι γνωστή για τα θαλασσινά της φαγητά;", + "en_question": "Which region in your country is known for its seafood?", + "annotations": [ + { + "answers": [ + "νησιά αιγαίου" + ], + "en_answers": [ + "aegean islands" + ], + "count": 1 + }, + { + "answers": [ + "αίγινα", + "aigina" + ], + "en_answers": [ + "aegina" + ], + "count": 1 + }, + { + "answers": [ + "νησιά" + ], + "en_answers": [ + "islands" + ], + "count": 1 + }, + { + "answers": [ + "βόλος", + "βολος" + ], + "en_answers": [ + "volos" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-az-21": { + "question": "Ποια περιοχή στην Ελλάδα είναι ο πιο δημοφιλής προορισμός για σκι;", + "en_question": "Which region in your country is the most popular skiing destination?", + "annotations": [ + { + "answers": [ + "παρνασσός" + ], + "en_answers": [ + "parnassus" + ], + "count": 3 + }, + { + "answers": [ + "αράχωβα", + "αραχωβα" + ], + "en_answers": [ + "arachova" + ], + "count": 2 + }, + { + "answers": [ + "καλάβρυτα" + ], + "en_answers": [ + "kalavryta" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-26": { + "question": "Ποιος είναι ο πιο δημοφιλής αθλητής πολεμικών τεχνών στην Ελλάδα;", + "en_question": "Who is the most popular martial arts player in your country?", + "annotations": [ + { + "answers": [ + "μιχάλης ζαμπίδης", + "ζαμπίδης" + ], + "en_answers": [ + "michalis zambidis", + "zambidis" + ], + "count": 2 + }, + { + "answers": [ + "μουρούσης", + "μουρουσης", + "μιχάλης μουρούτσος" + ], + "en_answers": [ + "mourousis", + "michalis mouroutsos" + ], + "count": 2 + }, + { + "answers": [ + "αλέξανδρος νικολαίδης" + ], + "en_answers": [ + "alexandros nikolaidis" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-az-27": { + "question": "Ποιο άθλημα έχει αναπτυχθεί ταχύτερα στην Ελλάδα κατά την τελευταία δεκαετία;", + "en_question": "Which sport has been one of the fastest-growing in your country over the last decade?", + "annotations": [ + { + "answers": [ + "μπάσκετ", + "μπασκετ" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "τένις", + "τεννις" + ], + "en_answers": [ + "tennis" + ], + "count": 2 + }, + { + "answers": [ + "ποδόσφαιρο", + "ποδοσφαιρο" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "πετοσφαίριση", + "βόλεϊ" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-39": { + "question": "Ποια χώρα είναι ο πιο δημοφιλής προορισμός για τους φοιτητές από την Ελλάδα που σπουδάζουν στο εξωτερικό;", + "en_question": "Which country is the most popular destination for students from your country studying abroad?", + "annotations": [ + { + "answers": [ + "αμερική", + "αμερικη" + ], + "en_answers": [ + "america" + ], + "count": 3 + }, + { + "answers": [ + "αγγλία" + ], + "en_answers": [ + "england" + ], + "count": 2 + }, + { + "answers": [ + "ηνωμένο βασίλειο", + "μεγάλη βρετανία" + ], + "en_answers": [ + "united kingdom", + "great britain" + ], + "count": 2 + }, + { + "answers": [ + "ολλανδία" + ], + "en_answers": [ + "netherlands" + ], + "count": 1 + }, + { + "answers": [ + "λονδίνο", + "λονδινο" + ], + "en_answers": [ + "london" + ], + "count": 1 + }, + { + "answers": [ + "ιταλία" + ], + "en_answers": [ + "italy" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-49": { + "question": "Πόσα άτομα εργάζονται σε μια τυπική οικογένεια στην Ελλάδα; (Δώστε μόνο αραβικούς αριθμούς (π.χ., 1).)", + "en_question": "How many people work in a typical family in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 5 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-60": { + "question": "Στην Ελλάδα, ποιος φροντίζει τα παιδιά όταν και οι δύο γονείς δουλεύουν;", + "en_question": "In your country, who takes care of kids when both parents are working?", + "annotations": [ + { + "answers": [ + "παππούδες", + "οι παππούδες" + ], + "en_answers": [ + "grandfathers", + "the grandfathers" + ], + "count": 3 + }, + { + "answers": [ + "γιαγιά", + "γιαγιάδες" + ], + "en_answers": [ + "grandmother", + "grandmothers" + ], + "count": 2 + }, + { + "answers": [ + "νταντά" + ], + "en_answers": [ + "nanny" + ], + "count": 1 + }, + { + "answers": [ + "νηπιαγωγείο" + ], + "en_answers": [ + "kindergarten" + ], + "count": 1 + }, + { + "answers": [ + "παιδικός σταθμός", + "παιδικό σταθμός" + ], + "en_answers": [ + "nursery" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-69": { + "question": "Ποιο αλκοολούχο ποτό προτιμούν οι άνδρες από την Ελλάδα;", + "en_question": "What is the preferred alcoholic beverage for men from your country?", + "annotations": [ + { + "answers": [ + "κρασί", + "μπύρα" + ], + "en_answers": [ + "wine", + "beer" + ], + "count": 3 + }, + { + "answers": [ + "μπύρα", + "beer" + ], + "en_answers": [ + "beer" + ], + "count": 1 + }, + { + "answers": [ + "ουίσκι", + "ουισκι" + ], + "en_answers": [ + "whiskey" + ], + "count": 1 + }, + { + "answers": [ + "βότκα", + "βοτκα" + ], + "en_answers": [ + "vodka" + ], + "count": 1 + }, + { + "answers": [ + "τζιν" + ], + "en_answers": [ + "gin" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-70": { + "question": "Ποιο αλκοολούχο ποτό προτιμούν οι γυναίκες από την Ελλάδα;", + "en_question": "What is the preferred alcoholic beverage for women from your country?", + "annotations": [ + { + "answers": [ + "κρασί" + ], + "en_answers": [ + "wine" + ], + "count": 2 + }, + { + "answers": [ + "μπύρα", + "beer" + ], + "en_answers": [ + "beer" + ], + "count": 2 + }, + { + "answers": [ + "λικέρ", + "λικερ" + ], + "en_answers": [ + "liqueur" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-73": { + "question": "Πόσα άτομα κατά μέσο όρο παρευρίσκονται συνήθως σε έναν γάμο στην Ελλάδα; (Δώστε μόνο αραβικούς αριθμούς (π.χ., 1).)", + "en_question": "How many people on average typically attend a wedding in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "200" + ], + "en_answers": [ + "200" + ], + "count": 2 + }, + { + "answers": [ + "100" + ], + "en_answers": [ + "100" + ], + "count": 2 + }, + { + "answers": [ + "150" + ], + "en_answers": [ + "150" + ], + "count": 1 + }, + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 1 + }, + { + "answers": [ + "50" + ], + "en_answers": [ + "50" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-01": { + "question": "Τι είδους κρέας συνήθως τρώνε οι άνθρωποι όταν κάνουν μπάρμπεκιου στην Ελλάδα;", + "en_question": "What kind of meat do people usually eat when they have barbecue in your country?", + "annotations": [ + { + "answers": [ + "χοιρινό", + "χοιρινο" + ], + "en_answers": [ + "pork" + ], + "count": 4 + }, + { + "answers": [ + "κοτόπουλο" + ], + "en_answers": [ + "chicken" + ], + "count": 3 + }, + { + "answers": [ + "μοσχάρι", + "μοσχαρι" + ], + "en_answers": [ + "beef" + ], + "count": 3 + }, + { + "answers": [ + "αρνί", + "αρνι" + ], + "en_answers": [ + "lamb" + ], + "count": 2 + }, + { + "answers": [ + "πανσέτες" + ], + "en_answers": [ + "pork belly" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-02": { + "question": "Πότε συνήθως τρώνε πρωινό οι άνθρωποι στην Ελλάδα; (Απαντήστε σε μορφή ΩΩ:ΛΛ (π.χ., 18:00, 09:00).)", + "en_question": "When do people usually have breakfast in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 3 + }, + { + "answers": [ + "07:30" + ], + "en_answers": [ + "07:30" + ], + "count": 1 + }, + { + "answers": [ + "07:00" + ], + "en_answers": [ + "07:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-04": { + "question": "Τι είδους φαγητά συνηθίζουν οι άνθρωποι να τρώνε για σνακ αργά το βράδυ στην Ελλάδα;", + "en_question": "What kinds of food do people usually eat for late-night snacks in your country?", + "annotations": [ + { + "answers": [ + "τοστ" + ], + "en_answers": [ + "toast" + ], + "count": 2 + }, + { + "answers": [ + "ξηροί καρποί", + "ξηροι καρποί", + "ξηρούς καρπούς" + ], + "en_answers": [ + "nuts" + ], + "count": 2 + }, + { + "answers": [ + "πατατάκια", + "πατατακια" + ], + "en_answers": [ + "potato chips" + ], + "count": 1 + }, + { + "answers": [ + "ψωμί και τυρί" + ], + "en_answers": [ + "bread and cheese" + ], + "count": 1 + }, + { + "answers": [ + "παξιμάδι με ντομάτα κι ελιές" + ], + "en_answers": [ + "rusk with tomato and olives" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-05": { + "question": "Ποιο είναι το πιο διάσημο πικάντικο πιάτο στην Ελλάδα;", + "en_question": "What is the most famous spicy dish in your country?", + "annotations": [ + { + "answers": [ + "χοιρινή τηγανιά" + ], + "en_answers": [ + "pork stir fry" + ], + "count": 1 + }, + { + "answers": [ + "λουκάνικα", + "λουκανικα", + "λουκάνικο" + ], + "en_answers": [ + "sausages" + ], + "count": 1 + }, + { + "answers": [ + "σουτζουκάκια" + ], + "en_answers": [ + "meatballs" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 0 + } + }, + "New-ch-07": { + "question": "Ποια τρόφιμα συνήθως συνδυάζουν οι άνθρωποι με τα ισχυρά αλκοολούχα ποτά στην Ελλάδα;", + "en_question": "What food items do people typically pair with hard liquor in your country?", + "annotations": [ + { + "answers": [ + "ξηρούς καρπούς", + "ξηρους καρπους", + "ξηροί καρποί" + ], + "en_answers": [ + "nuts" + ], + "count": 3 + }, + { + "answers": [ + "πατατάκια", + "πατατακια" + ], + "en_answers": [ + "potato chips" + ], + "count": 2 + }, + { + "answers": [ + "αλλαντικά" + ], + "en_answers": [ + "deli meats" + ], + "count": 1 + }, + { + "answers": [ + "ελιές" + ], + "en_answers": [ + "olives" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-08": { + "question": "Ποιο απαραίτητο μπαχαρικό είναι αναντικατάστατο στο μαγείρεμα στην Ελλάδα;", + "en_question": "What seasoning is indispensable in cooking in your country?", + "annotations": [ + { + "answers": [ + "πιπέρι", + "πιπερι" + ], + "en_answers": [ + "pepper" + ], + "count": 3 + }, + { + "answers": [ + "κύμινο" + ], + "en_answers": [ + "cumin" + ], + "count": 1 + }, + { + "answers": [ + "αλάτι" + ], + "en_answers": [ + "salt" + ], + "count": 1 + }, + { + "answers": [ + "ρίγανη", + "ριγανη" + ], + "en_answers": [ + "oregano" + ], + "count": 1 + }, + { + "answers": [ + "κανέλα", + "κανελα" + ], + "en_answers": [ + "cinnamon" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-09": { + "question": "Τι φαγητό συνηθίζουν να καταναλώνουν οι άνθρωποι όταν ο καιρός είναι κρύος στην Ελλάδα;", + "en_question": "What food do people typically consume when the weather is cold in your country?", + "annotations": [ + { + "answers": [ + "κοτόσουπα" + ], + "en_answers": [ + "chicken soup" + ], + "count": 2 + }, + { + "answers": [ + "φασολάδα", + "φασολαδα" + ], + "en_answers": [ + "bean soup" + ], + "count": 2 + }, + { + "answers": [ + "σούπα", + "σουπα" + ], + "en_answers": [ + "soup" + ], + "count": 1 + }, + { + "answers": [ + "ζεστό καφέ", + "ζεστο καφε" + ], + "en_answers": [ + "hot coffee" + ], + "count": 1 + }, + { + "answers": [ + "πίτα", + "πιτα", + "πίτες" + ], + "en_answers": [ + "pie" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-13": { + "question": "Ποιο είναι το πιο διάσημο αλκοολούχο ποτό στην Ελλάδα;", + "en_question": "What is the most famous alcohol brand in your country?", + "annotations": [ + { + "answers": [ + "τσίπουρο" + ], + "en_answers": [ + "tsipouro" + ], + "count": 3 + }, + { + "answers": [ + "ούζο", + "ούζo" + ], + "en_answers": [ + "ouzo" + ], + "count": 3 + }, + { + "answers": [ + "ρακί" + ], + "en_answers": [ + "raki" + ], + "count": 2 + }, + { + "answers": [ + "κρασί" + ], + "en_answers": [ + "wine" + ], + "count": 1 + }, + { + "answers": [ + "μπύρα" + ], + "en_answers": [ + "beer" + ], + "count": 1 + }, + { + "answers": [ + "κρητικό τσίπουρο" + ], + "en_answers": [ + "cretan tsipouro" + ], + "count": 1 + }, + { + "answers": [ + "ηπειρώτικο τσίπουρο" + ], + "en_answers": [ + "epirotic tsipouro" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-14": { + "question": "Τι τρόφιμα συνήθως τρώνε οι άνθρωποι όταν είναι άρρωστοι στην Ελλάδα;", + "en_question": "What foods do people usually eat when they are sick in your country?", + "annotations": [ + { + "answers": [ + "σούπα", + "σουπα", + "σούπες", + "σουπες" + ], + "en_answers": [ + "soup", + "soups" + ], + "count": 3 + }, + { + "answers": [ + "κοτόσουπα" + ], + "en_answers": [ + "chicken soup" + ], + "count": 2 + }, + { + "answers": [ + "λαχανικά", + "λαχανικα" + ], + "en_answers": [ + "vegetables" + ], + "count": 1 + }, + { + "answers": [ + "φιδέ" + ], + "en_answers": [ + "noodle soup" + ], + "count": 1 + }, + { + "answers": [ + "φρούτα" + ], + "en_answers": [ + "fruits" + ], + "count": 1 + }, + { + "answers": [ + "ρύζι" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "κοτόπουλο" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-15": { + "question": "Τι είδους προετοιμασμένα/έτοιμα προς κατανάλωση τρόφιμα συνηθίζουν να αγοράζουν οι άνθρωποι συνήθως από τα σούπερ μάρκετ στην Ελλάδα;", + "en_question": "What prepared/ready-to-eat food do people typically buy at supermarkets in your country?", + "annotations": [ + { + "answers": [ + "πίτες", + "πιτες", + "πίτα" + ], + "en_answers": [ + "pies" + ], + "count": 1 + }, + { + "answers": [ + "πίτσες", + "πιτσες", + "πίτσα" + ], + "en_answers": [ + "pizzas" + ], + "count": 1 + }, + { + "answers": [ + "σνακς" + ], + "en_answers": [ + "snacks" + ], + "count": 1 + }, + { + "answers": [ + "συσκευασμένα σάντουιτς", + "συσκευασμένα σαντουιτς" + ], + "en_answers": [ + "packaged sandwiches" + ], + "count": 1 + }, + { + "answers": [ + "σαλάτες" + ], + "en_answers": [ + "salads" + ], + "count": 1 + }, + { + "answers": [ + "στικς ψαριού", + "στικς ψαριου" + ], + "en_answers": [ + "fish sticks" + ], + "count": 1 + }, + { + "answers": [ + "πατατάκια", + "πατατακια" + ], + "en_answers": [ + "potato chips" + ], + "count": 1 + }, + { + "answers": [ + "έτοιμα φαγητά σούπερ μάρκετ", + "ετοιμα φαγητα σουπερ μαρκετ" + ], + "en_answers": [ + "ready meals supermarket" + ], + "count": 1 + }, + { + "answers": [ + "αλλαντικά", + "αλλαντικα" + ], + "en_answers": [ + "deli meats" + ], + "count": 1 + }, + { + "answers": [ + "γαλακτομικά", + "γαλακτοκομικα" + ], + "en_answers": [ + "dairy products" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-16": { + "question": "Ποια είναι η πιο διάσημη ταινία με θέμα τον αθλητισμό στην Ελλάδα;", + "en_question": "What is the most famous sports-related movie in your country?", + "annotations": [ + { + "answers": [ + "μάμα μία", + "μαμα μια" + ], + "en_answers": [ + "mamma mia" + ], + "count": 1 + }, + { + "answers": [ + "η φανέλα με το νούμερο εννιά", + "η φανέλα νε το νούμερο εννιά", + "η φανέλα με το 9" + ], + "en_answers": [ + "the jersey with the number nine" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 3, + "not-applicable": 0 + } + }, + "New-ch-17": { + "question": "Ποιο ακραίο άθλημα (extreme sport) επιθυμούν οι άνθρωποι γενικά να δοκιμάσουν περισσότερο στην Ελλάδα;", + "en_question": "What extreme sport do people generally wish to try the most in your country?", + "annotations": [ + { + "answers": [ + "μπάντζι τζάμπινγκ", + "bungy jumping", + "bungee jumping" + ], + "en_answers": [ + "bungee jumping" + ], + "count": 2 + }, + { + "answers": [ + "ελεύθερη πτώση" + ], + "en_answers": [ + "free fall" + ], + "count": 1 + }, + { + "answers": [ + "τζετ σκι", + "jet ski" + ], + "en_answers": [ + "jet ski" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-18": { + "question": "Ποιο αγώνισμα του στίβου είναι το πιο δημοφιλές για παρακολούθηση κατά τη διάρκεια των αγώνων στην Ελλάδα;", + "en_question": "Which track and field event is the most popular to watch during competitions in your country?", + "annotations": [ + { + "answers": [ + "άλμα εις μήκος" + ], + "en_answers": [ + "long jump" + ], + "count": 3 + }, + { + "answers": [ + "100στάρι", + "100 μέτρα" + ], + "en_answers": [ + "hundred", + "100 meters" + ], + "count": 2 + }, + { + "answers": [ + "άλμα επί κοντώ" + ], + "en_answers": [ + "pole vault" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ch-19": { + "question": "Ποιο αγώνισμα της γυμναστικής είναι το πιο δημοφιλές για παρακολούθηση κατά τη διάρκεια των αγώνων στην Ελλάδα;", + "en_question": "Which gymnastics event is the most popular to watch during competitions in your country?", + "annotations": [ + { + "answers": [ + "ποδόσφαιρο", + "ποδοσφαιρο" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "κρίκοι", + "κρικοι" + ], + "en_answers": [ + "rings" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-23": { + "question": "Ποιος είναι ο πιο διάσημος παίκτης πινγκ πονγκ στην Ελλάδα;", + "en_question": "Who is the most famous table tennis player in your country?", + "annotations": [ + { + "answers": [ + "καλλίνικος κρεάνγκα", + "καλλινιγκος κρεανκα" + ], + "en_answers": [ + "kalinikos kreanga" + ], + "count": 1 + } + ], + "idks": { + "idk": 6, + "Δεν ξερω": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-ch-26": { + "question": "Στους Χειμερινούς Ολυμπιακούς Αγώνες, ποιο αγώνισμα είναι το πιο δημοφιλές για παρακολούθηση στην Ελλάδα;", + "en_question": "In the Winter Olympics, which event is the most popular to watch in your country?", + "annotations": [ + { + "answers": [ + "καλλιτεχνικό πατινάζ", + "καλλιτεχνικό πατιναζ", + "καλλιτεχνικό πατινάζ στον πάγο" + ], + "en_answers": [ + "figure skating", + "figure skating on ice" + ], + "count": 2 + }, + { + "answers": [ + "χόκευ" + ], + "en_answers": [ + "hockey" + ], + "count": 1 + }, + { + "answers": [ + "σκι" + ], + "en_answers": [ + "skiing" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "no-answer": 1, + "idk": 1 + } + }, + "New-ch-27": { + "question": "Ποιος είναι ο πιο διάσημος μποξέρ στην Ελλάδα;", + "en_question": "Who is the most famous boxer in your country?", + "annotations": [ + { + "answers": [ + "ζαμπίδης", + "μιχάλης ζαμπίδης" + ], + "en_answers": [ + "zambidis", + "michalis zambidis" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-30": { + "question": "Ποιος είναι ο πιο διάσημος αθλητής του στίβου στην Ελλάδα;", + "en_question": "Who is the most famous track and field athlete in your country?", + "annotations": [ + { + "answers": [ + "μίλτος τεντόγλου", + "μιλτος τεντογλου", + "τεντόγλου", + "τέντογλου" + ], + "en_answers": [ + "miltos tentoglou", + "tentoglou" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-ch-31": { + "question": "Ποια επαγγέλματα ελπίζουν περισσότερο οι γονείς ότι τα παιδιά τους θα ακολουθήσουν στην Ελλάδα;", + "en_question": "What job do parents most hope their children will pursue in your country?", + "annotations": [ + { + "answers": [ + "γιατρός", + "ιατρός", + "γιατροί", + "ιατροί" + ], + "en_answers": [ + "doctor", + "doctors" + ], + "count": 5 + }, + { + "answers": [ + "δικηγόρος" + ], + "en_answers": [ + "lawyer" + ], + "count": 4 + }, + { + "answers": [ + "μηχανικός", + "μηχανικοί" + ], + "en_answers": [ + "engineer", + "engineers" + ], + "count": 2 + }, + { + "answers": [ + "του μπαμπά" + ], + "en_answers": [ + "of the dad" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-32": { + "question": "Ποιο λογισμικό γραφείου χρησιμοποιούν συνήθως οι άνθρωποι στον χώρο εργασίας στην Ελλάδα;", + "en_question": "What office software do people typically use in the workplace in your country?", + "annotations": [ + { + "answers": [ + "microsoft office", + "ms office" + ], + "en_answers": [ + "microsoft office" + ], + "count": 3 + }, + { + "answers": [ + "windows" + ], + "en_answers": [ + "windows" + ], + "count": 1 + }, + { + "answers": [ + "excel" + ], + "en_answers": [ + "excel" + ], + "count": 1 + }, + { + "answers": [ + "outlook" + ], + "en_answers": [ + "prospects" + ], + "count": 1 + }, + { + "answers": [ + "word" + ], + "en_answers": [ + "word" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-38": { + "question": "Ποιες πόλεις ή περιοχές είναι γνωστές για τις δραστηριότητες εισαγωγών και εξαγωγών τους στην Ελλάδα;", + "en_question": "Which cities or regions are known for their import and export activities in your country?", + "annotations": [ + { + "answers": [ + "κρήτη" + ], + "en_answers": [ + "crete" + ], + "count": 2 + }, + { + "answers": [ + "πειραιάς" + ], + "en_answers": [ + "piraeus" + ], + "count": 2 + }, + { + "answers": [ + "αθήνα" + ], + "en_answers": [ + "athens" + ], + "count": 1 + }, + { + "answers": [ + "πάτρα" + ], + "en_answers": [ + "fatherland" + ], + "count": 1 + }, + { + "answers": [ + "καλαμάτα", + "καλαματα" + ], + "en_answers": [ + "kalamata" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-39": { + "question": "Ποια πλατφόρμα χρησιμοποιείται συνήθως στη βιομηχανία του ηλεκτρονικού εμπορίου στην Ελλάδα;", + "en_question": "What platform is commonly used in the e-commerce industry in your country?", + "annotations": [ + { + "answers": [ + "skroutz", + "skroutz.gr" + ], + "en_answers": [ + "skroutz", + "skroutz.gr" + ], + "count": 3 + }, + { + "answers": [ + "άμαζον", + "αμαζον" + ], + "en_answers": [ + "amazon" + ], + "count": 1 + }, + { + "answers": [ + "bestprice.gr" + ], + "en_answers": [ + "bestprice.com" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "New-ch-44": { + "question": "Πόσο διαρκεί η τυπική περίοδος δοκιμαστικής απασχόλησης για νέους υπαλλήλους πριν την υπογραφή ενός επίσημου συμβολαίου στην Ελλάδα; (π.χ., 1 μήνας).", + "en_question": "How long is the typical probation period for new employees before signing a formal contract in your country? (e.g., 1 month).", + "annotations": [ + { + "answers": [ + "15 ημέρες" + ], + "en_answers": [ + "15 days" + ], + "count": 2 + }, + { + "answers": [ + "1 βδομάδα" + ], + "en_answers": [ + "1 week" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-45": { + "question": "Σε ποιους κλάδους συνήθως επιλέγουν οι νέοι να ξεκινήσουν επιχειρήσεις στην Ελλάδα;", + "en_question": "Which industries do young people typically choose to start businesses in your country?", + "annotations": [ + { + "answers": [ + "εστίαση", + "εστίασης" + ], + "en_answers": [ + "catering" + ], + "count": 3 + }, + { + "answers": [ + "καφετέριες", + "καφέ" + ], + "en_answers": [ + "cafes", + "coffee" + ], + "count": 2 + }, + { + "answers": [ + "μπαρ" + ], + "en_answers": [ + "bar" + ], + "count": 1 + }, + { + "answers": [ + "τουρισμός" + ], + "en_answers": [ + "tourism" + ], + "count": 1 + }, + { + "answers": [ + "πληροφορική" + ], + "en_answers": [ + "informatics" + ], + "count": 1 + }, + { + "answers": [ + "οικονομία" + ], + "en_answers": [ + "economy" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-49": { + "question": "Ποιος είναι ο πιο συνηθισμένος τρόπος επικοινωνίας των μελών μιας οικογένειας από απόσταση στην Ελλάδα;", + "en_question": "What is the most common way for family members to communicate remotely in your country?", + "annotations": [ + { + "answers": [ + "viber", + "βάιμπερ", + "βαιμπερ" + ], + "en_answers": [ + "viber" + ], + "count": 3 + }, + { + "answers": [ + "τηλέφωνο", + "τηλεφωνο" + ], + "en_answers": [ + "phone" + ], + "count": 2 + }, + { + "answers": [ + "κινητό τηλέφωνο", + "κινητό", + "κινητο" + ], + "en_answers": [ + "mobile phone", + "mobile" + ], + "count": 2 + }, + { + "answers": [ + "διαδίκτυο" + ], + "en_answers": [ + "internet" + ], + "count": 1 + }, + { + "answers": [ + "messenger", + "messanger" + ], + "en_answers": [ + "messenger" + ], + "count": 1 + }, + { + "answers": [ + "skype" + ], + "en_answers": [ + "skype" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-51": { + "question": "Ποια μορφή διαμονής κλείνεται συνήθως για οικογενειακά ταξίδια στην Ελλάδα;", + "en_question": "What form of accommodation is typically booked for family trips in your country?", + "annotations": [ + { + "answers": [ + "ξενοδοχείο", + "ξενοδοχεία" + ], + "en_answers": [ + "hotel", + "hotels" + ], + "count": 4 + }, + { + "answers": [ + "πλήρης με διατροφή" + ], + "en_answers": [ + "full board" + ], + "count": 1 + }, + { + "answers": [ + "ενοικιαζόμενα διαμερίσματα" + ], + "en_answers": [ + "rental apartments" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-54": { + "question": "Ποιο φρούτο συνήθως προετοιμάζεται περισσότερο για τα οικογενειακά δείπνα στην Ελλάδα;", + "en_question": "Which fruit is usually prepared the most for family dinners in your country?", + "annotations": [ + { + "answers": [ + "καρπούζι", + "καρπουζι" + ], + "en_answers": [ + "watermelon" + ], + "count": 3 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 0 + } + }, + "New-ch-64": { + "question": "Πόσες ώρες μαθημάτων έχουν συνήθως οι φοιτητές του πανεπιστημίου ανά εβδομάδα στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 1).)", + "en_question": "How many hours of classes do university students typically have per week in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 2 + }, + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-66": { + "question": "Ποιο είναι το τυπικό δίδακτρο ανά εξάμηνο για τα δημόσια λύκεια στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 1).)", + "en_question": "What is the typical tuition fee per semester for public high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 5 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-70": { + "question": "Ποια υποχρεωτικά μαθήματα έχουν κοινά οι φοιτητές των πανεπιστημίων στην Ελλάδα;", + "en_question": "What compulsory courses do university students have in common in your country?", + "annotations": [ + { + "answers": [ + "σύνταξη τεχνικών κειμένων" + ], + "en_answers": [ + "technical writing" + ], + "count": 1 + }, + { + "answers": [ + "αγγλικά", + "αγγλικα" + ], + "en_answers": [ + "english" + ], + "count": 1 + }, + { + "answers": [ + "μαθηματικά" + ], + "en_answers": [ + "mathematics" + ], + "count": 1 + }, + { + "answers": [ + "πληροφορική" + ], + "en_answers": [ + "informatics" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ch-71": { + "question": "Ποιο είναι το μέσο μέγεθος τμήματος στα λύκεια στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 1).)", + "en_question": "What is the average class size in high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 2 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 2 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-72": { + "question": "Ποια ειδικότητα θεωρείται η πιο ευνοϊκή για απασχόληση στην Ελλάδα;", + "en_question": "Which major is considered most conducive to employment in your country?", + "annotations": [ + { + "answers": [ + "προγραμματιστής", + "προγραμματισμός", + "ηλεκτρονικοί υπολογιστές", + "προγραμματιστές" + ], + "en_answers": [ + "programmer", + "programming", + "computers" + ], + "count": 3 + }, + { + "answers": [ + "γιατρός", + "γιατροσ", + "γιατροί", + "ιατρός", + "ιατροί" + ], + "en_answers": [ + "doctor", + "doctors" + ], + "count": 2 + }, + { + "answers": [ + "αστυνομία" + ], + "en_answers": [ + "police" + ], + "count": 1 + }, + { + "answers": [ + "πολιτική" + ], + "en_answers": [ + "policy" + ], + "count": 1 + }, + { + "answers": [ + "μηχανολόγοι μηχανικοί" + ], + "en_answers": [ + "mechanical engineers" + ], + "count": 1 + }, + { + "answers": [ + "ξενοδοχοϋπάλληλοι", + "ξενοδοχουπαλληλοι", + "ξενοδοχοϋπάλληλος" + ], + "en_answers": [ + "hotel employees" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-73": { + "question": "Ποιο είδος συλλόγων είναι το πιο δημοφιλές μεταξύ των φοιτητών πανεπιστημίου στην Ελλάδα;", + "en_question": "What type of clubs are most popular among university students in your country?", + "annotations": [ + { + "answers": [ + "κομματικές παρατάξεις", + "κομματικοί", + "κομματικοι", + "πολιτικοί σύλλογοι", + "πολιτικοί σύλλογοι (κνε" + ], + "en_answers": [ + "political factions", + "party members", + "political associations" + ], + "count": 4 + }, + { + "answers": [ + "δαπ", + "δαπ κλπ)", + "δαπ-νδφκ" + ], + "en_answers": [ + "democratic renewal vanguard" + ], + "count": 2 + }, + { + "answers": [ + "κνε", + "κομμουνιστική νεολαία ελλάδας" + ], + "en_answers": [ + "communist youth of greece" + ], + "count": 1 + }, + { + "answers": [ + "ποδόσφαιρο", + "ποδοσφαιρο" + ], + "en_answers": [ + "football" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-74": { + "question": "Ποιους τύπους στέγασης συνήθως επιλέγουν οι φοιτητές των πανεπιστημίων στην Ελλάδα;", + "en_question": "What types of accommodation do university students in your country typically live in?", + "annotations": [ + { + "answers": [ + "φοιτητική εστία", + "εστίες", + "φοιτητικές εστίες" + ], + "en_answers": [ + "student dormitory", + "student dormitories" + ], + "count": 3 + }, + { + "answers": [ + "διαμερίσματα" + ], + "en_answers": [ + "apartments" + ], + "count": 2 + }, + { + "answers": [ + "ενοικίαση σπιτιού", + "ενοίκιο" + ], + "en_answers": [ + "house rental", + "rent" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-75": { + "question": "Πόση είναι η διάρκεια κάθε διδακτικής ώρας για τους μαθητές του γυμνασίου στην Ελλάδα (λεπτά); (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 1).)", + "en_question": "How long is each class period for middle school students in your country (minutes)? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "45" + ], + "en_answers": [ + "45" + ], + "count": 5 + }, + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-78": { + "question": "Ποιες δραστηριότητες αναψυχής συνήθως αρέσουν στις συνταξιούχες γυναίκες στην Ελλάδα;", + "en_question": "What leisure activities do retired women typically like in your country?", + "annotations": [ + { + "answers": [ + "καπη" + ], + "en_answers": [ + "senior citizens' community center" + ], + "count": 2 + }, + { + "answers": [ + "εκδρομή", + "εκδρομές", + "εκδρομες" + ], + "en_answers": [ + "excursion", + "excursions" + ], + "count": 2 + }, + { + "answers": [ + "χορός" + ], + "en_answers": [ + "dance" + ], + "count": 1 + }, + { + "answers": [ + "οργανωμένα ταξίδια" + ], + "en_answers": [ + "organized trips" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-79": { + "question": "Ποιες δραστηριότητες αναψυχής συνήθως αρέσουν στους συνταξιούχους άνδρες στην Ελλάδα;", + "en_question": "What leisure activities do retired men typically like in your country?", + "annotations": [ + { + "answers": [ + "καφενείο", + "καφετέριες", + "καφετέριες/καφενεία", + "καφενεία" + ], + "en_answers": [ + "coffee shop", + "cafes", + "coffeehouses" + ], + "count": 2 + }, + { + "answers": [ + "τάβλι" + ], + "en_answers": [ + "backgammon" + ], + "count": 1 + }, + { + "answers": [ + "χαρτιά" + ], + "en_answers": [ + "papers" + ], + "count": 1 + }, + { + "answers": [ + "να βλέπουν ειδησεις", + "να βλεπουν ειδησεις" + ], + "en_answers": [ + "to watch news" + ], + "count": 1 + }, + { + "answers": [ + "στο καπί να παίζουν τράπουλα." + ], + "en_answers": [ + "playing cards at the senior citizens' community center" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-80": { + "question": "Κατά τη διάρκεια ποιών εορτών συνηθίζουν οι άνθρωποι να επισκέπτονται θρησκευτικούς χώρους (ναούς, εκκλησίες κλπ.) στην Ελλάδα;", + "en_question": "During which holidays do people typically visit religious sites (temples, churches, etc.) in your country?", + "annotations": [ + { + "answers": [ + "πάσχα", + "πασχα" + ], + "en_answers": [ + "easter" + ], + "count": 5 + }, + { + "answers": [ + "χριστούγεννα", + "χριστουγεννα" + ], + "en_answers": [ + "christmas" + ], + "count": 4 + }, + { + "answers": [ + "κοίμηση της θεοτόκου", + "δεκαπενταύγουστος", + "15 αυγούστου" + ], + "en_answers": [ + "dormition of the mother of god", + "august 15th" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-81": { + "question": "Ποια είναι τα τυπικά δώρα για νέο σπίτι στην Ελλάδα;", + "en_question": "What are the typical housewarming gifts in your country?", + "annotations": [ + { + "answers": [ + "κρασί" + ], + "en_answers": [ + "wine" + ], + "count": 1 + }, + { + "answers": [ + "γλυκά" + ], + "en_answers": [ + "sweets" + ], + "count": 1 + }, + { + "answers": [ + "αλκοόλ", + "αλκοολ" + ], + "en_answers": [ + "alcohol" + ], + "count": 1 + }, + { + "answers": [ + "πίνακες", + "πινακες" + ], + "en_answers": [ + "paintings" + ], + "count": 1 + }, + { + "answers": [ + "συσκευές κουζίνας", + "συσκευες κουζινας" + ], + "en_answers": [ + "kitchen appliances" + ], + "count": 1 + }, + { + "answers": [ + "ρόδι", + "ροδι" + ], + "en_answers": [ + "pomegranate" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-82": { + "question": " Τι ώρα συνήθως αρχίζουν οι γάμοι στην Ελλάδα; (Απαντήστε σε μορφή ΩΩ:ΛΛ, π.χ., 18:00, 09:00).", + "en_question": "At what time do weddings typically start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "19:00" + ], + "en_answers": [ + "19:00" + ], + "count": 2 + }, + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 2 + }, + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 1 + }, + { + "answers": [ + "16:00" + ], + "en_answers": [ + "16:00" + ], + "count": 1 + }, + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-83": { + "question": "Ποια πόλη στην Ελλάδα φιλοξενεί τα περισσότερα φεστιβάλ;", + "en_question": "Which city in your country hosts festivals the most?", + "annotations": [ + { + "answers": [ + "αθήνα", + "αθηνα", + "aθήνα", + "αθηνά" + ], + "en_answers": [ + "athens", + "athena" + ], + "count": 5 + }, + { + "answers": [ + "θεσσαλονίκη" + ], + "en_answers": [ + "thessaloniki" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-84": { + "question": "Ποιο χρώμα ρούχων φορούν συνήθως οι άνθρωποι όταν παρευρίσκονται σε γάμους στην Ελλάδα;", + "en_question": "What color of clothing do people typically wear when attending weddings in your country?", + "annotations": [ + { + "answers": [ + "λευκό" + ], + "en_answers": [ + "white" + ], + "count": 3 + }, + { + "answers": [ + "μαύρο" + ], + "en_answers": [ + "black" + ], + "count": 1 + }, + { + "answers": [ + "εκρού" + ], + "en_answers": [ + "ecru" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-85": { + "question": "Ποιο χρώμα ρούχων φορούν συνήθως οι άνθρωποι όταν παρευρίσκονται σε κηδείες στην Ελλάδα;", + "en_question": "What color of clothing do people typically wear when attending funerals in your country?", + "annotations": [ + { + "answers": [ + "μαύρο", + "μαυρο" + ], + "en_answers": [ + "black" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-01": { + "question": "Ποιο σνακ τρώγεται στον κινηματογράφο στην Ελλάδα;", + "en_question": "Which snack is eaten in the cinema in your country?", + "annotations": [ + { + "answers": [ + "ποπ κορν", + "ποπκορν", + "pop corn", + "ποπ-κορν" + ], + "en_answers": [ + "popcorn", + "pop corn" + ], + "count": 5 + }, + { + "answers": [ + "πατατάκια" + ], + "en_answers": [ + "potato chips" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-02": { + "question": "Ποια είναι η πιο δημοφιλής γεύση πατατάκι στην Ελλάδα;", + "en_question": "What is the most popular chip/crisp flavour in your country?", + "annotations": [ + { + "answers": [ + "ρίγανη", + "ριγανη" + ], + "en_answers": [ + "oregano" + ], + "count": 4 + }, + { + "answers": [ + "κέτσαπ" + ], + "en_answers": [ + "ketchup" + ], + "count": 1 + }, + { + "answers": [ + "αλάτι" + ], + "en_answers": [ + "salt" + ], + "count": 1 + }, + { + "answers": [ + "μπάρμπεκιου" + ], + "en_answers": [ + "barbecue" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-04": { + "question": "Ποιος είναι ένας δημοφιλής διάσημος σεφ στην Ελλάδα;", + "en_question": "Who is a popular celebrity chef in your country?", + "annotations": [ + { + "answers": [ + "πετρετζίκης", + "άκης πετρετζίκης" + ], + "en_answers": [ + "petretzikis", + "akis petretzikis" + ], + "count": 5 + }, + { + "answers": [ + "μποτρίνι" + ], + "en_answers": [ + "botrini" + ], + "count": 1 + }, + { + "answers": [ + "καλίδης" + ], + "en_answers": [ + "kalidis" + ], + "count": 1 + }, + { + "answers": [ + "κουτσόπουλος" + ], + "en_answers": [ + "koutsopoulos" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-05": { + "question": "Ποιο φαγητό αποτελεί μια οικονομική και γρήγορη επιλογή γεύματος στην Ελλάδα;", + "en_question": "Which food is a cost-effective and quick meal option in your country?", + "annotations": [ + { + "answers": [ + "γύρος", + "γυρος" + ], + "en_answers": [ + "gyro", + "round" + ], + "count": 2 + }, + { + "answers": [ + "μακαρόνια" + ], + "en_answers": [ + "pasta" + ], + "count": 1 + }, + { + "answers": [ + "σουβλάκι", + "σουβλακι", + "σουβλάκια" + ], + "en_answers": [ + "souvlaki" + ], + "count": 1 + }, + { + "answers": [ + "πίτσα", + "πιτσα" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + }, + { + "answers": [ + "ζυμαρικά με σάλτσα" + ], + "en_answers": [ + "pasta with sauce" + ], + "count": 1 + }, + { + "answers": [ + "όσπρια" + ], + "en_answers": [ + "legumes" + ], + "count": 1 + }, + { + "answers": [ + "λαδερά" + ], + "en_answers": [ + "oily dishes" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-07": { + "question": "Ποιες είναι οι πιο δημοφιλείς εκπομπές μαγειρικής στην Ελλάδα;", + "en_question": "What are the most popular cooking shows in your country?", + "annotations": [ + { + "answers": [ + "master chef", + "μάστερ σεφ", + "masterchef" + ], + "en_answers": [ + "master chef", + "masterchef" + ], + "count": 3 + }, + { + "answers": [ + "kitchen lab", + "εργαστήριο κουζίνας" + ], + "en_answers": [ + "kitchen lab" + ], + "count": 2 + }, + { + "answers": [ + "άκης πετρετζίκης" + ], + "en_answers": [ + "akis petretzikis" + ], + "count": 1 + }, + { + "answers": [ + "μαντάμ τζίντζερ" + ], + "en_answers": [ + "madame ginger" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-08": { + "question": "Ποια είναι η πιο δημοφιλής μάρκα σοκολάτας στην Ελλάδα;", + "en_question": "What is the most popular chocolate brand in your country?", + "annotations": [ + { + "answers": [ + "lacta", + "λάκτα" + ], + "en_answers": [ + "lacta" + ], + "count": 5 + }, + { + "answers": [ + "ίον" + ], + "en_answers": [ + "ion" + ], + "count": 1 + }, + { + "answers": [ + "παυλίδης" + ], + "en_answers": [ + "pavlidis" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-10": { + "question": "Ποιο είναι το πιο δημοφιλές τυρί στην Ελλάδα;", + "en_question": "What is the most eaten cheese in your country?", + "annotations": [ + { + "answers": [ + "φέτα" + ], + "en_answers": [ + "feta" + ], + "count": 5 + }, + { + "answers": [ + "γραβιέρα" + ], + "en_answers": [ + "graviera" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-11": { + "question": "Ποιο είναι το πιο αντιπαθητικό λαχανικό στην Ελλάδα;", + "en_question": "What is the most disliked vegetable in your country?", + "annotations": [ + { + "answers": [ + "μπάμιες" + ], + "en_answers": [ + "okra" + ], + "count": 1 + }, + { + "answers": [ + "μπρόκολο" + ], + "en_answers": [ + "broccoli" + ], + "count": 1 + }, + { + "answers": [ + "κουνουπίδι" + ], + "en_answers": [ + "cauliflower" + ], + "count": 1 + }, + { + "answers": [ + "λαχανάκια βρυξελών" + ], + "en_answers": [ + "brussels sprouts" + ], + "count": 1 + }, + { + "answers": [ + "σπαράγγια" + ], + "en_answers": [ + "asparagus" + ], + "count": 1 + }, + { + "answers": [ + "σπανάκι" + ], + "en_answers": [ + "spinach" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-12": { + "question": "Ποιο φαγητό βρίσκεται πιο συχνά στα εμπορικά κέντρα στην Ελλάδα;", + "en_question": "What food is most commonly found in food courts in your country?", + "annotations": [ + { + "answers": [ + "πίτσα", + "πιτσα" + ], + "en_answers": [ + "pizza" + ], + "count": 2 + }, + { + "answers": [ + "μπέργκερ", + "μπεργκερ" + ], + "en_answers": [ + "burger" + ], + "count": 2 + }, + { + "answers": [ + "γύρος", + "γυρος" + ], + "en_answers": [ + "gyro" + ], + "count": 2 + }, + { + "answers": [ + "παστίτσιο", + "παστιτσιο" + ], + "en_answers": [ + "pastitsio" + ], + "count": 1 + }, + { + "answers": [ + "μουσακάς", + "μουσακας" + ], + "en_answers": [ + "moussaka" + ], + "count": 1 + }, + { + "answers": [ + "μακαρόνια με κιμά", + "μακαρονια με κιμα" + ], + "en_answers": [ + "pasta with minced meat" + ], + "count": 1 + }, + { + "answers": [ + "πατάτες τηγανητές" + ], + "en_answers": [ + "fried potatoes" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-17": { + "question": "Ποιοι είναι οι πιο συνηθισμένοι τρόποι ενθάρρυνσης που χρησιμοποιούν οι φίλαθλοι στην Ελλάδα;", + "en_question": "What are the most common cheering tools used by sports fans in your country?", + "annotations": [ + { + "answers": [ + "συνθήματα", + "σύνθημα", + "συνθημα" + ], + "en_answers": [ + "chants", + "chant" + ], + "count": 4 + }, + { + "answers": [ + "φωνές" + ], + "en_answers": [ + "shouting" + ], + "count": 1 + }, + { + "answers": [ + "χειροκρότημα" + ], + "en_answers": [ + "applause" + ], + "count": 1 + }, + { + "answers": [ + "κόρνες" + ], + "en_answers": [ + "horns" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-18": { + "question": "Τι φέρνουν μαζί τους οι φίλαθλοι όταν παρακολουθούν έναν αγώνα ζωντανά στην Ελλάδα;", + "en_question": "What do fans bring with them when attending a live game in your country?", + "annotations": [ + { + "answers": [ + "κασκόλ", + "κασκολ" + ], + "en_answers": [ + "scarf" + ], + "count": 2 + }, + { + "answers": [ + "αμφιέσεις παικτων" + ], + "en_answers": [ + "player outfits" + ], + "count": 1 + }, + { + "answers": [ + "σημαίες", + "σημαιες" + ], + "en_answers": [ + "flags" + ], + "count": 1 + }, + { + "answers": [ + "χαρτόνια", + "χαρτονια" + ], + "en_answers": [ + "cardboards" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-19": { + "question": "Ποιο είναι το πιο γνωστό αθλητικό στάδιο στην Ελλάδα;", + "en_question": "What is the most well known sporting stadium in your country?", + "annotations": [ + { + "answers": [ + "ολυμπιακό", + "ολυμπιακό στάδιο αθηνών", + "ολυμπιακο σταδιο αθηνα", + "οακα" + ], + "en_answers": [ + "olympic", + "olympic stadium athens", + "oaka" + ], + "count": 3 + }, + { + "answers": [ + "καραϊσκάκη", + "καραισκάκη" + ], + "en_answers": [ + "karaiskaki" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-23": { + "question": "Ποιος είναι ο πιο διάσημος Παραολυμπιονίκης στην Ελλάδα;", + "en_question": "Who is the most famous Paralympian in your country?", + "annotations": [ + { + "answers": [ + "χαράλαμπος ταϊγανίδης", + "χαράλαμπος ταιγανίδης", + "ταϊγανίδης", + "ταιγανιδης" + ], + "en_answers": [ + "charalambos taiganidis", + "taiganidis" + ], + "count": 3 + }, + { + "answers": [ + "τσαπατάκης αντώνης" + ], + "en_answers": [ + "tsapatákis antónis" + ], + "count": 2 + } + ], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-26": { + "question": "Ποιο είναι το πιο αναγνωρίσιμο αθλητικό σύνθημα στην Ελλάδα;", + "en_question": "What is the best recognized sporting chant in your country?", + "annotations": [ + { + "answers": [ + "είσαι στο μυαλό κάτι μαγικό", + "κάτι μαγικό", + "κατι μαγικο" + ], + "en_answers": [ + "you are something magical in the mind", + "something magical" + ], + "count": 2 + }, + { + "answers": [ + "ολυμπιακός - ολυμπιακός" + ], + "en_answers": [ + "olympiacos - olympiacos" + ], + "count": 1 + }, + { + "answers": [ + "σήκωσε το το τιμημένο", + "σηκωσε το το τιμημενο" + ], + "en_answers": [ + "raise the honored one" + ], + "count": 1 + }, + { + "answers": [ + "ελλάς οε οε δε σταματώ να τραγουδώ ποτέ" + ], + "en_answers": [ + "greece oh oh i never stop singing" + ], + "count": 1 + }, + { + "answers": [ + "σύλλογος μεγάλος", + "συλλογος μεγαλος" + ], + "en_answers": [ + "large club" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-en-38": { + "question": "Ποιοι κλάδοι είναι γνωστοί για πιο ευέλικτα ωράρια εργασίας στην Ελλάδα;", + "en_question": "Which industries are known for more flexible working hours in your country?", + "annotations": [ + { + "answers": [ + "πωλήσεις", + "πωλησεις", + "πωλητές", + "πωλητες" + ], + "en_answers": [ + "sales", + "sellers" + ], + "count": 2 + }, + { + "answers": [ + "εστίαση" + ], + "en_answers": [ + "catering" + ], + "count": 1 + }, + { + "answers": [ + "μάρκετινγκ" + ], + "en_answers": [ + "marketing" + ], + "count": 1 + }, + { + "answers": [ + "ταχυεξυπηρέτησης", + "ταχυεξυπηρετησης", + "ταχυεξυπηρέτηση" + ], + "en_answers": [ + "express service" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-41": { + "question": "Ποιος είναι ο πιο γνωστός και επιτυχημένος επιχειρηματίας στην Ελλάδα;", + "en_question": "Who is the most well known and successful entrepreneur in your country?", + "annotations": [ + { + "answers": [ + "μαρινάκης" + ], + "en_answers": [ + "marinakis" + ], + "count": 2 + }, + { + "answers": [ + "ωνάσης", + "ωνασης" + ], + "en_answers": [ + "onassis" + ], + "count": 2 + }, + { + "answers": [ + "νιαρχος", + "νιάρχος" + ], + "en_answers": [ + "shipowner", + "niarchos" + ], + "count": 2 + }, + { + "answers": [ + "γιαννακόπουλος" + ], + "en_answers": [ + "giannakopoulos" + ], + "count": 1 + }, + { + "answers": [ + "ιβάν σαββίδης" + ], + "en_answers": [ + "ivan savvidis" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-47": { + "question": "Τι συνήθως βρίσκεται στον πίσω κήπο των σπιτιών στην Ελλάδα;", + "en_question": "What can typically be found in the back garden of houses in your country?", + "annotations": [ + { + "answers": [ + "μπαχτσές", + "μπαχτσες", + "παρτέρια" + ], + "en_answers": [ + "flower beds" + ], + "count": 2 + }, + { + "answers": [ + "τριανταφυλλιά", + "τριανταφυλλια" + ], + "en_answers": [ + "roses" + ], + "count": 1 + }, + { + "answers": [ + "λουλούδια" + ], + "en_answers": [ + "flowers" + ], + "count": 1 + }, + { + "answers": [ + "αποθήκη" + ], + "en_answers": [ + "warehouse" + ], + "count": 1 + }, + { + "answers": [ + "εργαλεία" + ], + "en_answers": [ + "tools" + ], + "count": 1 + }, + { + "answers": [ + "δέντρα" + ], + "en_answers": [ + "trees" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-49": { + "question": "Ποιο είναι το όνομα της πιο διάσημης οικογένειας στην Ελλάδα;", + "en_question": "What is the name of the most famous family in your country?", + "annotations": [ + { + "answers": [ + "ωνάση", + "ωναση" + ], + "en_answers": [ + "onassis" + ], + "count": 2 + }, + { + "answers": [ + "παπαδόπουλος" + ], + "en_answers": [ + "papadopoulos" + ], + "count": 1 + }, + { + "answers": [ + "μητσοτάκη" + ], + "en_answers": [ + "mitsotakis" + ], + "count": 1 + }, + { + "answers": [ + "μενεγάκη" + ], + "en_answers": [ + "menegaki" + ], + "count": 1 + }, + { + "answers": [ + "ευαγγελάτου" + ], + "en_answers": [ + "evangelatou" + ], + "count": 1 + }, + { + "answers": [ + "βαρδινογιάννη" + ], + "en_answers": [ + "vardinogianni" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-50": { + "question": "Ποιο είναι το πιο συνηθισμένο επώνυμο στην Ελλάδα;", + "en_question": "What is the most common family name in your country?", + "annotations": [ + { + "answers": [ + "παπαδόπουλος", + "παπαδοπουλος" + ], + "en_answers": [ + "papadopoulos" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-55": { + "question": "Ποια θρησκεία ασκείται πιο συχνά από τις οικογένειες στην Ελλάδα;", + "en_question": "Which religion is most commonly practiced by families in your country?", + "annotations": [ + { + "answers": [ + "ορθόδοξος χριστιανισμός", + "ορθοδοξος χριστιανισμός", + "ορθόδοξη χριστιανική πίστη" + ], + "en_answers": [ + "orthodox christianity", + "orthodox christian faith" + ], + "count": 3 + }, + { + "answers": [ + "χριστιανισμός", + "χριστιανισμος" + ], + "en_answers": [ + "christianity" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-56": { + "question": "Ποια είναι η πιο δημοφιλής ξένη γλώσσα που μιλιέται από οικογένειες στην Ελλάδα;", + "en_question": "What is the most popular foreign language spoken by families in your country?", + "annotations": [ + { + "answers": [ + "αγγλικά", + "αγγλικα" + ], + "en_answers": [ + "english" + ], + "count": 3 + }, + { + "answers": [ + "αλβανικά" + ], + "en_answers": [ + "albanian" + ], + "count": 1 + }, + { + "answers": [ + "ελληνικά" + ], + "en_answers": [ + "greek" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-59": { + "question": "Ποια χώρα είναι ο πιο δημοφιλής προορισμός για τις οικογένειες από την Ελλάδα για να μεταναστεύσουν;", + "en_question": "Which country is the most popular destination for families from your country to emigrate to?", + "annotations": [ + { + "answers": [ + "γερμανία", + "γερμανια" + ], + "en_answers": [ + "germany" + ], + "count": 5 + }, + { + "answers": [ + "ηνωμένες πολιτίες" + ], + "en_answers": [ + "united states" + ], + "count": 1 + }, + { + "answers": [ + "αυστραλία" + ], + "en_answers": [ + "australia" + ], + "count": 1 + }, + { + "answers": [ + "καναδάς" + ], + "en_answers": [ + "canada" + ], + "count": 1 + }, + { + "answers": [ + "ολανδία" + ], + "en_answers": [ + "netherlands" + ], + "count": 1 + }, + { + "answers": [ + "αγγλία" + ], + "en_answers": [ + "england" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-68": { + "question": "Ποιες είναι οι συνέπειες για την κακή συμπεριφορά στα σχολεία στην Ελλάδα;", + "en_question": "What repercussions are there for bad behavior in schools in your country?", + "annotations": [ + { + "answers": [ + "αποβολή", + "αποβολή από την τάξη", + "αποβολη απο την ταξη" + ], + "en_answers": [ + "expulsion", + "expulsion from class" + ], + "count": 3 + }, + { + "answers": [ + "τιμωρία" + ], + "en_answers": [ + "punishment" + ], + "count": 1 + }, + { + "answers": [ + "μη ενδοοικογενειακή επικοινωνία", + "μη ενδοοικεγενειακη επικοινωνια" + ], + "en_answers": [ + "non-household communication" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-69": { + "question": "Ποιοι συγγραφείς μελετώνται συνήθως στο μάθημα λογοτεχνίας στην Ελλάδα;", + "en_question": "Which writers are commonly studied in literature class in your country?", + "annotations": [ + { + "answers": [ + "παπαδιαμάντης" + ], + "en_answers": [ + "papadiamantis" + ], + "count": 2 + }, + { + "answers": [ + "ελύτης" + ], + "en_answers": [ + "elitis" + ], + "count": 2 + }, + { + "answers": [ + "σεφέρης" + ], + "en_answers": [ + "seferis" + ], + "count": 2 + }, + { + "answers": [ + "παλαμάς" + ], + "en_answers": [ + "palamas" + ], + "count": 1 + }, + { + "answers": [ + "καρυωτάκης" + ], + "en_answers": [ + "karyotakis" + ], + "count": 1 + }, + { + "answers": [ + "καβάφης" + ], + "en_answers": [ + "cavafy" + ], + "count": 1 + }, + { + "answers": [ + "άλκη ζέη" + ], + "en_answers": [ + "alki zei" + ], + "count": 1 + }, + { + "answers": [ + "καζαντζάκης" + ], + "en_answers": [ + "kazantzakis" + ], + "count": 1 + }, + { + "answers": [ + "διονύσιος σολωμός" + ], + "en_answers": [ + "dionysios solomos" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-70": { + "question": "Πόσα διαλείμματα υπάρχουν σε ένα έτος για τα λύκεια στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 1).)", + "en_question": "How many school breaks are there in a year for high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 2 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-72": { + "question": "Ποιον διαδικτυακό πόρο/μέσο χρησιμοποιούν συνήθως οι μαθητές για να σπουδάσουν στην Ελλάδα;", + "en_question": "Which online resource do students usually use to study in your country?", + "annotations": [ + { + "answers": [ + "google" + ], + "en_answers": [ + "google" + ], + "count": 1 + }, + { + "answers": [ + "on line πανεπιστήμια" + ], + "en_answers": [ + "online universities" + ], + "count": 1 + }, + { + "answers": [ + "ηλεκτρονική γραμματεία σχολής" + ], + "en_answers": [ + "school electronic secretariat" + ], + "count": 1 + }, + { + "answers": [ + "facebook/messenger" + ], + "en_answers": [ + "facebook/messenger" + ], + "count": 1 + }, + { + "answers": [ + "e-class" + ], + "en_answers": [ + "e-class" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "Δεν αντιλαμβάνομαι τον ορισμό του διαδικτυακού πόρου": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-75": { + "question": "Ποια είναι η μέση διάρκεια ενός εξαμήνου σε εβδομάδες διδασκαλίας στα πανεπιστήμια της Ελλάδας; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 1).)", + "en_question": "What is the average length of a semester in terms of weeks of teaching at universities in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 2 + }, + { + "answers": [ + "13" + ], + "en_answers": [ + "13" + ], + "count": 2 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-76": { + "question": "Ποιο αεροδρόμιο στην Ελλάδα είναι το πιο πολυσύχναστο κατά τη διάρκεια της εορταστικής περιόδου;", + "en_question": "Which airport in your country is the busiest during the holiday season?", + "annotations": [ + { + "answers": [ + "eλευθέριος bενιζέλος", + "ελευθέριος βενιζέλος", + "eλ. bενιζέλος", + "ελ. βενιζέλος", + "eλευθέριος βενιζέλος, αθήνα", + "ελευθεριος βενιζελος / αθηνα" + ], + "en_answers": [ + "eleftherios venizelos", + "eleftherios venizelos, athens" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-79": { + "question": "Ποια περιοχή της Ελλάδας είναι γνωστή για τις θεατρικές της παραστάσεις;", + "en_question": "Which region of your country is well known for its theatrical performances?", + "annotations": [ + { + "answers": [ + "αθήνα", + "αθηνα" + ], + "en_answers": [ + "athens" + ], + "count": 3 + }, + { + "answers": [ + "επίδαυρος", + "επιδαυρος" + ], + "en_answers": [ + "epidaurus" + ], + "count": 2 + }, + { + "answers": [ + "μέγαρο μουσικής αθηνών" + ], + "en_answers": [ + "athens concert hall" + ], + "count": 1 + }, + { + "answers": [ + "ωδείο ηρώδου αττικού" + ], + "en_answers": [ + "herodes atticus odeon" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-87": { + "question": "Ποιο είναι το πιο διάσημο ιστορικό ορόσημο στην Ελλάδα;", + "en_question": "What is the most famous historic landmark in your country?", + "annotations": [ + { + "answers": [ + "η εξέργεση από τους τούρκους", + "η εξεγερση απο τους τουρκους", + "1821" + ], + "en_answers": [ + "the uprising from the turks", + "1821" + ], + "count": 2 + }, + { + "answers": [ + "παρθενώνας", + "παρθενωνας" + ], + "en_answers": [ + "parthenon" + ], + "count": 2 + }, + { + "answers": [ + "το όχι στους ιταλούς", + "το οχι στους ιταλους" + ], + "en_answers": [ + "the no to the italians" + ], + "count": 1 + }, + { + "answers": [ + "η εφεύρεση της δημοκρατίας", + "η εφευρεση της δημοκρατιας" + ], + "en_answers": [ + "the invention of democracy" + ], + "count": 1 + }, + { + "answers": [ + "ακρόπολη" + ], + "en_answers": [ + "acropolis" + ], + "count": 1 + }, + { + "answers": [ + "επίδαυρος" + ], + "en_answers": [ + "epidaurus" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-90": { + "question": "Ποια είναι η πιο διάσημη αλυσίδα ξενοδοχείων στην Ελλάδα;", + "en_question": "What is the most famous hotel brand in your country?", + "annotations": [ + { + "answers": [ + "hilton", + "χίλτον" + ], + "en_answers": [ + "hilton" + ], + "count": 1 + }, + { + "answers": [ + "grecotel" + ], + "en_answers": [ + "grecotel" + ], + "count": 1 + }, + { + "answers": [ + "costa navarino", + "κόστα ναβαρίνο" + ], + "en_answers": [ + "costa navarino" + ], + "count": 1 + }, + { + "answers": [ + "μήτσης hotel", + "mitsis" + ], + "en_answers": [ + "mitsis hotel" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-gr-05": { + "question": "Ποια είναι η πιο δημοφιλής επιλογή γρήγορου πρωινού στην Ελλάδα;", + "en_question": "What is the most popular grab-and-go breakfast option in your country?", + "annotations": [ + { + "answers": [ + "καφές" + ], + "en_answers": [ + "coffee" + ], + "count": 2 + }, + { + "answers": [ + "τοστ" + ], + "en_answers": [ + "toast" + ], + "count": 2 + }, + { + "answers": [ + "γάλα με δημητριακά", + "δημητριακά" + ], + "en_answers": [ + "milk with cereal", + "cereals" + ], + "count": 2 + }, + { + "answers": [ + "τυρόπιτα" + ], + "en_answers": [ + "cheese pie" + ], + "count": 1 + }, + { + "answers": [ + "κουλούρι" + ], + "en_answers": [ + "bagel" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-06": { + "question": "Ποιο είναι το πιο δημοφιλές φαγητό στην Ελλάδα μεταξύ των νέων;", + "en_question": "What is the most popular food in your country among young people?", + "annotations": [ + { + "answers": [ + "μακαρόνια με κιμά", + "μακαρονια με κιμα" + ], + "en_answers": [ + "pasta with minced meat" + ], + "count": 2 + }, + { + "answers": [ + "σουβλάκι", + "σουβλάκια" + ], + "en_answers": [ + "souvlaki" + ], + "count": 1 + }, + { + "answers": [ + "πίτσα" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + }, + { + "answers": [ + "μπέργκερ" + ], + "en_answers": [ + "burger" + ], + "count": 1 + }, + { + "answers": [ + "μπριζόλα" + ], + "en_answers": [ + "steak" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-gr-08": { + "question": "Ποιο είδος αλκοολούχου ποτού καταναλώνεται συνήθως στα φεστιβάλ στην Ελλάδα;", + "en_question": "What type of alcoholic drink is most commonly consumed at festivals in your country?", + "annotations": [ + { + "answers": [ + "μπύρα" + ], + "en_answers": [ + "beer" + ], + "count": 4 + }, + { + "answers": [ + "τσίπουρο", + "τσιπουρο" + ], + "en_answers": [ + "tsipouro" + ], + "count": 2 + }, + { + "answers": [ + "κρασί", + "κρασι" + ], + "en_answers": [ + "wine" + ], + "count": 1 + }, + { + "answers": [ + "ούζο" + ], + "en_answers": [ + "ouzo" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-13": { + "question": "Ποιο είναι το πιο συνηθισμένο πρωινό ρόφημα στην Ελλάδα;", + "en_question": "What is the most common morning drink in your country?", + "annotations": [ + { + "answers": [ + "καφές" + ], + "en_answers": [ + "coffee" + ], + "count": 4 + }, + { + "answers": [ + "γάλα" + ], + "en_answers": [ + "milk" + ], + "count": 3 + }, + { + "answers": [ + "τσάι" + ], + "en_answers": [ + "tea" + ], + "count": 2 + }, + { + "answers": [ + "χυμός" + ], + "en_answers": [ + "juice" + ], + "count": 1 + }, + { + "answers": [ + "ελληνικός καφές" + ], + "en_answers": [ + "greek coffee" + ], + "count": 1 + }, + { + "answers": [ + "χυμός πορτοκαλι" + ], + "en_answers": [ + "orange juice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-15": { + "question": "Ποιο είναι το πιο δημοφιλές παραδοσιακό γλυκό στην Ελλάδα;", + "en_question": "What is the most popular traditional dessert in your country?", + "annotations": [ + { + "answers": [ + "γαλακτομπούρεκο" + ], + "en_answers": [ + "galaktoboureko" + ], + "count": 2 + }, + { + "answers": [ + "μπακλαβάς", + "μπακλαβας" + ], + "en_answers": [ + "baklava" + ], + "count": 2 + }, + { + "answers": [ + "γλυκό του κουταλιού" + ], + "en_answers": [ + "spoon sweet" + ], + "count": 1 + }, + { + "answers": [ + "σιροπιαστά" + ], + "en_answers": [ + "syrupy sweets" + ], + "count": 1 + }, + { + "answers": [ + "τουλουμπάκια" + ], + "en_answers": [ + "marbles" + ], + "count": 1 + }, + { + "answers": [ + "ρυζόγαλο" + ], + "en_answers": [ + "rice pudding" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-21": { + "question": "Ποιο είναι το πιο δημοφιλές άθλημα με ρακέτες στην Ελλάδα;", + "en_question": "What is the most popular racket sport in your country?", + "annotations": [ + { + "answers": [ + "τένις", + "τεννις", + "τέννις" + ], + "en_answers": [ + "tennis" + ], + "count": 5 + }, + { + "answers": [ + "ρακέτες παραλίας" + ], + "en_answers": [ + "beach rackets" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-24": { + "question": "Ποιο είναι το πιο δημοφιλές άθλημα στίβου στην Ελλάδα;", + "en_question": "What is the most popular track and field sport in your country?", + "annotations": [ + { + "answers": [ + "άλμα εις μήκος", + "long jump", + "αλμα εις μηκος" + ], + "en_answers": [ + "long jump" + ], + "count": 3 + }, + { + "answers": [ + "τρέξιμο", + "τρεξιμο" + ], + "en_answers": [ + "running" + ], + "count": 2 + }, + { + "answers": [ + "μαραθώνιος" + ], + "en_answers": [ + "marathon" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-29": { + "question": "Ποια διεθνής αθλητική εκδήλωση είναι η πιο δημοφιλής στην Ελλάδα;", + "en_question": "Which international sporting event is the most popular in your country?", + "annotations": [ + { + "answers": [ + "ολυμπιακοί αγώνες", + "ολυμπιακοι αγώνες", + "ολυμπιακοι αγωνες" + ], + "en_answers": [ + "olympic games" + ], + "count": 3 + }, + { + "answers": [ + "παγκόσμιο κύπελλο", + "παγκοσμιο κύπελλο", + "μουντιάλ" + ], + "en_answers": [ + "world cup" + ], + "count": 2 + }, + { + "answers": [ + "τσάμπιονς λιγκ", + "champions league" + ], + "en_answers": [ + "champions league" + ], + "count": 2 + }, + { + "answers": [ + "μουντομπάσκετ" + ], + "en_answers": [ + "world basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-47": { + "question": "Πόσο διαρκούν (σε λεπτά) τα διαλείμματα εργασίας στην Ελλάδα, εξαιρουμένων των διαλειμμάτων για μεσημεριανό γεύμα και δείπνο; (Παρέχετε μόνο αραβικούς αριθμούς (π.χ. 1).)", + "en_question": "How long (in minutes) are typical work breaks in your country, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 2 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 1 + }, + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-58": { + "question": "Ποια εργασία θεωρείται κακοπληρωμένη στην Ελλάδα;", + "en_question": "Which job is considered underpaid in your country?", + "annotations": [ + { + "answers": [ + "service", + "σερβιτόρος", + "σέρβις" + ], + "en_answers": [ + "service", + "waiter" + ], + "count": 2 + }, + { + "answers": [ + "εκπαιδευτικός" + ], + "en_answers": [ + "educator" + ], + "count": 1 + }, + { + "answers": [ + "εργάτης", + "εργατης" + ], + "en_answers": [ + "worker" + ], + "count": 1 + }, + { + "answers": [ + "τουριστικά", + "τουριστικα" + ], + "en_answers": [ + "touristic" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-76": { + "question": "Ποιο είναι το πιο συνηθισμένο φαγητό που σερβίρεται το Πάσχα στην Ελλάδα;", + "en_question": "What is the most common food served during Easter in your country?", + "annotations": [ + { + "answers": [ + "σουβλιστό αρνί", + "αρνί σούβλας", + "αρνάκι σούβλα" + ], + "en_answers": [ + "spit-roasted lamb", + "lamb on the spit" + ], + "count": 3 + }, + { + "answers": [ + "κατσικάκι" + ], + "en_answers": [ + "little goat" + ], + "count": 2 + }, + { + "answers": [ + "κοκορέτσι" + ], + "en_answers": [ + "kokoretsi" + ], + "count": 1 + }, + { + "answers": [ + "αβγά" + ], + "en_answers": [ + "eggs" + ], + "count": 1 + }, + { + "answers": [ + "μαγειρίτσα" + ], + "en_answers": [ + "easter soup" + ], + "count": 1 + }, + { + "answers": [ + "αρνί", + "αρνι" + ], + "en_answers": [ + "lamb" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-82": { + "question": "Ποιο είναι το πιο δημοφιλές είδος μουσικής μεταξύ του ηλικιωμένου πληθυσμού στην Ελλάδα;", + "en_question": "What is the most popular music genre among the elderly population in your country?", + "annotations": [ + { + "answers": [ + "λαϊκά", + "λαική" + ], + "en_answers": [ + "folk" + ], + "count": 3 + }, + { + "answers": [ + "ρεμπέτικη", + "ρεμπέτικα" + ], + "en_answers": [ + "rebetiko", + "rebetika" + ], + "count": 2 + }, + { + "answers": [ + "δημοτικά τραγούδια", + "folk greek songs", + "παραδοσιακή", + "παραδοσιακη" + ], + "en_answers": [ + "folk greek songs", + "traditional" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-88": { + "question": "Ποιο ποτό/ρόφημα συνήθως προσφέρεται στις κηδείες στην Ελλάδα;", + "en_question": "What drink is usually offered at funerals in your country?", + "annotations": [ + { + "answers": [ + "καφές", + "coffee", + "καφες" + ], + "en_answers": [ + "coffee" + ], + "count": 3 + }, + { + "answers": [ + "κονιάκ", + "κονιακ" + ], + "en_answers": [ + "cognac" + ], + "count": 2 + }, + { + "answers": [ + "ελληνικός καφές", + "ελληνικος καφες" + ], + "en_answers": [ + "greek coffee" + ], + "count": 2 + }, + { + "answers": [ + "χυμός" + ], + "en_answers": [ + "juice" + ], + "count": 1 + }, + { + "answers": [ + "λικέρ", + "λικερ" + ], + "en_answers": [ + "liqueur" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-89": { + "question": "Ποιο ποτό συνήθως προσφέρεται στους γάμους στην Ελλάδα;", + "en_question": "What drink is usually offered at weddings in your country?", + "annotations": [ + { + "answers": [ + "κρασί", + "wine" + ], + "en_answers": [ + "wine" + ], + "count": 3 + }, + { + "answers": [ + "μπύρα" + ], + "en_answers": [ + "beer" + ], + "count": 1 + }, + { + "answers": [ + "κρασί κόκκινο" + ], + "en_answers": [ + "red wine" + ], + "count": 1 + }, + { + "answers": [ + "σαμπάνια" + ], + "en_answers": [ + "champagne" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-07": { + "question": "Ποιο φαγητό έχει καταγωγή από την Ελλάδα και μπορεί να βρεθεί παντού στον κόσμο;", + "en_question": "What food originated from your country and can be found all over the world?", + "annotations": [ + { + "answers": [ + "σουβλάκι", + "γυρος σουβλακι", + "σουβλάκια" + ], + "en_answers": [ + "souvlaki" + ], + "count": 3 + }, + { + "answers": [ + "γύρος", + "γυρος σουβλακι" + ], + "en_answers": [ + "gyro" + ], + "count": 2 + }, + { + "answers": [ + "φασολαδα" + ], + "en_answers": [ + "bean soup" + ], + "count": 1 + }, + { + "answers": [ + "παστίτσιο" + ], + "en_answers": [ + "pastitsio" + ], + "count": 1 + }, + { + "answers": [ + "σπανακόπιτα" + ], + "en_answers": [ + "spinach pie" + ], + "count": 1 + }, + { + "answers": [ + "γιαούρτι" + ], + "en_answers": [ + "yogurt" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-08": { + "question": "Ποιο φαγητό συνήθως δεν αρέσει στα παιδιά αλλά το απολαμβάνουν οι ηλικιωμένοι στην Ελλάδα;", + "en_question": "What food is typically disliked by children but enjoyed by the elderly in your country?", + "annotations": [ + { + "answers": [ + "ρεβίθια", + "ρεβιθια", + "ρεβύθια" + ], + "en_answers": [ + "chickpeas" + ], + "count": 2 + }, + { + "answers": [ + "φασολάδα", + "φασολαδα", + "φασόλια" + ], + "en_answers": [ + "bean soup", + "beans" + ], + "count": 2 + }, + { + "answers": [ + "φακές" + ], + "en_answers": [ + "lentils" + ], + "count": 1 + }, + { + "answers": [ + "μπάμιες", + "μπαμιες" + ], + "en_answers": [ + "okra" + ], + "count": 1 + }, + { + "answers": [ + "όσπρια" + ], + "en_answers": [ + "legumes" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-09": { + "question": "Ποιο μαγειρικό σκεύος χρησιμοποιείται πιο συχνά στην Ελλάδα;", + "en_question": "What cooking utensil is most commonly used in your country?", + "annotations": [ + { + "answers": [ + "κατσαρόλα", + "casserole", + "κατσαρολα" + ], + "en_answers": [ + "pot" + ], + "count": 4 + }, + { + "answers": [ + "τηγάνι" + ], + "en_answers": [ + "pan" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-13": { + "question": "Ποιο είναι το πιο δημοφιλές λαχανικό στην Ελλάδα;", + "en_question": "Which is the most popular vegetable in your country?", + "annotations": [ + { + "answers": [ + "λάχανο", + "ντομάτα", + "ντοματα" + ], + "en_answers": [ + "cabbage", + "tomato" + ], + "count": 3 + }, + { + "answers": [ + "ντομάτα" + ], + "en_answers": [ + "tomato" + ], + "count": 2 + }, + { + "answers": [ + "αγγούρι" + ], + "en_answers": [ + "cucumber" + ], + "count": 2 + }, + { + "answers": [ + "μαρούλι" + ], + "en_answers": [ + "lettuce" + ], + "count": 1 + }, + { + "answers": [ + "κολοκύθι" + ], + "en_answers": [ + "zucchini" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-19": { + "question": "Ποιο ζώο χρησιμοποιείται για αθλήματα στην Ελλάδα;", + "en_question": "Which animal is used for sports in your country?", + "annotations": [ + { + "answers": [ + "άλογο", + "αλογο" + ], + "en_answers": [ + "horse" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 2, + "no-answer": 1, + "idk": 0 + } + }, + "New-ha-66": { + "question": "Ποιος είναι ο πιο δημοφιλής χώρος για γάμο στην Ελλάδα;", + "en_question": "What is the most popular wedding venue in your country?", + "annotations": [ + { + "answers": [ + "εκκλησία" + ], + "en_answers": [ + "church" + ], + "count": 2 + }, + { + "answers": [ + "κέντρα εκδηλώσεων" + ], + "en_answers": [ + "event centers" + ], + "count": 1 + }, + { + "answers": [ + "νησιά" + ], + "en_answers": [ + "islands" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-in-01": { + "question": "Ποια αλυσίδα καφετεριών είναι η πιο δημοφιλής στην Ελλάδα;", + "en_question": "Which coffee shop brand is the most popular in your country?", + "annotations": [ + { + "answers": [ + "coffee island", + "coffe island" + ], + "en_answers": [ + "coffee island" + ], + "count": 4 + }, + { + "answers": [ + "mikel" + ], + "en_answers": [ + "mikel" + ], + "count": 1 + }, + { + "answers": [ + "γρηγόρης" + ], + "en_answers": [ + "gregorys" + ], + "count": 1 + }, + { + "answers": [ + "coffee berry" + ], + "en_answers": [ + "coffee berry" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-in-03": { + "question": "Ποιο είδος φαγητού από την Ελλάδα συνήθως σερβίρεται σε εστιατόρια στο εξωτερικό;", + "en_question": "What type of food from your country is typically served in restaurants overseas?", + "annotations": [ + { + "answers": [ + "μουσακάς", + "μουσακας" + ], + "en_answers": [ + "moussaka" + ], + "count": 3 + }, + { + "answers": [ + "ελληνική σαλάτα", + "ελληνικη σαλατα", + "χωριάτικη σαλάτα", + "χωριατικη σαλατα" + ], + "en_answers": [ + "greek salad" + ], + "count": 2 + }, + { + "answers": [ + "σουβλάκι", + "σουβλακι", + "σουβλάκια" + ], + "en_answers": [ + "souvlaki" + ], + "count": 2 + }, + { + "answers": [ + "κρεατικού" + ], + "en_answers": [ + "of meat" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-33": { + "question": "Ποια περιοχή στην Ελλάδα συνδέεται συνήθως με την εξόρυξη;", + "en_question": "What region in your country is usually associated with mining?", + "annotations": [ + { + "answers": [ + "χαλκιδική", + "χαλκιδικη" + ], + "en_answers": [ + "halkidiki" + ], + "count": 1 + }, + { + "answers": [ + "αιγαίο πέλαγος", + "αγαίο πέλαγος" + ], + "en_answers": [ + "aegean sea" + ], + "count": 1 + }, + { + "answers": [ + "λαύριο" + ], + "en_answers": [ + "lavrio" + ], + "count": 1 + }, + { + "answers": [ + "πτολεμαΐδα", + "πτολεμαϊδα" + ], + "en_answers": [ + "ptolemaida" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-in-34": { + "question": "Ποια περιοχή στην Ελλάδα συνδέεται συνήθως με το πετρέλαιο;", + "en_question": "What region in your country is usually associated with oil?", + "annotations": [ + { + "answers": [ + "θάσος", + "θασος" + ], + "en_answers": [ + "thasos" + ], + "count": 2 + }, + { + "answers": [ + "αθήνα", + "αθηνα" + ], + "en_answers": [ + "athens" + ], + "count": 1 + }, + { + "answers": [ + "ελευσίνα" + ], + "en_answers": [ + "eleusina" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-in-62": { + "question": "Ποιο πανεπιστήμιο στην Ελλάδα είναι δημοφιλές λόγω του τμήματος μηχανικών του; (Δώστε το επίσημο όνομα.)", + "en_question": "What university in your country is popular because of its engineering major? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "εθνικό μετσόβιο πολυτεχνείο", + "εθνικο μετσοβιο πολυτεχνειο", + "εμπ" + ], + "en_answers": [ + "national technical university of athens" + ], + "count": 2 + }, + { + "answers": [ + "αριστοτέλειο", + "αριστοτελειο", + "αριστοτέλειο πανεπιστήμιο θεσσαλονίκης", + "α.π.θ." + ], + "en_answers": [ + "aristotelian" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-in-63": { + "question": "Ποιο πανεπιστήμιο στην Ελλάδα είναι δημοφιλές λόγω της ιατρικής σχολής του; (Δώστε το επίσημο όνομα.)", + "en_question": "What university in your country is popular because of its school of medicine? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "αριστοτέλειο", + "α.π.θ.", + "αριστοτέλειο πανεπιστήμιο θεσσαλονίκης" + ], + "en_answers": [ + "aristotelian", + "a.u.th. (aristotle university of thessaloniki)" + ], + "count": 2 + }, + { + "answers": [ + "εθνικό και καποδιστριακό πανεπιστήμιο αθηνών", + "εθνικο και καποδιστριακο πανεπιστημιο αθηνων", + "εκπα", + "καποδιστριακό" + ], + "en_answers": [ + "national and kapodistrian university of athens" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-in-78": { + "question": "Ποια είναι η πιο δημοφιλής μέθοδος πληρωμής στην Ελλάδα;", + "en_question": "What is the most popular payment method in your country?", + "annotations": [ + { + "answers": [ + "μετρητά", + "μετρητα" + ], + "en_answers": [ + "cash" + ], + "count": 4 + }, + { + "answers": [ + "κάρτα τραπέζης", + "κάρτα" + ], + "en_answers": [ + "bank card", + "card" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-80": { + "question": "Ποιο είναι το πιο διάσημο θεματικό πάρκο στην Ελλάδα;", + "en_question": "What is the most famous theme park in your country?", + "annotations": [ + { + "answers": [ + "μια φορά κι έναν καιρό", + "μια φορά και έναν καιρό" + ], + "en_answers": [ + "mia fora ki enan kairo" + ], + "count": 1 + }, + { + "answers": [ + "εθνικός κήπος", + "εθνικος κηποσ" + ], + "en_answers": [ + "national garden" + ], + "count": 1 + }, + { + "answers": [ + "allou fun park", + "allou! fun park" + ], + "en_answers": [ + "allou fun park" + ], + "count": 1 + }, + { + "answers": [ + "cretaquarium", + "θαλασσόκοσμος" + ], + "en_answers": [ + "cretaquarium" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ko-01": { + "question": "Ποιο είναι το πιο δημοφιλές παιδικό κινούμενο σχέδιο που παρακολουθούν συνήθως τα παιδιά στην Ελλάδα;", + "en_question": "What is the most popular children's animation that is commonly watched by kids in your country?", + "annotations": [ + { + "answers": [ + "πέππα το γουρουνάκι", + "πέπα το γουρουνάκι" + ], + "en_answers": [ + "peppa pig" + ], + "count": 2 + }, + { + "answers": [ + "tom and jerry", + "τομ και τζέρι" + ], + "en_answers": [ + "tom and jerry" + ], + "count": 1 + }, + { + "answers": [ + "mickey mouse", + "μίκυ μάους" + ], + "en_answers": [ + "mickey mouse" + ], + "count": 1 + }, + { + "answers": [ + "μπομπ σφουγγαρακης", + "μπομ σφουγγαρακησ" + ], + "en_answers": [ + "spongebob squarepants" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ko-02": { + "question": "Ποια είναι η πιο δημοφιλής δραστηριότητα προγεννητικής εκπαίδευσης για έγκυες γυναίκες στην Ελλάδα;", + "en_question": "What is the most popular prenatal education activity for pregnant women in your country?", + "annotations": [ + { + "answers": [ + "μαθήματα ανώδυνου τοκετού", + "ασκήσεις διαχείρησης πόνου τοκετού" + ], + "en_answers": [ + "painless childbirth classes", + "childbirth pain management exercises" + ], + "count": 2 + }, + { + "answers": [ + "οδηγίες από γυναικολόγο" + ], + "en_answers": [ + "instructions from a gynecologist" + ], + "count": 1 + }, + { + "answers": [ + "γιόγκα" + ], + "en_answers": [ + "yoga" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ko-03": { + "question": "Ποιο είναι το πιο δημοφιλές παιδικό τραγούδι στην Ελλάδα που το τραγουδούν οι οικογένειες μαζί;", + "en_question": "What is the most popular children's song in your country that families sing together?", + "annotations": [ + { + "answers": [ + "χαρωπά τα 2 μου χέρια να χτυπώ", + "χαροπατα δύο μου χέρια τα χτυπώ" + ], + "en_answers": [ + "i'm clapping my hands with joy", + "happily to clap my 2 hands" + ], + "count": 2 + }, + { + "answers": [ + "αχ κουνελάκι" + ], + "en_answers": [ + "oh little bunny" + ], + "count": 1 + }, + { + "answers": [ + "ένα μικρό καράβι" + ], + "en_answers": [ + "a small boat" + ], + "count": 1 + }, + { + "answers": [ + "σκαντζόχοιρος ζουζουνια", + "σκαντζοχοιρος ζουζουνια", + "ο σκαντζόχοιρος" + ], + "en_answers": [ + "hedgehog, zouzounia" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-04": { + "question": "Ποια παιχνίδια είναι τα πιο δημοφιλή ανάμεσα στα αγόρια στην Ελλάδα;", + "en_question": "Which toys are most popular among boys in your country?", + "annotations": [ + { + "answers": [ + "ποδόσφαιρο" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "μπάσκετ" + ], + "en_answers": [ + "basketball" + ], + "count": 3 + }, + { + "answers": [ + "ηλεκτρονικά", + "ηλεκτρονικα", + "βίντεο games", + "ηλεκτρονικά παιχνίδια", + "βίντεο παιχνίδια" + ], + "en_answers": [ + "electronics", + "video games" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-05": { + "question": "Ποια παιχνίδια είναι τα πιο δημοφιλή μεταξύ των κοριτσιών στην Ελλάδα;", + "en_question": "Which toys are most popular among girls in your country?", + "annotations": [ + { + "answers": [ + "barbie", + "μπάρμπι" + ], + "en_answers": [ + "barbie" + ], + "count": 2 + }, + { + "answers": [ + "κούκλες", + "κουκλες" + ], + "en_answers": [ + "dolls" + ], + "count": 2 + }, + { + "answers": [ + "σχοινάκι" + ], + "en_answers": [ + "rope" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "New-ko-06": { + "question": "Ποιο είναι το πιο δημοφιλές παραμύθι στην Ελλάδα που συνήθως λέγεται στα παιδιά;", + "en_question": "What is the most popular folk tale in your country that is typically told to children?", + "annotations": [ + { + "answers": [ + "κοκκινοσκουφίτσα" + ], + "en_answers": [ + "little red riding hood" + ], + "count": 2 + }, + { + "answers": [ + "τα τρια γουρουνακια", + "τρία γουρουνάκια" + ], + "en_answers": [ + "the three little pigs", + "three little pigs" + ], + "count": 2 + }, + { + "answers": [ + "κοντορεβυθούλης" + ], + "en_answers": [ + "hop-o'-my-thumb" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ko-07": { + "question": "Ποιο είναι το συνηθισμένο σύμβολο του πένθους που χρησιμοποιείται στις κηδείες στην Ελλάδα;", + "en_question": "What is the customary symbol of condolence used at funerals in your country?", + "annotations": [ + { + "answers": [ + "μαύρα ρούχα", + "μαυρα ρουχα", + "μαύρη ενδυμασία", + "μαυρη ενδυμασια" + ], + "en_answers": [ + "black clothes", + "black clothing" + ], + "count": 5 + }, + { + "answers": [ + "κόλυβα" + ], + "en_answers": [ + "boiled wheat" + ], + "count": 1 + }, + { + "answers": [ + "μαύρο χρώμα", + "μαυρο χρωμα" + ], + "en_answers": [ + "black color" + ], + "count": 1 + }, + { + "answers": [ + "σταυρός" + ], + "en_answers": [ + "cross" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-08": { + "question": "Πού συνήθως δουλεύουν μερική απασχόληση οι φοιτητές των πανεπιστημίων στην Ελλάδα;", + "en_question": "Where do university students in your country tend to work part-time the most?", + "annotations": [ + { + "answers": [ + "καφετέριες" + ], + "en_answers": [ + "cafes" + ], + "count": 2 + }, + { + "answers": [ + "σέρβις", + "σερβις" + ], + "en_answers": [ + "service" + ], + "count": 1 + }, + { + "answers": [ + "ντελίβερι", + "ντελιβερι" + ], + "en_answers": [ + "delivery" + ], + "count": 1 + }, + { + "answers": [ + "εστιατόρια" + ], + "en_answers": [ + "restaurants" + ], + "count": 1 + }, + { + "answers": [ + "μπαρ" + ], + "en_answers": [ + "bar" + ], + "count": 1 + }, + { + "answers": [ + "μαγαζιά εστίασης" + ], + "en_answers": [ + "food establishments" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-09": { + "question": "Ποιες είναι οι πιο συχνά πραγματοποιούμενες δραστηριότητες ομαδικής συνεργασίας (team building) σε εταιρείες που βρίσκονται στην Ελλάδα;", + "en_question": "What are the most frequently practiced team-building activities in companies based in your country?", + "annotations": [ + { + "answers": [ + "escape room", + "δωμάτιο διαφυγής", + "δωμάτιο παιχνιδιών απόδρασης" + ], + "en_answers": [ + "escape room" + ], + "count": 1 + }, + { + "answers": [ + "έξοδος για ποτό", + "εξοδος για ποτο" + ], + "en_answers": [ + "going out for a drink" + ], + "count": 1 + }, + { + "answers": [ + "δείπνα" + ], + "en_answers": [ + "dinners" + ], + "count": 1 + }, + { + "answers": [ + "κοπή πίτας" + ], + "en_answers": [ + "cutting of vasilopita" + ], + "count": 1 + }, + { + "answers": [ + "συνάντηση", + "meeting", + "συναντήσεις" + ], + "en_answers": [ + "meeting" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-10": { + "question": "Ποιες είναι οι πιο συνηθισμένες δραστηριότητες που κάνουν οι άνθρωποι ως δευτερεύουσα απασχόληση στην Ελλάδα;", + "en_question": "What are the most common activities people do as a side job in your country?", + "annotations": [ + { + "answers": [ + "ψάρεμα" + ], + "en_answers": [ + "fishing" + ], + "count": 1 + }, + { + "answers": [ + "γυμναστική" + ], + "en_answers": [ + "exercise" + ], + "count": 1 + }, + { + "answers": [ + "ντελίβερι", + "ντιλιβερι" + ], + "en_answers": [ + "delivery" + ], + "count": 1 + }, + { + "answers": [ + "σερβιτόρος", + "σερβιτόρα" + ], + "en_answers": [ + "waiter" + ], + "count": 1 + }, + { + "answers": [ + "καθαρίστρια", + "καθαριστής" + ], + "en_answers": [ + "cleaner" + ], + "count": 1 + }, + { + "answers": [ + "ιδιαίτερα", + "ιδιαίτερα μαθήματα" + ], + "en_answers": [ + "private tutoring" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-pe-02": { + "question": "Ποιο είναι το πιο διάσημο βρώσιμο (φαγήτο) αναμνηστικό για τους τουρίστες στην Ελλάδα;", + "en_question": "What is the most famous edible souvenir for tourists in your country?", + "annotations": [ + { + "answers": [ + "σουβλάκι", + "σουβλακι", + "σουβλάκια" + ], + "en_answers": [ + "souvlaki" + ], + "count": 4 + }, + { + "answers": [ + "τσουρέκι" + ], + "en_answers": [ + "sweet bread" + ], + "count": 1 + }, + { + "answers": [ + "μουσακάς" + ], + "en_answers": [ + "moussaka" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-06": { + "question": "Ποιό είναι το πιο δημοφιλές στιφάδο στην Ελλάδα;", + "en_question": "What is the most popular stew in your country?", + "annotations": [ + { + "answers": [ + "λαγός", + "κουνέλι" + ], + "en_answers": [ + "hare", + "rabbit" + ], + "count": 3 + }, + { + "answers": [ + "μοσχαρίσιο στιφάδο" + ], + "en_answers": [ + "beef stew" + ], + "count": 1 + }, + { + "answers": [ + "κόκκορας" + ], + "en_answers": [ + "rooster" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-pe-11": { + "question": "Ποιο είναι το πιο συνηθισμένο μπαχαρικό/βότανο που χρησιμοποιείται στα πιάτα από την Ελλάδα;", + "en_question": "What is the most common spice/herb used in dishes from your country?", + "annotations": [ + { + "answers": [ + "ρίγανη", + "ριγανη" + ], + "en_answers": [ + "oregano" + ], + "count": 3 + }, + { + "answers": [ + "θυμάρι" + ], + "en_answers": [ + "thyme" + ], + "count": 2 + }, + { + "answers": [ + "βασιλικός" + ], + "en_answers": [ + "royal" + ], + "count": 1 + }, + { + "answers": [ + "μαϊντανός" + ], + "en_answers": [ + "parsley" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-16": { + "question": "Ποιο είναι το πιο διάσημο παραδοσιακό άθλημα στην Ελλάδα;", + "en_question": "What is the most famous traditional sport in your country?", + "annotations": [ + { + "answers": [ + "ποδόσφαιρο", + "ποδοσφαιρο" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "πάλη" + ], + "en_answers": [ + "wrestling" + ], + "count": 1 + }, + { + "answers": [ + "μπάσκετ" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-20": { + "question": "Ποιο άθλημα είναι δημοφιλές για να παίξεις στην παραλία στην Ελλάδα;", + "en_question": "What sport is popular to play on the beach in your country?", + "annotations": [ + { + "answers": [ + "ρακέτες", + "ρακετες" + ], + "en_answers": [ + "rackets" + ], + "count": 5 + }, + { + "answers": [ + "ποδόσφαιρο" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "μπιτς βόλεϊ" + ], + "en_answers": [ + "beach volleyball" + ], + "count": 1 + }, + { + "answers": [ + "βόλεϊ", + "βόλλεϋ" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-45": { + "question": "Ποιο είναι το συνηθισμένο ωράριο εργασίας κατά τη διάρκεια του μήνα του Ραμαζανιού στην Ελλάδα;", + "en_question": "What is the usual work schedule during the month of Ramadan in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "New-pe-47": { + "question": "Πότε γιορτάζεται η Ημέρα του Φοιτητή στην Ελλάδα; (Απαντήστε σε μορφή ΜΜ/ΗΗ π.χ., 12/31).", + "en_question": "When is Student's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "11/17" + ], + "en_answers": [ + "11/17" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 2, + "no-answer": 0 + } + }, + "New-pe-49": { + "question": "Πού συγκεντρώνονται οι οικογένειες για να προσευχηθούν μαζί στην Ελλάδα;", + "en_question": "Where do families gather to pray together in your country?", + "annotations": [ + { + "answers": [ + "εκκλησία", + "ορθόδοξη εκκλησία" + ], + "en_answers": [ + "church", + "orthodox church" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-53": { + "question": "Τι δώρα λαμβάνουν οι πατέρες στην Ημέρα του Πατέρα (ή Ημέρα των Γονέων) στην Ελλάδα;", + "en_question": "What gifts do fathers get on Father's Day (or Parents' Day) in your country?", + "annotations": [ + { + "answers": [ + "τιποτα" + ], + "en_answers": [ + "nothing" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "no-answer": 2, + "idk": 0 + } + }, + "New-pe-54": { + "question": "Τι δώρα λαμβάνουν οι μητέρες στην Ημέρα της Μητέρας (ή Ημέρα των Γονέων) στην Ελλάδα;", + "en_question": "What gifts do mothers get on Mother's Day (or Parents' Day) in your country?", + "annotations": [ + { + "answers": [ + "λουλούδια", + "λουλούδια." + ], + "en_answers": [ + "flowers" + ], + "count": 5 + }, + { + "answers": [ + "κάρτες", + "καρτες" + ], + "en_answers": [ + "cards" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-59": { + "question": "Πόσες γενιές συνήθως ζουν μαζί σε ένα νοικοκυριό στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 12).)", + "en_question": "How many generations typically live together in a household in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 5 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-65": { + "question": "Πόσα μαθήματα διδάσκονται στα γυμνάσια στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 12).)", + "en_question": "How many subjects are taught in middle schools in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "23" + ], + "en_answers": [ + "23" + ], + "count": 1 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + }, + { + "answers": [ + "21" + ], + "en_answers": [ + "21" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-66": { + "question": "Ποια είναι τα πιο δημοφιλή εξωσχολικά προγράμματα στα δημοτικά σχολεία στην Ελλάδα;", + "en_question": "What is the most popular after school curriculars in elementary schools in your country?", + "annotations": [ + { + "answers": [ + "φροντιστήρια ξένων γλωσσών", + "ξένες γλώσσες", + "ξενες γλωσσες", + "ξένεσ γλώσσες" + ], + "en_answers": [ + "foreign language institutes", + "foreign languages" + ], + "count": 3 + }, + { + "answers": [ + "αθλήματα" + ], + "en_answers": [ + "sports" + ], + "count": 1 + }, + { + "answers": [ + "παραδοσιακοί χοροί" + ], + "en_answers": [ + "traditional dances" + ], + "count": 1 + }, + { + "answers": [ + "ολοήμερο σχολείο", + "ολοήμερο (2 ώρες που μπορείς να κάνεις τις ασκήσεις σου και ίσως κάποια δραστηριότητα)" + ], + "en_answers": [ + "all-day school" + ], + "count": 1 + }, + { + "answers": [ + "ποδόσφαιρο" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "μπάσκετ" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-74": { + "question": "Πόσο είναι το μέσο ετήσιο δίδακτρο για τα δημόσια πανεπιστήμια στην Ελλάδα;", + "en_question": "How much is the average annual tuition fee for public universities in your country?", + "annotations": [ + { + "answers": [ + "0", + "μηδεν" + ], + "en_answers": [ + "0" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-76": { + "question": "Ποια είναι μια δημοφιλής δραστηριότητα στα πάρκα στην Ελλάδα;", + "en_question": "What is a popular activity to do in parks in your country?", + "annotations": [ + { + "answers": [ + "πικνίκ", + "πικνικ", + "πικ νικ" + ], + "en_answers": [ + "picnic" + ], + "count": 2 + }, + { + "answers": [ + "περπάτημα", + "πεζοπορία" + ], + "en_answers": [ + "walking", + "hiking" + ], + "count": 2 + }, + { + "answers": [ + "τρενάκι", + "τρενακι", + "τρενάκι πάρκου", + "τρενάκι για παιδιά" + ], + "en_answers": [ + "children's train" + ], + "count": 1 + }, + { + "answers": [ + "σκοποβολή", + "σκοποβολη" + ], + "en_answers": [ + "shooting" + ], + "count": 1 + }, + { + "answers": [ + "κούνιες", + "κουνιες" + ], + "en_answers": [ + "swings" + ], + "count": 1 + }, + { + "answers": [ + "βόλτα κατοικιδίων", + "βολτα κατοικιδιων" + ], + "en_answers": [ + "pet walk" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-78": { + "question": "Ποιο είναι το όνομα του πιο διάσημου φεστιβάλ ταινιών που διεξάγεται στην Ελλάδα;", + "en_question": "What is the name of the most famous film festival held in your country?", + "annotations": [ + { + "answers": [ + "θεσσαλονίκης", + "της θεσσαλονίκης.", + "θεσσαλονικης", + "φεστιβάλ θεσσαλονίκης", + "φεστιβάλ κινηματογράφου θεσσαλονίκης" + ], + "en_answers": [ + "of thessaloniki.", + "of thessaloniki", + "thessaloniki festival" + ], + "count": 3 + }, + { + "answers": [ + "πάμε σινεμά", + "παμε σινεμα", + "πάμε σινεμά;" + ], + "en_answers": [ + "let's go to the cinema" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-83": { + "question": "Ποιο είναι το πιο δημοφιλές παιχνίδι με κάρτες που παίζεται κατά τη διάρκεια κοινωνικών συγκεντρώσεων στην Ελλάδα;", + "en_question": "What is the popular card game played during social gatherings in your country?", + "annotations": [ + { + "answers": [ + "μουντζούρης" + ], + "en_answers": [ + "smudger" + ], + "count": 1 + }, + { + "answers": [ + "κολτσίνα", + "κολλιτσίνα", + "κοντσίνα", + "δηλωτή" + ], + "en_answers": [ + "koltsina" + ], + "count": 1 + }, + { + "answers": [ + "μπλόφα" + ], + "en_answers": [ + "bluff" + ], + "count": 1 + }, + { + "answers": [ + "υπερατού", + "υπερατου" + ], + "en_answers": [ + "top trumps" + ], + "count": 1 + }, + { + "answers": [ + "τίτσου" + ], + "en_answers": [ + "tichu" + ], + "count": 1 + }, + { + "answers": [ + "αγωνία" + ], + "en_answers": [ + "anxiety" + ], + "count": 1 + }, + { + "answers": [ + "uno", + "ούνο" + ], + "en_answers": [ + "uno" + ], + "count": 1 + }, + { + "answers": [ + "δολοφόνος" + ], + "en_answers": [ + "murderer" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-pe-85": { + "question": "Πού βρίσκεται ο πιο δημοφιλής τουριστικός προορισμός στο εξωτερικό για τους Έλληνες;", + "en_question": "Where is the most popular tourist destination abroad for people from your country?", + "annotations": [ + { + "answers": [ + "λονδίνο" + ], + "en_answers": [ + "london" + ], + "count": 2 + }, + { + "answers": [ + "ιταλία", + "ιταλια" + ], + "en_answers": [ + "italy" + ], + "count": 2 + }, + { + "answers": [ + "μύκονος" + ], + "en_answers": [ + "mykonos" + ], + "count": 1 + }, + { + "answers": [ + "σαντορίνη" + ], + "en_answers": [ + "santorini" + ], + "count": 1 + }, + { + "answers": [ + "παρίσι" + ], + "en_answers": [ + "paris" + ], + "count": 1 + }, + { + "answers": [ + "γαλλία", + "γαλλια" + ], + "en_answers": [ + "france" + ], + "count": 1 + }, + { + "answers": [ + "γερμανία", + "γερμανια" + ], + "en_answers": [ + "germany" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-86": { + "question": "Ποιο είναι το όνομα του πιο διάσημου πύργου στην Ελλάδα;", + "en_question": "What is the name of the most famous tower in your country?", + "annotations": [ + { + "answers": [ + "λευκός", + "λευκός πύργος", + "λευκος πυργος" + ], + "en_answers": [ + "white", + "white tower" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-01": { + "question": "Ποιο βρώσιμο έντομο τρώγεται πιο συχνά στην Ελλάδα;", + "en_question": "What edible insect is eaten most often in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "New-spme-04": { + "question": "Ποιο γεωργικό προϊόν εξάγεται πιο συχνά από την Ελλάδα;", + "en_question": "Which agricultural product is exported most often in your country?", + "annotations": [ + { + "answers": [ + "λάδι", + "λαδι" + ], + "en_answers": [ + "oil" + ], + "count": 3 + }, + { + "answers": [ + "ελαιόλαδο" + ], + "en_answers": [ + "olive oil" + ], + "count": 2 + }, + { + "answers": [ + "σπαράγγια" + ], + "en_answers": [ + "asparagus" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-05": { + "question": "Ποια είναι τα πιο δημοφιλή γλυκά στην Ελλάδα;", + "en_question": "What are the most popular sweets in your country?", + "annotations": [ + { + "answers": [ + "γαλακτομπούρεκο" + ], + "en_answers": [ + "galaktompoureko" + ], + "count": 2 + }, + { + "answers": [ + "μπακλαβάς" + ], + "en_answers": [ + "baklava" + ], + "count": 2 + }, + { + "answers": [ + "κανταΐφι", + "κανταϊφι" + ], + "en_answers": [ + "kadaifi" + ], + "count": 2 + }, + { + "answers": [ + "γλυκά ταψιού" + ], + "en_answers": [ + "tray sweets" + ], + "count": 1 + }, + { + "answers": [ + "τσουρέκι" + ], + "en_answers": [ + "sweet bread" + ], + "count": 1 + }, + { + "answers": [ + "μελομακάρονα" + ], + "en_answers": [ + "honey cookies" + ], + "count": 1 + }, + { + "answers": [ + "ρυζόγαλο" + ], + "en_answers": [ + "rice pudding" + ], + "count": 1 + }, + { + "answers": [ + "γλυκό κουταλιού" + ], + "en_answers": [ + "spoon sweet" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-15": { + "question": "Ποιο είναι το πιο δημοφιλές αθλητικό ποτό (sports drink) στην Ελλάδα;", + "en_question": "What is the most popular sports drink in your country?", + "annotations": [ + { + "answers": [ + "ρεντ μπουλ", + "red bull" + ], + "en_answers": [ + "red bull" + ], + "count": 2 + }, + { + "answers": [ + "μάνστερ", + "monster" + ], + "en_answers": [ + "monster", + "τέρας" + ], + "count": 2 + }, + { + "answers": [ + "hell", + "χελ" + ], + "en_answers": [ + "hell" + ], + "count": 1 + }, + { + "answers": [ + "gatorade", + "γκέτορεϊντ" + ], + "en_answers": [ + "gatorade" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-27": { + "question": "Ποιο είναι το μέσο επίπεδο μόρφωσης των ανθρώπων στην Ελλάδα;", + "en_question": "What is the average education level for people in your country?", + "annotations": [ + { + "answers": [ + "απόφοιτοι λυκείου", + "λύκειο" + ], + "en_answers": [ + "high school graduates", + "high school" + ], + "count": 2 + }, + { + "answers": [ + "πανεπιστήμιο" + ], + "en_answers": [ + "university" + ], + "count": 1 + }, + { + "answers": [ + "τριτοβάθμια εκπαίδευση" + ], + "en_answers": [ + "higher education" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-spme-37": { + "question": "Ποιο επάγγελμα/ειδικότητα σπούδαζουν συχνότερα στο εξωτερικό οι φοιτητές από την Ελλάδα;", + "en_question": "Which profession is most commonly studied abroad by students from your country?", + "annotations": [ + { + "answers": [ + "γιατρός", + "ιατρική", + "ιατρικη", + "ιατρός" + ], + "en_answers": [ + "doctor", + "medicine", + "medical" + ], + "count": 3 + }, + { + "answers": [ + "δικηγόρος" + ], + "en_answers": [ + "lawyer" + ], + "count": 1 + }, + { + "answers": [ + "κτηνιατρική" + ], + "en_answers": [ + "veterinary" + ], + "count": 1 + }, + { + "answers": [ + "ευρωπαϊκές σπουδές" + ], + "en_answers": [ + "european studies" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-spme-60": { + "question": "Ποια μέρα της εβδομάδας οι περισσότερες οικογένειες στην Ελλάδα ασκούν θρησκευτικές δραστηριότητες; (π.χ. Δευτέρα, Τρίτη)", + "en_question": "Which day of the week do most families in your country practice religious activities? (e.g. Monday, Tuesday)", + "annotations": [ + { + "answers": [ + "κυριακή", + "κυριακη" + ], + "en_answers": [ + "sunday" + ], + "count": 5 + }, + { + "answers": [ + "τετάρτη", + "τεταρτη" + ], + "en_answers": [ + "wednesday" + ], + "count": 2 + }, + { + "answers": [ + "παρασκευή" + ], + "en_answers": [ + "friday" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-65": { + "question": "Ποιος είναι ο πιο δημοφιλής τρόπος για να γιορτάσει κανείς την Ημέρα της Ανεξαρτησίας στην Ελλάδα;", + "en_question": "What is the most popular way to celebrate Independence Day in your country?", + "annotations": [ + { + "answers": [ + "παρέλαση" + ], + "en_answers": [ + "parade" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 2, + "no-answer": 1, + "idk": 0 + } + }, + "New-spme-68": { + "question": "Ποιο είναι το πιο δημοφιλές ποτό/ρόφημα ανάμεσα στα παιδιά στην Ελλάδα;", + "en_question": "What is the most popular beverage among children in your country?", + "annotations": [ + { + "answers": [ + "γάλα", + "γαλα" + ], + "en_answers": [ + "milk" + ], + "count": 2 + }, + { + "answers": [ + "κόκα κόλα", + "κόκα κολα" + ], + "en_answers": [ + "coca cola" + ], + "count": 2 + }, + { + "answers": [ + "χυμός πορτοκάλι", + "πορτοκαλάδα" + ], + "en_answers": [ + "orange juice" + ], + "count": 2 + }, + { + "answers": [ + "χυμός", + "χυμος" + ], + "en_answers": [ + "juice" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-76": { + "question": "Ποιο είναι το πιο δημοφιλές μέρος στην Ελλάδα για να γιορτάσει κανείς την Ημέρα της Ανεξαρτησίας;", + "en_question": "What is the most popular place in your country to celebrate Independence Day?", + "annotations": [ + { + "answers": [ + "χωριά" + ], + "en_answers": [ + "villages" + ], + "count": 1 + }, + { + "answers": [ + "θάλασσα" + ], + "en_answers": [ + "near the sea" + ], + "count": 1 + }, + { + "answers": [ + "καλάβρυτα" + ], + "en_answers": [ + "kalavryta" + ], + "count": 1 + }, + { + "answers": [ + "αθήνα", + "αθηνα" + ], + "en_answers": [ + "athens" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 0 + } + }, + "New-spme-78": { + "question": "Πώς ονομάζεται το τραγούδι που συνήθως τραγουδιέται στα πάρτι γενεθλίων στην Ελλάδα;", + "en_question": "What is the name of the song that is typically sung at birthday parties in your country?", + "annotations": [ + { + "answers": [ + "χρόνια πολλά" + ], + "en_answers": [ + "happy birthday" + ], + "count": 3 + }, + { + "answers": [ + "happy birthday" + ], + "en_answers": [ + "happy birthday" + ], + "count": 1 + }, + { + "answers": [ + "να ζήσεις ..." + ], + "en_answers": [ + "may you live ..." + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-01": { + "question": "Ποια σνακ πωλούνται συνήθως μπροστά από τα σχολεία στην Ελλάδα;", + "en_question": "What snacks are usually sold in front of schools in your country?", + "annotations": [ + { + "answers": [ + "κουλούρι", + "κουλούρια" + ], + "en_answers": [ + "bagel", + "bagels" + ], + "count": 2 + }, + { + "answers": [ + "τοστ" + ], + "en_answers": [ + "toast" + ], + "count": 1 + }, + { + "answers": [ + "σφολιάτες" + ], + "en_answers": [ + "puff pastries" + ], + "count": 1 + }, + { + "answers": [ + "χυμοί" + ], + "en_answers": [ + "juices" + ], + "count": 1 + }, + { + "answers": [ + "σάντουιτς" + ], + "en_answers": [ + "sandwich" + ], + "count": 1 + }, + { + "answers": [ + "πατατάκια", + "πατατακια" + ], + "en_answers": [ + "potato chips" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-09": { + "question": "Τι λάδι χρησιμοποιείται συνήθως για το μαγείρεμα στην Ελλάδα;", + "en_question": "What oil is usually used for cooking in your country?", + "annotations": [ + { + "answers": [ + "ελαιόλαδο", + "ελαιολαδο" + ], + "en_answers": [ + "olive oil" + ], + "count": 5 + }, + { + "answers": [ + "ηλιέλαιο" + ], + "en_answers": [ + "sunflower oil" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-10": { + "question": "Ποια τρόφιμα καταναλώνουν συχνά οι έγκυες στην Ελλάδα;", + "en_question": "What food is commonly consumed by pregnant women in your country?", + "annotations": [ + { + "answers": [ + "σοκολάτα" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + }, + { + "answers": [ + "γαλακτοκομικά" + ], + "en_answers": [ + "dairy products" + ], + "count": 1 + }, + { + "answers": [ + "φρούτα" + ], + "en_answers": [ + "fruits" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "New-su-15": { + "question": "Ποιο είναι το πιο δημοφιλές παραδοσιακό αναψυκτικό χωρίς αλκοόλ στην Ελλάδα;", + "en_question": "What is the most popular traditional non-alcoholic drink in your country?", + "annotations": [ + { + "answers": [ + "coca cola", + "κόκα κόλα", + "κοκα κολα" + ], + "en_answers": [ + "coca cola" + ], + "count": 2 + }, + { + "answers": [ + "πορτοκαλάδα" + ], + "en_answers": [ + "orangeade" + ], + "count": 1 + }, + { + "answers": [ + "μπύρα άνευ", + "μπυρα ανευ", + "μη αλκοολούχα μπύρα" + ], + "en_answers": [ + "non-alcoholic beer" + ], + "count": 1 + }, + { + "answers": [ + "πορτοκαλάδα", + "πορτοκαλαδα" + ], + "en_answers": [ + "orangeade" + ], + "count": 1 + }, + { + "answers": [ + "βυσσινάδα" + ], + "en_answers": [ + "sour cherry juice" + ], + "count": 1 + }, + { + "answers": [ + "λεμονάδα" + ], + "en_answers": [ + "lemonade" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-17": { + "question": "Ποιες αθλητικές εγκαταστάσεις είναι συνήθως διαθέσιμες στα πάρκα στην Ελλάδα;", + "en_question": "What sports facilities are generally available in parks in your country?", + "annotations": [ + { + "answers": [ + "γήπεδο καλαθοσφαίρισης", + "γήπεδα μπάσκετ", + "γηπεδα μπασκετ", + "γήπεδο μπάσκετ" + ], + "en_answers": [ + "basketball court", + "basketball courts" + ], + "count": 2 + }, + { + "answers": [ + "γυμναστήρια", + "γυμναστηρια", + "γυμναστήριο" + ], + "en_answers": [ + "gyms", + "gym" + ], + "count": 2 + }, + { + "answers": [ + "χώρος γυμναστικής" + ], + "en_answers": [ + "fitness area" + ], + "count": 1 + }, + { + "answers": [ + "καλλισθενική" + ], + "en_answers": [ + "calisthenics" + ], + "count": 1 + }, + { + "answers": [ + "γήπεδα ποδοσφαίρου", + "γηπεδα ποδοσφαιρου", + "γήπεδο ποδοσφαιρου" + ], + "en_answers": [ + "football fields", + "soccer fields" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-21": { + "question": "Ποιες είναι οι πιο συνηθισμένες δραστηριότητες που συνήθως κάνουν οι ηλικιωμένοι στα πάρκα στην Ελλάδα;", + "en_question": "What are the common activities that seniors usually do in parks in your country?", + "annotations": [ + { + "answers": [ + "περπάτημα", + "χαλαρό περπάτημα" + ], + "en_answers": [ + "walking", + "leisurely walk" + ], + "count": 3 + }, + { + "answers": [ + "επιτραπέζια παιχνίδια" + ], + "en_answers": [ + "board games" + ], + "count": 1 + }, + { + "answers": [ + "συζήτηση" + ], + "en_answers": [ + "discussion" + ], + "count": 1 + }, + { + "answers": [ + "ξεκούραση σε παγκάκια" + ], + "en_answers": [ + "rest on benches" + ], + "count": 1 + }, + { + "answers": [ + "διαβάζουν εφημερίδα" + ], + "en_answers": [ + "reading newspaper" + ], + "count": 1 + }, + { + "answers": [ + "πίνουν καφέ" + ], + "en_answers": [ + "drinking coffee" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-24": { + "question": "Ποια αθλήματα παίζουν συνήθως μαζί γονείς και παιδιά στην Ελλάδα;", + "en_question": "What sports do parents and children commonly play together in your country?", + "annotations": [ + { + "answers": [ + "ποδόσφαιρο", + "ποδοσφαιρο" + ], + "en_answers": [ + "football" + ], + "count": 3 + }, + { + "answers": [ + "μπάσκετ", + "μπασκετ" + ], + "en_answers": [ + "basketball" + ], + "count": 3 + }, + { + "answers": [ + "βόλεϊ", + "βόλεϋ" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-28": { + "question": "Ποιο χρώμα συνδέεται με την εθνική ποδοσφαιρική ομάδα της Ελλάδας;", + "en_question": "What color is associated with the national soccer team of your country?", + "annotations": [ + { + "answers": [ + "γαλάζιο", + "white", + "λευκό" + ], + "en_answers": [ + "blue", + "white" + ], + "count": 3 + }, + { + "answers": [ + "μπλε", + "blue" + ], + "en_answers": [ + "blue" + ], + "count": 3 + }, + { + "answers": [ + "λευκό" + ], + "en_answers": [ + "white" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-33": { + "question": "Ποιος είναι ο ενδυματολογικός κώδικας για τους δασκάλους στα σχολεία της Ελλάδας;", + "en_question": "What is the common dress code for school teachers in your country?", + "annotations": [ + { + "answers": [ + "κοστούμι" + ], + "en_answers": [ + "suit" + ], + "count": 1 + }, + { + "answers": [ + "πουκάμισο" + ], + "en_answers": [ + "shirt" + ], + "count": 1 + }, + { + "answers": [ + "παντελόνι" + ], + "en_answers": [ + "trousers" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 3, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-34": { + "question": "Ποια είναι η πιο δημοφιλής εξωσχολική δραστηριότητα σχετική με τη μουσική στα σχολεία στην Ελλάδα;", + "en_question": "What is the most popular extracurricular activity related to music in schools in your country?", + "annotations": [ + { + "answers": [ + "κιθάρα" + ], + "en_answers": [ + "guitar" + ], + "count": 2 + }, + { + "answers": [ + "κάλαντα" + ], + "en_answers": [ + "carols" + ], + "count": 1 + }, + { + "answers": [ + "συναυλία" + ], + "en_answers": [ + "concert" + ], + "count": 1 + }, + { + "answers": [ + "χωροεσπερίδα", + "χοροεσπερίδα" + ], + "en_answers": [ + "dancing party" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-42": { + "question": "Ποια θρησκεία διδάσκεται κυρίως στα σχολεία στην Ελλάδα;", + "en_question": "What religion is mainly taught in schools in your country?", + "annotations": [ + { + "answers": [ + "χριστιανισμός", + "christianity", + "χρηστιανισμος" + ], + "en_answers": [ + "christianity" + ], + "count": 4 + }, + { + "answers": [ + "ελληνορθόδοξος χριστιανισμός" + ], + "en_answers": [ + "greek orthodox christianity" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-45": { + "question": "Ποια ημερομηνία γιορτάζεται η Ημέρα Εκπαίδευσης στην Ελλάδα; (Δώστε τη μορφή ΜΜ/ΗΗ π.χ., 12/31).", + "en_question": "What date is Education Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "01/24" + ], + "en_answers": [ + "01/24" + ], + "count": 3 + }, + { + "answers": [ + "01/30" + ], + "en_answers": [ + "01/30" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-su-50": { + "question": "Ποια είναι η κύρια απασχόληση των ανθρώπων στις ορεινές περιοχές στην Ελλάδα;", + "en_question": "What is the main occupation of people in mountainous areas in your country?", + "annotations": [ + { + "answers": [ + "κτηνοτροφία", + "κτηνοτρόφοι", + "κτηνοτροφοι" + ], + "en_answers": [ + "livestock farming", + "livestock breeders" + ], + "count": 4 + }, + { + "answers": [ + "γεωργία" + ], + "en_answers": [ + "agriculture" + ], + "count": 2 + }, + { + "answers": [ + "βοσκοί" + ], + "en_answers": [ + "shepherds" + ], + "count": 1 + }, + { + "answers": [ + "εστίαση" + ], + "en_answers": [ + "catering" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-51": { + "question": "Ποια είναι η κύρια απασχόληση των ανθρώπων στις παραθαλάσσιες περιοχές στην Ελλάδα;", + "en_question": "What is the main occupation of people in coastal areas in your country?", + "annotations": [ + { + "answers": [ + "τουρισμός" + ], + "en_answers": [ + "tourism" + ], + "count": 2 + }, + { + "answers": [ + "αλιεία", + "ψαράδες", + "ψαραδες" + ], + "en_answers": [ + "fishing", + "fishermen" + ], + "count": 2 + }, + { + "answers": [ + "οικοδομές" + ], + "en_answers": [ + "buildings" + ], + "count": 1 + }, + { + "answers": [ + "εστίαση" + ], + "en_answers": [ + "catering" + ], + "count": 1 + }, + { + "answers": [ + "ξενοδοχεία" + ], + "en_answers": [ + "hotels" + ], + "count": 1 + }, + { + "answers": [ + "πώληση" + ], + "en_answers": [ + "sale" + ], + "count": 1 + }, + { + "answers": [ + "κολύμβηση" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-57": { + "question": "Ποιο είναι το πιο συνηθισμένο ζώο που εκτρέφεται στην Ελλάδα;", + "en_question": "What is the most common livestock raised in your country?", + "annotations": [ + { + "answers": [ + "πρόβατο", + "πρόβατα", + "αρνί", + "προβατο" + ], + "en_answers": [ + "sheep", + "lamb" + ], + "count": 4 + }, + { + "answers": [ + "κατσίκι", + "αίγες" + ], + "en_answers": [ + "goat", + "goats" + ], + "count": 3 + }, + { + "answers": [ + "αγελάδες", + "cows", + "αγελάδα" + ], + "en_answers": [ + "cows", + "cow" + ], + "count": 2 + }, + { + "answers": [ + "κότες" + ], + "en_answers": [ + "chickens" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-58": { + "question": "Ποια ζώα χρησιμοποιούνται συνήθως για τη γεωργία στην Ελλάδα;", + "en_question": "What animals are commonly used for agriculture in your country?", + "annotations": [ + { + "answers": [ + "άλογα", + "αλογα" + ], + "en_answers": [ + "horses" + ], + "count": 2 + }, + { + "answers": [ + "πρόβατα" + ], + "en_answers": [ + "sheep" + ], + "count": 1 + }, + { + "answers": [ + "κατσίκια" + ], + "en_answers": [ + "goats" + ], + "count": 1 + }, + { + "answers": [ + "γάιδαροι" + ], + "en_answers": [ + "donkeys" + ], + "count": 1 + }, + { + "answers": [ + "κανένα" + ], + "en_answers": [ + "none" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-59": { + "question": "Τι φοράνε συνήθως οι αγρότες στη Ελλάδα για να προστατευτούν από τη ζέστη κατά τη διάρκεια της δουλείας τους;", + "en_question": "What do farmers in your country typically wear to protect themselves from the heat whilst farming?", + "annotations": [ + { + "answers": [ + "καπέλο" + ], + "en_answers": [ + "hat" + ], + "count": 5 + }, + { + "answers": [ + "μακρυμάνικες μπλούζες" + ], + "en_answers": [ + "long-sleeved shirts" + ], + "count": 1 + }, + { + "answers": [ + "αντηλιακό" + ], + "en_answers": [ + "sunscreen" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-60": { + "question": "Τι τρώνε συνήθως οι αγρότες στην Ελλάδα για μεσημεριανό;", + "en_question": "What do farmers in your country usually eat for lunch?", + "annotations": [ + { + "answers": [ + "σαλάτα" + ], + "en_answers": [ + "salad" + ], + "count": 1 + }, + { + "answers": [ + "κρέας" + ], + "en_answers": [ + "meat" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 3, + "idk": 3, + "not-applicable": 0 + } + }, + "New-su-71": { + "question": "Τι δώρα δίνουν συνήθως οι γονείς στα παιδιά τους για τα γενέθλιά τους στην Ελλάδα;", + "en_question": "What gifts do parents generally give to their children for their birthdays in your country?", + "annotations": [ + { + "answers": [ + "παιχνίδια", + "παιχνιδια" + ], + "en_answers": [ + "games" + ], + "count": 3 + }, + { + "answers": [ + "χρήματα", + "λεφτά" + ], + "en_answers": [ + "money" + ], + "count": 2 + }, + { + "answers": [ + "ηλεκτρονικό παιχνίδι", + "βίντεο παιχνίδια" + ], + "en_answers": [ + "video game" + ], + "count": 1 + }, + { + "answers": [ + "επιτραπέζιο" + ], + "en_answers": [ + "board game" + ], + "count": 1 + }, + { + "answers": [ + "μπάλα" + ], + "en_answers": [ + "ball" + ], + "count": 1 + }, + { + "answers": [ + "κούκλα" + ], + "en_answers": [ + "doll" + ], + "count": 1 + }, + { + "answers": [ + "ρούχα" + ], + "en_answers": [ + "clothes" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-75": { + "question": "Τι τύπο οχήματος κατέχουν συνήθως οι περισσότερες οικογένειες στην Ελλάδα;", + "en_question": "What type of vehicle do most families in your country generally own?", + "annotations": [ + { + "answers": [ + "σεντάν" + ], + "en_answers": [ + "sedan" + ], + "count": 2 + }, + { + "answers": [ + "τετράθυρο" + ], + "en_answers": [ + "four-door" + ], + "count": 1 + }, + { + "answers": [ + "αυτοκίνητο" + ], + "en_answers": [ + "car" + ], + "count": 1 + }, + { + "answers": [ + "χάτσμπακ" + ], + "en_answers": [ + "hatchback" + ], + "count": 1 + }, + { + "answers": [ + "suv" + ], + "en_answers": [ + "suv" + ], + "count": 1 + }, + { + "answers": [ + "ι.χ.", + "ιχ", + "ιδιωτικής χρήσεως" + ], + "en_answers": [ + "private car" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-77": { + "question": "Τι συνήθως δίνεται στα παιδιά κατά τη διάρκεια του Ειντ στην Ελλάδα;", + "en_question": "What is usually given to the children during Eid in your country?", + "annotations": [], + "idks": { + "not-applicable": 3, + "Τί είναι το Ειντ;": 1, + "idk": 1, + "no-answer": 1 + } + }, + "New-su-81": { + "question": "Τι ρούχα συνήθως φορούν οι γαμπροί στους γάμους στην Ελλάδα;", + "en_question": "What clothes do grooms usually wear at weddings in your country?", + "annotations": [ + { + "answers": [ + "κοστούμι", + "κουστούμι" + ], + "en_answers": [ + "suit" + ], + "count": 3 + }, + { + "answers": [ + "μαύρο κοστούμι" + ], + "en_answers": [ + "black suit" + ], + "count": 1 + }, + { + "answers": [ + "πουκάμισο" + ], + "en_answers": [ + "shirt" + ], + "count": 1 + }, + { + "answers": [ + "σακάκι", + "σακάκι & παντελόνι" + ], + "en_answers": [ + "jacket" + ], + "count": 1 + }, + { + "answers": [ + "παντελόνι", + "σακάκι & παντελόνι" + ], + "en_answers": [ + "trousers" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-82": { + "question": "Τι ρούχα συνήθως φορούν οι νύφες στους γάμους στην Ελλάδα;", + "en_question": "What clothes do brides usually wear at weddings in your country?", + "annotations": [ + { + "answers": [ + "νυφικό", + "νυφικο" + ], + "en_answers": [ + "wedding dress" + ], + "count": 3 + }, + { + "answers": [ + "λευκό νυφικό" + ], + "en_answers": [ + "white wedding dress" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-83": { + "question": "Τι φαγητό συνήθως σερβίρεται στους γάμους στην Ελλάδα;", + "en_question": "What food is usually served at weddings in your country?", + "annotations": [ + { + "answers": [ + "γαμοπίλαφο", + "γαμοπιλαφο" + ], + "en_answers": [ + "wedding rice", + "wedding rice pilaf" + ], + "count": 2 + }, + { + "answers": [ + "κρέας", + "κρεας" + ], + "en_answers": [ + "meat" + ], + "count": 2 + }, + { + "answers": [ + "κρέας με συνοδευτικά" + ], + "en_answers": [ + "meat with side dishes" + ], + "count": 1 + }, + { + "answers": [ + "τούρτα" + ], + "en_answers": [ + "cake" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-su-86": { + "question": "Ποιο είναι το πιο διάσημο κυβερνητικό κτίριο στην Ελλάδα;", + "en_question": "What is the most famous government building in your country?", + "annotations": [ + { + "answers": [ + "βουλή", + "βουλή των ελλήνων", + "βουλη των ελληνων" + ], + "en_answers": [ + "parliament", + "hellenic parliament" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-88": { + "question": "Ποιο είναι το πιο δημοφιλές είδος μουσικής στο νέους στην Ελλάδα;", + "en_question": "What is the most popular music genre among the younger population in your country?", + "annotations": [ + { + "answers": [ + "τραπ", + "τράπ" + ], + "en_answers": [ + "bank" + ], + "count": 4 + }, + { + "answers": [ + "ποπ" + ], + "en_answers": [ + "pop" + ], + "count": 2 + }, + { + "answers": [ + "λαική", + "ελληνικό λαϊκό" + ], + "en_answers": [ + "folk", + "greek folk" + ], + "count": 2 + }, + { + "answers": [ + "ροκ" + ], + "en_answers": [ + "rock" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-02": { + "question": "Τι ώρα τελειώνουν συνήθως το σχολείο οι μαθητές του γυμνασίου στην Ελλάδα κάθε μέρα; (Απαντήστε σε μορφή ΩΩ:ΛΛ, π.χ., 18:00, 09:00).", + "en_question": "What time do middle school students in your country typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 3 + }, + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 1 + }, + { + "answers": [ + "13:30" + ], + "en_answers": [ + "13:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-03": { + "question": "Σε ποια ηλικία συνήθως πηγαίνουν οι άνθρωποι στο πανεπιστήμιο στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς, π.χ., 12.)", + "en_question": "At what age do people in your country typically go to university? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 4 + }, + { + "answers": [ + "19" + ], + "en_answers": [ + "19" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-06": { + "question": "Από ποια ηλικία πρέπει τα άτομα να παρακολουθούν υποχρεωτική εκπαίδευση στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς, π.χ., 12.)", + "en_question": "From what age do people need to attend compulsory education in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 3 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-09": { + "question": "Πόσες μέρες την εβδομάδα πηγαίνουν τα παιδιά σχολείο στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (0~7).)", + "en_question": "How many days a week do children attend school in your country? (Provide Arabic numerals (0~7) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-11": { + "question": "Στην Ελλάδα, πόσο καιρό (σε χρόνια) χρειάζεται συνήθως για να ολοκληρωθεί ένα μεταπτυχιακό δίπλωμα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 12).)", + "en_question": "In your country, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-12": { + "question": "Ποιο είναι το κορυφαίο πανεπιστήμιο στην Ελλάδα; (Δώστε το επίσημο όνομα.)", + "en_question": "What is the top university in your country? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "καποδιστριακό πανεπιστήμιο αθηνών", + "καποδηστριακο πανεπηστημιο αθηνων", + "εθνικό καποδιστριακό πανεπιστήμιο αθηνών", + "εθνικο καποδιστριακο πανεπιστημιο αθηνων", + "εθνικό και καποδιστριακό πανεπιστήμιο αθηνών" + ], + "en_answers": [ + "national and kapodistrian university of athens" + ], + "count": 3 + }, + { + "answers": [ + "μετσόβιο πολυτεχνείο", + "μετσοβιο πολυτεχνιο", + "εθνικό μετσόβιο πολυτεχνείο", + "εθνικό μετσόβειο πολυτεχνείο" + ], + "en_answers": [ + "national technical university of athens", + "national technical university of athens" + ], + "count": 2 + }, + { + "answers": [ + "αριστοτέλειο πανεπιστήμιο θεσσαλονίκης", + "αριστοτελειο πανεπιστημιο θεσσαλονικης", + "απθ", + "αριστοτέλειο" + ], + "en_answers": [ + "aristotle university of thessaloniki" + ], + "count": 1 + }, + { + "answers": [ + "πανεπιστήμιο μακεδονίας", + "πανεπιστημιο μακεδονειας" + ], + "en_answers": [ + "university of macedonia" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-13": { + "question": "Σε ποια ηλικία οι περισσότεροι άνθρωποι στην Ελλάδα αποφοιτούν από το πανεπιστήμιο; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς, π.χ., 12.)", + "en_question": "At what age do most people in your country graduate from university? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "22", + "25" + ], + "en_answers": [ + "22", + "25" + ], + "count": 5 + }, + { + "answers": [ + "23" + ], + "en_answers": [ + "23" + ], + "count": 2 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-15": { + "question": "Σε ποια ηλικία συνήθως τα παιδιά στην Ελλάδα ξεκινούν το γυμνάσιο; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς, π.χ., 12.)", + "en_question": "At what age do children in your country generally start middle school? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 4 + }, + { + "answers": [ + "13" + ], + "en_answers": [ + "13" + ], + "count": 2 + }, + { + "answers": [ + "11" + ], + "en_answers": [ + "11" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-17": { + "question": "Πόσες ώρες την εβδομάδα δουλεύει συνήθως ένας πλήρης απασχολούμενος στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς, π.χ., 12.)", + "en_question": "How many hours a week does a full-time worker in your country typically work? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 3 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + }, + { + "answers": [ + "45" + ], + "en_answers": [ + "45" + ], + "count": 1 + }, + { + "answers": [ + "50" + ], + "en_answers": [ + "50" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-19": { + "question": "Πόσες ημέρες την εβδομάδα εργάζεται ένας πλήρης απασχολούμενος στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (0~7).)", + "en_question": "How many days a week does a full-time worker work in your country? (Provide Arabic numerals (0~7) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 4 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 2 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-20": { + "question": "Σε ποια ηλικία οι περισσότεροι άνθρωποι αρχίζουν να εργάζονται στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 12).)", + "en_question": "At what age do most people start working in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 2 + }, + { + "answers": [ + "23" + ], + "en_answers": [ + "23" + ], + "count": 1 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-21": { + "question": "Από ποια ηλικία επιτρέπεται σε ένα άτομο να εργαστεί στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 12).)", + "en_question": "From what age is an individual allowed to work in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 4 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-31": { + "question": "Τι τρώνε παραδοσιακά οι άνθρωποι στην Ελλάδα την ημέρα των Χριστουγέννων;", + "en_question": "What do people in your country traditionally eat on Christmas Day?", + "annotations": [ + { + "answers": [ + "γαλοπούλα", + "γαλοπουλα" + ], + "en_answers": [ + "turkey" + ], + "count": 3 + }, + { + "answers": [ + "κότα", + "κοτα", + "κοτόπουλο", + "κοτοπουλο" + ], + "en_answers": [ + "chicken" + ], + "count": 2 + }, + { + "answers": [ + "μελομακάρονα" + ], + "en_answers": [ + "honey cookies" + ], + "count": 1 + }, + { + "answers": [ + "κουραμπιέδες" + ], + "en_answers": [ + "kourabiedes" + ], + "count": 1 + }, + { + "answers": [ + "χοιρινό" + ], + "en_answers": [ + "pork" + ], + "count": 1 + }, + { + "answers": [ + "χοιρινή τηγανιά" + ], + "en_answers": [ + "pork stir fry" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-37": { + "question": "Πώς ονομάζεται η ημέρα του χρόνου κατά την οποία οι άνθρωποι στην Ελλάδα γιορτάζουν την αγάπη και τον έρωτα;", + "en_question": "What is the name of the day of the year where people in your country celebrate love and romance?", + "annotations": [ + { + "answers": [ + "αγίου βαλεντίνου", + "γιορτή αγίου βαλεντίνου", + "αγιου βαλεντινου" + ], + "en_answers": [ + "saint valentine's", + "saint valentine's day" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-40": { + "question": "Ποιο είναι το πιο δημοφιλές Χριστουγεννιάτικο τραγούδι στην Ελλάδα;", + "en_question": "What is the most popular Christmas song in your country?", + "annotations": [ + { + "answers": [ + "χριστούγεννα", + "χριστούγεννα της βανδή" + ], + "en_answers": [ + "christmas", + "vandi's christmas" + ], + "count": 2 + }, + { + "answers": [ + "τρίγωνα κάλαντα", + "τριγωνα καλαντα", + "κάλαντα", + "καλαντα" + ], + "en_answers": [ + "christmas carols", + "carols" + ], + "count": 1 + }, + { + "answers": [ + "last christmas" + ], + "en_answers": [ + "last christmas" + ], + "count": 1 + }, + { + "answers": [ + "μικρός τυμπανιστής", + "μικρος τυμπανιστης" + ], + "en_answers": [ + "little drummer" + ], + "count": 1 + }, + { + "answers": [ + "άγια νύχτα", + "άγια νύχτα" + ], + "en_answers": [ + "holy night" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-04": { + "question": "Πόσα εξάμηνα υπάρχουν κάθε ακαδημαϊκό έτος στα λύκεια στην Ελλάδα; (Δώστε μόνο σε αραβικούς αριθμούς (π.χ., 7, 8).)", + "en_question": "How many semesters are there each academic year at high schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Nu-in-05": { + "question": "Σε ποιον μήνα συνήθως αρχίζει το νέο σχολικό έτος στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (1~12).)", + "en_question": "In which month does the new school year typically begin in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "9", + "σεπτέμβρειο" + ], + "en_answers": [ + "9" + ], + "count": 4 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-06": { + "question": "Πότε εορτάζεται η Εθνική Ημέρα του Εκπαιδευτικού στην Ελλάδα; (Απαντήστε σε μορφή ΜΜ/ΗΗ π.χ., 12/31).", + "en_question": "When is National Teacher's Day commemorated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "10/05" + ], + "en_answers": [ + "10/05" + ], + "count": 3 + }, + { + "answers": [ + "01/30" + ], + "en_answers": [ + "01/30" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Nu-in-11": { + "question": "Τι ώρα αρχίζει το δημοτικό σχολείο στην Ελλάδα; (Απαντήστε σε μορφή ΩΩ:ΛΛ, π.χ., 18:00, 09:00).", + "en_question": "At what time does elementary school start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 2 + }, + { + "answers": [ + "08:20" + ], + "en_answers": [ + "08:20" + ], + "count": 1 + }, + { + "answers": [ + "08:15" + ], + "en_answers": [ + "08:15" + ], + "count": 1 + }, + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-20": { + "question": "Πότε γιορτάζεται η Ημέρα του Παιδιού στην Ελλάδα; (Απαντήστε σε μορφή ΜΜ/ΗΗ π.χ., 12/31).", + "en_question": "When is Children's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "11/20" + ], + "en_answers": [ + "11/20" + ], + "count": 2 + } + ], + "idks": { + "idk": 6, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Nu-in-40": { + "question": "Ποια πόλη είναι ο κύριος προορισμός για τους αναζητούντες εργασία στην Ελλάδα;", + "en_question": "Which city is the main destination for job seekers in your country?", + "annotations": [ + { + "answers": [ + "αθήνα" + ], + "en_answers": [ + "athens" + ], + "count": 4 + }, + { + "answers": [ + "θεσσαλονίκη" + ], + "en_answers": [ + "thessaloniki" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Sa-en-1": { + "question": "Ποια είναι η πιο δημοφιλής αλυσίδα fast food στην Ελλάδα;", + "en_question": "What is your country's most popular fast food chain?", + "annotations": [ + { + "answers": [ + "goody's", + "goodys", + "goody’s" + ], + "en_answers": [ + "goody's", + "goodies" + ], + "count": 5 + }, + { + "answers": [ + "mcdonald's", + "mcdonalds", + "macdonalds", + "mc donalds" + ], + "en_answers": [ + "mcdonald's" + ], + "count": 3 + }, + { + "answers": [ + "kfc", + "κfc" + ], + "en_answers": [ + "kfc" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-13": { + "question": "Ποιο είναι το φαγητό που διχάζει περισσότερο (είτε το αγαπούν είτε το μισούν) στην Ελλάδα;", + "en_question": "What is the food that is most divisive (either love or hate) in your country?", + "annotations": [ + { + "answers": [ + "μπάμιες" + ], + "en_answers": [ + "okra" + ], + "count": 2 + }, + { + "answers": [ + "μουσακά" + ], + "en_answers": [ + "moussaka" + ], + "count": 1 + }, + { + "answers": [ + "παντζαροσαλάτα" + ], + "en_answers": [ + "beetroot salad" + ], + "count": 1 + }, + { + "answers": [ + "γεμιστά", + "γεμιστα" + ], + "en_answers": [ + "stuffed vegetables" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-16": { + "question": "Ποια είναι η πιο δημοφιλής ποδοσφαιρική ομάδα μεταξύ των ανθρώπων από την Ελλάδα;", + "en_question": "What is the most popular soccer team among the people from your country?", + "annotations": [ + { + "answers": [ + "ολυμπιακός", + "ολυμπιακος" + ], + "en_answers": [ + "olympiacos" + ], + "count": 5 + }, + { + "answers": [ + "παναθηναϊκός" + ], + "en_answers": [ + "panathinaikos" + ], + "count": 1 + }, + { + "answers": [ + "αεκ" + ], + "en_answers": [ + "aek" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-22": { + "question": "Ποιο είναι το πιο διάσημο πανεπιστήμιο στην Ελλάδα γνωστό για την αθλητική του ομάδα;", + "en_question": "What is the most famous university in your country known for its sports team?", + "annotations": [ + { + "answers": [ + "της κρήτης", + "της κρήτης.", + "πανεπιστήμιο κρήτης" + ], + "en_answers": [ + "university of crete" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 1, + "no-answer": 0 + } + }, + "Sa-en-31": { + "question": "Ποιο είναι το πιο δημοφιλές κατοικίδιο ζώο στις ελληνικές οικογένειες;", + "en_question": "What is your country's most popular family pet?", + "annotations": [ + { + "answers": [ + "σκύλος", + "σκυλος" + ], + "en_answers": [ + "dog" + ], + "count": 4 + }, + { + "answers": [ + "γάτα", + "γατα" + ], + "en_answers": [ + "cat" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-32": { + "question": "Ποια είναι η πιο δημοφιλής οικογενειακή τηλεοπτική εκπομπή στην Ελλάδα;", + "en_question": "What is the most popular family TV show in your country?", + "annotations": [ + { + "answers": [ + "σασμός" + ], + "en_answers": [ + "rift" + ], + "count": 1 + }, + { + "answers": [ + "στο παρά πέντε" + ], + "en_answers": [ + "in the nick of time" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "not-applicable": 1, + "idk": 1 + } + }, + "Sa-en-37": { + "question": "Ποιο είναι το πιο δημοφιλές οικογενειακό επιτραπέζιο παιχνίδι στην Ελλάδα;", + "en_question": "What is the most popular family boardgame in your country?", + "annotations": [ + { + "answers": [ + "monopoly", + "μονόπολη", + "μονοπολη" + ], + "en_answers": [ + "monopoly" + ], + "count": 4 + }, + { + "answers": [ + "uno" + ], + "en_answers": [ + "uno" + ], + "count": 3 + }, + { + "answers": [ + "τάβλι", + "ταβλι" + ], + "en_answers": [ + "backgammon" + ], + "count": 1 + }, + { + "answers": [ + "trivial pursuit" + ], + "en_answers": [ + "trivial pursuit" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Sa-en-6": { + "question": "Ποιο είναι το πιο δημοφιλές φαγητό σε πακέτο στην Ελλάδα;", + "en_question": "What is the most popular takeaway food in your country?", + "annotations": [ + { + "answers": [ + "γύρος", + "γυρος" + ], + "en_answers": [ + "gyro" + ], + "count": 3 + }, + { + "answers": [ + "σουβλάκι", + "σουβλάκια" + ], + "en_answers": [ + "souvlaki" + ], + "count": 2 + }, + { + "answers": [ + "πίτσα" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-7": { + "question": "Ποια είναι δημοφιλή σνακ στην Ελλάδα;", + "en_question": "What are popular snacks in your country?", + "annotations": [ + { + "answers": [ + "πατατάκια" + ], + "en_answers": [ + "potato chips" + ], + "count": 2 + }, + { + "answers": [ + "σουβλάκι", + "σουβακι" + ], + "en_answers": [ + "souvlaki" + ], + "count": 1 + }, + { + "answers": [ + "μπουγάτσα", + "μπουγατσα" + ], + "en_answers": [ + "bougatsa" + ], + "count": 1 + }, + { + "answers": [ + "τυρόπιτα", + "τυροπιτα" + ], + "en_answers": [ + "cheese pie" + ], + "count": 1 + }, + { + "answers": [ + "κρεατόπιτα", + "κρεατοπιτα" + ], + "en_answers": [ + "meat pie" + ], + "count": 1 + }, + { + "answers": [ + "ξηροί καρποί" + ], + "en_answers": [ + "nuts" + ], + "count": 1 + }, + { + "answers": [ + "φρούτα" + ], + "en_answers": [ + "fruits" + ], + "count": 1 + }, + { + "answers": [ + "γιαούρτι" + ], + "en_answers": [ + "yogurt" + ], + "count": 1 + }, + { + "answers": [ + "λάκτα" + ], + "en_answers": [ + "lacta" + ], + "count": 1 + }, + { + "answers": [ + "ίον", + "ιον" + ], + "en_answers": [ + "ion" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-9": { + "question": "Τι τρώνε οι άνθρωποι από την Ελλάδα στην παραλία;", + "en_question": "What do people from your country eat at the beach?", + "annotations": [ + { + "answers": [ + "σάντουιτς", + "σαντουιτς" + ], + "en_answers": [ + "sandwich" + ], + "count": 3 + }, + { + "answers": [ + "τοστ" + ], + "en_answers": [ + "toast" + ], + "count": 2 + }, + { + "answers": [ + "φρούτα" + ], + "en_answers": [ + "fruits" + ], + "count": 2 + }, + { + "answers": [ + "τυρόπιτα" + ], + "en_answers": [ + "cheese pie" + ], + "count": 1 + }, + { + "answers": [ + "κλαμπ σαντουιτς" + ], + "en_answers": [ + "club sandwich" + ], + "count": 1 + }, + { + "answers": [ + "κεφτεδες" + ], + "en_answers": [ + "meatballs" + ], + "count": 1 + }, + { + "answers": [ + "μπέργκερ", + "μπεργκερ", + "χάμπουργκερ" + ], + "en_answers": [ + "burger" + ], + "count": 1 + }, + { + "answers": [ + "πατατάκια" + ], + "en_answers": [ + "potato chips" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-10": { + "question": "Σε ποια ηλικία συνήθως παντρεύονται οι άνδρες στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς, π.χ., 20.)", + "en_question": "At what age do men usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 4 + }, + { + "answers": [ + "28" + ], + "en_answers": [ + "28" + ], + "count": 2 + }, + { + "answers": [ + "32" + ], + "en_answers": [ + "32" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-11": { + "question": "Σε ποια ηλικία συνήθως παντρεύονται οι γυναίκες στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 20).)", + "en_question": "At what age do women usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "27" + ], + "en_answers": [ + "27" + ], + "count": 2 + }, + { + "answers": [ + "35" + ], + "en_answers": [ + "35" + ], + "count": 1 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + }, + { + "answers": [ + "26" + ], + "en_answers": [ + "26" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-13": { + "question": "Στη γενιά των γονιών σας, ποιος ήταν ο μέσος όρος των μελών στην οικογένειά τους στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς, π.χ. 20.)", + "en_question": "In your parents' generation, what was the average number of members in their family in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 3 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-17": { + "question": "Στους Ολυμπιακούς Αγώνες, ποιο άθλημα είναι το πιο δημοφιλές στην Ελλάδα;", + "en_question": "In the Olympic Games, which sport is the most popular in your country?", + "annotations": [ + { + "answers": [ + "στίβος", + "στοιβος" + ], + "en_answers": [ + "track and field" + ], + "count": 2 + }, + { + "answers": [ + "πόλο", + "υδατοσφαίριση" + ], + "en_answers": [ + "water polo" + ], + "count": 1 + }, + { + "answers": [ + "ενόργανη", + "ενόργανη γυμναστική" + ], + "en_answers": [ + "gymnastics" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Ta-pe-21": { + "question": "Πού συνήθως παίζουν ποδόσφαιρο τα παιδιά στην Ελλάδα;", + "en_question": "Where do children usually play soccer in your country?", + "annotations": [ + { + "answers": [ + "γήπεδα", + "σε γήπεδα" + ], + "en_answers": [ + "stadiums", + "in stadiums" + ], + "count": 3 + }, + { + "answers": [ + "σχολείο", + "σχολεία" + ], + "en_answers": [ + "school", + "schools" + ], + "count": 2 + }, + { + "answers": [ + "δημόσια γήπεδα" + ], + "en_answers": [ + "public stadiums" + ], + "count": 1 + }, + { + "answers": [ + "αλάνες" + ], + "en_answers": [ + "playgrounds" + ], + "count": 1 + }, + { + "answers": [ + "δρόμο" + ], + "en_answers": [ + "street" + ], + "count": 1 + }, + { + "answers": [ + "αθλητικοί όμιλοι" + ], + "en_answers": [ + "sports clubs" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-22": { + "question": "Ποια καθημερινή άσκηση είναι δημοφιλής μεταξύ των γυναικών στην Ελλάδα;", + "en_question": "Which daily exercise is popular among women in your country?", + "annotations": [ + { + "answers": [ + "πιλάτες", + "πιλάτες." + ], + "en_answers": [ + "pilates.", + "pilates" + ], + "count": 2 + }, + { + "answers": [ + "πόλο" + ], + "en_answers": [ + "polo" + ], + "count": 1 + }, + { + "answers": [ + "μπάσκετ" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "squats", + "καθίσματα" + ], + "en_answers": [ + "squats" + ], + "count": 1 + }, + { + "answers": [ + "burpees" + ], + "en_answers": [ + "burpees" + ], + "count": 1 + }, + { + "answers": [ + "περπάτημα" + ], + "en_answers": [ + "walking" + ], + "count": 1 + }, + { + "answers": [ + "crossfit", + "κρος φιτ" + ], + "en_answers": [ + "crossfit" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-23": { + "question": "Ποια καθημερινή άσκηση είναι δημοφιλής ανάμεσα στους άνδρες στην Ελλάδα;", + "en_question": "Which daily exercise is popular among men in your country?", + "annotations": [ + { + "answers": [ + "τρέξιμο", + "τρεξιμο" + ], + "en_answers": [ + "running" + ], + "count": 2 + }, + { + "answers": [ + "γυμναστήριο" + ], + "en_answers": [ + "gym" + ], + "count": 1 + }, + { + "answers": [ + "περπάτημα", + "περπατημα" + ], + "en_answers": [ + "walking" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ta-pe-25": { + "question": "Ποια είναι η πιο διάσημη αντιπαλότητα σε εθνικό αθλητικό πρωτάθλημα στην Ελλάδα; (π.χ., ___ έναντι ___)", + "en_question": "What is the most famous rivalry in a national sports league in your country? (e.g., ___ vs ___)", + "annotations": [ + { + "answers": [ + "ολυμπιακός έναντι παναθηναϊκός", + "ολυμπιακός-παναθηναϊκός", + "παο έναντι οσφγ", + "παο εναντι οσφπ", + "ολυμπιακός έναντι παναθηναϊκού", + "ολυμπιακός έναντι παναθηναίκού" + ], + "en_answers": [ + "olympiacos versus panathinaikos", + "olympiacos-panathinaikos", + "pao against osfp" + ], + "count": 4 + }, + { + "answers": [ + "άρης-παοκ", + "άρης-πάοκ" + ], + "en_answers": [ + "aris-paok" + ], + "count": 1 + }, + { + "answers": [ + "αεκ έναντι παοκ", + "άεκ εναντι πάοκ" + ], + "en_answers": [ + "aek against paok" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-29": { + "question": "Ποιο επαγγελματικό άθλημα είναι το καλύτερα αμειβόμενο στην Ελλάδα;", + "en_question": "Which professional sport is the highest paying in your country?", + "annotations": [ + { + "answers": [ + "ποδόσφαιρο", + "ποδοσφαιρο" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "μπάσκετ" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "στίβος" + ], + "en_answers": [ + "track and field" + ], + "count": 1 + }, + { + "answers": [ + "πολεμική τέχνη" + ], + "en_answers": [ + "martial art" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-30": { + "question": "Ποιο είναι/ήταν το πιο δημοφιλές αθλητικό τηλεοπτικό πρόγραμμα στην Ελλάδα;", + "en_question": "What is/was the most popular sports-related TV program in your country?", + "annotations": [ + { + "answers": [ + "ποδόσφαιρο", + "ποδοσφαιρο" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "super μπάλα live" + ], + "en_answers": [ + "super ball live" + ], + "count": 1 + } + ], + "idks": { + "Δεν γνωρίζω": 1, + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ta-pe-32": { + "question": "Ποια ημέρα του χρόνου είναι συνήθως αφιερωμένη στα πυροτεχνήματα στην Ελλάδα;", + "en_question": "What day of the year is usually dedicated to fireworks in your country?", + "annotations": [ + { + "answers": [ + "πρωτοχρονιά", + "την πρωτοχρονιά", + "την πρωτοχρονια" + ], + "en_answers": [ + "new year's day", + "on new year's" + ], + "count": 3 + }, + { + "answers": [ + "πάσχα", + "πασχα", + "το πάσχα", + "το πασχα" + ], + "en_answers": [ + "easter" + ], + "count": 3 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ta-pe-37": { + "question": "Ποιο είναι το κοινό σύμβολο της Πρωτοχρονιάς που συνήθως βρίσκεται στην Ελλάδα;", + "en_question": "What is the common symbol of New Year's Eve that is usually found in your country?", + "annotations": [ + { + "answers": [ + "βασιλόπιτα" + ], + "en_answers": [ + "vasilopita" + ], + "count": 2 + }, + { + "answers": [ + "γούρι", + "φλουρί", + "φλουρι" + ], + "en_answers": [ + "vasilopita's coin" + ], + "count": 2 + }, + { + "answers": [ + "πυροτεχνήματα" + ], + "en_answers": [ + "fireworks" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Ta-pe-42": { + "question": "Τι φαγητό συνήθως τρώνε οι άνθρωποι από την Ελλάδα την Παραμονή του Νέου Έτους;", + "en_question": "What food do people from your country usually eat on New Year's Eve?", + "annotations": [ + { + "answers": [ + "γαλοπούλα", + "γαλοπουλα" + ], + "en_answers": [ + "turkey" + ], + "count": 2 + }, + { + "answers": [ + "κρέας" + ], + "en_answers": [ + "meat" + ], + "count": 1 + }, + { + "answers": [ + "χοιρινό στο φούρνο" + ], + "en_answers": [ + "pork in the oven" + ], + "count": 1 + }, + { + "answers": [ + "χοιρινό" + ], + "en_answers": [ + "pork" + ], + "count": 1 + }, + { + "answers": [ + "σουφλέ" + ], + "en_answers": [ + "soufflé" + ], + "count": 1 + }, + { + "answers": [ + "κοτόπουλο" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-45": { + "question": "Τι συνήθως τρώγεται κατά την εορτασμό της μακρύτερης νύχτας του χρόνου στην Ελλάδα;", + "en_question": "What is usually eaten during the celebration of the longest night of the year in your country?", + "annotations": [ + { + "answers": [ + "γαλοπούλα" + ], + "en_answers": [ + "turkey" + ], + "count": 1 + }, + { + "answers": [ + "χοιρινό" + ], + "en_answers": [ + "pork" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "no-answer": 1, + "idk": 0 + } + }, + "Th-en-01": { + "question": "Ποιο είναι το πιο δημοφιλές καλοκαιρινό άθλημα στην Ελλάδα;", + "en_question": "What is the most popular summer sport in your country?", + "annotations": [ + { + "answers": [ + "κολύμβηση" + ], + "en_answers": [ + "swimming" + ], + "count": 2 + }, + { + "answers": [ + "ιστιοπλοΐα", + "ιστιοπλοϊα" + ], + "en_answers": [ + "sailing" + ], + "count": 2 + }, + { + "answers": [ + "ποδόσφαιρο" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "μπάσκετ" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "ρακέτες" + ], + "en_answers": [ + "rackets" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-03": { + "question": "Ποια είναι το πιο δημοφιλές επαγγελματικό αθλητικό πρωτάθλημα στην Ελλάδα;", + "en_question": "What is the most popular professional sports league in your country?", + "annotations": [ + { + "answers": [ + "super league", + "σούπερ λιγκ 1", + "super league greece", + "σούπερ λιγκ" + ], + "en_answers": [ + "super league", + "super league 1", + "super league greece" + ], + "count": 3 + }, + { + "answers": [ + "ποδόσφαιρο" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "α1", + "μπάσκετ λιγκ" + ], + "en_answers": [ + "a1", + "basketball league" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-05": { + "question": "Ποια είναι η πιο δημοφιλής γυναικεία αθλητική ομάδα στην Ελλάδα;", + "en_question": "What is the most popular women's sports team in your country?", + "annotations": [ + { + "answers": [ + "ολυμπιακός", + "ολυμπιακος" + ], + "en_answers": [ + "olympiacos" + ], + "count": 2 + }, + { + "answers": [ + "αεκ" + ], + "en_answers": [ + "aek" + ], + "count": 1 + }, + { + "answers": [ + "οσφπ πόλο", + "οσφπ πολο" + ], + "en_answers": [ + "osfp water polo" + ], + "count": 1 + }, + { + "answers": [ + "βολεΐ", + "βόλευ" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "παναθναϊκός", + "παναθηναικος" + ], + "en_answers": [ + "panathinaikos" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-09": { + "question": "Ποιο είναι το πιο δημοφιλές τουρνουά στην Ελλάδα;", + "en_question": "What is the most popular tournament in your country?", + "annotations": [ + { + "answers": [ + "ακρόπολης", + "akropolis", + "ακροπολις", + "ράλι ακρόπολης", + "ράλι ακρόπολις" + ], + "en_answers": [ + "acropolis", + "acropolis rally" + ], + "count": 3 + }, + { + "answers": [ + "ποδόσφαιρο", + "ποδοσφαίρου" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-11": { + "question": "Ποιος είναι ο πιο δημοφιλής αθλητής στην Ελλάδα;", + "en_question": "Who is the most popular sportperson in your country?", + "annotations": [ + { + "answers": [ + "γιάννης αντετοκούνμπο", + "γιάννης αντετοκούμπο", + "αντετοκούνμπο" + ], + "en_answers": [ + "giannis antetokounmpo", + "antetokounmpo" + ], + "count": 2 + }, + { + "answers": [ + "τσιτσιπάς" + ], + "en_answers": [ + "tsitsipas" + ], + "count": 1 + }, + { + "answers": [ + "τεντόγλου", + "τέντογλου" + ], + "en_answers": [ + "tentoglou" + ], + "count": 1 + }, + { + "answers": [ + "γκάλης" + ], + "en_answers": [ + "galis" + ], + "count": 1 + }, + { + "answers": [ + "δεβετζή" + ], + "en_answers": [ + "devetzi" + ], + "count": 1 + }, + { + "answers": [ + "σλούκας" + ], + "en_answers": [ + "sloukas" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-12": { + "question": "Σε ποιο άθλημα έχει επιτύχει η Ελλάδα τη μεγαλύτερη επιτυχία σε διεθνείς διαγωνισμούς;", + "en_question": "In which sport has your country been most successful in international competitions?", + "annotations": [ + { + "answers": [ + "μπάσκετ", + "καλαθοσφαίριση", + "καλαθοσφαιριση" + ], + "en_answers": [ + "basketball" + ], + "count": 3 + }, + { + "answers": [ + "ποδόσφαιρο", + "ποδόσφαιρο (euro 2004)" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "πόλο", + "υδάτινο πόλο", + "υδατινο πολο" + ], + "en_answers": [ + "water polo" + ], + "count": 3 + }, + { + "answers": [ + "στίβος", + "στιβος" + ], + "en_answers": [ + "track and field" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-15": { + "question": "Ποιο είναι το πιο δημοφιλές χειμερινό άθλημα στην Ελλάδα;", + "en_question": "What is the most popular winter sport in your country?", + "annotations": [ + { + "answers": [ + "σκι" + ], + "en_answers": [ + "skiing" + ], + "count": 4 + }, + { + "answers": [ + "σνόουμπορντ", + "σνοουμπορντ", + "χιονοσανίδα", + "snowboard" + ], + "en_answers": [ + "snowboard" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-19": { + "question": "Ποια είναι μια πόλη ή περιοχή στην Ελλάδα που είναι γνωστή για τη βιομηχανία κατασκευών;", + "en_question": "What is a city or region in your country known for manufacturing industry?", + "annotations": [ + { + "answers": [ + "αθήνα" + ], + "en_answers": [ + "athens" + ], + "count": 2 + }, + { + "answers": [ + "πτολεμαΐδα" + ], + "en_answers": [ + "ptolemaida" + ], + "count": 1 + } + ], + "idks": { + "Δεν γνωρίζω": 1, + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Th-en-21": { + "question": "Ποιο θεωρείται το σημαντικότερο προνόμιο που συνήθως προσφέρεται στους εργαζομένους στην Ελλάδα;", + "en_question": "What is regarded as the most important perk typically offered to employees in your country?", + "annotations": [ + { + "answers": [ + "ασφάλιση", + "ασφαλιση" + ], + "en_answers": [ + "insurance" + ], + "count": 2 + }, + { + "answers": [ + "κοντινές διακοπές" + ], + "en_answers": [ + "short breaks" + ], + "count": 1 + }, + { + "answers": [ + "απολύτως κανένα", + "απολυτως κανενα" + ], + "en_answers": [ + "absolutely none" + ], + "count": 1 + }, + { + "answers": [ + "άδεια", + "αδεια" + ], + "en_answers": [ + "days off" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-22": { + "question": "Ποια ήταν η πιο καταστροφική οικονομική περίοδος για την Ελλάδα;", + "en_question": "What was the most catastrophic economic period for your country?", + "annotations": [ + { + "answers": [ + "η γερμανική κατοχή 1941-44" + ], + "en_answers": [ + "the german occupation 1941-44" + ], + "count": 1 + }, + { + "answers": [ + "2008" + ], + "en_answers": [ + "2008" + ], + "count": 1 + }, + { + "answers": [ + "2010" + ], + "en_answers": [ + "2010" + ], + "count": 1 + }, + { + "answers": [ + "μετά την επανάσταση του 1821" + ], + "en_answers": [ + "after the revolution of 1821" + ], + "count": 1 + }, + { + "answers": [ + "χούντα (1967-1974)" + ], + "en_answers": [ + "junta (1967-1974)" + ], + "count": 1 + }, + { + "answers": [ + "μετά τους ολυμπιακούς (2005-2011)" + ], + "en_answers": [ + "after the olympics (2005-2011)" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-24": { + "question": "Ποια περιοχή στην Ελλάδα αποτελεί κύριο κέντρο για τεχνικούς εργαζόμενους και νεοσύστατες επιχειρήσεις;", + "en_question": "What region in your country is a major hub for tech workers and start ups?", + "annotations": [ + { + "answers": [ + "αθήνα", + "αθηνα" + ], + "en_answers": [ + "athens" + ], + "count": 3 + }, + { + "answers": [ + "αττική" + ], + "en_answers": [ + "attica" + ], + "count": 1 + }, + { + "answers": [ + "ασπρόπυργος" + ], + "en_answers": [ + "aspropyrgos" + ], + "count": 1 + }, + { + "answers": [ + "μάνδρα" + ], + "en_answers": [ + "mandra" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-27": { + "question": "Ποια είναι η σημαντικότερη βιομηχανία στην Ελλάδα;", + "en_question": "What is the most important industry in your country?", + "annotations": [ + { + "answers": [ + "τουρισμός" + ], + "en_answers": [ + "tourism" + ], + "count": 4 + }, + { + "answers": [ + "ναυτιλία" + ], + "en_answers": [ + "shipping" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-35": { + "question": "Ποιο από τα καθημερινά γεύματα συνήθως μοιράζεται με τα μέλη της οικογένειας στην Ελλάδα; (π.χ. πρωινό, μεσημεριανό, δείπνο)", + "en_question": "Which one of the daily meals is commonly shared with family members in your country? (e.g., breakfast, lunch, dinner)", + "annotations": [ + { + "answers": [ + "μεσημεριανό", + "μεσημεριανο" + ], + "en_answers": [ + "lunch" + ], + "count": 4 + }, + { + "answers": [ + "δείπνο", + "δειπνο" + ], + "en_answers": [ + "dinner" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-36": { + "question": "Ποια είναι μια δημοφιλής οικογενειακή δραστηριότητα με ένα παιδί για τα σαββατοκύριακα στην Ελλάδα;", + "en_question": "What is a popular family activity with a child to do on weekends in your country?", + "annotations": [ + { + "answers": [ + "βόλτα", + "βολτα" + ], + "en_answers": [ + "stroll" + ], + "count": 1 + }, + { + "answers": [ + "κινηματογράφος", + "κινηματογραφος" + ], + "en_answers": [ + "cinema" + ], + "count": 1 + }, + { + "answers": [ + "παιδική χαρά" + ], + "en_answers": [ + "playground" + ], + "count": 1 + }, + { + "answers": [ + "δείπνο σε εστιατόριο" + ], + "en_answers": [ + "dinner at a restaurant" + ], + "count": 1 + }, + { + "answers": [ + "εκδρομή με το αυτοκίνιητο" + ], + "en_answers": [ + "car trip" + ], + "count": 1 + }, + { + "answers": [ + "δείπνο στο σπίτι με την ευρύτερη οικογένεια" + ], + "en_answers": [ + "dinner at home with the extended family" + ], + "count": 1 + }, + { + "answers": [ + "πάρκο", + "παρκο" + ], + "en_answers": [ + "park" + ], + "count": 1 + }, + { + "answers": [ + "αθλητισμός" + ], + "en_answers": [ + "sports" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-37": { + "question": "Σε ποια ηλικία τα παιδιά συνήθως γίνονται ανεξάρτητα από τους γονείς τους στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς, π.χ., 12.)", + "en_question": "At what age do children typically become independent from their parents in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 2 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 2 + }, + { + "answers": [ + "19" + ], + "en_answers": [ + "19" + ], + "count": 1 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + }, + { + "answers": [ + "28" + ], + "en_answers": [ + "28" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-38": { + "question": "Ποια είναι η σημαντικότερη οικογενειακή εορτή στην Ελλάδα;", + "en_question": "What is the most important family holiday in your country?", + "annotations": [ + { + "answers": [ + "χριστούγεννα" + ], + "en_answers": [ + "christmas" + ], + "count": 4 + }, + { + "answers": [ + "πάσχα", + "πασχα" + ], + "en_answers": [ + "easter" + ], + "count": 3 + }, + { + "answers": [ + "πρωτοχρονιά", + "πρωτοχρονια" + ], + "en_answers": [ + "new year's day" + ], + "count": 2 + }, + { + "answers": [ + "γιορτή της μητέρας" + ], + "en_answers": [ + "mother's day" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-39": { + "question": "Ποιο είναι ένα δημοφιλές οικογενειακό παιχνίδι στην Ελλάδα;", + "en_question": "What is a popular family game in your country?", + "annotations": [ + { + "answers": [ + "monopoly", + "μονόπολη" + ], + "en_answers": [ + "monopoly" + ], + "count": 3 + }, + { + "answers": [ + "uno" + ], + "en_answers": [ + "uno" + ], + "count": 2 + }, + { + "answers": [ + "χαρτιά" + ], + "en_answers": [ + "card games" + ], + "count": 1 + }, + { + "answers": [ + "τάβλι" + ], + "en_answers": [ + "backgammon" + ], + "count": 1 + }, + { + "answers": [ + "γκρινιάρης", + "γκρινιαρης" + ], + "en_answers": [ + "ludo" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Th-en-41": { + "question": "Ποια είναι η μέση ηλικία για τα ζευγάρια να αποκτήσουν το πρώτο τους παιδί στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 20).)", + "en_question": "What is the average age for couples to have their first child in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 3 + }, + { + "answers": [ + "27" + ], + "en_answers": [ + "27" + ], + "count": 1 + }, + { + "answers": [ + "32" + ], + "en_answers": [ + "32" + ], + "count": 1 + }, + { + "answers": [ + "29" + ], + "en_answers": [ + "29" + ], + "count": 1 + }, + { + "answers": [ + "35" + ], + "en_answers": [ + "35" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-43": { + "question": "Πόσα αυτοκίνητα έχει μια τυπική οικογένεια στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 12).)", + "en_question": "How many cars are owned by a typical family in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 3 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-44": { + "question": "Ποιο είναι το πιο δημοφιλές φαγητό στην Ελλάδα για οικογενειακά γεύματα τα σαββατοκύριακα;", + "en_question": "What is your country's most popular food for family meals on weekends?", + "annotations": [ + { + "answers": [ + "παστίτσιο", + "παστιτσιο" + ], + "en_answers": [ + "pastitsio" + ], + "count": 3 + }, + { + "answers": [ + "μουσακάς" + ], + "en_answers": [ + "moussaka" + ], + "count": 1 + }, + { + "answers": [ + "σουβλάκια", + "σουβλάκι" + ], + "en_answers": [ + "souvlaki" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-45": { + "question": "Ποια είναι η πιο δημοφιλής οικογενειακή δραστηριότητα τα βράδια καθημερινών στην Ελλάδα;", + "en_question": "What is the most popular weekday evening family activity in your country?", + "annotations": [ + { + "answers": [ + "τηλεόραση", + "τηλεοραση" + ], + "en_answers": [ + "television" + ], + "count": 5 + }, + { + "answers": [ + "φαγητό", + "φαγητο", + "γεύμα", + "μεσημεριανό", + "δείπνο" + ], + "en_answers": [ + "food" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-48": { + "question": "Ποιος είναι ο υψηλότερος βαθμός που δίνεται στους κορυφαίους μαθητές του λυκείου σε εργασίες και εξετάσεις στην Ελλάδα;", + "en_question": "What is the highest grade given to top-achieving high school students on assignments and exams in your country?", + "annotations": [ + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 4 + }, + { + "answers": [ + "100" + ], + "en_answers": [ + "100" + ], + "count": 1 + }, + { + "answers": [ + "αριστούχος" + ], + "en_answers": [ + "top student" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-49": { + "question": "Ποια θεωρείται η σημαντικότερη εξέταση για τους μαθητές λυκείου στην Ελλάδα;", + "en_question": "What is considered the most important exam for high school students in your country?", + "annotations": [ + { + "answers": [ + "πανελλήνιες", + "πανελλαδικες εξετασεις", + "πανελλήνιες τρίτης λυκείου", + "πανελληνιες τριτης λυκειου", + "πανελλήνιες εξετάσεις" + ], + "en_answers": [ + "national exams", + "national exams of third grade of high school" + ], + "count": 4 + }, + { + "answers": [ + "μαθηματικά" + ], + "en_answers": [ + "mathematics" + ], + "count": 1 + }, + { + "answers": [ + "ιστορία" + ], + "en_answers": [ + "history" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-51": { + "question": "Ποιο μάθημα θεωρείται το σημαντικότερο για τους μαθητές στην Ελλάδα;", + "en_question": "Which subject is considered the most important for students in your country?", + "annotations": [ + { + "answers": [ + "μαθηματικά", + "μαθήματα" + ], + "en_answers": [ + "mathematics" + ], + "count": 4 + }, + { + "answers": [ + "γλώσσα" + ], + "en_answers": [ + "language" + ], + "count": 2 + }, + { + "answers": [ + "φυσική", + "φυσικη" + ], + "en_answers": [ + "physics" + ], + "count": 2 + }, + { + "answers": [ + "ιστορία" + ], + "en_answers": [ + "history" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-53": { + "question": "Ποια είναι η πιο δημοφιλής εξωσχολική κοινωνική εκδήλωση στα σχολεία στην Ελλάδα;", + "en_question": "What is the most popular extracurricular social event at schools in your country?", + "annotations": [ + { + "answers": [ + "ξενάγηση στον παρθενώνα" + ], + "en_answers": [ + "tour of the parthenon" + ], + "count": 1 + }, + { + "answers": [ + "πανηγύρι" + ], + "en_answers": [ + "festival" + ], + "count": 1 + }, + { + "answers": [ + "σινεμά" + ], + "en_answers": [ + "cinema" + ], + "count": 1 + }, + { + "answers": [ + "θέατρο" + ], + "en_answers": [ + "theater" + ], + "count": 1 + }, + { + "answers": [ + "εκδρομές" + ], + "en_answers": [ + "excursions" + ], + "count": 1 + }, + { + "answers": [ + "σχολικές γιορτές" + ], + "en_answers": [ + "school celebrations" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Th-en-58": { + "question": "Ποιο είναι το πιο προχωρημένο μάθημα μαθηματικών που διδάσκεται πριν το πανεπιστήμιο στην Ελλάδα;", + "en_question": "What is the most advanced math subject learned before university in your country?", + "annotations": [ + { + "answers": [ + "ολοκληρώματα", + "ολοκληρωματα" + ], + "en_answers": [ + "integrals" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-01": { + "question": "Πού συνήθως πηγαίνουν οι φοιτητές στην Ελλάδα για να διαβάσουν για τις τελικές εξετάσεις τους;", + "en_question": "Where do university students in your country usually go to study for their final exams?", + "annotations": [ + { + "answers": [ + "βιβλιοθήκη", + "βιβλιοθηκη" + ], + "en_answers": [ + "library" + ], + "count": 2 + }, + { + "answers": [ + "σπίτι", + "σπιτι" + ], + "en_answers": [ + "house" + ], + "count": 2 + }, + { + "answers": [ + "φροντιστήριο" + ], + "en_answers": [ + "tutorial center" + ], + "count": 1 + }, + { + "answers": [ + "βιβλιοθήκες σχολών" + ], + "en_answers": [ + "school libraries" + ], + "count": 1 + }, + { + "answers": [ + "αίθουσα μελέτης", + "αιθουσα μελετης", + "αναγνωστήριο" + ], + "en_answers": [ + "study room" + ], + "count": 1 + }, + { + "answers": [ + "καφετέριες", + "καφετεριες" + ], + "en_answers": [ + "cafes" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-02": { + "question": "Ποιο είναι ένα κοινό μέσο δημόσιας μεταφοράς που χρησιμοποιούν οι άνθρωποι για να πάνε στο πανεπιστήμιο στην Ελλάδα;", + "en_question": "What is a common public transport that people use to go to university in your country?", + "annotations": [ + { + "answers": [ + "αστικό λεωφορείο", + "λεωφορείο", + "αστικό" + ], + "en_answers": [ + "city bus", + "bus", + "urban" + ], + "count": 5 + }, + { + "answers": [ + "μετρό" + ], + "en_answers": [ + "metro" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-04": { + "question": "Τι συνήθως κάνουν οι μαθητές του δημοτικού στην Ελλάδα μετά το σχολείο;", + "en_question": "What do elementary students in your country usually do after school?", + "annotations": [ + { + "answers": [ + "γυρίζουν σπίτι για φαγητό", + "γυριζουν σπιτι για φαγητο", + "τρώνε" + ], + "en_answers": [ + "return home for food", + "eat" + ], + "count": 2 + }, + { + "answers": [ + "παίζουν" + ], + "en_answers": [ + "play" + ], + "count": 1 + }, + { + "answers": [ + "σπίτι" + ], + "en_answers": [ + "house" + ], + "count": 1 + }, + { + "answers": [ + "πάνε για παιχνίδι" + ], + "en_answers": [ + "go for a game" + ], + "count": 1 + }, + { + "answers": [ + "εξωσχολικές δραστηριότητες", + "εξωσχολικές δραστηριότητες (αγγλικά" + ], + "en_answers": [ + "extracurricular activities" + ], + "count": 1 + }, + { + "answers": [ + "αγγλικά", + "εξωσχολικές δραστηριότητες (αγγλικά" + ], + "en_answers": [ + "study english" + ], + "count": 1 + }, + { + "answers": [ + "χορός" + ], + "en_answers": [ + "dance" + ], + "count": 1 + }, + { + "answers": [ + "άθληση" + ], + "en_answers": [ + "exercise" + ], + "count": 1 + }, + { + "answers": [ + "μουσική", + "μουσική)" + ], + "en_answers": [ + "music)" + ], + "count": 1 + }, + { + "answers": [ + "διαβάζουν στο σπίτι" + ], + "en_answers": [ + "they read at home" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + } +} \ No newline at end of file diff --git a/data/annotations/Indonesia_data.json b/data/annotations/Indonesia_data.json new file mode 100644 index 0000000000000000000000000000000000000000..1c931eea8ee58a3038dc8075306417f2cb12f4cc --- /dev/null +++ b/data/annotations/Indonesia_data.json @@ -0,0 +1,25920 @@ +{ + "Al-en-01": { + "question": "Apa camilan umum untuk anak-anak TK di Indonesia?", + "en_question": "What is a common snack for preschool kids in your country?", + "annotations": [ + { + "answers": [ + "choki-choki", + "coklat", + "cokelat" + ], + "en_answers": [ + "choki-choki", + "chocolate paste", + "chocolate" + ], + "count": 2 + }, + { + "answers": [ + "keripik" + ], + "en_answers": [ + "chips" + ], + "count": 1 + }, + { + "answers": [ + "telur gulung" + ], + "en_answers": [ + "indonesian egg roll" + ], + "count": 1 + }, + { + "answers": [ + "momogi", + "wafer stik" + ], + "en_answers": [ + "momogi", + "wafer roll", + "wafer stick" + ], + "count": 1 + }, + { + "answers": [ + "kue cubit" + ], + "en_answers": [ + "kue cubit", + "cubit cake", + "indonesian mini pancake" + ], + "count": 1 + }, + { + "answers": [ + "biskuit", + "biscuit" + ], + "en_answers": [ + "biscuit" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-02": { + "question": "Apa makanan populer yang cocok disantap bersama bir di Indonesia?", + "en_question": "What is a popular food to go with beer in your country?", + "annotations": [ + { + "answers": [ + "kacang" + ], + "en_answers": [ + "peanut" + ], + "count": 2 + }, + { + "answers": [ + "ikan bakar" + ], + "en_answers": [ + "grilled fish" + ], + "count": 1 + }, + { + "answers": [ + "sate ayam" + ], + "en_answers": [ + "satay", + "chicken satay" + ], + "count": 1 + }, + { + "answers": [ + "nasi goreng" + ], + "en_answers": [ + "fried rice" + ], + "count": 1 + }, + { + "answers": [ + "ayam goreng" + ], + "en_answers": [ + "fried chicken" + ], + "count": 1 + }, + { + "answers": [ + "gorengan", + "gorengan (ayam" + ], + "en_answers": [ + "fritters" + ], + "count": 1 + }, + { + "answers": [ + "tempe", + "tempe goreng" + ], + "en_answers": [ + "tempeh", + "fried tempeh" + ], + "count": 1 + }, + { + "answers": [ + "tahu", + "tahu)", + "tahu goreng" + ], + "en_answers": [ + "tofu", + "fried tofu" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Al-en-04": { + "question": "Buah apa yang paling populer di Indonesia?", + "en_question": "What is the most popular fruit in your country?", + "annotations": [ + { + "answers": [ + "durian" + ], + "en_answers": [ + "durian" + ], + "count": 4 + }, + { + "answers": [ + "mangga" + ], + "en_answers": [ + "mango" + ], + "count": 3 + }, + { + "answers": [ + "rambutan" + ], + "en_answers": [ + "rambutan" + ], + "count": 2 + }, + { + "answers": [ + "kelapa" + ], + "en_answers": [ + "coconut" + ], + "count": 1 + }, + { + "answers": [ + "pisang" + ], + "en_answers": [ + "banana" + ], + "count": 1 + }, + { + "answers": [ + "klengkeng", + "lengkeng", + "kelengkeng", + "mata kucing" + ], + "en_answers": [ + "longan" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-06": { + "question": "Apa makanan kantin sekolah yang umum di Indonesia?", + "en_question": "What is a common school cafeteria food in your country?", + "annotations": [ + { + "answers": [ + "nasi goreng" + ], + "en_answers": [ + "fried rice" + ], + "count": 2 + }, + { + "answers": [ + "mi goreng", + "mie goreng" + ], + "en_answers": [ + "fried noodle" + ], + "count": 2 + }, + { + "answers": [ + "roti bakar" + ], + "en_answers": [ + "toast" + ], + "count": 1 + }, + { + "answers": [ + "nasi campur" + ], + "en_answers": [ + "mixed rice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-08": { + "question": "Apa saja camilan yang paling sering dimakan di pusat perbelanjaan di Indonesia?", + "en_question": "What are the most commonly eaten snacks at shopping malls in your country?", + "annotations": [ + { + "answers": [ + "gorengan" + ], + "en_answers": [ + "fritters" + ], + "count": 1 + }, + { + "answers": [ + "kacang goreng" + ], + "en_answers": [ + "fried peanut" + ], + "count": 1 + }, + { + "answers": [ + "kentang goreng" + ], + "en_answers": [ + "french fries", + "chips" + ], + "count": 1 + }, + { + "answers": [ + "roti" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "es krim" + ], + "en_answers": [ + "ice cream" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Al-en-09": { + "question": "Apa camilan populer di taman hiburan di Indonesia?", + "en_question": "What is a popular snack at an amusement park in your country?", + "annotations": [ + { + "answers": [ + "popcorn", + "brondong jagung", + "berondong jagung" + ], + "en_answers": [ + "popcorn" + ], + "count": 1 + }, + { + "answers": [ + "popmie" + ], + "en_answers": [ + "popmie", + "instant noodle" + ], + "count": 1 + }, + { + "answers": [ + "es krim" + ], + "en_answers": [ + "ice cream" + ], + "count": 1 + }, + { + "answers": [ + "gulali" + ], + "en_answers": [ + "cotton candy" + ], + "count": 1 + }, + { + "answers": [ + "keripik singkong" + ], + "en_answers": [ + "cassava chips" + ], + "count": 1 + }, + { + "answers": [ + "pisang goreng" + ], + "en_answers": [ + "fried banana", + "banana fritters" + ], + "count": 1 + }, + { + "answers": [ + "kentang goreng" + ], + "en_answers": [ + "french fries", + "chips" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Al-en-16": { + "question": "Pada usia berapa anak-anak mulai masuk taman kanak-kanak di Indonesia? (Berikan angka Arab (misalnya, 12) saja.)", + "en_question": "At what age do kids start preschool in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 3 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-17": { + "question": "Apa olahraga populer setelah sekolah untuk siswa sekolah dasar (SD) di Indonesia?", + "en_question": "What is a popular afterschool sport for elementary schools in your country?", + "annotations": [ + { + "answers": [ + "basket", + "bola basket" + ], + "en_answers": [ + "basketball" + ], + "count": 3 + }, + { + "answers": [ + "estafet" + ], + "en_answers": [ + "relay race" + ], + "count": 1 + }, + { + "answers": [ + "sepak bola" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "badminton", + "bulu tangkis", + "bulutangkis" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "futsal" + ], + "en_answers": [ + "futsal" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-18": { + "question": "Untuk mata pelajaran apa siswa sekolah dasar di Indonesia mendapatkan pendidikan privat?", + "en_question": "For which subject do elementary students get private education in your country?", + "annotations": [ + { + "answers": [ + "matematika" + ], + "en_answers": [ + "mathematics" + ], + "count": 5 + }, + { + "answers": [ + "bahasa inggris" + ], + "en_answers": [ + "english" + ], + "count": 2 + }, + { + "answers": [ + "sains", + "ipa", + "ilmu pengetahuan alam" + ], + "en_answers": [ + "science" + ], + "count": 2 + }, + { + "answers": [ + "bahasa asing" + ], + "en_answers": [ + "foreign language" + ], + "count": 1 + }, + { + "answers": [ + "musik" + ], + "en_answers": [ + "music" + ], + "count": 1 + }, + { + "answers": [ + "menggambar" + ], + "en_answers": [ + "drawing", + "art" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-19": { + "question": "Apa bahasa kedua yang populer bagi siswa SMA di Indonesia?", + "en_question": "What is a popular second language for high school students in your country?", + "annotations": [ + { + "answers": [ + "bahasa inggris", + "inggris" + ], + "en_answers": [ + "english" + ], + "count": 5 + }, + { + "answers": [ + "bahasa mandarin", + "mandarin" + ], + "en_answers": [ + "mandarin (chinese)" + ], + "count": 3 + }, + { + "answers": [ + "bahasa jepang", + "jepang" + ], + "en_answers": [ + "japanese" + ], + "count": 1 + }, + { + "answers": [ + "bahasa arab", + "arab" + ], + "en_answers": [ + "arabic" + ], + "count": 1 + }, + { + "answers": [ + "korea", + "bahasa korea" + ], + "en_answers": [ + "korean" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-21": { + "question": "Mata pelajaran apa yang paling penting untuk pendidikan bagi siswa berbakat di Indonesia?", + "en_question": "Which subject is the most important for gifted education in your country?", + "annotations": [ + { + "answers": [ + "matematika" + ], + "en_answers": [ + "mathematics" + ], + "count": 5 + }, + { + "answers": [ + "fisika" + ], + "en_answers": [ + "physics" + ], + "count": 3 + }, + { + "answers": [ + "kimia" + ], + "en_answers": [ + "chemistry" + ], + "count": 3 + }, + { + "answers": [ + "sains", + "ipa", + "ilmu pengetahuan alam" + ], + "en_answers": [ + "science" + ], + "count": 1 + }, + { + "answers": [ + "bahasa asing" + ], + "en_answers": [ + "foreign language" + ], + "count": 1 + }, + { + "answers": [ + "olahraga" + ], + "en_answers": [ + "sport" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-32": { + "question": "Apa hidangan utama untuk perayaan Thanksgiving di Indonesia?", + "en_question": "What is the main dish for Thanksgiving in your country?", + "annotations": [ + { + "answers": [ + "ayam kalkun", + "kalkun" + ], + "en_answers": [ + "turkey" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-33": { + "question": "Apa yang dilakukan orang-orang untuk merayakan Halloween di Indonesia?", + "en_question": "What do people do to celebrate Halloween in your country?", + "annotations": [ + { + "answers": [ + "pakai kostum" + ], + "en_answers": [ + "wear a costume" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-34": { + "question": "Apa yang dilakukan orang-orang untuk merayakan Hari Tahun Baru di Indonesia?", + "en_question": "What do people do to celebrate New Year's Day in your country?", + "annotations": [ + { + "answers": [ + "menyalakan kembang api", + "kembang api", + "menyalakan petasan", + "main kembang api", + "main mercon", + "main petasan", + "menyalakan mercon" + ], + "en_answers": [ + "set off fireworks", + "play with fireworks", + "play with firecrackers" + ], + "count": 5 + }, + { + "answers": [ + "bakar ikan", + "membakar ikan" + ], + "en_answers": [ + "grill a fish" + ], + "count": 1 + }, + { + "answers": [ + "bakar ayam", + "ayam", + "membakar ayam" + ], + "en_answers": [ + "grill a chicken" + ], + "count": 1 + }, + { + "answers": [ + "makan bersama keluarga" + ], + "en_answers": [ + "eat with family", + "eat together with family" + ], + "count": 1 + }, + { + "answers": [ + "berkumpul" + ], + "en_answers": [ + "gather" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-35": { + "question": "Apa yang dilakukan orang-orang untuk merayakan Natal di Indonesia?", + "en_question": "What do people do to celebrate Christmas in your country?", + "annotations": [ + { + "answers": [ + "makan bersama", + "makan malam bersama keluarga", + "makan bersama keluarga" + ], + "en_answers": [ + "eat together", + "dinner with family", + "family dinner", + "eat with family", + "eat together with family" + ], + "count": 3 + }, + { + "answers": [ + "ibadah", + "beribadah di gereja" + ], + "en_answers": [ + "pray", + "worship", + "pray at church", + "worship at church" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Al-en-36": { + "question": "Makanan apa yang dikaitkan dengan Halloween di Indonesia?", + "en_question": "What food is associated with Halloween in your country?", + "annotations": [ + { + "answers": [ + "permen" + ], + "en_answers": [ + "candy" + ], + "count": 2 + }, + { + "answers": [ + "labu" + ], + "en_answers": [ + "pumpkin" + ], + "count": 1 + }, + { + "answers": [ + "coklat", + "cokelat" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-37": { + "question": "Makanan apa yang dikaitkan dengan Natal di Indonesia?", + "en_question": "What food is associated with Christmas in your country?", + "annotations": [ + { + "answers": [ + "kue kering" + ], + "en_answers": [ + "cookie", + "biscuit" + ], + "count": 3 + }, + { + "answers": [ + "kue jahe" + ], + "en_answers": [ + "gingerbread" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Al-en-38": { + "question": "Makanan apa yang dikaitkan dengan hari Valentine di Indonesia?", + "en_question": "What food is associated with Valentine's day in your country?", + "annotations": [ + { + "answers": [ + "coklat", + "cokelat" + ], + "en_answers": [ + "chocolate" + ], + "count": 5 + }, + { + "answers": [ + "kue tart" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "es krim" + ], + "en_answers": [ + "ice cream" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-39": { + "question": "Apa yang biasanya orang makan di hari ulang tahun mereka di Indonesia?", + "en_question": "What do people eat on their birthday in your country?", + "annotations": [ + { + "answers": [ + "bakmi", + "mie goreng", + "mie", + "mi goreng", + "mi" + ], + "en_answers": [ + "noodle", + "indonesian noodle", + "fried noodle" + ], + "count": 3 + }, + { + "answers": [ + "kue ulang tahun", + "kue tart" + ], + "en_answers": [ + "birthday cake", + "cake" + ], + "count": 1 + }, + { + "answers": [ + "nasi kuning" + ], + "en_answers": [ + "yellow rice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-40": { + "question": "Apa tempat luar ruangan yang populer bagi keluarga untuk bersenang-senang bersama anak-anak kecil di Indonesia?", + "en_question": "What is a popular outdoor place for families to have fun with little kids in your country?", + "annotations": [ + { + "answers": [ + "pantai" + ], + "en_answers": [ + "beach" + ], + "count": 3 + }, + { + "answers": [ + "kolam renang" + ], + "en_answers": [ + "swimming pool" + ], + "count": 1 + }, + { + "answers": [ + "taman" + ], + "en_answers": [ + "park" + ], + "count": 1 + }, + { + "answers": [ + "taman hiburan" + ], + "en_answers": [ + "amusement park" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Al-en-43": { + "question": "Apa kegiatan dalam ruangan yang populer untuk keluarga di Indonesia?", + "en_question": "What is a popular indoor activity for families in your country?", + "annotations": [ + { + "answers": [ + "menonton tv", + "nonton tv bersama", + "nonton tv", + "menonton tv bersama" + ], + "en_answers": [ + "watching tv", + "warching tv together", + "watch tv together", + "watch tv" + ], + "count": 4 + }, + { + "answers": [ + "makan", + "makan bersama" + ], + "en_answers": [ + "eat", + "eating", + "eat together", + "eating together" + ], + "count": 2 + }, + { + "answers": [ + "reuni keluarga besar", + "kumpul keluarga besar" + ], + "en_answers": [ + "big family reunion", + "extended family reunion", + "big family gathering", + "extended family gathering" + ], + "count": 1 + }, + { + "answers": [ + "ulang tahun" + ], + "en_answers": [ + "birthday" + ], + "count": 1 + }, + { + "answers": [ + "pernikahan", + "perkawinan" + ], + "en_answers": [ + "wedding" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-02": { + "question": "Di mana mahasiswa universitas makan siang di Indonesia?", + "en_question": "Where do university students have lunch in your country?", + "annotations": [ + { + "answers": [ + "kantin", + "di kantin" + ], + "en_answers": [ + "canteen", + "cafeteria" + ], + "count": 4 + }, + { + "answers": [ + "warung", + "di warung" + ], + "en_answers": [ + "stall", + "food stall" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-03": { + "question": "Bulan berapa biasanya jadwal ujian akhir semester di sekolah menengah atas di Indonesia? (Berikan hanya angka Arab (1~12).)", + "en_question": "Which month is the final exam term usually scheduled at high schools in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 3 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "11" + ], + "en_answers": [ + "11" + ], + "count": 1 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-08": { + "question": "Berapa jam dalam sehari biasanya siswa di Indonesia menghabiskan waktu di sekolah menengah atas? (Gunakan angka Arab dalam bilangan bulat (0~24), tanpa titik desimal.)", + "en_question": "How many hours a day do students in your country usually spend at high school? (Provide Arabic numerals in integers (0~24), without any decimal points.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 3 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 2 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-09": { + "question": "Berapa banyak bahasa yang dipelajari oleh siswa di sekolah menengah atas di Indonesia? (Berikan angka Arab (misalnya, 5) saja.)", + "en_question": "How many languages do students study at high school in your country? (Provide Arabic numerals (e.g., 5) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 4 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-34": { + "question": "Apa olahraga tim paling populer yang dimainkan di sekolah-sekolah di Indonesia?", + "en_question": "What is the most popular sport played in a team at school in your country?", + "annotations": [ + { + "answers": [ + "sepak bola", + "sepakbola" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "bola basket", + "basket" + ], + "en_answers": [ + "basketball" + ], + "count": 3 + }, + { + "answers": [ + "bola voli", + "voli" + ], + "en_answers": [ + "voleyball" + ], + "count": 1 + }, + { + "answers": [ + "bulutangkis", + "bulu tangkis", + "badminton" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-35": { + "question": "Siapa komentator olahraga paling populer di Indonesia?", + "en_question": "Who is the most popular sport commentator in your country?", + "annotations": [ + { + "answers": [ + "valentino simanjuntak", + "bung jebret", + "bang valen", + "bang valent", + "valentino" + ], + "en_answers": [ + "valentino simanjuntak" + ], + "count": 1 + }, + { + "answers": [ + "sambas", + "sambas mangundikarta", + "bung sambas" + ], + "en_answers": [ + "sambas" + ], + "count": 1 + } + ], + "idks": { + "idk": 7, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-36": { + "question": "Apa tim olahraga paling populer di Indonesia?", + "en_question": "What is the most popular sport team in your country?", + "annotations": [ + { + "answers": [ + "persija", + "persija jakarta" + ], + "en_answers": [ + "persija" + ], + "count": 3 + }, + { + "answers": [ + "tim nasional badminton", + "badminton/bulu tangkis", + "tim nasional bulu tangkis", + "tim nasional bulutangkis", + "timnas badminton", + "timnas bulu tangkis", + "timnas bulutangkis" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "tim nasional sepak bola", + "sepak bola", + "timnas sepak bola" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "bali united" + ], + "en_answers": [ + "bali united" + ], + "count": 1 + }, + { + "answers": [ + "arema", + "arema malang" + ], + "en_answers": [ + "arema" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-43": { + "question": "Apa saja tempat atau lokasi umum di mana orang-orang di Indonesia biasanya berkumpul untuk menonton siaran olahraga?", + "en_question": "What are the common places or venues where individuals in your country usually gather to watch sports broadcasts?", + "annotations": [ + { + "answers": [ + "kedai", + "warung" + ], + "en_answers": [ + "shop", + "stall", + "food stall" + ], + "count": 2 + }, + { + "answers": [ + "kedai kopi", + "cafe", + "kafe" + ], + "en_answers": [ + "cafe" + ], + "count": 2 + }, + { + "answers": [ + "pendopo" + ], + "en_answers": [ + "pavilion" + ], + "count": 1 + }, + { + "answers": [ + "lapangan" + ], + "en_answers": [ + "field" + ], + "count": 1 + }, + { + "answers": [ + "rumah warga" + ], + "en_answers": [ + "house", + "residential house" + ], + "count": 1 + }, + { + "answers": [ + "pos kamling" + ], + "en_answers": [ + "security post" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ca-sp-05": { + "question": "Berapa kali makan dalam sehari yang biasanya dilakukan oleh orang Indonesia? (Berikan angka numerik Arab saja (contoh, 5).)", + "en_question": "How many meals per day do people from your country usually have? (Provide Arabic numerals (e.g., 5) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-06": { + "question": "Manakah waktu makan yang paling penting dalam sehari bagi orang-orang Indonesia?", + "en_question": "Which is the most important meal of the day to people from your country?", + "annotations": [ + { + "answers": [ + "makan siang" + ], + "en_answers": [ + "lunch" + ], + "count": 3 + }, + { + "answers": [ + "sarapan", + "makan pagi" + ], + "en_answers": [ + "breakfast" + ], + "count": 3 + }, + { + "answers": [ + "makan malam" + ], + "en_answers": [ + "dinner" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ca-sp-08": { + "question": "Apa bahan makanan yang paling sering digunakan dalam diet masyarakat Indonesia?", + "en_question": "What is the most common ingredient used in your country's diet?", + "annotations": [ + { + "answers": [ + "beras", + "nasi" + ], + "en_answers": [ + "rice" + ], + "count": 3 + }, + { + "answers": [ + "nasi merah" + ], + "en_answers": [ + "brown rice" + ], + "count": 1 + }, + { + "answers": [ + "roti" + ], + "en_answers": [ + "bread" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ca-sp-09": { + "question": "Apa yang biasanya dimakan orang Indonesia untuk makanan penutup?", + "en_question": "What do people from your country usually eat for dessert?", + "annotations": [ + { + "answers": [ + "cendol" + ], + "en_answers": [ + "cendol" + ], + "count": 2 + }, + { + "answers": [ + "buah-buahan" + ], + "en_answers": [ + "fruits" + ], + "count": 1 + }, + { + "answers": [ + "es teler" + ], + "en_answers": [ + "es teler" + ], + "count": 1 + }, + { + "answers": [ + "sup" + ], + "en_answers": [ + "soup" + ], + "count": 1 + }, + { + "answers": [ + "makanan manis" + ], + "en_answers": [ + "sweets" + ], + "count": 1 + }, + { + "answers": [ + "es krim" + ], + "en_answers": [ + "ice cream" + ], + "count": 1 + }, + { + "answers": [ + "puding", + "pudding" + ], + "en_answers": [ + "pudding" + ], + "count": 1 + }, + { + "answers": [ + "es campur" + ], + "en_answers": [ + "es campur" + ], + "count": 1 + }, + { + "answers": [ + "martabak manis" + ], + "en_answers": [ + "sweet martabak", + "indonesian sweet pancake" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-11": { + "question": "Hari apa dalam seminggu orang biasanya mengadakan makan bersama keluarga di Indonesia?", + "en_question": "Which day of the week do people usually organize a family meal in your country?", + "annotations": [ + { + "answers": [ + "sabtu" + ], + "en_answers": [ + "saturday" + ], + "count": 3 + }, + { + "answers": [ + "minggu" + ], + "en_answers": [ + "sunday" + ], + "count": 3 + }, + { + "answers": [ + "jumat" + ], + "en_answers": [ + "friday" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ca-sp-14": { + "question": "Minuman panas apa yang paling populer di Indonesia?", + "en_question": "Which is the most popular hot drink in your country?", + "annotations": [ + { + "answers": [ + "kopi" + ], + "en_answers": [ + "coffee" + ], + "count": 4 + }, + { + "answers": [ + "teh", + "teh panas" + ], + "en_answers": [ + "tea", + "hot tea" + ], + "count": 4 + }, + { + "answers": [ + "sekoteng" + ], + "en_answers": [ + "sekoteng" + ], + "count": 1 + }, + { + "answers": [ + "teh jahe" + ], + "en_answers": [ + "ginger tea" + ], + "count": 1 + }, + { + "answers": [ + "bandrek" + ], + "en_answers": [ + "bandrek" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-19": { + "question": "Apa yang biasanya diminum oleh anak muda dari Indonesia di klub malam?", + "en_question": "What do young people from your country usually drink at the night club?", + "annotations": [ + { + "answers": [ + "bir" + ], + "en_answers": [ + "beer" + ], + "count": 3 + }, + { + "answers": [ + "anggur" + ], + "en_answers": [ + "wine" + ], + "count": 1 + }, + { + "answers": [ + "alkohol" + ], + "en_answers": [ + "alcohol" + ], + "count": 1 + }, + { + "answers": [ + "vodka" + ], + "en_answers": [ + "vodka" + ], + "count": 1 + }, + { + "answers": [ + "soju" + ], + "en_answers": [ + "soju" + ], + "count": 1 + }, + { + "answers": [ + "shots" + ], + "en_answers": [ + "shots" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-21": { + "question": "Pada bulan apa orang biasanya mengambil liburan di Indonesia? (Berikan angka Arab (1~12) saja.)", + "en_question": "At which month do people usually take holidays in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 3 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ca-sp-29": { + "question": "Apa tradisi yang ada di Indonesia untuk Malam Tahun Baru?", + "en_question": "What tradition is there in your country for New Year's Eve?", + "annotations": [ + { + "answers": [ + "main kembang api", + "petasan", + "kembang api", + "menyalakan kembang api", + "main petasan", + "menyalakan petasan" + ], + "en_answers": [ + "play with fireworks", + "set off fireworks", + "firecrackers", + "play with firecrackers", + "set off firecrackers", + "fireworks" + ], + "count": 3 + }, + { + "answers": [ + "barbecue", + "bakar-bakar", + "bakar bakar", + "membakar", + "memanggang" + ], + "en_answers": [ + "barbecue", + "grilling", + "barbecuing" + ], + "count": 2 + }, + { + "answers": [ + "bergadang" + ], + "en_answers": [ + "stay up late" + ], + "count": 1 + }, + { + "answers": [ + "nongkrong" + ], + "en_answers": [ + "hang out" + ], + "count": 1 + }, + { + "answers": [ + "berkumpul dengan keluarga" + ], + "en_answers": [ + "gather with family" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-38": { + "question": "Apa jenis rumah yang biasa untuk sebuah keluarga di Indonesia?", + "en_question": "Which is the typical type of house for a family in your country?", + "annotations": [ + { + "answers": [ + "rumah tapak" + ], + "en_answers": [ + "house", + "landed house" + ], + "count": 2 + }, + { + "answers": [ + "ruko" + ], + "en_answers": [ + "shophouse" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ca-sp-41": { + "question": "Di mana para lansia yang membutuhkan bantuan biasanya tinggal di Indonesia?", + "en_question": "Where do the dependent elderly usually live in your country?", + "annotations": [ + { + "answers": [ + "panti jompo", + "rumah jompo", + "panti lansia", + "posyandu lanjut usia" + ], + "en_answers": [ + "nursing home" + ], + "count": 3 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ca-sp-42": { + "question": "Berapa lama (dalam minggu) cuti hamil di Indonesia untuk ibu? (Hanya berikan angka Arab (misalnya, 20).)", + "en_question": "How long (in weeks) is your country's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 3 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "13" + ], + "en_answers": [ + "13" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-43": { + "question": "Berapa lama (dalam minggu) cuti paternitas di Indonesia untuk ayah? (Hanya berikan angka Arab (misalnya, 20).)", + "en_question": "How long (in weeks) is your country's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 2, + "not-applicable": 0 + } + }, + "Ca-sp-45": { + "question": "Jenis destinasi apa yang biasanya dipilih untuk liburan keluarga di Indonesia?", + "en_question": "What type of destination is commonly chosen for a family vacation in your country?", + "annotations": [ + { + "answers": [ + "pantai", + "pantai (bali" + ], + "en_answers": [ + "beach" + ], + "count": 3 + }, + { + "answers": [ + "pegunungan", + "puncak" + ], + "en_answers": [ + "mountain" + ], + "count": 2 + }, + { + "answers": [ + "taman bermain anak" + ], + "en_answers": [ + "children's playground" + ], + "count": 1 + }, + { + "answers": [ + "pulang kampung", + "kampung", + "kampung halaman" + ], + "en_answers": [ + "return to hometown", + "hometown" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-05": { + "question": "Olahraga apa yang paling disukai oleh orang tua di Indonesia?", + "en_question": "What sports do seniors like the most in your country?", + "annotations": [ + { + "answers": [ + "badminton", + "bulutangkis", + "bulutangkis/senam", + "bulu tangkis" + ], + "en_answers": [ + "badminton" + ], + "count": 3 + }, + { + "answers": [ + "senam", + "bulutangkis/senam" + ], + "en_answers": [ + "gymnastics" + ], + "count": 2 + }, + { + "answers": [ + "sepak bola", + "sepakbola" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "jalan kaki" + ], + "en_answers": [ + "walking", + "walk" + ], + "count": 1 + }, + { + "answers": [ + "catur" + ], + "en_answers": [ + "chess" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-06": { + "question": "Olahraga apa yang paling disukai untuk dimainkan oleh pria di Indonesia?", + "en_question": "What sports do men like to play the most in your country?", + "annotations": [ + { + "answers": [ + "sepak bola", + "sepakbola" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "basket", + "bola basket" + ], + "en_answers": [ + "basketball" + ], + "count": 3 + }, + { + "answers": [ + "bulu tangkis", + "badminton", + "bulutangkis" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-07": { + "question": "Siapa pemain bola basket paling terkenal di Indonesia?", + "en_question": "Who is the most famous basketball player in your country?", + "annotations": [ + { + "answers": [ + "denny sumargo" + ], + "en_answers": [ + "denny sumargo" + ], + "count": 3 + }, + { + "answers": [ + "ali budimansyah" + ], + "en_answers": [ + "ali budimansyah" + ], + "count": 1 + }, + { + "answers": [ + "rony gunawan" + ], + "en_answers": [ + "rony gunawan" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-08": { + "question": "Apa olahraga paling populer di kalangan anak-anak di Indonesia?", + "en_question": "What is the most popular sports among children in your country?", + "annotations": [ + { + "answers": [ + "sepak bola", + "sepakbola" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "bola basket", + "basket" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "bulutangkis", + "bulu tangkis", + "badminton" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-09": { + "question": "Olahraga apa yang paling disukai untuk dimainkan oleh wanita di Indonesia?", + "en_question": "What sports do women like to play the most in your country?", + "annotations": [ + { + "answers": [ + "bulutangkis", + "badminton", + "batminton", + "bulu tangkis" + ], + "en_answers": [ + "badminton" + ], + "count": 3 + }, + { + "answers": [ + "yoga" + ], + "en_answers": [ + "yoga" + ], + "count": 1 + }, + { + "answers": [ + "bola voli" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "berenang", + "renang" + ], + "en_answers": [ + "swim" + ], + "count": 1 + }, + { + "answers": [ + "tenis", + "tennis" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-11": { + "question": "Dalam olahraga apa Indonesia memenangkan medali emas terbanyak di Olimpiade?", + "en_question": "What sports event has your country won the most gold medals at the Olympics?", + "annotations": [ + { + "answers": [ + "bulu tangkis", + "bulutangkis", + "badminton" + ], + "en_answers": [ + "badminton" + ], + "count": 4 + }, + { + "answers": [ + "atletik" + ], + "en_answers": [ + "athletics" + ], + "count": 1 + }, + { + "answers": [ + "angkat beban" + ], + "en_answers": [ + "weightlifting" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-15": { + "question": "Olahraga apa yang paling disukai oleh mahasiswa pria di universitas untuk dimainkan di Indonesia?", + "en_question": "What sports do male students in university like to play the most in your country?", + "annotations": [ + { + "answers": [ + "bulu tangkis", + "badminton", + "bulutangkis" + ], + "en_answers": [ + "badminton" + ], + "count": 4 + }, + { + "answers": [ + "sepak bola", + "sepakbola" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "basket", + "bola basket" + ], + "en_answers": [ + "basketball" + ], + "count": 3 + }, + { + "answers": [ + "futsal" + ], + "en_answers": [ + "futsal" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-16": { + "question": "Berapa banyak orang rata-rata dalam satu keluarga di Indonesia? (Hanya berikan angka Arab (contoh, 12).)", + "en_question": "How many people are there in a family on average in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 5 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 3 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 2 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-18": { + "question": "Berapa banyak anak yang biasanya dimiliki oleh pasangan di Indonesia? (Berikan hanya angka Arab (misalnya, 12).)", + "en_question": "How many children do couples usually have in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 4 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 2 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-31": { + "question": "Berapa lama durasi sekolah dasar dalam tahun di Indonesia? (Berikan hanya angka Arab (misalnya, 12).)", + "en_question": "What is the duration of elementary school in years in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 4 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-32": { + "question": "Berapa lama durasi pendidikan wajib dalam tahun di Indonesia? (Berikan hanya angka Arab (contoh, 12).)", + "en_question": "What is the duration of compulsory education in years in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 5 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-33": { + "question": "Pada usia berapa siswa mulai belajar bahasa kedua di Indonesia? (Berikan angka Arab (misalnya, 12) saja.)", + "en_question": "From which age do students start learning their second language in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "13" + ], + "en_answers": [ + "13" + ], + "count": 2 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 2 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-38": { + "question": "Berapa lama durasi pendidikan sarjana di Indonesia? (Berikan hanya angka Arab (contoh, 12).)", + "en_question": "On average, how far do students typically pursue their education in your country? (e.g., elementary, high school)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 2 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 2 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-40": { + "question": "Pukul berapa siswa sekolah dasar yang lebih muda selesai sekolah di Indonesia? (Berikan dalam format HH:MM (contoh, 18:00, 09:00).)", + "en_question": "What time do younger elementary school students finish school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 2 + }, + { + "answers": [ + "10:00" + ], + "en_answers": [ + "10:00" + ], + "count": 1 + }, + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 1 + }, + { + "answers": [ + "13:30" + ], + "en_answers": [ + "13:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-41": { + "question": "Berapa banyak alat musik yang biasanya dimainkan oleh siswa sekolah dasar di Indonesia? (Hanya berikan angka Arab (misalnya, 12).)", + "en_question": "How many musical instruments do elementary school students in your country typically play? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-02": { + "question": "Hari apa dalam seminggu yang biasanya dipilih orang-orang di Indonesia untuk makan malam bersama perusahaan?", + "en_question": "What day of the week do people in your country prefer to have company dinners?", + "annotations": [ + { + "answers": [ + "jumat" + ], + "en_answers": [ + "friday" + ], + "count": 4 + }, + { + "answers": [ + "sabtu" + ], + "en_answers": [ + "saturday" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-03": { + "question": "Wilayah/kota mana yang memiliki jumlah perusahaan keuangan terbanyak di Indonesia?", + "en_question": "Which region/city has the highest number of financial companies in your country?", + "annotations": [ + { + "answers": [ + "jakarta" + ], + "en_answers": [ + "jakarta" + ], + "count": 5 + }, + { + "answers": [ + "surabaya" + ], + "en_answers": [ + "surabaya" + ], + "count": 1 + }, + { + "answers": [ + "bandung" + ], + "en_answers": [ + "bandung" + ], + "count": 1 + }, + { + "answers": [ + "jawa timur", + "jatim" + ], + "en_answers": [ + "east java" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-07": { + "question": "Apa perusahaan swasta paling terkenal di Indonesia?", + "en_question": "What is the most famous private company in your country?", + "annotations": [ + { + "answers": [ + "indofood" + ], + "en_answers": [ + "indofood" + ], + "count": 2 + }, + { + "answers": [ + "unilever" + ], + "en_answers": [ + "unilever" + ], + "count": 2 + }, + { + "answers": [ + "bca" + ], + "en_answers": [ + "bca", + "bak central asia" + ], + "count": 1 + }, + { + "answers": [ + "salim group" + ], + "en_answers": [ + "salim group" + ], + "count": 1 + }, + { + "answers": [ + "gudang garam" + ], + "en_answers": [ + "gudang garam" + ], + "count": 1 + }, + { + "answers": [ + "garuda food" + ], + "en_answers": [ + "garuda food" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-08": { + "question": "Berapa jumlah maksimum jam kerja per minggu di Indonesia? (Hanya berikan angka Arab (contoh, 12).)", + "en_question": "What is the maximum number of hours one can work per week in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 3 + }, + { + "answers": [ + "50" + ], + "en_answers": [ + "50" + ], + "count": 1 + }, + { + "answers": [ + "48" + ], + "en_answers": [ + "48" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-09": { + "question": "Apa yang biasanya orang makan saat pertemuan perusahaan di Indonesia?", + "en_question": "What do people typically eat during company get-together in your country?", + "annotations": [ + { + "answers": [ + "prasmanan" + ], + "en_answers": [ + "buffet" + ], + "count": 2 + }, + { + "answers": [ + "nasi box", + "nasi kotak" + ], + "en_answers": [ + "rice box" + ], + "count": 2 + }, + { + "answers": [ + "nasi goreng" + ], + "en_answers": [ + "fried rice" + ], + "count": 1 + }, + { + "answers": [ + "ayam goreng" + ], + "en_answers": [ + "fried chicken" + ], + "count": 1 + }, + { + "answers": [ + "tumpeng" + ], + "en_answers": [ + "tumpeng" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-14": { + "question": "Apa benda ekspor yang mewakili Indonesia?", + "en_question": "What is the representative export item of your country?", + "annotations": [ + { + "answers": [ + "indomie", + "mie instan", + "mi instan" + ], + "en_answers": [ + "indomie", + "instant noodle" + ], + "count": 2 + }, + { + "answers": [ + "kerajinan tangan" + ], + "en_answers": [ + "handicraft" + ], + "count": 1 + }, + { + "answers": [ + "meubel" + ], + "en_answers": [ + "furniture" + ], + "count": 1 + }, + { + "answers": [ + "minyak sawit" + ], + "en_answers": [ + "palm oil" + ], + "count": 1 + }, + { + "answers": [ + "batik" + ], + "en_answers": [ + "batik" + ], + "count": 1 + }, + { + "answers": [ + "beras" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "timah" + ], + "en_answers": [ + "tin" + ], + "count": 1 + }, + { + "answers": [ + "ikan-ikan", + "ikan", + "perikanan" + ], + "en_answers": [ + "fish", + "fishes", + "fisheries" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-15": { + "question": "Berapa lama (dalam jam) istirahat makan siang yang biasa di Indonesia? (Berikan angka Arab hingga satu desimal (contoh, 2, 3.5) saja.)", + "en_question": "How long (in hours) is the typical lunch break in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 4 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-16": { + "question": "Di mana ibu-ibu tinggal untuk sementara waktu setelah melahirkan untuk pemulihan di Indonesia?", + "en_question": "Where do mothers stay for a certain period after childbirth for recovery in your country?", + "annotations": [ + { + "answers": [ + "rumah", + "rumah sendiri" + ], + "en_answers": [ + "house", + "own house" + ], + "count": 4 + }, + { + "answers": [ + "rumah sakit", + "rumah sakit bersalin" + ], + "en_answers": [ + "hospital", + "maternity hospital" + ], + "count": 4 + }, + { + "answers": [ + "rumah orang tua", + "rumah orang tua ibu" + ], + "en_answers": [ + "parents' house", + "parents' house from the mother side" + ], + "count": 2 + }, + { + "answers": [ + "bidan" + ], + "en_answers": [ + "midwife" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-19": { + "question": "Apa bunga yang paling sering diberikan di Indonesia pada Hari Orang Tua?", + "en_question": "What is your country's most commonly given flower on Parents' Day?", + "annotations": [ + { + "answers": [ + "mawar", + "bunga mawar" + ], + "en_answers": [ + "rose" + ], + "count": 4 + }, + { + "answers": [ + "bunga lili", + "lili" + ], + "en_answers": [ + "lily" + ], + "count": 1 + }, + { + "answers": [ + "anggrek", + "bunga anggrek" + ], + "en_answers": [ + "orchid" + ], + "count": 1 + }, + { + "answers": [ + "matahari", + "bunga matahari" + ], + "en_answers": [ + "sunflower" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-22": { + "question": "Apa yang biasanya orang-orang di Indonesia belanjakan untuk gaji pertama mereka?", + "en_question": "What do people especially spend their first salary on in your country's society?", + "annotations": [ + { + "answers": [ + "baju", + "celana", + "pakaian" + ], + "en_answers": [ + "clothes", + "pants" + ], + "count": 2 + }, + { + "answers": [ + "gawai", + "gadget" + ], + "en_answers": [ + "gadget" + ], + "count": 1 + }, + { + "answers": [ + "dompet" + ], + "en_answers": [ + "wallet" + ], + "count": 1 + }, + { + "answers": [ + "tas" + ], + "en_answers": [ + "bag" + ], + "count": 1 + }, + { + "answers": [ + "sepatu" + ], + "en_answers": [ + "shoes" + ], + "count": 1 + }, + { + "answers": [ + "telepon genggam", + "hp", + "ponsel", + "telepon seluler" + ], + "en_answers": [ + "mobile phone", + "handphone", + "hand phone" + ], + "count": 1 + }, + { + "answers": [ + "elektronik" + ], + "en_answers": [ + "electronics" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-24": { + "question": "Apa fasilitas rekreasi yang paling disukai oleh anak-anak di Indonesia?", + "en_question": "What is the most preferred recreational facility among children in your country?", + "annotations": [ + { + "answers": [ + "timezone" + ], + "en_answers": [ + "timezone" + ], + "count": 2 + }, + { + "answers": [ + "taman safari", + "kebun binatang" + ], + "en_answers": [ + "safari park", + "zoo" + ], + "count": 2 + }, + { + "answers": [ + "waterbom", + "waterboom", + "taman bermain air" + ], + "en_answers": [ + "water park", + "waterboom" + ], + "count": 1 + }, + { + "answers": [ + "taman hiburan" + ], + "en_answers": [ + "amusement park" + ], + "count": 1 + }, + { + "answers": [ + "akuarium" + ], + "en_answers": [ + "aquarium" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-25": { + "question": "Apa saja hari libur yang berkaitan dengan keluarga di Indonesia?", + "en_question": "What are the family-related holidays in your country?", + "annotations": [ + { + "answers": [ + "idul fitri", + "libur lebaran", + "idulfitri", + "lebaran idul fitri", + "libur idulfitri", + "libur idul fitri", + "lebaran" + ], + "en_answers": [ + "eid al-fitr", + "eid al-fitr holiday", + "eid holiday", + "eid" + ], + "count": 3 + }, + { + "answers": [ + "natal", + "libur natal" + ], + "en_answers": [ + "christmas", + "christmas holiday" + ], + "count": 3 + }, + { + "answers": [ + "libur imlek", + "imlek", + "tahun baru china" + ], + "en_answers": [ + "chinese new year holiday", + "chinese new year" + ], + "count": 2 + }, + { + "answers": [ + "hari ibu" + ], + "en_answers": [ + "mother's day" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-26": { + "question": "Apa saja tonggak utama yang terkait dengan kemandirian anak-anak dari orang tua mereka dalam masyarakat Indonesia?", + "en_question": "What are the key milestones associated with children's independence from their parents in your country's society?", + "annotations": [ + { + "answers": [ + "masuk kuliah" + ], + "en_answers": [ + "enter college", + "entering college" + ], + "count": 1 + }, + { + "answers": [ + "bekerja" + ], + "en_answers": [ + "work" + ], + "count": 1 + }, + { + "answers": [ + "pernikahan" + ], + "en_answers": [ + "marriage" + ], + "count": 1 + }, + { + "answers": [ + "kepercayaan orang tua" + ], + "en_answers": [ + "parents' trust" + ], + "count": 1 + }, + { + "answers": [ + "lingkungan" + ], + "en_answers": [ + "environment" + ], + "count": 1 + }, + { + "answers": [ + "makan sendiri" + ], + "en_answers": [ + "eat alone" + ], + "count": 1 + }, + { + "answers": [ + "tempat tinggal" + ], + "en_answers": [ + "place of residence" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-27": { + "question": "Apa hadiah yang biasa diberikan ketika mengunjungi orang tua yang lebih tua di Indonesia?", + "en_question": "What is the common gift you give when visiting elderly parents in your country?", + "annotations": [ + { + "answers": [ + "makanan ringan" + ], + "en_answers": [ + "snack" + ], + "count": 2 + }, + { + "answers": [ + "makanan" + ], + "en_answers": [ + "food" + ], + "count": 2 + }, + { + "answers": [ + "buah-buahan" + ], + "en_answers": [ + "fruits" + ], + "count": 1 + }, + { + "answers": [ + "bunga" + ], + "en_answers": [ + "flower" + ], + "count": 1 + }, + { + "answers": [ + "biskuit", + "assorted biscuits", + "macam-macam biskuit", + "aneka biskuit" + ], + "en_answers": [ + "assorted biscuits" + ], + "count": 1 + }, + { + "answers": [ + "kain adat" + ], + "en_answers": [ + "traditional clothes" + ], + "count": 1 + }, + { + "answers": [ + "pernak-pernik khas", + "pernak-pernik" + ], + "en_answers": [ + "trinkets", + "knick knacks", + "signature trinkets", + "signature kinick knacks" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-28": { + "question": "Kapan hari pertama yang dirayakan orang setelah seorang anak lahir di Indonesia?", + "en_question": "When is the first day that people celebrate after a child is born in your country?", + "annotations": [ + { + "answers": [ + "di hari yang sama dengan kelahiran si anak", + "hari yang sama dengan kelahiran si anak", + "di hari yang sama dengan kelahiran anak", + "hari yang sama dengan kelahiran anak" + ], + "en_answers": [ + "on the same day as the child's birth", + "same day as the child's birth" + ], + "count": 1 + }, + { + "answers": [ + "setelah 1 bulan", + "1 bulan setelah" + ], + "en_answers": [ + "after 1 month" + ], + "count": 1 + }, + { + "answers": [ + "setelah 40 hari" + ], + "en_answers": [ + "after 40 days" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-29": { + "question": "Ulang tahun usia berapa yang paling meriah dirayakan dalam masyarakat Indonesia?", + "en_question": "Which age's birthday is celebrated the most grandly in your country's society?", + "annotations": [ + { + "answers": [ + "17" + ], + "en_answers": [ + "17" + ], + "count": 5 + }, + { + "answers": [ + "21" + ], + "en_answers": [ + "21" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-31": { + "question": "Di mana siswa SMP dan SMA di Indonesia biasanya belajar untuk ujian?", + "en_question": "Where do middle and high school students in your country usually study for exams?", + "annotations": [ + { + "answers": [ + "bimbingan belajar", + "tempat les", + "les", + "bimbel", + "les-lesan" + ], + "en_answers": [ + "tutoring", + "private tutoring", + "tutoring place" + ], + "count": 3 + }, + { + "answers": [ + "sekolah" + ], + "en_answers": [ + "school" + ], + "count": 2 + }, + { + "answers": [ + "rumah" + ], + "en_answers": [ + "house" + ], + "count": 2 + }, + { + "answers": [ + "rumah teman" + ], + "en_answers": [ + "friend's house" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-33": { + "question": "Kemana biasanya siswa SMA di Indonesia pergi setelah makan malam?", + "en_question": "Where do high school students in your country usually go after dinner?", + "annotations": [ + { + "answers": [ + "di rumah saja", + "rumah", + "kembali ke rumah" + ], + "en_answers": [ + "only stay at home", + "stay at home", + "house", + "return home" + ], + "count": 3 + }, + { + "answers": [ + "bimbel" + ], + "en_answers": [ + "tutoring place" + ], + "count": 1 + }, + { + "answers": [ + "cafe" + ], + "en_answers": [ + "cafe" + ], + "count": 1 + }, + { + "answers": [ + "tempat bilyar", + "billiard" + ], + "en_answers": [ + "billiards place" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-34": { + "question": "Bagaimana cara siswa sekolah dasar di Indonesia pergi ke sekolah?", + "en_question": "How do elementary school students in your country go to school?", + "annotations": [ + { + "answers": [ + "naik mobil", + "naik mobil atau dijemput mobil sekolah", + "mobil" + ], + "en_answers": [ + "ride a car", + "car" + ], + "count": 2 + }, + { + "answers": [ + "dijemput mobil sekolah", + "naik mobil atau dijemput mobil sekolah", + "mobil sekolah" + ], + "en_answers": [ + "picked up by school car", + "school car" + ], + "count": 1 + }, + { + "answers": [ + "bus" + ], + "en_answers": [ + "bus" + ], + "count": 1 + }, + { + "answers": [ + "naik sepeda", + "sepeda" + ], + "en_answers": [ + "ride a bike", + "bike", + "ride a bycicle", + "bycicle" + ], + "count": 1 + }, + { + "answers": [ + "jalan kaki" + ], + "en_answers": [ + "walk" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-35": { + "question": "Apa bentuk pendidikan swasta yang paling umum di Indonesia?", + "en_question": "What is the most common form of private education in your country?", + "annotations": [ + { + "answers": [ + "kursus bahasa inggris" + ], + "en_answers": [ + "english course" + ], + "count": 1 + }, + { + "answers": [ + "sma" + ], + "en_answers": [ + "high school" + ], + "count": 1 + }, + { + "answers": [ + "sekolah" + ], + "en_answers": [ + "school" + ], + "count": 1 + }, + { + "answers": [ + "tempat les", + "les", + "bimbingan belajar", + "bimbel" + ], + "en_answers": [ + "tutoring place" + ], + "count": 1 + }, + { + "answers": [ + "kursus musik" + ], + "en_answers": [ + "music course" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ji-ko-36": { + "question": "Akademi/institut pendidikan swasta mata pelajaran apa yang paling sering diikuti oleh siswa SMP atau SMA di Indonesia?", + "en_question": "Which subject’s academy/private educational institute do middle or high students most frequently attend in your country?", + "annotations": [ + { + "answers": [ + "matematika" + ], + "en_answers": [ + "mathematics" + ], + "count": 2 + }, + { + "answers": [ + "bahasa inggris" + ], + "en_answers": [ + "english language", + "english" + ], + "count": 2 + }, + { + "answers": [ + "agama" + ], + "en_answers": [ + "religion" + ], + "count": 1 + }, + { + "answers": [ + "bahasa mandarin" + ], + "en_answers": [ + "mandarin language", + "mandarin" + ], + "count": 1 + }, + { + "answers": [ + "pkn", + "ppkn" + ], + "en_answers": [ + "civics" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-37": { + "question": "Apa jenis pakaian yang dikenakan oleh siswa SMP dan SMA ke sekolah di Indonesia?", + "en_question": "What type of clothing do middle and high school students wear to school in your country?", + "annotations": [ + { + "answers": [ + "seragam sekolah", + "seragam", + "celana pendek dan seragam" + ], + "en_answers": [ + "school uniform", + "uniform" + ], + "count": 4 + }, + { + "answers": [ + "celana pendek", + "celana pendek dan seragam" + ], + "en_answers": [ + "shorts" + ], + "count": 2 + }, + { + "answers": [ + "kemeja lengan pendek", + "batik", + "seragam batik" + ], + "en_answers": [ + "short-sleeved shirt", + "batik", + "batik uniform" + ], + "count": 2 + }, + { + "answers": [ + "celana panjang" + ], + "en_answers": [ + "trousers" + ], + "count": 1 + }, + { + "answers": [ + "pramuka", + "seragam pramuka" + ], + "en_answers": [ + "scout uniform" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-38": { + "question": "Jurusan mana yang dianggap paling sulit untuk diterima di Indonesia?", + "en_question": "Which major is considered the most difficult to gain admission to in your country?", + "annotations": [ + { + "answers": [ + "kedokteran" + ], + "en_answers": [ + "medicine" + ], + "count": 4 + }, + { + "answers": [ + "hukum" + ], + "en_answers": [ + "law" + ], + "count": 1 + }, + { + "answers": [ + "teknik" + ], + "en_answers": [ + "engineering" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-39": { + "question": "Apa alat musik yang paling sering dipelajari oleh siswa sekolah dasar di Indonesia?", + "en_question": "What is the most commonly learned musical instrument by elementary school students in your country?", + "annotations": [ + { + "answers": [ + "pianika" + ], + "en_answers": [ + "pianica" + ], + "count": 3 + }, + { + "answers": [ + "piano" + ], + "en_answers": [ + "piano" + ], + "count": 2 + }, + { + "answers": [ + "recorder" + ], + "en_answers": [ + "recorder" + ], + "count": 2 + }, + { + "answers": [ + "suling", + "seruling" + ], + "en_answers": [ + "suling" + ], + "count": 1 + }, + { + "answers": [ + "angklung" + ], + "en_answers": [ + "angklung" + ], + "count": 1 + }, + { + "answers": [ + "gitar" + ], + "en_answers": [ + "guitar" + ], + "count": 1 + }, + { + "answers": [ + "drum" + ], + "en_answers": [ + "drum" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-40": { + "question": "Apa yang biasanya dilakukan oleh siswa SMA selama waktu istirahat di sekolah-sekolah di Indonesia?", + "en_question": "What do high school students typically do during break time in schools in your country?", + "annotations": [ + { + "answers": [ + "beli jajanan", + "jajan makanan", + "membeli makanan di kantin", + "jajan", + "jajan makanan di kantin" + ], + "en_answers": [ + "buy snacks", + "buying snacks", + "buy food", + "buying food", + "buying food in the canteen" + ], + "count": 3 + }, + { + "answers": [ + "makan", + "makan bersama teman" + ], + "en_answers": [ + "eat", + "eat with friends" + ], + "count": 2 + }, + { + "answers": [ + "ngobrol", + "mengobrol" + ], + "en_answers": [ + "chat" + ], + "count": 1 + }, + { + "answers": [ + "aktivitas fisik" + ], + "en_answers": [ + "physical activity" + ], + "count": 1 + }, + { + "answers": [ + "bermain bersama teman", + "main bersama teman" + ], + "en_answers": [ + "playing with friends" + ], + "count": 1 + }, + { + "answers": [ + "belajar" + ], + "en_answers": [ + "study", + "studying" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-41": { + "question": "Sepatu seperti apa yang dipakai oleh siswa di sekolah-sekolah di Indonesia?", + "en_question": "What kind of shoes do students wear in schools in your country?", + "annotations": [ + { + "answers": [ + "sepatu hitam", + "sepatu formal hitam", + "hitam" + ], + "en_answers": [ + "black shoes", + "black formal shoes" + ], + "count": 4 + }, + { + "answers": [ + "sepatu kets" + ], + "en_answers": [ + "sneakers" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-42": { + "question": "Apa saja mata pelajaran yang diwajibkan dalam ujian masuk universitas di Indonesia?", + "en_question": "What are the required subjects in your country's university entrance exam?", + "annotations": [ + { + "answers": [ + "matematika" + ], + "en_answers": [ + "mathematics" + ], + "count": 5 + }, + { + "answers": [ + "bahasa inggris" + ], + "en_answers": [ + "english language" + ], + "count": 2 + }, + { + "answers": [ + "inggris" + ], + "en_answers": [ + "english" + ], + "count": 1 + }, + { + "answers": [ + "bahasa indonesia" + ], + "en_answers": [ + "indonesian language", + "indonesian" + ], + "count": 1 + }, + { + "answers": [ + "fisika" + ], + "en_answers": [ + "physics" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-44": { + "question": "Wilayah mana (di dalam sebuah kota) di Indonesia yang memiliki semangat akademis tertinggi?", + "en_question": "Which region (within a city) in your country has the highest academic fervor?", + "annotations": [ + { + "answers": [ + "jakarta" + ], + "en_answers": [ + "jakarta" + ], + "count": 3 + }, + { + "answers": [ + "jogjakarta", + "yogyakarta", + "yogjakarta" + ], + "en_answers": [ + "yogyakarta" + ], + "count": 3 + }, + { + "answers": [ + "bandung" + ], + "en_answers": [ + "bandung" + ], + "count": 2 + }, + { + "answers": [ + "bogor" + ], + "en_answers": [ + "bogor" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-45": { + "question": "Apa yang paling dinantikan orang-orang pada festival universitas di Indonesia?", + "en_question": "What do people look forward to the most at university festivals in your country?", + "annotations": [ + { + "answers": [ + "bazaar makanan", + "bazar kuliner" + ], + "en_answers": [ + "food bazaar", + "culinary bazaar" + ], + "count": 2 + }, + { + "answers": [ + "konser", + "konser musik" + ], + "en_answers": [ + "concert", + "music concert" + ], + "count": 2 + }, + { + "answers": [ + "lomba" + ], + "en_answers": [ + "race", + "contest" + ], + "count": 1 + }, + { + "answers": [ + "pesta mahasiswa" + ], + "en_answers": [ + "student party" + ], + "count": 1 + }, + { + "answers": [ + "band terkenal" + ], + "en_answers": [ + "famous band" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Jo-sp-01": { + "question": "Apa olahraga paling populer kedua di Indonesia?", + "en_question": "What is the second most popular sport in your country?", + "annotations": [ + { + "answers": [ + "bulu tangkis", + "badminton", + "bulutangkis" + ], + "en_answers": [ + "badminton" + ], + "count": 4 + }, + { + "answers": [ + "sepak bola" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-02": { + "question": "Apa olahraga paling populer yang dimainkan tanpa bola di Indonesia?", + "en_question": "What is the most popular sport played without a ball in your country?", + "annotations": [ + { + "answers": [ + "bulu tangkis", + "badminton", + "bulutangkis" + ], + "en_answers": [ + "badminton" + ], + "count": 3 + }, + { + "answers": [ + "pencak silat" + ], + "en_answers": [ + "pencak silat" + ], + "count": 2 + }, + { + "answers": [ + "renang", + "berenang" + ], + "en_answers": [ + "swim", + "swimming" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-09": { + "question": "Olahraga apa yang paling banyak dikaitkan dengan kelas atas di Indonesia?", + "en_question": "What sports are most associated with the upper class in your country?", + "annotations": [ + { + "answers": [ + "golf" + ], + "en_answers": [ + "golf" + ], + "count": 4 + }, + { + "answers": [ + "tennis", + "tenis" + ], + "en_answers": [ + "tennis" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-13": { + "question": "Apa olahraga air paling populer di Indonesia?", + "en_question": "What is the most popular water sport in your country?", + "annotations": [ + { + "answers": [ + "renang", + "berenang" + ], + "en_answers": [ + "swim", + "swimming" + ], + "count": 5 + }, + { + "answers": [ + "polo air" + ], + "en_answers": [ + "water polo" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-14": { + "question": "Apa olahraga mental yang paling populer di Indonesia?", + "en_question": "What is the most popular mental sport in your country?", + "annotations": [ + { + "answers": [ + "catur" + ], + "en_answers": [ + "chess" + ], + "count": 5 + }, + { + "answers": [ + "teka-teki silang" + ], + "en_answers": [ + "crossword puzzle" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-18": { + "question": "Berapa hari libur per tahun yang didapatkan oleh pekerja standar di Indonesia? (Berikan angka Arab (misalnya, 12) saja.)", + "en_question": "How many holiday days per year does a standard worker gets in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 3 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + }, + { + "answers": [ + "14" + ], + "en_answers": [ + "14" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-19": { + "question": "Wilayah mana di Indonesia yang secara tradisional dikaitkan dengan pertanian?", + "en_question": "What region in your country has been traditionally associated with agriculture?", + "annotations": [ + { + "answers": [ + "pulau jawa", + "jawa" + ], + "en_answers": [ + "java island", + "java" + ], + "count": 4 + }, + { + "answers": [ + "pulau sumatera", + "sumatra", + "sumatera", + "pulau sumatra" + ], + "en_answers": [ + "sumatra island", + "sumatra" + ], + "count": 2 + }, + { + "answers": [ + "pulau kalimantan", + "kalimantan" + ], + "en_answers": [ + "borneo island" + ], + "count": 1 + }, + { + "answers": [ + "bali", + "pulau bali" + ], + "en_answers": [ + "bali", + "bali island" + ], + "count": 1 + }, + { + "answers": [ + "jawa tengah" + ], + "en_answers": [ + "central java" + ], + "count": 1 + }, + { + "answers": [ + "jawa timur" + ], + "en_answers": [ + "east java" + ], + "count": 1 + }, + { + "answers": [ + "jawa barat" + ], + "en_answers": [ + "west java" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-21": { + "question": "Pada jam berapa, jika ada, orang-orang biasanya meninggalkan pekerjaan untuk makan siang di Indonesia? (Berikan dalam format HH:MM (contoh, 18:00, 09:00).)", + "en_question": "What time, if any, do people usually leave work for lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "12:00" + ], + "en_answers": [ + "12:00" + ], + "count": 5 + }, + { + "answers": [ + "13:00", + "01:00" + ], + "en_answers": [ + "13:00" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-31": { + "question": "Pukul berapa biasanya siswa SMA pulang dari sekolah di Indonesia? (Berikan dalam format JJ:MM (contoh, 18:00, 09:00).)", + "en_question": "What time do high school students tend to leave school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "15:00" + ], + "en_answers": [ + "15:00" + ], + "count": 4 + }, + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 2 + }, + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 1 + }, + { + "answers": [ + "16:00" + ], + "en_answers": [ + "16:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-32": { + "question": "Olahraga apa yang biasanya dilakukan oleh siswa sekolah dasar di sekolah-sekolah di Indonesia?", + "en_question": "What sport do elementary school students tend to practice at school in your country?", + "annotations": [ + { + "answers": [ + "sepak bola", + "sepakbola" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "basket", + "bola basket" + ], + "en_answers": [ + "basketball" + ], + "count": 3 + }, + { + "answers": [ + "kasti", + "bola kasti" + ], + "en_answers": [ + "kastie", + "kastie ball" + ], + "count": 1 + }, + { + "answers": [ + "atletik" + ], + "en_answers": [ + "athletics" + ], + "count": 1 + }, + { + "answers": [ + "bulu tangkis", + "bulutangkis", + "badminton" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "bola voli", + "voli" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-36": { + "question": "Berapa lama (dalam minggu) liburan musim panas di sekolah dasar di Indonesia? (Berikan dalam angka Arab (misalnya, 7, 8) saja.)", + "en_question": "How long (in weeks) are summer vacations at elementary schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 3 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-37": { + "question": "Berapa lama (dalam minggu) liburan musim panas di universitas-universitas di Indonesia? (Berikan dalam angka Arab (misalnya, 7, 8) saja.)", + "en_question": "How long (in weeks) are summer vacations at universities in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 2 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + }, + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-39": { + "question": "Pada usia berapa pendidikan dasar dimulai di Indonesia? (Berikan dalam angka Arab (misalnya, 7, 8) saja.)", + "en_question": "At what age does elementary education begin in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 4 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-43": { + "question": "Berapa banyak bahasa yang dipelajari di pendidikan dasar selain bahasa resmi Indonesia? (Berikan dalam angka Arab (contoh, 7, 8) saja.)", + "en_question": "How many languages are studied in elementary education besides your country's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 3 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-01": { + "question": "Alat makan apa yang biasa digunakan orang-orang di Indonesia?", + "en_question": "What eating utensils do people commonly used in your country?", + "annotations": [ + { + "answers": [ + "sendok", + "sendok & garpu" + ], + "en_answers": [ + "spoon" + ], + "count": 4 + }, + { + "answers": [ + "garpu", + "sendok & garpu" + ], + "en_answers": [ + "fork" + ], + "count": 4 + }, + { + "answers": [ + "sumpit" + ], + "en_answers": [ + "chopsticks" + ], + "count": 2 + }, + { + "answers": [ + "piring" + ], + "en_answers": [ + "plate" + ], + "count": 1 + }, + { + "answers": [ + "tangan" + ], + "en_answers": [ + "hand" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-04": { + "question": "Minuman ringan apa yang disukai oleh orang-orang di Indonesia?", + "en_question": "What soft drink do people in your country like to have?", + "annotations": [ + { + "answers": [ + "teh botol", + "fruit tea", + "teh" + ], + "en_answers": [ + "teh botol", + "fruit tea" + ], + "count": 3 + }, + { + "answers": [ + "coca cola" + ], + "en_answers": [ + "coca cola" + ], + "count": 2 + }, + { + "answers": [ + "jus jeruk" + ], + "en_answers": [ + "orange juice" + ], + "count": 1 + }, + { + "answers": [ + "jus alpukat" + ], + "en_answers": [ + "avocado juice" + ], + "count": 1 + }, + { + "answers": [ + "es kopyor" + ], + "en_answers": [ + "kopyor ice" + ], + "count": 1 + }, + { + "answers": [ + "es kopi" + ], + "en_answers": [ + "iced coffee" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-06": { + "question": "Apa minuman alkohol tradisional yang paling populer di Indonesia?", + "en_question": "What is the most popular traditional alcohol in your country?", + "annotations": [ + { + "answers": [ + "sopi" + ], + "en_answers": [ + "sopi" + ], + "count": 3 + }, + { + "answers": [ + "ballo" + ], + "en_answers": [ + "ballo" + ], + "count": 1 + }, + { + "answers": [ + "bir bintang", + "bir" + ], + "en_answers": [ + "bintang beer" + ], + "count": 1 + }, + { + "answers": [ + "tuak" + ], + "en_answers": [ + "tuak" + ], + "count": 1 + }, + { + "answers": [ + "cap tikus" + ], + "en_answers": [ + "cap tikus" + ], + "count": 1 + }, + { + "answers": [ + "arak bali" + ], + "en_answers": [ + "arak bali" + ], + "count": 1 + }, + { + "answers": [ + "anggur merah" + ], + "en_answers": [ + "red wine" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-07": { + "question": "Berapa lama (dalam jam) rata-rata waktu yang dibutuhkan orang-orang di Indonesia untuk makan malam di restoran? (Berikan angka Arab hingga satu desimal (contoh, 2, 3.5) saja.)", + "en_question": "How long (in hours) on average does it take for people in your country to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 4 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + }, + { + "answers": [ + "1.5" + ], + "en_answers": [ + "1.5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-09": { + "question": "Pukul berapa orang biasanya makan malam di Indonesia? (Berikan dalam format JJ:MM (contoh, 18:00, 09:00).)", + "en_question": "What time do people usually have dinner in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 4 + }, + { + "answers": [ + "19:00" + ], + "en_answers": [ + "19:00" + ], + "count": 3 + }, + { + "answers": [ + "20:00" + ], + "en_answers": [ + "20:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-12": { + "question": "Jenis sup apa yang disukai oleh orang-orang Indonesia?", + "en_question": "What kind of soup do people from your country like to have?", + "annotations": [ + { + "answers": [ + "sup ayam", + "sop ayam" + ], + "en_answers": [ + "chicken soup" + ], + "count": 2 + }, + { + "answers": [ + "sop iga", + "sup iga" + ], + "en_answers": [ + "beef rib soup" + ], + "count": 1 + }, + { + "answers": [ + "sop buntut", + "sup buntut" + ], + "en_answers": [ + "oxtail soup" + ], + "count": 1 + }, + { + "answers": [ + "sop kaki", + "sup kaki" + ], + "en_answers": [ + "beef leg soup" + ], + "count": 1 + }, + { + "answers": [ + "soto" + ], + "en_answers": [ + "soto" + ], + "count": 1 + }, + { + "answers": [ + "bakso" + ], + "en_answers": [ + "meatball" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-13": { + "question": "Makanan jalanan apa yang disukai oleh orang-orang dari Indonesia?", + "en_question": "What street food do people from your country like to eat?", + "annotations": [ + { + "answers": [ + "cilok" + ], + "en_answers": [ + "cilok" + ], + "count": 3 + }, + { + "answers": [ + "bakso" + ], + "en_answers": [ + "meatball" + ], + "count": 2 + }, + { + "answers": [ + "seblak" + ], + "en_answers": [ + "seblak" + ], + "count": 1 + }, + { + "answers": [ + "gorengan" + ], + "en_answers": [ + "fritters" + ], + "count": 1 + }, + { + "answers": [ + "sate" + ], + "en_answers": [ + "satay" + ], + "count": 1 + }, + { + "answers": [ + "martabak" + ], + "en_answers": [ + "martabak", + "indonesian pancake" + ], + "count": 1 + }, + { + "answers": [ + "nasi padang" + ], + "en_answers": [ + "padang rice" + ], + "count": 1 + }, + { + "answers": [ + "sate telor" + ], + "en_answers": [ + "egg satay" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-15": { + "question": "Jenis makanan laut apa yang disukai oleh orang-orang Indonesia?", + "en_question": "What kind of seafood do people from your country like to eat?", + "annotations": [ + { + "answers": [ + "ikan bakar", + "ikan", + "ikan goreng" + ], + "en_answers": [ + "grilled fish", + "fish", + "fried fish" + ], + "count": 4 + }, + { + "answers": [ + "cumi bakar", + "cumi-cumi", + "cumi cumi", + "cumi-cumi bakar", + "cumi" + ], + "en_answers": [ + "grilled squid", + "squid" + ], + "count": 3 + }, + { + "answers": [ + "udang bakar", + "udang" + ], + "en_answers": [ + "grilled shrimp", + "shrimp" + ], + "count": 2 + }, + { + "answers": [ + "kepiting" + ], + "en_answers": [ + "crab" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-16": { + "question": "Apa festival terbesar di Indonesia?", + "en_question": "What is the biggest festival in your country?", + "annotations": [ + { + "answers": [ + "festival 17an", + "hari kemerdekaan republik indonesia", + "festival 17-an", + "17-an", + "17an" + ], + "en_answers": [ + "17th festival", + "indonesian independence day" + ], + "count": 2 + }, + { + "answers": [ + "hari raya idul fitri", + "idul fitri", + "hari raya idulfitri", + "idulfitri" + ], + "en_answers": [ + "eid al-fitr" + ], + "count": 2 + }, + { + "answers": [ + "nyepi" + ], + "en_answers": [ + "day of silence" + ], + "count": 1 + }, + { + "answers": [ + "ramadhan", + "ramadan" + ], + "en_answers": [ + "ramadan" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-28": { + "question": "Apa transportasi umum yang paling sering digunakan oleh masyarakat ketika bepergian antar kota di Indonesia?", + "en_question": "What is the most commonly used public transport by people when travelling between cites in your country?", + "annotations": [ + { + "answers": [ + "bus", + "bus/kereta api", + "bus travel" + ], + "en_answers": [ + "bus", + "travel bus" + ], + "count": 5 + }, + { + "answers": [ + "kereta", + "kereta api", + "bus/kereta api" + ], + "en_answers": [ + "train" + ], + "count": 4 + }, + { + "answers": [ + "pesawat" + ], + "en_answers": [ + "airplane" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-30": { + "question": "Apa saja dekorasi atau simbol khusus yang terkait dengan festival terbesar di Indonesia?", + "en_question": "What are the specific decorations or symbols associated with the most biggest festival in your country?", + "annotations": [ + { + "answers": [ + "ketupat" + ], + "en_answers": [ + "ketupat" + ], + "count": 3 + }, + { + "answers": [ + "bendera" + ], + "en_answers": [ + "flag" + ], + "count": 2 + }, + { + "answers": [ + "pohon natal" + ], + "en_answers": [ + "christmas tree" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-37": { + "question": "Olahraga apa yang paling disukai oleh wanita untuk ditonton di Indonesia?", + "en_question": "What sports do women like to watch the most in your country?", + "annotations": [ + { + "answers": [ + "bulu tangkis", + "badminton", + "bulutangkis" + ], + "en_answers": [ + "badminton" + ], + "count": 3 + }, + { + "answers": [ + "bola voli", + "voli" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "bola basket", + "basket" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-38": { + "question": "Olahraga apa yang paling disukai oleh pria untuk ditonton di Indonesia?", + "en_question": "What sports do men like to watch the most in your country?", + "annotations": [ + { + "answers": [ + "sepak bola", + "sepa bola", + "sepakbola" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 5 + }, + { + "answers": [ + "badminton", + "bulu tangkis", + "batminton", + "bulutangkis" + ], + "en_answers": [ + "badminton" + ], + "count": 5 + }, + { + "answers": [ + "bola basket", + "basket" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-41": { + "question": "Apa kegiatan santai yang umum dilakukan oleh wanita usia 20-an di Indonesia?", + "en_question": "What is the common leisure activity that females in their 20s in your country engage in?", + "annotations": [ + { + "answers": [ + "nongkrong di cafe", + "ke cafe" + ], + "en_answers": [ + "hanging out at the cafe", + "to the cafe" + ], + "count": 2 + }, + { + "answers": [ + "jalan-jalan ke mal", + "ke mall" + ], + "en_answers": [ + "going to the mall", + "to the mall" + ], + "count": 2 + }, + { + "answers": [ + "berbelanja di mal" + ], + "en_answers": [ + "shopping at the mall" + ], + "count": 1 + }, + { + "answers": [ + "ke salon" + ], + "en_answers": [ + "to the salon" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-42": { + "question": "Apa kegiatan santai yang umum dilakukan oleh pria di usia 20-an di Indonesia?", + "en_question": "What is the common leisure activity that males in their 20s in your country engage in?", + "annotations": [ + { + "answers": [ + "jalan-jalan ke mal", + "jalan-jalan ke mal.", + "menonton film", + "nonton film" + ], + "en_answers": [ + "going to the mall", + "watching movies" + ], + "count": 2 + }, + { + "answers": [ + "main game", + "bermain game" + ], + "en_answers": [ + "play game", + "playing games" + ], + "count": 2 + }, + { + "answers": [ + "nonton bioskop", + "nonton di bioskop", + "menonton di bioskop" + ], + "en_answers": [ + "watch movies", + "watch movies at the cinema", + "watching movies at the cinema" + ], + "count": 1 + }, + { + "answers": [ + "lari" + ], + "en_answers": [ + "run", + "running" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-46": { + "question": "Berapa lama (dalam jam) orang biasanya istirahat setelah makan siang di hari kerja di Indonesia? (Berikan angka numerik Arab hingga satu desimal (contoh, 2, 3.5) saja.)", + "en_question": "How long (in hours) do people usually take a break after lunch on a weekday in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 3 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + }, + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-48": { + "question": "Apa yang biasanya orang makan siang selama hari kerja di Indonesia?", + "en_question": "What do people eat for lunch during the working days in your country?", + "annotations": [ + { + "answers": [ + "nasi goreng" + ], + "en_answers": [ + "fried rice" + ], + "count": 3 + }, + { + "answers": [ + "sop ayam", + "sop ayam dan nasi" + ], + "en_answers": [ + "chicken soup" + ], + "count": 1 + }, + { + "answers": [ + "nasi", + "sop ayam dan nasi" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "indomie", + "mi instan", + "mie instan" + ], + "en_answers": [ + "indomie", + "instant noodle" + ], + "count": 1 + }, + { + "answers": [ + "gado-gado" + ], + "en_answers": [ + "gado-gado" + ], + "count": 1 + }, + { + "answers": [ + "nasi padang" + ], + "en_answers": [ + "padang rice" + ], + "count": 1 + }, + { + "answers": [ + "bakso" + ], + "en_answers": [ + "meatball" + ], + "count": 1 + }, + { + "answers": [ + "rendang" + ], + "en_answers": [ + "rendang" + ], + "count": 1 + }, + { + "answers": [ + "ayam goreng" + ], + "en_answers": [ + "fried chicken" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-50": { + "question": "Berapa rata-rata waktu perjalanan dari rumah ke tempat kerja (dalam menit) untuk orang-orang di Indonesia? (Berikan angka Arab (contoh, 1) saja.)", + "en_question": "What is the average commute time (in minutes) for people in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 2 + }, + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + }, + { + "answers": [ + "90" + ], + "en_answers": [ + "90" + ], + "count": 1 + }, + { + "answers": [ + "120" + ], + "en_answers": [ + "120" + ], + "count": 1 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-51": { + "question": "Apa alat transportasi yang paling umum digunakan orang untuk pergi ke tempat kerja di Indonesia?", + "en_question": "What is the most common transportation that people take to get to work in your country?", + "annotations": [ + { + "answers": [ + "sepeda motor", + "motor" + ], + "en_answers": [ + "motorcycle" + ], + "count": 4 + }, + { + "answers": [ + "mobil" + ], + "en_answers": [ + "car" + ], + "count": 1 + }, + { + "answers": [ + "bis", + "bus" + ], + "en_answers": [ + "bus" + ], + "count": 1 + }, + { + "answers": [ + "metromini" + ], + "en_answers": [ + "mini bus" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-54": { + "question": "Berapa lama (dalam hari) cuti pernikahan di Indonesia? (Berikan hanya angka Arab (misalnya, 12).)", + "en_question": "How long (in days) is the marriage leave in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "14" + ], + "en_answers": [ + "14" + ], + "count": 1 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Jod-ch-56": { + "question": "Berapa usia pensiun yang umum untuk perempuan di Indonesia? (Berikan hanya angka Arab (contoh, 12).)", + "en_question": "What is the typical retirement age for women in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "50" + ], + "en_answers": [ + "50" + ], + "count": 3 + }, + { + "answers": [ + "65" + ], + "en_answers": [ + "65" + ], + "count": 1 + }, + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-57": { + "question": "Berapa usia pensiun yang umum untuk pria di Indonesia? (Berikan hanya angka Arab (contoh, 12).)", + "en_question": "What is the typical retirement age for men in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "55" + ], + "en_answers": [ + "55" + ], + "count": 2 + }, + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 2 + }, + { + "answers": [ + "57" + ], + "en_answers": [ + "57" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-58": { + "question": "Profesi apa yang paling dihormati di Indonesia?", + "en_question": "Which profession is the most respected in your country?", + "annotations": [ + { + "answers": [ + "dokter" + ], + "en_answers": [ + "doctor" + ], + "count": 2 + }, + { + "answers": [ + "pegawai sipil", + "pns", + "pegawai negeri sipil" + ], + "en_answers": [ + "civil servant" + ], + "count": 2 + }, + { + "answers": [ + "pebisnis" + ], + "en_answers": [ + "businessperson", + "businessman", + "businesswoman" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-60": { + "question": "Berapa lama (dalam jam) durasi hari kerja yang tipikal di Indonesia? (Berikan hanya angka Arab (0~24) saja.)", + "en_question": "What is the duration (in hours) of a typical workday in your country? (Provide Arabic numerals (0~24) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 3 + }, + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-61": { + "question": "Pekerjaan apa yang paling disukai oleh perempuan di Indonesia?", + "en_question": "Which occupation is most preferred among females in your country?", + "annotations": [ + { + "answers": [ + "guru" + ], + "en_answers": [ + "teacher" + ], + "count": 2 + }, + { + "answers": [ + "ibu rumah tangga" + ], + "en_answers": [ + "housewife" + ], + "count": 2 + }, + { + "answers": [ + "sekretaris" + ], + "en_answers": [ + "secretary" + ], + "count": 1 + }, + { + "answers": [ + "administrasi" + ], + "en_answers": [ + "administration" + ], + "count": 1 + }, + { + "answers": [ + "dokter gigi" + ], + "en_answers": [ + "dentist" + ], + "count": 1 + }, + { + "answers": [ + "spg" + ], + "en_answers": [ + "sales promotion girl" + ], + "count": 1 + }, + { + "answers": [ + "model" + ], + "en_answers": [ + "model" + ], + "count": 1 + }, + { + "answers": [ + "karyawan", + "pegawai", + "pegawai kantor", + "karyawan kantor" + ], + "en_answers": [ + "employee", + "office employee" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-62": { + "question": "Pekerjaan apa yang paling disukai oleh pria di Indonesia?", + "en_question": "Which occupation is most preferred among males in your country?", + "annotations": [ + { + "answers": [ + "wiraswasta", + "wiraswasta/bisnis", + "bisnis", + "pengusaha", + "wirausahawan" + ], + "en_answers": [ + "entrepreneur", + "business" + ], + "count": 3 + }, + { + "answers": [ + "pemasaran" + ], + "en_answers": [ + "marketing" + ], + "count": 1 + }, + { + "answers": [ + "komputer" + ], + "en_answers": [ + "computer" + ], + "count": 1 + }, + { + "answers": [ + "teknologi" + ], + "en_answers": [ + "technology" + ], + "count": 1 + }, + { + "answers": [ + "konstruksi" + ], + "en_answers": [ + "construction" + ], + "count": 1 + }, + { + "answers": [ + "karyawan kantor", + "pegawai", + "pegawai kantor", + "karyawan" + ], + "en_answers": [ + "office employee" + ], + "count": 1 + }, + { + "answers": [ + "seniman" + ], + "en_answers": [ + "artist" + ], + "count": 1 + }, + { + "answers": [ + "mekanik" + ], + "en_answers": [ + "mechanic" + ], + "count": 1 + }, + { + "answers": [ + "arsitek" + ], + "en_answers": [ + "architect" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-17": { + "question": "Rata-rata, sejauh mana biasanya siswa mengejar pendidikan mereka di Indonesia? (misalnya, sekolah dasar, sekolah menengah atas)", + "en_question": "On average, how far do students typically pursue their education in your country? (e.g., elementary, high school)", + "annotations": [ + { + "answers": [ + "sekolah menengah atas", + "sma" + ], + "en_answers": [ + "high school" + ], + "count": 3 + }, + { + "answers": [ + "s1", + "sarjana s1", + "sarjana (s1)" + ], + "en_answers": [ + "bachelor", + "bachelor's degree" + ], + "count": 2 + }, + { + "answers": [ + "perguruan tinggi" + ], + "en_answers": [ + "higher education" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-24": { + "question": "Bahasa apa yang diajarkan di sekolah-sekolah di Indonesia selain Bahasa Inggris?", + "en_question": "What language is taught in schools in your country besides English?", + "annotations": [ + { + "answers": [ + "bahasa indonesia" + ], + "en_answers": [ + "indonesian language", + "indonesian" + ], + "count": 2 + }, + { + "answers": [ + "mandarin" + ], + "en_answers": [ + "mandarin" + ], + "count": 2 + }, + { + "answers": [ + "bahasa daerah" + ], + "en_answers": [ + "regional language" + ], + "count": 1 + }, + { + "answers": [ + "bahasa mandarin" + ], + "en_answers": [ + "mandarin language" + ], + "count": 1 + }, + { + "answers": [ + "jawa", + "bahasa jawa" + ], + "en_answers": [ + "javanese", + "javanese language" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-30": { + "question": "Pada hari apa saja sekolah-sekolah di Indonesia tutup?", + "en_question": "What days of the week are schools closed in your country?", + "annotations": [ + { + "answers": [ + "minggu", + "hari minggu" + ], + "en_answers": [ + "sunday" + ], + "count": 5 + }, + { + "answers": [ + "sabtu", + "hari sabtu" + ], + "en_answers": [ + "saturday" + ], + "count": 4 + }, + { + "answers": [ + "17 agustus" + ], + "en_answers": [ + "august 17" + ], + "count": 1 + }, + { + "answers": [ + "hari libur nasional", + "libur nasional" + ], + "en_answers": [ + "national holiday" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-32": { + "question": "Makanan apa yang biasanya disiapkan oleh tuan rumah untuk para tamu di Indonesia?", + "en_question": "What food do the hosts usually prepare for the guests in your country?", + "annotations": [ + { + "answers": [ + "kue basah" + ], + "en_answers": [ + "traditional snacks" + ], + "count": 2 + }, + { + "answers": [ + "biskuit" + ], + "en_answers": [ + "biscuit" + ], + "count": 1 + }, + { + "answers": [ + "kue tart" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "rendang" + ], + "en_answers": [ + "rendang" + ], + "count": 1 + }, + { + "answers": [ + "opor ayam" + ], + "en_answers": [ + "chicken opor" + ], + "count": 1 + }, + { + "answers": [ + "mie goreng" + ], + "en_answers": [ + "fried noodles" + ], + "count": 1 + }, + { + "answers": [ + "kue kering" + ], + "en_answers": [ + "cookies" + ], + "count": 1 + }, + { + "answers": [ + "jajanan pasar" + ], + "en_answers": [ + "market snacks" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-34": { + "question": "Apa minuman yang biasa diminum saat sarapan di Indonesia?", + "en_question": "What is the usual drink in the breakfast in your country?", + "annotations": [ + { + "answers": [ + "teh" + ], + "en_answers": [ + "tea" + ], + "count": 4 + }, + { + "answers": [ + "kopi" + ], + "en_answers": [ + "coffee" + ], + "count": 3 + }, + { + "answers": [ + "susu" + ], + "en_answers": [ + "milk" + ], + "count": 2 + }, + { + "answers": [ + "jus jeruk" + ], + "en_answers": [ + "orange juice" + ], + "count": 1 + }, + { + "answers": [ + "air putih" + ], + "en_answers": [ + "water" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-36": { + "question": "Selain makanan asli dari Indonesia, makanan dari negara mana yang lebih populer di Indonesia?", + "en_question": "Except the food original from your country, which country's food is more popular in your country?", + "annotations": [ + { + "answers": [ + "jepang" + ], + "en_answers": [ + "japan" + ], + "count": 4 + }, + { + "answers": [ + "korea" + ], + "en_answers": [ + "korea" + ], + "count": 2 + }, + { + "answers": [ + "tiongkok", + "china" + ], + "en_answers": [ + "china" + ], + "count": 2 + }, + { + "answers": [ + "amerika serikat", + "amerika" + ], + "en_answers": [ + "united states", + "us" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-39": { + "question": "Makanan apa yang biasanya disiapkan untuk piknik keluarga di Indonesia?", + "en_question": "What food is usually prepared for a family picnic in your country?", + "annotations": [ + { + "answers": [ + "nasi rames" + ], + "en_answers": [ + "rames rice" + ], + "count": 1 + }, + { + "answers": [ + "nasi" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "nasi kotak" + ], + "en_answers": [ + "rice box" + ], + "count": 1 + }, + { + "answers": [ + "kue ringan" + ], + "en_answers": [ + "snacks" + ], + "count": 1 + }, + { + "answers": [ + "nasi goreng" + ], + "en_answers": [ + "fried rice" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ki-pe-40": { + "question": "Makanan apa dari Indonesia yang dianggap menjijikkan oleh negara-negara lain di dunia?", + "en_question": "Which food from your country is considered disgusting by the rest of the world?", + "annotations": [ + { + "answers": [ + "durian", + "duren" + ], + "en_answers": [ + "durian" + ], + "count": 2 + }, + { + "answers": [ + "swikee" + ], + "en_answers": [ + "swikee" + ], + "count": 1 + }, + { + "answers": [ + "jeroan" + ], + "en_answers": [ + "innards" + ], + "count": 1 + }, + { + "answers": [ + "ceker ayam" + ], + "en_answers": [ + "chicken feet" + ], + "count": 1 + }, + { + "answers": [ + "seblak" + ], + "en_answers": [ + "seblak" + ], + "count": 1 + }, + { + "answers": [ + "nasi padang" + ], + "en_answers": [ + "padang rice" + ], + "count": 1 + }, + { + "answers": [ + "paniki" + ], + "en_answers": [ + "paniki" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-43": { + "question": "Apa nama roti yang populer di Indonesia?", + "en_question": "What is the name of the popular bread in your country?", + "annotations": [ + { + "answers": [ + "sari roti", + "sariroti" + ], + "en_answers": [ + "sari roti", + "sariroti" + ], + "count": 3 + }, + { + "answers": [ + "roti bakar" + ], + "en_answers": [ + "toast" + ], + "count": 1 + }, + { + "answers": [ + "lauw" + ], + "en_answers": [ + "lauw" + ], + "count": 1 + }, + { + "answers": [ + "tan ek tjoan" + ], + "en_answers": [ + "tan ek tjoan" + ], + "count": 1 + }, + { + "answers": [ + "roti tawar" + ], + "en_answers": [ + "white bread" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-51": { + "question": "Pukul berapa kantor pemerintahan di Indonesia tutup? (Berikan dalam format HH:MM (contoh, 18:00, 09:00).)", + "en_question": "What time of day are government offices closed in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "16:00" + ], + "en_answers": [ + "16:00" + ], + "count": 5 + }, + { + "answers": [ + "16:30" + ], + "en_answers": [ + "16:30" + ], + "count": 1 + }, + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-53": { + "question": "Pukul berapa biasanya kantor pemerintahan di Indonesia buka? (Berikan dalam format HH:MM (contoh, 18:00, 09:00).)", + "en_question": "What is the normal start time of government offices in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 4 + }, + { + "answers": [ + "07:00" + ], + "en_answers": [ + "07:00" + ], + "count": 2 + }, + { + "answers": [ + "08:30" + ], + "en_answers": [ + "08:30" + ], + "count": 1 + }, + { + "answers": [ + "07:30" + ], + "en_answers": [ + "07:30" + ], + "count": 1 + }, + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 1 + }, + { + "answers": [ + "10:00" + ], + "en_answers": [ + "10:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-01": { + "question": "Hari libur nasional apa yang memiliki durasi terpanjang di Indonesia?", + "en_question": "What national holiday has the longest duration in your country?", + "annotations": [ + { + "answers": [ + "idul fitri", + "lebaran", + "idulfitri" + ], + "en_answers": [ + "eid al-fitr" + ], + "count": 5 + }, + { + "answers": [ + "tahun baru" + ], + "en_answers": [ + "new year" + ], + "count": 1 + }, + { + "answers": [ + "natal" + ], + "en_answers": [ + "christmas" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-02": { + "question": "Apa saja kegiatan umum yang dilakukan orang-orang di Indonesia untuk merayakan Hari Kemerdekaan?", + "en_question": "What are the common activities people from your country do to celebrate Independence day?", + "annotations": [ + { + "answers": [ + "upacara bendera", + "upacara" + ], + "en_answers": [ + "flag ceremony", + "ceremony" + ], + "count": 5 + }, + { + "answers": [ + "lomba", + "lomba 17 an" + ], + "en_answers": [ + "race", + "contest", + "august 17th race" + ], + "count": 2 + }, + { + "answers": [ + "panjat pinang" + ], + "en_answers": [ + "panjat pinang" + ], + "count": 1 + }, + { + "answers": [ + "balap karung" + ], + "en_answers": [ + "balap karung" + ], + "count": 1 + }, + { + "answers": [ + "lomba makan kerupuk" + ], + "en_answers": [ + "cracker eating contest" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-04": { + "question": "Apa yang dipasang di depan rumah ketika ada anggota keluarga yang meninggal di Indonesia?", + "en_question": "What is installed in front of the house when a family member dies in your country?", + "annotations": [ + { + "answers": [ + "bendera kuning" + ], + "en_answers": [ + "yellow flag" + ], + "count": 2 + }, + { + "answers": [ + "tenda" + ], + "en_answers": [ + "tent" + ], + "count": 1 + }, + { + "answers": [ + "kain" + ], + "en_answers": [ + "cloth" + ], + "count": 1 + }, + { + "answers": [ + "karangan bunga" + ], + "en_answers": [ + "flower arrangement" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-05": { + "question": "Kapan biasanya perayaan atau upacara kehamilan diadakan di Indonesia?", + "en_question": "When is a pregnancy celebration or ceremony usually held in your country?", + "annotations": [ + { + "answers": [ + "1 minggu setelah melahirkan" + ], + "en_answers": [ + "1 week after giving birth" + ], + "count": 1 + }, + { + "answers": [ + "usia kehamilan 4 bulan", + "4 bulan kehamilan" + ], + "en_answers": [ + "4 months pregnancy" + ], + "count": 1 + }, + { + "answers": [ + "trimester kedua" + ], + "en_answers": [ + "second trimester" + ], + "count": 1 + }, + { + "answers": [ + "7 bulan sebelum kelahiran" + ], + "en_answers": [ + "7 months before birth" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Kik-in-06": { + "question": "Acara apa yang biasanya diadakan sebelum pernikahan di Indonesia?", + "en_question": "What event is usually held before a wedding in your country?", + "annotations": [ + { + "answers": [ + "sangjit", + "acara sangjit" + ], + "en_answers": [ + "sangjit" + ], + "count": 2 + }, + { + "answers": [ + "acara tunangan", + "tunangan", + "pertunangan", + "acara pertunangan" + ], + "en_answers": [ + "engagement", + "engagement ceremony" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Kik-in-07": { + "question": "Apa yang biasanya dibagikan kepada anak-anak selama Tahun Baru Imlek di Indonesia?", + "en_question": "What is usually shared to the children during (Lunar) New Year in your country?", + "annotations": [ + { + "answers": [ + "angpao", + "angpau", + "uang", + "angpao/uang" + ], + "en_answers": [ + "angpao", + "angpau", + "money" + ], + "count": 5 + }, + { + "answers": [ + "permen" + ], + "en_answers": [ + "candy" + ], + "count": 1 + }, + { + "answers": [ + "kue keranjang" + ], + "en_answers": [ + "basket cake" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-08": { + "question": "Apa saja kegiatan yang biasanya dilakukan beberapa hari sebelum Ramadan di Indonesia?", + "en_question": "What activities are usually done days before Ramadan in your country?", + "annotations": [ + { + "answers": [ + "puasa", + "puasa sunnah" + ], + "en_answers": [ + "fasting", + "\"sunnah\" fasting" + ], + "count": 2 + }, + { + "answers": [ + "mengunjungi makam keluarga" + ], + "en_answers": [ + "visiting the family grave" + ], + "count": 1 + }, + { + "answers": [ + "silahturahmi", + "silaturahmi" + ], + "en_answers": [ + "visiting family or relatives" + ], + "count": 1 + }, + { + "answers": [ + "belanja persiapan bulan puasa" + ], + "en_answers": [ + "shopping for ramadan preparation" + ], + "count": 1 + }, + { + "answers": [ + "membersihkan masjid" + ], + "en_answers": [ + "cleaning the mosque" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-10": { + "question": "Apa objek wisata paling populer bagi wisatawan asing di Indonesia?", + "en_question": "What is the most popular tourist attraction for foreign visitors in your country?", + "annotations": [ + { + "answers": [ + "candi borobudur" + ], + "en_answers": [ + "borobudur temple" + ], + "count": 2 + }, + { + "answers": [ + "bali" + ], + "en_answers": [ + "bali" + ], + "count": 2 + }, + { + "answers": [ + "pantai di bali", + "pantai kuta" + ], + "en_answers": [ + "beach in bali", + "kuta beach" + ], + "count": 2 + }, + { + "answers": [ + "pulau" + ], + "en_answers": [ + "islands" + ], + "count": 1 + }, + { + "answers": [ + "monas", + "monumen nasional" + ], + "en_answers": [ + "national monument" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-11": { + "question": "Apa situs keagamaan (candi, gereja, dll.) yang paling populer untuk pariwisata di Indonesia?", + "en_question": "What is the most popular religious sites (temple, church, etc.) for tourism in your country?", + "annotations": [ + { + "answers": [ + "candi borobudur", + "borobudur" + ], + "en_answers": [ + "borobudur temple", + "borobudur" + ], + "count": 5 + }, + { + "answers": [ + "candi prambanan", + "prambanan" + ], + "en_answers": [ + "prambanan temple" + ], + "count": 2 + }, + { + "answers": [ + "masjid istiqlal", + "majid istiqlal", + "istiqlal" + ], + "en_answers": [ + "istiqlal mosque" + ], + "count": 1 + }, + { + "answers": [ + "goa maria sendangsono", + "gua maria sendangsono" + ], + "en_answers": [ + "maria sendangsono cave" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-15": { + "question": "Pakaian apa yang biasanya dikenakan oleh wanita pada upacara wisuda di Indonesia?", + "en_question": "What clothes do women usually wear on graduation commencement ceremony in your country?", + "annotations": [ + { + "answers": [ + "kebaya" + ], + "en_answers": [ + "kebaya" + ], + "count": 3 + }, + { + "answers": [ + "pakaian kerja resmi" + ], + "en_answers": [ + "formal work attire" + ], + "count": 1 + }, + { + "answers": [ + "pakaian muslim" + ], + "en_answers": [ + "moslem clothing" + ], + "count": 1 + }, + { + "answers": [ + "batik" + ], + "en_answers": [ + "batik" + ], + "count": 1 + }, + { + "answers": [ + "toga" + ], + "en_answers": [ + "graduation gown" + ], + "count": 1 + }, + { + "answers": [ + "gaun" + ], + "en_answers": [ + "dress" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-16": { + "question": "Minuman apa yang biasa dikonsumsi di Indonesia ketika cuaca dingin?", + "en_question": "What drink is commonly consumed in your country when the weather is cold?", + "annotations": [ + { + "answers": [ + "teh", + "teh hangat" + ], + "en_answers": [ + "tea", + "warm tea" + ], + "count": 4 + }, + { + "answers": [ + "wedang jahe" + ], + "en_answers": [ + "wedang jahe" + ], + "count": 2 + }, + { + "answers": [ + "bandrek" + ], + "en_answers": [ + "bandrek" + ], + "count": 1 + }, + { + "answers": [ + "onde-onde", + "onde onde" + ], + "en_answers": [ + "onde-onde" + ], + "count": 1 + }, + { + "answers": [ + "kopi" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-17": { + "question": "Buah apa yang lebih sering dijual dan ditemukan selama bulan Ramadan di Indonesia?", + "en_question": "What fruit is more commonly sold and found during Ramadan in your country?", + "annotations": [ + { + "answers": [ + "belewah", + "blewah" + ], + "en_answers": [ + "cantaloupe" + ], + "count": 2 + }, + { + "answers": [ + "kurma" + ], + "en_answers": [ + "dates" + ], + "count": 2 + }, + { + "answers": [ + "timun suri" + ], + "en_answers": [ + "lemon cucumber" + ], + "count": 1 + }, + { + "answers": [ + "semangka" + ], + "en_answers": [ + "watermelon" + ], + "count": 1 + }, + { + "answers": [ + "kelapa muda" + ], + "en_answers": [ + "young coconut" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-24": { + "question": "Karbohidrat apa yang biasanya disajikan dengan ayam di restoran cepat saji di Indonesia?", + "en_question": "What carbohydrate is usually served with chicken in a fast-food restaurant in your country?", + "annotations": [ + { + "answers": [ + "nasi" + ], + "en_answers": [ + "rice" + ], + "count": 5 + }, + { + "answers": [ + "kentang", + "kentang goreng" + ], + "en_answers": [ + "potato", + "french fries" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-31": { + "question": "Apa olahraga bela diri paling terkenal di Indonesia?", + "en_question": "What is the most famous martial art sports in your country?", + "annotations": [ + { + "answers": [ + "pencak silat", + "pencaksilat" + ], + "en_answers": [ + "pencak silat" + ], + "count": 5 + }, + { + "answers": [ + "taekwondo" + ], + "en_answers": [ + "taekwondo" + ], + "count": 2 + }, + { + "answers": [ + "muay thai", + "muaythai" + ], + "en_answers": [ + "muay thai" + ], + "count": 1 + }, + { + "answers": [ + "karate" + ], + "en_answers": [ + "karate" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-34": { + "question": "Olahraga apa yang sering disiarkan di televisi nasional Indonesia?", + "en_question": "What sports are often broadcasted on national television in your country?", + "annotations": [ + { + "answers": [ + "bulu tangkis", + "badminton", + "bulutangkis" + ], + "en_answers": [ + "badminton" + ], + "count": 5 + }, + { + "answers": [ + "sepak bola" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-35": { + "question": "Olahraga apa yang populer di kalangan masyarakat Indonesia selama pandemi COVID-19?", + "en_question": "What sports were popular among people from your country during the COVID-19 pandemic?", + "annotations": [ + { + "answers": [ + "bersepeda", + "sepeda" + ], + "en_answers": [ + "cycling" + ], + "count": 3 + }, + { + "answers": [ + "berlari", + "jogging", + "lari" + ], + "en_answers": [ + "run", + "running", + "jogging" + ], + "count": 2 + }, + { + "answers": [ + "bulu tangkis", + "bulutangkis", + "badminton" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "golf" + ], + "en_answers": [ + "golf" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-36": { + "question": "Siapa pelatih sepak bola paling populer di Indonesia?", + "en_question": "Who is the most popular soccer coach in your country?", + "annotations": [ + { + "answers": [ + "shin tae yong", + "shin tae-yong" + ], + "en_answers": [ + "shin tae yong", + "shin tae-yong" + ], + "count": 4 + }, + { + "answers": [ + "indra sjafri" + ], + "en_answers": [ + "indra sjafri" + ], + "count": 2 + }, + { + "answers": [ + "rahmad darmawan" + ], + "en_answers": [ + "rahmad darmawan" + ], + "count": 1 + }, + { + "answers": [ + "benny dolo" + ], + "en_answers": [ + "benny dolo" + ], + "count": 1 + }, + { + "answers": [ + "alfred riedl" + ], + "en_answers": [ + "alfred riedl" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-37": { + "question": "Tim sepak bola mana di Indonesia yang terkenal karena persaingan sengit mereka? (misalnya ___ vs ___)", + "en_question": "What soccer teams in your country are famous for their intense rivalry? (e.g. ___ vs ___)", + "annotations": [ + { + "answers": [ + "persija vs persib", + "persib vs persija", + "persija jakarta vs persib bandung", + "persib bandung vs persija jakarta" + ], + "en_answers": [ + "persija vs persib", + "persib vs persija" + ], + "count": 3 + }, + { + "answers": [ + "arema vs persebaya", + "arema fc vs persebaya surabaya", + "persebaya vs arema", + "persebaya surabaya vs arema fc" + ], + "en_answers": [ + "arema vs persebaya", + "arema fc vs persebaya surabaya", + "persebaya vs arema" + ], + "count": 3 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-38": { + "question": "Apa nama-nama pendukung sepak bola di Indonesia yang terkenal karena persaingan sengit mereka? (misalnya ___ vs ___)", + "en_question": "What are the names of soccer supporters in your country who are famous for their intense rivalry? (e.g. ___ vs ___)", + "annotations": [ + { + "answers": [ + "jakmania vs bobotoh", + "persija vs persib", + "bobotoh vs jakmania", + "persib vs persija" + ], + "en_answers": [ + "jakmania vs bobotoh", + "bobotoh vs jakmania" + ], + "count": 4 + }, + { + "answers": [ + "jakmania vs psms fans club", + "persija vs psms", + "psms fans club vs jakmania" + ], + "en_answers": [ + "jakmania vs psms fans club", + "psms fans club vs jakmania" + ], + "count": 1 + }, + { + "answers": [ + "jakmania vs bonek", + "persija vs persebaya", + "bonek vs jakmania" + ], + "en_answers": [ + "jakmania vs bonek", + "bonek vs jakmania" + ], + "count": 1 + }, + { + "answers": [ + "persipuramania vs psms fans club", + "persipura vs psms", + "psms fans club vs persipuramania" + ], + "en_answers": [ + "persipuramania vs psms fans club", + "psms fans club vs persipuramania" + ], + "count": 1 + }, + { + "answers": [ + "jakmania vs aremania", + "persija vs arema", + "aremania vs jakmania" + ], + "en_answers": [ + "jakmania vs aremania", + "aremania vs jakmania" + ], + "count": 1 + }, + { + "answers": [ + "aremania vs bonek", + "arema vs persebaya", + "bonek vs aremania" + ], + "en_answers": [ + "aremania vs bonek", + "bonek vs aremania" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-40": { + "question": "Siapa pemain bulu tangkis pria paling terkenal di Indonesia?", + "en_question": "Who is the most famous male badminton player in your country?", + "annotations": [ + { + "answers": [ + "taufik hidayat" + ], + "en_answers": [ + "taufik hidayat" + ], + "count": 3 + }, + { + "answers": [ + "anthony sinisuka ginting", + "anthony ginting", + "ginting" + ], + "en_answers": [ + "anthony sinisuka ginting", + "anthony ginting" + ], + "count": 2 + }, + { + "answers": [ + "jonathan christie", + "jonatan christie" + ], + "en_answers": [ + "jonathan christie", + "jonatan christie" + ], + "count": 2 + }, + { + "answers": [ + "susi susanti" + ], + "en_answers": [ + "susi susanti" + ], + "count": 1 + }, + { + "answers": [ + "kevin sanjaya" + ], + "en_answers": [ + "kevin sanjaya" + ], + "count": 1 + }, + { + "answers": [ + "rudy hartono" + ], + "en_answers": [ + "rudy hartono" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-41": { + "question": "Siapa pemain bulu tangkis wanita paling terkenal di Indonesia?", + "en_question": "Who is the most famous female badminton player in your country?", + "annotations": [ + { + "answers": [ + "susi susanti", + "susi susilawati" + ], + "en_answers": [ + "susi susanti" + ], + "count": 5 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-44": { + "question": "Olahraga apa yang paling banyak mendapatkan dukungan dari pemerintah di Indonesia?", + "en_question": "What sport gets the most support from the government in your country?", + "annotations": [ + { + "answers": [ + "bulutangkis", + "badminton", + "bulu tangkis" + ], + "en_answers": [ + "badminton" + ], + "count": 4 + }, + { + "answers": [ + "sepak bola", + "sepakbola" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-45": { + "question": "Fasilitas lapangan olahraga apa saja yang biasanya tersedia di sekolah-sekolah di Indonesia?", + "en_question": "What sports field facilities are usually available at schools in your country?", + "annotations": [ + { + "answers": [ + "basket", + "lapangan basket", + "bola basket" + ], + "en_answers": [ + "basketball", + "basketball court" + ], + "count": 5 + }, + { + "answers": [ + "voli", + "volley", + "bola voli" + ], + "en_answers": [ + "volleyball" + ], + "count": 2 + }, + { + "answers": [ + "bulutangkis", + "bulu tangkis", + "badminton" + ], + "en_answers": [ + "badminton" + ], + "count": 2 + }, + { + "answers": [ + "sepak bola" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "futsal" + ], + "en_answers": [ + "futsal" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-02": { + "question": "Minuman kafe apa yang paling sering dinikmati oleh orang-orang di Indonesia?", + "en_question": "What cafe beverage do people from your country most commonly enjoy?", + "annotations": [ + { + "answers": [ + "kopi" + ], + "en_answers": [ + "coffee" + ], + "count": 2 + }, + { + "answers": [ + "capuccino", + "cappuccino" + ], + "en_answers": [ + "cappuccino" + ], + "count": 2 + }, + { + "answers": [ + "kopi tubruk" + ], + "en_answers": [ + "tubruk coffee" + ], + "count": 1 + }, + { + "answers": [ + "kopi filter" + ], + "en_answers": [ + "filtered coffee" + ], + "count": 1 + }, + { + "answers": [ + "teh manis" + ], + "en_answers": [ + "sweet tea" + ], + "count": 1 + }, + { + "answers": [ + "frappuccino" + ], + "en_answers": [ + "frappuccino" + ], + "count": 1 + }, + { + "answers": [ + "americano" + ], + "en_answers": [ + "americano" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-04": { + "question": "Apa makanan penawar mabuk yang paling disukai oleh orang-orang Indonesia?", + "en_question": "What is the preferred hangover cure food for people from your country?", + "annotations": [ + { + "answers": [ + "garam" + ], + "en_answers": [ + "salt" + ], + "count": 1 + }, + { + "answers": [ + "telur" + ], + "en_answers": [ + "egg" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 1, + "no-answer": 0 + } + }, + "Na-ko-05": { + "question": "Apa makanan khas yang biasa diantar di Indonesia?", + "en_question": "What is the typical delivery food in your country?", + "annotations": [ + { + "answers": [ + "nasi goreng" + ], + "en_answers": [ + "fried rice" + ], + "count": 2 + }, + { + "answers": [ + "ayam goreng" + ], + "en_answers": [ + "fried chicken" + ], + "count": 1 + }, + { + "answers": [ + "bakmi" + ], + "en_answers": [ + "noodles" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-07": { + "question": "Jenis daging apa yang paling banyak dikonsumsi oleh masyarakat Indonesia?", + "en_question": "What type of meat is consumed most by people from your country?", + "annotations": [ + { + "answers": [ + "ayam", + "daging ayam" + ], + "en_answers": [ + "chicken" + ], + "count": 5 + }, + { + "answers": [ + "sapi", + "daging sapi" + ], + "en_answers": [ + "beef" + ], + "count": 3 + }, + { + "answers": [ + "daging kambing", + "kambing" + ], + "en_answers": [ + "goat meat" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-08": { + "question": "Buah apa yang sering dimakan oleh orang-orang Indonesia di musim gugur?", + "en_question": "What fruit do people from your country often eat in the autumn season?", + "annotations": [ + { + "answers": [ + "duku" + ], + "en_answers": [ + "duku" + ], + "count": 1 + }, + { + "answers": [ + "rambutan" + ], + "en_answers": [ + "rambutan" + ], + "count": 1 + }, + { + "answers": [ + "durian" + ], + "en_answers": [ + "durian" + ], + "count": 1 + }, + { + "answers": [ + "mangga" + ], + "en_answers": [ + "mango" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 0, + "no-answer": 0 + } + }, + "Na-ko-09": { + "question": "Lauk apa yang paling sering disajikan di meja makan di Indonesia?", + "en_question": "What side dish is the most commonly served on a dining table in your country?", + "annotations": [ + { + "answers": [ + "tempe", + "tempe goreng" + ], + "en_answers": [ + "tempeh", + "fried tempeh" + ], + "count": 3 + }, + { + "answers": [ + "tahu" + ], + "en_answers": [ + "tofu" + ], + "count": 2 + }, + { + "answers": [ + "telur dadar", + "telur", + "telur sambal" + ], + "en_answers": [ + "omelette", + "egg" + ], + "count": 2 + }, + { + "answers": [ + "ayam", + "ayam goreng" + ], + "en_answers": [ + "chicken", + "fried chicken" + ], + "count": 2 + }, + { + "answers": [ + "sambal", + "telur sambal" + ], + "en_answers": [ + "chili sauce", + "sambal" + ], + "count": 2 + }, + { + "answers": [ + "nasi" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "lalapan" + ], + "en_answers": [ + "raw vegetables" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-11": { + "question": "Apa yang biasanya dimakan orang Indonesia saat menonton pertandingan sepak bola?", + "en_question": "What do people from your country eat while watching a soccer game?", + "annotations": [ + { + "answers": [ + "gorengan" + ], + "en_answers": [ + "fritters" + ], + "count": 2 + }, + { + "answers": [ + "keripik" + ], + "en_answers": [ + "chips" + ], + "count": 2 + }, + { + "answers": [ + "kacang-kacangan", + "kacang kacangan", + "kacang" + ], + "en_answers": [ + "peanuts" + ], + "count": 1 + }, + { + "answers": [ + "indomie", + "mi instan", + "mie instan" + ], + "en_answers": [ + "indomie", + "instant noodle" + ], + "count": 1 + }, + { + "answers": [ + "kentang goreng" + ], + "en_answers": [ + "french fries" + ], + "count": 1 + }, + { + "answers": [ + "nasi" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "tahu goreng" + ], + "en_answers": [ + "fried tofu" + ], + "count": 1 + }, + { + "answers": [ + "pisang goreng" + ], + "en_answers": [ + "fried banana" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-15": { + "question": "Apa makanan bergizi yang mewakili Indonesia?", + "en_question": "What is the representative nourishing food in your country?", + "annotations": [ + { + "answers": [ + "tempe" + ], + "en_answers": [ + "tempeh" + ], + "count": 2 + }, + { + "answers": [ + "sayur bayam" + ], + "en_answers": [ + "spinach" + ], + "count": 1 + }, + { + "answers": [ + "susu" + ], + "en_answers": [ + "milk" + ], + "count": 1 + }, + { + "answers": [ + "nasi" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "telur" + ], + "en_answers": [ + "egg" + ], + "count": 1 + }, + { + "answers": [ + "sayuran hijau" + ], + "en_answers": [ + "green vegetables" + ], + "count": 1 + }, + { + "answers": [ + "tahu" + ], + "en_answers": [ + "tofu" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-16": { + "question": "Siapa pemain sepak bola paling terkenal di Indonesia?", + "en_question": "Who is the most famous soccer player in your country?", + "annotations": [ + { + "answers": [ + "bambang pamungkas" + ], + "en_answers": [ + "bambang pamungkas" + ], + "count": 3 + }, + { + "answers": [ + "iwan kurniawan" + ], + "en_answers": [ + "iwan kurniawan" + ], + "count": 1 + }, + { + "answers": [ + "irfan bachdim" + ], + "en_answers": [ + "irfan bachdim" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-17": { + "question": "Olahraga apa yang disukai oleh siswa laki-laki saat waktu makan siang di sekolah di Indonesia?", + "en_question": "What sports do male students enjoy during lunch time at school in your country?", + "annotations": [ + { + "answers": [ + "sepakbola", + "sepak bola" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "bola basket", + "basket" + ], + "en_answers": [ + "basketball" + ], + "count": 3 + }, + { + "answers": [ + "bulu tangkis", + "bulutangkis", + "badminton" + ], + "en_answers": [ + "badminton" + ], + "count": 3 + }, + { + "answers": [ + "kasti" + ], + "en_answers": [ + "kastie", + "kastie ball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-18": { + "question": "Apa olahraga paling umum yang diikuti oleh para siswi selama pelajaran pendidikan jasmani di Indonesia?", + "en_question": "What is the most common sport girls participate in during physical education classes in your country?", + "annotations": [ + { + "answers": [ + "badminton", + "bulu tangkis", + "bulutangkis" + ], + "en_answers": [ + "badminton" + ], + "count": 2 + }, + { + "answers": [ + "senam" + ], + "en_answers": [ + "gymnastics" + ], + "count": 2 + }, + { + "answers": [ + "sepak bola", + "sepakbola" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "voli", + "volley" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "bola basket", + "basket" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-19": { + "question": "Siapa pemain bola voli paling populer di Indonesia?", + "en_question": "Who is the most popular volleyball player in your country?", + "annotations": [ + { + "answers": [ + "megawati" + ], + "en_answers": [ + "megawati" + ], + "count": 2 + }, + { + "answers": [ + "ratri wulandari" + ], + "en_answers": [ + "ratri wulandari" + ], + "count": 1 + } + ], + "idks": { + "idk": 6, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-20": { + "question": "Acara olahraga apa yang paling banyak didukung oleh masyarakat Indonesia dalam kompetisi internasional?", + "en_question": "What sports event do people from your country passionately support the most in international competitions?", + "annotations": [ + { + "answers": [ + "badminton", + "bulutangkis", + "bulu tangkis" + ], + "en_answers": [ + "badminton" + ], + "count": 4 + }, + { + "answers": [ + "sepak bola", + "sepakbola" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-22": { + "question": "Negara mana yang dianggap sebagai rival terbesar dalam pertandingan sepak bola untuk Indonesia?", + "en_question": "Which country is considered the biggest rival in soccer matches for your country?", + "annotations": [ + { + "answers": [ + "malaysia" + ], + "en_answers": [ + "malaysia" + ], + "count": 5 + }, + { + "answers": [ + "thailand" + ], + "en_answers": [ + "thailand" + ], + "count": 2 + }, + { + "answers": [ + "singapura" + ], + "en_answers": [ + "singapore" + ], + "count": 1 + }, + { + "answers": [ + "vietnam" + ], + "en_answers": [ + "vietnam" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-23": { + "question": "Jenis akademi olahraga apa yang paling banyak diikuti oleh anak-anak di Indonesia?", + "en_question": "What type of sports academies do children attend the most in your country?", + "annotations": [ + { + "answers": [ + "sepak bola", + "sepakbola" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "bela diri" + ], + "en_answers": [ + "self-defense", + "martial arts" + ], + "count": 1 + }, + { + "answers": [ + "bola basket", + "basket" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-24": { + "question": "Apa makanan yang paling sering dimakan di stadion olahraga saat menonton pertandingan di Indonesia?", + "en_question": "What is the most commonly eaten food in sports stadiums while watching games in your country?", + "annotations": [ + { + "answers": [ + "gorengan" + ], + "en_answers": [ + "fritters" + ], + "count": 2 + }, + { + "answers": [ + "popcorn" + ], + "en_answers": [ + "popcorn" + ], + "count": 1 + }, + { + "answers": [ + "sandwich" + ], + "en_answers": [ + "sandwich" + ], + "count": 1 + }, + { + "answers": [ + "kentang goreng" + ], + "en_answers": [ + "french fries" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Na-ko-25": { + "question": "Apa saja olahraga yang umum dimainkan pada hari olahraga di sekolah di Indonesia?", + "en_question": "What are the typical sports played in your country's school sports day?", + "annotations": [ + { + "answers": [ + "sepak bola", + "sepakbola" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "bulutangkis", + "bulutangkis/badminton", + "bulu tangkis", + "badminton" + ], + "en_answers": [ + "badminton" + ], + "count": 3 + }, + { + "answers": [ + "basket", + "bola basket" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "lomba lari", + "lari" + ], + "en_answers": [ + "running" + ], + "count": 1 + }, + { + "answers": [ + "atletik" + ], + "en_answers": [ + "athletics" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-26": { + "question": "Apa olahraga populer di kalangan penduduk usia paruh baya di Indonesia?", + "en_question": "What are the popular sports among the middle-aged population in your country?", + "annotations": [ + { + "answers": [ + "bulutangkis", + "badminton", + "bulu tangkis" + ], + "en_answers": [ + "badminton" + ], + "count": 3 + }, + { + "answers": [ + "senam", + "senam jantung" + ], + "en_answers": [ + "gymnastics" + ], + "count": 2 + }, + { + "answers": [ + "yoga" + ], + "en_answers": [ + "yoga" + ], + "count": 1 + }, + { + "answers": [ + "voli", + "bola voli" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "futsal" + ], + "en_answers": [ + "futsal" + ], + "count": 1 + }, + { + "answers": [ + "bersepeda" + ], + "en_answers": [ + "cycling" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-28": { + "question": "Siapa atlet olahraga musim dingin yang paling populer di Indonesia?", + "en_question": "Who is the most popular winter sports player in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Na-ko-29": { + "question": "Siapa perenang paling terkenal di Indonesia?", + "en_question": "Who is the most famous swimmer in your country?", + "annotations": [ + { + "answers": [ + "gede sudartawa", + "i gede siman sudartawa" + ], + "en_answers": [ + "gede sudartawa", + "i gede siman sudartawa" + ], + "count": 2 + }, + { + "answers": [ + "gerald item" + ], + "en_answers": [ + "gerald item" + ], + "count": 1 + }, + { + "answers": [ + "john item" + ], + "en_answers": [ + "john item" + ], + "count": 1 + }, + { + "answers": [ + "masniari wolf" + ], + "en_answers": [ + "masniari wolf" + ], + "count": 1 + }, + { + "answers": [ + "yessy yosaputra" + ], + "en_answers": [ + "yessy yosaputra" + ], + "count": 1 + } + ], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-30": { + "question": "Apa game e-sports paling populer di Indonesia?", + "en_question": "What is the most popular e-sports game in your country?", + "annotations": [ + { + "answers": [ + "mobile legend", + "mobile legends" + ], + "en_answers": [ + "mobile legend", + "mobile legends" + ], + "count": 3 + }, + { + "answers": [ + "pubg" + ], + "en_answers": [ + "pubg" + ], + "count": 2 + }, + { + "answers": [ + "clash of titans" + ], + "en_answers": [ + "clash of titans" + ], + "count": 1 + }, + { + "answers": [ + "dota" + ], + "en_answers": [ + "dota" + ], + "count": 1 + }, + { + "answers": [ + "free fire" + ], + "en_answers": [ + "free fire" + ], + "count": 1 + }, + { + "answers": [ + "fifa e-sport" + ], + "en_answers": [ + "fifa e-sport" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-33": { + "question": "Makanan simbolis apa yang biasa dimakan oleh orang-orang Indonesia pada Tahun Baru Imlek?", + "en_question": "What symbolic food do people from your country eat on (Lunar) New Year?", + "annotations": [ + { + "answers": [ + "mie goreng", + "mi goreng", + "mie", + "mi" + ], + "en_answers": [ + "fried noodles", + "noodles" + ], + "count": 3 + }, + { + "answers": [ + "ikan rebus", + "ikan kukus", + "ikan" + ], + "en_answers": [ + "boiled fish", + "steamed fish", + "fish" + ], + "count": 3 + }, + { + "answers": [ + "kue keranjang" + ], + "en_answers": [ + "basket cake" + ], + "count": 2 + }, + { + "answers": [ + "kue mangkok" + ], + "en_answers": [ + "mangkok cake" + ], + "count": 1 + }, + { + "answers": [ + "dimsum", + "dim sum" + ], + "en_answers": [ + "dimsum", + "dim sum" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-37": { + "question": "Apa tempat liburan domestik yang paling populer bagi orang-orang dari Indonesia?", + "en_question": "What is the most popular domestic vacation spot for people from your country?", + "annotations": [ + { + "answers": [ + "bali" + ], + "en_answers": [ + "bali" + ], + "count": 4 + }, + { + "answers": [ + "raja ampat" + ], + "en_answers": [ + "raja ampat" + ], + "count": 1 + }, + { + "answers": [ + "lombok" + ], + "en_answers": [ + "lombok" + ], + "count": 1 + }, + { + "answers": [ + "jogjakarta", + "yogyakarta" + ], + "en_answers": [ + "yogyakarta" + ], + "count": 1 + }, + { + "answers": [ + "puncak" + ], + "en_answers": [ + "puncak" + ], + "count": 1 + }, + { + "answers": [ + "labuan bajo" + ], + "en_answers": [ + "labuan bajo" + ], + "count": 1 + }, + { + "answers": [ + "jakarta" + ], + "en_answers": [ + "jakarta" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-38": { + "question": "Apa hadiah pernikahan yang paling umum diberikan antara pengantin pria dan wanita di Indonesia?", + "en_question": "What is the most common wedding gift between bride and groom in your country?", + "annotations": [ + { + "answers": [ + "uang" + ], + "en_answers": [ + "money" + ], + "count": 4 + }, + { + "answers": [ + "perhiasan" + ], + "en_answers": [ + "jewelry" + ], + "count": 1 + }, + { + "answers": [ + "emas" + ], + "en_answers": [ + "gold" + ], + "count": 1 + }, + { + "answers": [ + "sprei" + ], + "en_answers": [ + "bed sheet" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-39": { + "question": "Apa yang biasanya diberikan sebagai ucapan selamat ketika menghadiri pernikahan seorang teman di Indonesia?", + "en_question": "What is typically given as a congratulatory gesture when attending a friend's wedding in your country?", + "annotations": [ + { + "answers": [ + "uang", + "duit" + ], + "en_answers": [ + "money" + ], + "count": 3 + }, + { + "answers": [ + "kado" + ], + "en_answers": [ + "gift" + ], + "count": 1 + }, + { + "answers": [ + "bunga" + ], + "en_answers": [ + "flower" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-40": { + "question": "Berapa lama (dalam hari) biasanya sebuah pemakaman berlangsung di Indonesia? (Berikan angka Arab (misalnya, 12) saja.)", + "en_question": "How long (in days) does a funeral typically last in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 3 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-41": { + "question": "Apa yang harus Anda siapkan sebagai tanda belasungkawa ketika menghadiri pemakaman di Indonesia?", + "en_question": "What should you prepare as a condolence offering when attending a funeral in your country?", + "annotations": [ + { + "answers": [ + "uang tunai", + "uang dalam amplop", + "uang duka", + "amplop" + ], + "en_answers": [ + "cash", + "money", + "money in an envelope", + "condolence money" + ], + "count": 5 + }, + { + "answers": [ + "bunga" + ], + "en_answers": [ + "flower" + ], + "count": 2 + }, + { + "answers": [ + "buku yaasiin", + "buku yasin" + ], + "en_answers": [ + "yasin book" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-42": { + "question": "Jenis makanan apa yang biasanya disediakan di rumah duka di Indonesia?", + "en_question": "What type of food is commonly provided at funeral parlors in your country?", + "annotations": [ + { + "answers": [ + "roti" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "kacang goreng" + ], + "en_answers": [ + "fried peanuts" + ], + "count": 1 + }, + { + "answers": [ + "makanan ringan" + ], + "en_answers": [ + "snack" + ], + "count": 1 + }, + { + "answers": [ + "kwaci" + ], + "en_answers": [ + "sunflower seeds" + ], + "count": 1 + }, + { + "answers": [ + "kue" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "nasi kotak" + ], + "en_answers": [ + "rice box" + ], + "count": 1 + }, + { + "answers": [ + "gorengan" + ], + "en_answers": [ + "fritters" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-43": { + "question": "Apa yang dilakukan orang-orang di Indonesia di pagi hari Tahun Baru Imlek?", + "en_question": "What do people do in your country in the morning of the (Lunar) New Year?", + "annotations": [ + { + "answers": [ + "mengunjungi rumah keluarga", + "bertamu", + "berkunjung ke rumah saudara yg lebih tua" + ], + "en_answers": [ + "visiting family's house", + "visiting relatives", + "visiting the house of an older relative" + ], + "count": 3 + }, + { + "answers": [ + "sungkem", + "sembayang dan sungkem sama orang tua dan pembagian ampao", + "hormat orang tua", + "sungkem ke orang tua" + ], + "en_answers": [ + "paying respects to parents or elderly", + "respect elders" + ], + "count": 2 + }, + { + "answers": [ + "pembagian angpao", + "sembayang dan sungkem sama orang tua dan pembagian ampao", + "memberi angpao" + ], + "en_answers": [ + "giving angpao" + ], + "count": 2 + }, + { + "answers": [ + "sembahyang", + "sembayang dan sungkem sama orang tua dan pembagian ampao", + "beribadah", + "berdoa", + "ibadah", + "doa" + ], + "en_answers": [ + "praying" + ], + "count": 1 + }, + { + "answers": [ + "mengucapkan selamat tahun baru" + ], + "en_answers": [ + "wishing a happy new year" + ], + "count": 1 + }, + { + "answers": [ + "makan-makan", + "makan makan", + "makan bersama" + ], + "en_answers": [ + "eating together" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-44": { + "question": "Pada hari apa terjadi kemacetan lalu lintas terparah di seluruh Indonesia?", + "en_question": "When is the day with your country's most severe nationwide traffic congestion?", + "annotations": [ + { + "answers": [ + "senin" + ], + "en_answers": [ + "monday" + ], + "count": 2 + }, + { + "answers": [ + "mudik lebaran", + "lebaran" + ], + "en_answers": [ + "eid homecoming", + "eid al-fitr" + ], + "count": 2 + }, + { + "answers": [ + "jumat" + ], + "en_answers": [ + "friday" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-45": { + "question": "Apa destinasi bulan madu paling populer di Indonesia?", + "en_question": "What is the most popular honeymoon destination in your country?", + "annotations": [ + { + "answers": [ + "bali" + ], + "en_answers": [ + "bali" + ], + "count": 5 + }, + { + "answers": [ + "lombok" + ], + "en_answers": [ + "lombok" + ], + "count": 3 + }, + { + "answers": [ + "bandung" + ], + "en_answers": [ + "bandung" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-05": { + "question": "Apa hari libur nasional yang paling penting di Indonesia?", + "en_question": "What is the most important national holiday in your country?", + "annotations": [ + { + "answers": [ + "idul fitri", + "idulfitri" + ], + "en_answers": [ + "eid al-fitr" + ], + "count": 2 + }, + { + "answers": [ + "kemerdekaan 17 agustus" + ], + "en_answers": [ + "independence august 17", + "independence day" + ], + "count": 1 + }, + { + "answers": [ + "idul adha" + ], + "en_answers": [ + "eid al-adha" + ], + "count": 1 + }, + { + "answers": [ + "lebaran" + ], + "en_answers": [ + "eid" + ], + "count": 1 + }, + { + "answers": [ + "hari pemilu" + ], + "en_answers": [ + "election day" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-06": { + "question": "Apa yang biasanya orang Indonesia makan selama bulan Ramadan?", + "en_question": "What do people from your country eat in Ramadan?", + "annotations": [ + { + "answers": [ + "tajil", + "takjil" + ], + "en_answers": [ + "takjil" + ], + "count": 1 + }, + { + "answers": [ + "es buah" + ], + "en_answers": [ + "fruit ice" + ], + "count": 1 + }, + { + "answers": [ + "ketupat" + ], + "en_answers": [ + "ketupat" + ], + "count": 1 + }, + { + "answers": [ + "kurma", + "korma" + ], + "en_answers": [ + "dates" + ], + "count": 1 + }, + { + "answers": [ + "cendol" + ], + "en_answers": [ + "cendol" + ], + "count": 1 + }, + { + "answers": [ + "kolak" + ], + "en_answers": [ + "kolak" + ], + "count": 1 + }, + { + "answers": [ + "lontong sayur" + ], + "en_answers": [ + "vegetable lontong" + ], + "count": 1 + }, + { + "answers": [ + "rendang" + ], + "en_answers": [ + "rendang" + ], + "count": 1 + }, + { + "answers": [ + "gule", + "gulai" + ], + "en_answers": [ + "curry" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-09": { + "question": "Apa yang biasanya orang Indonesia makan saat Idul Fitri?", + "en_question": "What do people from your country eat in Eid ul Fitr?", + "annotations": [ + { + "answers": [ + "ketupat" + ], + "en_answers": [ + "ketupat" + ], + "count": 3 + }, + { + "answers": [ + "opor ayam" + ], + "en_answers": [ + "opor ayam", + "indonesian chicken white curry" + ], + "count": 2 + }, + { + "answers": [ + "nasi tumpeng" + ], + "en_answers": [ + "tumpeng rice" + ], + "count": 1 + }, + { + "answers": [ + "korma", + "kurma" + ], + "en_answers": [ + "dates" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-10": { + "question": "Apa yang biasanya orang Indonesia makan di Hari Raya Idul Adha?", + "en_question": "What do people from your country eat in Eid ul Adha?", + "annotations": [ + { + "answers": [ + "ketupat", + "ketupat gulai" + ], + "en_answers": [ + "ketupat" + ], + "count": 3 + }, + { + "answers": [ + "gulai", + "ketupat gulai", + "gule" + ], + "en_answers": [ + "curry" + ], + "count": 2 + }, + { + "answers": [ + "gulai kambing", + "gule kambing" + ], + "en_answers": [ + "lamb curry" + ], + "count": 1 + }, + { + "answers": [ + "sate" + ], + "en_answers": [ + "satay" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-11": { + "question": "Kemana orang-orang dari Indonesia pergi untuk merayakan Tahun Baru?", + "en_question": "Where do people from your country go to celebrate New Year's Day?", + "annotations": [ + { + "answers": [ + "di rumah saja", + "banyak yang tetep di rumah saja.", + "rumah" + ], + "en_answers": [ + "stay at home", + "home", + "house" + ], + "count": 2 + }, + { + "answers": [ + "luar negeri" + ], + "en_answers": [ + "abroad" + ], + "count": 1 + }, + { + "answers": [ + "alun-alun" + ], + "en_answers": [ + "town square" + ], + "count": 1 + }, + { + "answers": [ + "restoran" + ], + "en_answers": [ + "restaurant" + ], + "count": 1 + }, + { + "answers": [ + "rumah kerabat" + ], + "en_answers": [ + "relative's house" + ], + "count": 1 + }, + { + "answers": [ + "mall", + "ke mall" + ], + "en_answers": [ + "mall" + ], + "count": 1 + }, + { + "answers": [ + "monas", + "monumen nasional" + ], + "en_answers": [ + "national monument" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-14": { + "question": "Di mana sebuah keluarga berkumpul untuk perayaan Idul Fitri di Indonesia?", + "en_question": "Where do a family gather for Eid festivities in your country?", + "annotations": [ + { + "answers": [ + "rumah orang tua", + "rumah ayah/ibu", + "di rumah orang tua di kampung" + ], + "en_answers": [ + "parents' house", + "at the parents' house in the village" + ], + "count": 2 + }, + { + "answers": [ + "rumah anggota keluarga paling tua" + ], + "en_answers": [ + "house of the oldest family member" + ], + "count": 1 + }, + { + "answers": [ + "kampung halaman" + ], + "en_answers": [ + "hometown" + ], + "count": 1 + }, + { + "answers": [ + "rumah nenek" + ], + "en_answers": [ + "grandmother's house" + ], + "count": 1 + }, + { + "answers": [ + "di rumah keluarga" + ], + "en_answers": [ + "at the family home" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-16": { + "question": "Kapan akhir pekan di Indonesia (misalnya Senin, Selasa)?", + "en_question": "When is the weekend in your country (e.g. Monday, Tuesday)?", + "annotations": [ + { + "answers": [ + "minggu" + ], + "en_answers": [ + "sunday" + ], + "count": 5 + }, + { + "answers": [ + "sabtu" + ], + "en_answers": [ + "saturday" + ], + "count": 4 + }, + { + "answers": [ + "jumat" + ], + "en_answers": [ + "friday" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-17": { + "question": "Pada pukul berapa kebanyakan orang mulai bekerja di Indonesia? (Berikan dalam format JJ:MM (contoh, 18:00, 09:00).)", + "en_question": "At what time do most people start work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 3 + }, + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 2 + }, + { + "answers": [ + "07:00" + ], + "en_answers": [ + "07:00" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-18": { + "question": "Pada pukul berapa kebanyakan orang selesai bekerja di Indonesia? (Berikan dalam format JJ:MM (contoh, 18:00, 09:00).)", + "en_question": "At what time do most people finish work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 5 + }, + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 4 + }, + { + "answers": [ + "19:00" + ], + "en_answers": [ + "19:00" + ], + "count": 1 + }, + { + "answers": [ + "16:30" + ], + "en_answers": [ + "16:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-20": { + "question": "Apa yang dianggap sebagai pekerjaan yang aman di Indonesia?", + "en_question": "What is considered to be a secure job in your country?", + "annotations": [ + { + "answers": [ + "pegawai negeri", + "pegawai negeri sipil", + "pns" + ], + "en_answers": [ + "civil servant" + ], + "count": 2 + }, + { + "answers": [ + "guru" + ], + "en_answers": [ + "teacher" + ], + "count": 1 + }, + { + "answers": [ + "administrasi" + ], + "en_answers": [ + "administration" + ], + "count": 1 + }, + { + "answers": [ + "insinyur" + ], + "en_answers": [ + "engineer" + ], + "count": 1 + }, + { + "answers": [ + "dokter" + ], + "en_answers": [ + "doctor" + ], + "count": 1 + }, + { + "answers": [ + "pengacara" + ], + "en_answers": [ + "lawyer" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-24": { + "question": "Kota mana yang merupakan pusat komersial utama di Indonesia?", + "en_question": "Which city is the primary commercial hub in your country?", + "annotations": [ + { + "answers": [ + "jakarta" + ], + "en_answers": [ + "jakarta" + ], + "count": 5 + }, + { + "answers": [ + "surabaya" + ], + "en_answers": [ + "surabaya" + ], + "count": 2 + }, + { + "answers": [ + "bandung" + ], + "en_answers": [ + "bandung" + ], + "count": 2 + }, + { + "answers": [ + "medan" + ], + "en_answers": [ + "medan" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-25": { + "question": "Apa industri yang memberikan gaji terbaik di Indonesia?", + "en_question": "What is the industry that pays the best in your country?", + "annotations": [ + { + "answers": [ + "bank" + ], + "en_answers": [ + "bank" + ], + "count": 1 + }, + { + "answers": [ + "investasi" + ], + "en_answers": [ + "investment" + ], + "count": 1 + }, + { + "answers": [ + "telekomunikasi" + ], + "en_answers": [ + "telecommunications" + ], + "count": 1 + }, + { + "answers": [ + "perminyakan" + ], + "en_answers": [ + "oil" + ], + "count": 1 + }, + { + "answers": [ + "teknik industri" + ], + "en_answers": [ + "industrial engineering" + ], + "count": 1 + }, + { + "answers": [ + "pertambangan" + ], + "en_answers": [ + "mining" + ], + "count": 1 + }, + { + "answers": [ + "entertainment" + ], + "en_answers": [ + "entertainment" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-26": { + "question": "Apa perusahaan publik yang paling terkenal di Indonesia?", + "en_question": "What is the most famous public corporation in your country?", + "annotations": [ + { + "answers": [ + "indofood" + ], + "en_answers": [ + "indofood" + ], + "count": 3 + }, + { + "answers": [ + "telkom", + "telkom indonesia" + ], + "en_answers": [ + "telkom", + "telkom indonesia" + ], + "count": 2 + }, + { + "answers": [ + "bca" + ], + "en_answers": [ + "bca", + "bank central asia" + ], + "count": 1 + }, + { + "answers": [ + "bank mandiri" + ], + "en_answers": [ + "bank mandiri" + ], + "count": 1 + }, + { + "answers": [ + "sinarmas" + ], + "en_answers": [ + "sinarmas" + ], + "count": 1 + }, + { + "answers": [ + "bank rakyat indonesia" + ], + "en_answers": [ + "bank rakyat indonesia", + "bri" + ], + "count": 1 + }, + { + "answers": [ + "gojek" + ], + "en_answers": [ + "gojek" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-31": { + "question": "Apa hidangan paling terkenal di Indonesia?", + "en_question": "What is the most famous dish in your country?", + "annotations": [ + { + "answers": [ + "nasi goreng" + ], + "en_answers": [ + "fried rice" + ], + "count": 4 + }, + { + "answers": [ + "rendang" + ], + "en_answers": [ + "rendang" + ], + "count": 3 + }, + { + "answers": [ + "nasi padang" + ], + "en_answers": [ + "padang rice" + ], + "count": 1 + }, + { + "answers": [ + "ayam goreng" + ], + "en_answers": [ + "fried chicken" + ], + "count": 1 + }, + { + "answers": [ + "rawon" + ], + "en_answers": [ + "rawon" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-32": { + "question": "Apa yang biasanya orang makan untuk sarapan di Indonesia?", + "en_question": "What do people usually have for breakfast in your country?", + "annotations": [ + { + "answers": [ + "nasi goreng" + ], + "en_answers": [ + "fried rice" + ], + "count": 2 + }, + { + "answers": [ + "bubur" + ], + "en_answers": [ + "porridge" + ], + "count": 2 + }, + { + "answers": [ + "nasi kuning" + ], + "en_answers": [ + "yellow rice" + ], + "count": 2 + }, + { + "answers": [ + "nasi" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "mie kuah" + ], + "en_answers": [ + "noodle soup" + ], + "count": 1 + }, + { + "answers": [ + "bubur ayam" + ], + "en_answers": [ + "chicken porridge" + ], + "count": 1 + }, + { + "answers": [ + "telur ceplok" + ], + "en_answers": [ + "fried egg" + ], + "count": 1 + }, + { + "answers": [ + "roti" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "nasi uduk" + ], + "en_answers": [ + "coconut milk rice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-33": { + "question": "Kapan orang biasanya makan siang di Indonesia? (Berikan dalam format JJ:MM (contoh, 18:00, 09:00).)", + "en_question": "When do people usually have lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "12:00" + ], + "en_answers": [ + "12:00" + ], + "count": 5 + }, + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 2 + }, + { + "answers": [ + "12:30" + ], + "en_answers": [ + "12:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-34": { + "question": "Apa yang biasanya tidak dapat dipisahkan dari makanan di Indonesia?", + "en_question": "What is typically indispensable in meals in your country?", + "annotations": [ + { + "answers": [ + "sambal" + ], + "en_answers": [ + "chili paste", + "sambal" + ], + "count": 5 + }, + { + "answers": [ + "nasi" + ], + "en_answers": [ + "rice" + ], + "count": 2 + }, + { + "answers": [ + "penyedap", + "msg" + ], + "en_answers": [ + "flavor enhancer", + "msg" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-36": { + "question": "Apa makanan perayaan yang khas di Indonesia?", + "en_question": "What is a typical festive meal in your country?", + "annotations": [ + { + "answers": [ + "nasi tumpeng", + "tumpeng" + ], + "en_answers": [ + "tumpeng rice" + ], + "count": 4 + }, + { + "answers": [ + "ketupat" + ], + "en_answers": [ + "ketupat" + ], + "count": 1 + }, + { + "answers": [ + "rendang" + ], + "en_answers": [ + "rendang" + ], + "count": 1 + }, + { + "answers": [ + "opor" + ], + "en_answers": [ + "opor", + "indonesian white curry" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-37": { + "question": "Buah apa yang biasanya ditawarkan kepada turis/pengunjung dari luar negeri di Indonesia?", + "en_question": "Which fruit do people usually offer tourists/visitors from abroad in your country?", + "annotations": [ + { + "answers": [ + "salak" + ], + "en_answers": [ + "snake fruit" + ], + "count": 4 + }, + { + "answers": [ + "rambutan" + ], + "en_answers": [ + "rambutan" + ], + "count": 3 + }, + { + "answers": [ + "durian", + "duren" + ], + "en_answers": [ + "durian" + ], + "count": 3 + }, + { + "answers": [ + "sawo" + ], + "en_answers": [ + "sapodilla" + ], + "count": 1 + }, + { + "answers": [ + "nangka" + ], + "en_answers": [ + "jackfruit" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-38": { + "question": "Makanan apa yang biasanya orang tawarkan sebagai amal di Indonesia?", + "en_question": "Which food do people usually offer as charity in your country?", + "annotations": [ + { + "answers": [ + "nasi bungkus" + ], + "en_answers": [ + "rice box" + ], + "count": 2 + }, + { + "answers": [ + "beras" + ], + "en_answers": [ + "rice" + ], + "count": 2 + }, + { + "answers": [ + "sapi", + "daging sapi" + ], + "en_answers": [ + "beef" + ], + "count": 2 + }, + { + "answers": [ + "ayam goreng" + ], + "en_answers": [ + "fried chicken" + ], + "count": 1 + }, + { + "answers": [ + "sembako" + ], + "en_answers": [ + "basic necessities" + ], + "count": 1 + }, + { + "answers": [ + "kurma" + ], + "en_answers": [ + "dates" + ], + "count": 1 + }, + { + "answers": [ + "daging kambing" + ], + "en_answers": [ + "goat meat" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-39": { + "question": "Apa makanan cepat saji termurah di Indonesia?", + "en_question": "What is the cheapest fast food in your country?", + "annotations": [ + { + "answers": [ + "kfc", + "ayam goreng" + ], + "en_answers": [ + "kfc", + "fried chicken" + ], + "count": 2 + }, + { + "answers": [ + "bakso" + ], + "en_answers": [ + "meatball" + ], + "count": 1 + }, + { + "answers": [ + "indomie" + ], + "en_answers": [ + "indomie" + ], + "count": 1 + }, + { + "answers": [ + "warteg" + ], + "en_answers": [ + "warteg" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-43": { + "question": "Apa yang biasanya orang minum dengan teh di Indonesia?", + "en_question": "What do people usually have with tea in your country?", + "annotations": [ + { + "answers": [ + "makanan ringan" + ], + "en_answers": [ + "snack" + ], + "count": 1 + }, + { + "answers": [ + "pisang goreng" + ], + "en_answers": [ + "fried banana" + ], + "count": 1 + }, + { + "answers": [ + "gorengan" + ], + "en_answers": [ + "fritters" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-44": { + "question": "Apa yang biasanya orang minum dengan kopi di Indonesia?", + "en_question": "What do people have with coffee in your country?", + "annotations": [ + { + "answers": [ + "kue tradisional" + ], + "en_answers": [ + "traditional cake" + ], + "count": 1 + }, + { + "answers": [ + "gorengan" + ], + "en_answers": [ + "fritters" + ], + "count": 1 + }, + { + "answers": [ + "jajanan pasar" + ], + "en_answers": [ + "market snacks" + ], + "count": 1 + }, + { + "answers": [ + "kue kering" + ], + "en_answers": [ + "cookies" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-02": { + "question": "Apa makanan tradisional yang paling populer di Indonesia?", + "en_question": "What is the most popular traditional food in your country?", + "annotations": [ + { + "answers": [ + "soto" + ], + "en_answers": [ + "soto" + ], + "count": 3 + }, + { + "answers": [ + "rendang" + ], + "en_answers": [ + "rendang" + ], + "count": 3 + }, + { + "answers": [ + "nasi ayam" + ], + "en_answers": [ + "chicken rice" + ], + "count": 1 + }, + { + "answers": [ + "satai" + ], + "en_answers": [ + "satay" + ], + "count": 1 + }, + { + "answers": [ + "nasi goreng" + ], + "en_answers": [ + "fried rice" + ], + "count": 1 + }, + { + "answers": [ + "opor" + ], + "en_answers": [ + "opor", + "indonesian chicken white curry" + ], + "count": 1 + }, + { + "answers": [ + "es cendol" + ], + "en_answers": [ + "cendol ice" + ], + "count": 1 + }, + { + "answers": [ + "gudeg" + ], + "en_answers": [ + "gudeg" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-04": { + "question": "Apa saus cocolan yang paling populer di Indonesia?", + "en_question": "What is the most popular dipping sauce in your country?", + "annotations": [ + { + "answers": [ + "saus sambal", + "sambal", + "sambal abc" + ], + "en_answers": [ + "chili sauce", + "chili paste", + "abc chili sauce" + ], + "count": 4 + }, + { + "answers": [ + "terasi", + "sambal terasi" + ], + "en_answers": [ + "shrimp paste" + ], + "count": 1 + }, + { + "answers": [ + "saus kacang pedas" + ], + "en_answers": [ + "spicy peanut sauce" + ], + "count": 1 + }, + { + "answers": [ + "kecap manis abc", + "kecap manis" + ], + "en_answers": [ + "abc sweet soy sauce" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-08": { + "question": "Apa makanan yang paling sering dikonsumsi saat puasa untuk umat Kristen di Indonesia?", + "en_question": "What food is most often consumed during Christian fasting in your country?", + "annotations": [ + { + "answers": [ + "nasi" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "roti" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "ikan" + ], + "en_answers": [ + "fish" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "not-applicable": 1, + "no-answer": 1 + } + }, + "New-am-15": { + "question": "Makanan apa yang biasanya disiapkan ketika seorang ibu melahirkan di Indonesia?", + "en_question": "What food is usually prepared when mothers give birth in your country?", + "annotations": [ + { + "answers": [ + "teh jahe" + ], + "en_answers": [ + "ginger tea" + ], + "count": 1 + }, + { + "answers": [ + "bubur" + ], + "en_answers": [ + "porridge" + ], + "count": 1 + }, + { + "answers": [ + "sup ayam", + "sop ayam" + ], + "en_answers": [ + "chicken soup" + ], + "count": 1 + }, + { + "answers": [ + "sayur daun katuk" + ], + "en_answers": [ + "sayur daun katuk" + ], + "count": 1 + }, + { + "answers": [ + "sayur jantung pisang" + ], + "en_answers": [ + "sayur jantung pisang" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-am-27": { + "question": "Siapa olahragawan wanita paling populer di Indonesia?", + "en_question": "Who is the most popular female sportperson in your country?", + "annotations": [ + { + "answers": [ + "susi susanti" + ], + "en_answers": [ + "susi susanti" + ], + "count": 4 + }, + { + "answers": [ + "greysia polii" + ], + "en_answers": [ + "greysia polii" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-34": { + "question": "Di mana sebagian besar siswa sekolah dasar di Indonesia mempersiapkan ujian mereka?", + "en_question": "Where do most elementary school students prepare for their exams in your country?", + "annotations": [ + { + "answers": [ + "rumah", + "di rumah" + ], + "en_answers": [ + "house", + "home", + "at home" + ], + "count": 3 + }, + { + "answers": [ + "tempat les", + "bimbel", + "di tempat les", + "bimbingan belajar" + ], + "en_answers": [ + "tutoring place" + ], + "count": 2 + }, + { + "answers": [ + "perpustakaan", + "di perpustakaan" + ], + "en_answers": [ + "library" + ], + "count": 1 + }, + { + "answers": [ + "di sekolah", + "sekolah" + ], + "en_answers": [ + "at school", + "school" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-am-41": { + "question": "Di Indonesia, di kelas berapa siswa mengikuti ujian nasional pertama kali?", + "en_question": "In your country, at which grade level do students take their first national-level examination?", + "annotations": [ + { + "answers": [ + "6", + "kelas 6 sd", + "kelas 6", + "6 sd" + ], + "en_answers": [ + "6", + "6th grade of elementary school" + ], + "count": 4 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-am-53": { + "question": "Wilayah mana di Indonesia yang dikenal dengan industri kopi/tehnya?", + "en_question": "Which region in your country is widely known for its coffee/tea industry?", + "annotations": [ + { + "answers": [ + "sumatra" + ], + "en_answers": [ + "sumatra" + ], + "count": 2 + }, + { + "answers": [ + "dieng" + ], + "en_answers": [ + "dieng" + ], + "count": 1 + }, + { + "answers": [ + "slawi" + ], + "en_answers": [ + "slawi" + ], + "count": 1 + }, + { + "answers": [ + "temanggung" + ], + "en_answers": [ + "temanggung" + ], + "count": 1 + }, + { + "answers": [ + "jawa barat" + ], + "en_answers": [ + "west java" + ], + "count": 1 + }, + { + "answers": [ + "jawa timur" + ], + "en_answers": [ + "east java" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-54": { + "question": "Wilayah mana di Indonesia yang dikenal dengan industri peternakannya?", + "en_question": "Which region in your country is widely known for its livestock industry?", + "annotations": [ + { + "answers": [ + "jawa timur" + ], + "en_answers": [ + "east java" + ], + "count": 3 + }, + { + "answers": [ + "nusa tenggara timur", + "ntt" + ], + "en_answers": [ + "east nusa tenggara" + ], + "count": 1 + }, + { + "answers": [ + "ntb", + "nusa tenggara barat" + ], + "en_answers": [ + "west nusa tenggara" + ], + "count": 1 + }, + { + "answers": [ + "jawa barat" + ], + "en_answers": [ + "west java" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-am-59": { + "question": "Apa pekerjaan utama masyarakat yang tinggal di gurun di Indonesia?", + "en_question": "What is the main occupation of people living in deserts in your country?", + "annotations": [], + "idks": { + "not-applicable": 3, + "idk": 1, + "no-answer": 0 + } + }, + "New-am-60": { + "question": "Hewan apa yang biasanya digunakan untuk transportasi di Indonesia?", + "en_question": "Which animal is typically used for transportation in your country?", + "annotations": [ + { + "answers": [ + "kuda" + ], + "en_answers": [ + "horse" + ], + "count": 5 + }, + { + "answers": [ + "sapi" + ], + "en_answers": [ + "cow" + ], + "count": 2 + }, + { + "answers": [ + "kerbau" + ], + "en_answers": [ + "buffalo" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-72": { + "question": "Apa komik untuk anak-anak yang paling populer di Indonesia?", + "en_question": "What is the most popular comic book for children to read in your country?", + "annotations": [ + { + "answers": [ + "doraemon" + ], + "en_answers": [ + "doraemon" + ], + "count": 3 + }, + { + "answers": [ + "bobo" + ], + "en_answers": [ + "bobo" + ], + "count": 2 + }, + { + "answers": [ + "dragon ball" + ], + "en_answers": [ + "dragon ball" + ], + "count": 2 + }, + { + "answers": [ + "ko ping ho" + ], + "en_answers": [ + "ko ping ho" + ], + "count": 1 + }, + { + "answers": [ + "one piece" + ], + "en_answers": [ + "one piece" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-73": { + "question": "Apa saluran YouTube paling populer untuk anak-anak di Indonesia?", + "en_question": "What is the most popular YouTube channel for children in your country?", + "annotations": [ + { + "answers": [ + "pinkfong", + "pink fong" + ], + "en_answers": [ + "pinkfong", + "pink fong" + ], + "count": 2 + }, + { + "answers": [ + "cocomelon", + "blippi" + ], + "en_answers": [ + "cocomelon", + "blippi" + ], + "count": 2 + }, + { + "answers": [ + "lagu anak balita indonesia" + ], + "en_answers": [ + "lagu anak balita indonesia" + ], + "count": 1 + }, + { + "answers": [ + "nussa rara" + ], + "en_answers": [ + "nussa rara" + ], + "count": 1 + }, + { + "answers": [ + "kids tv" + ], + "en_answers": [ + "kids tv" + ], + "count": 1 + }, + { + "answers": [ + "simple learn" + ], + "en_answers": [ + "simple learn" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-am-74": { + "question": "Apa acara talk show paling populer di Indonesia?", + "en_question": "What is the most popular talk show in your country?", + "annotations": [ + { + "answers": [ + "mata najwa" + ], + "en_answers": [ + "mata najwa" + ], + "count": 3 + }, + { + "answers": [ + "kick andy" + ], + "en_answers": [ + "kick andy" + ], + "count": 2 + }, + { + "answers": [ + "komedi" + ], + "en_answers": [ + "comedy" + ], + "count": 1 + }, + { + "answers": [ + "ini talk show" + ], + "en_answers": [ + "ini talk show" + ], + "count": 1 + }, + { + "answers": [ + "empat mata" + ], + "en_answers": [ + "empat mata" + ], + "count": 1 + }, + { + "answers": [ + "hitam putih" + ], + "en_answers": [ + "hitam putih" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-77": { + "question": "Apa hari raya keagamaan yang paling terkenal di Indonesia?", + "en_question": "What is the most famous religious holiday in your country?", + "annotations": [ + { + "answers": [ + "idul fitri", + "idulfitri" + ], + "en_answers": [ + "eid al-fitr" + ], + "count": 5 + }, + { + "answers": [ + "natal" + ], + "en_answers": [ + "christmas" + ], + "count": 2 + }, + { + "answers": [ + "imlek" + ], + "en_answers": [ + "chinese new year" + ], + "count": 1 + }, + { + "answers": [ + "paskah" + ], + "en_answers": [ + "easter" + ], + "count": 1 + }, + { + "answers": [ + "waisak" + ], + "en_answers": [ + "vesak" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-81": { + "question": "Di bulan apa biasanya pernikahan paling banyak diadakan di Indonesia? (Berikan angka Arab (misalnya, 1) saja.)", + "en_question": "What is the busiest month for weddings in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "12", + "desember" + ], + "en_answers": [ + "12" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "not-applicable": 1, + "idk": 0 + } + }, + "New-am-83": { + "question": "Apa alat musik tradisional yang paling populer di Indonesia?", + "en_question": "What is the most popular traditional musical instrument in your country?", + "annotations": [ + { + "answers": [ + "angklung" + ], + "en_answers": [ + "angklung" + ], + "count": 4 + }, + { + "answers": [ + "gamelan" + ], + "en_answers": [ + "gamelan" + ], + "count": 2 + }, + { + "answers": [ + "suling" + ], + "en_answers": [ + "suling" + ], + "count": 1 + }, + { + "answers": [ + "gendang" + ], + "en_answers": [ + "gendang" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-01": { + "question": "Apa produk pertanian utama yang dihasilkan di Indonesia?", + "en_question": "What is the main agricultural product produced in your country?", + "annotations": [ + { + "answers": [ + "beras", + "padi", + "padi padi" + ], + "en_answers": [ + "rice" + ], + "count": 5 + }, + { + "answers": [ + "sawit" + ], + "en_answers": [ + "palm" + ], + "count": 2 + }, + { + "answers": [ + "karet" + ], + "en_answers": [ + "rubber plants" + ], + "count": 2 + }, + { + "answers": [ + "jagung" + ], + "en_answers": [ + "corn" + ], + "count": 1 + }, + { + "answers": [ + "bawang merah" + ], + "en_answers": [ + "shallot" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-02": { + "question": "Apa makanan berbahan dasar gandum yang paling populer di Indonesia?", + "en_question": "What is the most popular wheat-based food item in your country?", + "annotations": [ + { + "answers": [ + "roti" + ], + "en_answers": [ + "bread" + ], + "count": 3 + }, + { + "answers": [ + "biskuit gandum" + ], + "en_answers": [ + "whole wheat biscuit" + ], + "count": 1 + }, + { + "answers": [ + "roti tawar" + ], + "en_answers": [ + "white bread" + ], + "count": 1 + }, + { + "answers": [ + "sereal", + "cereal" + ], + "en_answers": [ + "cereal" + ], + "count": 1 + }, + { + "answers": [ + "biskuit" + ], + "en_answers": [ + "biscuit" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-05": { + "question": "Apa minuman yang paling sering ditawarkan kepada tamu ketika mereka mengunjungi rumah di Indonesia?", + "en_question": "What is the most typical drink offered to guests when they visit households in your country?", + "annotations": [ + { + "answers": [ + "teh", + "teh panas" + ], + "en_answers": [ + "tea", + "hot tea" + ], + "count": 5 + }, + { + "answers": [ + "air", + "air aqua gelas", + "air putih", + "aqua gelas" + ], + "en_answers": [ + "water", + "aqua water" + ], + "count": 3 + }, + { + "answers": [ + "kopi" + ], + "en_answers": [ + "coffee" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-07": { + "question": "Apa hidangan paling populer yang dimasak dengan ikan di Indonesia?", + "en_question": "What is the most popular dish cooked with fish in your country?", + "annotations": [ + { + "answers": [ + "ikan bakar" + ], + "en_answers": [ + "grilled fish" + ], + "count": 2 + }, + { + "answers": [ + "ikan goreng" + ], + "en_answers": [ + "fried fish" + ], + "count": 2 + }, + { + "answers": [ + "ikan gurame goreng" + ], + "en_answers": [ + "fried gourami fish" + ], + "count": 1 + }, + { + "answers": [ + "ikan baronang bakar" + ], + "en_answers": [ + "grilled rabbitfish" + ], + "count": 1 + }, + { + "answers": [ + "gulai ikan" + ], + "en_answers": [ + "fish curry" + ], + "count": 1 + }, + { + "answers": [ + "pindang ikan" + ], + "en_answers": [ + "pindang fish" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-14": { + "question": "Makanan apa yang disukai orang Indonesia untuk dimakan saat cuaca hujan?", + "en_question": "What food do people from your country like to eat during rainy weather?", + "annotations": [ + { + "answers": [ + "bakso" + ], + "en_answers": [ + "meatball" + ], + "count": 4 + }, + { + "answers": [ + "gorengan" + ], + "en_answers": [ + "fritters" + ], + "count": 2 + }, + { + "answers": [ + "sate" + ], + "en_answers": [ + "satay" + ], + "count": 1 + }, + { + "answers": [ + "mi rebus", + "mie rebus" + ], + "en_answers": [ + "noodle soup" + ], + "count": 1 + }, + { + "answers": [ + "makan berkuah panas", + "sop panas" + ], + "en_answers": [ + "hot soup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-15": { + "question": "Minuman apa yang umumnya dikonsumsi di Indonesia ketika cuaca panas?", + "en_question": "What drink is commonly consumed in your country when the weather is hot?", + "annotations": [ + { + "answers": [ + "es teh", + "teh" + ], + "en_answers": [ + "iced tea", + "tea" + ], + "count": 3 + }, + { + "answers": [ + "es kelapa", + "es kelapa muda", + "air kelapa" + ], + "en_answers": [ + "iced coconut", + "coconut water" + ], + "count": 3 + }, + { + "answers": [ + "es jeruk" + ], + "en_answers": [ + "orange juice" + ], + "count": 2 + }, + { + "answers": [ + "coca cola dingin", + "coca cola" + ], + "en_answers": [ + "cold coke", + "coke" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-20": { + "question": "Apa olahraga dalam ruangan yang paling populer di Indonesia?", + "en_question": "What is the most popular indoor sport in your country?", + "annotations": [ + { + "answers": [ + "bulutangkis", + "badminton", + "bulu tangkis" + ], + "en_answers": [ + "badminton" + ], + "count": 4 + }, + { + "answers": [ + "futsal" + ], + "en_answers": [ + "futsal" + ], + "count": 2 + }, + { + "answers": [ + "ping pong", + "tenis meja", + "pingpong" + ], + "en_answers": [ + "table tennis" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-29": { + "question": "Olahraga apa yang gemar ditonton oleh pria di Indonesia?", + "en_question": "What sport do men in your country like to watch?", + "annotations": [ + { + "answers": [ + "sepak bola" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 5 + }, + { + "answers": [ + "balap motor", + "motogp" + ], + "en_answers": [ + "motorcycle racing", + "motogp" + ], + "count": 1 + }, + { + "answers": [ + "badminton", + "bulu tangkis", + "bulutangkis" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-30": { + "question": "Olahraga apa yang gemar ditonton oleh wanita di Indonesia?", + "en_question": "What sport do women in your country like to watch?", + "annotations": [ + { + "answers": [ + "badminton", + "bulu tangkis", + "bulutangkis" + ], + "en_answers": [ + "badminton" + ], + "count": 2 + }, + { + "answers": [ + "senam" + ], + "en_answers": [ + "gymnastics" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-as-58": { + "question": "Apa minuman paling populer yang disukai oleh orang-orang Indonesia untuk diminum di tempat kerja mereka?", + "en_question": "What is the most popular beverage that people from your country like to drink in their workplace?", + "annotations": [ + { + "answers": [ + "kopi" + ], + "en_answers": [ + "coffee" + ], + "count": 4 + }, + { + "answers": [ + "teh" + ], + "en_answers": [ + "tea" + ], + "count": 3 + }, + { + "answers": [ + "bubble tea", + "boba", + "es boba" + ], + "en_answers": [ + "bubble tea" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-as-64": { + "question": "Pada hari libur apa semua anggota keluarga biasanya berkumpul di Indonesia?", + "en_question": "On which holiday do all family members tend to reunite in your country?", + "annotations": [ + { + "answers": [ + "idul fitri", + "idulfitri" + ], + "en_answers": [ + "eid al-fitr" + ], + "count": 4 + }, + { + "answers": [ + "natal" + ], + "en_answers": [ + "christmas" + ], + "count": 3 + }, + { + "answers": [ + "tahun baru" + ], + "en_answers": [ + "new year" + ], + "count": 2 + }, + { + "answers": [ + "imlek" + ], + "en_answers": [ + "chinese new year" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-76": { + "question": "Permainan tradisional apa yang dimainkan selama hari libur tradisional oleh keluarga di Indonesia?", + "en_question": "What traditional games do families play during traditional holidays in your country?", + "annotations": [ + { + "answers": [ + "congklak" + ], + "en_answers": [ + "congklak" + ], + "count": 3 + }, + { + "answers": [ + "tarik tambang" + ], + "en_answers": [ + "tug of war" + ], + "count": 1 + }, + { + "answers": [ + "engklek" + ], + "en_answers": [ + "engklek" + ], + "count": 1 + }, + { + "answers": [ + "bola bekel", + "bekel" + ], + "en_answers": [ + "knucklebones" + ], + "count": 1 + }, + { + "answers": [ + "egrang" + ], + "en_answers": [ + "egrang" + ], + "count": 1 + }, + { + "answers": [ + "gobak sodor" + ], + "en_answers": [ + "gobak sodor" + ], + "count": 1 + }, + { + "answers": [ + "bentengan" + ], + "en_answers": [ + "bentengan" + ], + "count": 1 + }, + { + "answers": [ + "lompat tali" + ], + "en_answers": [ + "jump rope" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-80": { + "question": "Jenis pakaian apa yang dikenakan oleh orang-orang Indonesia saat festival tradisional?", + "en_question": "What type of clothing do people from your country wear during traditional festivals?", + "annotations": [ + { + "answers": [ + "kebaya" + ], + "en_answers": [ + "kebaya" + ], + "count": 4 + }, + { + "answers": [ + "batik" + ], + "en_answers": [ + "batik" + ], + "count": 3 + }, + { + "answers": [ + "pakaian adat" + ], + "en_answers": [ + "traditional clothes" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-89": { + "question": "Apa aksesori festival tradisional yang biasa dikenakan oleh orang-orang di Indonesia?", + "en_question": "What traditional festival accessories do people from your country wear?", + "annotations": [ + { + "answers": [ + "peci" + ], + "en_answers": [ + "peci" + ], + "count": 2 + }, + { + "answers": [ + "cundhuk sisir" + ], + "en_answers": [ + "cundhuk sisir" + ], + "count": 1 + }, + { + "answers": [ + "konde" + ], + "en_answers": [ + "konde" + ], + "count": 1 + }, + { + "answers": [ + "blangkon" + ], + "en_answers": [ + "blangkon" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 2, + "not-applicable": 0 + } + }, + "New-az-05": { + "question": "Wilayah apa yang paling dikenal dengan produksi alkohol di Indonesia?", + "en_question": "What is the most famous region for alcohol production in your country?", + "annotations": [ + { + "answers": [ + "bali" + ], + "en_answers": [ + "bali" + ], + "count": 4 + }, + { + "answers": [ + "jakarta" + ], + "en_answers": [ + "jakarta" + ], + "count": 1 + }, + { + "answers": [ + "sumatera utara", + "sumatra utara", + "sumut" + ], + "en_answers": [ + "north sumatra" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-11": { + "question": "Buah apa yang sering dimakan oleh orang-orang Indonesia di musim panas?", + "en_question": "What fruit do people from your country often eat in the summer season?", + "annotations": [ + { + "answers": [ + "semangka" + ], + "en_answers": [ + "watermelon" + ], + "count": 3 + }, + { + "answers": [ + "kelapa" + ], + "en_answers": [ + "coconut" + ], + "count": 1 + }, + { + "answers": [ + "jeruk" + ], + "en_answers": [ + "orange" + ], + "count": 1 + }, + { + "answers": [ + "blewah" + ], + "en_answers": [ + "cantaloupe" + ], + "count": 1 + }, + { + "answers": [ + "mangga" + ], + "en_answers": [ + "mango" + ], + "count": 1 + }, + { + "answers": [ + "es buah" + ], + "en_answers": [ + "iced mixed fruit" + ], + "count": 1 + }, + { + "answers": [ + "es krim" + ], + "en_answers": [ + "ice cream" + ], + "count": 1 + }, + { + "answers": [ + "melon" + ], + "en_answers": [ + "melon" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-az-12": { + "question": "Wilayah mana di Indonesia yang terkenal dengan makanan lautnya?", + "en_question": "Which region in your country is known for its seafood?", + "annotations": [ + { + "answers": [ + "sulawesi" + ], + "en_answers": [ + "sulawesi" + ], + "count": 2 + }, + { + "answers": [ + "bali" + ], + "en_answers": [ + "bali" + ], + "count": 1 + }, + { + "answers": [ + "kepulauan riau" + ], + "en_answers": [ + "riau islands" + ], + "count": 1 + }, + { + "answers": [ + "makassar" + ], + "en_answers": [ + "makassar" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-21": { + "question": "Wilayah mana di Indonesia yang paling populer sebagai destinasi untuk ski?", + "en_question": "Which region in your country is the most popular skiing destination?", + "annotations": [], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 0 + } + }, + "New-az-26": { + "question": "Siapa pemain bela diri paling populer di Indonesia?", + "en_question": "Who is the most popular martial arts player in your country?", + "annotations": [ + { + "answers": [ + "iko uwais" + ], + "en_answers": [ + "iko uwais" + ], + "count": 2 + }, + { + "answers": [ + "yayan ruhian" + ], + "en_answers": [ + "yayan ruhian" + ], + "count": 1 + }, + { + "answers": [ + "jeni kause" + ], + "en_answers": [ + "jeni kause" + ], + "count": 1 + }, + { + "answers": [ + "chris john" + ], + "en_answers": [ + "chris john" + ], + "count": 1 + }, + { + "answers": [ + "joe taslim" + ], + "en_answers": [ + "joe taslim" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-27": { + "question": "Olahraga apa yang menjadi salah satu olahraga dengan pertumbuhan tercepat di Indonesia selama dekade terakhir?", + "en_question": "Which sport has been one of the fastest-growing in your country over the last decade?", + "annotations": [ + { + "answers": [ + "sepakbola", + "sepak bola" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 4 + }, + { + "answers": [ + "badminton", + "bulu tangkis", + "bulutangkis" + ], + "en_answers": [ + "badminton" + ], + "count": 2 + }, + { + "answers": [ + "selam", + "menyelam" + ], + "en_answers": [ + "diving" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-39": { + "question": "Negara mana yang merupakan tujuan paling populer bagi siswa dari Indonesia untuk belajar di luar negeri?", + "en_question": "Which country is the most popular destination for students from your country studying abroad?", + "annotations": [ + { + "answers": [ + "australia" + ], + "en_answers": [ + "australia" + ], + "count": 5 + }, + { + "answers": [ + "amerika serikat", + "amerika" + ], + "en_answers": [ + "united states", + "america" + ], + "count": 3 + }, + { + "answers": [ + "singapura", + "singapore", + "singapur" + ], + "en_answers": [ + "singapore" + ], + "count": 3 + }, + { + "answers": [ + "malaysia" + ], + "en_answers": [ + "malaysia" + ], + "count": 2 + }, + { + "answers": [ + "inggris" + ], + "en_answers": [ + "england" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-49": { + "question": "Di Indonesia, berapa banyak orang yang bekerja dalam sebuah keluarga pada umumnya? (Berikan angka Arab (contoh, 1) saja.)", + "en_question": "How many people work in a typical family in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 5 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-60": { + "question": "Di Indonesia, siapa yang mengurus anak-anak ketika kedua orang tuanya sedang bekerja?", + "en_question": "In your country, who takes care of kids when both parents are working?", + "annotations": [ + { + "answers": [ + "asisten rumah tangga", + "mbak", + "pembantu" + ], + "en_answers": [ + "housemaid" + ], + "count": 4 + }, + { + "answers": [ + "nenek" + ], + "en_answers": [ + "grandmother" + ], + "count": 2 + }, + { + "answers": [ + "kakek" + ], + "en_answers": [ + "grandfather" + ], + "count": 1 + }, + { + "answers": [ + "tante" + ], + "en_answers": [ + "aunt" + ], + "count": 1 + }, + { + "answers": [ + "mertua" + ], + "en_answers": [ + "parent-in-law" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-69": { + "question": "Apa minuman beralkohol yang paling disukai oleh pria dari Indonesia?", + "en_question": "What is the preferred alcoholic beverage for men from your country?", + "annotations": [ + { + "answers": [ + "bir bintang", + "bir" + ], + "en_answers": [ + "bintang beer", + "beer" + ], + "count": 4 + }, + { + "answers": [ + "tuak" + ], + "en_answers": [ + "palm wine" + ], + "count": 1 + }, + { + "answers": [ + "arak" + ], + "en_answers": [ + "arak", + "araq" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-70": { + "question": "Apa minuman beralkohol yang paling disukai oleh wanita dari Indonesia?", + "en_question": "What is the preferred alcoholic beverage for women from your country?", + "annotations": [ + { + "answers": [ + "anggur" + ], + "en_answers": [ + "wine" + ], + "count": 2 + }, + { + "answers": [ + "bir" + ], + "en_answers": [ + "beer" + ], + "count": 1 + }, + { + "answers": [ + "cocktail" + ], + "en_answers": [ + "cocktail" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 0, + "no-answer": 0 + } + }, + "New-az-73": { + "question": "Berapa banyak rata-rata orang yang biasanya menghadiri sebuah pernikahan di Indonesia? (Berikan angka Arab saja (contoh, 1).)", + "en_question": "How many people on average typically attend a wedding in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "1000" + ], + "en_answers": [ + "1000" + ], + "count": 2 + }, + { + "answers": [ + ">500", + "500" + ], + "en_answers": [ + "500" + ], + "count": 2 + }, + { + "answers": [ + "200" + ], + "en_answers": [ + "200" + ], + "count": 1 + }, + { + "answers": [ + "100" + ], + "en_answers": [ + "100" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-01": { + "question": "Jenis daging apa yang biasanya orang makan saat mereka melakukan barbekyu di Indonesia?", + "en_question": "What kind of meat do people usually eat when they have barbecue in your country?", + "annotations": [ + { + "answers": [ + "daging sapi", + "sapi" + ], + "en_answers": [ + "beef" + ], + "count": 4 + }, + { + "answers": [ + "ayam" + ], + "en_answers": [ + "chicken" + ], + "count": 2 + }, + { + "answers": [ + "sosis" + ], + "en_answers": [ + "sausage" + ], + "count": 1 + }, + { + "answers": [ + "babi" + ], + "en_answers": [ + "pork" + ], + "count": 1 + }, + { + "answers": [ + "kambing" + ], + "en_answers": [ + "goat meat", + "lamb" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-02": { + "question": "Kapan orang biasanya sarapan di Indonesia? (Berikan dalam format JJ:MM (contoh, 18:00, 09:00).)", + "en_question": "When do people usually have breakfast in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "07:00" + ], + "en_answers": [ + "07:00" + ], + "count": 4 + }, + { + "answers": [ + "06:00" + ], + "en_answers": [ + "06:00" + ], + "count": 1 + }, + { + "answers": [ + "07:30" + ], + "en_answers": [ + "07:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-04": { + "question": "Jenis makanan apa yang biasanya orang makan untuk camilan larut malam di Indonesia?", + "en_question": "What kinds of food do people usually eat for late-night snacks in your country?", + "annotations": [ + { + "answers": [ + "martabak", + "martabak manis" + ], + "en_answers": [ + "martabak", + "indonesian pancake", + "sweet martabak", + "sweet indonesian pancake" + ], + "count": 3 + }, + { + "answers": [ + "indomie" + ], + "en_answers": [ + "indomie" + ], + "count": 2 + }, + { + "answers": [ + "gorengan" + ], + "en_answers": [ + "fritters" + ], + "count": 1 + }, + { + "answers": [ + "keripik" + ], + "en_answers": [ + "chips" + ], + "count": 1 + }, + { + "answers": [ + "keripik kentang" + ], + "en_answers": [ + "potato chips" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-05": { + "question": "Apa masakan pedas yang paling terkenal di Indonesia?", + "en_question": "What is the most famous spicy dish in your country?", + "annotations": [ + { + "answers": [ + "sambal" + ], + "en_answers": [ + "chili paste", + "sambal" + ], + "count": 2 + }, + { + "answers": [ + "seblak jeletet", + "seblak", + "seblak jeletot" + ], + "en_answers": [ + "seblak jeletet", + "seblak" + ], + "count": 2 + }, + { + "answers": [ + "dendeng balado" + ], + "en_answers": [ + "dendeng balado" + ], + "count": 1 + }, + { + "answers": [ + "ayam rica rica", + "ayam rica-rica" + ], + "en_answers": [ + "rica-rica chicken" + ], + "count": 1 + }, + { + "answers": [ + "rendang" + ], + "en_answers": [ + "rendang" + ], + "count": 1 + }, + { + "answers": [ + "ayam geprek" + ], + "en_answers": [ + "geprek chicken" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-07": { + "question": "Makanan apa yang biasanya dipadukan dengan minuman keras di Indonesia?", + "en_question": "What food items do people typically pair with hard liquor in your country?", + "annotations": [ + { + "answers": [ + "kacang", + "kacang goreng" + ], + "en_answers": [ + "peanut", + "fried peanuts" + ], + "count": 3 + }, + { + "answers": [ + "daging anjing" + ], + "en_answers": [ + "dog meat" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "New-ch-08": { + "question": "Bumbu apa yang sangat penting dan tidak dapat dihilangkan dalam memasak di Indonesia?", + "en_question": "What seasoning is indispensable in cooking in your country?", + "annotations": [ + { + "answers": [ + "garam" + ], + "en_answers": [ + "salt" + ], + "count": 2 + }, + { + "answers": [ + "merica" + ], + "en_answers": [ + "pepper" + ], + "count": 2 + }, + { + "answers": [ + "sambal" + ], + "en_answers": [ + "chili paste", + "sambal" + ], + "count": 1 + }, + { + "answers": [ + "bawang putih" + ], + "en_answers": [ + "garlic" + ], + "count": 1 + }, + { + "answers": [ + "msg", + "penyedap rasa" + ], + "en_answers": [ + "msg" + ], + "count": 1 + }, + { + "answers": [ + "ketumbar" + ], + "en_answers": [ + "coriander" + ], + "count": 1 + }, + { + "answers": [ + "pala" + ], + "en_answers": [ + "nutmeg" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-09": { + "question": "Makanan apa yang biasanya dikonsumsi orang-orang ketika cuaca dingin di Indonesia?", + "en_question": "What food do people typically consume when the weather is cold in your country?", + "annotations": [ + { + "answers": [ + "mie sop", + "mie kuah" + ], + "en_answers": [ + "noodle soup" + ], + "count": 2 + }, + { + "answers": [ + "sop", + "sup" + ], + "en_answers": [ + "soup" + ], + "count": 2 + }, + { + "answers": [ + "pisang goreng" + ], + "en_answers": [ + "fried banana" + ], + "count": 1 + }, + { + "answers": [ + "roti bakar" + ], + "en_answers": [ + "toast" + ], + "count": 1 + }, + { + "answers": [ + "wedang ronde" + ], + "en_answers": [ + "wedang ronde" + ], + "count": 1 + }, + { + "answers": [ + "bakso" + ], + "en_answers": [ + "meatball" + ], + "count": 1 + }, + { + "answers": [ + "mie ayam" + ], + "en_answers": [ + "chicken noodles" + ], + "count": 1 + }, + { + "answers": [ + "indomie", + "mi instan", + "mie instan" + ], + "en_answers": [ + "indomie" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-13": { + "question": "Apa merek alkohol paling terkenal di Indonesia?", + "en_question": "What is the most famous alcohol brand in your country?", + "annotations": [ + { + "answers": [ + "bintang", + "bir bintang" + ], + "en_answers": [ + "bintang", + "bir bintang" + ], + "count": 4 + }, + { + "answers": [ + "smirnoff" + ], + "en_answers": [ + "smirnoff" + ], + "count": 1 + }, + { + "answers": [ + "orang tua" + ], + "en_answers": [ + "orang tua" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-ch-14": { + "question": "Makanan apa yang biasanya orang makan ketika mereka sakit di Indonesia?", + "en_question": "What foods do people usually eat when they are sick in your country?", + "annotations": [ + { + "answers": [ + "bubur" + ], + "en_answers": [ + "porridge" + ], + "count": 3 + }, + { + "answers": [ + "sup", + "sop" + ], + "en_answers": [ + "soup" + ], + "count": 2 + }, + { + "answers": [ + "soto ayam" + ], + "en_answers": [ + "chicken soto" + ], + "count": 1 + }, + { + "answers": [ + "sup ayam", + "sop ayam" + ], + "en_answers": [ + "chicken soup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-15": { + "question": "Makanan apa yang biasanya dibeli orang-orang di supermarket di Indonesia yang sudah siap saji atau siap dimakan?", + "en_question": "What prepared/ready-to-eat food do people typically buy at supermarkets in your country?", + "annotations": [ + { + "answers": [ + "ayam goreng" + ], + "en_answers": [ + "fried chicken" + ], + "count": 2 + }, + { + "answers": [ + "roti" + ], + "en_answers": [ + "bread" + ], + "count": 2 + }, + { + "answers": [ + "mi instan", + "indomie", + "mie instan" + ], + "en_answers": [ + "instant noodles", + "indomie" + ], + "count": 1 + }, + { + "answers": [ + "kerupuk" + ], + "en_answers": [ + "crackers" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-16": { + "question": "Apa film bertema olahraga yang paling terkenal di Indonesia?", + "en_question": "What is the most famous sports-related movie in your country?", + "annotations": [ + { + "answers": [ + "garuda di dadaku" + ], + "en_answers": [ + "garuda di dadaku" + ], + "count": 3 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-17": { + "question": "Olahraga ekstrem apa yang paling ingin dicoba oleh kebanyakan orang di Indonesia?", + "en_question": "What extreme sport do people generally wish to try the most in your country?", + "annotations": [ + { + "answers": [ + "bungee jumping" + ], + "en_answers": [ + "bungee jumping" + ], + "count": 2 + }, + { + "answers": [ + "terjun payung" + ], + "en_answers": [ + "skydiving" + ], + "count": 2 + }, + { + "answers": [ + "panjat tebing" + ], + "en_answers": [ + "rock climbing" + ], + "count": 2 + }, + { + "answers": [ + "daki gunung", + "mendaki gunung" + ], + "en_answers": [ + "mountain climbing" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-18": { + "question": "Cabang atletik mana yang paling populer untuk ditonton selama kompetisi di Indonesia?", + "en_question": "Which track and field event is the most popular to watch during competitions in your country?", + "annotations": [ + { + "answers": [ + "badminton", + "bulu tangkis", + "bulutangkis" + ], + "en_answers": [ + "badminton" + ], + "count": 4 + }, + { + "answers": [ + "sepak bola", + "sepakbola" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 2 + }, + { + "answers": [ + "tolak peluru" + ], + "en_answers": [ + "shot put" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-19": { + "question": "Perlombaan senam apa yang paling populer untuk ditonton selama kompetisi di Indonesia?", + "en_question": "Which gymnastics event is the most popular to watch during competitions in your country?", + "annotations": [ + { + "answers": [ + "aerobik", + "skj", + "senam kesehatan jasmani" + ], + "en_answers": [ + "aerobics", + "rhytmic exercise" + ], + "count": 2 + }, + { + "answers": [ + "senam lantai" + ], + "en_answers": [ + "floor exercise" + ], + "count": 1 + }, + { + "answers": [ + "pencak silat" + ], + "en_answers": [ + "pecak silat" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-23": { + "question": "Siapa pemain tenis meja paling terkenal di Indonesia?", + "en_question": "Who is the most famous table tennis player in your country?", + "annotations": [ + { + "answers": [ + "anton suseno" + ], + "en_answers": [ + "anton suseno" + ], + "count": 2 + }, + { + "answers": [ + "abdul rojak" + ], + "en_answers": [ + "abdul rojak" + ], + "count": 1 + }, + { + "answers": [ + "freddy a. karyadi", + "freddy karyadi" + ], + "en_answers": [ + "freddy a. karyadi" + ], + "count": 1 + }, + { + "answers": [ + "david jacobs" + ], + "en_answers": [ + "david jacobs" + ], + "count": 1 + }, + { + "answers": [ + "rossy pratiwi dipoyanti" + ], + "en_answers": [ + "rossy pratiwi dipoyanti" + ], + "count": 1 + } + ], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-26": { + "question": "Dalam Olimpiade Musim Dingin, acara apa yang paling populer untuk ditonton di Indonesia?", + "en_question": "In the Winter Olympics, which event is the most popular to watch in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 0 + } + }, + "New-ch-27": { + "question": "Siapa petinju paling terkenal di Indonesia?", + "en_question": "Who is the most famous boxer in your country?", + "annotations": [ + { + "answers": [ + "chris john", + "chrisjohn" + ], + "en_answers": [ + "chris john" + ], + "count": 3 + }, + { + "answers": [ + "elyas pical" + ], + "en_answers": [ + "elyas pical" + ], + "count": 2 + }, + { + "answers": [ + "syamsul anwar" + ], + "en_answers": [ + "syamsul anwar" + ], + "count": 1 + }, + { + "answers": [ + "ferry moniaga" + ], + "en_answers": [ + "ferry moniaga" + ], + "count": 1 + }, + { + "answers": [ + "daud yordan" + ], + "en_answers": [ + "daud yordan" + ], + "count": 1 + }, + { + "answers": [ + "ellyas pical" + ], + "en_answers": [ + "ellyas pical" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-30": { + "question": "Siapa atlet atletik yang paling terkenal di Indonesia?", + "en_question": "Who is the most famous track and field athlete in your country?", + "annotations": [ + { + "answers": [ + "m zohri", + "m. zohri", + "muhammad zohri", + "lalu muhammad zohri" + ], + "en_answers": [ + "m zohri" + ], + "count": 1 + }, + { + "answers": [ + "eko yuli wirawan" + ], + "en_answers": [ + "eko yuli wirawan" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-31": { + "question": "Pekerjaan apa yang paling diharapkan oleh orang tua agar dikejar oleh anak-anak mereka di Indonesia?", + "en_question": "What job do parents most hope their children will pursue in your country?", + "annotations": [ + { + "answers": [ + "dokter" + ], + "en_answers": [ + "doctor" + ], + "count": 5 + }, + { + "answers": [ + "insinyur" + ], + "en_answers": [ + "engineer" + ], + "count": 2 + }, + { + "answers": [ + "pegawai negeri sipil", + "pns" + ], + "en_answers": [ + "civil servant" + ], + "count": 2 + }, + { + "answers": [ + "pengacara" + ], + "en_answers": [ + "lawyer" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-32": { + "question": "Perangkat lunak kantor apa yang biasanya digunakan orang-orang di tempat kerja di Indonesia?", + "en_question": "What office software do people typically use in the workplace in your country?", + "annotations": [ + { + "answers": [ + "email" + ], + "en_answers": [ + "email" + ], + "count": 1 + }, + { + "answers": [ + "microsoft office", + "ms. office", + "ms office" + ], + "en_answers": [ + "microsoft office" + ], + "count": 1 + }, + { + "answers": [ + "microsoft 365", + "ms. 365", + "ms 365" + ], + "en_answers": [ + "microsoft 365" + ], + "count": 1 + }, + { + "answers": [ + "microsoft word", + "ms. word", + "ms word" + ], + "en_answers": [ + "microsoft word" + ], + "count": 1 + }, + { + "answers": [ + "microsoft excel", + "microsoft exel", + "ms. excel", + "ms excel" + ], + "en_answers": [ + "microsoft excel" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-38": { + "question": "Kota atau wilayah mana saja yang dikenal dengan kegiatan impor dan ekspor di Indonesia?", + "en_question": "Which cities or regions are known for their import and export activities in your country?", + "annotations": [ + { + "answers": [ + "jakarta" + ], + "en_answers": [ + "jakarta" + ], + "count": 2 + }, + { + "answers": [ + "jawa" + ], + "en_answers": [ + "java" + ], + "count": 1 + }, + { + "answers": [ + "sumatra" + ], + "en_answers": [ + "sumatra" + ], + "count": 1 + }, + { + "answers": [ + "bandung" + ], + "en_answers": [ + "bandung" + ], + "count": 1 + }, + { + "answers": [ + "surabaya" + ], + "en_answers": [ + "surabaya" + ], + "count": 1 + }, + { + "answers": [ + "batam" + ], + "en_answers": [ + "batam" + ], + "count": 1 + }, + { + "answers": [ + "kalimantan" + ], + "en_answers": [ + "borneo" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-39": { + "question": "Platform apa yang umum digunakan dalam industri e-commerce di Indonesia?", + "en_question": "What platform is commonly used in the e-commerce industry in your country?", + "annotations": [ + { + "answers": [ + "shopee" + ], + "en_answers": [ + "shopee" + ], + "count": 4 + }, + { + "answers": [ + "tokopedia" + ], + "en_answers": [ + "tokopedia" + ], + "count": 4 + }, + { + "answers": [ + "olx" + ], + "en_answers": [ + "olx" + ], + "count": 1 + }, + { + "answers": [ + "tiktok" + ], + "en_answers": [ + "tiktok" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-44": { + "question": "Berapa lama periode percobaan yang biasa diberikan kepada karyawan baru sebelum menandatangani kontrak formal di Indonesia? (misalnya, 1 bulan).", + "en_question": "How long is the typical probation period for new employees before signing a formal contract in your country? (e.g., 1 month).", + "annotations": [ + { + "answers": [ + "3 bulan", + "3" + ], + "en_answers": [ + "3 months" + ], + "count": 4 + }, + { + "answers": [ + "6 bulan" + ], + "en_answers": [ + "6 months" + ], + "count": 3 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-45": { + "question": "Di industri apa biasanya para pemuda memilih untuk memulai bisnis di Indonesia?", + "en_question": "Which industries do young people typically choose to start businesses in your country?", + "annotations": [ + { + "answers": [ + "retail", + "jual beli barang", + "ritel" + ], + "en_answers": [ + "retail", + "buying and selling goods" + ], + "count": 2 + }, + { + "answers": [ + "makanan & minuman", + "kuliner" + ], + "en_answers": [ + "food & beverages", + "fnb", + "culinary" + ], + "count": 2 + }, + { + "answers": [ + "teknologi", + "it" + ], + "en_answers": [ + "technology", + "it", + "information technology" + ], + "count": 2 + }, + { + "answers": [ + "teknik" + ], + "en_answers": [ + "engineering" + ], + "count": 1 + }, + { + "answers": [ + "digital" + ], + "en_answers": [ + "digital" + ], + "count": 1 + }, + { + "answers": [ + "fashion" + ], + "en_answers": [ + "fashion" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-49": { + "question": "Apa cara yang paling umum digunakan oleh anggota keluarga untuk berkomunikasi jarak jauh di Indonesia?", + "en_question": "What is the most common way for family members to communicate remotely in your country?", + "annotations": [ + { + "answers": [ + "telepon", + "telpon", + "telefon" + ], + "en_answers": [ + "phone" + ], + "count": 5 + }, + { + "answers": [ + "video call", + "panggilan video", + "vidcall", + "vc" + ], + "en_answers": [ + "video call" + ], + "count": 3 + }, + { + "answers": [ + "pesan teks" + ], + "en_answers": [ + "text message", + "chat message" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-51": { + "question": "Bentuk akomodasi apa yang biasanya dipesan untuk perjalanan keluarga di Indonesia?", + "en_question": "What form of accommodation is typically booked for family trips in your country?", + "annotations": [ + { + "answers": [ + "hotel" + ], + "en_answers": [ + "hotel" + ], + "count": 5 + }, + { + "answers": [ + "airbnb" + ], + "en_answers": [ + "airbnb" + ], + "count": 1 + }, + { + "answers": [ + "rumah kerabat" + ], + "en_answers": [ + "relative's house" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-54": { + "question": "Buah apa yang biasanya paling sering disiapkan untuk makan malam keluarga di Indonesia?", + "en_question": "Which fruit is usually prepared the most for family dinners in your country?", + "annotations": [ + { + "answers": [ + "jeruk" + ], + "en_answers": [ + "orange" + ], + "count": 3 + }, + { + "answers": [ + "pisang" + ], + "en_answers": [ + "banana" + ], + "count": 1 + }, + { + "answers": [ + "mangga" + ], + "en_answers": [ + "mango" + ], + "count": 1 + }, + { + "answers": [ + "semangka" + ], + "en_answers": [ + "watermelon" + ], + "count": 1 + }, + { + "answers": [ + "pepaya" + ], + "en_answers": [ + "papaya" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-64": { + "question": "Berapa jam kuliah per minggu yang biasanya diikuti oleh mahasiswa universitas di Indonesia? (Gunakan angka Arab (contoh, 1) saja.)", + "en_question": "How many hours of classes do university students typically have per week in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 2 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 2 + }, + { + "answers": [ + "50" + ], + "en_answers": [ + "50" + ], + "count": 1 + }, + { + "answers": [ + "56" + ], + "en_answers": [ + "56" + ], + "count": 1 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-66": { + "question": "Berapa biaya sekolah rata-rata per semester untuk SMA negeri di Indonesia? (Gunakan angka Arab (contoh, 1) saja.)", + "en_question": "What is the typical tuition fee per semester for public high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "800000" + ], + "en_answers": [ + "800000" + ], + "count": 1 + }, + { + "answers": [ + "1000000", + "1.000.000" + ], + "en_answers": [ + "1000000" + ], + "count": 1 + }, + { + "answers": [ + "3000000" + ], + "en_answers": [ + "3000000" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-70": { + "question": "Apa mata kuliah wajib yang dimiliki bersama oleh mahasiswa universitas di Indonesia?", + "en_question": "What compulsory courses do university students have in common in your country?", + "annotations": [ + { + "answers": [ + "agama" + ], + "en_answers": [ + "religion" + ], + "count": 4 + }, + { + "answers": [ + "pancasila", + "kewarganegaraan", + "pkn", + "ppkn" + ], + "en_answers": [ + "pancasila", + "civics" + ], + "count": 2 + }, + { + "answers": [ + "olahraga" + ], + "en_answers": [ + "sports" + ], + "count": 1 + }, + { + "answers": [ + "bahasa inggris" + ], + "en_answers": [ + "english language", + "english" + ], + "count": 1 + }, + { + "answers": [ + "karya ilmiah" + ], + "en_answers": [ + "scientific writing" + ], + "count": 1 + }, + { + "answers": [ + "matematika" + ], + "en_answers": [ + "mathematics" + ], + "count": 1 + }, + { + "answers": [ + "bahasa indonesia" + ], + "en_answers": [ + "indonesian language", + "indonesian" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-71": { + "question": "Berapa jumlah rata-rata siswa dalam satu kelas di sekolah menengah atas di Indonesia? (Berikan angka numerik Arab (contoh, 1) saja.)", + "en_question": "What is the average class size in high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 3 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 2 + }, + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + }, + { + "answers": [ + "45" + ], + "en_answers": [ + "45" + ], + "count": 1 + }, + { + "answers": [ + "50" + ], + "en_answers": [ + "50" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-72": { + "question": "Jurusan apa yang dianggap paling mendukung kesempatan kerja di Indonesia?", + "en_question": "Which major is considered most conducive to employment in your country?", + "annotations": [ + { + "answers": [ + "kedokteran" + ], + "en_answers": [ + "medicine" + ], + "count": 2 + }, + { + "answers": [ + "teknik" + ], + "en_answers": [ + "engineering" + ], + "count": 2 + }, + { + "answers": [ + "komputer", + "it" + ], + "en_answers": [ + "computer", + "information technology" + ], + "count": 2 + }, + { + "answers": [ + "keuangan" + ], + "en_answers": [ + "finance" + ], + "count": 1 + }, + { + "answers": [ + "manajemen" + ], + "en_answers": [ + "management" + ], + "count": 1 + }, + { + "answers": [ + "hukum" + ], + "en_answers": [ + "law" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-73": { + "question": "Jenis klub apa yang paling populer di kalangan mahasiswa universitas di Indonesia?", + "en_question": "What type of clubs are most popular among university students in your country?", + "annotations": [ + { + "answers": [ + "klub sepakbola", + "sepakbola", + "klub sepak bola", + "sepak bola" + ], + "en_answers": [ + "football club", + "soccer", + "soccer club" + ], + "count": 2 + }, + { + "answers": [ + "klub pendaki gunung" + ], + "en_answers": [ + "mountain climbing club", + "hiking club" + ], + "count": 1 + }, + { + "answers": [ + "klub sosial" + ], + "en_answers": [ + "social club" + ], + "count": 1 + }, + { + "answers": [ + "mapala", + "mahasiswa pecinta alam" + ], + "en_answers": [ + "mountaineering club" + ], + "count": 1 + }, + { + "answers": [ + "olahraga" + ], + "en_answers": [ + "sports" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ch-74": { + "question": "Di mana mahasiswa universitas biasanya tinggal di Indonesia?", + "en_question": "What types of accommodation do university students in your country typically live in?", + "annotations": [ + { + "answers": [ + "kost", + "kos-kosan", + "kost kostan", + "kos" + ], + "en_answers": [ + "boarding house" + ], + "count": 5 + }, + { + "answers": [ + "apartemen" + ], + "en_answers": [ + "apartment" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-75": { + "question": "Berapa lama durasi setiap periode kelas untuk siswa SMP di Indonesia (menit)? (Berikan hanya angka Arab (contoh, 1).)", + "en_question": "How long is each class period for middle school students in your country (minutes)? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 2 + }, + { + "answers": [ + "60", + "1" + ], + "en_answers": [ + "60" + ], + "count": 2 + }, + { + "answers": [ + "45" + ], + "en_answers": [ + "45" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-78": { + "question": "Kegiatan santai apa yang biasanya disukai oleh wanita pensiunan di Indonesia?", + "en_question": "What leisure activities do retired women typically like in your country?", + "annotations": [ + { + "answers": [ + "memasak" + ], + "en_answers": [ + "cooking" + ], + "count": 3 + }, + { + "answers": [ + "arisan" + ], + "en_answers": [ + "arisan" + ], + "count": 2 + }, + { + "answers": [ + "menjaga cucu" + ], + "en_answers": [ + "taking care of grandchildren" + ], + "count": 1 + }, + { + "answers": [ + "menonton tv" + ], + "en_answers": [ + "watching tv" + ], + "count": 1 + }, + { + "answers": [ + "liburan" + ], + "en_answers": [ + "holiday" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-79": { + "question": "Kegiatan santai apa yang biasanya disukai oleh pria pensiunan di Indonesia?", + "en_question": "What leisure activities do retired men typically like in your country?", + "annotations": [ + { + "answers": [ + "ngopi" + ], + "en_answers": [ + "have a coffee" + ], + "count": 2 + }, + { + "answers": [ + "mancing", + "memancing" + ], + "en_answers": [ + "fishing" + ], + "count": 2 + }, + { + "answers": [ + "nongkrong", + "ngumpul" + ], + "en_answers": [ + "hang out" + ], + "count": 2 + }, + { + "answers": [ + "mengurus binatang peliharaan" + ], + "en_answers": [ + "taking care of pets" + ], + "count": 1 + }, + { + "answers": [ + "menjaga cucu" + ], + "en_answers": [ + "taking care of grandchildren" + ], + "count": 1 + }, + { + "answers": [ + "golf" + ], + "en_answers": [ + "golf" + ], + "count": 1 + }, + { + "answers": [ + "jalan jalan", + "jalan-jalan" + ], + "en_answers": [ + "strolling" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-80": { + "question": "Pada hari raya apa biasanya orang-orang mengunjungi tempat-tempat ibadah (candi, gereja, dll) di Indonesia?", + "en_question": "During which holidays do people typically visit religious sites (temples, churches, etc.) in your country?", + "annotations": [ + { + "answers": [ + "idul fitri", + "idulfitri" + ], + "en_answers": [ + "eid al-fitr" + ], + "count": 5 + }, + { + "answers": [ + "natal" + ], + "en_answers": [ + "christmas" + ], + "count": 4 + }, + { + "answers": [ + "paskah" + ], + "en_answers": [ + "easter" + ], + "count": 2 + }, + { + "answers": [ + "nyepi" + ], + "en_answers": [ + "day of silence" + ], + "count": 1 + }, + { + "answers": [ + "idul adha", + "iduladha" + ], + "en_answers": [ + "eid al-adha" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-81": { + "question": "Apa hadiah peresmian rumah yang biasa di Indonesia?", + "en_question": "What are the typical housewarming gifts in your country?", + "annotations": [ + { + "answers": [ + "peralatan masak", + "alat masak" + ], + "en_answers": [ + "cooking utensils" + ], + "count": 2 + }, + { + "answers": [ + "parsel makanan" + ], + "en_answers": [ + "food parcel" + ], + "count": 1 + }, + { + "answers": [ + "alat perabotan", + "furnitur", + "perabotan" + ], + "en_answers": [ + "furniture" + ], + "count": 1 + }, + { + "answers": [ + "dekorasi" + ], + "en_answers": [ + "decoration" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-82": { + "question": "Pada pukul berapa biasanya pernikahan dimulai di Indonesia? (Berikan dalam format JJ:MM (contoh, 18:00, 09:00).)", + "en_question": "At what time do weddings typically start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "19:00" + ], + "en_answers": [ + "19:00" + ], + "count": 3 + }, + { + "answers": [ + "12:00" + ], + "en_answers": [ + "12:00" + ], + "count": 2 + }, + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 2 + }, + { + "answers": [ + "10:00" + ], + "en_answers": [ + "10:00" + ], + "count": 1 + }, + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-83": { + "question": "Kota mana di Indonesia yang paling sering mengadakan festival?", + "en_question": "Which city in your country hosts festivals the most?", + "annotations": [ + { + "answers": [ + "bali" + ], + "en_answers": [ + "bali" + ], + "count": 2 + }, + { + "answers": [ + "bandung" + ], + "en_answers": [ + "bandung" + ], + "count": 2 + }, + { + "answers": [ + "jakarta" + ], + "en_answers": [ + "jakarta" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-84": { + "question": "Warna pakaian apa yang biasanya dikenakan orang saat menghadiri pernikahan di Indonesia?", + "en_question": "What color of clothing do people typically wear when attending weddings in your country?", + "annotations": [ + { + "answers": [ + "hitam" + ], + "en_answers": [ + "black" + ], + "count": 1 + }, + { + "answers": [ + "abu-abu", + "abu" + ], + "en_answers": [ + "gray" + ], + "count": 1 + }, + { + "answers": [ + "ungu" + ], + "en_answers": [ + "purple" + ], + "count": 1 + }, + { + "answers": [ + "putih" + ], + "en_answers": [ + "white" + ], + "count": 1 + }, + { + "answers": [ + "krem" + ], + "en_answers": [ + "cream" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ch-85": { + "question": "Warna pakaian apa yang biasanya dikenakan orang saat menghadiri pemakaman di Indonesia?", + "en_question": "What color of clothing do people typically wear when attending funerals in your country?", + "annotations": [ + { + "answers": [ + "hitam" + ], + "en_answers": [ + "black" + ], + "count": 4 + }, + { + "answers": [ + "biru donker" + ], + "en_answers": [ + "dark blue" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-01": { + "question": "Camilan apa yang dimakan di bioskop di Indonesia?", + "en_question": "Which snack is eaten in the cinema in your country?", + "annotations": [ + { + "answers": [ + "popcorn" + ], + "en_answers": [ + "popcorn" + ], + "count": 4 + }, + { + "answers": [ + "keripik kentang" + ], + "en_answers": [ + "potato chips" + ], + "count": 1 + }, + { + "answers": [ + "permen" + ], + "en_answers": [ + "candy" + ], + "count": 1 + }, + { + "answers": [ + "jagung meletus", + "popcorn" + ], + "en_answers": [ + "popcorn" + ], + "count": 1 + }, + { + "answers": [ + "kentang goreng", + "french fries" + ], + "en_answers": [ + "french fries" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-02": { + "question": "Apa rasa keripik yang paling populer di Indonesia?", + "en_question": "What is the most popular chip/crisp flavour in your country?", + "annotations": [ + { + "answers": [ + "balado" + ], + "en_answers": [ + "balado" + ], + "count": 2 + }, + { + "answers": [ + "bbq" + ], + "en_answers": [ + "barbecue" + ], + "count": 2 + }, + { + "answers": [ + "pedas", + "keripik pedas" + ], + "en_answers": [ + "spicy" + ], + "count": 1 + }, + { + "answers": [ + "udang", + "keripik udang" + ], + "en_answers": [ + "shrimp" + ], + "count": 1 + }, + { + "answers": [ + "melinjo", + "keripik melinjo" + ], + "en_answers": [ + "melinjo chips" + ], + "count": 1 + }, + { + "answers": [ + "original" + ], + "en_answers": [ + "original" + ], + "count": 1 + }, + { + "answers": [ + "keju" + ], + "en_answers": [ + "cheese" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-en-04": { + "question": "Siapa koki selebriti yang populer di Indonesia?", + "en_question": "Who is a popular celebrity chef in your country?", + "annotations": [ + { + "answers": [ + "juna", + "chef juna", + "juna rorimpandey" + ], + "en_answers": [ + "juna" + ], + "count": 2 + }, + { + "answers": [ + "chef arnold", + "arnold", + "arnold poernomo" + ], + "en_answers": [ + "chef arnold" + ], + "count": 2 + }, + { + "answers": [ + "farah quinn" + ], + "en_answers": [ + "farah quinn" + ], + "count": 1 + }, + { + "answers": [ + "william wongso", + "william w. wongso", + "william w wongso" + ], + "en_answers": [ + "william wongso" + ], + "count": 1 + }, + { + "answers": [ + "chef renatta", + "chef renata", + "renatta", + "renatta moeloek" + ], + "en_answers": [ + "chef renatta" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-05": { + "question": "Makanan apa yang merupakan pilihan makanan hemat dan cepat di Indonesia?", + "en_question": "Which food is a cost-effective and quick meal option in your country?", + "annotations": [ + { + "answers": [ + "indomie", + "mie instan", + "mi instan" + ], + "en_answers": [ + "indomie", + "instant noodles" + ], + "count": 3 + }, + { + "answers": [ + "kfc", + "mcdonald's", + "mcd" + ], + "en_answers": [ + "kfc", + "mcdonald's" + ], + "count": 1 + }, + { + "answers": [ + "nasi uduk" + ], + "en_answers": [ + "uduk rice" + ], + "count": 1 + }, + { + "answers": [ + "tempe", + "tempe tahu" + ], + "en_answers": [ + "tempeh" + ], + "count": 1 + }, + { + "answers": [ + "tahu", + "tempe tahu" + ], + "en_answers": [ + "tofu" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-07": { + "question": "Apa saja acara masak yang paling populer di Indonesia?", + "en_question": "What are the most popular cooking shows in your country?", + "annotations": [ + { + "answers": [ + "masterchef indonesia" + ], + "en_answers": [ + "masterchef indonesia" + ], + "count": 4 + }, + { + "answers": [ + "top chef" + ], + "en_answers": [ + "top chef" + ], + "count": 1 + } + ], + "idks": { + "tidak tahu": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-08": { + "question": "Apa merek cokelat paling populer di Indonesia?", + "en_question": "What is the most popular chocolate brand in your country?", + "annotations": [ + { + "answers": [ + "silver queen", + "silverqueen" + ], + "en_answers": [ + "silver queen", + "silverqueen" + ], + "count": 4 + }, + { + "answers": [ + "beng beng" + ], + "en_answers": [ + "beng beng" + ], + "count": 1 + }, + { + "answers": [ + "toblerone" + ], + "en_answers": [ + "toblerone" + ], + "count": 1 + }, + { + "answers": [ + "cadburry" + ], + "en_answers": [ + "cadburry" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-10": { + "question": "Keju apa yang paling banyak dikonsumsi di Indonesia?", + "en_question": "What is the most eaten cheese in your country?", + "annotations": [ + { + "answers": [ + "cheddar", + "cheddar." + ], + "en_answers": [ + "cheddar" + ], + "count": 4 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-en-11": { + "question": "Apa sayuran yang paling tidak disukai di Indonesia?", + "en_question": "What is the most disliked vegetable in your country?", + "annotations": [ + { + "answers": [ + "brokoli", + "broccoli" + ], + "en_answers": [ + "broccoli" + ], + "count": 2 + }, + { + "answers": [ + "kecipir" + ], + "en_answers": [ + "winged bean" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 3, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-12": { + "question": "Makanan apa yang paling sering ditemukan di food court di Indonesia?", + "en_question": "What food is most commonly found in food courts in your country?", + "annotations": [ + { + "answers": [ + "nasi goreng" + ], + "en_answers": [ + "fried rice" + ], + "count": 4 + }, + { + "answers": [ + "bakso" + ], + "en_answers": [ + "meatball" + ], + "count": 2 + }, + { + "answers": [ + "mie ayam" + ], + "en_answers": [ + "chicken noodles" + ], + "count": 1 + }, + { + "answers": [ + "nasi rames" + ], + "en_answers": [ + "rames rice" + ], + "count": 1 + }, + { + "answers": [ + "ayam geprek" + ], + "en_answers": [ + "geprek chicken" + ], + "count": 1 + }, + { + "answers": [ + "ayam goreng" + ], + "en_answers": [ + "fried chicken" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-17": { + "question": "Apa benda yang paling sering digunakan oleh para penggemar olahraga untuk mendukung tim olahraga di Indonesia?", + "en_question": "What are the most common cheering tools used by sports fans in your country?", + "annotations": [ + { + "answers": [ + "spanduk", + "banner" + ], + "en_answers": [ + "banner" + ], + "count": 3 + }, + { + "answers": [ + "bendera" + ], + "en_answers": [ + "flag" + ], + "count": 1 + }, + { + "answers": [ + "jersey" + ], + "en_answers": [ + "jersey" + ], + "count": 1 + }, + { + "answers": [ + "yel yel" + ], + "en_answers": [ + "cheering song" + ], + "count": 1 + }, + { + "answers": [ + "gendang" + ], + "en_answers": [ + "drum" + ], + "count": 1 + }, + { + "answers": [ + "trompet", + "terompet" + ], + "en_answers": [ + "trumpet" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-18": { + "question": "Apa yang dibawa oleh para penggemar saat menghadiri pertandingan langsung di Indonesia?", + "en_question": "What do fans bring with them when attending a live game in your country?", + "annotations": [ + { + "answers": [ + "spanduk" + ], + "en_answers": [ + "banner" + ], + "count": 2 + }, + { + "answers": [ + "bendera" + ], + "en_answers": [ + "flag" + ], + "count": 2 + }, + { + "answers": [ + "makanan" + ], + "en_answers": [ + "food" + ], + "count": 1 + }, + { + "answers": [ + "baju pemain", + "jersey" + ], + "en_answers": [ + "player's jersey", + "jersey" + ], + "count": 1 + }, + { + "answers": [ + "peluit" + ], + "en_answers": [ + "whistle" + ], + "count": 1 + }, + { + "answers": [ + "poster" + ], + "en_answers": [ + "poster" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-19": { + "question": "Apa stadion olahraga yang paling terkenal di Indonesia?", + "en_question": "What is the most well known sporting stadium in your country?", + "annotations": [ + { + "answers": [ + "gelora bung karno", + "stadion gelora bung karno", + "gbk" + ], + "en_answers": [ + "gelora bung karno", + "gelora bung karno stadium", + "gbk" + ], + "count": 4 + }, + { + "answers": [ + "lebak bulus", + "stadion lebak bulus" + ], + "en_answers": [ + "lebak bulus", + "lebak bulus stadium" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-23": { + "question": "Siapa atlet Paralimpiade paling terkenal di Indonesia?", + "en_question": "Who is the most famous Paralympian in your country?", + "annotations": [ + { + "answers": [ + "ni nengah widiasih" + ], + "en_answers": [ + "ni nengah widiasih" + ], + "count": 1 + } + ], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-26": { + "question": "Apa yel-yel olahraga yang paling dikenal di Indonesia?", + "en_question": "What is the best recognized sporting chant in your country?", + "annotations": [ + { + "answers": [ + "ole-ole-ole-ole" + ], + "en_answers": [ + "ole-ole-ole-ole" + ], + "count": 1 + }, + { + "answers": [ + "garuda di dadaku" + ], + "en_answers": [ + "garuda di dadaku" + ], + "count": 1 + }, + { + "answers": [ + "indonesia prok prok prok" + ], + "en_answers": [ + "indonesia prok prok prok" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 1 + } + }, + "New-en-38": { + "question": "Industri apa yang dikenal memiliki jam kerja yang lebih fleksibel di Indonesia?", + "en_question": "Which industries are known for more flexible working hours in your country?", + "annotations": [ + { + "answers": [ + "antar makanan" + ], + "en_answers": [ + "food delivery" + ], + "count": 1 + }, + { + "answers": [ + "freelance" + ], + "en_answers": [ + "freelance" + ], + "count": 1 + }, + { + "answers": [ + "startup", + "start up" + ], + "en_answers": [ + "startup", + "start up" + ], + "count": 1 + }, + { + "answers": [ + "perhotelan" + ], + "en_answers": [ + "hospitality" + ], + "count": 1 + }, + { + "answers": [ + "teknologi" + ], + "en_answers": [ + "technology" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-41": { + "question": "Siapa pengusaha yang paling terkenal dan sukses di Indonesia?", + "en_question": "Who is the most well known and successful entrepreneur in your country?", + "annotations": [ + { + "answers": [ + "robert budi hartono", + "hartono", + "budi hartono" + ], + "en_answers": [ + "robert budi hartono", + "hartono" + ], + "count": 2 + }, + { + "answers": [ + "ciputra" + ], + "en_answers": [ + "ciputra" + ], + "count": 1 + }, + { + "answers": [ + "chairul tandjung", + "chairul tanjung" + ], + "en_answers": [ + "chairul tandjung" + ], + "count": 1 + }, + { + "answers": [ + "anthoni salim" + ], + "en_answers": [ + "anthoni salim" + ], + "count": 1 + }, + { + "answers": [ + "dato' sri tahir", + "tahir" + ], + "en_answers": [ + "dato' sri tahir" + ], + "count": 1 + }, + { + "answers": [ + "tomy winata" + ], + "en_answers": [ + "tomy winata" + ], + "count": 1 + }, + { + "answers": [ + "bob sadino", + "bambang mustari sadino" + ], + "en_answers": [ + "bob sadino" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-47": { + "question": "Apa yang biasanya dapat ditemukan di taman belakang rumah di Indonesia?", + "en_question": "What can typically be found in the back garden of houses in your country?", + "annotations": [ + { + "answers": [ + "kolam ikan" + ], + "en_answers": [ + "fish pond" + ], + "count": 1 + }, + { + "answers": [ + "tanaman hijau" + ], + "en_answers": [ + "green plants" + ], + "count": 1 + }, + { + "answers": [ + "tanaman hias" + ], + "en_answers": [ + "ornamental plants" + ], + "count": 1 + }, + { + "answers": [ + "rumput" + ], + "en_answers": [ + "grass" + ], + "count": 1 + }, + { + "answers": [ + "meja dan kursi" + ], + "en_answers": [ + "table and chairs" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-49": { + "question": "Siapa keluarga paling terkenal di Indonesia?", + "en_question": "What is the name of the most famous family in your country?", + "annotations": [ + { + "answers": [ + "cendana", + "soeharto" + ], + "en_answers": [ + "cendana", + "soeharto" + ], + "count": 2 + }, + { + "answers": [ + "salim" + ], + "en_answers": [ + "salim" + ], + "count": 1 + }, + { + "answers": [ + "soekarno" + ], + "en_answers": [ + "soekarno" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-en-50": { + "question": "Apa nama keluarga yang paling umum di Indonesia?", + "en_question": "What is the most common family name in your country?", + "annotations": [ + { + "answers": [ + "saputra" + ], + "en_answers": [ + "saputra" + ], + "count": 1 + }, + { + "answers": [ + "wijaya" + ], + "en_answers": [ + "wijaya" + ], + "count": 1 + }, + { + "answers": [ + "wibowo" + ], + "en_answers": [ + "wibowo" + ], + "count": 1 + }, + { + "answers": [ + "widodo" + ], + "en_answers": [ + "widodo" + ], + "count": 1 + }, + { + "answers": [ + "gunawan" + ], + "en_answers": [ + "gunawan" + ], + "count": 1 + }, + { + "answers": [ + "hartono" + ], + "en_answers": [ + "hartono" + ], + "count": 1 + }, + { + "answers": [ + "hermanto" + ], + "en_answers": [ + "hermanto" + ], + "count": 1 + }, + { + "answers": [ + "setiawan" + ], + "en_answers": [ + "setiawan" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-55": { + "question": "Agama apa yang paling umum dipeluk keluarga-keluarga di Indonesia?", + "en_question": "Which religion is most commonly practiced by families in your country?", + "annotations": [ + { + "answers": [ + "islam" + ], + "en_answers": [ + "islam" + ], + "count": 5 + }, + { + "answers": [ + "kristen" + ], + "en_answers": [ + "christian" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-56": { + "question": "Apa bahasa asing yang paling banyak digunakan oleh keluarga di Indonesia?", + "en_question": "What is the most popular foreign language spoken by families in your country?", + "annotations": [ + { + "answers": [ + "inggris", + "bahasa inggris" + ], + "en_answers": [ + "english", + "english language" + ], + "count": 5 + }, + { + "answers": [ + "mandarin", + "bahasa mandarin" + ], + "en_answers": [ + "mandarin", + "mandarin language" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-59": { + "question": "Negara mana yang merupakan tujuan emigrasi paling populer bagi keluarga-keluarga dari Indonesia?", + "en_question": "Which country is the most popular destination for families from your country to emigrate to?", + "annotations": [ + { + "answers": [ + "singapura" + ], + "en_answers": [ + "singapore" + ], + "count": 4 + }, + { + "answers": [ + "australia" + ], + "en_answers": [ + "australia" + ], + "count": 3 + }, + { + "answers": [ + "jepang" + ], + "en_answers": [ + "japan" + ], + "count": 2 + }, + { + "answers": [ + "malaysia" + ], + "en_answers": [ + "malaysia" + ], + "count": 1 + }, + { + "answers": [ + "amerika" + ], + "en_answers": [ + "america" + ], + "count": 1 + }, + { + "answers": [ + "belanda" + ], + "en_answers": [ + "netherlands" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-68": { + "question": "Apa saja sanksi yang diberikan untuk perilaku buruk di sekolah-sekolah di Indonesia?", + "en_question": "What repercussions are there for bad behavior in schools in your country?", + "annotations": [ + { + "answers": [ + "diskors", + "skors", + "skorsing" + ], + "en_answers": [ + "suspension" + ], + "count": 1 + }, + { + "answers": [ + "perilaku anarkis" + ], + "en_answers": [ + "anarchic behavior" + ], + "count": 1 + }, + { + "answers": [ + "perilaku tidak sopan" + ], + "en_answers": [ + "rude behavior" + ], + "count": 1 + }, + { + "answers": [ + "rendahnya minat membaca" + ], + "en_answers": [ + "low interest in reading" + ], + "count": 1 + }, + { + "answers": [ + "rendahnya minat sekolah" + ], + "en_answers": [ + "low interest in school" + ], + "count": 1 + }, + { + "answers": [ + "karakter yang buruk" + ], + "en_answers": [ + "bad character" + ], + "count": 1 + }, + { + "answers": [ + "pergaulan bebas" + ], + "en_answers": [ + "promiscuity" + ], + "count": 1 + }, + { + "answers": [ + "bullying", + "kekerasan anak", + "kekerasan" + ], + "en_answers": [ + "bullying", + "abuse" + ], + "count": 1 + }, + { + "answers": [ + "lingkungan sekolah tidak nyaman" + ], + "en_answers": [ + "uncomfortable school environment" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-69": { + "question": "Penulis-penulis mana yang biasanya dipelajari di kelas sastra di Indonesia?", + "en_question": "Which writers are commonly studied in literature class in your country?", + "annotations": [ + { + "answers": [ + "chairil anwar" + ], + "en_answers": [ + "chairil anwar" + ], + "count": 2 + }, + { + "answers": [ + "andrea hirata" + ], + "en_answers": [ + "andrea hirata" + ], + "count": 1 + }, + { + "answers": [ + "kho ping hoo" + ], + "en_answers": [ + "kho ping hoo" + ], + "count": 1 + }, + { + "answers": [ + "tere liye" + ], + "en_answers": [ + "tere liye" + ], + "count": 1 + }, + { + "answers": [ + "pramoedya ananta toer", + "pramodya ananta tur" + ], + "en_answers": [ + "pramoedya ananta toer" + ], + "count": 1 + }, + { + "answers": [ + "mochtar lubis" + ], + "en_answers": [ + "mochtar lubis" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-70": { + "question": "Berapa kali libur sekolah dalam setahun untuk sekolah menengah atas di Indonesia? (Berikan angka numerik Arab (contoh, 1) saja.)", + "en_question": "How many school breaks are there in a year for high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "70" + ], + "en_answers": [ + "70" + ], + "count": 1 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-72": { + "question": "Sumber daya online apa yang biasanya digunakan oleh siswa untuk belajar di Indonesia?", + "en_question": "Which online resource do students usually use to study in your country?", + "annotations": [ + { + "answers": [ + "google" + ], + "en_answers": [ + "google" + ], + "count": 3 + }, + { + "answers": [ + "internet" + ], + "en_answers": [ + "internet" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-75": { + "question": "Berapa rata-rata jumlah minggu kegiatan belajar dalam satu semester di universitas-universitas di Indonesia? (Berikan angka Arab (contoh, 1) saja.)", + "en_question": "What is the average length of a semester in terms of weeks of teaching at universities in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 2 + }, + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-76": { + "question": "Bandara mana di Indonesia yang paling sibuk selama musim liburan?", + "en_question": "Which airport in your country is the busiest during the holiday season?", + "annotations": [ + { + "answers": [ + "soekarno-hatta", + "soekarno hatta", + "bandara soekarno-hatta", + "bandara soekarno hatta" + ], + "en_answers": [ + "soekarno-hatta", + "soekarno hatta", + "soekarno-hatta airport" + ], + "count": 5 + }, + { + "answers": [ + "denpasar", + "i gusti ngurah rai", + "bandara i gusti ngurah rai" + ], + "en_answers": [ + "denpasar", + "i gusti ngurah rai" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-79": { + "question": "Wilayah mana di Indonesia yang terkenal dengan pertunjukan teaternya?", + "en_question": "Which region of your country is well known for its theatrical performances?", + "annotations": [ + { + "answers": [ + "jakarta" + ], + "en_answers": [ + "jakarta" + ], + "count": 1 + }, + { + "answers": [ + "jawa tengah" + ], + "en_answers": [ + "central java" + ], + "count": 1 + }, + { + "answers": [ + "jawa barat" + ], + "en_answers": [ + "west java" + ], + "count": 1 + }, + { + "answers": [ + "jogjakarta", + "yogyakarta" + ], + "en_answers": [ + "yogyakarta" + ], + "count": 1 + }, + { + "answers": [ + "jawa timur" + ], + "en_answers": [ + "east java" + ], + "count": 1 + }, + { + "answers": [ + "bali" + ], + "en_answers": [ + "bali" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-87": { + "question": "Apa landmark bersejarah paling terkenal di Indonesia?", + "en_question": "What is the most famous historic landmark in your country?", + "annotations": [ + { + "answers": [ + "monas", + "monumen nasional" + ], + "en_answers": [ + "national monument" + ], + "count": 4 + }, + { + "answers": [ + "candi borobudur.", + "borobudur" + ], + "en_answers": [ + "borobudur temple.", + "borobudur" + ], + "count": 2 + }, + { + "answers": [ + "patung pancoran" + ], + "en_answers": [ + "pancoran statue" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-90": { + "question": "Apa merek hotel paling terkenal di Indonesia?", + "en_question": "What is the most famous hotel brand in your country?", + "annotations": [ + { + "answers": [ + "sheraton" + ], + "en_answers": [ + "sheraton" + ], + "count": 2 + }, + { + "answers": [ + "santika" + ], + "en_answers": [ + "santika" + ], + "count": 1 + }, + { + "answers": [ + "hilton" + ], + "en_answers": [ + "hilton" + ], + "count": 1 + }, + { + "answers": [ + "jw marriott", + "marriott" + ], + "en_answers": [ + "jw marriott" + ], + "count": 1 + }, + { + "answers": [ + "grand hyatt" + ], + "en_answers": [ + "grand hyatt" + ], + "count": 1 + }, + { + "answers": [ + "mercure" + ], + "en_answers": [ + "mercure" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-05": { + "question": "Apa pilihan sarapan paling populer yang penyajiannya cepat (grab-and-go) di Indonesia?", + "en_question": "What is the most popular grab-and-go breakfast option in your country?", + "annotations": [ + { + "answers": [ + "roti" + ], + "en_answers": [ + "bread" + ], + "count": 3 + }, + { + "answers": [ + "muffin" + ], + "en_answers": [ + "muffin" + ], + "count": 1 + }, + { + "answers": [ + "nasi telur" + ], + "en_answers": [ + "rice with egg" + ], + "count": 1 + }, + { + "answers": [ + "mie goreng", + "mi goreng" + ], + "en_answers": [ + "fried noodles" + ], + "count": 1 + }, + { + "answers": [ + "mie instan", + "mi instan" + ], + "en_answers": [ + "instant noodles" + ], + "count": 1 + }, + { + "answers": [ + "nasi uduk", + "nadi uduk" + ], + "en_answers": [ + "uduk rice" + ], + "count": 1 + }, + { + "answers": [ + "nasi kuning", + "nadi kuning" + ], + "en_answers": [ + "yellow rice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-06": { + "question": "Apa makanan paling populer di Indonesia di kalangan anak muda?", + "en_question": "What is the most popular food in your country among young people?", + "annotations": [ + { + "answers": [ + "ayam geprek", + "agam geprek" + ], + "en_answers": [ + "geprek chicken" + ], + "count": 2 + }, + { + "answers": [ + "roti bakar" + ], + "en_answers": [ + "toast" + ], + "count": 1 + }, + { + "answers": [ + "indomie" + ], + "en_answers": [ + "indomie" + ], + "count": 1 + }, + { + "answers": [ + "iga bakar" + ], + "en_answers": [ + "grilled ribs" + ], + "count": 1 + }, + { + "answers": [ + "bakmi" + ], + "en_answers": [ + "noodles" + ], + "count": 1 + }, + { + "answers": [ + "kue" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "ayam goreng" + ], + "en_answers": [ + "fried chicken" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-08": { + "question": "Jenis minuman beralkohol apa yang paling sering dikonsumsi di festival-festival di Indonesia?", + "en_question": "What type of alcoholic drink is most commonly consumed at festivals in your country?", + "annotations": [ + { + "answers": [ + "bir" + ], + "en_answers": [ + "beer" + ], + "count": 3 + }, + { + "answers": [ + "tuak" + ], + "en_answers": [ + "palm wine" + ], + "count": 3 + }, + { + "answers": [ + "lapen" + ], + "en_answers": [ + "lapen" + ], + "count": 1 + }, + { + "answers": [ + "brem" + ], + "en_answers": [ + "brem" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-gr-13": { + "question": "Apa minuman yang paling umum dikonsumsi pagi hari di Indonesia?", + "en_question": "What is the most common morning drink in your country?", + "annotations": [ + { + "answers": [ + "teh", + "teh manis", + "teh hangat" + ], + "en_answers": [ + "tea", + "sweet tea", + "warm tea" + ], + "count": 4 + }, + { + "answers": [ + "kopi" + ], + "en_answers": [ + "coffee" + ], + "count": 2 + }, + { + "answers": [ + "air putih" + ], + "en_answers": [ + "water" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-15": { + "question": "Apa makanan penutup (dessert) tradisional yang paling populer di Indonesia?", + "en_question": "What is the most popular traditional dessert in your country?", + "annotations": [ + { + "answers": [ + "es buah" + ], + "en_answers": [ + "iced fruit" + ], + "count": 1 + }, + { + "answers": [ + "ketan hitam" + ], + "en_answers": [ + "black sticky rice" + ], + "count": 1 + }, + { + "answers": [ + "es campur" + ], + "en_answers": [ + "mixed ice" + ], + "count": 1 + }, + { + "answers": [ + "martabak manis" + ], + "en_answers": [ + "sweet martabak" + ], + "count": 1 + }, + { + "answers": [ + "pisang goreng" + ], + "en_answers": [ + "fried banana" + ], + "count": 1 + }, + { + "answers": [ + "cendol" + ], + "en_answers": [ + "cendol" + ], + "count": 1 + }, + { + "answers": [ + "kolak" + ], + "en_answers": [ + "kolak" + ], + "count": 1 + }, + { + "answers": [ + "es krim" + ], + "en_answers": [ + "ice cream" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-21": { + "question": "Apa olahraga raket yang paling populer di Indonesia?", + "en_question": "What is the most popular racket sport in your country?", + "annotations": [ + { + "answers": [ + "bulutangkis", + "badminton", + "bulu tangkis" + ], + "en_answers": [ + "badminton" + ], + "count": 5 + }, + { + "answers": [ + "tenis meja" + ], + "en_answers": [ + "table tennis" + ], + "count": 1 + }, + { + "answers": [ + "tenis" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-24": { + "question": "Apa cabang olahraga atletik yang paling populer di Indonesia?", + "en_question": "What is the most popular track and field sport in your country?", + "annotations": [ + { + "answers": [ + "lari" + ], + "en_answers": [ + "running" + ], + "count": 2 + }, + { + "answers": [ + "badminton", + "bulu tangkis", + "bulutangkis" + ], + "en_answers": [ + "badminton" + ], + "count": 2 + }, + { + "answers": [ + "maraton", + "marathon" + ], + "en_answers": [ + "marathon" + ], + "count": 2 + }, + { + "answers": [ + "lari jarak pendek" + ], + "en_answers": [ + "sprint" + ], + "count": 1 + }, + { + "answers": [ + "sepak bola" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-29": { + "question": "Apa ajang olahraga internasional yang paling populer di Indonesia?", + "en_question": "Which international sporting event is the most popular in your country?", + "annotations": [ + { + "answers": [ + "sepak bola", + "sepakbola", + "sepal bola" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 4 + }, + { + "answers": [ + "basket" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "bulutangkis", + "bulu tangkis", + "badminton" + ], + "en_answers": [ + "badminton" + ], + "count": 2 + }, + { + "answers": [ + "olimpiade" + ], + "en_answers": [ + "olympiad" + ], + "count": 1 + }, + { + "answers": [ + "piala dunia", + "world cup" + ], + "en_answers": [ + "world cup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-47": { + "question": "Berapa lama (dalam menit) istirahat kerja umumnya di Indonesia, tidak termasuk istirahat makan siang dan makan malam? (Berikan angka Arab (misalnya, 1) saja.)", + "en_question": "How long (in minutes) are typical work breaks in your country, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "60", + "60 menit" + ], + "en_answers": [ + "60" + ], + "count": 3 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-58": { + "question": "Di Indonesia, pekerjaan apa yang bayarannya dianggap lebih rendah dari seharusnya?", + "en_question": "Which job is considered underpaid in your country?", + "annotations": [ + { + "answers": [ + "guru" + ], + "en_answers": [ + "teacher" + ], + "count": 3 + }, + { + "answers": [ + "kuli bangunan", + "pekerja konstruksi" + ], + "en_answers": [ + "construction worker" + ], + "count": 2 + }, + { + "answers": [ + "office boy" + ], + "en_answers": [ + "office boy" + ], + "count": 1 + }, + { + "answers": [ + "tukang sapu jalan" + ], + "en_answers": [ + "street sweeper" + ], + "count": 1 + }, + { + "answers": [ + "buruh" + ], + "en_answers": [ + "laborer" + ], + "count": 1 + }, + { + "answers": [ + "pekerja transportasi" + ], + "en_answers": [ + "transportation worker" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-76": { + "question": "Apa makanan yang paling sering disajikan saat Paskah di Indonesia?", + "en_question": "What is the most common food served during Easter in your country?", + "annotations": [ + { + "answers": [ + "telur", + "telur rebus", + "telur paskah" + ], + "en_answers": [ + "egg", + "boiled egg", + "easter eggs" + ], + "count": 4 + }, + { + "answers": [ + "nasi goreng" + ], + "en_answers": [ + "fried rice" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-82": { + "question": "Apa genre musik paling populer di kalangan orang tua atau lansia di Indonesia?", + "en_question": "What is the most popular music genre among the elderly population in your country?", + "annotations": [ + { + "answers": [ + "dangdut" + ], + "en_answers": [ + "dangdut" + ], + "count": 4 + }, + { + "answers": [ + "pop" + ], + "en_answers": [ + "pop" + ], + "count": 2 + }, + { + "answers": [ + "keroncong", + "kroncong" + ], + "en_answers": [ + "keroncong" + ], + "count": 1 + }, + { + "answers": [ + "klasik" + ], + "en_answers": [ + "classic" + ], + "count": 1 + }, + { + "answers": [ + "koplo" + ], + "en_answers": [ + "koplo" + ], + "count": 1 + }, + { + "answers": [ + "lagu nostalgia" + ], + "en_answers": [ + "nostalgic song" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-88": { + "question": "Minuman apa yang biasanya disuguhkan di acara pemakaman di Indonesia?", + "en_question": "What drink is usually offered at funerals in your country?", + "annotations": [ + { + "answers": [ + "teh" + ], + "en_answers": [ + "tea" + ], + "count": 3 + }, + { + "answers": [ + "air putih", + "air mineral" + ], + "en_answers": [ + "water", + "mineral water" + ], + "count": 3 + }, + { + "answers": [ + "kopi" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-gr-89": { + "question": "Minuman apa yang biasanya disuguhkan di acara pernikahan di Indonesia?", + "en_question": "What drink is usually offered at weddings in your country?", + "annotations": [ + { + "answers": [ + "teh", + "es teh manis", + "teh botol" + ], + "en_answers": [ + "tea", + "sweet iced tea", + "teh botol" + ], + "count": 3 + }, + { + "answers": [ + "es buah" + ], + "en_answers": [ + "iced fruit" + ], + "count": 2 + }, + { + "answers": [ + "air mineral" + ], + "en_answers": [ + "mineral water" + ], + "count": 2 + }, + { + "answers": [ + "soda", + "minuman bersoda" + ], + "en_answers": [ + "soda" + ], + "count": 2 + }, + { + "answers": [ + "sirup" + ], + "en_answers": [ + "syrup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-07": { + "question": "Makanan apa yang berasal dari Indonesia dan dapat ditemukan di seluruh dunia?", + "en_question": "What food originated from your country and can be found all over the world?", + "annotations": [ + { + "answers": [ + "nasi goreng" + ], + "en_answers": [ + "fried rice" + ], + "count": 4 + }, + { + "answers": [ + "tempe" + ], + "en_answers": [ + "tempeh" + ], + "count": 1 + }, + { + "answers": [ + "sate ayam" + ], + "en_answers": [ + "chicken satay" + ], + "count": 1 + }, + { + "answers": [ + "gado gado", + "gado-gado" + ], + "en_answers": [ + "gado-gado" + ], + "count": 1 + }, + { + "answers": [ + "sate" + ], + "en_answers": [ + "satay" + ], + "count": 1 + }, + { + "answers": [ + "rendang" + ], + "en_answers": [ + "rendang" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-08": { + "question": "Makanan apa yang biasanya tidak disukai oleh anak-anak tetapi disukai oleh orang tua atau lansia di Indonesia?", + "en_question": "What food is typically disliked by children but enjoyed by the elderly in your country?", + "annotations": [ + { + "answers": [ + "buah pare" + ], + "en_answers": [ + "bitter melon" + ], + "count": 1 + }, + { + "answers": [ + "sayuran" + ], + "en_answers": [ + "vegetables" + ], + "count": 1 + }, + { + "answers": [ + "gado gado", + "gado-gado" + ], + "en_answers": [ + "gado-gado" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ha-09": { + "question": "Alat masak apa yang paling sering digunakan di Indonesia?", + "en_question": "What cooking utensil is most commonly used in your country?", + "annotations": [ + { + "answers": [ + "wajan" + ], + "en_answers": [ + "frying pan" + ], + "count": 4 + }, + { + "answers": [ + "panci" + ], + "en_answers": [ + "boil pan" + ], + "count": 2 + }, + { + "answers": [ + "rice cooker" + ], + "en_answers": [ + "rice cooker" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ha-13": { + "question": "Sayuran apa yang paling populer di Indonesia?", + "en_question": "Which is the most popular vegetable in your country?", + "annotations": [ + { + "answers": [ + "kangkung" + ], + "en_answers": [ + "water spinach" + ], + "count": 3 + }, + { + "answers": [ + "bayam" + ], + "en_answers": [ + "spinach" + ], + "count": 3 + }, + { + "answers": [ + "buncis" + ], + "en_answers": [ + "green beans" + ], + "count": 2 + }, + { + "answers": [ + "kacang panjang" + ], + "en_answers": [ + "long beans" + ], + "count": 1 + }, + { + "answers": [ + "sop" + ], + "en_answers": [ + "soup" + ], + "count": 1 + }, + { + "answers": [ + "pok choy" + ], + "en_answers": [ + "bok choy" + ], + "count": 1 + }, + { + "answers": [ + "kubis" + ], + "en_answers": [ + "cabbage" + ], + "count": 1 + }, + { + "answers": [ + "sawi" + ], + "en_answers": [ + "mustard greens" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-19": { + "question": "Hewan apa yang digunakan untuk olahraga di Indonesia?", + "en_question": "Which animal is used for sports in your country?", + "annotations": [ + { + "answers": [ + "kuda" + ], + "en_answers": [ + "horse" + ], + "count": 3 + }, + { + "answers": [ + "sapi" + ], + "en_answers": [ + "cow" + ], + "count": 2 + }, + { + "answers": [ + "kerbau" + ], + "en_answers": [ + "buffalo" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-66": { + "question": "Apa tempat pernikahan yang paling populer di Indonesia?", + "en_question": "What is the most popular wedding venue in your country?", + "annotations": [ + { + "answers": [ + "masjid" + ], + "en_answers": [ + "mosque" + ], + "count": 2 + }, + { + "answers": [ + "hotel" + ], + "en_answers": [ + "hotel" + ], + "count": 2 + }, + { + "answers": [ + "gereja" + ], + "en_answers": [ + "church" + ], + "count": 1 + }, + { + "answers": [ + "joglo" + ], + "en_answers": [ + "joglo" + ], + "count": 1 + }, + { + "answers": [ + "gedung olahraga" + ], + "en_answers": [ + "sports building" + ], + "count": 1 + }, + { + "answers": [ + "bali" + ], + "en_answers": [ + "bali" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-in-01": { + "question": "Merek kedai kopi apa yang paling populer di Indonesia?", + "en_question": "Which coffee shop brand is the most popular in your country?", + "annotations": [ + { + "answers": [ + "kopi kenangan" + ], + "en_answers": [ + "kopi kenangan" + ], + "count": 2 + }, + { + "answers": [ + "kapal api" + ], + "en_answers": [ + "kapal api" + ], + "count": 1 + }, + { + "answers": [ + "kopi luwak" + ], + "en_answers": [ + "kopi luwak" + ], + "count": 1 + }, + { + "answers": [ + "starbucks" + ], + "en_answers": [ + "starbucks" + ], + "count": 1 + }, + { + "answers": [ + "janji jiwa" + ], + "en_answers": [ + "janji jiwa" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-in-03": { + "question": "Jenis makanan apa dari Indonesia yang biasanya disajikan di restoran-restoran di luar negeri?", + "en_question": "What type of food from your country is typically served in restaurants overseas?", + "annotations": [ + { + "answers": [ + "nasi goreng" + ], + "en_answers": [ + "fried rice" + ], + "count": 5 + }, + { + "answers": [ + "rendang" + ], + "en_answers": [ + "rendang" + ], + "count": 2 + }, + { + "answers": [ + "sate" + ], + "en_answers": [ + "satay" + ], + "count": 2 + }, + { + "answers": [ + "bakmi goreng" + ], + "en_answers": [ + "fried noodles" + ], + "count": 1 + }, + { + "answers": [ + "gudeg" + ], + "en_answers": [ + "gudeg" + ], + "count": 1 + }, + { + "answers": [ + "gado-gado", + "gado gado" + ], + "en_answers": [ + "gado-gado" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-33": { + "question": "Wilayah mana di Indonesia yang biasanya dikaitkan dengan pertambangan?", + "en_question": "What region in your country is usually associated with mining?", + "annotations": [ + { + "answers": [ + "papua" + ], + "en_answers": [ + "papua" + ], + "count": 3 + }, + { + "answers": [ + "sumatra" + ], + "en_answers": [ + "sumatra" + ], + "count": 1 + }, + { + "answers": [ + "kalimantan" + ], + "en_answers": [ + "borneo" + ], + "count": 1 + }, + { + "answers": [ + "maluku" + ], + "en_answers": [ + "moluccas" + ], + "count": 1 + }, + { + "answers": [ + "papua barat" + ], + "en_answers": [ + "west papua" + ], + "count": 1 + }, + { + "answers": [ + "ntb", + "nusa tenggara barat" + ], + "en_answers": [ + "west nusa tenggara" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-34": { + "question": "Wilayah mana di Indonesia yang biasanya dikaitkan dengan minyak?", + "en_question": "What region in your country is usually associated with oil?", + "annotations": [ + { + "answers": [ + "papua" + ], + "en_answers": [ + "papua" + ], + "count": 2 + }, + { + "answers": [ + "riau", + "propinsi riau", + "provinsi riau" + ], + "en_answers": [ + "riau", + "riau province" + ], + "count": 2 + }, + { + "answers": [ + "kalimantan" + ], + "en_answers": [ + "borneo" + ], + "count": 1 + }, + { + "answers": [ + "cilacap" + ], + "en_answers": [ + "cilacap" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-62": { + "question": "Universitas apa di Indonesia yang populer karena jurusan tekniknya? (Berikan nama resminya.)", + "en_question": "What university in your country is popular because of its engineering major? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "institut teknologi bandung", + "itb", + "insitut teknologi bandung" + ], + "en_answers": [ + "bandung institute of technology" + ], + "count": 4 + }, + { + "answers": [ + "ui", + "universitas indonesia", + "universitar indonesia" + ], + "en_answers": [ + "the university of indonesia" + ], + "count": 2 + }, + { + "answers": [ + "ugm", + "universitas gadjah mada" + ], + "en_answers": [ + "gadjah mada university" + ], + "count": 1 + }, + { + "answers": [ + "institut teknologi sepuluh november", + "its" + ], + "en_answers": [ + "sepuluh nopember institute of technology" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-63": { + "question": "Universitas apa di Indonesia yang populer karena fakultas kedokterannya? (Berikan nama resminya.)", + "en_question": "What university in your country is popular because of its school of medicine? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "universitas indonesia", + "ui" + ], + "en_answers": [ + "the university of indonesia" + ], + "count": 5 + }, + { + "answers": [ + "universitas gadjah mada", + "universitas gajah mada", + "ugm" + ], + "en_answers": [ + "gadjah mada university" + ], + "count": 2 + }, + { + "answers": [ + "universitas sumatera utara", + "usu" + ], + "en_answers": [ + "the university of north sumatra" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-78": { + "question": "Apa metode pembayaran yang paling populer di Indonesia?", + "en_question": "What is the most popular payment method in your country?", + "annotations": [ + { + "answers": [ + "kartu kredit" + ], + "en_answers": [ + "credit card" + ], + "count": 2 + }, + { + "answers": [ + "uang tunai", + "cash tunai", + "kash tunai" + ], + "en_answers": [ + "cash" + ], + "count": 2 + }, + { + "answers": [ + "qris" + ], + "en_answers": [ + "qris" + ], + "count": 1 + }, + { + "answers": [ + "gopay" + ], + "en_answers": [ + "gopay" + ], + "count": 1 + }, + { + "answers": [ + "transfer bank", + "bank transfer" + ], + "en_answers": [ + "bank transfer" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-in-80": { + "question": "Apa taman hiburan paling terkenal di Indonesia?", + "en_question": "What is the most famous theme park in your country?", + "annotations": [ + { + "answers": [ + "dufan", + "dunia fantasi" + ], + "en_answers": [ + "dufan", + "dunia fantasi" + ], + "count": 4 + }, + { + "answers": [ + "tmii", + "taman mini" + ], + "en_answers": [ + "tmii", + "taman mini" + ], + "count": 2 + }, + { + "answers": [ + "ancol" + ], + "en_answers": [ + "ancol" + ], + "count": 1 + }, + { + "answers": [ + "jatim park" + ], + "en_answers": [ + "jatim park" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-01": { + "question": "Apa animasi anak-anak yang paling populer dan sering ditonton oleh anak-anak di Indonesia?", + "en_question": "What is the most popular children's animation that is commonly watched by kids in your country?", + "annotations": [ + { + "answers": [ + "upin ipin", + "upin & ipin" + ], + "en_answers": [ + "upin ipin", + "upin & ipin" + ], + "count": 3 + }, + { + "answers": [ + "doraemon" + ], + "en_answers": [ + "doraemon" + ], + "count": 2 + }, + { + "answers": [ + "spongebob", + "spongebob squarepants" + ], + "en_answers": [ + "spongebob", + "spongebob squarepants" + ], + "count": 2 + }, + { + "answers": [ + "crayon shinchan", + "crayon sinchan", + "shinchan" + ], + "en_answers": [ + "crayon sinchan" + ], + "count": 1 + }, + { + "answers": [ + "sailor moon" + ], + "en_answers": [ + "sailor moon" + ], + "count": 1 + }, + { + "answers": [ + "naruto" + ], + "en_answers": [ + "naruto" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-02": { + "question": "Apa aktivitas pendidikan pranatal yang paling populer bagi wanita hamil di Indonesia?", + "en_question": "What is the most popular prenatal education activity for pregnant women in your country?", + "annotations": [ + { + "answers": [ + "senam ibu hamil", + "senam hamil" + ], + "en_answers": [ + "pregnant women's exercise", + "pregnancy exercise" + ], + "count": 2 + }, + { + "answers": [ + "kelas pijat bayi" + ], + "en_answers": [ + "baby massage class" + ], + "count": 1 + }, + { + "answers": [ + "lahiran hipno" + ], + "en_answers": [ + "hypnobirthing" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 1 + } + }, + "New-ko-03": { + "question": "Apa lagu anak-anak yang paling populer di Indonesia yang sering dinyanyikan bersama keluarga?", + "en_question": "What is the most popular children's song in your country that families sing together?", + "annotations": [ + { + "answers": [ + "balonku" + ], + "en_answers": [ + "balonku" + ], + "count": 4 + }, + { + "answers": [ + "pelangi" + ], + "en_answers": [ + "pelangi" + ], + "count": 1 + }, + { + "answers": [ + "bintang kecil" + ], + "en_answers": [ + "bintang kecil" + ], + "count": 1 + }, + { + "answers": [ + "potong bebek angsa" + ], + "en_answers": [ + "potong bebek angsa" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-04": { + "question": "Mainan apa yang paling populer di kalangan anak laki-laki di Indonesia?", + "en_question": "Which toys are most popular among boys in your country?", + "annotations": [ + { + "answers": [ + "sepak bola", + "sepakbola" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 3 + }, + { + "answers": [ + "mobil-mobilan" + ], + "en_answers": [ + "toy car" + ], + "count": 2 + }, + { + "answers": [ + "futsal" + ], + "en_answers": [ + "futsal" + ], + "count": 1 + }, + { + "answers": [ + "layang-layang", + "layangan" + ], + "en_answers": [ + "kite" + ], + "count": 1 + }, + { + "answers": [ + "kelereng" + ], + "en_answers": [ + "marbles" + ], + "count": 1 + }, + { + "answers": [ + "game online" + ], + "en_answers": [ + "online game" + ], + "count": 1 + }, + { + "answers": [ + "bola basket", + "basket" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-05": { + "question": "Mainan apa yang paling populer di kalangan gadis di Indonesia?", + "en_question": "Which toys are most popular among girls in your country?", + "annotations": [ + { + "answers": [ + "bola bekel", + "bekel" + ], + "en_answers": [ + "knucklebones" + ], + "count": 1 + }, + { + "answers": [ + "lompat tali" + ], + "en_answers": [ + "jump rope" + ], + "count": 1 + }, + { + "answers": [ + "dakon" + ], + "en_answers": [ + "dakon" + ], + "count": 1 + }, + { + "answers": [ + "hp", + "game hp", + "permainan hp", + "mobile games" + ], + "en_answers": [ + "mobile phone", + "mobile games" + ], + "count": 1 + }, + { + "answers": [ + "barbie" + ], + "en_answers": [ + "barbie" + ], + "count": 1 + }, + { + "answers": [ + "masak-masakan" + ], + "en_answers": [ + "cooking" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ko-06": { + "question": "Apa cerita rakyat yang paling populer di Indonesia yang biasanya diceritakan kepada anak-anak?", + "en_question": "What is the most popular folk tale in your country that is typically told to children?", + "annotations": [ + { + "answers": [ + "malin kundang" + ], + "en_answers": [ + "malin kundang" + ], + "count": 5 + }, + { + "answers": [ + "timun mas" + ], + "en_answers": [ + "timun mas" + ], + "count": 1 + }, + { + "answers": [ + "bawang putih" + ], + "en_answers": [ + "bawang putih" + ], + "count": 1 + }, + { + "answers": [ + "sangkuriang" + ], + "en_answers": [ + "sangkuriang" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-07": { + "question": "Apa simbol belasungkawa yang biasa digunakan pada pemakaman di Indonesia?", + "en_question": "What is the customary symbol of condolence used at funerals in your country?", + "annotations": [ + { + "answers": [ + "baju hitam" + ], + "en_answers": [ + "black shirt" + ], + "count": 2 + }, + { + "answers": [ + "karangan bunga", + "bunga" + ], + "en_answers": [ + "flower arrangement", + "flower" + ], + "count": 2 + }, + { + "answers": [ + "foto" + ], + "en_answers": [ + "photo" + ], + "count": 1 + }, + { + "answers": [ + "pita hitam" + ], + "en_answers": [ + "black ribbon" + ], + "count": 1 + }, + { + "answers": [ + "sholat jenazah" + ], + "en_answers": [ + "funeral prayer" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-08": { + "question": "Di mana mahasiswa di Indonesia cenderung bekerja paruh waktu paling banyak?", + "en_question": "Where do university students in your country tend to work part-time the most?", + "annotations": [ + { + "answers": [ + "restauran", + "restoran", + "restaurant" + ], + "en_answers": [ + "restaurant" + ], + "count": 3 + }, + { + "answers": [ + "starbucks" + ], + "en_answers": [ + "starbucks" + ], + "count": 1 + }, + { + "answers": [ + "gojek", + "gojek/gocar", + "gocar" + ], + "en_answers": [ + "gojek", + "ride-hailing service", + "gocar" + ], + "count": 1 + }, + { + "answers": [ + "jakarta" + ], + "en_answers": [ + "jakarta" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-09": { + "question": "Apa saja aktivitas team-building yang paling sering dilakukan di perusahaan-perusahaan yang berbasis di Indonesia?", + "en_question": "What are the most frequently practiced team-building activities in companies based in your country?", + "annotations": [ + { + "answers": [ + "bermain bersama", + "games", + "permainan" + ], + "en_answers": [ + "play together", + "games" + ], + "count": 2 + }, + { + "answers": [ + "tarik tambang" + ], + "en_answers": [ + "tug of war" + ], + "count": 1 + }, + { + "answers": [ + "truth or dare" + ], + "en_answers": [ + "truth or dare" + ], + "count": 1 + }, + { + "answers": [ + "olahraga", + "olahraga/lomba" + ], + "en_answers": [ + "sports" + ], + "count": 1 + }, + { + "answers": [ + "lomba", + "olahraga/lomba" + ], + "en_answers": [ + "competition" + ], + "count": 1 + }, + { + "answers": [ + "acara bersama", + "acara bersama (potluck" + ], + "en_answers": [ + "gathering event" + ], + "count": 1 + }, + { + "answers": [ + "potluck", + "acara bersama (potluck" + ], + "en_answers": [ + "sharing food" + ], + "count": 1 + }, + { + "answers": [ + "senam pagi" + ], + "en_answers": [ + "morning exercise" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-10": { + "question": "Apa saja pekerjaan sampingan yang paling umum dilakukan orang-orang di Indonesia?", + "en_question": "What are the most common activities people do as a side job in your country?", + "annotations": [ + { + "answers": [ + "toko online", + "online shop", + "jualan online" + ], + "en_answers": [ + "online shop" + ], + "count": 2 + }, + { + "answers": [ + "membuka toko" + ], + "en_answers": [ + "opening a store" + ], + "count": 1 + }, + { + "answers": [ + "make-up artist", + "make up artist", + "mua" + ], + "en_answers": [ + "make-up artist" + ], + "count": 1 + }, + { + "answers": [ + "wirausaha" + ], + "en_answers": [ + "entrepreneur" + ], + "count": 1 + }, + { + "answers": [ + "jasa kuliner" + ], + "en_answers": [ + "culinary services" + ], + "count": 1 + }, + { + "answers": [ + "fotografi" + ], + "en_answers": [ + "photography" + ], + "count": 1 + }, + { + "answers": [ + "gojek" + ], + "en_answers": [ + "gojek", + "ride-hailing service" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-02": { + "question": "Apa oleh-oleh makanan untuk turis yang paling terkenal dari Indonesia?", + "en_question": "What is the most famous edible souvenir for tourists in your country?", + "annotations": [ + { + "answers": [ + "gemblong" + ], + "en_answers": [ + "gemblong" + ], + "count": 1 + }, + { + "answers": [ + "indomie" + ], + "en_answers": [ + "indomie" + ], + "count": 1 + }, + { + "answers": [ + "bika ambon" + ], + "en_answers": [ + "bika ambon" + ], + "count": 1 + }, + { + "answers": [ + "sate ayam" + ], + "en_answers": [ + "chicken satay" + ], + "count": 1 + }, + { + "answers": [ + "pai susu", + "pie susu" + ], + "en_answers": [ + "milk pie" + ], + "count": 1 + }, + { + "answers": [ + "makanan kering" + ], + "en_answers": [ + "dry snacks" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-06": { + "question": "Apa makanan berkuah yang paling populer di Indonesia?", + "en_question": "What is the most popular stew in your country?", + "annotations": [ + { + "answers": [ + "rendang" + ], + "en_answers": [ + "rendang" + ], + "count": 1 + }, + { + "answers": [ + "soto" + ], + "en_answers": [ + "soto" + ], + "count": 1 + }, + { + "answers": [ + "singkong" + ], + "en_answers": [ + "cassava" + ], + "count": 1 + }, + { + "answers": [ + "indomie" + ], + "en_answers": [ + "indomie" + ], + "count": 1 + }, + { + "answers": [ + "ubi" + ], + "en_answers": [ + "sweet potato" + ], + "count": 1 + }, + { + "answers": [ + "kentang rebus" + ], + "en_answers": [ + "boiled potatoes" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-11": { + "question": "Apa bumbu atau rempah yang paling sering digunakan dalam masakan Indonesia?", + "en_question": "What is the most common spice/herb used in dishes from your country?", + "annotations": [ + { + "answers": [ + "kunyit" + ], + "en_answers": [ + "turmeric" + ], + "count": 4 + }, + { + "answers": [ + "lengkuas" + ], + "en_answers": [ + "galangal" + ], + "count": 2 + }, + { + "answers": [ + "jahe" + ], + "en_answers": [ + "ginger" + ], + "count": 2 + }, + { + "answers": [ + "kemiri" + ], + "en_answers": [ + "candlenut" + ], + "count": 1 + }, + { + "answers": [ + "garam" + ], + "en_answers": [ + "salt" + ], + "count": 1 + }, + { + "answers": [ + "ketumbar" + ], + "en_answers": [ + "coriander" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-16": { + "question": "Apa olahraga tradisional paling terkenal di Indonesia?", + "en_question": "What is the most famous traditional sport in your country?", + "annotations": [ + { + "answers": [ + "pencak silat", + "silat" + ], + "en_answers": [ + "pencak silat", + "silat" + ], + "count": 4 + }, + { + "answers": [ + "bulutangkis", + "bulu tangkis", + "badminton" + ], + "en_answers": [ + "badminton" + ], + "count": 2 + }, + { + "answers": [ + "sepak bola" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-20": { + "question": "Olahraga apa yang populer untuk dimainkan di pantai di Indonesia?", + "en_question": "What sport is popular to play on the beach in your country?", + "annotations": [ + { + "answers": [ + "voli pantai", + "bola voli", + "voli" + ], + "en_answers": [ + "beach volleyball", + "volleyball" + ], + "count": 4 + }, + { + "answers": [ + "sepak bola", + "sepak bola pantai" + ], + "en_answers": [ + "soccer", + "football", + "beach soccer", + "beach football" + ], + "count": 2 + }, + { + "answers": [ + "gobak sodor", + "baksodor" + ], + "en_answers": [ + "gobak sodor" + ], + "count": 1 + }, + { + "answers": [ + "berenang", + "renang" + ], + "en_answers": [ + "swim", + "swimming" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-45": { + "question": "Bagaimana biasanya jadwal kerja selama bulan Ramadan di Indonesia?", + "en_question": "What is the usual work schedule during the month of Ramadan in your country?", + "annotations": [ + { + "answers": [ + "libur" + ], + "en_answers": [ + "holiday" + ], + "count": 2 + }, + { + "answers": [ + "dimajukan satu jam" + ], + "en_answers": [ + "one hour earlier" + ], + "count": 1 + }, + { + "answers": [ + "normal" + ], + "en_answers": [ + "normal" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-pe-47": { + "question": "Kapan Hari Siswa dirayakan di Indonesia? (Berikan dalam format MM/DD (contoh, 12/31).)", + "en_question": "When is Student's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "07/03" + ], + "en_answers": [ + "07/03" + ], + "count": 1 + }, + { + "answers": [ + "05/20" + ], + "en_answers": [ + "05/20" + ], + "count": 1 + }, + { + "answers": [ + "06/02" + ], + "en_answers": [ + "06/02" + ], + "count": 1 + }, + { + "answers": [ + "11/17" + ], + "en_answers": [ + "11/17" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-pe-49": { + "question": "Di mana keluarga-keluarga berkumpul untuk berdoa bersama di Indonesia?", + "en_question": "Where do families gather to pray together in your country?", + "annotations": [ + { + "answers": [ + "gereja" + ], + "en_answers": [ + "church" + ], + "count": 3 + }, + { + "answers": [ + "masjid", + "mesjid lokal" + ], + "en_answers": [ + "mosque", + "local mosque" + ], + "count": 3 + }, + { + "answers": [ + "vihara" + ], + "en_answers": [ + "buddhist temple" + ], + "count": 1 + }, + { + "answers": [ + "rumah" + ], + "en_answers": [ + "house" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-pe-53": { + "question": "Apa hadiah yang biasanya diterima oleh para ayah di Hari Ayah (atau Hari Orang Tua) di Indonesia?", + "en_question": "What gifts do fathers get on Father's Day (or Parents' Day) in your country?", + "annotations": [ + { + "answers": [ + "jam tangan" + ], + "en_answers": [ + "watch" + ], + "count": 1 + }, + { + "answers": [ + "buku" + ], + "en_answers": [ + "book" + ], + "count": 1 + }, + { + "answers": [ + "telepon genggam", + "hp" + ], + "en_answers": [ + "mobile phone", + "handphone" + ], + "count": 1 + }, + { + "answers": [ + "makanan kesukaan", + "makanan" + ], + "en_answers": [ + "favorite food", + "food" + ], + "count": 1 + }, + { + "answers": [ + "gelas" + ], + "en_answers": [ + "glass" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-pe-54": { + "question": "Apa hadiah yang biasanya diterima oleh ibu pada Hari Ibu (atau Hari Orang Tua) di Indonesia?", + "en_question": "What gifts do mothers get on Mother's Day (or Parents' Day) in your country?", + "annotations": [ + { + "answers": [ + "bunga" + ], + "en_answers": [ + "flower" + ], + "count": 3 + }, + { + "answers": [ + "parfum" + ], + "en_answers": [ + "perfume" + ], + "count": 1 + }, + { + "answers": [ + "hampers" + ], + "en_answers": [ + "gift baskets" + ], + "count": 1 + }, + { + "answers": [ + "figura" + ], + "en_answers": [ + "figure" + ], + "count": 1 + }, + { + "answers": [ + "perhiasan" + ], + "en_answers": [ + "jewelry" + ], + "count": 1 + }, + { + "answers": [ + "baju" + ], + "en_answers": [ + "clothes" + ], + "count": 1 + }, + { + "answers": [ + "alat make-up" + ], + "en_answers": [ + "make-up tools" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-59": { + "question": "Berapa banyak generasi yang biasanya tinggal bersama dalam satu rumah tangga di Indonesia? (Hanya berikan angka Arab (misalnya, 12).)", + "en_question": "How many generations typically live together in a household in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-65": { + "question": "Berapa banyak mata pelajaran yang diajarkan di SMP di Indonesia? (Berikan angka Arab (misalnya, 12) saja.)", + "en_question": "How many subjects are taught in middle schools in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-pe-66": { + "question": "Apa kegiatan ekstrakurikuler paling populer di sekolah dasar (SD) di Indonesia setelah jam sekolah?", + "en_question": "What is the most popular after school curriculars in elementary schools in your country?", + "annotations": [ + { + "answers": [ + "basket" + ], + "en_answers": [ + "basketball" + ], + "count": 3 + }, + { + "answers": [ + "futsal" + ], + "en_answers": [ + "futsal" + ], + "count": 2 + }, + { + "answers": [ + "sepakbola", + "sepak bola" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 2 + }, + { + "answers": [ + "pramuka" + ], + "en_answers": [ + "scout" + ], + "count": 1 + }, + { + "answers": [ + "musik" + ], + "en_answers": [ + "music" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-74": { + "question": "Berapa biaya rata-rata uang kuliah tahunan untuk universitas negeri di Indonesia?", + "en_question": "How much is the average annual tuition fee for public universities in your country?", + "annotations": [ + { + "answers": [ + "1000000" + ], + "en_answers": [ + "1000000" + ], + "count": 1 + }, + { + "answers": [ + "20000000", + "20 juta" + ], + "en_answers": [ + "20000000" + ], + "count": 1 + }, + { + "answers": [ + "5000000" + ], + "en_answers": [ + "5000000" + ], + "count": 1 + }, + { + "answers": [ + "60000000" + ], + "en_answers": [ + "60000000" + ], + "count": 1 + }, + { + "answers": [ + "7500000", + "7.500.000" + ], + "en_answers": [ + "7500000" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-76": { + "question": "Apa kegiatan populer yang dilakukan di taman-taman di Indonesia?", + "en_question": "What is a popular activity to do in parks in your country?", + "annotations": [ + { + "answers": [ + "bermain bola", + "main bola", + "bermain sepak bola bersama teman" + ], + "en_answers": [ + "playing ball", + "playing soccer with friends" + ], + "count": 3 + }, + { + "answers": [ + "bulu tangkis" + ], + "en_answers": [ + "badminton" + ], + "count": 2 + }, + { + "answers": [ + "piknik" + ], + "en_answers": [ + "picnic" + ], + "count": 1 + }, + { + "answers": [ + "main sepeda" + ], + "en_answers": [ + "ride a bike" + ], + "count": 1 + }, + { + "answers": [ + "sepeda" + ], + "en_answers": [ + "bicycle" + ], + "count": 1 + }, + { + "answers": [ + "jogging" + ], + "en_answers": [ + "jogging" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-78": { + "question": "Apa nama festival film paling terkenal yang diadakan di Indonesia?", + "en_question": "What is the name of the most famous film festival held in your country?", + "annotations": [ + { + "answers": [ + "festival film indonesia", + "ffi" + ], + "en_answers": [ + "indonesian film festival" + ], + "count": 4 + }, + { + "answers": [ + "festival film bandung", + "ffb" + ], + "en_answers": [ + "bandung film festival" + ], + "count": 1 + }, + { + "answers": [ + "citra award" + ], + "en_answers": [ + "citra award" + ], + "count": 1 + }, + { + "answers": [ + "sctv award" + ], + "en_answers": [ + "sctv award" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-pe-83": { + "question": "Apa permainan kartu populer yang dimainkan saat pertemuan sosial di Indonesia?", + "en_question": "What is the popular card game played during social gatherings in your country?", + "annotations": [ + { + "answers": [ + "uno" + ], + "en_answers": [ + "uno" + ], + "count": 2 + }, + { + "answers": [ + "poker" + ], + "en_answers": [ + "poker" + ], + "count": 1 + }, + { + "answers": [ + "capsa" + ], + "en_answers": [ + "capsa" + ], + "count": 1 + }, + { + "answers": [ + "tepuk nyamuk" + ], + "en_answers": [ + "tepuk nyamuk" + ], + "count": 1 + }, + { + "answers": [ + "cangkul" + ], + "en_answers": [ + "cangkul" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-85": { + "question": "Di mana destinasi wisata luar negeri yang paling populer bagi orang-orang dari Indonesia?", + "en_question": "Where is the most popular tourist destination abroad for people from your country?", + "annotations": [ + { + "answers": [ + "singapura" + ], + "en_answers": [ + "singapore" + ], + "count": 3 + }, + { + "answers": [ + "malaysia" + ], + "en_answers": [ + "malaysia" + ], + "count": 2 + }, + { + "answers": [ + "thailand", + "korea" + ], + "en_answers": [ + "thailand", + "korea" + ], + "count": 2 + }, + { + "answers": [ + "singapore" + ], + "en_answers": [ + "singapore" + ], + "count": 1 + }, + { + "answers": [ + "jepang" + ], + "en_answers": [ + "japan" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-86": { + "question": "Apa nama menara paling terkenal di Indonesia?", + "en_question": "What is the name of the most famous tower in your country?", + "annotations": [ + { + "answers": [ + "monas", + "monumen nasional" + ], + "en_answers": [ + "national monument" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-01": { + "question": "Serangga apa yang paling sering dimakan di Indonesia?", + "en_question": "What edible insect is eaten most often in your country?", + "annotations": [ + { + "answers": [ + "belalang" + ], + "en_answers": [ + "grasshopper" + ], + "count": 3 + }, + { + "answers": [ + "jangkrik" + ], + "en_answers": [ + "cricket" + ], + "count": 2 + }, + { + "answers": [ + "semut" + ], + "en_answers": [ + "ant" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-spme-04": { + "question": "Produk pertanian apa yang paling sering diekspor dari Indonesia?", + "en_question": "Which agricultural product is exported most often in your country?", + "annotations": [ + { + "answers": [ + "beras" + ], + "en_answers": [ + "rice" + ], + "count": 3 + }, + { + "answers": [ + "kelapa sawit" + ], + "en_answers": [ + "palm oil" + ], + "count": 1 + }, + { + "answers": [ + "karet" + ], + "en_answers": [ + "rubber" + ], + "count": 1 + }, + { + "answers": [ + "kopi" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-05": { + "question": "Apa saja makanan manis yang paling populer di Indonesia?", + "en_question": "What are the most popular sweets in your country?", + "annotations": [ + { + "answers": [ + "martabak manis", + "martabak" + ], + "en_answers": [ + "sweet martabak", + "martabak" + ], + "count": 3 + }, + { + "answers": [ + "kue leker" + ], + "en_answers": [ + "crepe" + ], + "count": 2 + }, + { + "answers": [ + "serabi" + ], + "en_answers": [ + "pancake" + ], + "count": 2 + }, + { + "answers": [ + "es cendol" + ], + "en_answers": [ + "cendol" + ], + "count": 1 + }, + { + "answers": [ + "es teler" + ], + "en_answers": [ + "es teler" + ], + "count": 1 + }, + { + "answers": [ + "lapis legit" + ], + "en_answers": [ + "layered cake" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-15": { + "question": "Apa minuman olahraga yang paling populer di Indonesia?", + "en_question": "What is the most popular sports drink in your country?", + "annotations": [ + { + "answers": [ + "pocari sweat" + ], + "en_answers": [ + "pocari sweat" + ], + "count": 3 + }, + { + "answers": [ + "extra joss" + ], + "en_answers": [ + "extra joss" + ], + "count": 1 + }, + { + "answers": [ + "krating daeng" + ], + "en_answers": [ + "krating daeng" + ], + "count": 1 + }, + { + "answers": [ + "gatorade" + ], + "en_answers": [ + "gatorade" + ], + "count": 1 + }, + { + "answers": [ + "air mineral" + ], + "en_answers": [ + "mineral water" + ], + "count": 1 + }, + { + "answers": [ + "hemaviton" + ], + "en_answers": [ + "hemaviton" + ], + "count": 1 + }, + { + "answers": [ + "kuku bima", + "kuku bima-g" + ], + "en_answers": [ + "kuku bima" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-27": { + "question": "Apa tingkat pendidikan rata-rata penduduk di Indonesia?", + "en_question": "What is the average education level for people in your country?", + "annotations": [ + { + "answers": [ + "smp", + "sekolah menengah pertama" + ], + "en_answers": [ + "junior high school" + ], + "count": 3 + }, + { + "answers": [ + "sma", + "sekolah menengah atas" + ], + "en_answers": [ + "high school" + ], + "count": 2 + }, + { + "answers": [ + "sd", + "sekolah dasar" + ], + "en_answers": [ + "elementary school" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-37": { + "question": "Pendidikan profesi apa yang paling sering ditempuh di luar negeri oleh siswa dari Indonesia?", + "en_question": "Which profession is most commonly studied abroad by students from your country?", + "annotations": [ + { + "answers": [ + "manajemen", + "manajemen bisnis", + "bussines manajemen", + "bisnis", + "business" + ], + "en_answers": [ + "management", + "business management", + "business" + ], + "count": 3 + }, + { + "answers": [ + "akuntan" + ], + "en_answers": [ + "accountant" + ], + "count": 1 + }, + { + "answers": [ + "ekonomi" + ], + "en_answers": [ + "economy" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-spme-60": { + "question": "Pada hari apa kebanyakan keluarga di Indonesia melakukan aktivitas keagamaan? (misalnya Senin, Selasa)", + "en_question": "Which day of the week do most families in your country practice religious activities? (e.g. Monday, Tuesday)", + "annotations": [ + { + "answers": [ + "jumat", + "jum‘at" + ], + "en_answers": [ + "friday" + ], + "count": 5 + }, + { + "answers": [ + "minggu" + ], + "en_answers": [ + "sunday" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-65": { + "question": "Apa cara paling populer untuk merayakan Hari Kemerdekaan di Indonesia?", + "en_question": "What is the most popular way to celebrate Independence Day in your country?", + "annotations": [ + { + "answers": [ + "perlombaan", + "mengikuti lomba", + "lomba" + ], + "en_answers": [ + "competition", + "participating in a contest", + "race", + "contest" + ], + "count": 4 + }, + { + "answers": [ + "upacara bendera" + ], + "en_answers": [ + "flag ceremony" + ], + "count": 2 + }, + { + "answers": [ + "lari karung", + "balap karung" + ], + "en_answers": [ + "karung race" + ], + "count": 1 + }, + { + "answers": [ + "panjat pinang" + ], + "en_answers": [ + "panjat pinang" + ], + "count": 1 + }, + { + "answers": [ + "memasang bendera" + ], + "en_answers": [ + "raising the flag" + ], + "count": 1 + }, + { + "answers": [ + "pawai", + "parade" + ], + "en_answers": [ + "parade" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-68": { + "question": "Apa minuman paling populer di kalangan anak-anak di Indonesia?", + "en_question": "What is the most popular beverage among children in your country?", + "annotations": [ + { + "answers": [ + "teh botol" + ], + "en_answers": [ + "teh botol" + ], + "count": 2 + }, + { + "answers": [ + "pop ice" + ], + "en_answers": [ + "pop ice" + ], + "count": 1 + }, + { + "answers": [ + "susu" + ], + "en_answers": [ + "milk" + ], + "count": 1 + }, + { + "answers": [ + "coca cola", + "sprite" + ], + "en_answers": [ + "coca cola", + "sprite" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-spme-76": { + "question": "Di mana tempat paling populer untuk merayakan Hari Kemerdekaan di Indonesia?", + "en_question": "What is the most popular place in your country to celebrate Independence Day?", + "annotations": [ + { + "answers": [ + "sekolah" + ], + "en_answers": [ + "school" + ], + "count": 2 + }, + { + "answers": [ + "lapangan", + "lapangan desa" + ], + "en_answers": [ + "field", + "village field" + ], + "count": 2 + }, + { + "answers": [ + "di depan rumah" + ], + "en_answers": [ + "in front of the house" + ], + "count": 1 + }, + { + "answers": [ + "monas", + "monumen nasional" + ], + "en_answers": [ + "national monument" + ], + "count": 1 + }, + { + "answers": [ + "tempat wisata umum" + ], + "en_answers": [ + "public tourist spot" + ], + "count": 1 + }, + { + "answers": [ + "alun alun", + "alun-alun" + ], + "en_answers": [ + "town square" + ], + "count": 1 + }, + { + "answers": [ + "puncak gunung" + ], + "en_answers": [ + "mountain peak" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-78": { + "question": "Apa nama lagu yang biasanya dinyanyikan pada pesta ulang tahun di Indonesia?", + "en_question": "What is the name of the song that is typically sung at birthday parties in your country?", + "annotations": [ + { + "answers": [ + "selamat ulang tahun" + ], + "en_answers": [ + "selamat ulang tahun" + ], + "count": 5 + }, + { + "answers": [ + "happy birthday to you" + ], + "en_answers": [ + "happy birthday to you", + "happy birthday" + ], + "count": 1 + }, + { + "answers": [ + "potong kuenya" + ], + "en_answers": [ + "potong kuenya" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-01": { + "question": "Jajanan apa yang biasanya dijual di depan sekolah-sekolah di Indonesia?", + "en_question": "What snacks are usually sold in front of schools in your country?", + "annotations": [ + { + "answers": [ + "gorengan" + ], + "en_answers": [ + "fritters" + ], + "count": 1 + }, + { + "answers": [ + "siomay" + ], + "en_answers": [ + "siomay" + ], + "count": 1 + }, + { + "answers": [ + "batagor" + ], + "en_answers": [ + "batagor" + ], + "count": 1 + }, + { + "answers": [ + "pentol" + ], + "en_answers": [ + "pentol" + ], + "count": 1 + }, + { + "answers": [ + "tahu gunting" + ], + "en_answers": [ + "gunting tofu" + ], + "count": 1 + }, + { + "answers": [ + "telor gulung" + ], + "en_answers": [ + "rolled omelette" + ], + "count": 1 + }, + { + "answers": [ + "lidi-lidi", + "lidi" + ], + "en_answers": [ + "lidi-lidi", + "lidi" + ], + "count": 1 + }, + { + "answers": [ + "kue ape" + ], + "en_answers": [ + "ape cake" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-09": { + "question": "Minyak apa yang biasanya digunakan untuk memasak di Indonesia?", + "en_question": "What oil is usually used for cooking in your country?", + "annotations": [ + { + "answers": [ + "minyak sawit", + "minyak kelapa sawit", + "sawit", + "kelapa sawit" + ], + "en_answers": [ + "palm oil", + "palm" + ], + "count": 3 + }, + { + "answers": [ + "minyak masak" + ], + "en_answers": [ + "cooking oil" + ], + "count": 1 + }, + { + "answers": [ + "minyak kelapa", + "kelapa" + ], + "en_answers": [ + "coconut oil" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-10": { + "question": "Apa makanan yang biasa dikonsumsi oleh wanita hamil di Indonesia?", + "en_question": "What food is commonly consumed by pregnant women in your country?", + "annotations": [ + { + "answers": [ + "buah-buahan" + ], + "en_answers": [ + "fruits" + ], + "count": 1 + }, + { + "answers": [ + "asinan" + ], + "en_answers": [ + "pickled vegetables or fruits" + ], + "count": 1 + }, + { + "answers": [ + "sup", + "sop" + ], + "en_answers": [ + "soup" + ], + "count": 1 + }, + { + "answers": [ + "kacang-kacangan" + ], + "en_answers": [ + "peanuts" + ], + "count": 1 + }, + { + "answers": [ + "ubi" + ], + "en_answers": [ + "sweet potato" + ], + "count": 1 + }, + { + "answers": [ + "ayam" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "telur" + ], + "en_answers": [ + "egg" + ], + "count": 1 + }, + { + "answers": [ + "daging" + ], + "en_answers": [ + "meat" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-15": { + "question": "Apa minuman tradisional non-alkohol yang paling populer di Indonesia?", + "en_question": "What is the most popular traditional non-alcoholic drink in your country?", + "annotations": [ + { + "answers": [ + "cendol", + "es cendol" + ], + "en_answers": [ + "cendol", + "cendol ice" + ], + "count": 3 + }, + { + "answers": [ + "wedang ronde", + "ronde" + ], + "en_answers": [ + "wedang ronde", + "ronde" + ], + "count": 2 + }, + { + "answers": [ + "wedang jahe" + ], + "en_answers": [ + "wedang jahe" + ], + "count": 1 + }, + { + "answers": [ + "jamu" + ], + "en_answers": [ + "herbal medicine" + ], + "count": 1 + }, + { + "answers": [ + "teh" + ], + "en_answers": [ + "tea" + ], + "count": 1 + }, + { + "answers": [ + "air jahe" + ], + "en_answers": [ + "ginger water" + ], + "count": 1 + }, + { + "answers": [ + "bandrek" + ], + "en_answers": [ + "bandrek" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-17": { + "question": "Apa fasilitas olahraga yang biasanya tersedia di taman-taman di Indonesia?", + "en_question": "What sports facilities are generally available in parks in your country?", + "annotations": [ + { + "answers": [ + "lapangan sepak bola", + "lapangan sepakbola" + ], + "en_answers": [ + "soccer field", + "football field" + ], + "count": 3 + }, + { + "answers": [ + "jalur lari", + "jogging track" + ], + "en_answers": [ + "running track", + "jogging track" + ], + "count": 2 + }, + { + "answers": [ + "lapangan bulutangkis" + ], + "en_answers": [ + "badminton court" + ], + "count": 1 + }, + { + "answers": [ + "alat fitness" + ], + "en_answers": [ + "fitness equipment" + ], + "count": 1 + }, + { + "answers": [ + "ring basket" + ], + "en_answers": [ + "basketball ring" + ], + "count": 1 + }, + { + "answers": [ + "lapangan tenis" + ], + "en_answers": [ + "tennis court" + ], + "count": 1 + }, + { + "answers": [ + "playground" + ], + "en_answers": [ + "playground" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-21": { + "question": "Apa kegiatan yang umumnya dilakukan oleh para lansia di taman-taman di Indonesia?", + "en_question": "What are the common activities that seniors usually do in parks in your country?", + "annotations": [ + { + "answers": [ + "jalan kaki", + "jalan pagi" + ], + "en_answers": [ + "walk", + "morning walk" + ], + "count": 2 + }, + { + "answers": [ + "senam" + ], + "en_answers": [ + "gymnastics" + ], + "count": 1 + }, + { + "answers": [ + "refleksi" + ], + "en_answers": [ + "reflexology" + ], + "count": 1 + }, + { + "answers": [ + "berjemur" + ], + "en_answers": [ + "sunbathing" + ], + "count": 1 + }, + { + "answers": [ + "senam tai chi" + ], + "en_answers": [ + "tai chi exercise" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-24": { + "question": "Olahraga apa yang biasanya dimainkan bersama oleh orang tua dan anak-anak di Indonesia?", + "en_question": "What sports do parents and children commonly play together in your country?", + "annotations": [ + { + "answers": [ + "sepak bola" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 2 + }, + { + "answers": [ + "badminton", + "bulu tangkis", + "bulutangkis" + ], + "en_answers": [ + "badminton" + ], + "count": 2 + }, + { + "answers": [ + "bersepeda", + "sepeda" + ], + "en_answers": [ + "cycling" + ], + "count": 2 + }, + { + "answers": [ + "kartu" + ], + "en_answers": [ + "card" + ], + "count": 1 + }, + { + "answers": [ + "catur" + ], + "en_answers": [ + "chess" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-28": { + "question": "Warna apa yang diasosiasikan dengan tim nasional sepak bola Indonesia?", + "en_question": "What color is associated with the national soccer team of your country?", + "annotations": [ + { + "answers": [ + "merah putih" + ], + "en_answers": [ + "red and white" + ], + "count": 3 + }, + { + "answers": [ + "merah" + ], + "en_answers": [ + "red" + ], + "count": 2 + }, + { + "answers": [ + "putih" + ], + "en_answers": [ + "white" + ], + "count": 2 + }, + { + "answers": [ + "hijau" + ], + "en_answers": [ + "green" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-33": { + "question": "Apa jenis pakaian yang umum digunakan oleh guru sekolah di Indonesia?", + "en_question": "What is the common dress code for school teachers in your country?", + "annotations": [ + { + "answers": [ + "batik" + ], + "en_answers": [ + "batik" + ], + "count": 2 + }, + { + "answers": [ + "kemeja" + ], + "en_answers": [ + "shirt" + ], + "count": 2 + }, + { + "answers": [ + "seragam" + ], + "en_answers": [ + "uniform" + ], + "count": 1 + }, + { + "answers": [ + "jas" + ], + "en_answers": [ + "suit" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-34": { + "question": "Apa kegiatan ekstrakurikuler terkait musik yang paling populer di sekolah-sekolah di Indonesia?", + "en_question": "What is the most popular extracurricular activity related to music in schools in your country?", + "annotations": [ + { + "answers": [ + "paduan suara" + ], + "en_answers": [ + "choir" + ], + "count": 3 + }, + { + "answers": [ + "piano" + ], + "en_answers": [ + "piano" + ], + "count": 1 + }, + { + "answers": [ + "karawitan" + ], + "en_answers": [ + "karawitan" + ], + "count": 1 + }, + { + "answers": [ + "marching band" + ], + "en_answers": [ + "marching band" + ], + "count": 1 + }, + { + "answers": [ + "band" + ], + "en_answers": [ + "band" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-42": { + "question": "Agama apa yang umum diajarkan di sekolah-sekolah di Indonesia?", + "en_question": "What religion is mainly taught in schools in your country?", + "annotations": [ + { + "answers": [ + "islam" + ], + "en_answers": [ + "islam" + ], + "count": 4 + }, + { + "answers": [ + "kristen" + ], + "en_answers": [ + "christian" + ], + "count": 3 + }, + { + "answers": [ + "katolik", + "katholik" + ], + "en_answers": [ + "catholic" + ], + "count": 3 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-45": { + "question": "Tanggal berapa Hari Pendidikan dirayakan di Indonesia? (Berikan dalam format MM/DD (contoh, 12/31).)", + "en_question": "What date is Education Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "05/02", + "2 mei", + "02/05" + ], + "en_answers": [ + "05/02" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-50": { + "question": "Apa pekerjaan utama masyarakat di daerah pegunungan di Indonesia?", + "en_question": "What is the main occupation of people in mountainous areas in your country?", + "annotations": [ + { + "answers": [ + "petani" + ], + "en_answers": [ + "farmer" + ], + "count": 4 + }, + { + "answers": [ + "pariwisata" + ], + "en_answers": [ + "tourism" + ], + "count": 1 + }, + { + "answers": [ + "pertanian" + ], + "en_answers": [ + "agriculture" + ], + "count": 1 + }, + { + "answers": [ + "berkebun" + ], + "en_answers": [ + "gardening" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-51": { + "question": "Apa pekerjaan utama masyarakat di daerah pesisir di Indonesia?", + "en_question": "What is the main occupation of people in coastal areas in your country?", + "annotations": [ + { + "answers": [ + "nelayan" + ], + "en_answers": [ + "fisherman" + ], + "count": 5 + }, + { + "answers": [ + "pedagang" + ], + "en_answers": [ + "trader" + ], + "count": 1 + }, + { + "answers": [ + "petani" + ], + "en_answers": [ + "farmer" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-57": { + "question": "Hewan ternak apa yang paling umum dipelihara di Indonesia?", + "en_question": "What is the most common livestock raised in your country?", + "annotations": [ + { + "answers": [ + "ayam" + ], + "en_answers": [ + "chicken" + ], + "count": 5 + }, + { + "answers": [ + "sapi" + ], + "en_answers": [ + "cow" + ], + "count": 2 + }, + { + "answers": [ + "kambing" + ], + "en_answers": [ + "goat" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-58": { + "question": "Hewan apa yang biasa digunakan untuk pertanian di Indonesia?", + "en_question": "What animals are commonly used for agriculture in your country?", + "annotations": [ + { + "answers": [ + "sapi" + ], + "en_answers": [ + "cow" + ], + "count": 5 + }, + { + "answers": [ + "kerbau" + ], + "en_answers": [ + "buffalo" + ], + "count": 3 + }, + { + "answers": [ + "cacing" + ], + "en_answers": [ + "worm" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-59": { + "question": "Apa yang biasanya dikenakan oleh petani di Indonesia untuk melindungi diri dari panas saat bertani?", + "en_question": "What do farmers in your country typically wear to protect themselves from the heat whilst farming?", + "annotations": [ + { + "answers": [ + "caping" + ], + "en_answers": [ + "conical hat" + ], + "count": 3 + }, + { + "answers": [ + "topi" + ], + "en_answers": [ + "hat" + ], + "count": 2 + }, + { + "answers": [ + "baju pelindung" + ], + "en_answers": [ + "protective clothing" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-60": { + "question": "Apa yang biasanya dimakan oleh petani di Indonesia untuk makan siang?", + "en_question": "What do farmers in your country usually eat for lunch?", + "annotations": [ + { + "answers": [ + "nasi" + ], + "en_answers": [ + "rice" + ], + "count": 3 + }, + { + "answers": [ + "ubi rebus" + ], + "en_answers": [ + "boiled sweet potato" + ], + "count": 1 + }, + { + "answers": [ + "tempe" + ], + "en_answers": [ + "tempeh" + ], + "count": 1 + }, + { + "answers": [ + "tahu" + ], + "en_answers": [ + "tofu" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-71": { + "question": "Apa hadiah yang biasanya diberikan orang tua kepada anak-anak mereka yang berulang tahun di Indonesia?", + "en_question": "What gifts do parents generally give to their children for their birthdays in your country?", + "annotations": [ + { + "answers": [ + "mainan baru", + "mainan" + ], + "en_answers": [ + "new toy", + "toy" + ], + "count": 1 + }, + { + "answers": [ + "kue" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "uang" + ], + "en_answers": [ + "money" + ], + "count": 1 + }, + { + "answers": [ + "sepeda" + ], + "en_answers": [ + "bicycle" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-75": { + "question": "Apa jenis kendaraan yang umumnya dimiliki oleh kebanyakan keluarga di Indonesia?", + "en_question": "What type of vehicle do most families in your country generally own?", + "annotations": [ + { + "answers": [ + "mobil", + "mpv", + "avanza", + "xenia" + ], + "en_answers": [ + "car", + "multi-purpose vehicle", + "avanza", + "xenia" + ], + "count": 4 + }, + { + "answers": [ + "motor", + "sepeda motor" + ], + "en_answers": [ + "motorcycle" + ], + "count": 2 + }, + { + "answers": [ + "sepeda" + ], + "en_answers": [ + "bicycle" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-77": { + "question": "Apa yang biasanya diberikan kepada anak-anak saat Idul Fitri di Indonesia?", + "en_question": "What is usually given to the children during Eid in your country?", + "annotations": [ + { + "answers": [ + "uang", + "angpau", + "angpao" + ], + "en_answers": [ + "money", + "angpau" + ], + "count": 4 + }, + { + "answers": [ + "bersilaturahmi", + "silaturahmi" + ], + "en_answers": [ + "visiting family or relatives" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-81": { + "question": "Pakaian apa yang biasanya dikenakan oleh pengantin pria di pernikahan di Indonesia?", + "en_question": "What clothes do grooms usually wear at weddings in your country?", + "annotations": [ + { + "answers": [ + "jas" + ], + "en_answers": [ + "suit" + ], + "count": 3 + }, + { + "answers": [ + "beskap" + ], + "en_answers": [ + "beskap" + ], + "count": 2 + }, + { + "answers": [ + "kemeja" + ], + "en_answers": [ + "shirt" + ], + "count": 1 + }, + { + "answers": [ + "surjan" + ], + "en_answers": [ + "surjan" + ], + "count": 1 + }, + { + "answers": [ + "kebaya" + ], + "en_answers": [ + "kebaya" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-82": { + "question": "Pakaian apa yang biasanya dikenakan oleh pengantin wanita di pernikahan di Indonesia?", + "en_question": "What clothes do brides usually wear at weddings in your country?", + "annotations": [ + { + "answers": [ + "kebaya" + ], + "en_answers": [ + "kebaya" + ], + "count": 3 + }, + { + "answers": [ + "gaun" + ], + "en_answers": [ + "dress" + ], + "count": 2 + }, + { + "answers": [ + "paes ageng" + ], + "en_answers": [ + "paes ageng" + ], + "count": 1 + }, + { + "answers": [ + "baju bodo" + ], + "en_answers": [ + "bodo shirt" + ], + "count": 1 + }, + { + "answers": [ + "ulos" + ], + "en_answers": [ + "ulos" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-83": { + "question": "Makanan apa yang biasanya disajikan pada acara pernikahan di Indonesia?", + "en_question": "What food is usually served at weddings in your country?", + "annotations": [ + { + "answers": [ + "rendang" + ], + "en_answers": [ + "rendang" + ], + "count": 2 + }, + { + "answers": [ + "nasi kuning" + ], + "en_answers": [ + "yellow rice" + ], + "count": 1 + }, + { + "answers": [ + "mi goreng", + "mie goreng" + ], + "en_answers": [ + "fried noodles" + ], + "count": 1 + }, + { + "answers": [ + "bakso" + ], + "en_answers": [ + "meatball" + ], + "count": 1 + }, + { + "answers": [ + "sate" + ], + "en_answers": [ + "satay" + ], + "count": 1 + }, + { + "answers": [ + "kambing guling" + ], + "en_answers": [ + "roasted lamb" + ], + "count": 1 + }, + { + "answers": [ + "opor" + ], + "en_answers": [ + "opor", + "indonesian chicken white curry" + ], + "count": 1 + }, + { + "answers": [ + "nasi" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "buah" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + }, + { + "answers": [ + "zupa soup" + ], + "en_answers": [ + "zupa soup" + ], + "count": 1 + }, + { + "answers": [ + "sambal goreng" + ], + "en_answers": [ + "fried chili paste", + "fried sambal" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-86": { + "question": "Apa gedung pemerintahan yang paling terkenal di Indonesia?", + "en_question": "What is the most famous government building in your country?", + "annotations": [ + { + "answers": [ + "gedung mpr", + "gedung mpr/dpr", + "gedung dpr" + ], + "en_answers": [ + "mpr building", + "parliament building" + ], + "count": 5 + }, + { + "answers": [ + "istana presiden" + ], + "en_answers": [ + "presidential palace" + ], + "count": 2 + }, + { + "answers": [ + "gedung merdeka" + ], + "en_answers": [ + "independence building" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-88": { + "question": "Apa genre musik paling populer di kalangan anak muda di Indonesia?", + "en_question": "What is the most popular music genre among the younger population in your country?", + "annotations": [ + { + "answers": [ + "pop" + ], + "en_answers": [ + "pop" + ], + "count": 4 + }, + { + "answers": [ + "rock" + ], + "en_answers": [ + "rock" + ], + "count": 1 + }, + { + "answers": [ + "dangdut" + ], + "en_answers": [ + "dangdut" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-02": { + "question": "Pukul berapa biasanya siswa SMP di Indonesia selesai sekolah setiap harinya? (Berikan dalam format JJ:MM (contoh, 18:00, 09:00).)", + "en_question": "What time do middle school students in your country typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "13:30" + ], + "en_answers": [ + "13:30" + ], + "count": 1 + }, + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 1 + }, + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 1 + }, + { + "answers": [ + "15:00" + ], + "en_answers": [ + "15:00" + ], + "count": 1 + }, + { + "answers": [ + "16:00" + ], + "en_answers": [ + "16:00" + ], + "count": 1 + }, + { + "answers": [ + "13:15" + ], + "en_answers": [ + "13:15" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-03": { + "question": "Pada usia berapa biasanya orang di Indonesia pergi ke universitas? (Hanya berikan angka Arab (contoh, 12).)", + "en_question": "At what age do people in your country typically go to university? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 5 + }, + { + "answers": [ + "19" + ], + "en_answers": [ + "19" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-06": { + "question": "Pada usia berapa seseorang harus mengikuti pendidikan wajib di Indonesia? (Berikan angka Arab (misalnya, 12) saja.)", + "en_question": "From what age do people need to attend compulsory education in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 4 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-09": { + "question": "Berapa hari dalam seminggu anak-anak bersekolah di Indonesia? (Berikan hanya angka Arab (0~7).)", + "en_question": "How many days a week do children attend school in your country? (Provide Arabic numerals (0~7) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 4 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-11": { + "question": "Di Indonesia, berapa lama (dalam tahun) biasanya waktu yang dibutuhkan untuk menyelesaikan gelar Magister? (Hanya berikan angka Arab (misalnya, 2).)", + "en_question": "In your country, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-12": { + "question": "Apa universitas terbaik di Indonesia? (Berikan nama resminya.)", + "en_question": "What is the top university in your country? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "universitas indonesia", + "ui" + ], + "en_answers": [ + "the university of indonesia" + ], + "count": 4 + }, + { + "answers": [ + "institut teknologi bandung (itb)", + "institut teknologi bandung", + "itb" + ], + "en_answers": [ + "bandung institute of technology" + ], + "count": 1 + }, + { + "answers": [ + "universitas gadjah mada", + "ugm" + ], + "en_answers": [ + "gadjah mada university" + ], + "count": 1 + }, + { + "answers": [ + "institut teknologi sepuluh november", + "its" + ], + "en_answers": [ + "sepuluh nopember institute of technology" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-13": { + "question": "Pada usia berapa kebanyakan orang di Indonesia lulus dari universitas? (Hanya berikan angka Arab (contoh, 12).)", + "en_question": "At what age do most people in your country graduate from university? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 2 + }, + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 2 + }, + { + "answers": [ + "21" + ], + "en_answers": [ + "21" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-15": { + "question": "Pada usia berapa anak-anak di Indonesia umumnya mulai bersekolah SMP? (Berikan angka Arab (misalnya, 12) saja.)", + "en_question": "At what age do children in your country generally start middle school? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "13" + ], + "en_answers": [ + "13" + ], + "count": 3 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-17": { + "question": "Berapa jam dalam seminggu seorang pekerja penuh waktu di Indonesia biasanya bekerja? (Berikan hanya angka Arab (misalnya, 12).)", + "en_question": "How many hours a week does a full-time worker in your country typically work? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 3 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-19": { + "question": "Berapa hari dalam seminggu seorang pekerja penuh waktu bekerja di Indonesia? (Berikan hanya angka Arab (0~7) saja.)", + "en_question": "How many days a week does a full-time worker work in your country? (Provide Arabic numerals (0~7) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 2 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 2 + }, + { + "answers": [ + "37" + ], + "en_answers": [ + "37" + ], + "count": 1 + }, + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-20": { + "question": "Pada usia berapa kebanyakan orang mulai bekerja di Indonesia? (Berikan angka Arab (misalnya, 12) saja.)", + "en_question": "At what age do most people start working in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 2 + }, + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 2 + }, + { + "answers": [ + "21" + ], + "en_answers": [ + "21" + ], + "count": 2 + }, + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-21": { + "question": "Mulai umur berapa seseorang diizinkan untuk bekerja di Indonesia? (Hanya berikan angka Arab (contoh, 12) saja.)", + "en_question": "From what age is an individual allowed to work in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "17" + ], + "en_answers": [ + "17" + ], + "count": 4 + }, + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-31": { + "question": "Apa yang biasanya orang-orang di Indonesia makan pada Hari Natal?", + "en_question": "What do people in your country traditionally eat on Christmas Day?", + "annotations": [ + { + "answers": [ + "ayam rica-rica" + ], + "en_answers": [ + "rica-rica chicken" + ], + "count": 1 + }, + { + "answers": [ + "babi panggang" + ], + "en_answers": [ + "roast pork" + ], + "count": 1 + }, + { + "answers": [ + "kue" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "klappertaart" + ], + "en_answers": [ + "klappertaart" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "no-answer": 1, + "idk": 0 + } + }, + "Ni-en-37": { + "question": "Apa nama hari dalam setahun di mana orang-orang di Indonesia merayakan cinta dan romansa?", + "en_question": "What is the name of the day of the year where people in your country celebrate love and romance?", + "annotations": [ + { + "answers": [ + "valentine", + "hari valentine" + ], + "en_answers": [ + "valentine", + "valentine's day" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-40": { + "question": "Apa lagu Natal yang paling populer di Indonesia?", + "en_question": "What is the most popular Christmas song in your country?", + "annotations": [ + { + "answers": [ + "selamat hari natal" + ], + "en_answers": [ + "selamat hari natal" + ], + "count": 1 + }, + { + "answers": [ + "jingle bell" + ], + "en_answers": [ + "jingle bell" + ], + "count": 1 + }, + { + "answers": [ + "we wish you a merry christmas" + ], + "en_answers": [ + "we wish you a merry christmas" + ], + "count": 1 + }, + { + "answers": [ + "malam kudus" + ], + "en_answers": [ + "malam kudus" + ], + "count": 1 + }, + { + "answers": [ + "selamat hari natal dan tahun baru" + ], + "en_answers": [ + "selamat hari natal dan tahun baru" + ], + "count": 1 + }, + { + "answers": [ + "gloria in excelcis deo" + ], + "en_answers": [ + "gloria in excelcis deo" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Nu-in-04": { + "question": "Ada berapa semester dalam satu tahun ajaran di sekolah menengah atas di Indonesia? (Berikan dalam angka Arab (contoh, 7, 8) saja.)", + "en_question": "How many semesters are there each academic year at high schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-05": { + "question": "Pada bulan apa tahun ajaran baru biasanya dimulai di Indonesia? (Berikan hanya angka Arab (1~12).)", + "en_question": "In which month does the new school year typically begin in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 2 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-06": { + "question": "Kapan Hari Guru Nasional diperingati di Indonesia? (Berikan dalam format BB/TT (contoh, 12/31).)", + "en_question": "When is National Teacher's Day commemorated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "11/25" + ], + "en_answers": [ + "11/25" + ], + "count": 2 + }, + { + "answers": [ + "10/05" + ], + "en_answers": [ + "10/05" + ], + "count": 1 + } + ], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-11": { + "question": "Pukul berapa sekolah dasar dimulai di Indonesia? (Berikan dalam format JJ:MM (contoh, 18:00, 09:00).)", + "en_question": "At what time does elementary school start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "07:00" + ], + "en_answers": [ + "07:00" + ], + "count": 3 + }, + { + "answers": [ + "06:30" + ], + "en_answers": [ + "06:30" + ], + "count": 1 + }, + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 1 + }, + { + "answers": [ + "07:30" + ], + "en_answers": [ + "07:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-20": { + "question": "Kapan Hari Anak dirayakan di Indonesia? (Berikan dalam format MM/DD (contoh, 12/31).)", + "en_question": "When is Children's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "07/23" + ], + "en_answers": [ + "07/23" + ], + "count": 2 + }, + { + "answers": [ + "06/01" + ], + "en_answers": [ + "06/01" + ], + "count": 1 + } + ], + "idks": { + "idk": 5, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Nu-in-40": { + "question": "Kota mana yang merupakan tujuan utama para pencari kerja di Indonesia?", + "en_question": "Which city is the main destination for job seekers in your country?", + "annotations": [ + { + "answers": [ + "jakarta" + ], + "en_answers": [ + "jakarta" + ], + "count": 5 + }, + { + "answers": [ + "surabaya" + ], + "en_answers": [ + "surabaya" + ], + "count": 1 + }, + { + "answers": [ + "bali" + ], + "en_answers": [ + "bali" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-1": { + "question": "Apa rantai makanan cepat saji yang paling populer di Indonesia?", + "en_question": "What is your country's most popular fast food chain?", + "annotations": [ + { + "answers": [ + "mcdonald's", + "mac donald", + "mcdonalds", + "mcd", + "mc donald's" + ], + "en_answers": [ + "mcdonald's" + ], + "count": 5 + }, + { + "answers": [ + "kfc" + ], + "en_answers": [ + "kfc" + ], + "count": 4 + }, + { + "answers": [ + "wendy's" + ], + "en_answers": [ + "wendy's" + ], + "count": 1 + }, + { + "answers": [ + "burger king" + ], + "en_answers": [ + "burger king" + ], + "count": 1 + }, + { + "answers": [ + "pizza hut" + ], + "en_answers": [ + "pizza hut" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-13": { + "question": "Apa makanan yang paling memecah belah (entah itu disukai atau dibenci) di Indonesia?", + "en_question": "What is the food that is most divisive (either love or hate) in your country?", + "annotations": [ + { + "answers": [ + "nasi padang" + ], + "en_answers": [ + "padang rice" + ], + "count": 1 + }, + { + "answers": [ + "pete", + "petai" + ], + "en_answers": [ + "stink bean" + ], + "count": 1 + }, + { + "answers": [ + "jengkol" + ], + "en_answers": [ + "dogfruit" + ], + "count": 1 + }, + { + "answers": [ + "seblak" + ], + "en_answers": [ + "seblak" + ], + "count": 1 + }, + { + "answers": [ + "durian" + ], + "en_answers": [ + "durian" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Sa-en-16": { + "question": "Apa tim sepak bola paling populer di kalangan masyarakat Indonesia?", + "en_question": "What is the most popular soccer team among the people from your country?", + "annotations": [ + { + "answers": [ + "persib", + "persib bandung" + ], + "en_answers": [ + "persib" + ], + "count": 2 + }, + { + "answers": [ + "persija", + "persija jakarta" + ], + "en_answers": [ + "persija" + ], + "count": 2 + }, + { + "answers": [ + "manchester united", + "mu" + ], + "en_answers": [ + "manchester united" + ], + "count": 2 + }, + { + "answers": [ + "arema", + "arema malang" + ], + "en_answers": [ + "arema" + ], + "count": 1 + }, + { + "answers": [ + "persebaya", + "persebaya surabaya" + ], + "en_answers": [ + "persebaya" + ], + "count": 1 + }, + { + "answers": [ + "juventus" + ], + "en_answers": [ + "juventus" + ], + "count": 1 + }, + { + "answers": [ + "tim nasional argentina", + "argentina", + "timnas argentina" + ], + "en_answers": [ + "argentina national team" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-22": { + "question": "Apa universitas paling terkenal di Indonesia yang dikenal dengan tim olahraganya?", + "en_question": "What is the most famous university in your country known for its sports team?", + "annotations": [ + { + "answers": [ + "universitas indonesia", + "ui" + ], + "en_answers": [ + "the university of indonesia" + ], + "count": 3 + }, + { + "answers": [ + "ugm", + "universitas gadjah mada", + "universitas gajahmada" + ], + "en_answers": [ + "gadjah mada university" + ], + "count": 2 + }, + { + "answers": [ + "itb", + "institut teknologi bandung" + ], + "en_answers": [ + "bandung institute of technology" + ], + "count": 1 + }, + { + "answers": [ + "institut teknologi sepuluh november" + ], + "en_answers": [ + "sepuluh nopember institute of technology" + ], + "count": 1 + }, + { + "answers": [ + "universitas airlangga" + ], + "en_answers": [ + "airlangga university" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Sa-en-31": { + "question": "Apa hewan peliharaan keluarga yang paling populer di Indonesia?", + "en_question": "What is your country's most popular family pet?", + "annotations": [ + { + "answers": [ + "kucing" + ], + "en_answers": [ + "cat" + ], + "count": 5 + }, + { + "answers": [ + "anjing" + ], + "en_answers": [ + "dog" + ], + "count": 4 + }, + { + "answers": [ + "ikan" + ], + "en_answers": [ + "fish" + ], + "count": 1 + }, + { + "answers": [ + "ayam" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "burung" + ], + "en_answers": [ + "bird" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-32": { + "question": "Apa acara TV keluarga yang paling populer di Indonesia?", + "en_question": "What is the most popular family TV show in your country?", + "annotations": [ + { + "answers": [ + "kartun" + ], + "en_answers": [ + "cartoon" + ], + "count": 1 + }, + { + "answers": [ + "keluarga cemara" + ], + "en_answers": [ + "keluarga cemara" + ], + "count": 1 + }, + { + "answers": [ + "si doel anak sekolahan" + ], + "en_answers": [ + "si doel anak sekolahan" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "Sa-en-37": { + "question": "Apa permainan papan keluarga yang paling populer di Indonesia?", + "en_question": "What is the most popular family boardgame in your country?", + "annotations": [ + { + "answers": [ + "ular tangga" + ], + "en_answers": [ + "snakes and ladders" + ], + "count": 3 + }, + { + "answers": [ + "catur" + ], + "en_answers": [ + "chess" + ], + "count": 2 + }, + { + "answers": [ + "halma" + ], + "en_answers": [ + "chinese checker" + ], + "count": 1 + }, + { + "answers": [ + "ludo" + ], + "en_answers": [ + "ludo" + ], + "count": 1 + }, + { + "answers": [ + "monopoli", + "monopoly" + ], + "en_answers": [ + "monopoly" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-6": { + "question": "Apa makanan bawa pulang yang paling populer di Indonesia?", + "en_question": "What is the most popular takeaway food in your country?", + "annotations": [ + { + "answers": [ + "nasi padang" + ], + "en_answers": [ + "padang rice" + ], + "count": 2 + }, + { + "answers": [ + "nasi goreng" + ], + "en_answers": [ + "fried rice" + ], + "count": 2 + }, + { + "answers": [ + "roti bakar" + ], + "en_answers": [ + "toast" + ], + "count": 1 + }, + { + "answers": [ + "bakso" + ], + "en_answers": [ + "meatball" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Sa-en-7": { + "question": "Apa saja camilan populer di Indonesia?", + "en_question": "What are popular snacks in your country?", + "annotations": [ + { + "answers": [ + "gorengan" + ], + "en_answers": [ + "fritters" + ], + "count": 2 + }, + { + "answers": [ + "bakso" + ], + "en_answers": [ + "meatball" + ], + "count": 1 + }, + { + "answers": [ + "onde onde", + "onde-onde" + ], + "en_answers": [ + "onde-onde" + ], + "count": 1 + }, + { + "answers": [ + "batagor" + ], + "en_answers": [ + "batagor" + ], + "count": 1 + }, + { + "answers": [ + "krupuk", + "kerupuk" + ], + "en_answers": [ + "crackers" + ], + "count": 1 + }, + { + "answers": [ + "biskuit" + ], + "en_answers": [ + "biscuit" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-9": { + "question": "Apa yang biasanya orang Indonesia makan di pantai?", + "en_question": "What do people from your country eat at the beach?", + "annotations": [ + { + "answers": [ + "ikan bakar" + ], + "en_answers": [ + "grilled fish" + ], + "count": 1 + }, + { + "answers": [ + "udang bakar" + ], + "en_answers": [ + "grilled shrimp" + ], + "count": 1 + }, + { + "answers": [ + "kepiting" + ], + "en_answers": [ + "crab" + ], + "count": 1 + }, + { + "answers": [ + "nasi goreng" + ], + "en_answers": [ + "fried rice" + ], + "count": 1 + }, + { + "answers": [ + "kacang" + ], + "en_answers": [ + "peanut" + ], + "count": 1 + }, + { + "answers": [ + "kuaci" + ], + "en_answers": [ + "sunflower seeds" + ], + "count": 1 + }, + { + "answers": [ + "es krim" + ], + "en_answers": [ + "ice cream" + ], + "count": 1 + }, + { + "answers": [ + "jagung bakar" + ], + "en_answers": [ + "grilled corn" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-10": { + "question": "Pada usia berapa biasanya pria menikah di Indonesia? (Berikan angka Arab (misalnya, 20) saja.)", + "en_question": "At what age do men usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 2 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + }, + { + "answers": [ + "27" + ], + "en_answers": [ + "27" + ], + "count": 1 + }, + { + "answers": [ + "28" + ], + "en_answers": [ + "28" + ], + "count": 1 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-11": { + "question": "Pada usia berapa biasanya wanita menikah di Indonesia? (Berikan angka Arab (misalnya, 20) saja.)", + "en_question": "At what age do women usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 2 + }, + { + "answers": [ + "23" + ], + "en_answers": [ + "23" + ], + "count": 2 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + }, + { + "answers": [ + "27" + ], + "en_answers": [ + "27" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-13": { + "question": "Pada generasi orang tua Anda, berapa rata-rata jumlah anggota keluarga mereka di Indonesia? (Hanya berikan angka Arab (misalnya, 20).)", + "en_question": "In your parents' generation, what was the average number of members in their family in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 2 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 2 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-17": { + "question": "Dalam Olimpiade, olahraga mana yang paling populer di Indonesia?", + "en_question": "In the Olympic Games, which sport is the most popular in your country?", + "annotations": [ + { + "answers": [ + "bulu tangkis", + "bulutangkis", + "badminton" + ], + "en_answers": [ + "badminton" + ], + "count": 4 + }, + { + "answers": [ + "sepak bola", + "sepakbola" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 1 + }, + { + "answers": [ + "angkat besi" + ], + "en_answers": [ + "weightlifting" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ta-pe-21": { + "question": "Di mana biasanya anak-anak bermain sepak bola di Indonesia?", + "en_question": "Where do children usually play soccer in your country?", + "annotations": [ + { + "answers": [ + "pinggir jalan", + "tanah kosong", + "di jalan", + "lapangan pinggir jalan" + ], + "en_answers": [ + "roadside", + "vacant land", + "on the street", + "roadside field" + ], + "count": 4 + }, + { + "answers": [ + "lapangan sepakbola", + "di lapangan bola" + ], + "en_answers": [ + "soccer field", + "on the soccer field" + ], + "count": 2 + }, + { + "answers": [ + "tanah lapang" + ], + "en_answers": [ + "open field" + ], + "count": 1 + }, + { + "answers": [ + "taman bermain" + ], + "en_answers": [ + "playground" + ], + "count": 1 + }, + { + "answers": [ + "belakang rumah" + ], + "en_answers": [ + "back of the house" + ], + "count": 1 + }, + { + "answers": [ + "lapangan futsal sekolah" + ], + "en_answers": [ + "school futsal field" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-22": { + "question": "Olahraga harian apa yang populer di kalangan wanita di Indonesia?", + "en_question": "Which daily exercise is popular among women in your country?", + "annotations": [ + { + "answers": [ + "yoga" + ], + "en_answers": [ + "yoga" + ], + "count": 2 + }, + { + "answers": [ + "jalan pagi" + ], + "en_answers": [ + "morning walk" + ], + "count": 1 + }, + { + "answers": [ + "zumba" + ], + "en_answers": [ + "zumba" + ], + "count": 1 + }, + { + "answers": [ + "senam" + ], + "en_answers": [ + "gymnastics" + ], + "count": 1 + }, + { + "answers": [ + "berlari" + ], + "en_answers": [ + "run" + ], + "count": 1 + }, + { + "answers": [ + "bulu tangkis" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "aerobic" + ], + "en_answers": [ + "aerobic" + ], + "count": 1 + }, + { + "answers": [ + "tennis" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-23": { + "question": "Olahraga harian apa yang populer di kalangan pria di Indonesia?", + "en_question": "Which daily exercise is popular among men in your country?", + "annotations": [ + { + "answers": [ + "bulu tangkis", + "badminton", + "bulutangkis" + ], + "en_answers": [ + "badminton" + ], + "count": 3 + }, + { + "answers": [ + "sepak bola" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 2 + }, + { + "answers": [ + "bola basket", + "basket" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "bersepeda", + "sepeda" + ], + "en_answers": [ + "cycling" + ], + "count": 1 + }, + { + "answers": [ + "berlari" + ], + "en_answers": [ + "run" + ], + "count": 1 + }, + { + "answers": [ + "futsal" + ], + "en_answers": [ + "futsal" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-25": { + "question": "Apa persaingan paling terkenal di liga olahraga nasional di Indonesia? (misalnya, ___ vs ___)", + "en_question": "What is the most famous rivalry in a national sports league in your country? (e.g., ___ vs ___)", + "annotations": [ + { + "answers": [ + "persib vs persija", + "persija vs persib", + "persib bandung vs persija jakarta", + "persija jakarta vs persib bandung" + ], + "en_answers": [ + "persib vs persija", + "persib bandung vs persija jakarta", + "persija vs persib", + "persija jakarta vs persib bandung" + ], + "count": 3 + }, + { + "answers": [ + "persebaya vs arema", + "arema vs persebaya", + "persebaya surabaya vs arema malang", + "arema malang vs persebaya surabaya" + ], + "en_answers": [ + "persebaya vs arema", + "persebaya surabaya vs arema malang", + "arema vs persebaya", + "arema malang vs persebaya surabaya" + ], + "count": 2 + }, + { + "answers": [ + "persija vs psms", + "persija jakarta vs psms medan", + "psms vs persija", + "psms medan vs persija jakarta" + ], + "en_answers": [ + "persija vs psms", + "persija jakarta vs psms medan", + "psms vs persija", + "psms medan vs persija jakarta" + ], + "count": 1 + }, + { + "answers": [ + "persija vs persipura", + "persija jakarta vs persipura jayapura", + "persipura vs persija", + "persipura jayapura vs persija jakarta" + ], + "en_answers": [ + "persija vs persipura", + "persija jakarta vs persipura jayapura", + "persipura vs persija", + "persipura jayapura vs persija jakarta" + ], + "count": 1 + }, + { + "answers": [ + "persebaya vs persija", + "persebaya surabaya vs persija jakarta", + "persija vs persebaya", + "persija jakarta vs persebaya surabaya" + ], + "en_answers": [ + "persebaya vs persija", + "persebaya surabaya vs persija jakarta", + "persija vs persebaya", + "persija jakarta vs persebaya surabaya" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-29": { + "question": "Olahraga profesional apa yang memiliki bayaran tertinggi di Indonesia?", + "en_question": "Which professional sport is the highest paying in your country?", + "annotations": [ + { + "answers": [ + "sepak bola", + "sepakbola" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 4 + }, + { + "answers": [ + "bulu tangkis", + "badminton", + "bulutangkis" + ], + "en_answers": [ + "badminton" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ta-pe-30": { + "question": "Apa acara TV tentang olahraga yang paling populer di Indonesia?", + "en_question": "What is/was the most popular sports-related TV program in your country?", + "annotations": [ + { + "answers": [ + "lensa olahraga" + ], + "en_answers": [ + "lensa olahraga" + ], + "count": 3 + }, + { + "answers": [ + "sport 7" + ], + "en_answers": [ + "sport 7" + ], + "count": 1 + }, + { + "answers": [ + "siaran langsung sepak bola" + ], + "en_answers": [ + "live football broadcast" + ], + "count": 1 + }, + { + "answers": [ + "dbl", + "developmental basketball league" + ], + "en_answers": [ + "dbl", + "developmental basketball league" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-32": { + "question": "Hari apa dalam setahun yang biasanya didedikasikan untuk kembang api di Indonesia?", + "en_question": "What day of the year is usually dedicated to fireworks in your country?", + "annotations": [ + { + "answers": [ + "tahun baru", + "malam tahun baru" + ], + "en_answers": [ + "new year", + "new year's eve" + ], + "count": 5 + }, + { + "answers": [ + "lebaran", + "idul fitri", + "idulfitri" + ], + "en_answers": [ + "eid al-fitr" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-37": { + "question": "Apa simbol umum dari Malam Tahun Baru yang biasanya ditemukan di Indonesia?", + "en_question": "What is the common symbol of New Year's Eve that is usually found in your country?", + "annotations": [ + { + "answers": [ + "kembang api" + ], + "en_answers": [ + "fireworks" + ], + "count": 4 + }, + { + "answers": [ + "petasan" + ], + "en_answers": [ + "firecrackers" + ], + "count": 2 + }, + { + "answers": [ + "makan makan" + ], + "en_answers": [ + "eating together" + ], + "count": 1 + }, + { + "answers": [ + "kumpul kumpul", + "kumpul-kumpul" + ], + "en_answers": [ + "gathering" + ], + "count": 1 + }, + { + "answers": [ + "terompet" + ], + "en_answers": [ + "trumpet" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-42": { + "question": "Makanan apa yang biasanya dimakan oleh orang-orang Indonesia di Malam Tahun Baru?", + "en_question": "What food do people from your country usually eat on New Year's Eve?", + "annotations": [ + { + "answers": [ + "ikan bakar" + ], + "en_answers": [ + "grilled fish" + ], + "count": 1 + }, + { + "answers": [ + "ayam bakar" + ], + "en_answers": [ + "grilled chicken" + ], + "count": 1 + }, + { + "answers": [ + "jagung bakar" + ], + "en_answers": [ + "grilled corn" + ], + "count": 1 + }, + { + "answers": [ + "steak" + ], + "en_answers": [ + "steak" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ta-pe-45": { + "question": "Apa yang biasanya dimakan selama perayaan malam terpanjang dalam setahun di Indonesia?", + "en_question": "What is usually eaten during the celebration of the longest night of the year in your country?", + "annotations": [ + { + "answers": [ + "sate" + ], + "en_answers": [ + "satay" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "no-answer": 1, + "idk": 1 + } + }, + "Th-en-01": { + "question": "Apa olahraga musim panas yang paling populer di Indonesia?", + "en_question": "What is the most popular summer sport in your country?", + "annotations": [ + { + "answers": [ + "bulutangkis", + "bulu tangkis", + "badminton" + ], + "en_answers": [ + "badminton" + ], + "count": 3 + }, + { + "answers": [ + "sepakbola" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 1 + }, + { + "answers": [ + "berenang", + "renang" + ], + "en_answers": [ + "swim", + "swimming" + ], + "count": 1 + }, + { + "answers": [ + "basket", + "bola basket" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Th-en-03": { + "question": "Apa liga olahraga profesional paling populer di Indonesia?", + "en_question": "What is the most popular professional sports league in your country?", + "annotations": [ + { + "answers": [ + "liga 1", + "sepak bola", + "indonesian super league (isl)", + "indonesian super league", + "isl" + ], + "en_answers": [ + "league 1", + "soccer", + "football", + "indonesian super league (isl)", + "indonesian super league", + "isl" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-05": { + "question": "Apa tim olahraga wanita paling populer di Indonesia?", + "en_question": "What is the most popular women's sports team in your country?", + "annotations": [ + { + "answers": [ + "bola voli" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "bulu tangkis", + "bulutangkis", + "badminton" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "renang" + ], + "en_answers": [ + "swim", + "swimming" + ], + "count": 1 + }, + { + "answers": [ + "sepak bola" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-09": { + "question": "Apa turnamen paling populer di Indonesia?", + "en_question": "What is the most popular tournament in your country?", + "annotations": [ + { + "answers": [ + "piala indonesia" + ], + "en_answers": [ + "piala indonesia", + "indonesian cup" + ], + "count": 2 + }, + { + "answers": [ + "esports", + "e-sport", + "e-sports" + ], + "en_answers": [ + "e-sport", + "e-sports" + ], + "count": 1 + }, + { + "answers": [ + "bulu tangkis", + "bulutangkis", + "badminton" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "liga indonesia" + ], + "en_answers": [ + "indonesian league" + ], + "count": 1 + }, + { + "answers": [ + "pon", + "pekan olahraga nasional" + ], + "en_answers": [ + "pon", + "national sports week" + ], + "count": 1 + }, + { + "answers": [ + "indonesia open" + ], + "en_answers": [ + "indonesia open" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-11": { + "question": "Siapa olahragawan/olahragawati yang paling populer di Indonesia?", + "en_question": "Who is the most popular sportperson in your country?", + "annotations": [ + { + "answers": [ + "rudy hartono" + ], + "en_answers": [ + "rudy hartono" + ], + "count": 1 + }, + { + "answers": [ + "liem swie king" + ], + "en_answers": [ + "liem swie king" + ], + "count": 1 + }, + { + "answers": [ + "ivana lie", + "ivanna lie" + ], + "en_answers": [ + "ivana lie" + ], + "count": 1 + }, + { + "answers": [ + "susi susanti" + ], + "en_answers": [ + "susi susanti" + ], + "count": 1 + }, + { + "answers": [ + "taufik hidayat" + ], + "en_answers": [ + "taufik hidayat" + ], + "count": 1 + }, + { + "answers": [ + "kevin sanjaya" + ], + "en_answers": [ + "kevin sanjaya" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "Th-en-12": { + "question": "Dalam olahraga apa Indonesia paling sukses di kompetisi internasional?", + "en_question": "In which sport has your country been most successful in international competitions?", + "annotations": [ + { + "answers": [ + "badminton", + "bulutangkis", + "bulu tangkis" + ], + "en_answers": [ + "badminton" + ], + "count": 5 + }, + { + "answers": [ + "sepak takraw", + "sepaktakraw" + ], + "en_answers": [ + "sepak takraw", + "sepaktakraw" + ], + "count": 1 + }, + { + "answers": [ + "pencak silat" + ], + "en_answers": [ + "pencak silat" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-15": { + "question": "Apa olahraga musim dingin yang paling populer di Indonesia?", + "en_question": "What is the most popular winter sport in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Th-en-19": { + "question": "Apa nama kota atau daerah di Indonesia yang terkenal dengan industri manufaktur?", + "en_question": "What is a city or region in your country known for manufacturing industry?", + "annotations": [ + { + "answers": [ + "karawang", + "kerawang" + ], + "en_answers": [ + "karawang", + "kerawang" + ], + "count": 4 + }, + { + "answers": [ + "bekasi" + ], + "en_answers": [ + "bekasi" + ], + "count": 2 + }, + { + "answers": [ + "bandung" + ], + "en_answers": [ + "bandung" + ], + "count": 1 + }, + { + "answers": [ + "cikarang" + ], + "en_answers": [ + "cikarang" + ], + "count": 1 + }, + { + "answers": [ + "tangerang" + ], + "en_answers": [ + "tangerang" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-21": { + "question": "Apa yang dianggap sebagai keuntungan paling penting yang biasanya ditawarkan kepada karyawan di Indonesia?", + "en_question": "What is regarded as the most important perk typically offered to employees in your country?", + "annotations": [ + { + "answers": [ + "gaji", + "gaji dan tunjangan" + ], + "en_answers": [ + "salary", + "salary and allowances" + ], + "count": 3 + }, + { + "answers": [ + "thr", + "tunjangan hari raya" + ], + "en_answers": [ + "religious holiday allowance" + ], + "count": 1 + }, + { + "answers": [ + "bonus tahunan" + ], + "en_answers": [ + "annual bonus" + ], + "count": 1 + }, + { + "answers": [ + "cuti libur" + ], + "en_answers": [ + "holiday leave", + "leave", + "paid leave" + ], + "count": 1 + }, + { + "answers": [ + "asuransi kesehatan" + ], + "en_answers": [ + "health insurance" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-22": { + "question": "Apa periode ekonomi paling kritis bagi Indonesia?", + "en_question": "What was the most catastrophic economic period for your country?", + "annotations": [ + { + "answers": [ + "1998", + "1997-1998", + "krisis moneter 1997-1998", + "krisis moneter 1997 - 1998", + "krismon", + "krismom", + "krisis moneter" + ], + "en_answers": [ + "1998", + "1997-1998", + "1997-1998 monetary crisis", + "monetary crisis" + ], + "count": 5 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-24": { + "question": "Wilayah mana di Indonesia yang merupakan pusat utama untuk pekerja teknologi dan start up?", + "en_question": "What region in your country is a major hub for tech workers and start ups?", + "annotations": [ + { + "answers": [ + "jakarta" + ], + "en_answers": [ + "jakarta" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-27": { + "question": "Apa industri paling penting di Indonesia?", + "en_question": "What is the most important industry in your country?", + "annotations": [ + { + "answers": [ + "makanan" + ], + "en_answers": [ + "food" + ], + "count": 3 + }, + { + "answers": [ + "pertanian" + ], + "en_answers": [ + "agriculture" + ], + "count": 2 + }, + { + "answers": [ + "tambang", + "pertambangan" + ], + "en_answers": [ + "mine", + "mining" + ], + "count": 2 + }, + { + "answers": [ + "minuman" + ], + "en_answers": [ + "beverage" + ], + "count": 1 + }, + { + "answers": [ + "tekstil" + ], + "en_answers": [ + "textile" + ], + "count": 1 + }, + { + "answers": [ + "perdagangan" + ], + "en_answers": [ + "trade" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-35": { + "question": "Makanan sehari-hari mana yang biasanya disantap bersama anggota keluarga di Indonesia? (misalnya, sarapan, makan siang, makan malam)", + "en_question": "Which one of the daily meals is commonly shared with family members in your country? (e.g., breakfast, lunch, dinner)", + "annotations": [ + { + "answers": [ + "makan malam" + ], + "en_answers": [ + "dinner" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-36": { + "question": "Apa kegiatan keluarga yang populer untuk dilakukan bersama anak pada akhir pekan di Indonesia?", + "en_question": "What is a popular family activity with a child to do on weekends in your country?", + "annotations": [ + { + "answers": [ + "jalan-jalan ke mall", + "pergi ke mall", + "jalan jalan ke mall", + "ke mall" + ], + "en_answers": [ + "going to the mall", + "go to the mall" + ], + "count": 3 + }, + { + "answers": [ + "bersepeda", + "sepeda", + "cycling/sepeda" + ], + "en_answers": [ + "cycling" + ], + "count": 2 + }, + { + "answers": [ + "nonton tv" + ], + "en_answers": [ + "watch tv" + ], + "count": 1 + }, + { + "answers": [ + "jogging" + ], + "en_answers": [ + "jogging" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-37": { + "question": "Pada usia berapa biasanya anak-anak di Indonesia menjadi mandiri dari orang tua mereka? (Hanya berikan angka Arab (misalnya, 12).)", + "en_question": "At what age do children typically become independent from their parents in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 2 + }, + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 1 + }, + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 1 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-38": { + "question": "Apa hari libur keluarga yang paling penting di Indonesia?", + "en_question": "What is the most important family holiday in your country?", + "annotations": [ + { + "answers": [ + "lebaran", + "idul fitri" + ], + "en_answers": [ + "eid al-fitr" + ], + "count": 4 + }, + { + "answers": [ + "natal", + "hari raya (misalnya: natal" + ], + "en_answers": [ + "christmas" + ], + "count": 3 + }, + { + "answers": [ + "imlek", + "imlek)" + ], + "en_answers": [ + "chinese new year" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-39": { + "question": "Apa permainan keluarga yang populer di Indonesia?", + "en_question": "What is a popular family game in your country?", + "annotations": [ + { + "answers": [ + "kartu" + ], + "en_answers": [ + "card" + ], + "count": 2 + }, + { + "answers": [ + "petak umpet" + ], + "en_answers": [ + "hide and seek" + ], + "count": 1 + }, + { + "answers": [ + "catur" + ], + "en_answers": [ + "chess" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "Th-en-41": { + "question": "Berapa usia rata-rata pasangan di Indonesia untuk memiliki anak pertama mereka? (Hanya berikan angka Arab (misalnya, 20).)", + "en_question": "What is the average age for couples to have their first child in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "27" + ], + "en_answers": [ + "27" + ], + "count": 4 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + }, + { + "answers": [ + "23" + ], + "en_answers": [ + "23" + ], + "count": 1 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-43": { + "question": "Berapa banyak mobil yang dimiliki oleh sebuah keluarga tipikal di Indonesia? (Hanya berikan angka Arab (contoh, 12).)", + "en_question": "How many cars are owned by a typical family in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 3 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + }, + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-44": { + "question": "Apa makanan paling populer di Indonesia untuk makan malam keluarga di akhir pekan?", + "en_question": "What is your country's most popular food for family meals on weekends?", + "annotations": [ + { + "answers": [ + "ikan bakar" + ], + "en_answers": [ + "grilled fish" + ], + "count": 1 + }, + { + "answers": [ + "ayam bakar" + ], + "en_answers": [ + "grilled chicken" + ], + "count": 1 + }, + { + "answers": [ + "nasi padang" + ], + "en_answers": [ + "padang rice" + ], + "count": 1 + }, + { + "answers": [ + "ayam goreng" + ], + "en_answers": [ + "fried chicken" + ], + "count": 1 + }, + { + "answers": [ + "sate" + ], + "en_answers": [ + "satay" + ], + "count": 1 + }, + { + "answers": [ + "bakso" + ], + "en_answers": [ + "meatball" + ], + "count": 1 + }, + { + "answers": [ + "nasi tumpeng" + ], + "en_answers": [ + "tumpeng rice" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-45": { + "question": "Apa aktivitas keluarga sore hari di hari kerja yang paling populer di Indonesia?", + "en_question": "What is the most popular weekday evening family activity in your country?", + "annotations": [ + { + "answers": [ + "nonton tv bersama", + "nonton tv", + "nonton", + "menonton tv" + ], + "en_answers": [ + "watch tv together", + "watch tv", + "watching tv" + ], + "count": 4 + }, + { + "answers": [ + "pergi ke mall", + "jalan-jalan ke mall" + ], + "en_answers": [ + "go to the mall", + "going to the mall" + ], + "count": 1 + }, + { + "answers": [ + "olahraga" + ], + "en_answers": [ + "exercise" + ], + "count": 1 + }, + { + "answers": [ + "futsal" + ], + "en_answers": [ + "futsal" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-48": { + "question": "Apa nilai tertinggi yang diberikan kepada siswa SMA yang berprestasi tinggi pada tugas dan ujian di Indonesia?", + "en_question": "What is the highest grade given to top-achieving high school students on assignments and exams in your country?", + "annotations": [ + { + "answers": [ + "100" + ], + "en_answers": [ + "100" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-49": { + "question": "Apa yang dianggap sebagai ujian paling penting bagi siswa SMA di Indonesia?", + "en_question": "What is considered the most important exam for high school students in your country?", + "annotations": [ + { + "answers": [ + "ujian nasional", + "un" + ], + "en_answers": [ + "national exam" + ], + "count": 3 + }, + { + "answers": [ + "ujian sekolah", + "uas" + ], + "en_answers": [ + "school exam" + ], + "count": 2 + }, + { + "answers": [ + "utbk", + "snmptn", + "sbmptn" + ], + "en_answers": [ + "university entrance test" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-51": { + "question": "Mata pelajaran apa yang dianggap paling penting bagi siswa di Indonesia?", + "en_question": "Which subject is considered the most important for students in your country?", + "annotations": [ + { + "answers": [ + "matematika" + ], + "en_answers": [ + "mathematics" + ], + "count": 5 + }, + { + "answers": [ + "bahasa inggris" + ], + "en_answers": [ + "english language", + "english" + ], + "count": 2 + }, + { + "answers": [ + "sejarah" + ], + "en_answers": [ + "history" + ], + "count": 1 + }, + { + "answers": [ + "agama" + ], + "en_answers": [ + "religion" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-53": { + "question": "Apa kegiatan ekstrakurikuler sosial yang paling populer di sekolah-sekolah di Indonesia?", + "en_question": "What is the most popular extracurricular social event at schools in your country?", + "annotations": [ + { + "answers": [ + "basket" + ], + "en_answers": [ + "basketball" + ], + "count": 4 + }, + { + "answers": [ + "seni" + ], + "en_answers": [ + "art" + ], + "count": 1 + }, + { + "answers": [ + "sepak bola" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 1 + }, + { + "answers": [ + "paskibra", + "pasukan pengibar bendera" + ], + "en_answers": [ + "troop" + ], + "count": 1 + }, + { + "answers": [ + "badminton", + "bulu tangkis", + "bulutangkis" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "futsal" + ], + "en_answers": [ + "futsal" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-58": { + "question": "Apa mata pelajaran matematika tingkat lanjut terakhir yang dipelajari sebelum universitas di Indonesia?", + "en_question": "What is the most advanced math subject learned before university in your country?", + "annotations": [ + { + "answers": [ + "kalkulus" + ], + "en_answers": [ + "calculus" + ], + "count": 2 + }, + { + "answers": [ + "integral dan turunan", + "turunan" + ], + "en_answers": [ + "integral and derivative", + "derivative" + ], + "count": 2 + }, + { + "answers": [ + "aljabar", + "algebra" + ], + "en_answers": [ + "algebra" + ], + "count": 2 + }, + { + "answers": [ + "logaritma" + ], + "en_answers": [ + "logarithm" + ], + "count": 1 + }, + { + "answers": [ + "trigonometri" + ], + "en_answers": [ + "trigonometry" + ], + "count": 1 + }, + { + "answers": [ + "statistik" + ], + "en_answers": [ + "statistics" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-01": { + "question": "Di mana mahasiswa di Indonesia biasanya belajar untuk ujian akhir mereka?", + "en_question": "Where do university students in your country usually go to study for their final exams?", + "annotations": [ + { + "answers": [ + "perpustakaan", + "perpus", + "di perpus", + "di perpustakaan" + ], + "en_answers": [ + "library" + ], + "count": 2 + }, + { + "answers": [ + "di rumah", + "rumah" + ], + "en_answers": [ + "at home" + ], + "count": 2 + }, + { + "answers": [ + "kafe", + "cafe", + "di kafe", + "di cafe" + ], + "en_answers": [ + "cafe" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-02": { + "question": "Apa transportasi umum yang sering digunakan orang untuk pergi ke universitas di Indonesia?", + "en_question": "What is a common public transport that people use to go to university in your country?", + "annotations": [ + { + "answers": [ + "sepeda motor", + "ojek", + "motor" + ], + "en_answers": [ + "motorcycle", + "motorbike", + "ojek", + "motorcycle taxi", + "motorbike taxi" + ], + "count": 3 + }, + { + "answers": [ + "bis", + "bus" + ], + "en_answers": [ + "bus" + ], + "count": 3 + }, + { + "answers": [ + "taksi" + ], + "en_answers": [ + "taxi" + ], + "count": 1 + }, + { + "answers": [ + "kereta" + ], + "en_answers": [ + "train" + ], + "count": 1 + }, + { + "answers": [ + "angkot", + "angkutan kota" + ], + "en_answers": [ + "angkot" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-04": { + "question": "Apa yang biasanya dilakukan oleh siswa sekolah dasar di Indonesia setelah pulang sekolah?", + "en_question": "What do elementary students in your country usually do after school?", + "annotations": [ + { + "answers": [ + "les tambahan", + "bimbingan belajar" + ], + "en_answers": [ + "tutoring lesson", + "tutoring" + ], + "count": 2 + }, + { + "answers": [ + "jajan" + ], + "en_answers": [ + "buy snacks" + ], + "count": 1 + }, + { + "answers": [ + "main bersama teman" + ], + "en_answers": [ + "play with friends" + ], + "count": 1 + }, + { + "answers": [ + "olahraga" + ], + "en_answers": [ + "exercise" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + } +} \ No newline at end of file diff --git a/data/annotations/Iran_data.json b/data/annotations/Iran_data.json new file mode 100644 index 0000000000000000000000000000000000000000..18346d43dde2bfd3938d4672b19bbaf5044304ad --- /dev/null +++ b/data/annotations/Iran_data.json @@ -0,0 +1,22509 @@ +{ + "Al-en-01": { + "question": "یک میان وعده معمول برای بچه‌های پیش دبستانی درایران چیست؟", + "en_question": "What is a common snack for preschool kids in Iran?", + "annotations": [ + { + "answers": [ + "میوه", + "ميوه" + ], + "en_answers": [ + "fruit" + ], + "count": 3 + }, + { + "answers": [ + "لقمه" + ], + "en_answers": [ + "sandwich" + ], + "count": 1 + }, + { + "answers": [ + "کیک و شیر" + ], + "en_answers": [ + "cake and milk" + ], + "count": 1 + }, + { + "answers": [ + "نون و پنير" + ], + "en_answers": [ + "bread and cheese" + ], + "count": 1 + }, + { + "answers": [ + "تخممرغ", + "تخم‌مرغ یا کورن‌فلکس" + ], + "en_answers": [ + "eggs" + ], + "count": 1 + }, + { + "answers": [ + "کورنفلکس", + "تخم‌مرغ یا کورن‌فلکس" + ], + "en_answers": [ + "cereal" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Al-en-02": { + "question": "یک غذای محبوب برای خوردن با آبجو درایران چیست؟", + "en_question": "What is a popular food to go with beer in Iran?", + "annotations": [ + { + "answers": [ + "جوجه کباب" + ], + "en_answers": [ + "chicken kebab" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "no-answer": 1, + "idk": 0 + } + }, + "Al-en-04": { + "question": "محبوب‌ترین میوه درایران چیست؟", + "en_question": "What is the most popular fruit in Iran?", + "annotations": [ + { + "answers": [ + "پرتقال" + ], + "en_answers": [ + "orange" + ], + "count": 2 + }, + { + "answers": [ + "نارنگی" + ], + "en_answers": [ + "tangerine" + ], + "count": 1 + }, + { + "answers": [ + "هلو" + ], + "en_answers": [ + "peach" + ], + "count": 1 + }, + { + "answers": [ + "موز" + ], + "en_answers": [ + "banana" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Al-en-06": { + "question": "یک غذای معمولی کافه‌تریای مدارسایران چیست؟", + "en_question": "What is a common school cafeteria food in Iran?", + "annotations": [ + { + "answers": [ + "ساندویچ" + ], + "en_answers": [ + "sandwich" + ], + "count": 2 + }, + { + "answers": [ + "ساندویچ کالباس" + ], + "en_answers": [ + "ham sandwich" + ], + "count": 2 + }, + { + "answers": [ + "املت" + ], + "en_answers": [ + "omelette" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-08": { + "question": "در ایران متداول‌ترین تنقلاتی که در مراکز خرید مصرف می‌شوند چیست؟", + "en_question": "What are the most commonly eaten snacks at shopping malls in Iran?", + "annotations": [ + { + "answers": [ + "چیپس" + ], + "en_answers": [ + "crisps" + ], + "count": 3 + }, + { + "answers": [ + "ذرت مکزیکی" + ], + "en_answers": [ + "mexican corn" + ], + "count": 2 + }, + { + "answers": [ + "پفک" + ], + "en_answers": [ + "cheese puffs" + ], + "count": 2 + }, + { + "answers": [ + "پاستیل" + ], + "en_answers": [ + "gummies" + ], + "count": 1 + }, + { + "answers": [ + "شیرینی" + ], + "en_answers": [ + "sweets" + ], + "count": 1 + }, + { + "answers": [ + "تخمه" + ], + "en_answers": [ + "seed" + ], + "count": 1 + }, + { + "answers": [ + "بستنی" + ], + "en_answers": [ + "ice cream" + ], + "count": 1 + }, + { + "answers": [ + "پاپ کورن" + ], + "en_answers": [ + "popcorn" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-09": { + "question": "یک میان وعده محبوب در شهربازی درایران چیست؟", + "en_question": "What is a popular snack at an amusement park in Iran?", + "annotations": [ + { + "answers": [ + "پشمک", + "پشمك" + ], + "en_answers": [ + "cotton candy" + ], + "count": 4 + }, + { + "answers": [ + "پاپ کورن" + ], + "en_answers": [ + "popcorn" + ], + "count": 1 + }, + { + "answers": [ + "پاستیل" + ], + "en_answers": [ + "gummies" + ], + "count": 1 + }, + { + "answers": [ + "سيب زميني سرخ كرده" + ], + "en_answers": [ + "french fries" + ], + "count": 1 + }, + { + "answers": [ + "الويه" + ], + "en_answers": [ + "olivier salad" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-16": { + "question": "در ایران در چه سنی بچه‌ها به پیش‌دبستانی می‌روند؟ (فقط اعداد عربی (مثلاً 12) ارائه دهید.)", + "en_question": "At what age do kids start preschool in Iran? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 4 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-17": { + "question": "در ایران یک ورزش محبوب بعد از مدرسه برای دانش‌آموزان دبستانی چیست؟", + "en_question": "What is a popular afterschool sport for elementary schools in Iran?", + "annotations": [ + { + "answers": [ + "فوتبال" + ], + "en_answers": [ + "football" + ], + "count": 3 + }, + { + "answers": [ + "وسطی" + ], + "en_answers": [ + "dodge ball" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Al-en-18": { + "question": "درایران دانش‌آموزان دبستانی برای چه درسی تحصیلات خصوصی می‌گیرند؟", + "en_question": "For which subject do elementary students get private education in Iran?", + "annotations": [ + { + "answers": [ + "ریاضی" + ], + "en_answers": [ + "mathematics" + ], + "count": 4 + }, + { + "answers": [ + "زبان انگلیسی" + ], + "en_answers": [ + "english language" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-19": { + "question": "درایران یک زبان دوم محبوب برای دانش‌آموزان دبیرستانی چیست؟", + "en_question": "What is a popular second language for high school students in Iran?", + "annotations": [ + { + "answers": [ + "انگلیسی" + ], + "en_answers": [ + "english" + ], + "count": 5 + }, + { + "answers": [ + "فرانسوی" + ], + "en_answers": [ + "french" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-21": { + "question": "درایران کدام درس برای آموزش استعدادهای درخشان مهم‌تر است؟", + "en_question": "Which subject is the most important for gifted education in Iran?", + "annotations": [ + { + "answers": [ + "ریاضی", + "رياضي" + ], + "en_answers": [ + "mathematics" + ], + "count": 5 + }, + { + "answers": [ + "ادبیات" + ], + "en_answers": [ + "literature" + ], + "count": 1 + }, + { + "answers": [ + "شیمی" + ], + "en_answers": [ + "chemistry" + ], + "count": 1 + }, + { + "answers": [ + "فیزیک" + ], + "en_answers": [ + "physics" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-32": { + "question": "غذای اصلی شکرگزاری درایران چیست؟", + "en_question": "What is the main dish for Thanksgiving in Iran?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-33": { + "question": "مردم برای جشن گرفتن هالووین درایران چه کارهایی انجام می‌دهند؟", + "en_question": "What do people do to celebrate Halloween in Iran?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-34": { + "question": "مردم برای جشن گرفتن روز سال نو درایران چه کاری انجام می‌دهند؟", + "en_question": "What do people do to celebrate New Year's Day in Iran?", + "annotations": [ + { + "answers": [ + "چیدن سفره هفت سین", + "سفره ۷ سین", + "دیدار با خانواده" + ], + "en_answers": [ + "setting the haft-seen table", + "haft-seen spread", + "meeting with family" + ], + "count": 3 + }, + { + "answers": [ + "دید و بازدید", + "مهمانی رفتن" + ], + "en_answers": [ + "visiting each other", + "going to a party" + ], + "count": 2 + }, + { + "answers": [ + "خونه تکونی" + ], + "en_answers": [ + "house cleaning" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-35": { + "question": "درایران مردم برای جشن گرفتن کریسمس چه کارهایی انجام می‌دهند؟", + "en_question": "What do people do to celebrate Christmas in Iran?", + "annotations": [ + { + "answers": [ + "هیچی" + ], + "en_answers": [ + "nothing" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-36": { + "question": "چه غذایی با هالووین درایران مرتبط است؟", + "en_question": "What food is associated with Halloween in Iran?", + "annotations": [], + "idks": { + "not-applicable": 4, + "no-answer": 1, + "idk": 0 + } + }, + "Al-en-37": { + "question": "چه غذایی با کریسمس درایران مرتبط است؟", + "en_question": "What food is associated with Christmas in Iran?", + "annotations": [], + "idks": { + "not-applicable": 4, + "no-answer": 1, + "idk": 0 + } + }, + "Al-en-38": { + "question": "چه غذایی با روز ولنتاین درایران مرتبط است؟", + "en_question": "What food is associated with Valentine's day in Iran?", + "annotations": [ + { + "answers": [ + "شکلات" + ], + "en_answers": [ + "chocolate" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 2, + "no-answer": 1, + "idk": 0 + } + }, + "Al-en-39": { + "question": "مردم درایران در روز تولدشان چه چیزی می‌خورند؟", + "en_question": "What do people eat on their birthday in Iran?", + "annotations": [ + { + "answers": [ + "كيك", + "کیک" + ], + "en_answers": [ + "cake" + ], + "count": 2 + }, + { + "answers": [ + "شام تولد", + "شام تولد: پیتزا، کباب" + ], + "en_answers": [ + "birthday dinner" + ], + "count": 1 + }, + { + "answers": [ + "پیتزا", + "شام تولد: پیتزا، کباب" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + }, + { + "answers": [ + "کباب", + "شام تولد: پیتزا، کباب" + ], + "en_answers": [ + "kebab" + ], + "count": 1 + }, + { + "answers": [ + "کیک خانگی" + ], + "en_answers": [ + "homemade cake" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Al-en-40": { + "question": "یک مکان محبوب فضای باز برای خانواده‌ها برای تفریح با بچه‌های کوچک درایران چیست؟", + "en_question": "What is a popular outdoor place for families to have fun with little kids in Iran?", + "annotations": [ + { + "answers": [ + "پارک", + "پارك" + ], + "en_answers": [ + "park" + ], + "count": 5 + }, + { + "answers": [ + "شهربازی" + ], + "en_answers": [ + "amusement park" + ], + "count": 1 + }, + { + "answers": [ + "پارك جنگلي" + ], + "en_answers": [ + "forest park" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-43": { + "question": "یک فعالیت داخلی محبوب برای خانواده‌ها درایران چیست؟", + "en_question": "What is a popular indoor activity for families in Iran?", + "annotations": [ + { + "answers": [ + "سریال دیدن", + "سریال نگاه کردن", + "فیلم/سریال نگاه کردن" + ], + "en_answers": [ + "watching series" + ], + "count": 2 + }, + { + "answers": [ + "سینما رفتن" + ], + "en_answers": [ + "going to the cinema" + ], + "count": 1 + }, + { + "answers": [ + "مهمونی خانوادگی" + ], + "en_answers": [ + "family gathering" + ], + "count": 1 + }, + { + "answers": [ + "تماشای تلویزیون" + ], + "en_answers": [ + "watching tv" + ], + "count": 1 + }, + { + "answers": [ + "پیک نیک" + ], + "en_answers": [ + "picnic" + ], + "count": 1 + }, + { + "answers": [ + "رقص" + ], + "en_answers": [ + "dance" + ], + "count": 1 + }, + { + "answers": [ + "بازی تخته نرد" + ], + "en_answers": [ + "backgammon game" + ], + "count": 1 + }, + { + "answers": [ + "فیلم نگاه کردن", + "فیلم/سریال نگاه کردن" + ], + "en_answers": [ + "watching movie" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-02": { + "question": "در ایران دانشجویان دانشگاه کجا ناهار می‌خورند؟", + "en_question": "Where do university students have lunch in Iran?", + "annotations": [ + { + "answers": [ + "سلف", + "سلف و بوفه", + "سلف یا تریا", + "سلف دانشگاه", + "سلف دانشجويي" + ], + "en_answers": [ + "dining hall", + "university dining hall", + "student dining hall" + ], + "count": 5 + }, + { + "answers": [ + "بوفه", + "سلف و بوفه" + ], + "en_answers": [ + "buffet" + ], + "count": 1 + }, + { + "answers": [ + "تریا", + "سلف یا تریا" + ], + "en_answers": [ + "cafeteria" + ], + "count": 1 + }, + { + "answers": [ + "ساندويچي" + ], + "en_answers": [ + "sandwich shop" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-03": { + "question": "در ایران امتحانات نهایی دبیرستان‌ها معمولاً در چه ماهی برگزار می‌شود؟ (فقط اعداد عربی (1 تا 12) را وارد کنید.)", + "en_question": "Which month is the final exam term usually scheduled at high schools in Iran? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "۳", + "خرداد", + "3" + ], + "en_answers": [ + "3" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-08": { + "question": "در ایران دانش‌آموزان معمولاً چند ساعت در روز را در دبیرستان می‌گذرانند؟ (از اعداد عربی به صورت صحیح (0 تا 24) و بدون نقطه اعشار استفاده کنید.)", + "en_question": "How many hours a day do students in Iran usually spend at high school? (Provide Arabic numerals in integers (0~24), without any decimal points.)", + "annotations": [ + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 3 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 2 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-09": { + "question": "در ایران دانش‌آموزان در دبیرستان چند زبان مطالعه می‌کنند؟ (فقط عدد عربی (مثلاً 5) ارائه دهید.)", + "en_question": "How many languages do students study at high school in Iran? (Provide Arabic numerals (e.g., 5) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 4 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-34": { + "question": "درایران محبوب‌ترین ورزش دسته‌جمعی که در مدارس بازی می‌شود، چیست؟", + "en_question": "What is the most popular sport played in a team at school in Iran?", + "annotations": [ + { + "answers": [ + "فوتبال", + "والیبال" + ], + "en_answers": [ + "football", + "volleyball" + ], + "count": 4 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "An-ar-35": { + "question": "درایران محبوب‌ترین گزارشگر ورزشی چه کسی است؟", + "en_question": "Who is the most popular sport commentator in Iran?", + "annotations": [ + { + "answers": [ + "عادل فردوسی پور", + "عادل فردوسی‌پور", + "فردوسی پور" + ], + "en_answers": [ + "adel ferdosipour", + "ferdowsi pour" + ], + "count": 4 + }, + { + "answers": [ + "خیابانی" + ], + "en_answers": [ + "khiabani" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-36": { + "question": "درایران محبوب‌ترین تیم ورزشی کدام است؟", + "en_question": "What is the most popular sport team in Iran?", + "annotations": [ + { + "answers": [ + "پرسپولیس", + "استقلال" + ], + "en_answers": [ + "persepolis", + "esteghlal" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-43": { + "question": "در ایران مکان‌ ها یا محل‌های معمول که افراد معمولاً برای تماشای پخش‌های ورزشی در آنجا جمع می‌شوند، کدام‌ها هستند؟", + "en_question": "What are the common places or venues where individuals in Iran usually gather to watch sports broadcasts?", + "annotations": [ + { + "answers": [ + "کافه", + "کافی شاپ", + "كافه" + ], + "en_answers": [ + "cafe", + "coffee shop" + ], + "count": 3 + }, + { + "answers": [ + "استادیوم", + "ورزشگاه" + ], + "en_answers": [ + "stadium" + ], + "count": 2 + }, + { + "answers": [ + "رستوران" + ], + "en_answers": [ + "restaurant" + ], + "count": 1 + }, + { + "answers": [ + "خانه" + ], + "en_answers": [ + "home" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Ca-sp-05": { + "question": "مردم درایران معمولاً روزانه چند وعده غذا می‌خورند؟ (فقط اعداد عربی (مثلاً 5) را وارد کنید.)", + "en_question": "How many meals per day do people from Iran usually have? (Provide Arabic numerals (e.g., 5) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-06": { + "question": "کدام وعده غذایی از روز برای مردم درایران مهم‌تر است؟", + "en_question": "Which is the most important meal of the day to people from Iran?", + "annotations": [ + { + "answers": [ + "ناهار", + "نهار" + ], + "en_answers": [ + "lunch" + ], + "count": 4 + }, + { + "answers": [ + "شام" + ], + "en_answers": [ + "dinner" + ], + "count": 2 + }, + { + "answers": [ + "صبحانه" + ], + "en_answers": [ + "breakfast" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-08": { + "question": "متداول‌ترین ماده‌ی غذایی مورد استفاده در رژیم غذایی درایران چیست؟", + "en_question": "What is the most common ingredient used in Iran's diet?", + "annotations": [ + { + "answers": [ + "نان" + ], + "en_answers": [ + "bread" + ], + "count": 3 + }, + { + "answers": [ + "برنج" + ], + "en_answers": [ + "rice" + ], + "count": 3 + }, + { + "answers": [ + "پیاز" + ], + "en_answers": [ + "onion" + ], + "count": 1 + }, + { + "answers": [ + "سیر" + ], + "en_answers": [ + "garlic" + ], + "count": 1 + }, + { + "answers": [ + "لوبیا" + ], + "en_answers": [ + "beans" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-09": { + "question": "مردم درایران معمولاً برای دسر چه می‌خورند؟", + "en_question": "What do people from Iran usually eat for dessert?", + "annotations": [ + { + "answers": [ + "ژله" + ], + "en_answers": [ + "jelly" + ], + "count": 2 + }, + { + "answers": [ + "شله زرد", + "شله زد" + ], + "en_answers": [ + "sholezard" + ], + "count": 1 + }, + { + "answers": [ + "شیرینی" + ], + "en_answers": [ + "sweets" + ], + "count": 1 + }, + { + "answers": [ + "ماست و مربا" + ], + "en_answers": [ + "yogurt and jam" + ], + "count": 1 + }, + { + "answers": [ + "شیرینی خامه ای" + ], + "en_answers": [ + "cream pastry" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 0 + } + }, + "Ca-sp-11": { + "question": "مردم درایران معمولاً در چه روزی از هفته مهمانی خانوادگی برگزار می‌کنند؟", + "en_question": "Which day of the week do people usually organize a family meal in Iran?", + "annotations": [ + { + "answers": [ + "جمعه" + ], + "en_answers": [ + "friday" + ], + "count": 3 + }, + { + "answers": [ + "پنج شنبه", + "پنجشنبه" + ], + "en_answers": [ + "thursday" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-14": { + "question": "محبوب‌ترین نوشیدنی گرم درایران کدام است؟", + "en_question": "Which is the most popular hot drink in Iran?", + "annotations": [ + { + "answers": [ + "چای" + ], + "en_answers": [ + "tea" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-19": { + "question": "جوانان درایران معمولاً در کلاب شبانه چه چیزی می‌نوشند؟", + "en_question": "What do young people from Iran usually drink at the night club?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Ca-sp-21": { + "question": "مردم معمولاً در چه ماهی درایران تعطیلات می‌گیرند؟ (فقط اعداد عربی (1 تا 12) را وارد کنید.)", + "en_question": "At which month do people usually take holidays in Iran? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "1", + "فروردین" + ], + "en_answers": [ + "1" + ], + "count": 3 + }, + { + "answers": [ + "3", + "خرداد" + ], + "en_answers": [ + "3" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-29": { + "question": "در شب سال نو درایران چه سنت‌هایی وجود دارد؟", + "en_question": "What tradition is there in Iran for New Year's Eve?", + "annotations": [ + { + "answers": [ + "چیدن سفره هفت سین", + "دورهمی خانواده دور سفره هفت سین در لحظه ی سال تحویل" + ], + "en_answers": [ + "setting the haft-seen table", + "family gathering around the haft-seen spread at the moment of the new year" + ], + "count": 4 + }, + { + "answers": [ + "تمیز کردن خانه", + "خوردن سبزی پلو ماهی" + ], + "en_answers": [ + "house cleaning", + "eating sabzi polo with fish" + ], + "count": 2 + }, + { + "answers": [ + "خوردن سبزی پلو با ماهی", + "سلزی پلو با ماهی میخوریم" + ], + "en_answers": [ + "eating sabzi polo with fish", + "we eat sabzi polo with fish" + ], + "count": 2 + }, + { + "answers": [ + "دیدار با خانواده", + "به دیدن دوستان و آشنایان می رویم" + ], + "en_answers": [ + "meeting with family", + "we go to see friends and acquaintances" + ], + "count": 2 + }, + { + "answers": [ + "لباس نو یا تمیز میپوشیم" + ], + "en_answers": [ + "we wear new or clean clothes" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-38": { + "question": "درایران معمولاً چه نوع خانه‌ای برای یک خانواده معمول است؟", + "en_question": "Which is the typical type of house for a family in Iran?", + "annotations": [ + { + "answers": [ + "آپارتمان", + "اپارتمان", + "اپارتمانی" + ], + "en_answers": [ + "apartment" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-41": { + "question": "درایران افراد مسن وابسته معمولاً در کجا زندگی می‌کنند؟", + "en_question": "Where do the dependent elderly usually live in Iran?", + "annotations": [ + { + "answers": [ + "خانه سالمندان", + "آسایشگاه", + "در خانه سالمندان" + ], + "en_answers": [ + "nursing home", + "in the nursing home" + ], + "count": 4 + }, + { + "answers": [ + "خانه شان", + "خانه" + ], + "en_answers": [ + "their house", + "home" + ], + "count": 2 + }, + { + "answers": [ + "همراه با فرزندان" + ], + "en_answers": [ + "accompanied by children" + ], + "count": 1 + }, + { + "answers": [ + "در خانه فرزندان" + ], + "en_answers": [ + "at home children" + ], + "count": 1 + }, + { + "answers": [ + "در خانه همراه با پرستار" + ], + "en_answers": [ + "at home with a nurse" + ], + "count": 1 + }, + { + "answers": [ + "همراه با فرزند ارشد" + ], + "en_answers": [ + "accompanied by eldest child" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-42": { + "question": "درایران مرخصی زایمان برای مادران چند هفته است؟ (فقط عدد عربی (مثلاً 20) ارائه دهید.)", + "en_question": "How long (in weeks) is Iran's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "36", + "۹ ماه", + "36 هفته اغلب" + ], + "en_answers": [ + "36" + ], + "count": 3 + }, + { + "answers": [ + "26" + ], + "en_answers": [ + "26" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "نمیدانم": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-43": { + "question": "درایران مرخصی زایمان برای پدران چند هفته است؟ (فقط عدد عربی (مثلاً 20) ارائه دهید.)", + "en_question": "How long (in weeks) is Iran's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "۰", + "0" + ], + "en_answers": [ + "0" + ], + "count": 3 + }, + { + "answers": [ + "۲", + "حدود 2 هفته با حقوق" + ], + "en_answers": [ + "about 2 weeks with salary" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ca-sp-45": { + "question": "درایران معمولاً چه نوع مقصدی برای تعطیلات خانوادگی انتخاب می‌شود؟", + "en_question": "What type of destination is commonly chosen for a family vacation in Iran?", + "annotations": [ + { + "answers": [ + "شمال ایران", + "شمال" + ], + "en_answers": [ + "north iran", + "north" + ], + "count": 2 + }, + { + "answers": [ + "کیش" + ], + "en_answers": [ + "kish" + ], + "count": 1 + }, + { + "answers": [ + "ساحل شمال گشور" + ], + "en_answers": [ + "north coast of the country" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Gu-ch-05": { + "question": "درایران سالمندان بیشتر از چه ورزش‌هایی خوششان می‌آید؟", + "en_question": "What sports do seniors like the most in Iran?", + "annotations": [ + { + "answers": [ + "پیاده روی" + ], + "en_answers": [ + "walking" + ], + "count": 3 + }, + { + "answers": [ + "شطرنج" + ], + "en_answers": [ + "chess" + ], + "count": 1 + } + ], + "idks": { + "ورزش نمی کنند": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-06": { + "question": "درایران مردان بیشتر به بازی کردن چه ورزش‌هایی علاقه دارند؟", + "en_question": "What sports do men like to play the most in Iran?", + "annotations": [ + { + "answers": [ + "فوتبال" + ], + "en_answers": [ + "football" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-07": { + "question": "درایران معروف‌ترین بازیکن بسکتبال چه کسی است؟", + "en_question": "Who is the most famous basketball player in Iran?", + "annotations": [ + { + "answers": [ + "صمد نیکخواه بهرامی" + ], + "en_answers": [ + "samad nikkhah bahrami" + ], + "count": 2 + }, + { + "answers": [ + "حامد حدادی" + ], + "en_answers": [ + "hamed haddadi" + ], + "count": 2 + }, + { + "answers": [ + "آیدین نیکخواه بهرامی" + ], + "en_answers": [ + "aydin nikkhah bahrami" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Gu-ch-08": { + "question": "درایران محبوب‌ترین ورزش بین کودکان چیست؟", + "en_question": "What is the most popular sports among children in Iran?", + "annotations": [ + { + "answers": [ + "فوتبال" + ], + "en_answers": [ + "football" + ], + "count": 4 + }, + { + "answers": [ + "بازی های کامپیوتری" + ], + "en_answers": [ + "computer games" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-09": { + "question": "درایران زنان بیشتر به بازی کردن چه ورزش‌هایی علاقه دارند؟", + "en_question": "What sports do women like to play the most in Iran?", + "annotations": [ + { + "answers": [ + "رقص" + ], + "en_answers": [ + "dance" + ], + "count": 1 + }, + { + "answers": [ + "ورق بازی" + ], + "en_answers": [ + "card game" + ], + "count": 1 + }, + { + "answers": [ + "پیاده روی" + ], + "en_answers": [ + "walking" + ], + "count": 1 + }, + { + "answers": [ + "بدمینتون" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "والیبال" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "پینگ پونگ" + ], + "en_answers": [ + "ping pong" + ], + "count": 1 + }, + { + "answers": [ + "دو و میدانی" + ], + "en_answers": [ + "track and field" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-11": { + "question": "درایران چه رویداد ورزشی در المپیک بیشترین مدال طلا را کسب کرده است؟", + "en_question": "What sports event has Iran won the most gold medals at the Olympics?", + "annotations": [ + { + "answers": [ + "کشتی" + ], + "en_answers": [ + "wrestling" + ], + "count": 5 + }, + { + "answers": [ + "وزنه برداری" + ], + "en_answers": [ + "weightlifting" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-15": { + "question": "درایران دانشجویان پسر در دانشگاه‌ها بیشتر به چه ورزش‌هایی علاقه دارند؟", + "en_question": "What sports do male students in university like to play the most in Iran?", + "annotations": [ + { + "answers": [ + "فوتبال", + "غوتبال" + ], + "en_answers": [ + "football" + ], + "count": 5 + }, + { + "answers": [ + "بسکتبال", + "بسكتبال" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "والیبال", + "واليبال" + ], + "en_answers": [ + "volleyball" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-16": { + "question": "درایران میانگین تعداد افراد در یک خانواده چند نفر است؟ (فقط اعداد عربی (مثلاً 12) را ارائه دهید.)", + "en_question": "How many people are there in a family on average in Iran? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 5 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-18": { + "question": "درایران معمولاً زوج‌ها چند فرزند دارند؟ (فقط اعداد عربی (مثلاً 12) را وارد کنید.)", + "en_question": "How many children do couples usually have in Iran? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2", + "۱،۲" + ], + "en_answers": [ + "2" + ], + "count": 5 + }, + { + "answers": [ + "1", + "۱،۲" + ], + "en_answers": [ + "1" + ], + "count": 2 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-31": { + "question": "در ایران مدت زمان دبستان به تعداد سال چقدر است؟ (فقط اعداد عربی (مثلاً 12) را ارائه دهید.)", + "en_question": "What is the duration of elementary school in years in Iran? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 2 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-32": { + "question": "در ایران مدت زمان آموزش اجباری به سال چقدر است؟ (فقط اعداد عربی (مثلاً 12) را وارد کنید.)", + "en_question": "What is the duration of compulsory education in years in Iran? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Gu-ch-33": { + "question": "در ایران دانش‌آموزان از چه سنی شروع به یادگیری زبان دوم می‌کنند؟ (فقط اعداد عربی (مثلاً 12) را ارائه دهید.)", + "en_question": "From which age do students start learning their second language in Iran? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 2 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 2 + }, + { + "answers": [ + "11" + ], + "en_answers": [ + "11" + ], + "count": 1 + }, + { + "answers": [ + "13" + ], + "en_answers": [ + "13" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Gu-ch-38": { + "question": "در ایران مدت زمان تحصیل کارشناسی چقدر است؟ (فقط اعداد عربی (مثلاً 12) را وارد کنید.)", + "en_question": "What is the duration of undergraduate education in Iran? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 4 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-40": { + "question": "در ایران دانش‌آموزان کوچک دبستانی چه ساعتی از مدرسه تعطیل می‌شوند؟ (به فرمت HH:MM ارائه دهید (مثلاً 18:00، 09:00).)", + "en_question": "What time do younger elementary school students finish school in Iran? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "12:00", + "15:00" + ], + "en_answers": [ + "12:00", + "15:00" + ], + "count": 3 + }, + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-41": { + "question": "در ایران دانش‌آموزان دبستانی معمولاً چند ساز موسیقی می‌نوازند؟ (فقط اعداد عربی (مثلاً 12) را وارد کنید.)", + "en_question": "How many musical instruments do elementary school students in Iran typically play? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 3 + }, + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ji-ko-02": { + "question": "مردم درایران ترجیح می‌دهند شام‌های شرکتی را چه روزی از هفته برگزار کنند؟", + "en_question": "What day of the week do people in Iran prefer to have company dinners?", + "annotations": [ + { + "answers": [ + "پنجشنبه", + "پنج شنبه شب" + ], + "en_answers": [ + "thursday", + "thursday night" + ], + "count": 3 + }, + { + "answers": [ + "جمعه" + ], + "en_answers": [ + "friday" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-03": { + "question": "کدام منطقه/شهر بیشترین تعداد شرکت‌های مالی را درایران دارد؟", + "en_question": "Which region/city has the highest number of financial companies in Iran?", + "annotations": [ + { + "answers": [ + "تهران" + ], + "en_answers": [ + "tehran" + ], + "count": 3 + }, + { + "answers": [ + "اصفهان" + ], + "en_answers": [ + "isfahan" + ], + "count": 2 + }, + { + "answers": [ + "جنوب" + ], + "en_answers": [ + "south" + ], + "count": 1 + }, + { + "answers": [ + "کرج" + ], + "en_answers": [ + "karaj" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-07": { + "question": "معروف‌ترین شرکت خصوصی درایران چیست؟", + "en_question": "What is the most famous private company in Iran?", + "annotations": [ + { + "answers": [ + "ايرانخودرو", + "ایرانسل .در حقیقت شرکت خصوصی وجود ندارد همه ی آنها به ارگان های دولتی متصل هستند." + ], + "en_answers": [ + "iran khodro", + "irancell. in fact, there are no private companies; all of them are connected to government bodies." + ], + "count": 2 + }, + { + "answers": [ + "بانک پارسیان" + ], + "en_answers": [ + "parsian bank" + ], + "count": 1 + }, + { + "answers": [ + "دیجیکالا" + ], + "en_answers": [ + "digikala" + ], + "count": 1 + }, + { + "answers": [ + "بازار" + ], + "en_answers": [ + "market" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Ji-ko-08": { + "question": "حداکثر تعداد ساعات کاری که یک نفر می‌تواند در هفته درایران کار کند چند ساعت است؟ (فقط اعداد عربی (مثلاً 12) را ارائه دهید.)", + "en_question": "What is the maximum number of hours one can work per week in Iran? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "۴۰", + "40" + ], + "en_answers": [ + "40" + ], + "count": 2 + }, + { + "answers": [ + "۹۰", + "90" + ], + "en_answers": [ + "90" + ], + "count": 1 + }, + { + "answers": [ + "۵۰", + "50" + ], + "en_answers": [ + "50" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ji-ko-09": { + "question": "مردم معمولاً در دورهمی‌های شرکتی درایران چه غذاهایی می‌خورند؟", + "en_question": "What do people typically eat during company get-together in Iran?", + "annotations": [ + { + "answers": [ + "چلوکباب", + "چلو کباب" + ], + "en_answers": [ + "rice with kebab" + ], + "count": 2 + }, + { + "answers": [ + "پلو" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "فینگر فود" + ], + "en_answers": [ + "finger food" + ], + "count": 1 + }, + { + "answers": [ + "فست فود" + ], + "en_answers": [ + "fast food" + ], + "count": 1 + }, + { + "answers": [ + "جوجه کباب" + ], + "en_answers": [ + "chicken kebab" + ], + "count": 1 + }, + { + "answers": [ + "زرشک پلو با مرغ" + ], + "en_answers": [ + "barberry rice with chicken" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-14": { + "question": "کالای صادراتی نماینده درایران چیست؟", + "en_question": "What is the representative export item of Iran?", + "annotations": [ + { + "answers": [ + "پسته" + ], + "en_answers": [ + "pistachio" + ], + "count": 3 + }, + { + "answers": [ + "زعفران" + ], + "en_answers": [ + "saffron" + ], + "count": 3 + }, + { + "answers": [ + "فرش" + ], + "en_answers": [ + "carpet" + ], + "count": 2 + }, + { + "answers": [ + "برنج" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "چای" + ], + "en_answers": [ + "tea" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-15": { + "question": "معمولاً زمان استراحت ناهار درایران چند ساعت است؟ (فقط عدد عربی تا یک رقم اعشاری (مثلاً 2، 3.5) ارائه دهید.)", + "en_question": "How long (in hours) is the typical lunch break in Iran? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + }, + { + "answers": [ + "0.2", + "1/5" + ], + "en_answers": [ + "0.2" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-16": { + "question": "درایران مادران پس از زایمان برای مدتی به منظور بهبودی در کجا اقامت دارند؟", + "en_question": "Where do mothers stay for a certain period after childbirth for recovery in Iran?", + "annotations": [ + { + "answers": [ + "بیمارستان", + "بيمارستان" + ], + "en_answers": [ + "hospital" + ], + "count": 4 + }, + { + "answers": [ + "منزل", + "در خانه", + "خانه" + ], + "en_answers": [ + "home", + "at home" + ], + "count": 3 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-19": { + "question": "درایران متداول‌ترین گلی که در روز والدین اهدا می‌شود، چیست؟", + "en_question": "What is Iran's most commonly given flower on Parents' Day?", + "annotations": [ + { + "answers": [ + "رز", + "گل رز" + ], + "en_answers": [ + "rose", + "rose flower" + ], + "count": 3 + }, + { + "answers": [ + "یاسمن" + ], + "en_answers": [ + "jasmine" + ], + "count": 1 + }, + { + "answers": [ + "شمعدانی" + ], + "en_answers": [ + "geranium" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-22": { + "question": "درایران مردم در جامعه معمولاً اولین حقوق خود را صرف چه چیزی می‌کنند؟", + "en_question": "What do people especially spend their first salary on in Iran's society?", + "annotations": [ + { + "answers": [ + "اجاره خانه" + ], + "en_answers": [ + "house rent" + ], + "count": 2 + }, + { + "answers": [ + "غذا" + ], + "en_answers": [ + "food" + ], + "count": 1 + }, + { + "answers": [ + "قسط" + ], + "en_answers": [ + "installment" + ], + "count": 1 + }, + { + "answers": [ + "لباس" + ], + "en_answers": [ + "clothes" + ], + "count": 1 + }, + { + "answers": [ + "خریدن هدیه" + ], + "en_answers": [ + "buying a gift" + ], + "count": 1 + }, + { + "answers": [ + "خرید طلای دست دوم" + ], + "en_answers": [ + "second-hand gold purchase" + ], + "count": 1 + }, + { + "answers": [ + "حرید ارز خارجی" + ], + "en_answers": [ + "foreign currency purchase" + ], + "count": 1 + }, + { + "answers": [ + "خرید سکه طلا" + ], + "en_answers": [ + "buy gold coin" + ], + "count": 1 + }, + { + "answers": [ + "خرید روزمره" + ], + "en_answers": [ + "daily shopping" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-24": { + "question": "درایران محبوب‌ترین امکانات تفریحی بین کودکان چیست؟", + "en_question": "What is the most preferred recreational facility among children in Iran?", + "annotations": [ + { + "answers": [ + "پارک" + ], + "en_answers": [ + "park" + ], + "count": 2 + }, + { + "answers": [ + "پارک آبی" + ], + "en_answers": [ + "water park" + ], + "count": 1 + }, + { + "answers": [ + "شنا" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + }, + { + "answers": [ + "پلی استیشن" + ], + "en_answers": [ + "playstation" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-25": { + "question": "درایران تعطیلات مرتبط با خانواده چیست؟", + "en_question": "What are the family-related holidays in Iran?", + "annotations": [ + { + "answers": [ + "ایام عید", + "تعطیلات نوروزی", + "تعطیلات عید", + "عيد نوروز" + ], + "en_answers": [ + "eid days", + "nowruz holidays", + "eid holidays", + "nowruz holiday" + ], + "count": 4 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-26": { + "question": "درایران مهم‌ترین نقاط عطف مرتبط با استقلال فرزندان از والدین در جامعه چیست؟", + "en_question": "What are the key milestones associated with children's independence from their parents in Iran's society?", + "annotations": [ + { + "answers": [ + "کاریابی", + "پیدا کردن شغل" + ], + "en_answers": [ + "employment", + "finding a job" + ], + "count": 2 + }, + { + "answers": [ + "خرید خانه مستقل" + ], + "en_answers": [ + "buying a detached house" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 3, + "idk": 1, + "not-applicable": 0 + } + }, + "Ji-ko-27": { + "question": "درایران هنگام دیدن والدین مسن، معمولاً چه هدیه‌ای می‌دهید؟", + "en_question": "What is the common gift you give when visiting elderly parents in Iran?", + "annotations": [ + { + "answers": [ + "شیربنی", + "شیرینی", + "شیرینی رسمی (شیرینی زبان)" + ], + "en_answers": [ + "plumbing", + "sweets", + "formal sweet (literally: zaban sweet)" + ], + "count": 3 + }, + { + "answers": [ + "گل", + "گل طبیعی" + ], + "en_answers": [ + "flower", + "natural flower" + ], + "count": 2 + }, + { + "answers": [ + "شکلات" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + }, + { + "answers": [ + "زعفران" + ], + "en_answers": [ + "saffron" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-28": { + "question": "درایران اولین روزی که مردم پس از تولد کودک جشن می‌گیرند، چه زمانی است؟", + "en_question": "When is the first day that people celebrate after a child is born in Iran?", + "annotations": [ + { + "answers": [ + "تولد یک ماهگی" + ], + "en_answers": [ + "one-month birthday" + ], + "count": 1 + }, + { + "answers": [ + "جشن دندان" + ], + "en_answers": [ + "tooth celebration" + ], + "count": 1 + }, + { + "answers": [ + "40 روزگی" + ], + "en_answers": [ + "40 days old" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 3, + "idk": 1, + "not-applicable": 0 + } + }, + "Ji-ko-29": { + "question": "درایران در جامعه، تولد چه سنی باشکوه‌ترین جشن گرفته می‌شود؟", + "en_question": "Which age's birthday is celebrated the most grandly in Iran's society?", + "annotations": [ + { + "answers": [ + "1", + "یک سالگی" + ], + "en_answers": [ + "1", + "first birthday" + ], + "count": 2 + }, + { + "answers": [ + "۱ تا۱۰" + ], + "en_answers": [ + "1 to 10" + ], + "count": 1 + }, + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 1 + }, + { + "answers": [ + "50" + ], + "en_answers": [ + "50" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ji-ko-31": { + "question": "درایران دانش‌آموزان دبیرستانی و متوسطه معمولاً کجا برای امتحانات درس می‌خوانند؟", + "en_question": "Where do middle and high school students in Iran usually study for exams?", + "annotations": [ + { + "answers": [ + "خانه" + ], + "en_answers": [ + "home" + ], + "count": 4 + }, + { + "answers": [ + "کتابخانه", + "كتابخانه" + ], + "en_answers": [ + "library" + ], + "count": 2 + }, + { + "answers": [ + "مدرسه" + ], + "en_answers": [ + "school" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-33": { + "question": "درایران دانش‌آموزان دبیرستانی معمولاً بعد از شام به کجا می‌روند؟", + "en_question": "Where do high school students in Iran usually go after dinner?", + "annotations": [ + { + "answers": [ + "پاساژ خرید" + ], + "en_answers": [ + "shopping passage" + ], + "count": 1 + }, + { + "answers": [ + "کافه" + ], + "en_answers": [ + "cafe" + ], + "count": 1 + }, + { + "answers": [ + "در خانه می‌مانند" + ], + "en_answers": [ + "they stay at home" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 3, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-34": { + "question": "درایران دانش‌آموزان دبستانی چگونه به مدرسه می‌روند؟", + "en_question": "How do elementary school students in Iran go to school?", + "annotations": [ + { + "answers": [ + "سرویس مدرسه" + ], + "en_answers": [ + "school service" + ], + "count": 4 + }, + { + "answers": [ + "با والدین" + ], + "en_answers": [ + "with parents" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-35": { + "question": "درایران شایع‌ترین شکل آموزش خصوصی چیست؟", + "en_question": "What is the most common form of private education in Iran?", + "annotations": [ + { + "answers": [ + "معلم خصوصی" + ], + "en_answers": [ + "private tutor" + ], + "count": 3 + }, + { + "answers": [ + "مدرسه ي غير انتفاعي" + ], + "en_answers": [ + "non-profit school" + ], + "count": 1 + }, + { + "answers": [ + "آموزشگاه زبان" + ], + "en_answers": [ + "language school" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-36": { + "question": "درایران دانش‌آموزان متوسطه یا دبیرستان بیشتر به آکادمی/موسسه آموزشی خصوصی کدام درس می‌روند؟", + "en_question": "Which subject’s academy/private educational institute do middle or high students most frequently attend in Iran?", + "annotations": [ + { + "answers": [ + "رياضي", + "ریاضیات", + "ریاضی", + "دروس ریاضی فیزیک" + ], + "en_answers": [ + "math", + "mathematics", + "maths" + ], + "count": 5 + }, + { + "answers": [ + "قیزیک", + "دروس ریاضی فیزیک", + "فیزیک" + ], + "en_answers": [ + "physics" + ], + "count": 2 + }, + { + "answers": [ + "زیست شناسی" + ], + "en_answers": [ + "biology" + ], + "count": 1 + }, + { + "answers": [ + "تجربي" + ], + "en_answers": [ + "experimental" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-37": { + "question": "درایران دانش‌آموزان دبیرستان و راهنمایی چه نوع لباسی به مدرسه می‌پوشند؟", + "en_question": "What type of clothing do middle and high school students wear to school in Iran?", + "annotations": [ + { + "answers": [ + "یونیفرم مدرسه", + "لباس فرم" + ], + "en_answers": [ + "school uniform", + "uniform" + ], + "count": 3 + }, + { + "answers": [ + "مانتو و مقنعه برای دختران" + ], + "en_answers": [ + "manteau and scarf for girls" + ], + "count": 1 + }, + { + "answers": [ + "پیرهن و شلوار برای پسران" + ], + "en_answers": [ + "shirt and trousers for boys" + ], + "count": 1 + }, + { + "answers": [ + "مانتو" + ], + "en_answers": [ + "coat" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-38": { + "question": "درایران کدام رشته تحصیلی برای ورود به آن دشوارترین شناخته می‌شود؟", + "en_question": "Which major is considered the most difficult to gain admission to in Iran?", + "annotations": [ + { + "answers": [ + "پزشکی" + ], + "en_answers": [ + "medical" + ], + "count": 5 + }, + { + "answers": [ + "تجربی" + ], + "en_answers": [ + "experimental" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-39": { + "question": "درایران پرطرفدارترین ساز موسیقی که دانش‌آموزان دبستانی یاد می‌گیرند، چیست؟", + "en_question": "What is the most commonly learned musical instrument by elementary school students in Iran?", + "annotations": [ + { + "answers": [ + "پيانو", + "پیانو" + ], + "en_answers": [ + "piano" + ], + "count": 2 + }, + { + "answers": [ + "فلوت" + ], + "en_answers": [ + "flute" + ], + "count": 1 + }, + { + "answers": [ + "گیتار" + ], + "en_answers": [ + "guitar" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-40": { + "question": "درایران دانش‌آموزان دبیرستانی معمولاً در زنگ تفریح مدارس چه کارهایی انجام می‌دهند؟", + "en_question": "What do high school students typically do during break time in schools in Iran?", + "annotations": [ + { + "answers": [ + "فوتبال" + ], + "en_answers": [ + "football" + ], + "count": 2 + }, + { + "answers": [ + "بازی", + "بازي" + ], + "en_answers": [ + "game" + ], + "count": 2 + }, + { + "answers": [ + "غذا", + "غذا و استراحت" + ], + "en_answers": [ + "food" + ], + "count": 1 + }, + { + "answers": [ + "استراحت", + "غذا و استراحت" + ], + "en_answers": [ + "rest" + ], + "count": 1 + }, + { + "answers": [ + "مطالعه درس ها" + ], + "en_answers": [ + "studying lessons" + ], + "count": 1 + }, + { + "answers": [ + "گفت و گو" + ], + "en_answers": [ + "conversation" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-41": { + "question": "درایران دانش‌آموزان در مدارس چه نوع کفش‌هایی به پا می‌کنند؟", + "en_question": "What kind of shoes do students wear in schools in Iran?", + "annotations": [ + { + "answers": [ + "کتانی", + "كتوني", + "ورزشی(اسنیکر)" + ], + "en_answers": [ + "sneakers", + "sports (sneaker)" + ], + "count": 4 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-42": { + "question": "درایران در آزمون ورودی دانشگاه، چه دروسی اجباری هستند؟", + "en_question": "What are the required subjects in Iran's university entrance exam?", + "annotations": [ + { + "answers": [ + "عربی", + "فارسي، انگليسي، عربي، ديني", + "ریاضی" + ], + "en_answers": [ + "arabic", + "mathematics" + ], + "count": 3 + }, + { + "answers": [ + "فارسی", + "فارسي، انگليسي، عربي، ديني", + "ادبیات فارسی" + ], + "en_answers": [ + "persian", + "persian literature" + ], + "count": 2 + }, + { + "answers": [ + "انگلیسی", + "فارسي، انگليسي، عربي، ديني" + ], + "en_answers": [ + "english" + ], + "count": 2 + }, + { + "answers": [ + "دینی", + "فارسي، انگليسي، عربي، ديني" + ], + "en_answers": [ + "religious studies" + ], + "count": 1 + }, + { + "answers": [ + "فیزیک" + ], + "en_answers": [ + "physics" + ], + "count": 1 + }, + { + "answers": [ + "زیست" + ], + "en_answers": [ + "biology" + ], + "count": 1 + }, + { + "answers": [ + "شیمی" + ], + "en_answers": [ + "chemistry" + ], + "count": 1 + } + ], + "idks": { + "بستگی به رشته تحصیلی دبیرستان دارد.": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-44": { + "question": "درایران کدام منطقه (در درون یک شهر) بیشترین شور و شوق علمی را دارد؟", + "en_question": "Which region (within a city) in Iran has the highest academic fervor?", + "annotations": [ + { + "answers": [ + "انقلاب" + ], + "en_answers": [ + "revolution" + ], + "count": 1 + }, + { + "answers": [ + "بالاشهر" + ], + "en_answers": [ + "upper cities" + ], + "count": 1 + }, + { + "answers": [ + "محله نزدیک دانشگاه ها" + ], + "en_answers": [ + "neighborhood near universities" + ], + "count": 1 + }, + { + "answers": [ + "دانشگاه" + ], + "en_answers": [ + "university" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-45": { + "question": "درایران مردم در جشن‌های دانشگاهی بیشتر منتظر چه چیزی هستند؟", + "en_question": "What do people look forward to the most at university festivals in Iran?", + "annotations": [ + { + "answers": [ + "موسیقی" + ], + "en_answers": [ + "music" + ], + "count": 1 + }, + { + "answers": [ + "اعلام نفرات برتر" + ], + "en_answers": [ + "announcement of top individuals" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "سوال نامفهوم است ": 1, + "no-answer": 1, + "idk": 0 + } + }, + "Jo-sp-01": { + "question": "درایران دومین ورزش محبوب چیست؟", + "en_question": "What is the second most popular sport in Iran?", + "annotations": [ + { + "answers": [ + "والیبال", + "واليبال" + ], + "en_answers": [ + "volleyball" + ], + "count": 4 + }, + { + "answers": [ + "کشتی", + "كشتي" + ], + "en_answers": [ + "wrestling" + ], + "count": 3 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-02": { + "question": "درایران محبوب‌ترین ورزشی که بدون توپ انجام می‌شود، چیست؟", + "en_question": "What is the most popular sport played without a ball in Iran?", + "annotations": [ + { + "answers": [ + "کشتی" + ], + "en_answers": [ + "wrestling" + ], + "count": 3 + }, + { + "answers": [ + "بدنسازی", + "بدنسازي" + ], + "en_answers": [ + "bodybuilding" + ], + "count": 2 + }, + { + "answers": [ + "وزنه برداری" + ], + "en_answers": [ + "weightlifting" + ], + "count": 1 + }, + { + "answers": [ + "زو" + ], + "en_answers": [ + "zo" + ], + "count": 1 + }, + { + "answers": [ + "دو" + ], + "en_answers": [ + "two" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jo-sp-09": { + "question": "درایران چه ورزش‌هایی بیشتر با طبقه پولداران ارتباط دارند؟", + "en_question": "What sports are most associated with the upper class in Iran?", + "annotations": [ + { + "answers": [ + "تنیس" + ], + "en_answers": [ + "tennis" + ], + "count": 5 + }, + { + "answers": [ + "اسکی" + ], + "en_answers": [ + "skiing" + ], + "count": 2 + }, + { + "answers": [ + "سوارکاری" + ], + "en_answers": [ + "horseback riding" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-13": { + "question": "درایران محبوب‌ترین ورزش آبی چیست؟", + "en_question": "What is the most popular water sport in Iran?", + "annotations": [ + { + "answers": [ + "شنا" + ], + "en_answers": [ + "swimming" + ], + "count": 5 + }, + { + "answers": [ + "واترپلو" + ], + "en_answers": [ + "water polo" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-14": { + "question": "درایران محبوب‌ترین ورزش ذهنی چیست؟", + "en_question": "What is the most popular mental sport in Iran?", + "annotations": [ + { + "answers": [ + "شطرنج" + ], + "en_answers": [ + "chess" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-18": { + "question": "یک کارگر استاندارد درایران سالانه چند روز تعطیلی دارد؟ (فقط اعداد عربی (مثلاً 12) را ارائه دهید.)", + "en_question": "How many holiday days per year does a standard worker gets in Iran? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "80" + ], + "en_answers": [ + "80" + ], + "count": 1 + }, + { + "answers": [ + "26" + ], + "en_answers": [ + "26" + ], + "count": 1 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + }, + { + "answers": [ + "۱۴", + "14" + ], + "en_answers": [ + "14" + ], + "count": 1 + }, + { + "answers": [ + "۷۰", + "70" + ], + "en_answers": [ + "70" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-19": { + "question": "کدام منطقه درایران به طور سنتی با کشاورزی مرتبط بوده است؟", + "en_question": "What region in Iran has been traditionally associated with agriculture?", + "annotations": [ + { + "answers": [ + "شمال", + "شمال ایران" + ], + "en_answers": [ + "north", + "north iran" + ], + "count": 3 + }, + { + "answers": [ + "خوزستان" + ], + "en_answers": [ + "khuzestan" + ], + "count": 1 + }, + { + "answers": [ + "کردستان" + ], + "en_answers": [ + "kurdistan" + ], + "count": 1 + }, + { + "answers": [ + "مناطق غربی" + ], + "en_answers": [ + "western regions" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-21": { + "question": "درایران مردم معمولاً چه ساعتی برای ناهار از کار خارج می‌شوند؟ (با فرمت HH:MM ارائه دهید، مثلاً 18:00، 09:00).", + "en_question": "What time, if any, do people usually leave work for lunch in Iran? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 3 + }, + { + "answers": [ + "12:00" + ], + "en_answers": [ + "12:00" + ], + "count": 2 + }, + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 1 + }, + { + "answers": [ + "13:30" + ], + "en_answers": [ + "13:30" + ], + "count": 1 + }, + { + "answers": [ + "14:30" + ], + "en_answers": [ + "14:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-31": { + "question": "درایران دانش‌آموزان دبیرستانی معمولاً چه ساعتی از مدرسه خارج می‌شوند؟ (به فرمت HH:MM ارائه دهید (مثلاً 18:00، 09:00).)", + "en_question": "What time do high school students tend to leave school in Iran? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "14:30" + ], + "en_answers": [ + "14:30" + ], + "count": 2 + }, + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 1 + }, + { + "answers": [ + "15:00" + ], + "en_answers": [ + "15:00" + ], + "count": 1 + }, + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 1 + }, + { + "answers": [ + "12:30" + ], + "en_answers": [ + "12:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-32": { + "question": "درایران دانش‌آموزان دبستانی معمولاً چه ورزشی را در مدرسه تمرین می‌کنند؟", + "en_question": "What sport do elementary school students tend to practice at school in Iran?", + "annotations": [ + { + "answers": [ + "فوتبال" + ], + "en_answers": [ + "football" + ], + "count": 4 + }, + { + "answers": [ + "واليبال", + "والیبال" + ], + "en_answers": [ + "volleyball" + ], + "count": 2 + }, + { + "answers": [ + "پينگ پنگ" + ], + "en_answers": [ + "ping pong" + ], + "count": 1 + }, + { + "answers": [ + "بسكتبال" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-36": { + "question": "درایران تعطیلات تابستانی مدارس ابتدایی چند هفته است؟ (فقط به اعداد عربی (مثلاً 7، 8) پاسخ دهید.)", + "en_question": "How long (in weeks) are summer vacations at elementary schools in Iran? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 4 + }, + { + "answers": [ + "16" + ], + "en_answers": [ + "16" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-37": { + "question": "درایران تعطیلات تابستانی دانشگاه‌ها چند هفته است؟ (فقط به اعداد عربی (مثلاً 7، 8) پاسخ دهید.)", + "en_question": "How long (in weeks) are summer vacations at universities in Iran? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 2 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 2 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-39": { + "question": "درایران تحصیلات ابتدایی از چه سنی شروع می‌شود؟ (فقط به اعداد عربی (مثلاً 7، 8) پاسخ دهید.)", + "en_question": "At what age does elementary education begin in Iran? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 3 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-43": { + "question": "درایران به جز زبان رسمی، چند زبان دیگر در آموزش ابتدایی مطالعه می‌شود؟ (فقط به اعداد عربی (مثلاً 7، 8) پاسخ دهید.)", + "en_question": "How many languages are studied in elementary education besides Iran's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + }, + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-01": { + "question": "در ایران مردم معمولاً از چه وسایل غذاخوری استفاده می‌کنند؟", + "en_question": "What eating utensils do people commonly used in Iran?", + "annotations": [ + { + "answers": [ + "قاشق", + "قاشق و چنگال و چاقو" + ], + "en_answers": [ + "spoon" + ], + "count": 4 + }, + { + "answers": [ + "چنگال", + "قاشق و چنگال و چاقو" + ], + "en_answers": [ + "fork" + ], + "count": 3 + }, + { + "answers": [ + "پشقاب", + "بشقاب" + ], + "en_answers": [ + "plate" + ], + "count": 2 + }, + { + "answers": [ + "چاقو", + "قاشق و چنگال و چاقو" + ], + "en_answers": [ + "knife" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-04": { + "question": "در ایران کدام نوشیدنی غیرالکلی مورد پسند مردم است؟", + "en_question": "What soft drink do people in Iran like to have?", + "annotations": [ + { + "answers": [ + "دلستر" + ], + "en_answers": [ + "soft drink" + ], + "count": 2 + }, + { + "answers": [ + "نوشابه کوکاکولا", + "نوشابه کوکامولا", + "کوکاکولا" + ], + "en_answers": [ + "coca cola soda", + "coca cola", + "coca-cola" + ], + "count": 2 + }, + { + "answers": [ + "دوغ" + ], + "en_answers": [ + "doogh" + ], + "count": 1 + }, + { + "answers": [ + "فانتا" + ], + "en_answers": [ + "fanta" + ], + "count": 1 + }, + { + "answers": [ + "شربت خاکشیر" + ], + "en_answers": [ + "chia seed syrup" + ], + "count": 1 + }, + { + "answers": [ + "آبمیوه" + ], + "en_answers": [ + "juice" + ], + "count": 1 + }, + { + "answers": [ + "چای نبات" + ], + "en_answers": [ + "rock candy tea" + ], + "count": 1 + }, + { + "answers": [ + "انواع قهوه" + ], + "en_answers": [ + "types of coffee" + ], + "count": 1 + }, + { + "answers": [ + "نوشابه سیاه" + ], + "en_answers": [ + "black soda" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-06": { + "question": "محبوب‌ترین نوع الکل سنتی درایران چیست؟", + "en_question": "What is the most popular traditional alcohol in Iran?", + "annotations": [ + { + "answers": [ + "شراب قرمز", + "شراب سرخ" + ], + "en_answers": [ + "red wine" + ], + "count": 2 + }, + { + "answers": [ + "عرق سگي" + ], + "en_answers": [ + "vodka" + ], + "count": 1 + }, + { + "answers": [ + "عرق" + ], + "en_answers": [ + "vodka" + ], + "count": 1 + }, + { + "answers": [ + "شراب شیراز" + ], + "en_answers": [ + "shiraz wine" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Jod-ch-07": { + "question": "مردم درایران به طور متوسط چند ساعت (با اعداد عربی و تا یک رقم اعشار مثلاً 2، 3.5) برای شام خوردن در رستوران وقت می‌گذارند؟", + "en_question": "How long (in hours) on average does it take for people in Iran to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-09": { + "question": "مردم معمولاً چه ساعتی درایران شام می‌خورند؟ (با فرمت HH:MM ارائه دهید، مثلاً 18:00، 09:00).", + "en_question": "What time do people usually have dinner in Iran? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "20:00" + ], + "en_answers": [ + "20:00" + ], + "count": 3 + }, + { + "answers": [ + "21:00" + ], + "en_answers": [ + "21:00" + ], + "count": 3 + }, + { + "answers": [ + "19:00" + ], + "en_answers": [ + "19:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-12": { + "question": "مردم درایران چه نوع سوپی دوست دارند بخورند؟", + "en_question": "What kind of soup do people from Iran like to have?", + "annotations": [ + { + "answers": [ + "سوپ جو" + ], + "en_answers": [ + "barley soup" + ], + "count": 2 + }, + { + "answers": [ + "اش", + "رشته" + ], + "en_answers": [ + "his/her/its", + "field of study/major" + ], + "count": 2 + }, + { + "answers": [ + "سوپ رشته" + ], + "en_answers": [ + "noodle soup" + ], + "count": 1 + }, + { + "answers": [ + "سوپ قارچ" + ], + "en_answers": [ + "mushroom soup" + ], + "count": 1 + }, + { + "answers": [ + "سوپ گوجه فرنگی" + ], + "en_answers": [ + "tomato soup" + ], + "count": 1 + }, + { + "answers": [ + "جو" + ], + "en_answers": [ + "porridge" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-13": { + "question": "مردم درایران چه غذاهای خیابانی دوست دارند بخورند؟", + "en_question": "What street food do people from Iran like to eat?", + "annotations": [ + { + "answers": [ + "فلافل" + ], + "en_answers": [ + "falafel" + ], + "count": 2 + }, + { + "answers": [ + "سمبوسه" + ], + "en_answers": [ + "samosa" + ], + "count": 1 + }, + { + "answers": [ + "پیراشکی" + ], + "en_answers": [ + "pastry" + ], + "count": 1 + }, + { + "answers": [ + "ساندویچ کباب" + ], + "en_answers": [ + "kebab sandwich" + ], + "count": 1 + }, + { + "answers": [ + "فست فود" + ], + "en_answers": [ + "fast food" + ], + "count": 1 + }, + { + "answers": [ + "ساندویچ سوسیس" + ], + "en_answers": [ + "sausage sandwich" + ], + "count": 1 + }, + { + "answers": [ + "باقالی" + ], + "en_answers": [ + "broad beans" + ], + "count": 1 + }, + { + "answers": [ + "بندری" + ], + "en_answers": [ + "bandari" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-15": { + "question": "مردم درایران چه نوع غذاهای دریایی دوست دارند بخورند؟", + "en_question": "What kind of seafood do people from Iran like to eat?", + "annotations": [ + { + "answers": [ + "ماهی", + "ماهي" + ], + "en_answers": [ + "fish" + ], + "count": 3 + }, + { + "answers": [ + "سبزی پلو با ماهی" + ], + "en_answers": [ + "herb rice with fish" + ], + "count": 1 + }, + { + "answers": [ + "ماهی سفید" + ], + "en_answers": [ + "white fish" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-16": { + "question": "درایران بزرگترین جشن چیست؟", + "en_question": "What is the biggest festival in Iran?", + "annotations": [ + { + "answers": [ + "نوروز", + "جشن سال نو ایرانی" + ], + "en_answers": [ + "nowruz", + "iranian new year celebration" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-28": { + "question": "متداول‌ترین وسیله حمل و نقل عمومی که مردم هنگام سفر بین شهرها درایران استفاده می‌کنند، چیست؟", + "en_question": "What is the most commonly used public transport by people when travelling between cites in Iran?", + "annotations": [ + { + "answers": [ + "اتوبوس" + ], + "en_answers": [ + "bus" + ], + "count": 3 + }, + { + "answers": [ + "قطار" + ], + "en_answers": [ + "train" + ], + "count": 3 + }, + { + "answers": [ + "ماشين", + "ماشین" + ], + "en_answers": [ + "car" + ], + "count": 2 + }, + { + "answers": [ + "ماشین شخصی" + ], + "en_answers": [ + "personal car" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-30": { + "question": "درایران تزئینات یا نمادهای خاص مرتبط با بزرگترین جشن چیست؟", + "en_question": "What are the specific decorations or symbols associated with the most biggest festival in Iran?", + "annotations": [ + { + "answers": [ + "هفت سین", + "هفت سین برای نوروز" + ], + "en_answers": [ + "haft-seen", + "haft-seen for nowruz" + ], + "count": 3 + }, + { + "answers": [ + "انار شب یلدا" + ], + "en_answers": [ + "yalda night pomegranate" + ], + "count": 1 + }, + { + "answers": [ + "ريسه" + ], + "en_answers": [ + "string" + ], + "count": 1 + }, + { + "answers": [ + "چراغ" + ], + "en_answers": [ + "lamp" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Jod-ch-37": { + "question": "درایران زنان بیشتر دوست دارند چه ورزش‌هایی را تماشا کنند؟", + "en_question": "What sports do women like to watch the most in Iran?", + "annotations": [ + { + "answers": [ + "فوتبال" + ], + "en_answers": [ + "football" + ], + "count": 4 + }, + { + "answers": [ + "والیبال" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-38": { + "question": "درایران مردان بیشتر دوست دارند چه ورزش‌هایی را تماشا کنند؟", + "en_question": "What sports do men like to watch the most in Iran?", + "annotations": [ + { + "answers": [ + "فوتبال" + ], + "en_answers": [ + "football" + ], + "count": 5 + }, + { + "answers": [ + "والیبال", + "واليبال" + ], + "en_answers": [ + "volleyball" + ], + "count": 2 + }, + { + "answers": [ + "كشتي" + ], + "en_answers": [ + "wrestling" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-41": { + "question": "در ایران فعالیت تفریحی معمولی که خانم‌ها در دهه بیست سالگی زندگی شان انجام میدهند چیست؟", + "en_question": "What is the common leisure activity that females in their 20s in Iran engage in?", + "annotations": [ + { + "answers": [ + "ورزش" + ], + "en_answers": [ + "sport" + ], + "count": 2 + }, + { + "answers": [ + "کافه", + "کافه رفتن", + "رستوران و کافه رفتن" + ], + "en_answers": [ + "cafe" + ], + "count": 2 + }, + { + "answers": [ + "مرکز خرید", + "مراکزخرید", + "قدم زدن در خیابان و مراکزخرید" + ], + "en_answers": [ + "shopping center" + ], + "count": 2 + }, + { + "answers": [ + "موسیقی" + ], + "en_answers": [ + "music" + ], + "count": 1 + }, + { + "answers": [ + "رستوران", + "رستوران و کافه رفتن" + ], + "en_answers": [ + "going to restaurants and cafes" + ], + "count": 1 + }, + { + "answers": [ + "قدم زدن در خیابان", + "قدم زدن در خیابان و مراکزخرید" + ], + "en_answers": [ + "walking in the street and shopping centers" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-42": { + "question": "در ایران فعالیت تفریحی معمولی که مردان در دهه بیست سالگی زندگی شان انجام میدهند چیست؟", + "en_question": "What is the common leisure activity that males in their 20s in Iran engage in?", + "annotations": [ + { + "answers": [ + "چایخانه" + ], + "en_answers": [ + "teahouse" + ], + "count": 1 + }, + { + "answers": [ + "فوتبال تماشا كردن" + ], + "en_answers": [ + "watching football" + ], + "count": 1 + }, + { + "answers": [ + "گردش با دوستان" + ], + "en_answers": [ + "hanging out with friends" + ], + "count": 1 + }, + { + "answers": [ + "سفر" + ], + "en_answers": [ + "travel" + ], + "count": 1 + }, + { + "answers": [ + "مهمانی" + ], + "en_answers": [ + "party" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-46": { + "question": "مردم معمولاً چند ساعت (به ساعت) پس از ناهار در یک روز کاری درایران استراحت می‌کنند؟ (فقط اعداد عربی تا یک رقم اعشار (مثلاً 2، 3.5) ارائه دهید.)", + "en_question": "How long (in hours) do people usually take a break after lunch on a weekday in Iran? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "1.5", + "۱ تا ۱/۵" + ], + "en_answers": [ + "1.5" + ], + "count": 2 + }, + { + "answers": [ + "1", + "۱ تا ۱/۵" + ], + "en_answers": [ + "1" + ], + "count": 1 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-48": { + "question": "مردم درایران در طول روزهای کاری برای ناهار چه چیزی می‌خورند؟", + "en_question": "What do people eat for lunch during the working days in Iran?", + "annotations": [ + { + "answers": [ + "برنج و خورشت", + "پلو خورشت", + "پلو با هر خورشتی", + "پلو خورش" + ], + "en_answers": [ + "rice and stew", + "rice stew", + "rice with any stew" + ], + "count": 4 + }, + { + "answers": [ + "جوجه کباب", + "جوجه كباب" + ], + "en_answers": [ + "chicken kebab" + ], + "count": 2 + }, + { + "answers": [ + "کباب", + "كباب" + ], + "en_answers": [ + "kebab" + ], + "count": 2 + }, + { + "answers": [ + "ساندویچ" + ], + "en_answers": [ + "sandwich" + ], + "count": 1 + }, + { + "answers": [ + "پلو خورشت قرمه سبزی" + ], + "en_answers": [ + "rice with green herb stew" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-50": { + "question": "در ایران میانگین زمان سفر به محل کار (به دقیقه) برای مردم چقدر است؟ (فقط اعداد عربی (مثلاً 1) را وارد کنید.)", + "en_question": "What is the average commute time (in minutes) for people in Iran? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "45" + ], + "en_answers": [ + "45" + ], + "count": 2 + }, + { + "answers": [ + "120", + "٢ ساعت" + ], + "en_answers": [ + "120" + ], + "count": 1 + }, + { + "answers": [ + "60", + "1" + ], + "en_answers": [ + "60" + ], + "count": 1 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-51": { + "question": "متداول‌ترین وسیله نقلیه‌ای که مردم برای رفتن به سر کار درایران استفاده می‌کنند چیست؟", + "en_question": "What is the most common transportation that people take to get to work in Iran?", + "annotations": [ + { + "answers": [ + "ماشین", + "ماشین سواری" + ], + "en_answers": [ + "car" + ], + "count": 3 + }, + { + "answers": [ + "ماشین شخصی" + ], + "en_answers": [ + "personal car" + ], + "count": 1 + }, + { + "answers": [ + "اسنپ" + ], + "en_answers": [ + "snapp" + ], + "count": 1 + }, + { + "answers": [ + "مترو" + ], + "en_answers": [ + "metro" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-54": { + "question": "مرخصی عروسی درایران چند روز است؟ (فقط عدد عربی (مثلا 12) ارائه دهید.)", + "en_question": "How long (in days) is the marriage leave in Iran? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 2 + } + ], + "idks": { + "idk": 3, + "not-applicable": 2, + "no-answer": 1 + } + }, + "Jod-ch-56": { + "question": "سن بازنشستگی معمول برای زنان درایران چند سال است؟ (فقط عدد عربی (مثلا 12) بنویسید.)", + "en_question": "What is the typical retirement age for women in Iran? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 2 + }, + { + "answers": [ + "50" + ], + "en_answers": [ + "50" + ], + "count": 1 + }, + { + "answers": [ + "55" + ], + "en_answers": [ + "55" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Jod-ch-57": { + "question": "سن بازنشستگی معمول برای مردان درایران چند سال است؟ (فقط اعداد عربی (مثلاً 12) را ارائه دهید.)", + "en_question": "What is the typical retirement age for men in Iran? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 4 + }, + { + "answers": [ + "65" + ], + "en_answers": [ + "65" + ], + "count": 2 + }, + { + "answers": [ + "55" + ], + "en_answers": [ + "55" + ], + "count": 1 + }, + { + "answers": [ + "70" + ], + "en_answers": [ + "70" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-58": { + "question": "کدام حرفه درایران بیشترین احترام را دارد؟", + "en_question": "Which profession is the most respected in Iran?", + "annotations": [ + { + "answers": [ + "پزشکی", + "پزشک" + ], + "en_answers": [ + "medical", + "doctor" + ], + "count": 4 + }, + { + "answers": [ + "نانوایی" + ], + "en_answers": [ + "bakery" + ], + "count": 1 + }, + { + "answers": [ + "فوتبال" + ], + "en_answers": [ + "football" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-60": { + "question": "مدت زمان (به ساعت) یک روز کاری معمولی درایران چقدر است؟ (فقط اعداد عربی (0 تا 24) را ارائه دهید.)", + "en_question": "What is the duration (in hours) of a typical workday in Iran? (Provide Arabic numerals (0~24) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 4 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-61": { + "question": "کدام شغل در میان زنان درایران بیشتر مورد ترجیح است؟", + "en_question": "Which occupation is most preferred among females in Iran?", + "annotations": [ + { + "answers": [ + "خانه داری" + ], + "en_answers": [ + "housekeeping" + ], + "count": 2 + }, + { + "answers": [ + "كارمند", + "پزشكي، كارمند", + "کارمندی" + ], + "en_answers": [ + "employment" + ], + "count": 2 + }, + { + "answers": [ + "پزشكي", + "پزشكي، كارمند" + ], + "en_answers": [ + "medical, employee" + ], + "count": 1 + }, + { + "answers": [ + "پرستاری" + ], + "en_answers": [ + "nursing" + ], + "count": 1 + }, + { + "answers": [ + "معلم" + ], + "en_answers": [ + "teacher" + ], + "count": 1 + }, + { + "answers": [ + "آرایشگاه" + ], + "en_answers": [ + "barbershop" + ], + "count": 1 + }, + { + "answers": [ + "لباس فروشی" + ], + "en_answers": [ + "clothing store" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-62": { + "question": "کدام شغل در میان مردان درایران بیشتر مورد ترجیح قرار می‌گیرد؟", + "en_question": "Which occupation is most preferred among males in Iran?", + "annotations": [ + { + "answers": [ + "دکتر" + ], + "en_answers": [ + "doctor" + ], + "count": 1 + }, + { + "answers": [ + "خرید و فروش" + ], + "en_answers": [ + "buying and selling" + ], + "count": 1 + }, + { + "answers": [ + "پزشکی" + ], + "en_answers": [ + "medical" + ], + "count": 1 + }, + { + "answers": [ + "مهندسی" + ], + "en_answers": [ + "engineering" + ], + "count": 1 + }, + { + "answers": [ + "مشاغل دولتی" + ], + "en_answers": [ + "government jobs" + ], + "count": 1 + }, + { + "answers": [ + "فروشندگی" + ], + "en_answers": [ + "salesmanship" + ], + "count": 1 + }, + { + "answers": [ + "رانندگی" + ], + "en_answers": [ + "driving" + ], + "count": 1 + }, + { + "answers": [ + "كار شركتي" + ], + "en_answers": [ + "corporate work" + ], + "count": 1 + }, + { + "answers": [ + "راننده تاكسي" + ], + "en_answers": [ + "taxi driver" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-17": { + "question": "درایران به طور متوسط، دانش‌آموزان تا چه مرحله‌ای از تحصیلات خود را ادامه می‌دهند؟ (مثلاً دبستان، دبیرستان)", + "en_question": "On average, how far do students typically pursue their education in Iran? (e.g., elementary, high school)", + "annotations": [ + { + "answers": [ + "دانشگاه" + ], + "en_answers": [ + "university" + ], + "count": 2 + }, + { + "answers": [ + "دبیرستان" + ], + "en_answers": [ + "high school" + ], + "count": 2 + }, + { + "answers": [ + "دیپلم" + ], + "en_answers": [ + "diploma" + ], + "count": 1 + }, + { + "answers": [ + "ليسانس" + ], + "en_answers": [ + "bachelor's degree" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-24": { + "question": "درایران به جز انگلیسی، چه زبان‌هایی در مدارس تدریس داده می‌شود؟", + "en_question": "What language is taught in schools in Iran besides English?", + "annotations": [ + { + "answers": [ + "عربی" + ], + "en_answers": [ + "arabic" + ], + "count": 4 + }, + { + "answers": [ + "انگلیسی" + ], + "en_answers": [ + "english" + ], + "count": 1 + }, + { + "answers": [ + "فرانسه" + ], + "en_answers": [ + "france" + ], + "count": 1 + }, + { + "answers": [ + "آلمانی" + ], + "en_answers": [ + "german" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-30": { + "question": "درایران مدارس چه روزهایی از هفته تعطیل هستند؟", + "en_question": "What days of the week are schools closed in Iran?", + "annotations": [ + { + "answers": [ + "جمعه", + "جمعه", + "جمعه و پنجشنبه", + "جمعه", + "پنج شنبه و جمعه", + "پنجشنبه و جمعه", + "پنجشنبه جمعه" + ], + "en_answers": [ + "friday" + ], + "count": 5 + }, + { + "answers": [ + "پنجشنبه", + "جمعه و پنجشنبه", + "پنج شنبه", + "پنج شنبه و جمعه", + "پنجشنبه و جمعه", + "پنجشنبه جمعه" + ], + "en_answers": [ + "thursday" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-32": { + "question": "معمولاً میزبان‌ها درایران چه غذاهایی برای مهمان‌ها تهیه می‌کنند؟", + "en_question": "What food do the hosts usually prepare for the guests in Iran?", + "annotations": [ + { + "answers": [ + "كباب و خورشت" + ], + "en_answers": [ + "kebab and stew" + ], + "count": 1 + }, + { + "answers": [ + "پلو و خورشت" + ], + "en_answers": [ + "rice and stew" + ], + "count": 1 + }, + { + "answers": [ + "مرغ" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "کباب" + ], + "en_answers": [ + "kebab" + ], + "count": 1 + }, + { + "answers": [ + "غذاهای خورشتی" + ], + "en_answers": [ + "stew dishes" + ], + "count": 1 + }, + { + "answers": [ + "زرشک پلو با مرغ" + ], + "en_answers": [ + "barberry rice with chicken" + ], + "count": 1 + }, + { + "answers": [ + "قرمه سبزی" + ], + "en_answers": [ + "ghormeh sabzi" + ], + "count": 1 + }, + { + "answers": [ + "فسنجان" + ], + "en_answers": [ + "fesenjan" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-34": { + "question": "معمولاً درایران چه نوشیدنی‌ای برای صبحانه می‌نوشند؟", + "en_question": "What is the usual drink in the breakfast in Iran?", + "annotations": [ + { + "answers": [ + "چای", + "چاي" + ], + "en_answers": [ + "tea" + ], + "count": 5 + }, + { + "answers": [ + "قهوه" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + }, + { + "answers": [ + "شیر" + ], + "en_answers": [ + "lion" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-36": { + "question": "به جز غذاهای بومی درایران، غذای کدام کشور در ایران محبوب‌تر است؟", + "en_question": "Except the food original from Iran, which country's food is more popular in Iran?", + "annotations": [ + { + "answers": [ + "ایتالیایی", + "ایتالیا", + "ايتاليا" + ], + "en_answers": [ + "italian", + "italy" + ], + "count": 4 + }, + { + "answers": [ + "ترکیه ای", + "تركيه" + ], + "en_answers": [ + "turkish", + "turkey" + ], + "count": 2 + }, + { + "answers": [ + "عربی" + ], + "en_answers": [ + "arabic" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-39": { + "question": "معمولاً چه غذاهایی برای پیک‌نیک خانوادگی درایران تهیه می‌شود؟", + "en_question": "What food is usually prepared for a family picnic in Iran?", + "annotations": [ + { + "answers": [ + "کباب" + ], + "en_answers": [ + "kebab" + ], + "count": 2 + }, + { + "answers": [ + "کتلت" + ], + "en_answers": [ + "cutlet" + ], + "count": 2 + }, + { + "answers": [ + "الویه", + "سالاد الویه" + ], + "en_answers": [ + "olivier salad" + ], + "count": 2 + }, + { + "answers": [ + "ساندويچ" + ], + "en_answers": [ + "sandwich" + ], + "count": 1 + }, + { + "answers": [ + "جوجه", + "جوج" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "ساندویچ کالباس" + ], + "en_answers": [ + "sausage sandwich" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-40": { + "question": "کدام غذا درایران از نظر بقیه جهان نفرت‌انگیز تلقی می‌شود؟", + "en_question": "Which food from Iran is considered disgusting by the rest of the world?", + "annotations": [ + { + "answers": [ + "کله پاچه", + "کله و پاچه" + ], + "en_answers": [ + "head and hoof stew", + "head and trotters" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ki-pe-43": { + "question": "نام نان محبوب درایران چیست؟", + "en_question": "What is the name of the popular bread in Iran?", + "annotations": [ + { + "answers": [ + "سنگک" + ], + "en_answers": [ + "sangak" + ], + "count": 5 + }, + { + "answers": [ + "بربری" + ], + "en_answers": [ + "barbari (a type of persian bread)" + ], + "count": 5 + }, + { + "answers": [ + "تافتون" + ], + "en_answers": [ + "taftoon" + ], + "count": 2 + }, + { + "answers": [ + "لواش" + ], + "en_answers": [ + "lavash" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-51": { + "question": "ساعت چند ادارات دولتی درایران تعطیل می‌شوند؟(با فرمت HH:MM ارائه دهید، مثلاً 18:00، 09:00).", + "en_question": "What time of day are government offices closed in Iran? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 2 + }, + { + "answers": [ + "16:00", + "04:00" + ], + "en_answers": [ + "16:00" + ], + "count": 2 + }, + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-53": { + "question": "ساعت شروع کار معمول دفاتر دولتی درایران چه زمانی است؟ (با فرمت HH:MM ارائه دهید، مثلاً 18:00، 09:00).", + "en_question": "What is the normal start time of government offices in Iran? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "07:00" + ], + "en_answers": [ + "07:00" + ], + "count": 3 + }, + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 2 + }, + { + "answers": [ + "06:00" + ], + "en_answers": [ + "06:00" + ], + "count": 1 + }, + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 1 + }, + { + "answers": [ + "08:30" + ], + "en_answers": [ + "08:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-01": { + "question": "درایران کدام تعطیلات ملی طولانی‌ترین مدت زمان را دارد؟", + "en_question": "What national holiday has the longest duration in Iran?", + "annotations": [ + { + "answers": [ + "نوروز", + "عید نوروز", + "عید", + "تعطیلات سال نو ایرانی" + ], + "en_answers": [ + "nowruz", + "eid", + "iranian new year holidays" + ], + "count": 4 + }, + { + "answers": [ + "عید فطر" + ], + "en_answers": [ + "eid al-fitr" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-02": { + "question": "فعالیت‌های معمولی که مردم درایران برای جشن گرفتن روز استقلال انجام می‌دهند چیست؟", + "en_question": "What are the common activities people from Iran do to celebrate Independence day?", + "annotations": [], + "idks": { + "not-applicable": 4, + "idk": 1, + "no-answer": 1 + } + }, + "Kik-in-04": { + "question": "وقتی یکی از اعضای خانواده درایران فوت می‌کند، چه چیزی جلوی خانه نصب می‌شود؟", + "en_question": "What is installed in front of the house when a family member dies in Iran?", + "annotations": [ + { + "answers": [ + "پارچه سیاه", + "پارچه مشکی", + "بنر مشکی" + ], + "en_answers": [ + "black fabric", + "black banner" + ], + "count": 3 + }, + { + "answers": [ + "عکس مرحوم" + ], + "en_answers": [ + "photo of the deceased" + ], + "count": 1 + }, + { + "answers": [ + "پارچه تسلیت سیاه" + ], + "en_answers": [ + "black condolence fabric" + ], + "count": 1 + }, + { + "answers": [ + "آگهی فوت" + ], + "en_answers": [ + "death notice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-05": { + "question": "مراسم جشن بارداری یا مراسم مربوط به آن معمولاً چه زمانی درایران برگزار می‌شود؟", + "en_question": "When is a pregnancy celebration or ceremony usually held in Iran?", + "annotations": [ + { + "answers": [ + "کمی پیش از تولد" + ], + "en_answers": [ + "shortly before birth" + ], + "count": 1 + }, + { + "answers": [ + "تعیین جنسیت" + ], + "en_answers": [ + "gender determination" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "not-applicable": 1, + "idk": 0 + } + }, + "Kik-in-06": { + "question": "چه مراسمی معمولاً قبل از عروسی درایران برگزار می‌شود؟", + "en_question": "What event is usually held before a wedding in Iran?", + "annotations": [ + { + "answers": [ + "عقد" + ], + "en_answers": [ + "contract" + ], + "count": 3 + }, + { + "answers": [ + "نامزدی" + ], + "en_answers": [ + "engagement" + ], + "count": 2 + }, + { + "answers": [ + "بله برون" + ], + "en_answers": [ + "bale broon" + ], + "count": 2 + }, + { + "answers": [ + "حنابندون", + "حنا بندان" + ], + "en_answers": [ + "henna night" + ], + "count": 2 + }, + { + "answers": [ + "خواستگاری" + ], + "en_answers": [ + "proposal" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-07": { + "question": "معمولاً چه چیزهایی در طول سال نو (قمری) درایران بین کودکان تقسیم می‌شود؟", + "en_question": "What is usually shared to the children during (Lunar) New Year in Iran?", + "annotations": [ + { + "answers": [ + "عیدی" + ], + "en_answers": [ + "eidi (gift given during persian new year)" + ], + "count": 1 + }, + { + "answers": [ + "هدیه" + ], + "en_answers": [ + "gift" + ], + "count": 1 + }, + { + "answers": [ + "عیدی اسکناس نو" + ], + "en_answers": [ + "new banknote gift" + ], + "count": 1 + }, + { + "answers": [ + "تخم مرغ رنگی" + ], + "en_answers": [ + "colored egg" + ], + "count": 1 + }, + { + "answers": [ + "شیرینی" + ], + "en_answers": [ + "sweets" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Kik-in-08": { + "question": "درایران چه فعالیت‌هایی معمولاً در روزهای قبل از رمضان انجام می‌شود؟", + "en_question": "What activities are usually done days before Ramadan in Iran?", + "annotations": [ + { + "answers": [ + "اکثرایرانی ها روزه نمیگیرن بنابراین فرقی به حالشان نمیکند" + ], + "en_answers": [ + "most iranians do not fast, so it does not make a difference to them" + ], + "count": 1 + }, + { + "answers": [ + "جشن نیمه شعبان" + ], + "en_answers": [ + "mid-sha'ban celebration" + ], + "count": 1 + }, + { + "answers": [ + "اعمال مذهبی" + ], + "en_answers": [ + "religious practices" + ], + "count": 1 + }, + { + "answers": [ + "تهیه مواد اولیه برای غذاهایی که در رمضان رایج است" + ], + "en_answers": [ + "preparing ingredients for foods that are common during ramadan" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 2, + "not-applicable": 0 + } + }, + "Kik-in-10": { + "question": "محبوب‌ترین جاذبه‌ی گردشگری برای بازدیدکنندگان خارجی درایران چیست؟", + "en_question": "What is the most popular tourist attraction for foreign visitors in Iran?", + "annotations": [ + { + "answers": [ + "تخت جمشید" + ], + "en_answers": [ + "persepolis" + ], + "count": 2 + }, + { + "answers": [ + "پرسپوليس", + "پرسپولیس" + ], + "en_answers": [ + "persepolis" + ], + "count": 2 + }, + { + "answers": [ + "بازدید از آثار باستانی" + ], + "en_answers": [ + "visit to ancient sites" + ], + "count": 1 + }, + { + "answers": [ + "میدان نقش جهان اصفهان" + ], + "en_answers": [ + "naqsh-e jahan square isfahan" + ], + "count": 1 + }, + { + "answers": [ + "پل خواجو" + ], + "en_answers": [ + "khaju bridge" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-11": { + "question": "محبوب‌ترین اماکن مذهبی (معبد، کلیسا و غیره) برای گردشگری درایران کدامند؟", + "en_question": "What is the most popular religious sites (temple, church, etc.) for tourism in Iran?", + "annotations": [ + { + "answers": [ + "امام رضا" + ], + "en_answers": [ + "imam reza" + ], + "count": 2 + }, + { + "answers": [ + "مسجد" + ], + "en_answers": [ + "mosque" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Kik-in-15": { + "question": "زنان معمولاً چه لباس‌هایی را در مراسم فارغ‌التحصیلی درایران می‌پوشند؟", + "en_question": "What clothes do women usually wear on graduation commencement ceremony in Iran?", + "annotations": [ + { + "answers": [ + "مانتو و نقنعه" + ], + "en_answers": [ + "manteau and veil" + ], + "count": 1 + }, + { + "answers": [ + "لباس فرم دانشگاه" + ], + "en_answers": [ + "university uniform" + ], + "count": 1 + }, + { + "answers": [ + "مانتو" + ], + "en_answers": [ + "coat" + ], + "count": 1 + }, + { + "answers": [ + "مقنعه" + ], + "en_answers": [ + "chador" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Kik-in-16": { + "question": "چه نوشیدنی‌ای معمولاً درایران هنگام سردی هوا مصرف می‌شود؟", + "en_question": "What drink is commonly consumed in Iran when the weather is cold?", + "annotations": [ + { + "answers": [ + "چای", + "چایی" + ], + "en_answers": [ + "tea" + ], + "count": 5 + }, + { + "answers": [ + "دمنوش" + ], + "en_answers": [ + "herbal tea" + ], + "count": 1 + }, + { + "answers": [ + "شیر کاکائو" + ], + "en_answers": [ + "chocolate milk" + ], + "count": 1 + }, + { + "answers": [ + "قهوه" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-17": { + "question": "چه میوه‌ای در ماه رمضان درایران بیشتر فروخته و یافت می‌شود؟", + "en_question": "What fruit is more commonly sold and found during Ramadan in Iran?", + "annotations": [ + { + "answers": [ + "خرما" + ], + "en_answers": [ + "date" + ], + "count": 3 + }, + { + "answers": [ + "هندوانه" + ], + "en_answers": [ + "watermelon" + ], + "count": 2 + }, + { + "answers": [ + "خربزه" + ], + "en_answers": [ + "melon" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-24": { + "question": "چه کربوهیدراتی معمولاً همراه با مرغ در رستوران‌های فست‌فود درایران سرو می‌شود؟", + "en_question": "What carbohydrate is usually served with chicken in a fast-food restaurant in Iran?", + "annotations": [ + { + "answers": [ + "نان", + "نان و سیب زمینی" + ], + "en_answers": [ + "bread", + "bread and potato" + ], + "count": 3 + }, + { + "answers": [ + "سیب زمینی", + "نان و سیب زمینی" + ], + "en_answers": [ + "potato" + ], + "count": 2 + }, + { + "answers": [ + "سیب زمینی سرخ کرده", + "سیب زمینی سرخ شده" + ], + "en_answers": [ + "fried potatoes" + ], + "count": 2 + }, + { + "answers": [ + "برنج" + ], + "en_answers": [ + "rice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-31": { + "question": "درایران معروف‌ترین ورزش‌های رزمی چیست؟", + "en_question": "What is the most famous martial art sports in Iran?", + "annotations": [ + { + "answers": [ + "تكواندو", + "تکواندو" + ], + "en_answers": [ + "taekwondo" + ], + "count": 3 + }, + { + "answers": [ + "کشتی", + "كشتي" + ], + "en_answers": [ + "wrestling" + ], + "count": 3 + }, + { + "answers": [ + "کاراته" + ], + "en_answers": [ + "karate" + ], + "count": 2 + }, + { + "answers": [ + "جودو" + ], + "en_answers": [ + "judo" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-34": { + "question": "درایران چه ورزش‌هایی اغلب در تلویزیون ملی پخش می‌شوند؟", + "en_question": "What sports are often broadcasted on national television in Iran?", + "annotations": [ + { + "answers": [ + "فوتبال", + "فوتبال و والیبال" + ], + "en_answers": [ + "football", + "football and volleyball" + ], + "count": 5 + }, + { + "answers": [ + "والیبال", + "فوتبال و والیبال" + ], + "en_answers": [ + "volleyball" + ], + "count": 4 + }, + { + "answers": [ + "کشتی" + ], + "en_answers": [ + "wrestling" + ], + "count": 2 + }, + { + "answers": [ + "بسکتبال" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-35": { + "question": "درایران چه ورزش‌هایی در بین مردم در طول همه‌گیری کووید-۱۹ محبوب بودند؟", + "en_question": "What sports were popular among people from Iran during the COVID-19 pandemic?", + "annotations": [ + { + "answers": [ + "دویدن" + ], + "en_answers": [ + "running" + ], + "count": 1 + }, + { + "answers": [ + "یوگا" + ], + "en_answers": [ + "yoga" + ], + "count": 1 + }, + { + "answers": [ + "فوتبال" + ], + "en_answers": [ + "football" + ], + "count": 1 + }, + { + "answers": [ + "بدنسازي" + ], + "en_answers": [ + "bodybuilding" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "Kik-in-36": { + "question": "درایران محبوب‌ترین مربی فوتبال چه کسی است؟", + "en_question": "Who is the most popular soccer coach in Iran?", + "annotations": [ + { + "answers": [ + "کیروش", + "كيروش" + ], + "en_answers": [ + "queiroz" + ], + "count": 3 + }, + { + "answers": [ + "علی دایی" + ], + "en_answers": [ + "ali daei" + ], + "count": 1 + }, + { + "answers": [ + "گواردیلا" + ], + "en_answers": [ + "guardiola" + ], + "count": 1 + }, + { + "answers": [ + "زیدان" + ], + "en_answers": [ + "zidane" + ], + "count": 1 + }, + { + "answers": [ + "آنجلوتی" + ], + "en_answers": [ + "angelotti" + ], + "count": 1 + }, + { + "answers": [ + "یحیی گل محمدی" + ], + "en_answers": [ + "yahya golmohammadi" + ], + "count": 1 + }, + { + "answers": [ + "برانکو" + ], + "en_answers": [ + "branko" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-37": { + "question": "درایران چه تیم‌های فوتبال به خاطر رقابت شدیدشان معروف هستند؟ (مثلاً ___ در مقابل ___)", + "en_question": "What soccer teams in Iran are famous for their intense rivalry? (e.g. ___ vs ___)", + "annotations": [ + { + "answers": [ + "پرسپولیس در مقابل استقلال", + "استقلال در مقابل پرسپولیس", + "پرسپوليس در مقابل استقلال", + "استقلال و پرسپولیس" + ], + "en_answers": [ + "persepolis versus esteghlal", + "esteghlal vs persepolis", + "persepolis against esteghlal", + "esteghlal and persepolis" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-38": { + "question": "درایران نام هواداران تیم‌های فوتبال که به خاطر رقابت شدیدشان معروف هستند، چیست؟ (مثلاً ___ در مقابل ___)", + "en_question": "What are the names of soccer supporters in Iran who are famous for their intense rivalry? (e.g. ___ vs ___)", + "annotations": [ + { + "answers": [ + "پرسپولیسیها و استقلالیها", + "پرسپوليس در مقابل استقلال", + "استقلال در مقابل پرسپولیس", + "استقلال - پرسپولیس" + ], + "en_answers": [ + "persepolis and esteghlal fans", + "persepolis against esteghlal", + "esteghlal vs persepolis", + "esteghlal - persepolis" + ], + "count": 4 + }, + { + "answers": [ + "پرسپولیس" + ], + "en_answers": [ + "persepolis" + ], + "count": 1 + }, + { + "answers": [ + "استقلال" + ], + "en_answers": [ + "independence" + ], + "count": 1 + }, + { + "answers": [ + "سپاهان - پرسپولیس" + ], + "en_answers": [ + "sepahan - persepolis" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-40": { + "question": "درایران معروف‌ترین بازیکن مرد بدمینتون چه کسی است؟", + "en_question": "Who is the most famous male badminton player in Iran?", + "annotations": [], + "idks": { + "idk": 5, + "not-applicable": 3, + "no-answer": 0 + } + }, + "Kik-in-41": { + "question": "درایران مشهورترین بازیکن زن بدمینتون چه کسی است؟", + "en_question": "Who is the most famous female badminton player in Iran?", + "annotations": [], + "idks": { + "idk": 5, + "no-answer": 2, + "not-applicable": 2 + } + }, + "Kik-in-44": { + "question": "درایران چه ورزشی بیشترین حمایت را از دولت دریافت می‌کند؟", + "en_question": "What sport gets the most support from the government in Iran?", + "annotations": [ + { + "answers": [ + "فوتبال" + ], + "en_answers": [ + "football" + ], + "count": 5 + }, + { + "answers": [ + "كشتي" + ], + "en_answers": [ + "wrestling" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-45": { + "question": "درایران معمولاً چه امکانات ورزشی در زمین‌های ورزشی مدارس وجود دارد؟", + "en_question": "What sports field facilities are usually available at schools in Iran?", + "annotations": [ + { + "answers": [ + "هيچي" + ], + "en_answers": [ + "nothing" + ], + "count": 1 + }, + { + "answers": [ + "تور والیبال", + "تور والیبال و بسکتبال" + ], + "en_answers": [ + "volleyball and basketball net" + ], + "count": 1 + }, + { + "answers": [ + "تور بسکتبال", + "تور والیبال و بسکتبال" + ], + "en_answers": [], + "count": 1 + }, + { + "answers": [ + "زمین والیبال" + ], + "en_answers": [ + "volleyball court" + ], + "count": 1 + }, + { + "answers": [ + "میز پینگ پونگ" + ], + "en_answers": [ + "ping pong table" + ], + "count": 1 + }, + { + "answers": [ + "بسکتبال", + "بسکتبال و والیبال" + ], + "en_answers": [ + "basketball and volleyball" + ], + "count": 1 + }, + { + "answers": [ + "والیبال", + "بسکتبال و والیبال" + ], + "en_answers": [], + "count": 1 + }, + { + "answers": [ + "توپ" + ], + "en_answers": [ + "ball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-02": { + "question": "مردم درایران معمولاً از چه نوشیدنی کافی شاپ بیشتر لذت می‌برند؟", + "en_question": "What cafe beverage do people from Iran most commonly enjoy?", + "annotations": [ + { + "answers": [ + "قهوه" + ], + "en_answers": [ + "coffee" + ], + "count": 2 + }, + { + "answers": [ + "کارال ماکیاتو" + ], + "en_answers": [ + "caramel macchiato" + ], + "count": 1 + }, + { + "answers": [ + "شیک نوتلا" + ], + "en_answers": [ + "nutella shake" + ], + "count": 1 + }, + { + "answers": [ + "میلک شیک" + ], + "en_answers": [ + "milkshake" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 3, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-04": { + "question": "غذای مورد علاقه برای درمان مخموری در میان مردم درایران چیست؟", + "en_question": "What is the preferred hangover cure food for people from Iran?", + "annotations": [ + { + "answers": [ + "کله پاچه" + ], + "en_answers": [ + "head and hoof stew" + ], + "count": 2 + }, + { + "answers": [ + "سیراب شیردون" + ], + "en_answers": [ + "hydrated milk container" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "no-answer": 1, + "idk": 0 + } + }, + "Na-ko-05": { + "question": "غذای معمول تحویلی درایران چیست؟", + "en_question": "What is the typical delivery food in Iran?", + "annotations": [ + { + "answers": [ + "پیتزا" + ], + "en_answers": [ + "pizza" + ], + "count": 2 + }, + { + "answers": [ + "پلو" + ], + "en_answers": [ + "rice" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-07": { + "question": "مردم درایران بیشتر از چه نوع گوشتی استفاده می‌کنند؟", + "en_question": "What type of meat is consumed most by people from Iran?", + "annotations": [ + { + "answers": [ + "مرغ", + "مرغ", + "مرغ و گوسفند" + ], + "en_answers": [ + "chicken", + "chicken and sheep" + ], + "count": 5 + }, + { + "answers": [ + "گوسفند", + "قرمز گوسفندی", + "مرغ و گوسفند" + ], + "en_answers": [ + "sheep", + "mutton red" + ], + "count": 5 + }, + { + "answers": [ + "گاو" + ], + "en_answers": [ + "cow" + ], + "count": 1 + }, + { + "answers": [ + "گوساله" + ], + "en_answers": [ + "calf" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-08": { + "question": "مردم درایران در فصل پاییز معمولاً چه میوه‌ای می‌خورند؟", + "en_question": "What fruit do people from Iran often eat in the autumn season?", + "annotations": [ + { + "answers": [ + "پرتقال", + "پرتغال" + ], + "en_answers": [ + "orange" + ], + "count": 5 + }, + { + "answers": [ + "نارنگی" + ], + "en_answers": [ + "tangerine" + ], + "count": 3 + }, + { + "answers": [ + "سیب" + ], + "en_answers": [ + "apple" + ], + "count": 2 + }, + { + "answers": [ + "لیمو شیرین" + ], + "en_answers": [ + "sweet lemon" + ], + "count": 1 + }, + { + "answers": [ + "موز" + ], + "en_answers": [ + "banana" + ], + "count": 1 + }, + { + "answers": [ + "انار" + ], + "en_answers": [ + "pomegranate" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-09": { + "question": "چه پیش غذایی بیشترین استفاده را روی میز غذا درایران دارد؟", + "en_question": "What side dish is the most commonly served on a dining table in Iran?", + "annotations": [ + { + "answers": [ + "سوپ" + ], + "en_answers": [ + "soup" + ], + "count": 3 + }, + { + "answers": [ + "سالاد" + ], + "en_answers": [ + "salad" + ], + "count": 2 + }, + { + "answers": [ + "میرزاقاسمی", + "میزا قاسمی" + ], + "en_answers": [ + "mirza ghasemi" + ], + "count": 2 + }, + { + "answers": [ + "کشک بادمجون" + ], + "en_answers": [ + "eggplant and whey dip" + ], + "count": 1 + }, + { + "answers": [ + "زیتون پروده" + ], + "en_answers": [ + "chopped olives" + ], + "count": 1 + }, + { + "answers": [ + "بورانی" + ], + "en_answers": [ + "borani" + ], + "count": 1 + }, + { + "answers": [ + "کباب" + ], + "en_answers": [ + "kebab" + ], + "count": 1 + }, + { + "answers": [ + "مرغ" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-11": { + "question": "مردم درایران هنگام تماشای بازی فوتبال چه چیزی می‌خورند؟", + "en_question": "What do people from Iran eat while watching a soccer game?", + "annotations": [ + { + "answers": [ + "تخمه" + ], + "en_answers": [ + "seed" + ], + "count": 3 + }, + { + "answers": [ + "پفک", + "پفک و چیپس", + "پفك" + ], + "en_answers": [ + "puff and chips", + "puffed snack" + ], + "count": 2 + }, + { + "answers": [ + "چیپس", + "پفک و چیپس" + ], + "en_answers": [ + "chips" + ], + "count": 2 + }, + { + "answers": [ + "تخمه آفتابگردان", + "تخمه آفتاب گردان" + ], + "en_answers": [ + "sunflower seeds" + ], + "count": 2 + }, + { + "answers": [ + "چايي" + ], + "en_answers": [ + "tea" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-15": { + "question": "غذای مقوی نماینده درایران چیست؟", + "en_question": "What is the representative nourishing food in Iran?", + "annotations": [ + { + "answers": [ + "کباب" + ], + "en_answers": [ + "kebab" + ], + "count": 2 + }, + { + "answers": [ + "آبگوشت" + ], + "en_answers": [ + "broth" + ], + "count": 1 + }, + { + "answers": [ + "کله پاچه" + ], + "en_answers": [ + "head and hoof stew" + ], + "count": 1 + }, + { + "answers": [ + "مرغ" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "گوشت قرمز" + ], + "en_answers": [ + "red meat" + ], + "count": 1 + }, + { + "answers": [ + "حلوای گندم" + ], + "en_answers": [ + "wheat halva" + ], + "count": 1 + }, + { + "answers": [ + "حلیم گندم" + ], + "en_answers": [ + "wheat halim" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-16": { + "question": "درایران معروف‌ترین بازیکن فوتبال چه کسی است؟", + "en_question": "Who is the most famous soccer player in Iran?", + "annotations": [ + { + "answers": [ + "علی دایی", + "علي دايي" + ], + "en_answers": [ + "ali daei" + ], + "count": 5 + }, + { + "answers": [ + "خداداد عزیزی" + ], + "en_answers": [ + "khodadad azizi" + ], + "count": 1 + }, + { + "answers": [ + "لیونل مسی" + ], + "en_answers": [ + "lionel messi" + ], + "count": 1 + }, + { + "answers": [ + "کریستیانو رونالدو" + ], + "en_answers": [ + "cristiano ronaldo" + ], + "count": 1 + }, + { + "answers": [ + "علي كريمي" + ], + "en_answers": [ + "ali karimi" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-17": { + "question": "درایران دانش‌آموزان پسر در زنگ ناهار در مدرسه از چه ورزش‌هایی لذت می‌برند؟", + "en_question": "What sports do male students enjoy during lunch time at school in Iran?", + "annotations": [ + { + "answers": [ + "فوتبال" + ], + "en_answers": [ + "football" + ], + "count": 4 + }, + { + "answers": [ + "بازی" + ], + "en_answers": [ + "game" + ], + "count": 1 + }, + { + "answers": [ + "واليبال" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-18": { + "question": "درایران رایج‌ترین ورزشی که دختران در کلاس‌های تربیت بدنی شرکت می‌کنند چیست؟", + "en_question": "What is the most common sport girls participate in during physical education classes in Iran?", + "annotations": [ + { + "answers": [ + "والیبال" + ], + "en_answers": [ + "volleyball" + ], + "count": 2 + }, + { + "answers": [ + "بسکتبال" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "طناب زنی" + ], + "en_answers": [ + "rope jumping" + ], + "count": 1 + }, + { + "answers": [ + "رقص" + ], + "en_answers": [ + "dance" + ], + "count": 1 + }, + { + "answers": [ + "بدنسازي" + ], + "en_answers": [ + "bodybuilding" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-19": { + "question": "درایران محبوب‌ترین بازیکن والیبال چه کسی است؟", + "en_question": "Who is the most popular volleyball player in Iran?", + "annotations": [ + { + "answers": [ + "سعید معروف" + ], + "en_answers": [ + "saeid marouf" + ], + "count": 3 + }, + { + "answers": [ + "سیدمحمد موسوی" + ], + "en_answers": [ + "seyyed mohammad mousavi" + ], + "count": 1 + }, + { + "answers": [ + "امیر غفور" + ], + "en_answers": [ + "amir ghafour" + ], + "count": 1 + } + ], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-20": { + "question": "درایران مردم بیشترین حمایت شورانگیز خود را در مسابقات بین‌المللی از چه رویداد ورزشی ابراز می‌دارند؟", + "en_question": "What sports event do people from Iran passionately support the most in international competitions?", + "annotations": [ + { + "answers": [ + "جام جهانی فوتبال", + "جام جهاني" + ], + "en_answers": [ + "fifa world cup", + "world cup" + ], + "count": 3 + }, + { + "answers": [ + "کشتی" + ], + "en_answers": [ + "wrestling" + ], + "count": 1 + }, + { + "answers": [ + "والیبال" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "فوتبال" + ], + "en_answers": [ + "football" + ], + "count": 1 + }, + { + "answers": [ + "المپیک تابستانی" + ], + "en_answers": [ + "summer olympics" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-22": { + "question": "درایران کدام کشور بزرگترین رقیب در مسابقات فوتبال به حساب می‌آید؟", + "en_question": "Which country is considered the biggest rival in soccer matches for Iran?", + "annotations": [ + { + "answers": [ + "کره جنوبی", + "کره" + ], + "en_answers": [ + "south korea", + "butter" + ], + "count": 3 + }, + { + "answers": [ + "ژاپن" + ], + "en_answers": [ + "japan" + ], + "count": 2 + }, + { + "answers": [ + "قطر" + ], + "en_answers": [ + "diameter" + ], + "count": 2 + }, + { + "answers": [ + "آلمان" + ], + "en_answers": [ + "germany" + ], + "count": 1 + }, + { + "answers": [ + "همه ی کشور ها" + ], + "en_answers": [ + "all countries" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-23": { + "question": "درایران کودکان بیشتر به چه نوع آکادمی‌های ورزشی می‌روند؟", + "en_question": "What type of sports academies do children attend the most in Iran?", + "annotations": [ + { + "answers": [ + "شنا" + ], + "en_answers": [ + "swimming" + ], + "count": 2 + }, + { + "answers": [ + "فوتبال" + ], + "en_answers": [ + "football" + ], + "count": 2 + }, + { + "answers": [ + "ژیمناستیک" + ], + "en_answers": [ + "gymnastics" + ], + "count": 1 + }, + { + "answers": [ + "بدمینتون" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-24": { + "question": "درایران متداول‌ترین غذایی که در استادیوم‌های ورزشی هنگام تماشای بازی‌ها خورده می‌شود، چیست؟", + "en_question": "What is the most commonly eaten food in sports stadiums while watching games in Iran?", + "annotations": [ + { + "answers": [ + "چیپس" + ], + "en_answers": [ + "crisps" + ], + "count": 2 + }, + { + "answers": [ + "هات داگ", + "تخمه آفتاب گردان" + ], + "en_answers": [ + "hot dog", + "sunflower seeds" + ], + "count": 2 + }, + { + "answers": [ + "تخمه" + ], + "en_answers": [ + "seed" + ], + "count": 1 + }, + { + "answers": [ + "ساندویچ" + ], + "en_answers": [ + "sandwich" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-25": { + "question": "درایران ورزش‌های معمولی که در روز ورزش مدارس انجام می‌شوند چیست؟", + "en_question": "What are the typical sports played in Iran's school sports day?", + "annotations": [ + { + "answers": [ + "فوتبال" + ], + "en_answers": [ + "football" + ], + "count": 4 + }, + { + "answers": [ + "نرمش صبحگاهی" + ], + "en_answers": [ + "morning exercise" + ], + "count": 1 + }, + { + "answers": [ + "کشتی" + ], + "en_answers": [ + "wrestling" + ], + "count": 1 + }, + { + "answers": [ + "گرم کردن" + ], + "en_answers": [ + "warming up" + ], + "count": 1 + }, + { + "answers": [ + "ورزش هوازی" + ], + "en_answers": [ + "aerobic exercise" + ], + "count": 1 + }, + { + "answers": [ + "واليبال" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "بسكتبال", + "بسكتبال ، پينگ پونگ" + ], + "en_answers": [ + "basketball, ping pong" + ], + "count": 1 + }, + { + "answers": [ + "پينگ پونگ", + "بسكتبال ، پينگ پونگ" + ], + "en_answers": [], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-26": { + "question": "درایران ورزش‌های محبوب در بین جمعیت میانسال چیست؟", + "en_question": "What are the popular sports among the middle-aged population in Iran?", + "annotations": [ + { + "answers": [ + "فوتبال" + ], + "en_answers": [ + "football" + ], + "count": 2 + }, + { + "answers": [ + "شطرنج" + ], + "en_answers": [ + "chess" + ], + "count": 1 + }, + { + "answers": [ + "تنیس روی میز" + ], + "en_answers": [ + "table tennis" + ], + "count": 1 + }, + { + "answers": [ + "کوهنوردی" + ], + "en_answers": [ + "mountaineering" + ], + "count": 1 + }, + { + "answers": [ + "پیاده روی" + ], + "en_answers": [ + "walking" + ], + "count": 1 + }, + { + "answers": [ + "دو" + ], + "en_answers": [ + "two" + ], + "count": 1 + }, + { + "answers": [ + "واليبال" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "بسكتبال" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-28": { + "question": "درایران محبوب‌ترین ورزشکار زمستانی چه کسی است؟", + "en_question": "Who is the most popular winter sports player in Iran?", + "annotations": [], + "idks": { + "idk": 6, + "no-answer": 1, + "not-applicable": 1 + } + }, + "Na-ko-29": { + "question": "درایران مشهورترین شناگر چه کسی است؟", + "en_question": "Who is the most famous swimmer in Iran?", + "annotations": [], + "idks": { + "idk": 5, + "no-answer": 2, + "نمیدانم": 1, + "not-applicable": 0 + } + }, + "Na-ko-30": { + "question": "درایران محبوب‌ترین بازی ای‌اسپورت چیست؟", + "en_question": "What is the most popular e-sports game in Iran?", + "annotations": [ + { + "answers": [ + "فوتبال" + ], + "en_answers": [ + "football" + ], + "count": 2 + }, + { + "answers": [ + "فیفا" + ], + "en_answers": [ + "fifa" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "نمیدانم": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Na-ko-33": { + "question": "مردم درایران در سال نو (قمری) چه غذاهای نمادینی می‌خورند؟", + "en_question": "What symbolic food do people from Iran eat on (Lunar) New Year?", + "annotations": [ + { + "answers": [ + "سبزی پلو با ماهی" + ], + "en_answers": [ + "herb rice with fish" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "no-answer": 1, + "idk": 0 + } + }, + "Na-ko-37": { + "question": "محبوب‌ترین مقصد داخلی برای تعطیلات برای مردم درایران کجاست؟", + "en_question": "What is the most popular domestic vacation spot for people from Iran?", + "annotations": [ + { + "answers": [ + "جزیره کیش", + "کیش" + ], + "en_answers": [ + "kish island", + "kish" + ], + "count": 2 + }, + { + "answers": [ + "کنار دریای خزر", + "سواحل دریای کاسپین" + ], + "en_answers": [ + "by the caspian sea", + "caspian sea coast" + ], + "count": 2 + }, + { + "answers": [ + "مازندران" + ], + "en_answers": [ + "mazandaran" + ], + "count": 1 + }, + { + "answers": [ + "گیلان" + ], + "en_answers": [ + "gilan" + ], + "count": 1 + }, + { + "answers": [ + "شیراز" + ], + "en_answers": [ + "shiraz" + ], + "count": 1 + }, + { + "answers": [ + "سواحل خلیج فارس" + ], + "en_answers": [ + "persian gulf coasts" + ], + "count": 1 + }, + { + "answers": [ + "یک ویلا در شمال" + ], + "en_answers": [ + "a villa in the north" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-38": { + "question": "رایج‌ترین هدیه‌ی عروسی بین عروس و داماد درایران چیست؟", + "en_question": "What is the most common wedding gift between bride and groom in Iran?", + "annotations": [ + { + "answers": [ + "سکه طلا", + "سکه ی طلا" + ], + "en_answers": [ + "gold coin" + ], + "count": 4 + }, + { + "answers": [ + "پول", + "پول و طلا" + ], + "en_answers": [ + "money and gold", + "money" + ], + "count": 2 + }, + { + "answers": [ + "طلا", + "پول و طلا" + ], + "en_answers": [], + "count": 1 + }, + { + "answers": [ + "دسته گل" + ], + "en_answers": [ + "bouquet" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-39": { + "question": "معمولاً چه چیزی به عنوان حرکتی تبریکی هنگام شرکت در عروسی یک دوست درایران داده می‌شود؟", + "en_question": "What is typically given as a congratulatory gesture when attending a friend's wedding in Iran?", + "annotations": [ + { + "answers": [ + "پول", + "هدیه پول" + ], + "en_answers": [ + "money", + "money gift" + ], + "count": 3 + }, + { + "answers": [ + "هدیه سکه طلا", + "سکه طلا" + ], + "en_answers": [ + "gold coin gift", + "gold coin" + ], + "count": 2 + }, + { + "answers": [ + "گل" + ], + "en_answers": [ + "flower" + ], + "count": 1 + }, + { + "answers": [ + "ست طلا و جواهرات" + ], + "en_answers": [ + "gold and jewelry set" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-40": { + "question": "مراسم تدفین درایران معمولاً چند روز طول می‌کشد؟ (فقط اعداد عربی (مثلاً 12) را وارد کنید.)", + "en_question": "How long (in days) does a funeral typically last in Iran? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 3 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 2 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-41": { + "question": "هنگام شرکت در مراسم خاکسپاری درایران، چه چیزی باید به عنوان هدیه تسلیت آماده کنید؟", + "en_question": "What should you prepare as a condolence offering when attending a funeral in Iran?", + "annotations": [ + { + "answers": [ + "گل", + "دسته گل" + ], + "en_answers": [ + "flower", + "bouquet" + ], + "count": 4 + }, + { + "answers": [ + "دسته گل با روبان مشکی" + ], + "en_answers": [ + "bouquet with black ribbon" + ], + "count": 1 + }, + { + "answers": [ + "بنر تسلیت" + ], + "en_answers": [ + "condolence banner" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-42": { + "question": "چه نوع غذایی معمولاً در مراسم ختم درایران ارائه می‌شود؟", + "en_question": "What type of food is commonly provided at funeral parlors in Iran?", + "annotations": [ + { + "answers": [ + "کباب", + "كباب" + ], + "en_answers": [ + "kebab" + ], + "count": 2 + }, + { + "answers": [ + "زرشک پلو با مرغ" + ], + "en_answers": [ + "barberry rice with chicken" + ], + "count": 1 + }, + { + "answers": [ + "جوجه کباب" + ], + "en_answers": [ + "chicken kebab" + ], + "count": 1 + }, + { + "answers": [ + "پلو قیمه" + ], + "en_answers": [ + "ghormeh sabzi" + ], + "count": 1 + }, + { + "answers": [ + "خرما" + ], + "en_answers": [ + "date" + ], + "count": 1 + }, + { + "answers": [ + "پلو مرغ" + ], + "en_answers": [ + "chicken and rice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-43": { + "question": "مردم درایران صبح روز (قمری) نو چه کارهایی انجام می‌دهند؟", + "en_question": "What do people do in Iran in the morning of the (Lunar) New Year?", + "annotations": [ + { + "answers": [ + "دید و بازدید خانواده", + "دید و بازدید فامیل", + "دید و بازدید" + ], + "en_answers": [ + "family visits", + "visiting each other" + ], + "count": 3 + }, + { + "answers": [ + "هیچی" + ], + "en_answers": [ + "nothing" + ], + "count": 1 + }, + { + "answers": [ + "ورزش" + ], + "en_answers": [ + "sport" + ], + "count": 1 + }, + { + "answers": [ + "استراحت" + ], + "en_answers": [ + "rest" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Na-ko-44": { + "question": "روزی که شدیدترین ترافیک سراسری درایران رخ می‌دهد، چه روزی است؟", + "en_question": "When is the day with Iran's most severe nationwide traffic congestion?", + "annotations": [ + { + "answers": [ + "عید", + "نوروز", + "اولین روز تعطیلات نوروز" + ], + "en_answers": [ + "eid", + "nowruz", + "the first day of nowruz holidays" + ], + "count": 3 + }, + { + "answers": [ + "بازگشایی مدارس", + "اول مهر" + ], + "en_answers": [ + "reopening of schools", + "first of mehr" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-45": { + "question": "محبوب‌ترین مقصد ماه عسل درایران کجاست؟", + "en_question": "What is the most popular honeymoon destination in Iran?", + "annotations": [ + { + "answers": [ + "جزیره کیش", + "کیش" + ], + "en_answers": [ + "kish island", + "check" + ], + "count": 3 + }, + { + "answers": [ + "مشهد" + ], + "en_answers": [ + "mashhad" + ], + "count": 2 + }, + { + "answers": [ + "شمال" + ], + "en_answers": [ + "north" + ], + "count": 2 + }, + { + "answers": [ + "شیراز" + ], + "en_answers": [ + "shiraz" + ], + "count": 1 + }, + { + "answers": [ + "سواحل دریای کاسپین" + ], + "en_answers": [ + "caspian sea coast" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-05": { + "question": "درایران مهم‌ترین تعطیلی ملی چیست؟", + "en_question": "What is the most important national holiday in Iran?", + "annotations": [ + { + "answers": [ + "نوروز", + "سال نو", + "عید نوروز" + ], + "en_answers": [ + "nowruz", + "new year" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-06": { + "question": "درایران مردم در ماه رمضان چه غذاهایی می‌خورند؟", + "en_question": "What do people from Iran eat in Ramadan?", + "annotations": [ + { + "answers": [ + "آش" + ], + "en_answers": [ + "ash (a type of thick soup or stew)" + ], + "count": 3 + }, + { + "answers": [ + "زولبیا بامیه" + ], + "en_answers": [ + "zoolbia bamieh" + ], + "count": 3 + }, + { + "answers": [ + "حلیم" + ], + "en_answers": [ + "haleem" + ], + "count": 2 + }, + { + "answers": [ + "حلوا" + ], + "en_answers": [ + "halva" + ], + "count": 1 + }, + { + "answers": [ + "خرما" + ], + "en_answers": [ + "date" + ], + "count": 1 + }, + { + "answers": [ + "شله زرد" + ], + "en_answers": [ + "sholeh zard" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-09": { + "question": "درایران مردم در عید فطر چه غذایی می‌خورند؟", + "en_question": "What do people from Iran eat in Eid ul Fitr?", + "annotations": [ + { + "answers": [ + "آش" + ], + "en_answers": [ + "ash (a type of thick soup or stew)" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 4, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-10": { + "question": "درایران مردم درعید قربان چه غذایی می‌خورند؟", + "en_question": "What do people from Iran eat in Eid ul Adha?", + "annotations": [ + { + "answers": [ + "کباب" + ], + "en_answers": [ + "kebab" + ], + "count": 2 + }, + { + "answers": [ + "خورشت قیمه", + "قیمه" + ], + "en_answers": [ + "gheimeh stew", + "stew" + ], + "count": 2 + }, + { + "answers": [ + "اب گوشت" + ], + "en_answers": [ + "broth" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 2, + "no-answer": 0 + } + }, + "Ne-ar-11": { + "question": "مردم درایران برای جشن گرفتن روز سال نو به کجا می‌روند؟", + "en_question": "Where do people from Iran go to celebrate New Year's Day?", + "annotations": [ + { + "answers": [ + "خانه مادربزرگ پدربزرگ", + "خانه ی پدربزرگ یا مادربزرگ" + ], + "en_answers": [ + "grandparents' house", + "grandfather's or grandmother's house" + ], + "count": 2 + }, + { + "answers": [ + "پیش خانواده" + ], + "en_answers": [ + "with family" + ], + "count": 1 + }, + { + "answers": [ + "پاسارگاد" + ], + "en_answers": [ + "pasargadae" + ], + "count": 1 + }, + { + "answers": [ + "خانه مادرو پدر" + ], + "en_answers": [ + "parents' house" + ], + "count": 1 + }, + { + "answers": [ + "خانه اقوام" + ], + "en_answers": [ + "relatives' house" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-14": { + "question": "درایران خانواده‌ها برای جشن‌های عید کجا جمع می‌شوند؟", + "en_question": "Where do a family gather for Eid festivities in Iran?", + "annotations": [ + { + "answers": [ + "خانه", + "در خانه" + ], + "en_answers": [ + "home", + "at home" + ], + "count": 2 + }, + { + "answers": [ + "دور هم" + ], + "en_answers": [ + "around each other" + ], + "count": 1 + }, + { + "answers": [ + "پارک های شهری و جنگلی" + ], + "en_answers": [ + "urban and forest parks" + ], + "count": 1 + }, + { + "answers": [ + "منزل اقوام" + ], + "en_answers": [ + "relatives' house" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-16": { + "question": "آخر هفته درایران چه روزهایی است (مثلاً دوشنبه، سه‌شنبه)؟", + "en_question": "When is the weekend in Iran (e.g. Monday, Tuesday)?", + "annotations": [ + { + "answers": [ + "جمعه", + "پنجشنبه،جمعه", + "پنج شنبه و جمعه" + ], + "en_answers": [ + "friday" + ], + "count": 5 + }, + { + "answers": [ + "پنجشنبه", + "پنجشنبه،جمعه", + "پنج شنبه و جمعه" + ], + "en_answers": [ + "thursday,friday", + "thursday and friday", + "thursday" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-17": { + "question": "اکثر مردم درایران در چه ساعتی کار خود را شروع می‌کنند؟ (به فرمت HH:MM ارائه دهید (مثلاً 18:00، 09:00).)", + "en_question": "At what time do most people start work in Iran? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-18": { + "question": "اکثر مردم درایران چه ساعتی کارشان تمام می‌شود؟ (به فرمت HH:MM ارائه دهید (مثلاً 18:00، 09:00).)", + "en_question": "At what time do most people finish work in Iran? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 2 + }, + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 1 + }, + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 1 + }, + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 1 + }, + { + "answers": [ + "15:00" + ], + "en_answers": [ + "15:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-20": { + "question": "چه شغلی درایران به عنوان شغلی امن در نظر گرفته می‌شود؟", + "en_question": "What is considered to be a secure job in Iran?", + "annotations": [ + { + "answers": [ + "کارمند دولتی", + "کارمند دولت", + "مشاغل دولتی" + ], + "en_answers": [ + "government employee", + "government jobs" + ], + "count": 4 + }, + { + "answers": [ + "پزشكي", + "پزشکی" + ], + "en_answers": [ + "medical" + ], + "count": 2 + }, + { + "answers": [ + "معلمی" + ], + "en_answers": [ + "teaching" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-24": { + "question": "کدام شهر مرکز اصلی تجاری درایران است؟", + "en_question": "Which city is the primary commercial hub in Iran?", + "annotations": [ + { + "answers": [ + "تهران" + ], + "en_answers": [ + "tehran" + ], + "count": 5 + }, + { + "answers": [ + "اصفهان" + ], + "en_answers": [ + "isfahan" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-25": { + "question": "صنعتی که درایران بیشترین حقوق را می‌پردازد چیست؟", + "en_question": "What is the industry that pays the best in Iran?", + "annotations": [ + { + "answers": [ + "نفت و گاز", + "صنعت نفت", + "نفت" + ], + "en_answers": [ + "oil and gas", + "oil industry", + "oil" + ], + "count": 3 + }, + { + "answers": [ + "دلالي" + ], + "en_answers": [ + "brokerage" + ], + "count": 1 + }, + { + "answers": [ + "پزشکی" + ], + "en_answers": [ + "medical" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-26": { + "question": "معروف‌ترین شرکت دولتی درایران چیست؟", + "en_question": "What is the most famous public corporation in Iran?", + "annotations": [ + { + "answers": [ + "شرکت نفت" + ], + "en_answers": [ + "oil company" + ], + "count": 2 + }, + { + "answers": [ + "ثبت احوال" + ], + "en_answers": [ + "civil registration" + ], + "count": 1 + }, + { + "answers": [ + "مپنا" + ], + "en_answers": [ + "mapna" + ], + "count": 1 + }, + { + "answers": [ + "قرارگاه خاتم الانبیا" + ], + "en_answers": [ + "khatam al-anbiya headquarters" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-31": { + "question": "معروف‌ترین غذا درایران چیست؟", + "en_question": "What is the most famous dish in Iran?", + "annotations": [ + { + "answers": [ + "قورمه سبزی" + ], + "en_answers": [ + "herb stew" + ], + "count": 2 + }, + { + "answers": [ + "قیمه", + "قرمه سبزی" + ], + "en_answers": [ + "stew", + "ghormeh sabzi" + ], + "count": 2 + }, + { + "answers": [ + "کباب کوبیده", + "کوبیده" + ], + "en_answers": [ + "koobideh kebab", + "kebab" + ], + "count": 2 + }, + { + "answers": [ + "چلو کباب" + ], + "en_answers": [ + "rice with kebab" + ], + "count": 1 + }, + { + "answers": [ + "کشک و بادمجان" + ], + "en_answers": [ + "kashk and eggplant" + ], + "count": 1 + }, + { + "answers": [ + "کباب" + ], + "en_answers": [ + "kebab" + ], + "count": 1 + }, + { + "answers": [ + "مرغ" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-32": { + "question": "مردم معمولاً برای صبحانه درایران چه چیزهایی می‌خورند؟", + "en_question": "What do people usually have for breakfast in Iran?", + "annotations": [ + { + "answers": [ + "نان و پنیر", + "نان پنیر", + "نان و پنير", + "نان با پنیر", + "نان با پنیر و گردو و چای" + ], + "en_answers": [ + "bread and cheese", + "bread with cheese, walnuts, and tea" + ], + "count": 3 + }, + { + "answers": [ + "نان", + "چای،نان،پنیر،گردو", + "چاي شيرين" + ], + "en_answers": [ + "bread", + "sweet tea" + ], + "count": 3 + }, + { + "answers": [ + "تخم مرغ", + "شكر" + ], + "en_answers": [ + "egg", + "sugar" + ], + "count": 2 + }, + { + "answers": [ + "چای", + "چای،نان،پنیر،گردو", + "چای", + "نان با پنیر و گردو و چای" + ], + "en_answers": [ + "tea, bread, cheese, walnut" + ], + "count": 2 + }, + { + "answers": [ + "گردو", + "چای،نان،پنیر،گردو", + "نان با پنیر و گردو و چای" + ], + "en_answers": [], + "count": 2 + }, + { + "answers": [ + "کره" + ], + "en_answers": [ + "butter" + ], + "count": 1 + }, + { + "answers": [ + "پنیر", + "چای،نان،پنیر،گردو" + ], + "en_answers": [], + "count": 1 + }, + { + "answers": [ + "املت" + ], + "en_answers": [ + "omelette" + ], + "count": 1 + }, + { + "answers": [ + "حلیم" + ], + "en_answers": [ + "haleem" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-33": { + "question": "مردم معمولاً چه ساعتی درایران ناهار می‌خورند؟ (با فرمت HH:MM ارائه دهید، مثلاً 18:00، 09:00).", + "en_question": "When do people usually have lunch in Iran? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 4 + }, + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 1 + }, + { + "answers": [ + "12:00" + ], + "en_answers": [ + "12:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-34": { + "question": "معمولاً چه چیزی در وعده‌های غذایی درایران ضروری است؟", + "en_question": "What is typically indispensable in meals in Iran?", + "annotations": [ + { + "answers": [ + "برنج" + ], + "en_answers": [ + "rice" + ], + "count": 3 + }, + { + "answers": [ + "نان" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "گوشت" + ], + "en_answers": [ + "meat" + ], + "count": 1 + }, + { + "answers": [ + "پیاز" + ], + "en_answers": [ + "onion" + ], + "count": 1 + }, + { + "answers": [ + "ماست هنگام غذا" + ], + "en_answers": [ + "yogurt during meal" + ], + "count": 1 + }, + { + "answers": [ + "نوشابه" + ], + "en_answers": [ + "soda" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-36": { + "question": "یک وعده غذایی معمول در جشن‌هایایران چیست؟", + "en_question": "What is a typical festive meal in Iran?", + "annotations": [ + { + "answers": [ + "کباب", + "كباب" + ], + "en_answers": [ + "kebab" + ], + "count": 2 + }, + { + "answers": [ + "چلو کباب کوبیده" + ], + "en_answers": [ + "chelo kebab koobideh" + ], + "count": 1 + }, + { + "answers": [ + "جوجه کباب" + ], + "en_answers": [ + "chicken kebab" + ], + "count": 1 + }, + { + "answers": [ + "سبزی پلو با ماهی" + ], + "en_answers": [ + "herb rice with fish" + ], + "count": 1 + }, + { + "answers": [ + "باقالی پلو با گوشت" + ], + "en_answers": [ + "broad bean rice with meat" + ], + "count": 1 + }, + { + "answers": [ + "مرغ" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-37": { + "question": "معمولاً چه میوه‌ای به گردشگران/بازدیدکنندگان خارجی درایران پیشنهاد می‌شود؟", + "en_question": "Which fruit do people usually offer tourists/visitors from abroad in Iran?", + "annotations": [ + { + "answers": [ + "گوجه سبز" + ], + "en_answers": [ + "green plum" + ], + "count": 1 + }, + { + "answers": [ + "انار" + ], + "en_answers": [ + "pomegranate" + ], + "count": 1 + }, + { + "answers": [ + "خربزه" + ], + "en_answers": [ + "melon" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "Ne-ar-38": { + "question": "مردم معمولاً چه غذایی را به عنوان صدقه درایران اهدا می‌کنند؟", + "en_question": "Which food do people usually offer as charity in Iran?", + "annotations": [ + { + "answers": [ + "خورش قیمه", + "قیمه" + ], + "en_answers": [ + "qormeh sabzi", + "stew" + ], + "count": 3 + }, + { + "answers": [ + "چلو خورشت قیمه", + "پلو قیمه" + ], + "en_answers": [ + "rice with split pea stew", + "ghormeh sabzi" + ], + "count": 2 + }, + { + "answers": [ + "گوشت قربانی" + ], + "en_answers": [ + "sacrificial meat" + ], + "count": 1 + }, + { + "answers": [ + "نمک" + ], + "en_answers": [ + "salt" + ], + "count": 1 + }, + { + "answers": [ + "عدس پلو" + ], + "en_answers": [ + "lentil rice" + ], + "count": 1 + }, + { + "answers": [ + "زرشک پلو با مرغ" + ], + "en_answers": [ + "barberry rice with chicken" + ], + "count": 1 + }, + { + "answers": [ + "پلو قرمه سبزی" + ], + "en_answers": [ + "herb stew with rice" + ], + "count": 1 + }, + { + "answers": [ + "پلو مرغ خورشتی" + ], + "en_answers": [ + "chicken stew with rice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-39": { + "question": "ارزان‌ترین فست فود درایران چیست؟", + "en_question": "What is the cheapest fast food in Iran?", + "annotations": [ + { + "answers": [ + "فلافل" + ], + "en_answers": [ + "falafel" + ], + "count": 4 + }, + { + "answers": [ + "ساندویچ هایلار" + ], + "en_answers": [ + "hylar sandwiches" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-43": { + "question": "مردم معمولاً درایران با چای چه چیزی می‌خورند؟", + "en_question": "What do people usually have with tea in Iran?", + "annotations": [ + { + "answers": [ + "قند" + ], + "en_answers": [ + "sugar" + ], + "count": 5 + }, + { + "answers": [ + "خرما" + ], + "en_answers": [ + "date" + ], + "count": 2 + }, + { + "answers": [ + "نبات" + ], + "en_answers": [ + "rock candy" + ], + "count": 1 + }, + { + "answers": [ + "شیرینی" + ], + "en_answers": [ + "sweets" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-44": { + "question": "مردم درایران با قهوه چه چیزی می‌خورند؟", + "en_question": "What do people have with coffee in Iran?", + "annotations": [ + { + "answers": [ + "قند" + ], + "en_answers": [ + "sugar" + ], + "count": 2 + }, + { + "answers": [ + "شکر" + ], + "en_answers": [ + "sugar" + ], + "count": 2 + }, + { + "answers": [ + "شیرینی" + ], + "en_answers": [ + "sweets" + ], + "count": 1 + }, + { + "answers": [ + "خرما" + ], + "en_answers": [ + "date" + ], + "count": 1 + }, + { + "answers": [ + "شکلات" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + }, + { + "answers": [ + "کیک" + ], + "en_answers": [ + "cake" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-02": { + "question": "در ایران محبوب‌ترین غذای سنتی چیست؟", + "en_question": "What is the most popular traditional food in Iran?", + "annotations": [ + { + "answers": [ + "قرمه سبزی", + "قورمه سبزی" + ], + "en_answers": [ + "ghormeh sabzi", + "herb stew" + ], + "count": 2 + }, + { + "answers": [ + "کباب" + ], + "en_answers": [ + "kebab" + ], + "count": 1 + }, + { + "answers": [ + "دیزی" + ], + "en_answers": [ + "dizi" + ], + "count": 1 + }, + { + "answers": [ + "چلو کباب" + ], + "en_answers": [ + "rice with kebab" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-04": { + "question": "در ایران محبوب‌ترین دیپ چیست؟", + "en_question": "What is the most popular dipping sauce in Iran?", + "annotations": [ + { + "answers": [ + "ماست موسیر" + ], + "en_answers": [ + "yogurt with shallots" + ], + "count": 2 + }, + { + "answers": [ + "میرزاقاسمی" + ], + "en_answers": [ + "mirza ghasemi" + ], + "count": 1 + }, + { + "answers": [ + "کشک و بادمجان" + ], + "en_answers": [ + "kashk and eggplant" + ], + "count": 1 + }, + { + "answers": [ + "برانی" + ], + "en_answers": [ + "outside" + ], + "count": 1 + }, + { + "answers": [ + "پنیر" + ], + "en_answers": [ + "cheese" + ], + "count": 1 + }, + { + "answers": [ + "اسفناج" + ], + "en_answers": [ + "spinach" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-am-08": { + "question": "در ایران غذایی که بیشترین مصرف را در زمان روزه‌داری، مسیحیان دارند، چیست؟", + "en_question": "What food is most often consumed during Christian fasting in Iran?", + "annotations": [], + "idks": { + "idk": 4, + "not-applicable": 2, + "no-answer": 1 + } + }, + "New-am-15": { + "question": "در ایران معمولاً چه غذایی هنگامی که مادران زایمان می‌کنند، تهیه می‌شود؟", + "en_question": "What food is usually prepared when mothers give birth in Iran?", + "annotations": [ + { + "answers": [ + "کاچی" + ], + "en_answers": [ + "halva pudding" + ], + "count": 2 + }, + { + "answers": [ + "سوپ" + ], + "en_answers": [ + "soup" + ], + "count": 1 + }, + { + "answers": [ + "سوپ شل و حلبه" + ], + "en_answers": [ + "loose and watery soup" + ], + "count": 1 + }, + { + "answers": [ + "پلو گوشت" + ], + "en_answers": [ + "meat pilaf" + ], + "count": 1 + }, + { + "answers": [ + "قلم" + ], + "en_answers": [ + "pen" + ], + "count": 1 + }, + { + "answers": [ + "گوشت" + ], + "en_answers": [ + "meat" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-am-27": { + "question": "در ایران محبوب‌ترین ورزشکار زن چه کسی است؟", + "en_question": "Who is the most popular female sportperson in Iran?", + "annotations": [ + { + "answers": [ + "الناز رکابی" + ], + "en_answers": [ + "elnaz rokabi" + ], + "count": 2 + }, + { + "answers": [ + "منصوریان" + ], + "en_answers": [ + "mansourian" + ], + "count": 1 + }, + { + "answers": [ + "زهرا کیانی" + ], + "en_answers": [ + "zahra kiani" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-am-34": { + "question": "بیشتر دانش‌آموزان دبستانی در ایران کجا برای امتحانات خود آماده می‌شوند؟", + "en_question": "Where do most elementary school students prepare for their exams in Iran?", + "annotations": [ + { + "answers": [ + "خانه", + "در خانه" + ], + "en_answers": [ + "home", + "at home" + ], + "count": 4 + }, + { + "answers": [ + "مدرسه" + ], + "en_answers": [ + "school" + ], + "count": 2 + }, + { + "answers": [ + "کتابخانه" + ], + "en_answers": [ + "library" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-am-41": { + "question": "در ایران، دانش‌آموزان در چه پایه‌ای اولین امتحان سراسری خود را انجام میدهند؟", + "en_question": "In Iran, at which grade level do students take their first national-level examination?", + "annotations": [ + { + "answers": [ + "پنجم دبستان", + "5", + "۵" + ], + "en_answers": [ + "year 5 primary", + "year 5" + ], + "count": 3 + }, + { + "answers": [ + "هشتم متوسطه اول", + "۸" + ], + "en_answers": [ + "year 8 secondary", + "year 8" + ], + "count": 1 + }, + { + "answers": [ + "دوازدهم متوسطه دوم", + "۱۲" + ], + "en_answers": [ + "year 12 college", + "year 12" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-53": { + "question": "کدام منطقه در ایران به خاطر صنعت قهوه/چایش شهرت زیادی دارد؟", + "en_question": "Which region in Iran is widely known for its coffee/tea industry?", + "annotations": [ + { + "answers": [ + "گیلان" + ], + "en_answers": [ + "gilan" + ], + "count": 2 + }, + { + "answers": [ + "شمال", + "شمال کشور" + ], + "en_answers": [ + "north", + "north of the country" + ], + "count": 2 + }, + { + "answers": [ + "مازندران" + ], + "en_answers": [ + "mazandaran" + ], + "count": 1 + }, + { + "answers": [ + "لاهیجان" + ], + "en_answers": [ + "lahijan" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-54": { + "question": "کدام منطقه در ایران به خاطر صنعت دامپروری‌اش شهرت زیادی دارد؟", + "en_question": "Which region in Iran is widely known for its livestock industry?", + "annotations": [ + { + "answers": [ + "تبریز" + ], + "en_answers": [ + "tabriz" + ], + "count": 2 + }, + { + "answers": [ + "کردستان" + ], + "en_answers": [ + "kurdistan" + ], + "count": 2 + }, + { + "answers": [ + "شمال" + ], + "en_answers": [ + "north" + ], + "count": 1 + }, + { + "answers": [ + "لرستان" + ], + "en_answers": [ + "lorestan" + ], + "count": 1 + }, + { + "answers": [ + "چهار محال و بختیاری" + ], + "en_answers": [ + "chaharmahal and bakhtiari" + ], + "count": 1 + }, + { + "answers": [ + "سواحل دریای کاسپین" + ], + "en_answers": [ + "caspian sea coast" + ], + "count": 1 + }, + { + "answers": [ + "آذربایجان" + ], + "en_answers": [ + "azerbaijan" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-59": { + "question": "شغل اصلی مردمی که در بیابان‌های ایران زندگی می‌کنند چیست؟", + "en_question": "What is the main occupation of people living in deserts in Iran?", + "annotations": [ + { + "answers": [ + "دامپروری", + "دام داری" + ], + "en_answers": [ + "animal husbandry" + ], + "count": 2 + }, + { + "answers": [ + "قاچاق" + ], + "en_answers": [ + "smuggling" + ], + "count": 1 + }, + { + "answers": [ + "قالی بافی حصیری" + ], + "en_answers": [ + "straw carpet weaving" + ], + "count": 1 + } + ], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-60": { + "question": "معمولاً از چه حیوانی برای حمل و نقل در ایران استفاده می‌شود؟", + "en_question": "Which animal is typically used for transportation in Iran?", + "annotations": [ + { + "answers": [ + "الاغ", + "خر" + ], + "en_answers": [ + "donkey" + ], + "count": 5 + }, + { + "answers": [ + "اسب" + ], + "en_answers": [ + "horse" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-72": { + "question": "محبوب‌ترین کتاب کمیک برای خواندن کودکان در ایران چیست؟", + "en_question": "What is the most popular comic book for children to read in Iran?", + "annotations": [ + { + "answers": [ + "تن تن" + ], + "en_answers": [ + "tintin" + ], + "count": 2 + }, + { + "answers": [ + "من و بابام" + ], + "en_answers": [ + "me and my dad" + ], + "count": 1 + }, + { + "answers": [ + "هیچ کتاب کمیکی در ایران وجود ندارد" + ], + "en_answers": [ + "there are no comic books in iran" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-am-73": { + "question": "محبوب‌ترین کانال یوتیوب برای کودکان در ایران کدام است؟", + "en_question": "What is the most popular YouTube channel for children in Iran?", + "annotations": [], + "idks": { + "not-applicable": 3, + "idk": 2, + "no-answer": 0 + } + }, + "New-am-74": { + "question": "محبوب‌ترین برنامه گفتگو محور در ایران چیست؟", + "en_question": "What is the most popular talk show in Iran?", + "annotations": [ + { + "answers": [ + "نود" + ], + "en_answers": [ + "ninety" + ], + "count": 1 + }, + { + "answers": [ + "برنامه ۹۰" + ], + "en_answers": [ + "90 program" + ], + "count": 1 + }, + { + "answers": [ + "برنامه نود" + ], + "en_answers": [ + "90 program" + ], + "count": 1 + }, + { + "answers": [ + "برنامه عصر جدید" + ], + "en_answers": [ + "new age program" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-77": { + "question": "معروف‌ترین تعطیلی مذهبی در ایران چیست؟", + "en_question": "What is the most famous religious holiday in Iran?", + "annotations": [ + { + "answers": [ + "عاشورا", + "تاسوعا و عاشورا" + ], + "en_answers": [ + "ashura" + ], + "count": 4 + }, + { + "answers": [ + "تاسوعا", + "تاسوعا و عاشورا" + ], + "en_answers": [ + "tasu'a and ashura", + "tasu'a" + ], + "count": 2 + }, + { + "answers": [ + "سالگرد رهبر" + ], + "en_answers": [ + "leader's anniversary" + ], + "count": 1 + }, + { + "answers": [ + "عید فطر" + ], + "en_answers": [ + "eid al-fitr" + ], + "count": 1 + }, + { + "answers": [ + "عید غدیر" + ], + "en_answers": [ + "eid al-ghadir" + ], + "count": 1 + }, + { + "answers": [ + "قدر" + ], + "en_answers": [ + "ghadr" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-81": { + "question": "شلوغ‌ترین ماه برای عروسی‌ها در ایران چه ماهی است؟ (فقط اعداد عربی (مثلاً 1) را وارد کنید.)", + "en_question": "What is the busiest month for weddings in Iran? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "1", + "فروردین" + ], + "en_answers": [ + "1" + ], + "count": 2 + }, + { + "answers": [ + "5", + "مرداد" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + }, + { + "answers": [ + "6", + "شهریور" + ], + "en_answers": [ + "6" + ], + "count": 1 + }, + { + "answers": [ + "7", + "مهر" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-am-83": { + "question": "محبوب‌ترین ساز سنتی در ایران چیست؟", + "en_question": "What is the most popular traditional musical instrument in Iran?", + "annotations": [ + { + "answers": [ + "سنتور" + ], + "en_answers": [ + "santur" + ], + "count": 4 + }, + { + "answers": [ + "سه تار" + ], + "en_answers": [ + "se tar" + ], + "count": 2 + }, + { + "answers": [ + "تنبک" + ], + "en_answers": [ + "tombak" + ], + "count": 1 + }, + { + "answers": [ + "تار" + ], + "en_answers": [ + "tar" + ], + "count": 1 + }, + { + "answers": [ + "دف" + ], + "en_answers": [ + "daf" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-01": { + "question": "مهم‌ترین محصول کشاورزی تولید شده در ایران چیست؟", + "en_question": "What is the main agricultural product produced in Iran?", + "annotations": [ + { + "answers": [ + "زعفران" + ], + "en_answers": [ + "saffron" + ], + "count": 2 + }, + { + "answers": [ + "برنج" + ], + "en_answers": [ + "rice" + ], + "count": 2 + }, + { + "answers": [ + "گندم" + ], + "en_answers": [ + "wheat" + ], + "count": 2 + }, + { + "answers": [ + "علوفه" + ], + "en_answers": [ + "fodder" + ], + "count": 1 + }, + { + "answers": [ + "پسته" + ], + "en_answers": [ + "pistachio" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-02": { + "question": "محبوب‌ترین ماده غذایی مبتنی بر گندم در ایران چیست؟", + "en_question": "What is the most popular wheat-based food item in Iran?", + "annotations": [ + { + "answers": [ + "نان", + "انواع نان" + ], + "en_answers": [ + "bread", + "types of bread" + ], + "count": 4 + }, + { + "answers": [ + "نان بربری", + "ماکارونی" + ], + "en_answers": [ + "barbari bread", + "macaroni" + ], + "count": 2 + }, + { + "answers": [ + "پاستا" + ], + "en_answers": [ + "pasta" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-05": { + "question": "معمولاً چه نوشیدنی‌ای به عنوان پذیرایی به مهمانان هنگام ورود به خانه‌ها در ایران ارائه می‌شود؟", + "en_question": "What is the most typical drink offered to guests when they visit households in Iran?", + "annotations": [ + { + "answers": [ + "چای", + "چایی" + ], + "en_answers": [ + "tea" + ], + "count": 5 + }, + { + "answers": [ + "شربت" + ], + "en_answers": [ + "juice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-07": { + "question": "محبوب‌ترین غذای پخته شده با ماهی در ایران چیست؟", + "en_question": "What is the most popular dish cooked with fish in Iran?", + "annotations": [ + { + "answers": [ + "سبزی پلو با ماهی" + ], + "en_answers": [ + "herb rice with fish" + ], + "count": 3 + }, + { + "answers": [ + "سبزی پلو" + ], + "en_answers": [ + "herb rice" + ], + "count": 1 + }, + { + "answers": [ + "ماهی" + ], + "en_answers": [ + "fish" + ], + "count": 1 + }, + { + "answers": [ + "پلوتن" + ], + "en_answers": [ + "rice and tuna" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-14": { + "question": "مردم ایران در هوای بارانی دوست دارند چه غذاهایی بخورند؟", + "en_question": "What food do people from Iran like to eat during rainy weather?", + "annotations": [ + { + "answers": [ + "آش" + ], + "en_answers": [ + "ash (a type of thick soup or stew)" + ], + "count": 2 + }, + { + "answers": [ + "آش رشته" + ], + "en_answers": [ + "noodle soup" + ], + "count": 2 + }, + { + "answers": [ + "چایی" + ], + "en_answers": [ + "tea" + ], + "count": 1 + }, + { + "answers": [ + "لبو" + ], + "en_answers": [ + "beetroot" + ], + "count": 1 + }, + { + "answers": [ + "باقلا" + ], + "en_answers": [ + "fava beans" + ], + "count": 1 + }, + { + "answers": [ + "سوپ" + ], + "en_answers": [ + "soup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-15": { + "question": "چه نوشیدنی‌ای در ایران هنگامی که هوا گرم است معمولاً مصرف می‌شود؟", + "en_question": "What drink is commonly consumed in Iran when the weather is hot?", + "annotations": [ + { + "answers": [ + "شربت آبلیمو", + "لیموناد" + ], + "en_answers": [ + "lemon juice", + "lemonade" + ], + "count": 2 + }, + { + "answers": [ + "نوشابه" + ], + "en_answers": [ + "soda" + ], + "count": 1 + }, + { + "answers": [ + "یخ در بهشت" + ], + "en_answers": [ + "slushy" + ], + "count": 1 + }, + { + "answers": [ + "دوغ" + ], + "en_answers": [ + "doogh" + ], + "count": 1 + }, + { + "answers": [ + "عرق نسترن" + ], + "en_answers": [ + "orange blossom water" + ], + "count": 1 + }, + { + "answers": [ + "عرق بیدمشک" + ], + "en_answers": [ + "willow flower water" + ], + "count": 1 + }, + { + "answers": [ + "عرق کاسنی" + ], + "en_answers": [ + "chicory distillate" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-20": { + "question": "محبوب‌ترین ورزش سرپوشیده در ایران چیست؟", + "en_question": "What is the most popular indoor sport in Iran?", + "annotations": [ + { + "answers": [ + "والیبال" + ], + "en_answers": [ + "volleyball" + ], + "count": 2 + }, + { + "answers": [ + "فوتسال" + ], + "en_answers": [ + "futsal" + ], + "count": 2 + }, + { + "answers": [ + "بسکتبال" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "شنا" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + }, + { + "answers": [ + "فوتبال" + ], + "en_answers": [ + "football" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-29": { + "question": "مردان در ایران دوست دارند چه ورزشی را تماشا کنند؟", + "en_question": "What sport do men in Iran like to watch?", + "annotations": [ + { + "answers": [ + "فوتبال" + ], + "en_answers": [ + "football" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-30": { + "question": "زنان در ایران دوست دارند کدام ورزش را تماشا کنند؟", + "en_question": "What sport do women in Iran like to watch?", + "annotations": [ + { + "answers": [ + "فوتبال" + ], + "en_answers": [ + "football" + ], + "count": 5 + }, + { + "answers": [ + "والیبال" + ], + "en_answers": [ + "volleyball" + ], + "count": 3 + }, + { + "answers": [ + "بسکتبال" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-58": { + "question": "محبوب‌ترین نوشیدنی که مردم ایران دوست دارند در محل کارشان بنوشند چیست؟", + "en_question": "What is the most popular beverage that people from Iran like to drink in their workplace?", + "annotations": [ + { + "answers": [ + "چای", + "چاي", + "چایی" + ], + "en_answers": [ + "tea" + ], + "count": 5 + }, + { + "answers": [ + "نوشابه" + ], + "en_answers": [ + "soda" + ], + "count": 1 + }, + { + "answers": [ + "قهوه" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + }, + { + "answers": [ + "شربت" + ], + "en_answers": [ + "juice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-64": { + "question": "در ایران در کدام تعطیلات همه اعضای خانواده معمولاً دور هم جمع می‌شوند؟", + "en_question": "On which holiday do all family members tend to reunite in Iran?", + "annotations": [ + { + "answers": [ + "نوروز", + "عید نوروز", + "سال نو" + ], + "en_answers": [ + "nowruz", + "new year" + ], + "count": 4 + }, + { + "answers": [ + "چهارشنبه سوری" + ], + "en_answers": [ + "chaharshanbe suri" + ], + "count": 1 + }, + { + "answers": [ + "سیزده بدر" + ], + "en_answers": [ + "nature's day" + ], + "count": 1 + }, + { + "answers": [ + "جمعه" + ], + "en_answers": [ + "friday" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-76": { + "question": "خانواده‌ها در ایام تعطیلات سنتی در ایران چه بازی‌های سنتی‌ای انجام می‌دهند؟", + "en_question": "What traditional games do families play during traditional holidays in Iran?", + "annotations": [ + { + "answers": [ + "وسطی" + ], + "en_answers": [ + "dodgeball" + ], + "count": 2 + }, + { + "answers": [ + "حکم" + ], + "en_answers": [ + "hokm" + ], + "count": 2 + }, + { + "answers": [ + "تخته نرد" + ], + "en_answers": [ + "backgammon" + ], + "count": 1 + }, + { + "answers": [ + "کارت بازی" + ], + "en_answers": [ + "playing card" + ], + "count": 1 + }, + { + "answers": [ + "بدمینتون" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "طناب بازی" + ], + "en_answers": [ + "rope jumping" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-80": { + "question": "مردم ایران در جشن‌های سنتی چه نوع لباس‌هایی می‌پوشند؟", + "en_question": "What type of clothing do people from Iran wear during traditional festivals?", + "annotations": [ + { + "answers": [ + "لباس عادی غیر سنتی مانند کت و شلوار", + "لباس عادي" + ], + "en_answers": [ + "non-traditional casual clothes such as suits and trousers", + "casual clothes" + ], + "count": 2 + }, + { + "answers": [ + "لباس های سنتی محلی" + ], + "en_answers": [ + "traditional local clothes" + ], + "count": 1 + }, + { + "answers": [ + "لباس مدرن" + ], + "en_answers": [ + "modern clothing" + ], + "count": 1 + }, + { + "answers": [ + "لباس های مربوط به منطقه خود" + ], + "en_answers": [ + "clothes related to one's region" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-as-89": { + "question": "مردم ایران چه زینت آلات سنتی جشنواره‌ای می‌پوشند؟", + "en_question": "What traditional festival accessories do people from Iran wear?", + "annotations": [ + { + "answers": [ + "آویز سنگ فیروزه" + ], + "en_answers": [ + "turquoise pendant" + ], + "count": 1 + }, + { + "answers": [ + "انگشتر عقیق" + ], + "en_answers": [ + "agate ring" + ], + "count": 1 + }, + { + "answers": [ + "كلاه جشن" + ], + "en_answers": [ + "party hat" + ], + "count": 1 + }, + { + "answers": [ + "طلا و برندهای دست‌ساز" + ], + "en_answers": [ + "gold and handmade brands" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 1 + } + }, + "New-az-05": { + "question": "معروف‌ترین منطقه برای تولید الکل در ایران کدام است؟", + "en_question": "What is the most famous region for alcohol production in Iran?", + "annotations": [ + { + "answers": [ + "شیراز" + ], + "en_answers": [ + "shiraz" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "no-answer": 1, + "idk": 0 + } + }, + "New-az-11": { + "question": "مردم ایران در فصل تابستان معمولاً چه میوه‌ای می‌خورند؟", + "en_question": "What fruit do people from Iran often eat in the summer season?", + "annotations": [ + { + "answers": [ + "هندوانه" + ], + "en_answers": [ + "watermelon" + ], + "count": 4 + }, + { + "answers": [ + "آلوچه" + ], + "en_answers": [ + "sour plum" + ], + "count": 1 + }, + { + "answers": [ + "زردآلو" + ], + "en_answers": [ + "apricot" + ], + "count": 1 + }, + { + "answers": [ + "توت فرنگی" + ], + "en_answers": [ + "strawberry" + ], + "count": 1 + }, + { + "answers": [ + "طالبی" + ], + "en_answers": [ + "cantaloupe" + ], + "count": 1 + }, + { + "answers": [ + "گوجه سبز" + ], + "en_answers": [ + "green plum" + ], + "count": 1 + }, + { + "answers": [ + "نارنگی" + ], + "en_answers": [ + "orange" + ], + "count": 1 + }, + { + "answers": [ + "پرتقال" + ], + "en_answers": [ + "orange" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-12": { + "question": "کدام منطقه در ایران به خاطر غذاهای دریایی‌اش معروف است؟", + "en_question": "Which region in Iran is known for its seafood?", + "annotations": [ + { + "answers": [ + "جنوب", + "شمال و جنوب کشور" + ], + "en_answers": [ + "south" + ], + "count": 3 + }, + { + "answers": [ + "شمال", + "شمال و جنوب کشور" + ], + "en_answers": [ + "north", + "north and south of the country" + ], + "count": 2 + }, + { + "answers": [ + "کیش" + ], + "en_answers": [ + "kish" + ], + "count": 1 + }, + { + "answers": [ + "قشم" + ], + "en_answers": [ + "qeshm" + ], + "count": 1 + }, + { + "answers": [ + "استان گیلان" + ], + "en_answers": [ + "gilan province" + ], + "count": 1 + }, + { + "answers": [ + "استان مازندارن" + ], + "en_answers": [ + "mazandaran province" + ], + "count": 1 + }, + { + "answers": [ + "استان خوزستان" + ], + "en_answers": [ + "khuzestan province" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-21": { + "question": "کدام منطقه در ایران محبوب‌ترین مقصد اسکی است؟", + "en_question": "Which region in Iran is the most popular skiing destination?", + "annotations": [ + { + "answers": [ + "دیزین" + ], + "en_answers": [ + "dizin" + ], + "count": 2 + }, + { + "answers": [ + "تهران" + ], + "en_answers": [ + "tehran" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-az-26": { + "question": "محبوب‌ترین ورزشکار هنرهای رزمی در ایران چه کسی است؟", + "en_question": "Who is the most popular martial arts player in Iran?", + "annotations": [ + { + "answers": [ + "هادی ساعی", + "هادی سایی" + ], + "en_answers": [ + "hadi saei" + ], + "count": 2 + }, + { + "answers": [ + "کیمیا علیزاده" + ], + "en_answers": [ + "kimia alizadeh" + ], + "count": 1 + }, + { + "answers": [ + "تختی" + ], + "en_answers": [ + "bed" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-27": { + "question": "کدام ورزش یکی از سریع‌ترین رشد‌ها را در ایران طی دهه گذشته داشته است؟", + "en_question": "Which sport has been one of the fastest-growing in Iran over the last decade?", + "annotations": [ + { + "answers": [ + "واليبال", + "والیبال" + ], + "en_answers": [ + "volleyball" + ], + "count": 2 + }, + { + "answers": [ + "فوتبال سالنی" + ], + "en_answers": [ + "indoor soccer" + ], + "count": 1 + }, + { + "answers": [ + "بدمینتون" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "فوتبال" + ], + "en_answers": [ + "football" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-39": { + "question": "کدام کشور محبوب‌ترین مقصد برای دانشجویان ایران برای تحصیل در خارج از کشور است؟", + "en_question": "Which country is the most popular destination for students from Iran studying abroad?", + "annotations": [ + { + "answers": [ + "کانادا" + ], + "en_answers": [ + "canada" + ], + "count": 4 + }, + { + "answers": [ + "آمریکا" + ], + "en_answers": [ + "america" + ], + "count": 2 + }, + { + "answers": [ + "ایتالیا" + ], + "en_answers": [ + "italy" + ], + "count": 2 + }, + { + "answers": [ + "آلمان" + ], + "en_answers": [ + "germany" + ], + "count": 2 + }, + { + "answers": [ + "ترکیه" + ], + "en_answers": [ + "turkey" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-49": { + "question": "معمولاً چند نفر از اعضای یک خانواده معمولی در ایران کار می‌کنند؟ (فقط از اعداد عربی (مثلاً 1) استفاده کنید.)", + "en_question": "How many people work in a typical family in Iran? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "2", + "2 نفر" + ], + "en_answers": [ + "2" + ], + "count": 4 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-60": { + "question": "در ایران، وقتی هر دو والدین کار می‌کنند، چه کسی از بچه‌ها مراقبت می‌کند؟", + "en_question": "In Iran, who takes care of kids when both parents are working?", + "annotations": [ + { + "answers": [ + "پرستار" + ], + "en_answers": [ + "nurse" + ], + "count": 3 + }, + { + "answers": [ + "بستگان" + ], + "en_answers": [ + "relatives" + ], + "count": 1 + }, + { + "answers": [ + "خواهر و برادر بزرگتر" + ], + "en_answers": [ + "older sister and brother" + ], + "count": 1 + }, + { + "answers": [ + "مهد کودک" + ], + "en_answers": [ + "kindergarten" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-69": { + "question": "نوشیدنی الکلی مورد ترجیح مردان ایران چیست؟", + "en_question": "What is the preferred alcoholic beverage for men from Iran?", + "annotations": [ + { + "answers": [ + "ویسکی" + ], + "en_answers": [ + "whiskey" + ], + "count": 2 + }, + { + "answers": [ + "ودکا", + "عرق" + ], + "en_answers": [ + "vodka" + ], + "count": 2 + }, + { + "answers": [ + "عرق کشمش" + ], + "en_answers": [ + "raisin vodka" + ], + "count": 1 + }, + { + "answers": [ + "شراب" + ], + "en_answers": [ + "wine" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 1, + "no-answer": 0 + } + }, + "New-az-70": { + "question": "نوشیدنی الکلی مورد ترجیح زنان ایران چیست؟", + "en_question": "What is the preferred alcoholic beverage for women from Iran?", + "annotations": [ + { + "answers": [ + "ودکا" + ], + "en_answers": [ + "vodka" + ], + "count": 1 + }, + { + "answers": [ + "شراب" + ], + "en_answers": [ + "wine" + ], + "count": 1 + }, + { + "answers": [ + "آبجو" + ], + "en_answers": [ + "beer" + ], + "count": 1 + }, + { + "answers": [ + "موهیتو" + ], + "en_answers": [ + "mojito" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "New-az-73": { + "question": "در ایران به طور متوسط چند نفر معمولاً در یک عروسی شرکت می‌کنند؟ (فقط اعداد عربی (مثلاً 1) را وارد کنید.)", + "en_question": "How many people on average typically attend a wedding in Iran? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "200" + ], + "en_answers": [ + "200" + ], + "count": 1 + }, + { + "answers": [ + "80" + ], + "en_answers": [ + "80" + ], + "count": 1 + }, + { + "answers": [ + "150" + ], + "en_answers": [ + "150" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-01": { + "question": "در ایران مردم معمولاً چه نوع گوشتی را کباب می کنند؟", + "en_question": "What kind of meat do people usually eat when they have barbecue in Iran?", + "annotations": [ + { + "answers": [ + "گوسفند" + ], + "en_answers": [ + "sheep" + ], + "count": 3 + }, + { + "answers": [ + "فیله" + ], + "en_answers": [ + "fillet" + ], + "count": 1 + }, + { + "answers": [ + "راسته" + ], + "en_answers": [ + "row" + ], + "count": 1 + }, + { + "answers": [ + "بال" + ], + "en_answers": [ + "wing" + ], + "count": 1 + }, + { + "answers": [ + "گاو" + ], + "en_answers": [ + "cow" + ], + "count": 1 + }, + { + "answers": [ + "مرغ" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "گوساله" + ], + "en_answers": [ + "calf" + ], + "count": 1 + }, + { + "answers": [ + "قلوه گاه" + ], + "en_answers": [ + "hip joint" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-02": { + "question": "در ایران مردم معمولاً چه ساعتی صبحانه می‌خورند؟ (به فرمت HH:MM ارائه دهید (مثلاً 18:00، 09:00).)", + "en_question": "When do people usually have breakfast in Iran? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "07:00" + ], + "en_answers": [ + "07:00" + ], + "count": 2 + }, + { + "answers": [ + "08:30" + ], + "en_answers": [ + "08:30" + ], + "count": 1 + }, + { + "answers": [ + "06:00" + ], + "en_answers": [ + "06:00" + ], + "count": 1 + }, + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-04": { + "question": "در ایران مردم معمولاً چه نوع غذاهایی را به عنوان میان وعده‌های دیر وقت می‌خورند؟", + "en_question": "What kinds of food do people usually eat for late-night snacks in Iran?", + "annotations": [ + { + "answers": [ + "ذرت مکزیکی" + ], + "en_answers": [ + "mexican corn" + ], + "count": 1 + }, + { + "answers": [ + "گردو" + ], + "en_answers": [ + "walnut" + ], + "count": 1 + }, + { + "answers": [ + "پسته" + ], + "en_answers": [ + "pistachio" + ], + "count": 1 + }, + { + "answers": [ + "میوه" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + }, + { + "answers": [ + "کدو حلوایی" + ], + "en_answers": [ + "pumpkin" + ], + "count": 1 + }, + { + "answers": [ + "شله زرد" + ], + "en_answers": [ + "sholeh zard" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-05": { + "question": " در ایران معروف‌ترین غذای تند چیست؟", + "en_question": "What is the most famous spicy dish in Iran?", + "annotations": [ + { + "answers": [ + "سوسیس بندری" + ], + "en_answers": [ + "bandari sausage" + ], + "count": 1 + }, + { + "answers": [ + "قلیه ماهی" + ], + "en_answers": [ + "fish stew" + ], + "count": 1 + }, + { + "answers": [ + "بندری" + ], + "en_answers": [ + "bandari" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-07": { + "question": "در ایران مردم معمولاً چه غذاهایی را با نوشیدنی‌های الکلی سخت همراه می‌کنند؟", + "en_question": "What food items do people typically pair with hard liquor in Iran?", + "annotations": [ + { + "answers": [ + "آجیل" + ], + "en_answers": [ + "nuts" + ], + "count": 2 + }, + { + "answers": [ + "جوجه کباب" + ], + "en_answers": [ + "chicken kebab" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 0, + "no-answer": 0 + } + }, + "New-ch-08": { + "question": "در ایران چه چاشنی ضروری در آشپزی غیرقابل اجتناب است؟", + "en_question": "What seasoning is indispensable in cooking in Iran?", + "annotations": [ + { + "answers": [ + "زردچوبه" + ], + "en_answers": [ + "turmeric" + ], + "count": 3 + }, + { + "answers": [ + "فلفل" + ], + "en_answers": [ + "pepper" + ], + "count": 3 + }, + { + "answers": [ + "نمک" + ], + "en_answers": [ + "salt" + ], + "count": 2 + }, + { + "answers": [ + "پیاز سرخ کرده" + ], + "en_answers": [ + "fried onions" + ], + "count": 1 + }, + { + "answers": [ + "نمك" + ], + "en_answers": [ + "salt" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-09": { + "question": "در ایران مردم معمولاً چه غذاهایی را هنگام سردی هوا میخورند؟", + "en_question": "What food do people typically consume when the weather is cold in Iran?", + "annotations": [ + { + "answers": [ + "آش" + ], + "en_answers": [ + "ash (a type of thick soup or stew)" + ], + "count": 3 + }, + { + "answers": [ + "سوپ", + "آش رشته و سوپ" + ], + "en_answers": [ + "soup" + ], + "count": 3 + }, + { + "answers": [ + "آش رشته", + "آش رشته و سوپ" + ], + "en_answers": [ + "ash reshteh and soup" + ], + "count": 1 + }, + { + "answers": [ + "آبگوشت" + ], + "en_answers": [ + "abgoosht" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-13": { + "question": "در ایران معروف‌ترین برند الکل چیست؟", + "en_question": "What is the most famous alcohol brand in Iran?", + "annotations": [], + "idks": { + "not-applicable": 4, + "no-answer": 1, + "idk": 0 + } + }, + "New-ch-14": { + "question": "درایران مردم معمولاً وقتی بیمارمی‌شوند چه غذاهایی می‌خورند؟", + "en_question": "What foods do people usually eat when they are sick in Iran?", + "annotations": [ + { + "answers": [ + "سوپ" + ], + "en_answers": [ + "soup" + ], + "count": 4 + }, + { + "answers": [ + "سوپ جو" + ], + "en_answers": [ + "barley soup" + ], + "count": 1 + }, + { + "answers": [ + "شلغم" + ], + "en_answers": [ + "turnip" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-15": { + "question": "در ایران مردم معمولاً چه نوع غذاهای آماده/ خوراکی را از سوپرمارکت‌ ها می‌خرند؟", + "en_question": "What prepared/ready-to-eat food do people typically buy at supermarkets in Iran?", + "annotations": [ + { + "answers": [ + "الویه" + ], + "en_answers": [ + "olivier salad" + ], + "count": 2 + }, + { + "answers": [ + "چيپس" + ], + "en_answers": [ + "chips" + ], + "count": 1 + }, + { + "answers": [ + "سسیس بندری" + ], + "en_answers": [ + "bandari sauce" + ], + "count": 1 + }, + { + "answers": [ + "کالباس" + ], + "en_answers": [ + "sausage" + ], + "count": 1 + }, + { + "answers": [ + "ناگت" + ], + "en_answers": [ + "nugget" + ], + "count": 1 + }, + { + "answers": [ + "کلاب ساندویچ" + ], + "en_answers": [ + "club sandwich" + ], + "count": 1 + }, + { + "answers": [ + "ساندویچ کالباس" + ], + "en_answers": [ + "sausage sandwich" + ], + "count": 1 + }, + { + "answers": [ + "پیراشکی سرد" + ], + "en_answers": [ + "cold pastry" + ], + "count": 1 + }, + { + "answers": [ + "ساندویچ" + ], + "en_answers": [ + "sandwich" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-16": { + "question": "در ایران معروف‌ ترین فیلم ورزشی چیست؟", + "en_question": "What is the most famous sports-related movie in Iran?", + "annotations": [ + { + "answers": [ + "فوتبالیستا" + ], + "en_answers": [ + "footballers" + ], + "count": 1 + }, + { + "answers": [ + "تختی" + ], + "en_answers": [ + "bed" + ], + "count": 1 + }, + { + "answers": [ + "چهل و دو" + ], + "en_answers": [ + "forty-two" + ], + "count": 1 + }, + { + "answers": [ + "آفساید" + ], + "en_answers": [ + "offside" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "نمیدانم": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ch-17": { + "question": "در ایران مردم معمولاً بیشتر از همه دوست دارند کدام ورزش هیجان‌انگیز را امتحان کنند؟", + "en_question": "What extreme sport do people generally wish to try the most in Iran?", + "annotations": [ + { + "answers": [ + "اسکی" + ], + "en_answers": [ + "skiing" + ], + "count": 1 + }, + { + "answers": [ + "زیپ لاین" + ], + "en_answers": [ + "zip line" + ], + "count": 1 + }, + { + "answers": [ + "پارک های آبی" + ], + "en_answers": [ + "water parks" + ], + "count": 1 + }, + { + "answers": [ + "شنا" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ch-18": { + "question": "در ایران کدام رشته‌ ی دو و میدانی در طول مسابقات محبوب‌ترین برای تماشا است؟", + "en_question": "Which track and field event is the most popular to watch during competitions in Iran?", + "annotations": [ + { + "answers": [ + "پرتاب دیسک" + ], + "en_answers": [ + "discus throw" + ], + "count": 1 + }, + { + "answers": [ + "پرش طول" + ], + "en_answers": [ + "long jump" + ], + "count": 1 + }, + { + "answers": [ + "پرش ارتفاع" + ], + "en_answers": [ + "high jump" + ], + "count": 1 + }, + { + "answers": [ + "پرتاب نيزه" + ], + "en_answers": [ + "javelin throw" + ], + "count": 1 + }, + { + "answers": [ + "دو" + ], + "en_answers": [ + "run" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 3, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ch-19": { + "question": "در ایران کدام رویداد ژیمناستیک در طول مسابقات محبوب‌ترین است تا تماشا شود؟", + "en_question": "Which gymnastics event is the most popular to watch during competitions in Iran?", + "annotations": [ + { + "answers": [ + "ژيميناستيك محبوب نيست" + ], + "en_answers": [ + "gymnastics is not popular" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 2, + "not-applicable": 2 + } + }, + "New-ch-23": { + "question": "در ایران معروف‌ ترین بازیکن تنیس روی میز چه کسی است؟", + "en_question": "Who is the most famous table tennis player in Iran?", + "annotations": [ + { + "answers": [ + "نوشاد عالمیان" + ], + "en_answers": [ + "noshad alamiyan" + ], + "count": 2 + }, + { + "answers": [ + "عالمیان" + ], + "en_answers": [ + "alamiyan" + ], + "count": 1 + }, + { + "answers": [ + "نیما عالمیان" + ], + "en_answers": [ + "nima alamian" + ], + "count": 1 + } + ], + "idks": { + "نمیدانم": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-26": { + "question": "در ایران در المپیک زمستانی، کدام رویداد برای تماشا محبوب‌ ترین است؟", + "en_question": "In the Winter Olympics, which event is the most popular to watch in Iran?", + "annotations": [ + { + "answers": [ + "اسکی" + ], + "en_answers": [ + "skiing" + ], + "count": 1 + }, + { + "answers": [ + "هیچکدام" + ], + "en_answers": [ + "none" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 2, + "no-answer": 1 + } + }, + "New-ch-27": { + "question": "در ایران معروف‌ ترین بوکسور چه کسی است؟", + "en_question": "Who is the most famous boxer in Iran?", + "annotations": [ + { + "answers": [ + "احسان روزبهانی", + "احسان روزبهاني" + ], + "en_answers": [ + "ehsan rouzbahani" + ], + "count": 2 + }, + { + "answers": [ + "علی حبیبی" + ], + "en_answers": [ + "ali habibi" + ], + "count": 1 + }, + { + "answers": [ + "محمدعلی کلی" + ], + "en_answers": [ + "muhammad ali clay" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "New-ch-30": { + "question": "در ایران مشهورترین ورزشکار دو و میدانی چه کسی است؟ ", + "en_question": "Who is the most famous track and field athlete in Iran?", + "annotations": [ + { + "answers": [ + "حامد حدادی" + ], + "en_answers": [ + "hamed haddadi" + ], + "count": 1 + }, + { + "answers": [ + "حسن تفتیان" + ], + "en_answers": [ + "hassan taftian" + ], + "count": 1 + }, + { + "answers": [ + "احسان حدادی" + ], + "en_answers": [ + "ehsan hadadi" + ], + "count": 1 + } + ], + "idks": { + "idk": 6, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-31": { + "question": "در ایران والدین بیشتر امیدوارند فرزندانشان چه شغلی را دنبال کنند؟ ", + "en_question": "What job do parents most hope their children will pursue in Iran?", + "annotations": [ + { + "answers": [ + "پزشکی", + "دکتر" + ], + "en_answers": [ + "medical", + "doctor" + ], + "count": 4 + }, + { + "answers": [ + "مهندسی" + ], + "en_answers": [ + "engineering" + ], + "count": 2 + }, + { + "answers": [ + "وکالت" + ], + "en_answers": [ + "lawyer" + ], + "count": 1 + }, + { + "answers": [ + "معلمی" + ], + "en_answers": [ + "teaching" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-32": { + "question": "در ایران مردم معمولاً از چه نرم‌ افزارهای اداری در محل کار استفاده می‌کنند؟ ", + "en_question": "What office software do people typically use in the workplace in Iran?", + "annotations": [ + { + "answers": [ + "آفیس", + "مایکروسافت افیس", + "مایکروسافت آفیس" + ], + "en_answers": [ + "office", + "microsoft office" + ], + "count": 3 + }, + { + "answers": [ + "مایکروسافت ورد" + ], + "en_answers": [ + "microsoft word" + ], + "count": 1 + }, + { + "answers": [ + "مایکروسافت اکسل" + ], + "en_answers": [ + "microsoft excel" + ], + "count": 1 + }, + { + "answers": [ + "ادوبی آکروبات" + ], + "en_answers": [ + "adobe acrobat" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ch-38": { + "question": "در ایران کدام شهرها یا مناطق به خاطر فعالیت‌های واردات و صادرات شناخته شده‌اند؟", + "en_question": "Which cities or regions are known for their import and export activities in Iran?", + "annotations": [ + { + "answers": [ + "چابهار" + ], + "en_answers": [ + "chabahar" + ], + "count": 2 + }, + { + "answers": [ + "قشم" + ], + "en_answers": [ + "qeshm" + ], + "count": 2 + }, + { + "answers": [ + "تهران" + ], + "en_answers": [ + "tehran" + ], + "count": 1 + }, + { + "answers": [ + "شیراز" + ], + "en_answers": [ + "shiraz" + ], + "count": 1 + }, + { + "answers": [ + "اصفهان" + ], + "en_answers": [ + "isfahan" + ], + "count": 1 + }, + { + "answers": [ + "کردستان" + ], + "en_answers": [ + "kurdistan" + ], + "count": 1 + }, + { + "answers": [ + "ارس" + ], + "en_answers": [ + "aras" + ], + "count": 1 + }, + { + "answers": [ + "انزلی" + ], + "en_answers": [ + "anzali" + ], + "count": 1 + }, + { + "answers": [ + "بندرعباس" + ], + "en_answers": [ + "bandar abbas" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-39": { + "question": "در ایران چه پلتفرمی به طور معمول در صنعت تجارت الکترونیک استفاده می‌شود؟", + "en_question": "What platform is commonly used in the e-commerce industry in Iran?", + "annotations": [ + { + "answers": [ + "دیجی کالا" + ], + "en_answers": [ + "digikala" + ], + "count": 3 + }, + { + "answers": [ + "تلگرام" + ], + "en_answers": [ + "telegram" + ], + "count": 1 + }, + { + "answers": [ + "اینستاگرام" + ], + "en_answers": [ + "instagram" + ], + "count": 1 + } + ], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-44": { + "question": " در ایران مدت زمان معمول دوره آزمایشی برای کارمندان جدید قبل از امضای قرارداد رسمی چقدر است؟ (مثلاً ۱ ماه).", + "en_question": "How long is the typical probation period for new employees before signing a formal contract in Iran? (e.g., 1 month).", + "annotations": [ + { + "answers": [ + "3 ماه" + ], + "en_answers": [ + "3 months" + ], + "count": 2 + }, + { + "answers": [ + "۱ ماه" + ], + "en_answers": [ + "1 month" + ], + "count": 1 + }, + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-45": { + "question": "در ایران جوانان معمولاً برای راه‌اندازی کسب‌ وکار از چه صنایعی استفاده می‌کنند؟", + "en_question": "Which industries do young people typically choose to start businesses in Iran?", + "annotations": [ + { + "answers": [ + "فرش فروشی" + ], + "en_answers": [ + "carpet store" + ], + "count": 1 + }, + { + "answers": [ + "دست فروشی" + ], + "en_answers": [ + "street vending" + ], + "count": 1 + }, + { + "answers": [ + "کافه" + ], + "en_answers": [ + "cafe" + ], + "count": 1 + }, + { + "answers": [ + "صنعت دیجیتال" + ], + "en_answers": [ + "digital industry" + ], + "count": 1 + }, + { + "answers": [ + "صنعت پوشاک" + ], + "en_answers": [ + "clothing industry" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ch-49": { + "question": "در ایران رایج‌ ترین روش ارتباط از راه دور بین اعضای خانواده چیست؟", + "en_question": "What is the most common way for family members to communicate remotely in Iran?", + "annotations": [ + { + "answers": [ + "تماس تصویری", + "ویدیو کال", + "تماس ویدیویی" + ], + "en_answers": [ + "video call" + ], + "count": 3 + }, + { + "answers": [ + "ایمو" + ], + "en_answers": [ + "emo" + ], + "count": 1 + }, + { + "answers": [ + "تماس تلفني" + ], + "en_answers": [ + "phone call" + ], + "count": 1 + }, + { + "answers": [ + "اس ام اس" + ], + "en_answers": [ + "sms" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-51": { + "question": "در ایران معمولاً چه نوع اقامتگاهی برای سفرهای خانوادگی رزرو می‌شود؟", + "en_question": "What form of accommodation is typically booked for family trips in Iran?", + "annotations": [ + { + "answers": [ + "هتل" + ], + "en_answers": [ + "hotel" + ], + "count": 5 + }, + { + "answers": [ + "ویلا", + "ویلایی" + ], + "en_answers": [ + "villa" + ], + "count": 3 + }, + { + "answers": [ + "بومگردی" + ], + "en_answers": [ + "ecotourism" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-54": { + "question": "در ایران معمولاً کدام میوه برای شام‌ های خانوادگی بیشتر آماده می‌شود؟ ", + "en_question": "Which fruit is usually prepared the most for family dinners in Iran?", + "annotations": [ + { + "answers": [ + "سیب" + ], + "en_answers": [ + "apple" + ], + "count": 2 + }, + { + "answers": [ + "گوجه" + ], + "en_answers": [ + "tomato" + ], + "count": 1 + }, + { + "answers": [ + "هلو" + ], + "en_answers": [ + "peach" + ], + "count": 1 + }, + { + "answers": [ + "پرتقال" + ], + "en_answers": [ + "orange" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-64": { + "question": "دانشجویان دانشگاه در ایران معمولاً در هفته چند ساعت کلاس دارند؟ (فقط اعداد عربی (مثلا 1) را وارد کنید.)", + "en_question": "How many hours of classes do university students typically have per week in Iran? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + }, + { + "answers": [ + "32" + ], + "en_answers": [ + "32" + ], + "count": 1 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + }, + { + "answers": [ + "15.3" + ], + "en_answers": [ + "15.3" + ], + "count": 1 + }, + { + "answers": [ + "42" + ], + "en_answers": [ + "42" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-66": { + "question": " در ایران شهریه معمولی برای هر ترم دبیرستان‌های دولتی چقدر است؟ (فقط اعداد عربی (مثلاً 1) را وارد کنید.)", + "en_question": "What is the typical tuition fee per semester for public high schools in Iran? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "۱۰۰۰۰۰۰ تومان", + "1 میلیون تومان", + "1" + ], + "en_answers": [ + "1000000 toman" + ], + "count": 2 + }, + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 2 + }, + { + "answers": [ + "۵۰۰۰۰۰۰ تومان", + "5" + ], + "en_answers": [ + "5000000 toman" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-70": { + "question": "دانشجویان دانشگاه‌ها در ایران چه دروس اجباری مشترکی دارند؟", + "en_question": "What compulsory courses do university students have in common in Iran?", + "annotations": [ + { + "answers": [ + "دروس دینی", + "دینی" + ], + "en_answers": [ + "religious studies", + "religious" + ], + "count": 2 + }, + { + "answers": [ + "دروس اسلامی و دینی و تنظیم خانواده" + ], + "en_answers": [ + "islamic and religious studies and family planning" + ], + "count": 1 + }, + { + "answers": [ + "زبان فارسی" + ], + "en_answers": [ + "persian language" + ], + "count": 1 + }, + { + "answers": [ + "زبان انگلیسی" + ], + "en_answers": [ + "english language" + ], + "count": 1 + }, + { + "answers": [ + "احکام اسلامی و ریشه های انقلاب" + ], + "en_answers": [ + "islamic rulings and the roots of the revolution" + ], + "count": 1 + }, + { + "answers": [ + "وصایای امام" + ], + "en_answers": [ + "imam's wills" + ], + "count": 1 + }, + { + "answers": [ + "دفاع مقدس" + ], + "en_answers": [ + "sacred defense" + ], + "count": 1 + }, + { + "answers": [ + "اندیشه اسلامی" + ], + "en_answers": [ + "islamic thought" + ], + "count": 1 + }, + { + "answers": [ + "تاریخ انقلاب اسلامی" + ], + "en_answers": [ + "date of the islamic revolution" + ], + "count": 1 + }, + { + "answers": [ + "تاریخ صدر اسلام یا امامت" + ], + "en_answers": [ + "early islamic history or imamate" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-71": { + "question": "در ایران میانگین تعداد دانش‌آموزان در کلاس‌های دبیرستان چقدر است؟ (فقط اعداد عربی (مثلاً 1) را وارد کنید.)", + "en_question": "What is the average class size in high schools in Iran? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 3 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + }, + { + "answers": [ + "27" + ], + "en_answers": [ + "27" + ], + "count": 1 + }, + { + "answers": [ + "35" + ], + "en_answers": [ + "35" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-72": { + "question": "در ایران کدام رشته تحصیلی بیشترین امکان اشتغال را فراهم می‌آورد؟ ", + "en_question": "Which major is considered most conducive to employment in Iran?", + "annotations": [ + { + "answers": [ + "مهندسی" + ], + "en_answers": [ + "engineering" + ], + "count": 2 + }, + { + "answers": [ + "پزشکی" + ], + "en_answers": [ + "medical" + ], + "count": 2 + }, + { + "answers": [ + "پرستاری" + ], + "en_answers": [ + "nursing" + ], + "count": 1 + }, + { + "answers": [ + "تربیت معلم" + ], + "en_answers": [ + "teacher training" + ], + "count": 1 + }, + { + "answers": [ + "مهندسی کامپیوتر" + ], + "en_answers": [ + "computer engineering" + ], + "count": 1 + }, + { + "answers": [ + "کار ساختمان" + ], + "en_answers": [ + "construction work" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-73": { + "question": "در ایران چه نوع باشگاه‌ هایی بین دانشجویان دانشگاه‌ها محبوب‌ ترهستند؟", + "en_question": "What type of clubs are most popular among university students in Iran?", + "annotations": [ + { + "answers": [ + "فوتبال" + ], + "en_answers": [ + "football" + ], + "count": 1 + }, + { + "answers": [ + "باشگاه ورزشی" + ], + "en_answers": [ + "gym" + ], + "count": 1 + }, + { + "answers": [ + "بدنسازی" + ], + "en_answers": [ + "bodybuilding" + ], + "count": 1 + }, + { + "answers": [ + "والیبال" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-74": { + "question": "در ایران دانشجویان دانشگاه‌ها عمدتاً کجا زندگی می‌کنند؟ ", + "en_question": "What types of accommodation do university students in Iran typically live in?", + "annotations": [ + { + "answers": [ + "خوابگاه" + ], + "en_answers": [ + "dormitory" + ], + "count": 5 + }, + { + "answers": [ + "با خانواده" + ], + "en_answers": [ + "with family" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-75": { + "question": " در ایران مدت زمان هر کلاس درسی برای دانش‌آموزان مقطع متوسطه چقدر است (دقیقه)؟ (فقط اعداد عربی (مثلاً 1) را وارد کنید.)", + "en_question": "How long is each class period for middle school students in Iran (minutes)? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "90", + "1.3" + ], + "en_answers": [ + "90" + ], + "count": 4 + }, + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-78": { + "question": "در ایران زنان بازنشسته معمولاً از چه فعالیت‌های تفریحی لذت می‌برند؟ ", + "en_question": "What leisure activities do retired women typically like in Iran?", + "annotations": [ + { + "answers": [ + "اشپزی" + ], + "en_answers": [ + "cooking" + ], + "count": 1 + }, + { + "answers": [ + "سفرکردن" + ], + "en_answers": [ + "traveling" + ], + "count": 1 + }, + { + "answers": [ + "پیاده روی" + ], + "en_answers": [ + "walking" + ], + "count": 1 + }, + { + "answers": [ + "خانه داری" + ], + "en_answers": [ + "housekeeping" + ], + "count": 1 + }, + { + "answers": [ + "هنر" + ], + "en_answers": [ + "art" + ], + "count": 1 + }, + { + "answers": [ + "ورزش صبحگاهی در پاک" + ], + "en_answers": [ + "morning exercise in the park" + ], + "count": 1 + }, + { + "answers": [ + "بافتن لباس" + ], + "en_answers": [ + "knitting clothes" + ], + "count": 1 + }, + { + "answers": [ + "دورهمی با دوستان" + ], + "en_answers": [ + "gathering with friends" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-79": { + "question": " در ایرانمردان بازنشسته معمولاً از چه فعالیت‌های تفریحی لذت می‌برند؟ ", + "en_question": "What leisure activities do retired men typically like in Iran?", + "annotations": [ + { + "answers": [ + "صحبت در مورد سیاست" + ], + "en_answers": [ + "talking about politics" + ], + "count": 1 + }, + { + "answers": [ + "پارک" + ], + "en_answers": [ + "park" + ], + "count": 1 + }, + { + "answers": [ + "پیاده روی" + ], + "en_answers": [ + "walking" + ], + "count": 1 + }, + { + "answers": [ + "معمولاً لذت نمیبرند چون مجبورا کار کنند" + ], + "en_answers": [ + "they usually don't enjoy because they have to work" + ], + "count": 1 + }, + { + "answers": [ + "قدم زدن در پارک" + ], + "en_answers": [ + "walking in the park" + ], + "count": 1 + }, + { + "answers": [ + "استعمال تریاک" + ], + "en_answers": [ + "opium use" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-80": { + "question": " در ایران در چه ایام تعطیلی مردم معمولاً از اماکن مذهبی (معابد، کلیساها و غیره) بازدید می‌کنند؟", + "en_question": "During which holidays do people typically visit religious sites (temples, churches, etc.) in Iran?", + "annotations": [ + { + "answers": [ + "جمعه" + ], + "en_answers": [ + "friday" + ], + "count": 1 + }, + { + "answers": [ + "رمضان", + "رمضان و محرم" + ], + "en_answers": [ + "ramadan and muharram" + ], + "count": 1 + }, + { + "answers": [ + "محرم", + "رمضان و محرم" + ], + "en_answers": [], + "count": 1 + }, + { + "answers": [ + "فطر" + ], + "en_answers": [ + "eid al-fitr" + ], + "count": 1 + }, + { + "answers": [ + "اعياد مذهبي" + ], + "en_answers": [ + "religious holidays" + ], + "count": 1 + }, + { + "answers": [ + "تعطيلات آخر هفته" + ], + "en_answers": [ + "weekend holidays" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-81": { + "question": "در ایران هدایای معمول برای جشن پا گشایی چیست؟ ", + "en_question": "What are the typical housewarming gifts in Iran?", + "annotations": [ + { + "answers": [ + "سکه طلا", + "سکه" + ], + "en_answers": [ + "gold coin", + "coin" + ], + "count": 3 + }, + { + "answers": [ + "پول" + ], + "en_answers": [ + "money" + ], + "count": 2 + }, + { + "answers": [ + "گل نقره" + ], + "en_answers": [ + "silver flower" + ], + "count": 1 + }, + { + "answers": [ + "پتو" + ], + "en_answers": [ + "blanket" + ], + "count": 1 + }, + { + "answers": [ + "کتری" + ], + "en_answers": [ + "kettle" + ], + "count": 1 + }, + { + "answers": [ + "حوله تن پوش" + ], + "en_answers": [ + "bathrobe" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "بستگی به فرهنگ خانواده دارد.": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-82": { + "question": "در ایران مراسم عروسی معمولاً چه ساعتی شروع می‌شود؟ (به فرمت HH:MM ارائه دهید (مثلاً 18:00، 09:00).)", + "en_question": "At what time do weddings typically start in Iran? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "19:00" + ], + "en_answers": [ + "19:00" + ], + "count": 4 + }, + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 1 + }, + { + "answers": [ + "00:30" + ], + "en_answers": [ + "00:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-83": { + "question": "در ایران کدام شهر بیشترین جشنواره‌ها را برگزار می‌کند؟ ", + "en_question": "Which city in Iran hosts festivals the most?", + "annotations": [ + { + "answers": [ + "تهران" + ], + "en_answers": [ + "tehran" + ], + "count": 4 + }, + { + "answers": [ + "اصفهان" + ], + "en_answers": [ + "isfahan" + ], + "count": 1 + }, + { + "answers": [ + "شیراز" + ], + "en_answers": [ + "shiraz" + ], + "count": 1 + }, + { + "answers": [ + "کرج" + ], + "en_answers": [ + "karaj" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-84": { + "question": "در ایران مردم معمولاً چه رنگ لباسی را هنگام شرکت در مراسم عروسی می‌پوشند؟ ", + "en_question": "What color of clothing do people typically wear when attending weddings in Iran?", + "annotations": [ + { + "answers": [ + "سفید" + ], + "en_answers": [ + "white" + ], + "count": 2 + }, + { + "answers": [ + "قرمز" + ], + "en_answers": [ + "red" + ], + "count": 1 + }, + { + "answers": [ + "سیاه" + ], + "en_answers": [ + "black" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "به جز عروس و داماد رنگ خاصی برای مراسم عروسی وجود ندارد عروس سفید میپوشد و داماد سیاه": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-85": { + "question": "در ایران مردم معمولاً چه رنگ لباسی را هنگام شرکت در مراسم خاکسپاری می‌پوشند؟", + "en_question": "What color of clothing do people typically wear when attending funerals in Iran?", + "annotations": [ + { + "answers": [ + "مشکی", + "سیاه", + "مشكي" + ], + "en_answers": [ + "black" + ], + "count": 5 + }, + { + "answers": [ + "تيره" + ], + "en_answers": [ + "dark" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-01": { + "question": "در ایران چه تنقلاتی در سینماها خورده می‌شود؟", + "en_question": "Which snack is eaten in the cinema in Iran?", + "annotations": [ + { + "answers": [ + "پاپکرن", + "پفیلا", + "چس فیل", + "ذرت بوداده" + ], + "en_answers": [ + "popcorn" + ], + "count": 4 + }, + { + "answers": [ + "چیپس" + ], + "en_answers": [ + "chips" + ], + "count": 1 + }, + { + "answers": [ + "نوشابه" + ], + "en_answers": [ + "soda" + ], + "count": 1 + }, + { + "answers": [ + "یخ در بهشت" + ], + "en_answers": [ + "slushy" + ], + "count": 1 + }, + { + "answers": [ + "پفک" + ], + "en_answers": [ + "cheese puff" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-02": { + "question": "در ایران محبوب‌ ترین طعم چیپس چیست؟", + "en_question": "What is the most popular chip/crisp flavour in Iran?", + "annotations": [ + { + "answers": [ + "سرکه نمکی" + ], + "en_answers": [ + "salt vinegar" + ], + "count": 3 + }, + { + "answers": [ + "پیازو جعفری", + "پیاز جعفری" + ], + "en_answers": [ + "onion and parsley", + "shallots" + ], + "count": 2 + }, + { + "answers": [ + "ماست موسیر" + ], + "en_answers": [ + "yogurt with shallots" + ], + "count": 1 + }, + { + "answers": [ + "نمک یا فلفل" + ], + "en_answers": [ + "salt or pepper" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-04": { + "question": "در ایران یک سرآشپز معروف کیست؟ ", + "en_question": "Who is a popular celebrity chef in Iran?", + "annotations": [ + { + "answers": [ + "سامان گلریز" + ], + "en_answers": [ + "saman golriz" + ], + "count": 2 + }, + { + "answers": [ + "نواب ابراهیمی" + ], + "en_answers": [ + "nawab ebrahimi" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 3, + "not-applicable": 0 + } + }, + "New-en-05": { + "question": "در ایران کدام غذا گزینه‌ ای مقرون‌ به‌ صرفه و سریع برای وعده‌ ی غذایی است؟ ", + "en_question": "Which food is a cost-effective and quick meal option in Iran?", + "annotations": [ + { + "answers": [ + "نیمرو" + ], + "en_answers": [ + "fried egg" + ], + "count": 2 + }, + { + "answers": [ + "تخم مرغ" + ], + "en_answers": [ + "egg" + ], + "count": 1 + }, + { + "answers": [ + "فلافل" + ], + "en_answers": [ + "falafel" + ], + "count": 1 + }, + { + "answers": [ + "سمبوسه" + ], + "en_answers": [ + "samosa" + ], + "count": 1 + }, + { + "answers": [ + "املت" + ], + "en_answers": [ + "omelette" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-07": { + "question": "در ایران محبوب‌ ترین برنامه‌ های آشپزی چه برنامه‌ هایی هستند؟", + "en_question": "What are the most popular cooking shows in Iran?", + "annotations": [ + { + "answers": [ + "برنامه سامان گلریز" + ], + "en_answers": [ + "saman golriz program" + ], + "count": 1 + }, + { + "answers": [ + "ویدیوهای محبوب در یوتیوب" + ], + "en_answers": [ + "popular videos on youtube" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 2, + "not-applicable": 0 + } + }, + "New-en-08": { + "question": "در ایران محبوب‌ ترین برند شکلات چیست؟", + "en_question": "What is the most popular chocolate brand in Iran?", + "annotations": [ + { + "answers": [ + "شیرین عسل", + "شيرين عسل" + ], + "en_answers": [ + "shirin asal" + ], + "count": 3 + }, + { + "answers": [ + "شونیز", + "شومیز" + ], + "en_answers": [ + "shooniz" + ], + "count": 2 + }, + { + "answers": [ + "پارمیدا" + ], + "en_answers": [ + "parmida" + ], + "count": 1 + }, + { + "answers": [ + "فرمند" + ], + "en_answers": [ + "farmand" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-10": { + "question": "در ایران پرمصرف‌ ترین پنیر چیست؟", + "en_question": "What is the most eaten cheese in Iran?", + "annotations": [ + { + "answers": [ + "تبريزي", + "پنیر تبریز" + ], + "en_answers": [ + "tabrizi", + "tabriz cheese" + ], + "count": 2 + }, + { + "answers": [ + "لیقوان" + ], + "en_answers": [ + "liqvan" + ], + "count": 1 + }, + { + "answers": [ + "پنیر خامه" + ], + "en_answers": [ + "cream cheese" + ], + "count": 1 + }, + { + "answers": [ + "صبحانه" + ], + "en_answers": [ + "breakfast" + ], + "count": 1 + }, + { + "answers": [ + "پنیر سفید" + ], + "en_answers": [ + "white cheese" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-11": { + "question": "در ایران کدام یک از سبزیجات کمترین مورد پسند است؟", + "en_question": "What is the most disliked vegetable in Iran?", + "annotations": [ + { + "answers": [ + "بروکلی" + ], + "en_answers": [ + "broccoli" + ], + "count": 1 + }, + { + "answers": [ + "چقندر" + ], + "en_answers": [ + "beetroot" + ], + "count": 1 + }, + { + "answers": [ + "کرفس" + ], + "en_answers": [ + "celery" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-12": { + "question": "در ایران چه غذاهایی معمولاً در فودکورت‌ها یافت می‌شود؟", + "en_question": "What food is most commonly found in food courts in Iran?", + "annotations": [ + { + "answers": [ + "پیتزا" + ], + "en_answers": [ + "pizza" + ], + "count": 4 + }, + { + "answers": [ + "همبرگر", + "برگر" + ], + "en_answers": [ + "hamburger", + "burger" + ], + "count": 3 + }, + { + "answers": [ + "کباب" + ], + "en_answers": [ + "kebab" + ], + "count": 2 + }, + { + "answers": [ + "فست فود" + ], + "en_answers": [ + "fast food" + ], + "count": 1 + }, + { + "answers": [ + "مرغ سوخاری" + ], + "en_answers": [ + "fried chicken" + ], + "count": 1 + }, + { + "answers": [ + "پاستا" + ], + "en_answers": [ + "pasta" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-17": { + "question": "در ایران متداول‌ ترین وسایل تشویقی که توسط طرفداران ورزشی استفاده می‌شود چیست؟ ", + "en_question": "What are the most common cheering tools used by sports fans in Iran?", + "annotations": [ + { + "answers": [ + "بوق", + "بوق ورزشی", + "بوق", + "بوق و پرچم تیم مرتبط" + ], + "en_answers": [ + "horn", + "sports horn" + ], + "count": 4 + }, + { + "answers": [ + "پرچم تیم مرتبط", + "بوق و پرچم تیم مرتبط", + "پرچم" + ], + "en_answers": [ + "related team's horn and flag", + "flag" + ], + "count": 2 + }, + { + "answers": [ + "شیپور" + ], + "en_answers": [ + "trumpet" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-18": { + "question": "در ایران طرفداران چه چیزهایی را هنگام حضور در یک بازی زنده همراه خود می‌آورند؟ ", + "en_question": "What do fans bring with them when attending a live game in Iran?", + "annotations": [ + { + "answers": [ + "چیپس" + ], + "en_answers": [ + "chips" + ], + "count": 2 + }, + { + "answers": [ + "شال" + ], + "en_answers": [ + "shawl" + ], + "count": 1 + }, + { + "answers": [ + "ذرت" + ], + "en_answers": [ + "corn" + ], + "count": 1 + }, + { + "answers": [ + "پفک" + ], + "en_answers": [ + "cheese puffs" + ], + "count": 1 + }, + { + "answers": [ + "طبل" + ], + "en_answers": [ + "drum" + ], + "count": 1 + }, + { + "answers": [ + "بوق" + ], + "en_answers": [ + "horn" + ], + "count": 1 + }, + { + "answers": [ + "نوشیدنی غیرالکلی" + ], + "en_answers": [ + "non-alcoholic beverage" + ], + "count": 1 + }, + { + "answers": [ + "انواع تخمه" + ], + "en_answers": [ + "types of seeds" + ], + "count": 1 + }, + { + "answers": [ + "شیپور" + ], + "en_answers": [ + "trumpet" + ], + "count": 1 + }, + { + "answers": [ + "کلاه طرفداری" + ], + "en_answers": [ + "fan hat" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-19": { + "question": "در ایران معروف‌ترین ورزشگاه ورزشی کدام است؟ ", + "en_question": "What is the most well known sporting stadium in Iran?", + "annotations": [ + { + "answers": [ + "آزادی", + "استادیوم آزادی" + ], + "en_answers": [ + "freedom", + "azadi stadium" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-23": { + "question": "در ایران معروف‌ ترین بازیکن پارالمپیک چه کسی است؟", + "en_question": "Who is the most famous Paralympian in Iran?", + "annotations": [ + { + "answers": [ + "رحمانی" + ], + "en_answers": [ + "rahmani" + ], + "count": 1 + }, + { + "answers": [ + "سیامند رحمان" + ], + "en_answers": [ + "siamand rahman" + ], + "count": 1 + }, + { + "answers": [ + "زهرا نعمتی" + ], + "en_answers": [ + "zahra nemati" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "نمیدانم": 1, + "not-applicable": 0 + } + }, + "New-en-26": { + "question": "در ایران معروف‌ترین شعار ورزشی چیست؟ ", + "en_question": "What is the best recognized sporting chant in Iran?", + "annotations": [ + { + "answers": [ + "پرسپولیس، سرور استقلاله" + ], + "en_answers": [ + "persepolis is superior to esteghlal" + ], + "count": 1 + }, + { + "answers": [ + "داور عزیزم، دقت کن" + ], + "en_answers": [ + "my dear judge, please pay attention" + ], + "count": 1 + }, + { + "answers": [ + "داور کس ننت" + ], + "en_answers": [ + "your referee is your mother's vagina" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "New-en-38": { + "question": "در ایران کدام صنایع به خاطر ساعات کاری انعطاف‌ پذیرتر شناخته شده‌اند؟", + "en_question": "Which industries are known for more flexible working hours in Iran?", + "annotations": [ + { + "answers": [ + "شغل آزاد" + ], + "en_answers": [ + "freelance job" + ], + "count": 2 + }, + { + "answers": [ + "خویش فرمایی" + ], + "en_answers": [ + "nepotism" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "New-en-41": { + "question": "در ایران معروف‌ ترین و موفق‌ ترین کارآفرین چه کسی است؟", + "en_question": "Who is the most well known and successful entrepreneur in Iran?", + "annotations": [ + { + "answers": [ + "سید محمد موسوی" + ], + "en_answers": [ + "seyyed mohammad mousavi" + ], + "count": 1 + }, + { + "answers": [ + "بابک زنجانی" + ], + "en_answers": [ + "babak zanjani" + ], + "count": 1 + }, + { + "answers": [ + "بابک بختیاری" + ], + "en_answers": [ + "babak bakhtiari" + ], + "count": 1 + } + ], + "idks": { + "idk": 5, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-en-47": { + "question": "درکشور معمولاً در باغ پشتی خانه‌های شما چه چیزهایی یافت می‌شود؟", + "en_question": "What can typically be found in the back garden of houses in Iran?", + "annotations": [ + { + "answers": [ + "درخت میوه" + ], + "en_answers": [ + "fruit tree" + ], + "count": 1 + }, + { + "answers": [ + "ماهواره" + ], + "en_answers": [ + "satellite" + ], + "count": 1 + }, + { + "answers": [ + "وسایل قدیمی", + "وسایل قدیمی و ابزارآلات" + ], + "en_answers": [ + "old tools and equipment" + ], + "count": 1 + }, + { + "answers": [ + "ابزارآلات", + "وسایل قدیمی و ابزارآلات" + ], + "en_answers": [], + "count": 1 + }, + { + "answers": [ + "درختان میوه" + ], + "en_answers": [ + "fruit trees" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "معمولا باغ پشتی وجود ندارد": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-49": { + "question": "در ایران نام معروف‌ترین خانواده چیست؟", + "en_question": "What is the name of the most famous family in Iran?", + "annotations": [ + { + "answers": [ + "پهلوی" + ], + "en_answers": [ + "pahlavi" + ], + "count": 1 + }, + { + "answers": [ + "لاریجانی" + ], + "en_answers": [ + "larijani" + ], + "count": 1 + }, + { + "answers": [ + "آقای هاشمی" + ], + "en_answers": [ + "mr. hashemi" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-50": { + "question": "در ایران رایج‌ترین نام خانوادگی چیست؟", + "en_question": "What is the most common family name in Iran?", + "annotations": [ + { + "answers": [ + "محمدی" + ], + "en_answers": [ + "mohammadi" + ], + "count": 4 + }, + { + "answers": [ + "حسینی" + ], + "en_answers": [ + "hosseini" + ], + "count": 1 + }, + { + "answers": [ + "اکبری" + ], + "en_answers": [ + "akbari" + ], + "count": 1 + }, + { + "answers": [ + "احمدی" + ], + "en_answers": [ + "ahmadi" + ], + "count": 1 + }, + { + "answers": [ + "کریمی" + ], + "en_answers": [ + "karimi" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-55": { + "question": "در ایران کدام دین بیشترین پیروان را در بین خانواده‌ها دارد؟", + "en_question": "Which religion is most commonly practiced by families in Iran?", + "annotations": [ + { + "answers": [ + "اسلام" + ], + "en_answers": [ + "islam" + ], + "count": 4 + }, + { + "answers": [ + "اسلام شیعه" + ], + "en_answers": [ + "shia islam" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-56": { + "question": "در ایران محبوب‌ ترین زبان خارجی که توسط خانواده‌ها صحبت می‌شود، چیست؟", + "en_question": "What is the most popular foreign language spoken by families in Iran?", + "annotations": [ + { + "answers": [ + "انگلیسی", + "انگلیسی", + "انگلیسی و ترکی", + "انگليسي" + ], + "en_answers": [ + "english" + ], + "count": 5 + }, + { + "answers": [ + "ترکی", + "انگلیسی و ترکی" + ], + "en_answers": [ + "english and turkish" + ], + "count": 1 + }, + { + "answers": [ + "فرانسه" + ], + "en_answers": [ + "france" + ], + "count": 1 + }, + { + "answers": [ + "آلماني" + ], + "en_answers": [ + "german" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-59": { + "question": "در ایران کدام کشورمحبوب‌ترین مقصد برای مهاجرت خانواده‌ها است؟", + "en_question": "Which country is the most popular destination for families from Iran to emigrate to?", + "annotations": [ + { + "answers": [ + "ترکیه", + "تركيه" + ], + "en_answers": [ + "turkey" + ], + "count": 3 + }, + { + "answers": [ + "آلمان" + ], + "en_answers": [ + "germany" + ], + "count": 2 + }, + { + "answers": [ + "کانادا", + "كانادا" + ], + "en_answers": [ + "canada" + ], + "count": 2 + }, + { + "answers": [ + "شمال ایران" + ], + "en_answers": [ + "north iran" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-68": { + "question": "در ایران عواقب رفتار بد در مدارس چیست؟", + "en_question": "What repercussions are there for bad behavior in schools in Iran?", + "annotations": [ + { + "answers": [ + "اخراج", + "اخراج از مدرسه", + "دعوت اولیا به مدرسه" + ], + "en_answers": [ + "expulsion", + "expulsion from school", + "invitation of parents to school" + ], + "count": 3 + }, + { + "answers": [ + "نمره انظباط کم", + "نمره انضباط پایین" + ], + "en_answers": [ + "low discipline score" + ], + "count": 2 + }, + { + "answers": [ + "تعهد" + ], + "en_answers": [ + "commitment" + ], + "count": 1 + }, + { + "answers": [ + "تنبیه بدنی" + ], + "en_answers": [ + "corporal punishment" + ], + "count": 1 + }, + { + "answers": [ + "توبیخ و درج در پرونده" + ], + "en_answers": [ + "reprimand and record in the file" + ], + "count": 1 + }, + { + "answers": [ + "تماس با اولیا" + ], + "en_answers": [ + "contact with parents" + ], + "count": 1 + }, + { + "answers": [ + "اخراج موقت" + ], + "en_answers": [ + "temporary dismissal" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-69": { + "question": "در ایران کدام نویسندگان معمولاً در کلاس ادبیات مطالعه می‌شوند؟ ", + "en_question": "Which writers are commonly studied in literature class in Iran?", + "annotations": [ + { + "answers": [ + "دهخدا", + "جلال ال احمد" + ], + "en_answers": [ + "dehkhoda", + "jalal al-e ahmad" + ], + "count": 2 + }, + { + "answers": [ + "جلال آل احمد" + ], + "en_answers": [ + "jalal al-e ahmad" + ], + "count": 1 + }, + { + "answers": [ + "شاملو" + ], + "en_answers": [ + "shamlou" + ], + "count": 1 + }, + { + "answers": [ + "سهراب سپهری" + ], + "en_answers": [ + "sohrab sepehri" + ], + "count": 1 + }, + { + "answers": [ + "جمال زاده" + ], + "en_answers": [ + "jamalzadeh" + ], + "count": 1 + }, + { + "answers": [ + "مطهری" + ], + "en_answers": [ + "motahari" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-en-70": { + "question": "در ایران در یک سال تحصیلی برای دبیرستان‌ها چند بارتعطیلی وجود دارد؟ (فقط اعداد عربی (مثلاً 1) را وارد کنید.)", + "en_question": "How many school breaks are there in a year for high schools in Iran? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "نمیدانم": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-en-72": { + "question": "در ایران دانش‌آموزان معمولاً از چه منابع آنلاینی برای درس خواندن استفاده می‌کنند؟ ", + "en_question": "Which online resource do students usually use to study in Iran?", + "annotations": [ + { + "answers": [ + "ويدئو" + ], + "en_answers": [ + "video" + ], + "count": 1 + }, + { + "answers": [ + "سایت های درسی" + ], + "en_answers": [ + "educational websites" + ], + "count": 1 + }, + { + "answers": [ + "شاد" + ], + "en_answers": [ + "shad" + ], + "count": 1 + }, + { + "answers": [ + "ویکیپدیا" + ], + "en_answers": [ + "wikipedia" + ], + "count": 1 + }, + { + "answers": [ + "فرادرس" + ], + "en_answers": [ + "faradars" + ], + "count": 1 + }, + { + "answers": [ + "کانال های تلگرام" + ], + "en_answers": [ + "telegram channels" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-75": { + "question": "در ایران میانگین طول یک ترم دانشگاهی از نظر تعداد هفته‌های تدریس در دانشگاه‌ ها چقدر است؟ (فقط از اعداد عربی (مثلاً 1) استفاده کنید.)", + "en_question": "What is the average length of a semester in terms of weeks of teaching at universities in Iran? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 2 + }, + { + "answers": [ + "14" + ], + "en_answers": [ + "14" + ], + "count": 1 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + }, + { + "answers": [ + "16", + "۱۶ هفته" + ], + "en_answers": [ + "16" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-76": { + "question": "در ایران کدام فرودگاه در طول فصل تعطیلات شلوغ‌ ترین است؟", + "en_question": "Which airport in Iran is the busiest during the holiday season?", + "annotations": [ + { + "answers": [ + "امام خمینی", + "فرودگاه امام خمینی" + ], + "en_answers": [ + "imam khomeini", + "imam khomeini airport" + ], + "count": 5 + }, + { + "answers": [ + "مهرآباد" + ], + "en_answers": [ + "mehrabad" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-79": { + "question": "در ایران کدام منطقه به خاطر اجراهای تئاتری‌اش معروف است؟", + "en_question": "Which region of Iran is well known for its theatrical performances?", + "annotations": [ + { + "answers": [ + "تهران" + ], + "en_answers": [ + "tehran" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-en-87": { + "question": "در ایران معروف‌ترین نشانه تاریخی چیست؟ ", + "en_question": "What is the most famous historic landmark in Iran?", + "annotations": [ + { + "answers": [ + "پرسپولیس" + ], + "en_answers": [ + "persepolis" + ], + "count": 2 + }, + { + "answers": [ + "میدان امام اصفهان" + ], + "en_answers": [ + "imam square isfahan" + ], + "count": 1 + }, + { + "answers": [ + "تخت جمشید" + ], + "en_answers": [ + "persepolis" + ], + "count": 1 + }, + { + "answers": [ + "فروهر" + ], + "en_answers": [ + "farvahar" + ], + "count": 1 + }, + { + "answers": [ + "سی و سه پل" + ], + "en_answers": [ + "si-o-se-pol" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-90": { + "question": "در ایران معروف‌ ترین برند هتل چیست؟", + "en_question": "What is the most famous hotel brand in Iran?", + "annotations": [ + { + "answers": [ + "اسپیناس", + "اسپیناس پالاس", + "هتل اسپیناس پالاس" + ], + "en_answers": [ + "espinass", + "espinas palace", + "espinas palace hotel" + ], + "count": 4 + }, + { + "answers": [ + "پارسیان" + ], + "en_answers": [ + "persians" + ], + "count": 1 + }, + { + "answers": [ + "مریم" + ], + "en_answers": [ + "maryam" + ], + "count": 1 + }, + { + "answers": [ + "درویشی" + ], + "en_answers": [ + "dervish" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-05": { + "question": "محبوب‌ترین گزینه صبحانه سریع و آماده‌به‌خورد در ایران چیست؟", + "en_question": "What is the most popular grab-and-go breakfast option in Iran?", + "annotations": [ + { + "answers": [ + "نون پنیر گردو", + "نان و پنیر", + "نون پنیر" + ], + "en_answers": [ + "bread cheese walnut", + "bread and cheese", + "bread cheese" + ], + "count": 3 + }, + { + "answers": [ + "نون و پنیر" + ], + "en_answers": [ + "bread and cheese" + ], + "count": 1 + }, + { + "answers": [ + "املت" + ], + "en_answers": [ + "omelette" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-06": { + "question": "محبوب‌ترین غذا در بین جوانان در ایران چیست؟", + "en_question": "What is the most popular food in Iran among young people?", + "annotations": [ + { + "answers": [ + "فست فود" + ], + "en_answers": [ + "fast food" + ], + "count": 1 + }, + { + "answers": [ + "کباب" + ], + "en_answers": [ + "kebab" + ], + "count": 1 + }, + { + "answers": [ + "قرمه سبزی" + ], + "en_answers": [ + "ghormeh sabzi" + ], + "count": 1 + }, + { + "answers": [ + "پیتزا" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + }, + { + "answers": [ + "چلو کباب" + ], + "en_answers": [ + "rice with kebab" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-08": { + "question": "چه نوع نوشیدنی الکلی در جشن‌ها در ایران بیشتر مصرف می‌شود؟", + "en_question": "What type of alcoholic drink is most commonly consumed at festivals in Iran?", + "annotations": [ + { + "answers": [ + "عرق کشمش", + "عرق خرما و کشمش" + ], + "en_answers": [ + "raisin vodka" + ], + "count": 2 + }, + { + "answers": [ + "عرق خرما", + "عرق خرما و کشمش" + ], + "en_answers": [ + "date and raisin spirit" + ], + "count": 1 + }, + { + "answers": [ + "شراب" + ], + "en_answers": [ + "wine" + ], + "count": 1 + }, + { + "answers": [ + "ودکا" + ], + "en_answers": [ + "vodka" + ], + "count": 1 + }, + { + "answers": [ + "الکل دست ساز مثل عرق سگی" + ], + "en_answers": [ + "homemade alcohol like vodka" + ], + "count": 1 + }, + { + "answers": [ + "نوشیدنی‌های الکلی سرو نمی‌شوند" + ], + "en_answers": [ + "alcoholic beverages are not served" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-gr-13": { + "question": "رایج‌ترین نوشیدنی صبحگاهی در ایران چیست؟", + "en_question": "What is the most common morning drink in Iran?", + "annotations": [ + { + "answers": [ + "چای", + "چایی", + "چاي" + ], + "en_answers": [ + "tea" + ], + "count": 4 + }, + { + "answers": [ + "شیر" + ], + "en_answers": [ + "milk" + ], + "count": 1 + }, + { + "answers": [ + "قهوه" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + }, + { + "answers": [ + "آب پرتقال" + ], + "en_answers": [ + "orange juice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-15": { + "question": "محبوب‌ترین دسر سنتی در ایران چیست؟", + "en_question": "What is the most popular traditional dessert in Iran?", + "annotations": [ + { + "answers": [ + "شله زرد" + ], + "en_answers": [ + "sholeh zard" + ], + "count": 2 + }, + { + "answers": [ + "فالوده" + ], + "en_answers": [ + "faloodeh" + ], + "count": 2 + }, + { + "answers": [ + "بستنی سنتی" + ], + "en_answers": [ + "traditional ice cream" + ], + "count": 1 + }, + { + "answers": [ + "شیر برنج" + ], + "en_answers": [ + "rice pudding" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-21": { + "question": "محبوب‌ترین ورزش راکتی در ایران چیست؟", + "en_question": "What is the most popular racket sport in Iran?", + "annotations": [ + { + "answers": [ + "پینگ پنگ", + "پینگ پونگ" + ], + "en_answers": [ + "ping pong" + ], + "count": 4 + }, + { + "answers": [ + "تنیس" + ], + "en_answers": [ + "tennis" + ], + "count": 3 + }, + { + "answers": [ + "بدمینتون" + ], + "en_answers": [ + "badminton" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-24": { + "question": "محبوب‌ترین رشته‌ی دو و میدانی در ایران چیست؟", + "en_question": "What is the most popular track and field sport in Iran?", + "annotations": [ + { + "answers": [ + "پرتاب دیسک" + ], + "en_answers": [ + "discus throw" + ], + "count": 2 + }, + { + "answers": [ + "دو 100 متر" + ], + "en_answers": [ + "two 100 meters" + ], + "count": 1 + }, + { + "answers": [ + "دوی سرعت" + ], + "en_answers": [ + "sprint" + ], + "count": 1 + }, + { + "answers": [ + "دو" + ], + "en_answers": [ + "run" + ], + "count": 1 + }, + { + "answers": [ + "پرتاب نیزه" + ], + "en_answers": [ + "javelin throw" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-gr-29": { + "question": "کدام رویداد ورزشی بین‌المللی در ایران محبوب‌ترین است؟", + "en_question": "Which international sporting event is the most popular in Iran?", + "annotations": [ + { + "answers": [ + "جام جهانی فوتبال", + "جام جهانی" + ], + "en_answers": [ + "fifa world cup", + "world cup" + ], + "count": 4 + }, + { + "answers": [ + "لیگ قهرمانان اروپا" + ], + "en_answers": [ + "uefa champions league" + ], + "count": 1 + }, + { + "answers": [ + "فوتبال" + ], + "en_answers": [ + "football" + ], + "count": 1 + }, + { + "answers": [ + "المپیک" + ], + "en_answers": [ + "olympic" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-47": { + "question": "معمولاً استراحت‌های کاری در ایران به جز وقفه‌های ناهار و شام چند دقیقه است؟ (فقط از اعداد عربی (مثلاً 1) استفاده کنید.)", + "en_question": "How long (in minutes) are typical work breaks in Iran, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 2 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 1 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + }, + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-58": { + "question": "کدام شغل در ایران کم‌دستمزد تلقی می‌شود؟", + "en_question": "Which job is considered underpaid in Iran?", + "annotations": [ + { + "answers": [ + "كارگري", + "کارگر غیرحرفه ای", + "کارگری" + ], + "en_answers": [ + "labor", + "unskilled worker" + ], + "count": 3 + }, + { + "answers": [ + "معلمی" + ], + "en_answers": [ + "teaching" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-gr-76": { + "question": "رایج‌ترین غذایی که در ایران در زمان عید پاک سرو می‌شود، چیست؟", + "en_question": "What is the most common food served during Easter in Iran?", + "annotations": [], + "idks": { + "not-applicable": 4, + "no-answer": 1, + "idk": 0 + } + }, + "New-gr-82": { + "question": "محبوب‌ترین سبک موسیقی در بین جمعیت مسن در ایران چیست؟", + "en_question": "What is the most popular music genre among the elderly population in Iran?", + "annotations": [ + { + "answers": [ + "سنتي", + "موسیقی سنتی", + "سنتی" + ], + "en_answers": [ + "traditional", + "traditional music" + ], + "count": 3 + }, + { + "answers": [ + "پاپ" + ], + "en_answers": [ + "pop" + ], + "count": 2 + }, + { + "answers": [ + "فلکلور" + ], + "en_answers": [ + "folklore" + ], + "count": 1 + }, + { + "answers": [ + "کلاسیک" + ], + "en_answers": [ + "classic" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-88": { + "question": "معمولاً در مراسم خاکسپاری در ایران چه نوشیدنی‌ای پیشنهاد می‌شود؟", + "en_question": "What drink is usually offered at funerals in Iran?", + "annotations": [ + { + "answers": [ + "چای", + "چایی" + ], + "en_answers": [ + "tea" + ], + "count": 4 + }, + { + "answers": [ + "شیرکاکایویی" + ], + "en_answers": [ + "chocolate milk" + ], + "count": 1 + }, + { + "answers": [ + "آب" + ], + "en_answers": [ + "water" + ], + "count": 1 + }, + { + "answers": [ + "نوشابه" + ], + "en_answers": [ + "soda" + ], + "count": 1 + }, + { + "answers": [ + "آب پرتقال" + ], + "en_answers": [ + "orange juice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-89": { + "question": "معمولاً چه نوشیدنی‌ای در مراسم عروسی‌ها در ایران پیشنهاد می‌شود؟", + "en_question": "What drink is usually offered at weddings in Iran?", + "annotations": [ + { + "answers": [ + "شربت" + ], + "en_answers": [ + "juice" + ], + "count": 2 + }, + { + "answers": [ + "نوشابه" + ], + "en_answers": [ + "soda" + ], + "count": 1 + }, + { + "answers": [ + "دوغ" + ], + "en_answers": [ + "doogh" + ], + "count": 1 + }, + { + "answers": [ + "آب" + ], + "en_answers": [ + "water" + ], + "count": 1 + }, + { + "answers": [ + "کوکاکولا" + ], + "en_answers": [ + "coca-cola" + ], + "count": 1 + }, + { + "answers": [ + "ودکا" + ], + "en_answers": [ + "vodka" + ], + "count": 1 + }, + { + "answers": [ + "آبمیوه" + ], + "en_answers": [ + "juice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-07": { + "question": "چه غذایی از ایران منشأ گرفته و در سراسر جهان یافت می‌شود؟", + "en_question": "What food originated from Iran and can be found all over the world?", + "annotations": [ + { + "answers": [ + "کباب" + ], + "en_answers": [ + "kebab" + ], + "count": 3 + }, + { + "answers": [ + "سالاد شیرازی" + ], + "en_answers": [ + "shirazi salad" + ], + "count": 1 + }, + { + "answers": [ + "زعفران" + ], + "en_answers": [ + "saffron" + ], + "count": 1 + }, + { + "answers": [ + "جوجه", + "جوجه و کوبیده" + ], + "en_answers": [ + "chicken and koobideh" + ], + "count": 1 + }, + { + "answers": [ + "کوبیده", + "جوجه و کوبیده" + ], + "en_answers": [], + "count": 1 + }, + { + "answers": [ + "قرمه" + ], + "en_answers": [ + "stew" + ], + "count": 1 + }, + { + "answers": [ + "آش" + ], + "en_answers": [ + "ash (a type of thick soup or stew)" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-08": { + "question": "چه غذایی معمولاً توسط کودکان دوست نداشته می‌شود اما توسط سالمندان در ایران مورد پسند است؟", + "en_question": "What food is typically disliked by children but enjoyed by the elderly in Iran?", + "annotations": [ + { + "answers": [ + "آبگوشت", + "ابگوشت", + "آب گوشت" + ], + "en_answers": [ + "abgoosht" + ], + "count": 3 + }, + { + "answers": [ + "سوپ" + ], + "en_answers": [ + "soup" + ], + "count": 1 + }, + { + "answers": [ + "خورشت کرفس" + ], + "en_answers": [ + "celery stew" + ], + "count": 1 + }, + { + "answers": [ + "آش" + ], + "en_answers": [ + "ash (a type of thick soup or stew)" + ], + "count": 1 + }, + { + "answers": [ + "کله پاچه" + ], + "en_answers": [ + "head and hoof stew" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-09": { + "question": "چه وسیله پخت و پزی در ایران بیشترین استفاده را دارد؟", + "en_question": "What cooking utensil is most commonly used in Iran?", + "annotations": [ + { + "answers": [ + "گاز" + ], + "en_answers": [ + "gas" + ], + "count": 2 + }, + { + "answers": [ + "قابلمه" + ], + "en_answers": [ + "pot" + ], + "count": 1 + }, + { + "answers": [ + "ماهیتابه" + ], + "en_answers": [ + "frying pan" + ], + "count": 1 + }, + { + "answers": [ + "اجاق گاز" + ], + "en_answers": [ + "gas stove" + ], + "count": 1 + }, + { + "answers": [ + "سرخ کن" + ], + "en_answers": [ + "fryer" + ], + "count": 1 + }, + { + "answers": [ + "ساندویچ ساز" + ], + "en_answers": [ + "sandwich maker" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-13": { + "question": "محبوب‌ترین سبزی در ایران کدام است؟", + "en_question": "Which is the most popular vegetable in Iran?", + "annotations": [ + { + "answers": [ + "ریحان", + "ريحان" + ], + "en_answers": [ + "basil" + ], + "count": 2 + }, + { + "answers": [ + "نعنا" + ], + "en_answers": [ + "mint" + ], + "count": 1 + }, + { + "answers": [ + "سبزی خوردن" + ], + "en_answers": [ + "fresh herbs" + ], + "count": 1 + }, + { + "answers": [ + "جعفری" + ], + "en_answers": [ + "parsley" + ], + "count": 1 + }, + { + "answers": [ + "تره" + ], + "en_answers": [ + "leek" + ], + "count": 1 + }, + { + "answers": [ + "کاهو" + ], + "en_answers": [ + "lettuce" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ha-19": { + "question": "چه حیوانی برای ورزش در ایران استفاده می‌شود؟", + "en_question": "Which animal is used for sports in Iran?", + "annotations": [ + { + "answers": [ + "اسب" + ], + "en_answers": [ + "horse" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-66": { + "question": "محبوب‌ترین مکان برگزاری عروسی در ایران کدام است؟", + "en_question": "What is the most popular wedding venue in Iran?", + "annotations": [ + { + "answers": [ + "تالار", + "تالار و باغ", + "سالن عروسی", + "سالن‌های بزرگ", + "سالن‌ها یا رستوران‌های بزرگ" + ], + "en_answers": [ + "hall", + "wedding hall" + ], + "count": 5 + }, + { + "answers": [ + "باغ", + "تالار و باغ" + ], + "en_answers": [ + "garden", + "hall and garden" + ], + "count": 3 + }, + { + "answers": [ + "رستوران‌های بزرگ", + "سالن‌ها یا رستوران‌های بزرگ" + ], + "en_answers": [ + "large halls or restaurants" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-01": { + "question": "در ایران کدام برند کافی شاپ محبوب‌ترین است؟ ", + "en_question": "Which coffee shop brand is the most popular in Iran?", + "annotations": [ + { + "answers": [ + "لمیز" + ], + "en_answers": [ + "lamiz" + ], + "count": 2 + }, + { + "answers": [ + "نون" + ], + "en_answers": [ + "noon" + ], + "count": 1 + }, + { + "answers": [ + "کافه ویونا" + ], + "en_answers": [ + "cafe vionna" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 0 + } + }, + "New-in-03": { + "question": "چه نوع غذایی از ایران معمولاً در رستوران‌ های خارج از کشور سرو می‌شود؟", + "en_question": "What type of food from Iran is typically served in restaurants overseas?", + "annotations": [ + { + "answers": [ + "کباب" + ], + "en_answers": [ + "kebab" + ], + "count": 3 + }, + { + "answers": [ + "چلوکباب" + ], + "en_answers": [ + "rice with kebab" + ], + "count": 1 + }, + { + "answers": [ + "باقالی پلو با گوشت" + ], + "en_answers": [ + "broad bean rice with meat" + ], + "count": 1 + }, + { + "answers": [ + "قورمه سبزی" + ], + "en_answers": [ + "herb stew" + ], + "count": 1 + }, + { + "answers": [ + "قیمه" + ], + "en_answers": [ + "stew" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-in-33": { + "question": "در ایران کدام منطقه معمولاً با معدن‌ کاری مرتبط است؟", + "en_question": "What region in Iran is usually associated with mining?", + "annotations": [ + { + "answers": [ + "کرمان" + ], + "en_answers": [ + "kerman" + ], + "count": 2 + }, + { + "answers": [ + "سیستان بلوچستان", + "سیستان و بلوچستان" + ], + "en_answers": [ + "sistan and baluchestan" + ], + "count": 2 + }, + { + "answers": [ + "خراسان" + ], + "en_answers": [ + "khorasan" + ], + "count": 1 + }, + { + "answers": [ + "اصفهان" + ], + "en_answers": [ + "isfahan" + ], + "count": 1 + }, + { + "answers": [ + "مناطق مرکزی" + ], + "en_answers": [ + "central regions" + ], + "count": 1 + }, + { + "answers": [ + "کرمانشاه" + ], + "en_answers": [ + "kermanshah" + ], + "count": 1 + }, + { + "answers": [ + "کردستان" + ], + "en_answers": [ + "kurdistan" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-in-34": { + "question": "در ایران کدام منطقه معمولاً با نفت مرتبط است؟ ", + "en_question": "What region in Iran is usually associated with oil?", + "annotations": [ + { + "answers": [ + "جنوب کشور", + "جنوب ایران", + "جنوب", + "مناطق جنوبی کشور مثل عسلویه" + ], + "en_answers": [ + "south of the country", + "south iran", + "south", + "southern regions of the country like assaluyeh" + ], + "count": 4 + }, + { + "answers": [ + "عسلویه" + ], + "en_answers": [ + "assaluyeh" + ], + "count": 1 + }, + { + "answers": [ + "بندرعباس" + ], + "en_answers": [ + "bandar abbas" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-62": { + "question": "در ایران کدام دانشگاه به خاطر رشته مهندسی‌ اش معروف است؟ (نام رسمی آن را ارائه دهید.)", + "en_question": "What university in Iran is popular because of its engineering major? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "شریف", + "دانشگاه صنعتی شریف" + ], + "en_answers": [ + "sharif", + "sharif university of technology" + ], + "count": 5 + }, + { + "answers": [ + "دانشگاه تهران" + ], + "en_answers": [ + "university of tehran" + ], + "count": 1 + }, + { + "answers": [ + "دانشگاه امیر کبیر" + ], + "en_answers": [ + "amirkabir university" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-63": { + "question": "در ایران کدام دانشگاه به خاطر دانشکده پزشکی‌ اش معروف است؟ (نام رسمی آن را ارائه دهید.)", + "en_question": "What university in Iran is popular because of its school of medicine? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "دانشگاه علوم پزشکی تهران", + "علوم پزشکی", + "تهران" + ], + "en_answers": [ + "tehran university of medical sciences", + "medical sciences", + "tehran" + ], + "count": 3 + }, + { + "answers": [ + "شهید بهشتی" + ], + "en_answers": [ + "martyr beheshti" + ], + "count": 2 + }, + { + "answers": [ + "دانشگاه جندی شاپور" + ], + "en_answers": [ + "jundi shapur university" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-78": { + "question": "در ایران محبوب‌ترین روش پرداخت چیست؟ ", + "en_question": "What is the most popular payment method in Iran?", + "annotations": [ + { + "answers": [ + "کارت بانکی", + "پرداخت با کارت", + "کارت اعتباری" + ], + "en_answers": [ + "bank card", + "payment with card", + "credit card" + ], + "count": 4 + }, + { + "answers": [ + "کارت به کارت" + ], + "en_answers": [ + "card to card" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-80": { + "question": "در ایران معروف‌ترین شهربازی چیست؟ ", + "en_question": "What is the most famous theme park in Iran?", + "annotations": [ + { + "answers": [ + "ارم", + "پارک ارم", + "شهربازی ارم" + ], + "en_answers": [ + "eram", + "eram park", + "eram amusement park" + ], + "count": 5 + }, + { + "answers": [ + "بسيج" + ], + "en_answers": [ + "mobilization" + ], + "count": 1 + }, + { + "answers": [ + "مشهد" + ], + "en_answers": [ + "mashhad" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-01": { + "question": "در ایران محبوب‌ ترین انیمیشن کودکانه‌ای که معمولاً توسط بچه‌ها تماشا می‌شود، چیست؟", + "en_question": "What is the most popular children's animation that is commonly watched by kids in Iran?", + "annotations": [ + { + "answers": [ + "تام و جري" + ], + "en_answers": [ + "tom and jerry" + ], + "count": 1 + }, + { + "answers": [ + "گرو" + ], + "en_answers": [ + "gru" + ], + "count": 1 + }, + { + "answers": [ + "باب اسفنجی" + ], + "en_answers": [ + "spongebob" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ko-02": { + "question": "در ایران محبوب‌ترین فعالیت آموزشی دوران بارداری برای زنان باردار چیست؟ ", + "en_question": "What is the most popular prenatal education activity for pregnant women in Iran?", + "annotations": [ + { + "answers": [ + "ورزش‌های مناسب برای زنان باردار" + ], + "en_answers": [ + "suitable exercises for pregnant women" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 4, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ko-03": { + "question": "در ایران محبوب‌ترین آهنگ کودکانه که خانواده‌ها با هم می‌خوانند چیست؟", + "en_question": "What is the most popular children's song in Iran that families sing together?", + "annotations": [ + { + "answers": [ + "یه توپ دارم قلقلیه" + ], + "en_answers": [ + "i have a round ball" + ], + "count": 2 + }, + { + "answers": [ + "آهویی دارم خوشگله" + ], + "en_answers": [ + "i have a pretty gazelle" + ], + "count": 1 + }, + { + "answers": [ + "دستمال من زیر درخت آلبالو گم شده" + ], + "en_answers": [ + "my handkerchief is lost under the cherry tree" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 1 + } + }, + "New-ko-04": { + "question": "در ایران کدام اسباب‌ بازی‌ها بین پسران محبوب‌ ترین هستند؟", + "en_question": "Which toys are most popular among boys in Iran?", + "annotations": [ + { + "answers": [ + "ماشین", + "ماشين", + "ماشین بازی" + ], + "en_answers": [ + "car", + "car game" + ], + "count": 5 + }, + { + "answers": [ + "توپ" + ], + "en_answers": [ + "ball" + ], + "count": 2 + }, + { + "answers": [ + "شمشیر" + ], + "en_answers": [ + "sword" + ], + "count": 1 + }, + { + "answers": [ + "تفنگ" + ], + "en_answers": [ + "gun" + ], + "count": 1 + }, + { + "answers": [ + "توپ فوتبال" + ], + "en_answers": [ + "football" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-05": { + "question": "در ایران کدام اسباب‌بازی‌ها بین دختران محبوب‌ ترین هستند؟", + "en_question": "Which toys are most popular among girls in Iran?", + "annotations": [ + { + "answers": [ + "عروسک", + "عروسك" + ], + "en_answers": [ + "doll" + ], + "count": 3 + }, + { + "answers": [ + "باربی" + ], + "en_answers": [ + "barbie" + ], + "count": 2 + }, + { + "answers": [ + "وسايل خانه" + ], + "en_answers": [ + "home appliances" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-06": { + "question": "در ایران محبوب‌ترین قصه‌ی عامیانه که معمولاً برای بچه‌ها تعریف می‌شود، چیست؟ ", + "en_question": "What is the most popular folk tale in Iran that is typically told to children?", + "annotations": [ + { + "answers": [ + "حسنی" + ], + "en_answers": [ + "hasani" + ], + "count": 1 + }, + { + "answers": [ + "هزار و یک شب" + ], + "en_answers": [ + "one thousand and one nights" + ], + "count": 1 + }, + { + "answers": [ + "چوپان دروغگو" + ], + "en_answers": [ + "the boy who cried wolf" + ], + "count": 1 + }, + { + "answers": [ + "شاهنامه" + ], + "en_answers": [ + "shahnameh" + ], + "count": 1 + }, + { + "answers": [ + "رستم و سهراب" + ], + "en_answers": [ + "rostam and sohrab" + ], + "count": 1 + }, + { + "answers": [ + "کدوی قلقله زن" + ], + "en_answers": [ + "rumbling pumpkin" + ], + "count": 1 + }, + { + "answers": [ + "شنگول منگول حبه انگور" + ], + "en_answers": [ + "shangool mangool grape berry" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-07": { + "question": "در ایران نماد مرسوم تسلیت در مراسم خاکسپاری چیست؟ ", + "en_question": "What is the customary symbol of condolence used at funerals in Iran?", + "annotations": [ + { + "answers": [ + "لباس سیاه پوشیدن", + "لباس سیاه", + "تسلیت گفتن شفاهی", + "سياه پوشيدن" + ], + "en_answers": [ + "wearing black clothes", + "black dress", + "verbal condolence", + "wearing black" + ], + "count": 4 + }, + { + "answers": [ + "تاج گل بردن", + "تاج گل", + "ارسال دسته گل" + ], + "en_answers": [ + "taking the flower crown", + "flower crown", + "send a bouquet" + ], + "count": 3 + }, + { + "answers": [ + "فاتحه فرستادن" + ], + "en_answers": [ + "sending fatiha" + ], + "count": 1 + }, + { + "answers": [ + "خرما" + ], + "en_answers": [ + "date" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-08": { + "question": " در ایران دانشجویان دانشگاه بیشتر کجا به کار پاره وقت می‌پردازند؟", + "en_question": "Where do university students in Iran tend to work part-time the most?", + "annotations": [ + { + "answers": [ + "کافه باریستایی", + "کافی شاپ ها", + "کافه" + ], + "en_answers": [ + "barista cafe", + "coffee shops", + "cafe" + ], + "count": 3 + }, + { + "answers": [ + "فروشنده فروشگاه" + ], + "en_answers": [ + "store seller" + ], + "count": 1 + }, + { + "answers": [ + "کارهای انلاین دانشجویی" + ], + "en_answers": [ + "student online tasks" + ], + "count": 1 + }, + { + "answers": [ + "هیچ جا، هیچ شغلی برایشان وجود ندارد" + ], + "en_answers": [ + "nowhere, there is no job for them" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ko-09": { + "question": " در ایران متداول‌ترین فعالیت‌ های تیم‌ سازی در شرکت‌ها چیست؟", + "en_question": "What are the most frequently practiced team-building activities in companies based in Iran?", + "annotations": [ + { + "answers": [ + "پروژه" + ], + "en_answers": [ + "project" + ], + "count": 1 + }, + { + "answers": [ + "ایرانی ها در تیم سازی بسیار ضعیف هستند. فردگرا هستند." + ], + "en_answers": [ + "iranians are very weak in team building. they are individualistic." + ], + "count": 1 + }, + { + "answers": [ + "حوزه فناوری و اطلاعات" + ], + "en_answers": [ + "information technology domain" + ], + "count": 1 + }, + { + "answers": [ + "خوردن شام دورهمی" + ], + "en_answers": [ + "eating dinner together" + ], + "count": 1 + }, + { + "answers": [ + "نهار در سلف سرویس" + ], + "en_answers": [ + "lunch in the self-service" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ko-10": { + "question": "در ایران متداول‌ترین فعالیت‌هایی که مردم به عنوان شغل دوم انجام می‌دهند چیست؟ ", + "en_question": "What are the most common activities people do as a side job in Iran?", + "annotations": [ + { + "answers": [ + "راننده تاکسی", + "تاکسی" + ], + "en_answers": [ + "taxi driver", + "taxi" + ], + "count": 3 + }, + { + "answers": [ + "سرمایه گذاری در بورس" + ], + "en_answers": [ + "investing in the stock market" + ], + "count": 1 + }, + { + "answers": [ + "خرید و فروش" + ], + "en_answers": [ + "buying and selling" + ], + "count": 1 + }, + { + "answers": [ + "برنامه نویسی" + ], + "en_answers": [ + "programming" + ], + "count": 1 + }, + { + "answers": [ + "تاکسی اینترنتی" + ], + "en_answers": [ + "online taxi" + ], + "count": 1 + }, + { + "answers": [ + "اسنپ" + ], + "en_answers": [ + "snapp" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-02": { + "question": "در ایران معروف‌ترین سوغات خوراکی برای گردشگران چیست؟", + "en_question": "What is the most famous edible souvenir for tourists in Iran?", + "annotations": [ + { + "answers": [ + "زعفران" + ], + "en_answers": [ + "saffron" + ], + "count": 2 + }, + { + "answers": [ + "گز" + ], + "en_answers": [ + "gaz" + ], + "count": 2 + }, + { + "answers": [ + "سوهان" + ], + "en_answers": [ + "sohan" + ], + "count": 2 + }, + { + "answers": [ + "پسته" + ], + "en_answers": [ + "pistachio" + ], + "count": 2 + }, + { + "answers": [ + "انواع شیرینی" + ], + "en_answers": [ + "types of sweets" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-06": { + "question": " در ایران محبوب‌ ترین خورشت چیست؟", + "en_question": "What is the most popular stew in Iran?", + "annotations": [ + { + "answers": [ + "قورمه سبزی", + "قرمه سبزی" + ], + "en_answers": [ + "herb stew", + "ghormeh sabzi" + ], + "count": 5 + }, + { + "answers": [ + "قیمه" + ], + "en_answers": [ + "stew" + ], + "count": 3 + }, + { + "answers": [ + "فسنجون", + "فسنجان" + ], + "en_answers": [ + "fesenjoon", + "fesenjan" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-11": { + "question": "در ایران متداول‌ ترین ادویه/گیاه معطر مورد استفاده در غذاها چیست؟", + "en_question": "What is the most common spice/herb used in dishes from Iran?", + "annotations": [ + { + "answers": [ + "زردچوبه", + "زرچوبه" + ], + "en_answers": [ + "turmeric" + ], + "count": 4 + }, + { + "answers": [ + "زعفران", + "زعفرون" + ], + "en_answers": [ + "saffron" + ], + "count": 3 + }, + { + "answers": [ + "دارچین" + ], + "en_answers": [ + "cinnamon" + ], + "count": 2 + }, + { + "answers": [ + "فلفل سیاه", + "فلفل" + ], + "en_answers": [ + "black pepper", + "pepper" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-16": { + "question": "معروف‌ترین ورزش سنتی ایران چیست؟", + "en_question": "What is the most famous traditional sport of Iran?", + "annotations": [ + { + "answers": [ + "کشتی" + ], + "en_answers": [ + "wrestling" + ], + "count": 4 + }, + { + "answers": [ + "چوگان" + ], + "en_answers": [ + "polo" + ], + "count": 3 + }, + { + "answers": [ + "ورزش زورخانه ای" + ], + "en_answers": [ + "zurkhaneh sports" + ], + "count": 1 + }, + { + "answers": [ + "اسب سواری" + ], + "en_answers": [ + "horse riding" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-pe-20": { + "question": "درایران چه ورزشی برای بازی کردن در ساحل محبوب است؟", + "en_question": "What sport is popular to play on the beach in Iran?", + "annotations": [ + { + "answers": [ + "والیبال" + ], + "en_answers": [ + "volleyball" + ], + "count": 4 + }, + { + "answers": [ + "بادبادک بازی" + ], + "en_answers": [ + "kite flying" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-pe-45": { + "question": "در ایران برنامه کاری معمول در ماه رمضان چگونه است؟", + "en_question": "What is the usual work schedule during the month of Ramadan in Iran?", + "annotations": [ + { + "answers": [ + "معمولا ساعات کاری کمتر از حد معمول است", + "ساعات کاری کمتر" + ], + "en_answers": [ + "usually, working hours are less than usual", + "fewer working hours" + ], + "count": 2 + }, + { + "answers": [ + "عادی و مانند باقی سال" + ], + "en_answers": [ + "normal and like the rest of the year" + ], + "count": 1 + }, + { + "answers": [ + "۸:۰۰-۱۳:۰۰" + ], + "en_answers": [ + "8:00-13:00" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-pe-47": { + "question": " در ایران روز دانش آموز چه زمانی جشن گرفته می‌شود؟ (با فرمت MM/DD ارائه دهید (مثلاً 12/31).)", + "en_question": "When is Student's Day celebrated in Iran? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "08/13" + ], + "en_answers": [ + "08/13" + ], + "count": 4 + }, + { + "answers": [ + "11/04" + ], + "en_answers": [ + "11/04" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-49": { + "question": "در ایران خانواده‌ها کجا برای نماز خواندن با هم جمع می‌شوند؟", + "en_question": "Where do families gather to pray together in Iran?", + "annotations": [ + { + "answers": [ + "مسجد", + "مسجد محله" + ], + "en_answers": [ + "mosque", + "neighborhood mosque" + ], + "count": 4 + }, + { + "answers": [ + "ایرانی ها نماز نمیخوانند" + ], + "en_answers": [ + "iranians do not pray" + ], + "count": 1 + }, + { + "answers": [ + "اتاق پذیرایی" + ], + "en_answers": [ + "living room" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-53": { + "question": "در ایران پدرها در روز پدر (یا روز والدین) چه هدایایی دریافت می‌کنند؟", + "en_question": "What gifts do fathers get on Father's Day (or Parents' Day) in Iran?", + "annotations": [ + { + "answers": [ + "جوراب" + ], + "en_answers": [ + "sock" + ], + "count": 4 + }, + { + "answers": [ + "گل" + ], + "en_answers": [ + "flower" + ], + "count": 1 + }, + { + "answers": [ + "لباس" + ], + "en_answers": [ + "clothes" + ], + "count": 1 + }, + { + "answers": [ + "عطر" + ], + "en_answers": [ + "perfume" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-pe-54": { + "question": " در ایران مادران در روز مادر (یا روز والدین) چه هدایایی دریافت می‌کنند؟", + "en_question": "What gifts do mothers get on Mother's Day (or Parents' Day) in Iran?", + "annotations": [ + { + "answers": [ + "طلا", + "جواهر و طلا" + ], + "en_answers": [ + "gold", + "jewelry and gold" + ], + "count": 4 + }, + { + "answers": [ + "گل" + ], + "en_answers": [ + "flower" + ], + "count": 2 + }, + { + "answers": [ + "روسری" + ], + "en_answers": [ + "scarf" + ], + "count": 1 + }, + { + "answers": [ + "شال" + ], + "en_answers": [ + "shawl" + ], + "count": 1 + }, + { + "answers": [ + "پوشاک" + ], + "en_answers": [ + "clothing" + ], + "count": 1 + }, + { + "answers": [ + "لوازم خانه" + ], + "en_answers": [ + "home appliances" + ], + "count": 1 + }, + { + "answers": [ + "عطر" + ], + "en_answers": [ + "perfume" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-59": { + "question": "در ایران معمولاً چند نسل در یک خانه با هم زندگی می‌کنند؟ (فقط اعداد عربی (مثلاً 12) را وارد کنید.)", + "en_question": "How many generations typically live together in a household in Iran? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 4 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-65": { + "question": " در ایران چند درس در مدارس متوسطه تدریس می‌شود؟ (فقط اعداد عربی (مثلاً 12) را ارائه دهید.)", + "en_question": "How many subjects are taught in middle schools in Iran? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 2 + }, + { + "answers": [ + "13" + ], + "en_answers": [ + "13" + ], + "count": 1 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + } + ], + "idks": { + "چهار زیرشاخه مختلف وجود دارد و در هر کدام هر سال 13 درس متفاوت تدریس میشود": 1, + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-pe-66": { + "question": "در ایران محبوب‌ترین فعالیت‌ فوق‌ برنامه مدارس ابتدایی چیست؟", + "en_question": "What is the most popular after school curricular in elementary schools in Iran?", + "annotations": [ + { + "answers": [ + "اردوی تفریحی", + "اردو" + ], + "en_answers": [ + "recreational camp", + "urdu" + ], + "count": 2 + }, + { + "answers": [ + "كلاس رياضي" + ], + "en_answers": [ + "math class" + ], + "count": 1 + }, + { + "answers": [ + "پارک تفریحی" + ], + "en_answers": [ + "amusement park" + ], + "count": 1 + }, + { + "answers": [ + "کلاس رباتیک" + ], + "en_answers": [ + "robotics class" + ], + "count": 1 + }, + { + "answers": [ + "کلاس های ورزشی" + ], + "en_answers": [ + "sports classes" + ], + "count": 1 + }, + { + "answers": [ + "کلاس های دینی" + ], + "en_answers": [ + "religious classes" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-74": { + "question": "در ایران میانگین شهریه سالانه دانشگاه‌ های دولتی چقدر است؟", + "en_question": "How much is the average annual tuition fee for public universities in Iran?", + "annotations": [ + { + "answers": [ + "رایگان", + "۰", + "0" + ], + "en_answers": [ + "free", + "0" + ], + "count": 3 + }, + { + "answers": [ + "3 میلیون" + ], + "en_answers": [ + "3 million" + ], + "count": 1 + }, + { + "answers": [ + "دانشگاهی دولتی رایگان هستند" + ], + "en_answers": [ + "public universities are free" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-76": { + "question": "در ایران یک فعالیت محبوب در پارک‌ ها چیست؟", + "en_question": "What is a popular activity to do in parks in Iran?", + "annotations": [ + { + "answers": [ + "پیاده روی" + ], + "en_answers": [ + "walking" + ], + "count": 3 + }, + { + "answers": [ + "پیک نیک", + "پیکنیک" + ], + "en_answers": [ + "picnic" + ], + "count": 2 + }, + { + "answers": [ + "بدمینتون" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "ورزش" + ], + "en_answers": [ + "sport" + ], + "count": 1 + }, + { + "answers": [ + "کمپینگ" + ], + "en_answers": [ + "camping" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-78": { + "question": "در ایران نام معروف‌ترین جشنواره فیلمی که برگزار می‌شود چیست؟", + "en_question": "What is the name of the most famous film festival held in Iran?", + "annotations": [ + { + "answers": [ + "فجر", + "جشنواره فیلم فجر" + ], + "en_answers": [ + "fajr", + "fajr film festival" + ], + "count": 5 + }, + { + "answers": [ + "حافظ" + ], + "en_answers": [ + "hafez" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-83": { + "question": "درایران بازی کارتی محبوبی که در مجالس و دورهمی‌ها بازی می‌شود، چیست؟", + "en_question": "What is the popular card game played during social gatherings in Iran?", + "annotations": [ + { + "answers": [ + "حکم" + ], + "en_answers": [ + "hokm" + ], + "count": 2 + }, + { + "answers": [ + "پاستور" + ], + "en_answers": [ + "pasoor" + ], + "count": 1 + }, + { + "answers": [ + "پوکر" + ], + "en_answers": [ + "poker" + ], + "count": 1 + }, + { + "answers": [ + "بلوف" + ], + "en_answers": [ + "bluff" + ], + "count": 1 + }, + { + "answers": [ + "شلم" + ], + "en_answers": [ + "forty" + ], + "count": 1 + }, + { + "answers": [ + "منچ" + ], + "en_answers": [ + "ludo" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-85": { + "question": "در ایران محبوب‌ترین مقصد گردشگری خارجی برای مردم کجاست؟", + "en_question": "Where is the most popular tourist destination abroad for people from Iran?", + "annotations": [ + { + "answers": [ + "ترکیه", + "تركيه" + ], + "en_answers": [ + "turkey" + ], + "count": 4 + }, + { + "answers": [ + "تایلند" + ], + "en_answers": [ + "thailand" + ], + "count": 1 + }, + { + "answers": [ + "شمال" + ], + "en_answers": [ + "north" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-86": { + "question": "در ایران نام معروف‌ترین برج چیست؟", + "en_question": "What is the name of the most famous tower in Iran?", + "annotations": [ + { + "answers": [ + "برج میلاد", + "میلاد", + "ميلاد" + ], + "en_answers": [ + "milad tower", + "milad", + "birth" + ], + "count": 5 + }, + { + "answers": [ + "برج آزادی", + "آزادي" + ], + "en_answers": [ + "freedom tower", + "freedom" + ], + "count": 2 + }, + { + "answers": [ + "طغرل" + ], + "en_answers": [ + "tughril" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-01": { + "question": "چه حشره خوراکی در ایران بیشتر از همه خورده می‌شود؟", + "en_question": "What edible insect is eaten most often in Iran?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "New-spme-04": { + "question": "کدام محصول کشاورزی بیشترین صادرات را در ایران دارد؟", + "en_question": "Which agricultural product is exported most often in Iran?", + "annotations": [ + { + "answers": [ + "پسته" + ], + "en_answers": [ + "pistachio" + ], + "count": 4 + }, + { + "answers": [ + "زعفران" + ], + "en_answers": [ + "saffron" + ], + "count": 2 + }, + { + "answers": [ + "گندم" + ], + "en_answers": [ + "wheat" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-05": { + "question": "محبوب‌ترین شیرینی‌ها در ایران چیست؟", + "en_question": "What are the most popular sweets in Iran?", + "annotations": [ + { + "answers": [ + "زبان" + ], + "en_answers": [ + "language" + ], + "count": 2 + }, + { + "answers": [ + "خامه اي", + "نان خامه ای" + ], + "en_answers": [ + "creamy", + "cream puff" + ], + "count": 2 + }, + { + "answers": [ + "ناپلئونی", + "تاپلئونی" + ], + "en_answers": [ + "napoleonic", + "topolioni" + ], + "count": 2 + }, + { + "answers": [ + "شیرینی دانمارکی", + "دانمارکی" + ], + "en_answers": [ + "danish pastry", + "danish" + ], + "count": 2 + }, + { + "answers": [ + "کیک یزدی" + ], + "en_answers": [ + "yazdi cake" + ], + "count": 1 + }, + { + "answers": [ + "باقلوا" + ], + "en_answers": [ + "baklava" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-15": { + "question": "محبوب‌ترین نوشیدنی ورزشی در ایران چیست؟", + "en_question": "What is the most popular sports drink in Iran?", + "annotations": [ + { + "answers": [ + "ردبول" + ], + "en_answers": [ + "red bull" + ], + "count": 1 + }, + { + "answers": [ + "نوشابه انرژی‌زا" + ], + "en_answers": [ + "energy drink" + ], + "count": 1 + }, + { + "answers": [ + "آب" + ], + "en_answers": [ + "water" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "New-spme-27": { + "question": "میانگین سطح تحصیلات مردم در ایران چیست؟", + "en_question": "What is the average education level for people in Iran?", + "annotations": [ + { + "answers": [ + "لیسانس", + "کارشناسی" + ], + "en_answers": [ + "bachelor's degree" + ], + "count": 3 + }, + { + "answers": [ + "دیپلم" + ], + "en_answers": [ + "diploma" + ], + "count": 1 + }, + { + "answers": [ + "کارشناسی ارشد" + ], + "en_answers": [ + "master's degree" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-37": { + "question": "کدام رشته شغلی بیشترین میزان مطالعه توسط دانشجویان ایران را در خارج از کشور دارد؟", + "en_question": "Which profession is most commonly studied abroad by students from Iran?", + "annotations": [ + { + "answers": [ + "پزشکی", + "پزشكي", + "رشته های مربوط به حوزه درمان مثل پزشکی" + ], + "en_answers": [ + "medical", + "fields related to the medical domain such as medicine" + ], + "count": 4 + }, + { + "answers": [ + "مهندسی" + ], + "en_answers": [ + "engineering" + ], + "count": 2 + }, + { + "answers": [ + "برنامه نویسی" + ], + "en_answers": [ + "programming" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-60": { + "question": "اکثر خانواده‌ها در ایران در چه روزی از هفته به فعالیت‌های مذهبی می‌پردازند؟ (مثلاً دوشنبه، سه‌شنبه)", + "en_question": "Which day of the week do most families in Iran practice religious activities? (e.g. Monday, Tuesday)", + "annotations": [ + { + "answers": [ + "جمعه" + ], + "en_answers": [ + "friday" + ], + "count": 4 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-spme-65": { + "question": "محبوب‌ترین روش جشن گرفتن روز استقلال در ایران چیست؟", + "en_question": "What is the most popular way to celebrate Independence Day in Iran?", + "annotations": [ + { + "answers": [ + "در خيابان تظاهرات كردن" + ], + "en_answers": [ + "protesting in the street" + ], + "count": 1 + }, + { + "answers": [ + "راهپیمایی" + ], + "en_answers": [ + "parade" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 1, + "no-answer": 0 + } + }, + "New-spme-68": { + "question": "محبوب‌ترین نوشیدنی بین کودکان در ایران چیست؟", + "en_question": "What is the most popular beverage among children in Iran?", + "annotations": [ + { + "answers": [ + "شیرکاکاو" + ], + "en_answers": [ + "chocolate milk" + ], + "count": 1 + }, + { + "answers": [ + "نوشابه کوکاکولا" + ], + "en_answers": [ + "coca-cola soda" + ], + "count": 1 + }, + { + "answers": [ + "آبمیوه صنعتی" + ], + "en_answers": [ + "industrial juice" + ], + "count": 1 + }, + { + "answers": [ + "دوغ" + ], + "en_answers": [ + "doogh" + ], + "count": 1 + }, + { + "answers": [ + "آبمیوه" + ], + "en_answers": [ + "juice" + ], + "count": 1 + }, + { + "answers": [ + "شیر" + ], + "en_answers": [ + "milk" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-76": { + "question": "محبوب‌ترین مکان در ایران برای جشن گرفتن روز استقلال کجاست؟", + "en_question": "What is the most popular place in Iran to celebrate Independence Day?", + "annotations": [ + { + "answers": [ + "شمال" + ], + "en_answers": [ + "north" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 1, + "no-answer": 0 + } + }, + "New-spme-78": { + "question": "نام آهنگی که معمولاً در جشن تولدها در ایران خوانده می‌شود چیست؟", + "en_question": "What is the name of the song that is typically sung at birthday parties in Iran?", + "annotations": [ + { + "answers": [ + "تولدت مبارک اندی" + ], + "en_answers": [ + "happy birthday andy" + ], + "count": 2 + }, + { + "answers": [ + "تولدت مبارک" + ], + "en_answers": [ + "happy birthday" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-01": { + "question": " در ایران چه تنقلاتی معمولاً جلوی مدارس به فروش می‌رسد؟", + "en_question": "What snacks are usually sold in front of schools in Iran?", + "annotations": [ + { + "answers": [ + "چیپس" + ], + "en_answers": [ + "chips" + ], + "count": 2 + }, + { + "answers": [ + "آب ميوه و كيك" + ], + "en_answers": [ + "juice and cake" + ], + "count": 1 + }, + { + "answers": [ + "پفک" + ], + "en_answers": [ + "cheese puff" + ], + "count": 1 + }, + { + "answers": [ + "بستنی" + ], + "en_answers": [ + "ice cream" + ], + "count": 1 + }, + { + "answers": [ + "اسنک" + ], + "en_answers": [ + "snack" + ], + "count": 1 + }, + { + "answers": [ + "نوشابه" + ], + "en_answers": [ + "soda" + ], + "count": 1 + }, + { + "answers": [ + "تخمه" + ], + "en_answers": [ + "seed" + ], + "count": 1 + }, + { + "answers": [ + "باقلا" + ], + "en_answers": [ + "fava beans" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-09": { + "question": "در ایران معمولاً از چه روغنی برای پخت و پز استفاده می‌شود؟", + "en_question": "What oil is usually used for cooking in Iran?", + "annotations": [ + { + "answers": [ + "آفتاب گردان", + "آفتابگردان", + "روغن آفتابگردان", + "روغن آفتاب گردان" + ], + "en_answers": [ + "sunflower", + "sunflower oil" + ], + "count": 4 + }, + { + "answers": [ + "روغن زیتون" + ], + "en_answers": [ + "olive oil" + ], + "count": 1 + }, + { + "answers": [ + "روغن کرمانشاهی" + ], + "en_answers": [ + "kermanshahi oil" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-10": { + "question": "در ایران چه غذاهایی معمولاً توسط زنان باردار خورده می‌شود؟", + "en_question": "What food is commonly consumed by pregnant women in Iran?", + "annotations": [ + { + "answers": [ + "متناسب با ویار" + ], + "en_answers": [ + "compatible with morning sickness" + ], + "count": 1 + }, + { + "answers": [ + "غذای مغذی" + ], + "en_answers": [ + "nutritious food" + ], + "count": 1 + }, + { + "answers": [ + "برنج و پروتیین حیوانی" + ], + "en_answers": [ + "rice and animal protein" + ], + "count": 1 + }, + { + "answers": [ + "ترشیجات" + ], + "en_answers": [ + "pickles" + ], + "count": 1 + }, + { + "answers": [ + "سوپ" + ], + "en_answers": [ + "soup" + ], + "count": 1 + }, + { + "answers": [ + "چلو گوشت" + ], + "en_answers": [ + "rice with meat" + ], + "count": 1 + }, + { + "answers": [ + "کباب" + ], + "en_answers": [ + "kebab" + ], + "count": 1 + }, + { + "answers": [ + "جوجه" + ], + "en_answers": [ + "chick" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-su-15": { + "question": "در ایران محبوب‌ترین نوشیدنی سنتی غیرالکلی چیست؟", + "en_question": "What is the most popular traditional non-alcoholic drink in Iran?", + "annotations": [ + { + "answers": [ + "دوغ" + ], + "en_answers": [ + "doogh" + ], + "count": 2 + }, + { + "answers": [ + "چايي" + ], + "en_answers": [ + "tea" + ], + "count": 1 + }, + { + "answers": [ + "آب هویج بستنی" + ], + "en_answers": [ + "carrot juice ice cream" + ], + "count": 1 + }, + { + "answers": [ + "معجون" + ], + "en_answers": [ + "paste" + ], + "count": 1 + }, + { + "answers": [ + "شربت آلبالو" + ], + "en_answers": [ + "sour cherry syrup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-17": { + "question": "در ایران معمولاً چه امکانات ورزشی در پارک‌ها وجود دارد؟", + "en_question": "What sports facilities are generally available in parks in Iran?", + "annotations": [ + { + "answers": [ + "پینگ پنگ", + "میز پینگ پنگ", + "پینگ پونگ" + ], + "en_answers": [ + "ping pong", + "ping pong table" + ], + "count": 3 + }, + { + "answers": [ + "وسایل بدنسازی", + "وسایل بدنسازی ابتدایی", + "بدنسازی" + ], + "en_answers": [ + "gym equipment", + "basic gym equipment", + "bodybuilding" + ], + "count": 3 + }, + { + "answers": [ + "وسایل ورزشی" + ], + "en_answers": [ + "sports equipment" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-21": { + "question": "در ایران فعالیت‌های معمولی که سالمندان معمولاً در پارک‌ها انجام می‌دهند چیست؟", + "en_question": "What are the common activities that seniors usually do in parks in Iran?", + "annotations": [ + { + "answers": [ + "پیاده روی", + "پياده روي" + ], + "en_answers": [ + "walking" + ], + "count": 3 + }, + { + "answers": [ + "ورزش" + ], + "en_answers": [ + "sport" + ], + "count": 2 + }, + { + "answers": [ + "گفتگو", + "صحبت کردن با هم در مورد مسائل روزمره" + ], + "en_answers": [ + "conversation", + "talking to each other about everyday issues" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-24": { + "question": "در ایران والدین و فرزندان معمولاً چه ورزش‌هایی را با هم انجام می دهند؟", + "en_question": "What sports do parents and children commonly play together in Iran?", + "annotations": [ + { + "answers": [ + "فوتبال" + ], + "en_answers": [ + "football" + ], + "count": 3 + }, + { + "answers": [ + "واليبال", + "واليبال و وسطي", + "والیبال" + ], + "en_answers": [ + "volleyball" + ], + "count": 2 + }, + { + "answers": [ + "وسطي", + "واليبال و وسطي" + ], + "en_answers": [ + "dodgeball" + ], + "count": 1 + }, + { + "answers": [ + "قدم زدن در پارک" + ], + "en_answers": [ + "walking in the park" + ], + "count": 1 + }, + { + "answers": [ + "دو" + ], + "en_answers": [ + "run" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-28": { + "question": "چه رنگی با تیم ملی فوتبال ایران مرتبط است؟", + "en_question": "What color is associated with the national soccer team of Iran?", + "annotations": [ + { + "answers": [ + "سفید" + ], + "en_answers": [ + "white" + ], + "count": 4 + }, + { + "answers": [ + "سبز" + ], + "en_answers": [ + "green" + ], + "count": 1 + }, + { + "answers": [ + "قرمز" + ], + "en_answers": [ + "red" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-33": { + "question": "نوع لباس پوشیدن برای معلمان مدارس در ایران چیست؟", + "en_question": "What is the common dress code for school teachers in Iran?", + "annotations": [ + { + "answers": [ + "مانتو مقنعه" + ], + "en_answers": [ + "manteu, hijab" + ], + "count": 1 + }, + { + "answers": [ + "بايد پوشيده باشه" + ], + "en_answers": [ + "must be covered" + ], + "count": 1 + }, + { + "answers": [ + "روپوش سفید" + ], + "en_answers": [ + "white coat" + ], + "count": 1 + }, + { + "answers": [ + "لباس رسمی" + ], + "en_answers": [ + "formal dress" + ], + "count": 1 + }, + { + "answers": [ + "کت و شلوار" + ], + "en_answers": [ + "suit" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-34": { + "question": "در ایران محبوب‌ترین فعالیت فوق‌برنامه مرتبط با موسیقی در مدارس چیست؟", + "en_question": "What is the most popular extracurricular activity related to music in schools in Iran?", + "annotations": [ + { + "answers": [ + "سرود", + "آواز گروهی", + "سرودخوانی" + ], + "en_answers": [ + "anthem", + "choral singing" + ], + "count": 3 + }, + { + "answers": [ + "نداريم" + ], + "en_answers": [ + "we don't have" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-su-42": { + "question": "در ایران چه دینی عمدتاً در مدارس تدریس می‌شود؟", + "en_question": "What religion is mainly taught in schools in Iran?", + "annotations": [ + { + "answers": [ + "اسلام", + "اسلام شیعی" + ], + "en_answers": [ + "islam", + "shia islam" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-45": { + "question": "در ایران روز تعلیم و تربیت چه تاریخی است؟ (با فرمت MM/DD ارائه شود (مثلاً 12/31).)", + "en_question": "What date is Education Day celebrated in Iran? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "02/12" + ], + "en_answers": [ + "02/12" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "New-su-50": { + "question": "در ایران شغل اصلی مردم مناطق کوهستانی چیست؟", + "en_question": "What is the main occupation of people in mountainous areas in Iran?", + "annotations": [ + { + "answers": [ + "دام پروری", + "دام پروری و کشاورزی", + "دامداری" + ], + "en_answers": [ + "animal husbandry and agriculture", + "animal husbandry" + ], + "count": 3 + }, + { + "answers": [ + "کشاورز", + "کشاورزی", + "دام پروری و کشاورزی" + ], + "en_answers": [ + "farmer" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-su-51": { + "question": "در ایران شغل اصلی مردم در مناطق ساحلی چیست؟", + "en_question": "What is the main occupation of people in coastal areas in Iran?", + "annotations": [ + { + "answers": [ + "ماهیگیری", + "ماهی گیری" + ], + "en_answers": [ + "fishing" + ], + "count": 4 + }, + { + "answers": [ + "شغل آزاد (تجارت)" + ], + "en_answers": [ + "freelance (business)" + ], + "count": 1 + }, + { + "answers": [ + "فروش چیزهایی مثل لباس‌" + ], + "en_answers": [ + "selling things like clothes" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-57": { + "question": "در ایران رایج‌ترین دامی که پرورش داده می‌شود چیست؟", + "en_question": "What is the most common livestock raised in Iran?", + "annotations": [ + { + "answers": [ + "گوسفند" + ], + "en_answers": [ + "sheep" + ], + "count": 5 + }, + { + "answers": [ + "گاو" + ], + "en_answers": [ + "cow" + ], + "count": 3 + }, + { + "answers": [ + "مرغ" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-58": { + "question": "در ایران چه حیواناتی به طور معمول برای کشاورزی استفاده می‌شوند؟", + "en_question": "What animals are commonly used for agriculture in Iran?", + "annotations": [ + { + "answers": [ + "گاو", + "گاو و خر" + ], + "en_answers": [ + "cow", + "cow and donkey" + ], + "count": 5 + }, + { + "answers": [ + "خر", + "گاو و خر", + "الاغ" + ], + "en_answers": [ + "donkey" + ], + "count": 3 + }, + { + "answers": [ + "اسب" + ], + "en_answers": [ + "horse" + ], + "count": 1 + }, + { + "answers": [ + "گوسفند" + ], + "en_answers": [ + "sheep" + ], + "count": 1 + }, + { + "answers": [ + "مرغ" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-59": { + "question": "در ایران کشاورزان معمولاً برای محافظت از خود در برابر گرما هنگام کشاورزی چه می‌پوشند؟", + "en_question": "What do farmers in Iran typically wear to protect themselves from the heat whilst farming?", + "annotations": [ + { + "answers": [ + "کلاه حصیری", + "کلاه آفتابگیر", + "کلاه" + ], + "en_answers": [ + "straw hat", + "sun hat", + "hat" + ], + "count": 5 + }, + { + "answers": [ + "لباس های بلند" + ], + "en_answers": [ + "long dresses" + ], + "count": 1 + }, + { + "answers": [ + "نازک و کمی گشاد" + ], + "en_answers": [ + "thin and slightly loose" + ], + "count": 1 + }, + { + "answers": [ + "چفیه خیس" + ], + "en_answers": [ + "wet scarf" + ], + "count": 1 + }, + { + "answers": [ + "هیچی نمی پوشند" + ], + "en_answers": [ + "they wear nothing" + ], + "count": 1 + }, + { + "answers": [ + "لباس" + ], + "en_answers": [ + "clothes" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-60": { + "question": "در ایران کشاورزان معمولاً برای ناهار چه می‌خورند؟", + "en_question": "What do farmers in Iran usually eat for lunch?", + "annotations": [ + { + "answers": [ + "آبگوشت" + ], + "en_answers": [ + "abgoosht" + ], + "count": 1 + }, + { + "answers": [ + "نان و پنیر", + "نان و پنیر و یا خورشت" + ], + "en_answers": [ + "bread, cheese, or stew" + ], + "count": 1 + }, + { + "answers": [ + "خورشت", + "نان و پنیر و یا خورشت" + ], + "en_answers": [], + "count": 1 + }, + { + "answers": [ + "آش" + ], + "en_answers": [ + "ash (a type of thick soup or stew)" + ], + "count": 1 + }, + { + "answers": [ + "کوفته" + ], + "en_answers": [ + "meatball" + ], + "count": 1 + }, + { + "answers": [ + "پلو مرغ" + ], + "en_answers": [ + "chicken pilaf" + ], + "count": 1 + }, + { + "answers": [ + "پلو خورش" + ], + "en_answers": [ + "rice stew" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-su-71": { + "question": "در ایران والدین معمولاً چه هدایایی به فرزندانشان برای تولدشان می‌دهند؟", + "en_question": "What gifts do parents generally give to their children for their birthdays in Iran?", + "annotations": [ + { + "answers": [ + "اسباب بازی" + ], + "en_answers": [ + "toy" + ], + "count": 4 + }, + { + "answers": [ + "پول", + "پول نقد" + ], + "en_answers": [ + "money", + "cash" + ], + "count": 2 + }, + { + "answers": [ + "لباس" + ], + "en_answers": [ + "clothes" + ], + "count": 1 + }, + { + "answers": [ + "طلا" + ], + "en_answers": [ + "gold" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-75": { + "question": "در ایران اکثر خانواده‌ها معمولاً چه وسایل نقلیه‌ای دارند؟", + "en_question": "What type of vehicle do most families in Iran generally own?", + "annotations": [ + { + "answers": [ + "ماشین", + "خودرو", + "ماشین شخصی" + ], + "en_answers": [ + "car", + "personal car" + ], + "count": 3 + }, + { + "answers": [ + "موتور" + ], + "en_answers": [ + "engine" + ], + "count": 1 + }, + { + "answers": [ + "پراید (ماشین)" + ], + "en_answers": [ + "pride (car)" + ], + "count": 1 + }, + { + "answers": [ + "بدون وسیله نقلیه" + ], + "en_answers": [ + "without vehicle" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-77": { + "question": "در ایران معمولاً در زمان عید به بچه‌ها چه چیزی داده می‌شود؟", + "en_question": "What is usually given to the children during Eid in Iran?", + "annotations": [ + { + "answers": [ + "پول", + "پول نقد" + ], + "en_answers": [ + "money", + "cash" + ], + "count": 3 + }, + { + "answers": [ + "عیدی" + ], + "en_answers": [ + "eidi (gift given during persian new year)" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-81": { + "question": "در ایران دامادها معمولاً در عروسی‌ها چه لباسی می‌پوشند؟", + "en_question": "What clothes do grooms usually wear at weddings in Iran?", + "annotations": [ + { + "answers": [ + "کت و شلوار", + "کت شلوار", + "کت و شلوار رسمی" + ], + "en_answers": [ + "suit", + "formal suit" + ], + "count": 4 + }, + { + "answers": [ + "کت وشلوار و کراوات" + ], + "en_answers": [ + "suit and tie" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-82": { + "question": "در ایران عروس‌ها معمولاً در مراسم عروسی چه لباسی می‌پوشند؟", + "en_question": "What clothes do brides usually wear at weddings in Iran?", + "annotations": [ + { + "answers": [ + "لباس سفید", + "لباس سفيد عروس", + "لباس سفید بلند" + ], + "en_answers": [ + "white dress", + "bride's white dress", + "long white dress" + ], + "count": 5 + }, + { + "answers": [ + "شنل" + ], + "en_answers": [ + "cloak" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-83": { + "question": "در ایران معمولاً چه غذاهایی در مراسم عروسی سرو می‌شود؟", + "en_question": "What food is usually served at weddings in Iran?", + "annotations": [ + { + "answers": [ + "ژیگو" + ], + "en_answers": [ + "zigou" + ], + "count": 1 + }, + { + "answers": [ + "جوجه کباب" + ], + "en_answers": [ + "chicken kebab" + ], + "count": 1 + }, + { + "answers": [ + "پلو ته چین" + ], + "en_answers": [ + "tahchin polo" + ], + "count": 1 + }, + { + "answers": [ + "چلو کباب" + ], + "en_answers": [ + "rice with kebab" + ], + "count": 1 + }, + { + "answers": [ + "گوشت ماهیچه با پلو" + ], + "en_answers": [ + "beef shank with rice" + ], + "count": 1 + }, + { + "answers": [ + "زرشک پلو با مرغ" + ], + "en_answers": [ + "barberry rice with chicken" + ], + "count": 1 + }, + { + "answers": [ + "کباب" + ], + "en_answers": [ + "kebab" + ], + "count": 1 + }, + { + "answers": [ + "باقالی پلو" + ], + "en_answers": [ + "broad bean rice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-86": { + "question": "در ایران معروف‌ترین ساختمان دولتی چیست؟", + "en_question": "What is the most famous government building in Iran?", + "annotations": [ + { + "answers": [ + "مجلس", + "ساختمان مجلس" + ], + "en_answers": [ + "parliament", + "parliament building" + ], + "count": 3 + }, + { + "answers": [ + "بیت رهبری" + ], + "en_answers": [ + "office of the supreme leader" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-su-88": { + "question": "محبوب‌ترین سبک موسیقی در بین جوانان ایران چیست؟", + "en_question": "What is the most popular music genre among the younger population in Iran?", + "annotations": [ + { + "answers": [ + "پاپ" + ], + "en_answers": [ + "pop" + ], + "count": 4 + }, + { + "answers": [ + "رپ" + ], + "en_answers": [ + "rap" + ], + "count": 3 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-02": { + "question": "در ایران دانش‌آموزان مقطع متوسطه معمولاً چه ساعتی از مدرسه تمام می‌کنند؟ (به فرمت HH:MM ارائه دهید (مثلاً 18:00، 09:00).)", + "en_question": "What time do middle school students in Iran typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "15:00" + ], + "en_answers": [ + "15:00" + ], + "count": 2 + }, + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 1 + }, + { + "answers": [ + "13:30" + ], + "en_answers": [ + "13:30" + ], + "count": 1 + }, + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-03": { + "question": "در ایران مردم معمولاً در چه سنی به دانشگاه می‌روند؟ (فقط اعداد عربی (مثلاً 12) را ارائه دهید.)", + "en_question": "At what age do people in Iran typically go to university? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 4 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-06": { + "question": "در ایران از چه سنی افراد باید به تحصیل اجباری بپردازند؟ (فقط اعداد عربی (مثلاً 12) را وارد کنید.)", + "en_question": "From what age do people need to attend compulsory education Iran? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 3 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-09": { + "question": "در ایران بچه‌ها چند روز در هفته به مدرسه می‌روند؟ (فقط اعداد عربی (0 تا 7) را وارد کنید.)", + "en_question": "How many days a week do children attend school in Iran? (Provide Arabic numerals (0~7) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 4 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-11": { + "question": "در ایران، گرفتن مدرک کارشناسی ارشد معمولاً چند سال طول می‌کشد؟ (فقط اعداد عربی (مثلاً 12) را وارد کنید.)", + "en_question": "In Iran, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 4 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-12": { + "question": "در ایران بهترین دانشگاه کدام است؟ (نام رسمی آن را ارائه دهید.)", + "en_question": "What is the top university in Iran? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "دانشگاه صنعتی شریف", + "شريف", + "دانشگاه شریف" + ], + "en_answers": [ + "sharif university of technology", + "sharif", + "sharif university" + ], + "count": 4 + }, + { + "answers": [ + "دانشگاه تهران", + "دانشگاه علوم پزشکی تهران" + ], + "en_answers": [ + "university of tehran", + "tehran university of medical sciences" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-13": { + "question": "در ایران در چه سنی اکثر مردم از دانشگاه فارغ‌ التحصیل می‌شوند؟ (فقط اعداد عربی (مثلاً 12) را وارد کنید.)", + "en_question": "At what age do most people in Iran graduate from university? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "23" + ], + "en_answers": [ + "23" + ], + "count": 3 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 2 + }, + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-15": { + "question": "در ایران در چه سنی کودکان معمولاً دوره متوسطه را شروع می‌کنند؟ (فقط اعداد عربی (مثلاً 12) را وارد کنید.)", + "en_question": "At what age do children in Iran generally start middle school? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 2 + }, + { + "answers": [ + "11" + ], + "en_answers": [ + "11" + ], + "count": 1 + }, + { + "answers": [ + "14" + ], + "en_answers": [ + "14" + ], + "count": 1 + }, + { + "answers": [ + "13" + ], + "en_answers": [ + "13" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-17": { + "question": "یک کارگر تمام وقت درایران معمولاً چند ساعت در هفته کار می‌کند؟ (فقط اعداد عربی (مثلاً 12) را وارد کنید.)", + "en_question": "How many hours a week does a full-time worker in Iran typically work? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 2 + }, + { + "answers": [ + "44" + ], + "en_answers": [ + "44" + ], + "count": 1 + }, + { + "answers": [ + "45" + ], + "en_answers": [ + "45" + ], + "count": 1 + }, + { + "answers": [ + "50" + ], + "en_answers": [ + "50" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-19": { + "question": "یک کارمند تمام وقت درایران چند روز در هفته کار می‌کند؟ (فقط اعداد عربی (0 تا 7) را وارد کنید.)", + "en_question": "How many days a week does a full-time worker work in Iran? (Provide Arabic numerals (0~7) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 4 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-20": { + "question": "در چه سنی اکثر مردم درایران شروع به کار می‌کنند؟ (فقط اعداد عربی (مثلاً 12) را وارد کنید.)", + "en_question": "At what age do most people start working in Iran? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 2 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ni-en-21": { + "question": "از چه سنی فرد مجاز به کار کردن درایران است؟ (فقط اعداد عربی (مثلاً 12) را وارد کنید.)", + "en_question": "From what age is an individual allowed to work in Iran? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 2 + }, + { + "answers": [ + "16" + ], + "en_answers": [ + "16" + ], + "count": 2 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-31": { + "question": "مردم درایران سنتاً در روز کریسمس چه غذایی می‌خورند؟", + "en_question": "What do people in Iran traditionally eat on Christmas Day?", + "annotations": [], + "idks": { + "not-applicable": 4, + "no-answer": 1, + "idk": 0 + } + }, + "Ni-en-37": { + "question": "نام روزی از سال که مردم درایران عشق و رمانتیک را جشن می‌گیرند چیست؟", + "en_question": "What is the name of the day of the year where people in Iran celebrate love and romance?", + "annotations": [ + { + "answers": [ + "ولنتاين", + "ولنتاین" + ], + "en_answers": [ + "valentine" + ], + "count": 3 + }, + { + "answers": [ + "سپندار مزگان", + "سپندارمذگان", + "سپندارمزگان" + ], + "en_answers": [ + "esfandegan" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-40": { + "question": "محبوب‌ترین آهنگ کریسمس درایران چیست؟", + "en_question": "What is the most popular Christmas song in Iran?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Nu-in-04": { + "question": "درایران در هر سال تحصیلی دبیرستان‌ها چند ترم وجود دارد؟ (فقط به اعداد عربی (مثلاً 7، 8) پاسخ دهید.)", + "en_question": "How many semesters are there each academic year at high schools in Iran? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-05": { + "question": "درایران معمولاً ماه تحصیلی جدید در چه ماهی شروع می‌شود؟ (فقط اعداد عربی (1 تا 12) را ارائه دهید.)", + "en_question": "In which month does the new school year typically begin in Iran? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "7", + "مهر" + ], + "en_answers": [ + "7", + "kindness" + ], + "count": 3 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-06": { + "question": "درایران روز ملی معلم چه تاریخی است؟ (با فرمت MM/DD ارائه شود (مثلاً 12/31).)", + "en_question": "When is National Teacher's Day commemorated in Iran? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "02/12" + ], + "en_answers": [ + "02/12" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-11": { + "question": "درایران مدرسه ابتدایی از چه ساعتی شروع می‌شود؟ (به فرمت HH:MM ارائه دهید مثلاً 18:00، 09:00).", + "en_question": "At what time does elementary school start in Iran? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "07:00" + ], + "en_answers": [ + "07:00" + ], + "count": 2 + }, + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 2 + }, + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 1 + }, + { + "answers": [ + "07:30" + ], + "en_answers": [ + "07:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-20": { + "question": "درایران روز کودک چه زمانی جشن گرفته می‌شود؟ (با فرمت MM/DD ارائه دهید (مثلاً 12/31).)", + "en_question": "When is Children's Day celebrated in Iran? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "07/16" + ], + "en_answers": [ + "07/16" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 2, + "not-applicable": 0 + } + }, + "Nu-in-40": { + "question": "کدام شهر مقصد اصلی جویندگان کار درایران است؟", + "en_question": "Which city is the main destination for job seekers in Iran?", + "annotations": [ + { + "answers": [ + "تهران" + ], + "en_answers": [ + "tehran" + ], + "count": 5 + }, + { + "answers": [ + "اصفهان" + ], + "en_answers": [ + "isfahan" + ], + "count": 1 + }, + { + "answers": [ + "شیراز" + ], + "en_answers": [ + "shiraz" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-1": { + "question": "محبوب‌ترین زنجیره رستوران‌های فست فود درایران کدام است؟", + "en_question": "What is Iran's most popular fast food chain?", + "annotations": [ + { + "answers": [ + "هایدا" + ], + "en_answers": [ + "hyda" + ], + "count": 2 + }, + { + "answers": [ + "خاته کنتاکی" + ], + "en_answers": [ + "kentucky house" + ], + "count": 1 + }, + { + "answers": [ + "پیتزا پیتزا" + ], + "en_answers": [ + "pizza pizza" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "not-applicable": 2, + "no-answer": 0 + } + }, + "Sa-en-13": { + "question": "غذایی که درایران بیشترین اختلاف نظر (یا عشق یا نفرت) را دارد چیست؟", + "en_question": "What is the food that is most divisive (either love or hate) in Iran?", + "annotations": [ + { + "answers": [ + "کله پاچه" + ], + "en_answers": [ + "head and hoof stew" + ], + "count": 2 + }, + { + "answers": [ + "قرمه سبزی" + ], + "en_answers": [ + "ghormeh sabzi" + ], + "count": 1 + }, + { + "answers": [ + "شوید پلو" + ], + "en_answers": [ + "dill rice" + ], + "count": 1 + }, + { + "answers": [ + "آش" + ], + "en_answers": [ + "ash (a type of thick soup or stew)" + ], + "count": 1 + }, + { + "answers": [ + "خورشت بادمجان" + ], + "en_answers": [ + "eggplant stew" + ], + "count": 1 + }, + { + "answers": [ + "خورشت کرفس" + ], + "en_answers": [ + "celery stew" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-16": { + "question": "درایران محبوب‌ترین تیم فوتبال بین مردم کدام است؟", + "en_question": "What is the most popular soccer team among the people from Iran?", + "annotations": [ + { + "answers": [ + "پرسپولیس", + "پرسپوليس" + ], + "en_answers": [ + "persepolis" + ], + "count": 4 + }, + { + "answers": [ + "رئال مادرید" + ], + "en_answers": [ + "real madrid" + ], + "count": 1 + }, + { + "answers": [ + "منچستریونایتد" + ], + "en_answers": [ + "manchester united" + ], + "count": 1 + }, + { + "answers": [ + "بارسلونا" + ], + "en_answers": [ + "barcelona" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-22": { + "question": "درایران معروف‌ترین دانشگاه به خاطر تیم ورزشی‌اش به چه نامی شناخته می‌شود؟", + "en_question": "What is the most famous university in Iran known for its sports team?", + "annotations": [ + { + "answers": [ + "دانشگاه آزاد" + ], + "en_answers": [ + "free university" + ], + "count": 1 + }, + { + "answers": [ + "دانشگاه تهران" + ], + "en_answers": [ + "university of tehran" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "not-applicable": 2, + "نمیدانم": 1, + "no-answer": 0 + } + }, + "Sa-en-31": { + "question": "درایران محبوب‌ترین حیوان خانگی خانواده‌ها چیست؟", + "en_question": "What is Iran's most popular family pet?", + "annotations": [ + { + "answers": [ + "گربه" + ], + "en_answers": [ + "cat" + ], + "count": 3 + }, + { + "answers": [ + "سگ" + ], + "en_answers": [ + "dog" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-32": { + "question": "درایران محبوب‌ترین برنامه تلویزیونی خانوادگی چیست؟", + "en_question": "What is the most popular family TV show in Iran?", + "annotations": [ + { + "answers": [ + "دورهمی" + ], + "en_answers": [ + "gathering" + ], + "count": 2 + }, + { + "answers": [ + "مسابقه ي هنر" + ], + "en_answers": [ + "art contest" + ], + "count": 1 + }, + { + "answers": [ + "برنامه های طنز" + ], + "en_answers": [ + "comedy shows" + ], + "count": 1 + }, + { + "answers": [ + "خندوانه" + ], + "en_answers": [ + "khandevaneh" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Sa-en-37": { + "question": "درایران محبوب‌ترین بازی تخته‌ای خانوادگی چیست؟", + "en_question": "What is the most popular family boardgame in Iran?", + "annotations": [ + { + "answers": [ + "تخته نرد" + ], + "en_answers": [ + "backgammon" + ], + "count": 4 + }, + { + "answers": [ + "منچ" + ], + "en_answers": [ + "ludo" + ], + "count": 2 + }, + { + "answers": [ + "مارپله" + ], + "en_answers": [ + "snakes and ladders" + ], + "count": 1 + }, + { + "answers": [ + "شطرنج" + ], + "en_answers": [ + "chess" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-6": { + "question": "محبوب‌ترین غذای بیرون‌بر درایران چیست؟", + "en_question": "What is the most popular takeaway food in Iran?", + "annotations": [ + { + "answers": [ + "پیتزا", + "پيتزا" + ], + "en_answers": [ + "pizza" + ], + "count": 4 + }, + { + "answers": [ + "چلوکباب" + ], + "en_answers": [ + "rice with kebab" + ], + "count": 1 + }, + { + "answers": [ + "کباب" + ], + "en_answers": [ + "kebab" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-7": { + "question": "چه تنقلاتی درایران محبوب هستند؟", + "en_question": "What are popular snacks in Iran?", + "annotations": [ + { + "answers": [ + "چیپس", + "چيپس" + ], + "en_answers": [ + "crisps" + ], + "count": 4 + }, + { + "answers": [ + "پفک" + ], + "en_answers": [ + "cheesepuff" + ], + "count": 3 + }, + { + "answers": [ + "لواشک" + ], + "en_answers": [ + "fruit leather" + ], + "count": 1 + }, + { + "answers": [ + "تخمه آفتابگردان" + ], + "en_answers": [ + "sunflower seeds" + ], + "count": 1 + }, + { + "answers": [ + "تخمه" + ], + "en_answers": [ + "seed" + ], + "count": 1 + }, + { + "answers": [ + "بادوم زمینی(آجیل)" + ], + "en_answers": [ + "peanut (snack)" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-9": { + "question": "مردم درایران در ساحل چه چیزی می‌خورند؟", + "en_question": "What do people from Iran eat at the beach?", + "annotations": [ + { + "answers": [ + "چای با شیرینی" + ], + "en_answers": [ + "tea with sweets" + ], + "count": 1 + }, + { + "answers": [ + "میوه" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + }, + { + "answers": [ + "تخمه" + ], + "en_answers": [ + "seed" + ], + "count": 1 + }, + { + "answers": [ + "بستنی" + ], + "en_answers": [ + "ice cream" + ], + "count": 1 + }, + { + "answers": [ + "عرق", + "غرق و جوجه" + ], + "en_answers": [ + "vodka" + ], + "count": 1 + }, + { + "answers": [ + "جوجه", + "غرق و جوجه" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "چیپس" + ], + "en_answers": [ + "crisps" + ], + "count": 1 + }, + { + "answers": [ + "ساندویچ سرد" + ], + "en_answers": [ + "cold sandwich" + ], + "count": 1 + }, + { + "answers": [ + "هندوانه" + ], + "en_answers": [ + "watermelon" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-10": { + "question": "درایران مردان معمولاً در چه سنی ازدواج می‌کنند؟ (فقط اعداد عربی (مثلاً 20) را ارائه دهید.)", + "en_question": "At what age do men usually get married in Iran? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 2 + }, + { + "answers": [ + "33" + ], + "en_answers": [ + "33" + ], + "count": 1 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ta-pe-11": { + "question": "درایران زنان معمولاً در چه سنی ازدواج می‌کنند؟ (فقط اعداد عربی (مثلاً 20) را وارد کنید.)", + "en_question": "At what age do women usually get married in Iran? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "27" + ], + "en_answers": [ + "27" + ], + "count": 1 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + }, + { + "answers": [ + "21" + ], + "en_answers": [ + "21" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ta-pe-13": { + "question": "درایران در نسل والدین شما، میانگین تعداد اعضای خانواده‌ها چند نفر بوده است؟ (فقط عدد عربی (مثلاً 20) ارائه دهید.)", + "en_question": "In your parents' generation, what was the average number of members in their family in Iran? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "5", + "5 نفر" + ], + "en_answers": [ + "5 people", + "5" + ], + "count": 2 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-17": { + "question": "درایران بازی‌های المپیک، کدام ورزش در ایران محبوب‌ترین است؟", + "en_question": "In the Olympic Games, which sport is the most popular in Iran?", + "annotations": [ + { + "answers": [ + "والیبال", + "واليبال" + ], + "en_answers": [ + "volleyball" + ], + "count": 3 + }, + { + "answers": [ + "کشتی" + ], + "en_answers": [ + "wrestling" + ], + "count": 2 + }, + { + "answers": [ + "وزنه برداری" + ], + "en_answers": [ + "weightlifting" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-21": { + "question": "درایران بچه‌ها معمولاً کجا فوتبال بازی می‌کنند؟", + "en_question": "Where do children usually play soccer in Iran?", + "annotations": [ + { + "answers": [ + "کوچه" + ], + "en_answers": [ + "alley" + ], + "count": 3 + }, + { + "answers": [ + "خیابان" + ], + "en_answers": [ + "street" + ], + "count": 1 + }, + { + "answers": [ + "باشگاه" + ], + "en_answers": [ + "club" + ], + "count": 1 + }, + { + "answers": [ + "حیاط مدرسه" + ], + "en_answers": [ + "schoolyard" + ], + "count": 1 + }, + { + "answers": [ + "زمین فوتبال نزدیک به منطقه زندگی" + ], + "en_answers": [ + "football field near the living area" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-22": { + "question": "درایران کدام تمرین روزانه بین زنان محبوب است؟", + "en_question": "Which daily exercise is popular among women in Iran?", + "annotations": [ + { + "answers": [ + "پیاده روی" + ], + "en_answers": [ + "walking" + ], + "count": 2 + }, + { + "answers": [ + "یوگا" + ], + "en_answers": [ + "yoga" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ta-pe-23": { + "question": "درایران کدام تمرین روزانه بین مردان محبوب است؟", + "en_question": "Which daily exercise is popular among men in Iran?", + "annotations": [ + { + "answers": [ + "پیاده روی" + ], + "en_answers": [ + "walking" + ], + "count": 1 + }, + { + "answers": [ + "بدنسازی" + ], + "en_answers": [ + "bodybuilding" + ], + "count": 1 + }, + { + "answers": [ + "پلانک" + ], + "en_answers": [ + "plank" + ], + "count": 1 + }, + { + "answers": [ + "دراز نشست" + ], + "en_answers": [ + "sit-up" + ], + "count": 1 + }, + { + "answers": [ + "شنا سوئدی" + ], + "en_answers": [ + "swedish swimming" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 2, + "not-applicable": 0 + } + }, + "Ta-pe-25": { + "question": "درایران معروف‌ترین رقابت در یک لیگ ورزشی ملی چیست؟ (به عنوان مثال، ___ در مقابل ___)", + "en_question": "What is the most famous rivalry in a national sports league in Iran? (e.g., ___ vs ___)", + "annotations": [ + { + "answers": [ + "اسقلال در برابر پرسپولیس", + "پرسپولیس در مقابل استقلال", + "فوتبال استقلال در مقابل پرسپولیس", + "دربی پرسپولیس در مقابل استقلال", + "استقلال در مقابل پرسپولیس" + ], + "en_answers": [ + "esteghlal vs persepolis", + "persepolis versus esteghlal", + "esteghlal football against persepolis", + "persepolis derby against esteghlal" + ], + "count": 5 + }, + { + "answers": [ + "سپاهان در مقابل ذوب آهن" + ], + "en_answers": [ + "sepahan against zob ahan" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-29": { + "question": "درایران کدام ورزش حرفه‌ای پردرآمدترین است؟", + "en_question": "Which professional sport is the highest paying in Iran?", + "annotations": [ + { + "answers": [ + "فوتبال" + ], + "en_answers": [ + "football" + ], + "count": 5 + }, + { + "answers": [ + "تنیس" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-30": { + "question": "درایران محبوب‌ترین برنامه تلویزیونی ورزشی چه برنامه‌ای است/بوده است؟", + "en_question": "What is/was the most popular sports-related TV program in Iran?", + "annotations": [ + { + "answers": [ + "نود", + "برنامه ٩٠" + ], + "en_answers": [ + "ninety", + "90 program" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-32": { + "question": "درایران کدام روز از سال معمولاً به آتش‌بازی اختصاص دارد؟", + "en_question": "What day of the year is usually dedicated to fireworks in Iran?", + "annotations": [ + { + "answers": [ + "چهارشنبه سوری", + "آخرین شب چهارشنبه سال", + "چهارشنبه سوری (آخرین سه شنبه شب سال)" + ], + "en_answers": [ + "chaharshanbe suri", + "last wednesday night of the year", + "chaharshanbe suri (last tuesday night of the year)" + ], + "count": 4 + }, + { + "answers": [ + "یک هفته قبل از عید نوروز" + ], + "en_answers": [ + "one week before nowruz" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-37": { + "question": "نماد معمول شب سال نو که معمولاً درایران یافت می‌شود، چیست؟", + "en_question": "What is the common symbol of New Year's Eve that is usually found in Iran?", + "annotations": [ + { + "answers": [ + "هفت سین", + "سفره هفت سین" + ], + "en_answers": [ + "haft-seen", + "haft-seen spread" + ], + "count": 3 + }, + { + "answers": [ + "سبزی پلو با ماهی", + "سبزه" + ], + "en_answers": [ + "herb rice with fish", + "greenery" + ], + "count": 3 + }, + { + "answers": [ + "حاجی فیروز" + ], + "en_answers": [ + "haji firouz" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-42": { + "question": "مردم درایران معمولاً در شب سال نو چه غذایی می‌خورند؟", + "en_question": "What food do people from Iran usually eat on New Year's Eve?", + "annotations": [ + { + "answers": [ + "سبزی پلو با ماهی", + "سبزیپلو با ماهی" + ], + "en_answers": [ + "herb rice with fish" + ], + "count": 4 + }, + { + "answers": [ + "ماهی" + ], + "en_answers": [ + "fish" + ], + "count": 1 + }, + { + "answers": [ + "رشته پلو" + ], + "en_answers": [ + "noodle rice" + ], + "count": 1 + }, + { + "answers": [ + "کوکو سبزی" + ], + "en_answers": [ + "herb frittata" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-45": { + "question": "معمولاً در جشن طولانی‌ترین شب سال درایران چه چیزی خورده می‌شود؟", + "en_question": "What is usually eaten during the celebration of the longest night of the year in Iran?", + "annotations": [ + { + "answers": [ + "انار", + "آجیل، انار، هندوانه، شیرینی", + "آش" + ], + "en_answers": [ + "pomegranate", + "ash (a type of thick soup or stew)" + ], + "count": 4 + }, + { + "answers": [ + "آجیل", + "آجیل، انار، هندوانه، شیرینی" + ], + "en_answers": [ + "nuts, pomegranate, watermelon, sweets", + "nuts" + ], + "count": 2 + }, + { + "answers": [ + "کباب" + ], + "en_answers": [ + "kebab" + ], + "count": 1 + }, + { + "answers": [ + "تخمه" + ], + "en_answers": [ + "seed" + ], + "count": 1 + }, + { + "answers": [ + "هندوانه", + "آجیل، انار، هندوانه، شیرینی" + ], + "en_answers": [], + "count": 1 + }, + { + "answers": [ + "شیرینی", + "آجیل، انار، هندوانه، شیرینی" + ], + "en_answers": [], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-01": { + "question": "درایران محبوب‌ترین ورزش تابستانی چیست؟", + "en_question": "What is the most popular summer sport in Iran?", + "annotations": [ + { + "answers": [ + "شنا" + ], + "en_answers": [ + "swimming" + ], + "count": 3 + }, + { + "answers": [ + "فوتبال" + ], + "en_answers": [ + "football" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-03": { + "question": "درایران محبوب‌ترین لیگ ورزشی حرفه‌ای چیست؟", + "en_question": "What is the most popular professional sports league in Iran?", + "annotations": [ + { + "answers": [ + "فوتبال" + ], + "en_answers": [ + "football" + ], + "count": 4 + }, + { + "answers": [ + "والیبال" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-05": { + "question": "درایران محبوب‌ترین تیم ورزشی زنان کدام است؟", + "en_question": "What is the most popular women's sports team in Iran?", + "annotations": [ + { + "answers": [ + "فوتسال" + ], + "en_answers": [ + "futsal" + ], + "count": 2 + }, + { + "answers": [ + "کاراته" + ], + "en_answers": [ + "karate" + ], + "count": 1 + }, + { + "answers": [ + "فوتبال" + ], + "en_answers": [ + "football" + ], + "count": 1 + } + ], + "idks": { + "idk": 6, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Th-en-09": { + "question": "درایران محبوب‌ترین تورنمنت چیست؟", + "en_question": "What is the most popular tournament in Iran?", + "annotations": [ + { + "answers": [ + "لیگ برتر فوتبال" + ], + "en_answers": [ + "premier football league" + ], + "count": 2 + }, + { + "answers": [ + "فوتبال" + ], + "en_answers": [ + "football" + ], + "count": 1 + }, + { + "answers": [ + "والیبال" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-11": { + "question": "درایران محبوب‌ترین ورزشکار چه کسی است؟", + "en_question": "Who is the most popular sportperson in Iran?", + "annotations": [ + { + "answers": [ + "علی دایی" + ], + "en_answers": [ + "ali daei" + ], + "count": 5 + }, + { + "answers": [ + "علی کریمی" + ], + "en_answers": [ + "ali karimi" + ], + "count": 2 + }, + { + "answers": [ + "رضازاده" + ], + "en_answers": [ + "rezazadeh" + ], + "count": 1 + }, + { + "answers": [ + "غلامرضا تختی" + ], + "en_answers": [ + "gholamreza takhti" + ], + "count": 1 + }, + { + "answers": [ + "حسن یزدانی" + ], + "en_answers": [ + "hassan yazdani" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-12": { + "question": "درایران کدام ورزش در مسابقات بین‌المللی بیشترین موفقیت را کسب کرده است؟", + "en_question": "In which sport has Iran been most successful in international competitions?", + "annotations": [ + { + "answers": [ + "کشتی", + "كشتي" + ], + "en_answers": [ + "wrestling" + ], + "count": 5 + }, + { + "answers": [ + "وزنه برداری" + ], + "en_answers": [ + "weightlifting" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-15": { + "question": "درایران محبوب‌ترین ورزش زمستانی چیست؟", + "en_question": "What is the most popular winter sport in Iran?", + "annotations": [ + { + "answers": [ + "اسکی" + ], + "en_answers": [ + "skiing" + ], + "count": 4 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Th-en-19": { + "question": "کدام شهر یا منطقه درایران به صنعت تولیدی معروف است؟", + "en_question": "What is a city or region in Iran known for manufacturing industry?", + "annotations": [ + { + "answers": [ + "اصفهان" + ], + "en_answers": [ + "isfahan" + ], + "count": 3 + }, + { + "answers": [ + "اراک" + ], + "en_answers": [ + "arak" + ], + "count": 2 + }, + { + "answers": [ + "قزوین" + ], + "en_answers": [ + "qazvin" + ], + "count": 1 + }, + { + "answers": [ + "تهران" + ], + "en_answers": [ + "tehran" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-21": { + "question": "در ایران مهم‌ ترین مزیتی که معمولاً به کارمندان ارائه می‌شود، چیست؟", + "en_question": "What is regarded as the most important perk typically offered to employees in Iran?", + "annotations": [ + { + "answers": [ + "بیمه" + ], + "en_answers": [ + "insurance" + ], + "count": 2 + }, + { + "answers": [ + "حقوق بازنشستگی" + ], + "en_answers": [ + "pension" + ], + "count": 1 + }, + { + "answers": [ + "پاداش اضافه کار" + ], + "en_answers": [ + "overtime bonus" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 0 + } + }, + "Th-en-22": { + "question": "بدترین دوره اقتصادی برایایران چه زمانی بود؟", + "en_question": "What was the most catastrophic economic period for Iran?", + "annotations": [ + { + "answers": [ + "حالا", + "کنونی", + "حال حاضر", + "جال حاضر", + "اکنون" + ], + "en_answers": [ + "now", + "current", + "current situation" + ], + "count": 4 + } + ], + "idks": { + "نمیدانم": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-24": { + "question": "کدام منطقه درایران مرکز عمده‌ای برای کارکنان فناوری و استارت‌آپ‌ها است؟", + "en_question": "What region in Iran is a major hub for tech workers and start ups?", + "annotations": [ + { + "answers": [ + "تهران" + ], + "en_answers": [ + "tehran" + ], + "count": 4 + }, + { + "answers": [ + "شهرکهای تحقیقاتی و دانشبنیان" + ], + "en_answers": [ + "research and science parks" + ], + "count": 1 + }, + { + "answers": [ + "مشهد" + ], + "en_answers": [ + "mashhad" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-27": { + "question": "مهم‌ترین صنعت درایران چیست؟", + "en_question": "What is the most important industry in Iran?", + "annotations": [ + { + "answers": [ + "نفت" + ], + "en_answers": [ + "oil" + ], + "count": 2 + }, + { + "answers": [ + "خودرو" + ], + "en_answers": [ + "car" + ], + "count": 1 + }, + { + "answers": [ + "کشاورزی" + ], + "en_answers": [ + "agriculture" + ], + "count": 1 + }, + { + "answers": [ + "صنعت نفت و گاز" + ], + "en_answers": [ + "oil and gas industry" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-35": { + "question": "درایران کدام یک از وعده‌های غذایی روزانه معمولاً با اعضای خانواده به اشتراک گذاشته می‌شود؟ (مثلاً صبحانه، ناهار، شام)", + "en_question": "Which one of the daily meals is commonly shared with family members in Iran? (e.g., breakfast, lunch, dinner)", + "annotations": [ + { + "answers": [ + "شام" + ], + "en_answers": [ + "dinner" + ], + "count": 5 + }, + { + "answers": [ + "ناهار" + ], + "en_answers": [ + "lunch" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-36": { + "question": "درایران یک فعالیت خانوادگی محبوب با فرزند برای انجام دادن در آخر هفته‌ها چیست؟", + "en_question": "What is a popular family activity with a child to do on weekends in Iran?", + "annotations": [ + { + "answers": [ + "پیک نیک در پارک" + ], + "en_answers": [ + "picnic in the park" + ], + "count": 1 + }, + { + "answers": [ + "پارک رفتن" + ], + "en_answers": [ + "going to the park" + ], + "count": 1 + }, + { + "answers": [ + "سفر" + ], + "en_answers": [ + "travel" + ], + "count": 1 + }, + { + "answers": [ + "مهمانی" + ], + "en_answers": [ + "party" + ], + "count": 1 + }, + { + "answers": [ + "بازی" + ], + "en_answers": [ + "game" + ], + "count": 1 + }, + { + "answers": [ + "رفتن به بیرون شهر" + ], + "en_answers": [ + "going out of town" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-37": { + "question": "درایران در چه سنی فرزندان معمولاً از والدین خود مستقل می‌شوند؟ (فقط اعداد عربی (مثلاً 12) را وارد کنید.)", + "en_question": "At what age do children typically become independent from their parents in Iran? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + }, + { + "answers": [ + "27" + ], + "en_answers": [ + "27" + ], + "count": 1 + }, + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-38": { + "question": "درایران مهم‌ترین تعطیلی خانوادگی چیست؟", + "en_question": "What is the most important family holiday in Iran?", + "annotations": [ + { + "answers": [ + "عید نوروز", + "عبد نوروز" + ], + "en_answers": [ + "nowruz", + "nowruz servant" + ], + "count": 3 + }, + { + "answers": [ + "سیزده بدر" + ], + "en_answers": [ + "nature's day" + ], + "count": 1 + }, + { + "answers": [ + "جمعه" + ], + "en_answers": [ + "friday" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-39": { + "question": "درایران یک بازی خانوادگی محبوب چیست؟", + "en_question": "What is a popular family game in Iran?", + "annotations": [ + { + "answers": [ + "منچ" + ], + "en_answers": [ + "ludo" + ], + "count": 2 + }, + { + "answers": [ + "تخته نرد" + ], + "en_answers": [ + "backgammon" + ], + "count": 2 + }, + { + "answers": [ + "ورق بازی" + ], + "en_answers": [ + "card game" + ], + "count": 1 + }, + { + "answers": [ + "والیبال" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "اسم فامیل" + ], + "en_answers": [ + "idk the translation but gpt is not right" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-41": { + "question": "درایران میانگین سنی زوج‌ها برای داشتن اولین فرزند چقدر است؟ (فقط اعداد عربی (مثلاً 20) ارائه دهید.)", + "en_question": "What is the average age for couples to have their first child in Iran? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "27" + ], + "en_answers": [ + "27" + ], + "count": 2 + }, + { + "answers": [ + "31" + ], + "en_answers": [ + "31" + ], + "count": 1 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + }, + { + "answers": [ + "32" + ], + "en_answers": [ + "32" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-43": { + "question": "درایران یک خانواده معمولی چند ماشین دارد؟ (فقط اعداد عربی (مثلاً 12) را وارد کنید.)", + "en_question": "How many cars are owned by a typical family in Iran? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-44": { + "question": "درایران محبوب‌ ترین غذا برای وعده‌های غذایی خانوادگی در آخر هفته‌ها چیست؟", + "en_question": "What is Iran's most popular food for family meals on weekends?", + "annotations": [ + { + "answers": [ + "قرمه سبزی" + ], + "en_answers": [ + "ghormeh sabzi" + ], + "count": 3 + }, + { + "answers": [ + "آبگوشت" + ], + "en_answers": [ + "broth" + ], + "count": 2 + }, + { + "answers": [ + "کباب" + ], + "en_answers": [ + "kebab" + ], + "count": 1 + }, + { + "answers": [ + "چلو کباب کوبیده" + ], + "en_answers": [ + "chelo kebab koobideh" + ], + "count": 1 + }, + { + "answers": [ + "جوجه کباب" + ], + "en_answers": [ + "chicken kebab" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-45": { + "question": "درایران محبوب‌ترین فعالیت خانوادگی عصرهای روز های غیر آخر هفته چیست؟", + "en_question": "What is the most popular weekday evening family activity in Iran?", + "annotations": [ + { + "answers": [ + "تماشای تلویزیون", + "تلویزیون دیدن" + ], + "en_answers": [ + "watching tv" + ], + "count": 3 + }, + { + "answers": [ + "پیک نیک" + ], + "en_answers": [ + "picnic" + ], + "count": 1 + }, + { + "answers": [ + "کافه گردی" + ], + "en_answers": [ + "cafe hopping" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-48": { + "question": "درایران بالاترین نمره‌ای که به دانش‌آموزان برتر دبیرستانی در تکالیف و امتحانات داده می‌شود چیست؟", + "en_question": "What is the highest grade given to top-achieving high school students on assignments and exams in Iran?", + "annotations": [ + { + "answers": [ + "۲۰", + "20" + ], + "en_answers": [ + "20" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-49": { + "question": "درایران مهم‌ترین امتحان برای دانش‌آموزان دبیرستانی چه امتحانی است؟", + "en_question": "What is considered the most important exam for high school students in Iran?", + "annotations": [ + { + "answers": [ + "کنکور", + "کنکور ورودی دانشگاه" + ], + "en_answers": [ + "university entrance exam" + ], + "count": 4 + }, + { + "answers": [ + "نهایی" + ], + "en_answers": [ + "final" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-51": { + "question": "درایران کدام درس برای دانش‌آموزان مهم‌ترین تلقی می‌شود؟", + "en_question": "Which subject is considered the most important for students in Iran?", + "annotations": [ + { + "answers": [ + "ریاضی", + "زیست" + ], + "en_answers": [ + "mathematics", + "biology" + ], + "count": 5 + }, + { + "answers": [ + "زیست شناسی" + ], + "en_answers": [ + "biology" + ], + "count": 2 + }, + { + "answers": [ + "شیمی" + ], + "en_answers": [ + "chemistry" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-53": { + "question": "درایران محبوب‌ترین رویداد اجتماعی فوق‌برنامه در مدارس چیست؟", + "en_question": "What is the most popular extracurricular social event at schools in Iran?", + "annotations": [ + { + "answers": [ + "اردوهای تفریحی", + "اردو رفتن" + ], + "en_answers": [ + "recreational camps", + "going to camp" + ], + "count": 2 + }, + { + "answers": [ + "ورزش" + ], + "en_answers": [ + "sport" + ], + "count": 1 + }, + { + "answers": [ + "مراسمات مذهبی" + ], + "en_answers": [ + "religious ceremonies" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Th-en-58": { + "question": "درایران پیشرفته‌ترین درس ریاضی که قبل از دانشگاه تدریس می‌شود، چیست؟", + "en_question": "What is the most advanced math subject learned before university in Iran?", + "annotations": [ + { + "answers": [ + "حسابان", + "جبر" + ], + "en_answers": [ + "algebra" + ], + "count": 2 + }, + { + "answers": [ + "انتگرال" + ], + "en_answers": [ + "integral" + ], + "count": 2 + }, + { + "answers": [ + "ریاضیات گسسته", + "رياضيات گسسته" + ], + "en_answers": [ + "discrete mathematics" + ], + "count": 2 + }, + { + "answers": [ + "هندسه فضایی" + ], + "en_answers": [ + "spatial geometry" + ], + "count": 1 + }, + { + "answers": [ + "هندسه" + ], + "en_answers": [ + "geometry" + ], + "count": 1 + }, + { + "answers": [ + "محاسبات ديفرانسيل" + ], + "en_answers": [ + "differential calculus" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-01": { + "question": "در ایران دانشجویان دانشگاه معمولاً برای مطالعه برای امتحانات نهایی خود به کجا می‌روند؟", + "en_question": "Where do university students in Iran usually go to study for their final exams?", + "annotations": [ + { + "answers": [ + "کتابخانه" + ], + "en_answers": [ + "library" + ], + "count": 4 + }, + { + "answers": [ + "خانه" + ], + "en_answers": [ + "home" + ], + "count": 1 + }, + { + "answers": [ + "سالن مطالعه" + ], + "en_answers": [ + "study hall" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-02": { + "question": "در ایران یک وسیله حمل و نقل عمومی رایج که مردم برای رفتن به دانشگاه استفاده می‌کنند چیست؟", + "en_question": "What is a common public transport that people use to go to university in in Iran?", + "annotations": [ + { + "answers": [ + "اتوبوس" + ], + "en_answers": [ + "bus" + ], + "count": 4 + }, + { + "answers": [ + "مترو" + ], + "en_answers": [ + "metro" + ], + "count": 3 + }, + { + "answers": [ + "تاکسی" + ], + "en_answers": [ + "taxi" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-04": { + "question": "در ایران دانش‌آموزان دبستانی معمولاً بعد از مدرسه چه کارهایی انجام می‌دهند؟", + "en_question": "What do elementary students in Iran usually do after school?", + "annotations": [ + { + "answers": [ + "تکالیف مدرسه", + "انجام تکالیف" + ], + "en_answers": [ + "school homework", + "doing homework" + ], + "count": 2 + }, + { + "answers": [ + "بازی با همسالان در پارک" + ], + "en_answers": [ + "playing with peers in the park" + ], + "count": 1 + }, + { + "answers": [ + "تماشای تلویزیون" + ], + "en_answers": [ + "watching tv" + ], + "count": 1 + }, + { + "answers": [ + "خواب" + ], + "en_answers": [ + "sleep" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + } +} \ No newline at end of file diff --git a/data/annotations/Mexico_data.json b/data/annotations/Mexico_data.json new file mode 100644 index 0000000000000000000000000000000000000000..eb53540ed85742b8b01fd318ec90afa26fee517d --- /dev/null +++ b/data/annotations/Mexico_data.json @@ -0,0 +1,26476 @@ +{ + "Al-en-01": { + "question": "¿Cuál es una merienda común para niños de preescolar en México?", + "en_question": "What is a common snack for preschool kids in your country?", + "annotations": [ + { + "answers": [ + "huevo" + ], + "en_answers": [ + "egg" + ], + "count": 3 + }, + { + "answers": [ + "sandwich", + "sándwich" + ], + "en_answers": [ + "sandwich" + ], + "count": 2 + }, + { + "answers": [ + "fruta con cereal" + ], + "en_answers": [ + "fruit with cereal" + ], + "count": 1 + }, + { + "answers": [ + "quesadillas" + ], + "en_answers": [ + "quesadillas" + ], + "count": 1 + }, + { + "answers": [ + "fruta" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + }, + { + "answers": [ + "papitas", + "papas fritas", + "sabritas" + ], + "en_answers": [ + "crisps", + "potato chips", + "chips" + ], + "count": 1 + }, + { + "answers": [ + "mango" + ], + "en_answers": [ + "mango" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-02": { + "question": "¿Cuál es una comida popular para acompañar con cerveza en México?", + "en_question": "What is a popular food to go with beer in your country?", + "annotations": [ + { + "answers": [ + "tacos" + ], + "en_answers": [ + "tacos" + ], + "count": 3 + }, + { + "answers": [ + "carne asada" + ], + "en_answers": [ + "grilled meat" + ], + "count": 3 + }, + { + "answers": [ + "alitas", + "alitas de pollo" + ], + "en_answers": [ + "chicken wings" + ], + "count": 2 + }, + { + "answers": [ + "hamburguesa" + ], + "en_answers": [ + "burger" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-04": { + "question": "¿Cuál es la fruta más popular en México?", + "en_question": "What is the most popular fruit in your country?", + "annotations": [ + { + "answers": [ + "mango" + ], + "en_answers": [ + "mango" + ], + "count": 2 + }, + { + "answers": [ + "naranja" + ], + "en_answers": [ + "orange" + ], + "count": 2 + }, + { + "answers": [ + "manzana" + ], + "en_answers": [ + "apple" + ], + "count": 1 + }, + { + "answers": [ + "papaya" + ], + "en_answers": [ + "papaya" + ], + "count": 1 + }, + { + "answers": [ + "plátano", + "platano" + ], + "en_answers": [ + "banana" + ], + "count": 1 + }, + { + "answers": [ + "limón", + "limon" + ], + "en_answers": [ + "lime" + ], + "count": 1 + }, + { + "answers": [ + "aguacate" + ], + "en_answers": [ + "avocado" + ], + "count": 1 + }, + { + "answers": [ + "fresa" + ], + "en_answers": [ + "strawberry" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-06": { + "question": "¿Cuál es una comida común en las cafeterías escolares de México?", + "en_question": "What is a common school cafeteria food in your country?", + "annotations": [ + { + "answers": [ + "torta de milanesa" + ], + "en_answers": [ + "milanesa sandwich" + ], + "count": 1 + }, + { + "answers": [ + "tortas de jamón y queso" + ], + "en_answers": [ + "ham and cheese sandwich", + "ham and cheese roll" + ], + "count": 1 + }, + { + "answers": [ + "huevos" + ], + "en_answers": [ + "eggs" + ], + "count": 1 + }, + { + "answers": [ + "burritas" + ], + "en_answers": [ + "flour tortilla filled with cheese and or ham" + ], + "count": 1 + }, + { + "answers": [ + "molletes" + ], + "en_answers": [ + "open-faced bean and cheese sandwiches" + ], + "count": 1 + }, + { + "answers": [ + "sandwich" + ], + "en_answers": [ + "sandwich" + ], + "count": 1 + }, + { + "answers": [ + "hot dog" + ], + "en_answers": [ + "hot dog" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-08": { + "question": "¿Cuáles son los bocadillos más comúnmente consumidos en los centros comerciales de México?", + "en_question": "What are the most commonly eaten snacks at shopping malls in your country?", + "annotations": [ + { + "answers": [ + "tacos" + ], + "en_answers": [ + "tacos" + ], + "count": 3 + }, + { + "answers": [ + "hamburguesas", + "hamburguesa" + ], + "en_answers": [ + "burgers", + "burger" + ], + "count": 3 + }, + { + "answers": [ + "subway" + ], + "en_answers": [ + "sandwich" + ], + "count": 1 + }, + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + }, + { + "answers": [ + "papas a la francesa" + ], + "en_answers": [ + "french fries" + ], + "count": 1 + }, + { + "answers": [ + "nachos" + ], + "en_answers": [ + "nachos" + ], + "count": 1 + }, + { + "answers": [ + "helados" + ], + "en_answers": [ + "ice cream" + ], + "count": 1 + }, + { + "answers": [ + "gorditas de maiz" + ], + "en_answers": [ + "corn gorditas" + ], + "count": 1 + }, + { + "answers": [ + "tostadas" + ], + "en_answers": [ + "tostadas" + ], + "count": 1 + }, + { + "answers": [ + "pan dulce" + ], + "en_answers": [ + "pastry" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-09": { + "question": "¿Cuál es una botana popular en un parque de diversiones en México?", + "en_question": "What is a popular snack at an amusement park in your country?", + "annotations": [ + { + "answers": [ + "papas fritas", + "papitas", + "papas", + "sabritas" + ], + "en_answers": [ + "french fries", + "crisps", + "potato chips", + "chips" + ], + "count": 5 + }, + { + "answers": [ + "palomitas", + "palomitas de maíz" + ], + "en_answers": [ + "popcorn" + ], + "count": 3 + }, + { + "answers": [ + "refresco" + ], + "en_answers": [ + "soda" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-16": { + "question": "¿A qué edad comienzan los niños el preescolar en México? (Proporcione solo números arábigos (por ejemplo, 3).)", + "en_question": "At what age do kids start preschool in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 4 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 2 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-17": { + "question": "¿Cuál es un deporte extracurricular popular para la primaria en México?", + "en_question": "What is a popular afterschool sport for elementary schools in your country?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "voleibol", + "volleybol" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "basquetbol" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "educacion fisica" + ], + "en_answers": [ + "physical education" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-18": { + "question": "¿Para qué materia reciben educación privada los estudiantes de primaria en México?", + "en_question": "For which subject do elementary students get private education in your country?", + "annotations": [ + { + "answers": [ + "inglés" + ], + "en_answers": [ + "english" + ], + "count": 3 + }, + { + "answers": [ + "matemáticas" + ], + "en_answers": [ + "maths", + "mathematics" + ], + "count": 2 + }, + { + "answers": [ + "ciencias" + ], + "en_answers": [ + "science" + ], + "count": 1 + }, + { + "answers": [ + "inglés", + "ingles" + ], + "en_answers": [ + "english" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Al-en-19": { + "question": "¿Cuál es un segundo idioma popular para los estudiantes de preparatoria en México?", + "en_question": "What is a popular second language for high school students in your country?", + "annotations": [ + { + "answers": [ + "inglés", + "ingles" + ], + "en_answers": [ + "english" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-21": { + "question": "¿Cuál materia es la más importante para la educación de niños superdotados en México?", + "en_question": "Which subject is the most important for gifted education in your country?", + "annotations": [ + { + "answers": [ + "matemáticas", + "matematicas" + ], + "en_answers": [ + "mathematics", + "maths" + ], + "count": 4 + }, + { + "answers": [ + "química", + "quimica" + ], + "en_answers": [ + "chemistry" + ], + "count": 1 + }, + { + "answers": [ + "física", + "fisica" + ], + "en_answers": [ + "physics" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Al-en-32": { + "question": "¿Cuál es el platillo principal para el Día de Acción de Gracias en México?", + "en_question": "What is the main dish for Thanksgiving in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-33": { + "question": "¿Qué hacen las personas para celebrar Halloween en México?", + "en_question": "What do people do to celebrate Halloween in your country?", + "annotations": [ + { + "answers": [ + "al norte se siguen muy de cerca las costumbres de usa" + ], + "en_answers": [ + "in the north of the country, they follow the traditions in usa" + ], + "count": 1 + }, + { + "answers": [ + "al centro y sur es muy raro que se celebre" + ], + "en_answers": [ + "in the center and south of the country, it is not typically celebrated" + ], + "count": 1 + }, + { + "answers": [ + "se disfrazan y piden dulces acompañados por sus papas o alguien mayor que ellos" + ], + "en_answers": [ + "they dress up and ask for candy under their parent or another adult supervision" + ], + "count": 1 + }, + { + "answers": [ + "se disfrazan los niños" + ], + "en_answers": [ + "the children dress up" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-34": { + "question": "¿Qué hacen las personas para celebrar el Año Nuevo en México?", + "en_question": "What do people do to celebrate New Year's Day in your country?", + "annotations": [ + { + "answers": [ + "hacen una cena", + "comer", + "cena de año nuevo" + ], + "en_answers": [ + "they make a dinner", + "eat", + "new year's eve dinner" + ], + "count": 3 + }, + { + "answers": [ + "fiesta" + ], + "en_answers": [ + "party" + ], + "count": 2 + }, + { + "answers": [ + "comen uvas", + "comer 12 uvas" + ], + "en_answers": [ + "eat grapes", + "they eat 12 grapes" + ], + "count": 2 + }, + { + "answers": [ + "brindan", + "brindar" + ], + "en_answers": [ + "they make a toast", + "make a toast" + ], + "count": 2 + }, + { + "answers": [ + "se van de viaje" + ], + "en_answers": [ + "they are going on a trip" + ], + "count": 1 + }, + { + "answers": [ + "reunión familiar" + ], + "en_answers": [ + "family gathering" + ], + "count": 1 + }, + { + "answers": [ + "cenan pavo" + ], + "en_answers": [ + "they have turkey for dinner" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-35": { + "question": "¿Qué hacen las personas para celebrar la Navidad en México?", + "en_question": "What do people do to celebrate Christmas in your country?", + "annotations": [ + { + "answers": [ + "cenar en familia", + "cena familiar", + "cena de navidad con la familia" + ], + "en_answers": [ + "they have a family dinner", + "family dinner", + "christmas dinner with the family" + ], + "count": 3 + }, + { + "answers": [ + "visitar familia", + "visitar a la familia" + ], + "en_answers": [ + "they visit their family" + ], + "count": 2 + }, + { + "answers": [ + "regalos navideños", + "se dan regalos a los familiares" + ], + "en_answers": [ + "christmas gifts", + "they get presents from their family" + ], + "count": 2 + }, + { + "answers": [ + "darse regalos" + ], + "en_answers": [ + "they give each other presents", + "they give each other gifts", + "they exchange gifts" + ], + "count": 1 + }, + { + "answers": [ + "comer pavo" + ], + "en_answers": [ + "eat turkey" + ], + "count": 1 + }, + { + "answers": [ + "reunirse con la familia" + ], + "en_answers": [ + "family gathering" + ], + "count": 1 + }, + { + "answers": [ + "comer lomo de cerdo" + ], + "en_answers": [ + "eat pork loin" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-36": { + "question": "¿Qué comida se asocia con Halloween en México?", + "en_question": "What food is associated with Halloween in your country?", + "annotations": [ + { + "answers": [ + "pan de muerto" + ], + "en_answers": [ + "bread of the dead" + ], + "count": 3 + }, + { + "answers": [ + "dulces" + ], + "en_answers": [ + "sweets", + "candy" + ], + "count": 2 + }, + { + "answers": [ + "calavera de azúcar" + ], + "en_answers": [ + "sugar skull" + ], + "count": 1 + }, + { + "answers": [ + "hojaldras" + ], + "en_answers": [ + "puff pastries", + "flaky buns" + ], + "count": 1 + }, + { + "answers": [ + "fruta" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + }, + { + "answers": [ + "chocolate caliente" + ], + "en_answers": [ + "hot chocolate" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-37": { + "question": "¿Qué comida se asocia con la Navidad en México?", + "en_question": "What food is associated with Christmas in your country?", + "annotations": [ + { + "answers": [ + "pierna de cerdo", + "pierna adobada", + "pierna", + "pierna de cerdo al horno" + ], + "en_answers": [ + "pork leg", + "roasted pork leg" + ], + "count": 4 + }, + { + "answers": [ + "pavo" + ], + "en_answers": [ + "turkey" + ], + "count": 3 + }, + { + "answers": [ + "romeritos" + ], + "en_answers": [ + "seepweed stew" + ], + "count": 2 + }, + { + "answers": [ + "bacalao", + "bacalao a la vizcaína" + ], + "en_answers": [ + "cod" + ], + "count": 1 + }, + { + "answers": [ + "ensalada dulce", + "ensalada de manzana" + ], + "en_answers": [ + "fruit salad" + ], + "count": 1 + }, + { + "answers": [ + "chipotles" + ], + "en_answers": [ + "chipotle" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-38": { + "question": "¿Qué comida se asocia con el día de San Valentín en México?", + "en_question": "What food is associated with Valentine's day in your country?", + "annotations": [ + { + "answers": [ + "chocolates", + "chocolate" + ], + "en_answers": [ + "chocolates", + "chocolate" + ], + "count": 4 + }, + { + "answers": [ + "pasta" + ], + "en_answers": [ + "pasta" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Al-en-39": { + "question": "¿Qué comen las personas en su cumpleaños en México?", + "en_question": "What do people eat on their birthday in your country?", + "annotations": [ + { + "answers": [ + "pastel" + ], + "en_answers": [ + "cake" + ], + "count": 5 + }, + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + }, + { + "answers": [ + "mole con pollo" + ], + "en_answers": [ + "chicken with mole sauce" + ], + "count": 1 + }, + { + "answers": [ + "carne asada" + ], + "en_answers": [ + "grilled meat" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-40": { + "question": "¿Cuál es un lugar al aire libre popular para que las familias se diviertan con niños pequeños en México?", + "en_question": "What is a popular outdoor place for families to have fun with little kids in your country?", + "annotations": [ + { + "answers": [ + "parque", + "parques", + "el parque" + ], + "en_answers": [ + "park", + "the parks", + "the park" + ], + "count": 4 + }, + { + "answers": [ + "zócalo", + "zocalo" + ], + "en_answers": [ + "main square" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-43": { + "question": "¿Cuál es una actividad popular de interior para las familias en México?", + "en_question": "What is a popular indoor activity for families in your country?", + "annotations": [ + { + "answers": [ + "ver videos en youtube" + ], + "en_answers": [ + "watch videos on youtube" + ], + "count": 1 + }, + { + "answers": [ + "pasar tiempo en redes sociales" + ], + "en_answers": [ + "spend time on social networks" + ], + "count": 1 + }, + { + "answers": [ + "comer juntos" + ], + "en_answers": [ + "eat together" + ], + "count": 1 + }, + { + "answers": [ + "ver peliculas" + ], + "en_answers": [ + "watch movies" + ], + "count": 1 + }, + { + "answers": [ + "ir a la plaza", + "ir al centro comercial" + ], + "en_answers": [ + "go to the mall" + ], + "count": 1 + }, + { + "answers": [ + "ver tv" + ], + "en_answers": [ + "watch tv" + ], + "count": 1 + }, + { + "answers": [ + "bailar" + ], + "en_answers": [ + "dance" + ], + "count": 1 + }, + { + "answers": [ + "cocinar" + ], + "en_answers": [ + "to cook" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-02": { + "question": "¿Dónde comen los estudiantes universitarios en México?", + "en_question": "Where do university students have lunch in your country?", + "annotations": [ + { + "answers": [ + "en la cafeteria de la escuela", + "cafeteria universitaria" + ], + "en_answers": [ + "in the school cafeteria", + "university cafeteria" + ], + "count": 2 + }, + { + "answers": [ + "fonditas", + "fondas" + ], + "en_answers": [ + "in small restaurants offering set affordable menus" + ], + "count": 2 + }, + { + "answers": [ + "en la calle" + ], + "en_answers": [ + "on the street" + ], + "count": 1 + }, + { + "answers": [ + "carl's jr." + ], + "en_answers": [ + "carl's jr." + ], + "count": 1 + }, + { + "answers": [ + "pizzeria" + ], + "en_answers": [ + "pizzeria" + ], + "count": 1 + }, + { + "answers": [ + "puestos de comida aledaños" + ], + "en_answers": [ + "surrounding food stalls" + ], + "count": 1 + }, + { + "answers": [ + "en el campus" + ], + "en_answers": [ + "on campus" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-03": { + "question": "¿En qué mes se programa normalmente el periodo de exámenes finales en las preparatorias de México? (Proporciona solo números arábigos (1~12).)", + "en_question": "Which month is the final exam term usually scheduled at high schools in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "5", + "mayo" + ], + "en_answers": [ + "5" + ], + "count": 3 + }, + { + "answers": [ + "6", + "junio" + ], + "en_answers": [ + "6" + ], + "count": 2 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "11", + "noviembre" + ], + "en_answers": [ + "11" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-08": { + "question": "¿Cuántas horas al día suelen pasar los estudiantes en la preparatoria en México? (Proporcione números arábigos en enteros (0~24), sin ningún punto decimal.)", + "en_question": "How many hours a day do students in your country usually spend at high school? (Provide Arabic numerals in integers (0~24), without any decimal points.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 4 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 2 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-09": { + "question": "¿Cuántos idiomas estudian los estudiantes de preparatoria en México? (Proporciona solo números arábigos, por ejemplo, 5.)", + "en_question": "How many languages do students study at high school in your country? (Provide Arabic numerals (e.g., 5) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-34": { + "question": "¿Cuál es el deporte de equipo más popular que se juega en las escuelas en México?", + "en_question": "What is the most popular sport played in a team at school in your country?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "basquetbol", + "basketbol" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-35": { + "question": "¿Quién es el comentarista deportivo más popular en México?", + "en_question": "Who is the most popular sport commentator in your country?", + "annotations": [ + { + "answers": [ + "perro bermudez", + "\"el perro\" bermúdez", + "enrique \"el perro\" bermúdez" + ], + "en_answers": [ + "bermudez a.k.a \"el perro\"" + ], + "count": 3 + }, + { + "answers": [ + "dr garcia", + "luis garcia" + ], + "en_answers": [ + "dr. garcia" + ], + "count": 2 + }, + { + "answers": [ + "martinoli", + "martinolli", + "christian martinoli" + ], + "en_answers": [ + "martinoli" + ], + "count": 1 + }, + { + "answers": [ + "jared borquetti", + "jared borguetti" + ], + "en_answers": [ + "jared borgetti" + ], + "count": 1 + }, + { + "answers": [ + "faitelson", + "david faitelson" + ], + "en_answers": [ + "faitelson" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-36": { + "question": "¿Cuál es el equipo deportivo más popular en México?", + "en_question": "What is the most popular sport team in your country?", + "annotations": [ + { + "answers": [ + "américa", + "club américa" + ], + "en_answers": [ + "america", + "club america" + ], + "count": 4 + }, + { + "answers": [ + "pumas" + ], + "en_answers": [ + "pumas" + ], + "count": 1 + }, + { + "answers": [ + "cruz azul" + ], + "en_answers": [ + "cruz azul" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-43": { + "question": "¿Cuáles son los lugares comunes o establecimientos donde las personas en México suelen reunirse para ver transmisiones deportivas?", + "en_question": "What are the common places or venues where individuals in your country usually gather to watch sports broadcasts?", + "annotations": [ + { + "answers": [ + "restaurantes", + "bares/pubs", + "restaurante bar" + ], + "en_answers": [ + "restaurants", + "bars/pubs", + "restaurant bar" + ], + "count": 5 + }, + { + "answers": [ + "bares" + ], + "en_answers": [ + "bars" + ], + "count": 2 + }, + { + "answers": [ + "plaza" + ], + "en_answers": [ + "mall" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-05": { + "question": "¿Cuántas comidas al día suelen tener las personas de México? (Proporciona solo números arábigos (por ejemplo, 5).)", + "en_question": "How many meals per day do people from your country usually have? (Provide Arabic numerals (e.g., 5) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-06": { + "question": "¿Cuál es la comida más importante del día para la gente de México?", + "en_question": "Which is the most important meal of the day to people from your country?", + "annotations": [ + { + "answers": [ + "comida", + "la comida (de la tarde)" + ], + "en_answers": [ + "lunch" + ], + "count": 3 + }, + { + "answers": [ + "desayuno", + "la del almuerzo" + ], + "en_answers": [ + "breakfast" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-08": { + "question": "¿Cuál es el ingrediente más común utilizado en la dieta mexicana?", + "en_question": "What is the most common ingredient used in your country's diet?", + "annotations": [ + { + "answers": [ + "maíz" + ], + "en_answers": [ + "corn" + ], + "count": 4 + }, + { + "answers": [ + "chile" + ], + "en_answers": [ + "chili pepper" + ], + "count": 3 + }, + { + "answers": [ + "frijol" + ], + "en_answers": [ + "bean" + ], + "count": 1 + }, + { + "answers": [ + "tortilla" + ], + "en_answers": [ + "tortilla" + ], + "count": 1 + }, + { + "answers": [ + "pollo" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "tomate" + ], + "en_answers": [ + "tomato" + ], + "count": 1 + }, + { + "answers": [ + "cebolla" + ], + "en_answers": [ + "onion" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-09": { + "question": "¿Qué suelen comer las personas de México de postre?", + "en_question": "What do people from your country usually eat for dessert?", + "annotations": [ + { + "answers": [ + "pan dulce" + ], + "en_answers": [ + "pastry" + ], + "count": 2 + }, + { + "answers": [ + "pastel" + ], + "en_answers": [ + "cake" + ], + "count": 2 + }, + { + "answers": [ + "jericalla", + "flan" + ], + "en_answers": [ + "baked custard" + ], + "count": 2 + }, + { + "answers": [ + "frituras" + ], + "en_answers": [ + "crisps" + ], + "count": 1 + }, + { + "answers": [ + "nieve" + ], + "en_answers": [ + "sorbet", + "snow cones" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-11": { + "question": "¿Qué día de la semana la gente suele organizar una comida familiar en México?", + "en_question": "Which day of the week do people usually organize a family meal in your country?", + "annotations": [ + { + "answers": [ + "domingo", + "domigo" + ], + "en_answers": [ + "sunday" + ], + "count": 4 + }, + { + "answers": [ + "sábado", + "sabado" + ], + "en_answers": [ + "saturday" + ], + "count": 3 + }, + { + "answers": [ + "viernes" + ], + "en_answers": [ + "friday" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-14": { + "question": "¿Cuál es la bebida caliente más popular en México?", + "en_question": "Which is the most popular hot drink in your country?", + "annotations": [ + { + "answers": [ + "café", + "cafe" + ], + "en_answers": [ + "coffee" + ], + "count": 5 + }, + { + "answers": [ + "atole" + ], + "en_answers": [ + "a traditional hot mexican beverage made from cornmeal and water or milk" + ], + "count": 3 + }, + { + "answers": [ + "chocolate", + "chocolate abuelita" + ], + "en_answers": [ + "hot chocolate" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-19": { + "question": "¿Qué suelen beber los jóvenes de México en el club nocturno?", + "en_question": "What do young people from your country usually drink at the night club?", + "annotations": [ + { + "answers": [ + "cerveza" + ], + "en_answers": [ + "beer" + ], + "count": 4 + }, + { + "answers": [ + "tequila" + ], + "en_answers": [ + "tequila" + ], + "count": 3 + }, + { + "answers": [ + "vodka con refresco" + ], + "en_answers": [ + "vodka with soda" + ], + "count": 1 + }, + { + "answers": [ + "ron" + ], + "en_answers": [ + "rum" + ], + "count": 1 + }, + { + "answers": [ + "mezcal" + ], + "en_answers": [ + "mezcal" + ], + "count": 1 + }, + { + "answers": [ + "vodka" + ], + "en_answers": [ + "vodka" + ], + "count": 1 + }, + { + "answers": [ + "whiskey" + ], + "en_answers": [ + "whiskey" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-21": { + "question": "¿En qué mes la gente suele tomar vacaciones en México? (Proporcione solo números arábigos (1~12).)", + "en_question": "At which month do people usually take holidays in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "7", + "julio" + ], + "en_answers": [ + "7", + "july" + ], + "count": 5 + }, + { + "answers": [ + "12", + "diciembre" + ], + "en_answers": [ + "12", + "december" + ], + "count": 3 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-29": { + "question": "¿Qué tradición existe en México para la Nochevieja?", + "en_question": "What tradition is there in your country for New Year's Eve?", + "annotations": [ + { + "answers": [ + "cenar todos juntos", + "cenar en familia", + "darse regalos en intercambios", + "cena" + ], + "en_answers": [ + "have dinner toghether", + "have a family dinner", + "exchange presents", + "dinner" + ], + "count": 3 + }, + { + "answers": [ + "arrullar al niño dios", + "arrullar niño dios" + ], + "en_answers": [ + "to lull the baby jesus" + ], + "count": 2 + }, + { + "answers": [ + "dar regalos" + ], + "en_answers": [ + "exchange gifts" + ], + "count": 1 + }, + { + "answers": [ + "regalar aguinaldos" + ], + "en_answers": [ + "give small presents" + ], + "count": 1 + }, + { + "answers": [ + "comer recalentado" + ], + "en_answers": [ + "eat leftover from previous night" + ], + "count": 1 + } + ], + "idks": { + "No sé": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-38": { + "question": "¿Cuál es el tipo de casa típico para una familia en México?", + "en_question": "Which is the typical type of house for a family in your country?", + "annotations": [ + { + "answers": [ + "unifamiliar", + "casa unifamiliar" + ], + "en_answers": [ + "detached house" + ], + "count": 2 + }, + { + "answers": [ + "departamento", + "apartamentos" + ], + "en_answers": [ + "apartment flat", + "apartments", + "flats" + ], + "count": 2 + }, + { + "answers": [ + "de bloques de cemento" + ], + "en_answers": [ + "a house made out of cement blocks" + ], + "count": 1 + }, + { + "answers": [ + "casa de dos plantas" + ], + "en_answers": [ + "two-story house" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-41": { + "question": "¿Dónde suelen vivir los ancianos dependientes en México?", + "en_question": "Where do the dependent elderly usually live in your country?", + "annotations": [ + { + "answers": [ + "con familiares", + "con la familia", + "la familia", + "con sus familias" + ], + "en_answers": [ + "with family members", + "with relatives", + "with family", + "with their family", + "with their families" + ], + "count": 3 + }, + { + "answers": [ + "asilos", + "casas del adulto mayor", + "en algun asilo" + ], + "en_answers": [ + "nursing home", + "retiring home", + "in a retiring home", + "in a nursing home" + ], + "count": 3 + }, + { + "answers": [ + "su propia casa" + ], + "en_answers": [ + "their own house" + ], + "count": 1 + }, + { + "answers": [ + "en casa de algun hijo" + ], + "en_answers": [ + "with one of their children", + "in the house of one of their children" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-42": { + "question": "¿Cuántas semanas dura la licencia de maternidad para las madres en México? (Proporciona solo números arábigos, por ejemplo, 20.)", + "en_question": "How long (in weeks) is your country's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "45" + ], + "en_answers": [ + "45" + ], + "count": 1 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-43": { + "question": "¿Cuánto dura (en semanas) la licencia de paternidad en México para los padres? (Proporciona solo números arábigos (por ejemplo, 20).)", + "en_question": "How long (in weeks) is your country's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-45": { + "question": "¿Qué tipo de destino se elige comúnmente para unas vacaciones familiares en México?", + "en_question": "What type of destination is commonly chosen for a family vacation in your country?", + "annotations": [ + { + "answers": [ + "cancún", + "cancun" + ], + "en_answers": [ + "cancun" + ], + "count": 3 + }, + { + "answers": [ + "la playa", + "playa", + "playas" + ], + "en_answers": [ + "beach", + "beaches" + ], + "count": 2 + }, + { + "answers": [ + "puerto vallarta" + ], + "en_answers": [ + "puerto vallarta" + ], + "count": 1 + }, + { + "answers": [ + "mazatlán" + ], + "en_answers": [ + "mazatlan" + ], + "count": 1 + }, + { + "answers": [ + "rivera maya" + ], + "en_answers": [ + "mayan riviera" + ], + "count": 1 + }, + { + "answers": [ + "cdmx" + ], + "en_answers": [ + "mexico city" + ], + "count": 1 + }, + { + "answers": [ + "pueblos magicos" + ], + "en_answers": [ + "touristic towns" + ], + "count": 1 + }, + { + "answers": [ + "los cabos" + ], + "en_answers": [ + "los cabos" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-05": { + "question": "¿Qué deportes prefieren los adultos mayores en México?", + "en_question": "What sports do seniors like the most in your country?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 5 + }, + { + "answers": [ + "beisbol" + ], + "en_answers": [ + "baseball" + ], + "count": 2 + }, + { + "answers": [ + "voleibol" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-06": { + "question": "¿Qué deportes les gusta jugar más a los hombres en México?", + "en_question": "What sports do men like to play the most in your country?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol", + "futbol soccer" + ], + "en_answers": [ + "football", + "soccer", + "soccer football" + ], + "count": 5 + }, + { + "answers": [ + "basquetbol" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "beisbol", + "baseball" + ], + "en_answers": [ + "baseball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-07": { + "question": "¿Quién es el jugador de baloncesto más famoso en México?", + "en_question": "Who is the most famous basketball player in your country?", + "annotations": [ + { + "answers": [ + "horacio llamas" + ], + "en_answers": [ + "horacio llamas" + ], + "count": 1 + } + ], + "idks": { + "idk": 5, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Gu-ch-08": { + "question": "¿Cuál es el deporte más popular entre los niños en México?", + "en_question": "What is the most popular sports among children in your country?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol", + "futbol soccer" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "basquetbol", + "basketbol", + "basketball" + ], + "en_answers": [ + "basketball" + ], + "count": 3 + }, + { + "answers": [ + "beisbol" + ], + "en_answers": [ + "baseball" + ], + "count": 2 + }, + { + "answers": [ + "fútbol americano" + ], + "en_answers": [ + "american football", + "football" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-09": { + "question": "¿Qué deportes les gusta jugar más a las mujeres en México?", + "en_question": "What sports do women like to play the most in your country?", + "annotations": [ + { + "answers": [ + "voleibol", + "volibol", + "voleybol" + ], + "en_answers": [ + "volleyball" + ], + "count": 4 + }, + { + "answers": [ + "fútbol", + "futbol" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "basquetbol", + "basquet" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-11": { + "question": "¿En qué evento deportivo ha ganado México la mayor cantidad de medallas de oro en los Juegos Olímpicos?", + "en_question": "What sports event has your country won the most gold medals at the Olympics?", + "annotations": [ + { + "answers": [ + "clavados" + ], + "en_answers": [ + "diving" + ], + "count": 4 + }, + { + "answers": [ + "atletismo" + ], + "en_answers": [ + "athletics" + ], + "count": 2 + }, + { + "answers": [ + "boxeo", + "box" + ], + "en_answers": [ + "boxing" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-15": { + "question": "¿Qué deportes prefieren jugar los estudiantes universitarios en México?", + "en_question": "What sports do male students in university like to play the most in your country?", + "annotations": [ + { + "answers": [ + "futbol", + "fútbol" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "basquetbol" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "futbol americano" + ], + "en_answers": [ + "american football", + "football" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-16": { + "question": "¿Cuántas personas hay en una familia en promedio en México? (Proporciona solo números arábigos, por ejemplo, 12.)", + "en_question": "How many people are there in a family on average in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 4 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-18": { + "question": "¿Cuántos hijos suelen tener las parejas en México? (Proporcione solo números arábigos (por ejemplo, 12).)", + "en_question": "How many children do couples usually have in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 5 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 3 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-31": { + "question": "¿Cuál es la duración en años de la escuela primaria en México? (Proporcione solo números arábigos (por ejemplo, 12).)", + "en_question": "What is the duration of elementary school in years in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-32": { + "question": "¿Cuál es la duración en años de la educación obligatoria en México? (Proporcione solo números arábigos (por ejemplo, 12).)", + "en_question": "What is the duration of compulsory education in years in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 3 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-33": { + "question": "¿A partir de qué edad los estudiantes comienzan a aprender su segundo idioma en México? (Proporciona solo números arábigos, por ejemplo, 12.)", + "en_question": "From which age do students start learning their second language in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 2 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + }, + { + "answers": [ + "16" + ], + "en_answers": [ + "16" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-38": { + "question": "¿Cuál es la duración de la educación universitaria en México? (Proporciona solo números arábigos (por ejemplo, 12).)", + "en_question": "What is the duration of undergraduate education in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 4 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-40": { + "question": "¿A qué hora salen de la escuela los alumnos más pequeños de primaria en México? (Proporcionar en formato HH:MM (por ejemplo, 18:00, 09:00).)", + "en_question": "What time do younger elementary school students finish school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 3 + }, + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 1 + }, + { + "answers": [ + "20:00" + ], + "en_answers": [ + "20:00" + ], + "count": 1 + }, + { + "answers": [ + "12:30" + ], + "en_answers": [ + "12:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-41": { + "question": "¿Cuántos instrumentos musicales suelen tocar los estudiantes de primaria en México? (Proporciona solo números arábigos, por ejemplo, 12.)", + "en_question": "How many musical instruments do elementary school students in your country typically play? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-02": { + "question": "¿Qué día de la semana prefieren las personas en México para tener cenas de empresa?", + "en_question": "What day of the week do people in your country prefer to have company dinners?", + "annotations": [ + { + "answers": [ + "viernes" + ], + "en_answers": [ + "friday" + ], + "count": 5 + }, + { + "answers": [ + "sábado" + ], + "en_answers": [ + "saturday" + ], + "count": 1 + }, + { + "answers": [ + "jueves" + ], + "en_answers": [ + "thursday" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-03": { + "question": "¿Qué región/ciudad tiene el mayor número de empresas financieras en México?", + "en_question": "Which region/city has the highest number of financial companies in your country?", + "annotations": [ + { + "answers": [ + "ciudad de mexico", + "ciudad de méxico" + ], + "en_answers": [ + "mexico city" + ], + "count": 5 + }, + { + "answers": [ + "monterrey" + ], + "en_answers": [ + "monterrey" + ], + "count": 3 + }, + { + "answers": [ + "guadalajara" + ], + "en_answers": [ + "guadalajara" + ], + "count": 1 + }, + { + "answers": [ + "mérida" + ], + "en_answers": [ + "mérida" + ], + "count": 1 + }, + { + "answers": [ + "nuevo león" + ], + "en_answers": [ + "nuevo leon" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-07": { + "question": "¿Cuál es la empresa privada más famosa de México?", + "en_question": "What is the most famous private company in your country?", + "annotations": [ + { + "answers": [ + "grupo modelo" + ], + "en_answers": [ + "modelo group" + ], + "count": 2 + }, + { + "answers": [ + "bimbo" + ], + "en_answers": [ + "bimbo" + ], + "count": 2 + }, + { + "answers": [ + "coca cola", + "coca-cola" + ], + "en_answers": [ + "coca-cola" + ], + "count": 2 + }, + { + "answers": [ + "telmex" + ], + "en_answers": [ + "telmex" + ], + "count": 1 + }, + { + "answers": [ + "oxxo" + ], + "en_answers": [ + "oxxo" + ], + "count": 1 + }, + { + "answers": [ + "telcel" + ], + "en_answers": [ + "telcel" + ], + "count": 1 + }, + { + "answers": [ + "pemex" + ], + "en_answers": [ + "pemex" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-08": { + "question": "¿Cuál es el número máximo de horas que se pueden trabajar por semana en México? (Proporciona solo números arábigos (por ejemplo, 12).)", + "en_question": "What is the maximum number of hours one can work per week in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "48" + ], + "en_answers": [ + "48" + ], + "count": 4 + }, + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-09": { + "question": "¿Qué suelen comer las personas durante una reunión de empresa en México?", + "en_question": "What do people typically eat during company get-together in your country?", + "annotations": [ + { + "answers": [ + "sandwiches" + ], + "en_answers": [ + "sandwiches" + ], + "count": 1 + }, + { + "answers": [ + "tapas" + ], + "en_answers": [ + "tapas", + "small plates" + ], + "count": 1 + }, + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + }, + { + "answers": [ + "chilaquiles" + ], + "en_answers": [ + "chilaquiles" + ], + "count": 1 + }, + { + "answers": [ + "buffet con diferentes platillos tipicos" + ], + "en_answers": [ + "buffet with different typical dishes", + "buffet with traditional dishes" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-14": { + "question": "¿Cuál es el artículo de exportación representativo de México?", + "en_question": "What is the representative export item of your country?", + "annotations": [ + { + "answers": [ + "aguacate" + ], + "en_answers": [ + "avocado" + ], + "count": 3 + }, + { + "answers": [ + "tequila" + ], + "en_answers": [ + "tequila" + ], + "count": 2 + }, + { + "answers": [ + "maíz" + ], + "en_answers": [ + "corn" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-15": { + "question": "¿Cuánto dura (en horas) el descanso para comer típico en México? (Proporcione solo números arábigos hasta un punto decimal (por ejemplo, 2, 3.5).)", + "en_question": "How long (in hours) is the typical lunch break in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "0.5" + ], + "en_answers": [ + "0.5" + ], + "count": 3 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + }, + { + "answers": [ + "2.5" + ], + "en_answers": [ + "2.5" + ], + "count": 1 + }, + { + "answers": [ + "1.5" + ], + "en_answers": [ + "1.5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-16": { + "question": "¿Dónde se quedan las madres por un cierto período después del parto para recuperarse en México?", + "en_question": "Where do mothers stay for a certain period after childbirth for recovery in your country?", + "annotations": [ + { + "answers": [ + "hospital" + ], + "en_answers": [ + "hospital" + ], + "count": 3 + }, + { + "answers": [ + "casa", + "en casa" + ], + "en_answers": [ + "at home" + ], + "count": 3 + }, + { + "answers": [ + "trabajo" + ], + "en_answers": [ + "work" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-19": { + "question": "¿Cuál es la flor que más se regala en México en el Día de los Padres?", + "en_question": "What is your country's most commonly given flower on Parents' Day?", + "annotations": [], + "idks": { + "not-applicable": 4, + "no-answer": 1, + "idk": 0 + } + }, + "Ji-ko-22": { + "question": "¿En qué gastan especialmente las personas su primer salario en la sociedad mexicana?", + "en_question": "What do people especially spend their first salary on in your country's society?", + "annotations": [ + { + "answers": [ + "restaurantes" + ], + "en_answers": [ + "restaurants" + ], + "count": 2 + }, + { + "answers": [ + "regalos a terceros" + ], + "en_answers": [ + "gifts to third parties" + ], + "count": 1 + }, + { + "answers": [ + "electrónicos" + ], + "en_answers": [ + "electronics" + ], + "count": 1 + }, + { + "answers": [ + "ropa" + ], + "en_answers": [ + "clothes" + ], + "count": 1 + }, + { + "answers": [ + "bares" + ], + "en_answers": [ + "bars" + ], + "count": 1 + }, + { + "answers": [ + "coche" + ], + "en_answers": [ + "car" + ], + "count": 1 + }, + { + "answers": [ + "alcohol" + ], + "en_answers": [ + "alcohol" + ], + "count": 1 + }, + { + "answers": [ + "motos" + ], + "en_answers": [ + "motorcycles" + ], + "count": 1 + }, + { + "answers": [ + "comida" + ], + "en_answers": [ + "food" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-24": { + "question": "¿Cuál es la instalación recreativa preferida por los niños en México?", + "en_question": "What is the most preferred recreational facility among children in your country?", + "annotations": [ + { + "answers": [ + "parques infantiles", + "parques", + "parques publicos" + ], + "en_answers": [ + "playgrounds", + "parks", + "public parks" + ], + "count": 3 + }, + { + "answers": [ + "circos" + ], + "en_answers": [ + "circuses" + ], + "count": 1 + }, + { + "answers": [ + "el kinder", + "kindergarden", + "jardin de niños" + ], + "en_answers": [ + "the kindergarten" + ], + "count": 1 + }, + { + "answers": [ + "guarderia" + ], + "en_answers": [ + "daycare" + ], + "count": 1 + }, + { + "answers": [ + "feria de chapultepec" + ], + "en_answers": [ + "chapultepec fair" + ], + "count": 1 + }, + { + "answers": [ + "six flags" + ], + "en_answers": [ + "six flags" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-25": { + "question": "¿Cuáles son las festividades relacionadas con la familia en México?", + "en_question": "What are the family-related holidays in your country?", + "annotations": [ + { + "answers": [ + "día de las madres", + "dia de las madres", + "día de la madre", + "dia padre/madre" + ], + "en_answers": [ + "mother's day" + ], + "count": 4 + }, + { + "answers": [ + "navidad" + ], + "en_answers": [ + "christmas" + ], + "count": 3 + }, + { + "answers": [ + "día del padre", + "dia padre/madre" + ], + "en_answers": [ + "father's day" + ], + "count": 3 + }, + { + "answers": [ + "día del abuelo", + "dia del abuelo" + ], + "en_answers": [ + "grandfather's day" + ], + "count": 1 + }, + { + "answers": [ + "día de muertos", + "dia de muertos" + ], + "en_answers": [ + "day of the dead" + ], + "count": 1 + }, + { + "answers": [ + "día de la familia", + "dia de la familia" + ], + "en_answers": [ + "family day" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-26": { + "question": "¿Cuáles son los hitos clave asociados con la independencia de los hijos de sus padres en la sociedad mexicana?", + "en_question": "What are the key milestones associated with children's independence from their parents in your country's society?", + "annotations": [ + { + "answers": [ + "que se casen", + "casarse", + "matrimonio" + ], + "en_answers": [ + "getting married", + "marriage" + ], + "count": 3 + }, + { + "answers": [ + "ser mayores de edad", + "cumplir 18 años" + ], + "en_answers": [ + "to be of legal age" + ], + "count": 1 + }, + { + "answers": [ + "haber terminado sus estudios", + "hber terminado sus estudios", + "acabar la carrera" + ], + "en_answers": [ + "to have finished their studies" + ], + "count": 1 + }, + { + "answers": [ + "solvencia económica" + ], + "en_answers": [ + "financial solvency" + ], + "count": 1 + }, + { + "answers": [ + "conseguir trabajo" + ], + "en_answers": [ + "get a job" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-27": { + "question": "¿Cuál es el regalo común que das cuando visitas a los padres ancianos en México?", + "en_question": "What is the common gift you give when visiting elderly parents in your country?", + "annotations": [ + { + "answers": [ + "ropa" + ], + "en_answers": [ + "clothes" + ], + "count": 2 + }, + { + "answers": [ + "comida" + ], + "en_answers": [ + "food" + ], + "count": 2 + }, + { + "answers": [ + "pan dulce" + ], + "en_answers": [ + "sweet bread", + "pastries" + ], + "count": 1 + }, + { + "answers": [ + "dulces típicos" + ], + "en_answers": [ + "traditional candies" + ], + "count": 1 + }, + { + "answers": [ + "licor" + ], + "en_answers": [ + "liquor" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-28": { + "question": "¿Cuál es el primer día que la gente celebra después de que nace un niño en México?", + "en_question": "When is the first day that people celebrate after a child is born in your country?", + "annotations": [ + { + "answers": [ + "bautizo", + "bautismo" + ], + "en_answers": [ + "baptism" + ], + "count": 3 + }, + { + "answers": [ + "cumpleaños" + ], + "en_answers": [ + "birthday" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-29": { + "question": "¿Qué cumpleaños se celebra con mayor pompa en la sociedad mexicana?", + "en_question": "Which age's birthday is celebrated the most grandly in your country's society?", + "annotations": [ + { + "answers": [ + "15", + "los quince años" + ], + "en_answers": [ + "15th birthday" + ], + "count": 1 + }, + { + "answers": [ + "50" + ], + "en_answers": [ + "50th birthday" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-31": { + "question": "¿Dónde suelen estudiar para los exámenes los estudiantes de secundaria y preparatoria en México?", + "en_question": "Where do middle and high school students in your country usually study for exams?", + "annotations": [ + { + "answers": [ + "en casa", + "casa" + ], + "en_answers": [ + "at home" + ], + "count": 4 + }, + { + "answers": [ + "en la escuela", + "en la propia escuela", + "en la biblioteca", + "biblioteca" + ], + "en_answers": [ + "at school", + "in the library" + ], + "count": 2 + }, + { + "answers": [ + "en el salon de clases", + "salón de clases" + ], + "en_answers": [ + "in the classroom" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-33": { + "question": "¿A dónde suelen ir los estudiantes de preparatoria en México después de cenar?", + "en_question": "Where do high school students in your country usually go after dinner?", + "annotations": [ + { + "answers": [ + "a su casa", + "hogar" + ], + "en_answers": [ + "home" + ], + "count": 2 + }, + { + "answers": [ + "antro" + ], + "en_answers": [ + "to club or bar" + ], + "count": 1 + }, + { + "answers": [ + "calle" + ], + "en_answers": [ + "street" + ], + "count": 1 + }, + { + "answers": [ + "fiesta" + ], + "en_answers": [ + "to a party" + ], + "count": 1 + }, + { + "answers": [ + "reunion" + ], + "en_answers": [ + "gathering" + ], + "count": 1 + }, + { + "answers": [ + "casa de amigo(a)" + ], + "en_answers": [ + "friend's house" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-34": { + "question": "¿Cómo van a la escuela los estudiantes de primaria en México?", + "en_question": "How do elementary school students in your country go to school?", + "annotations": [ + { + "answers": [ + "caminando", + "a pie" + ], + "en_answers": [ + "walking", + "on foot" + ], + "count": 4 + }, + { + "answers": [ + "en transporte público", + "transporte público", + "transporte publico" + ], + "en_answers": [ + "by public transport" + ], + "count": 3 + }, + { + "answers": [ + "en automóvil de sus padres", + "en el vehículo de sus padres" + ], + "en_answers": [ + "using their parents car" + ], + "count": 2 + }, + { + "answers": [ + "en camión", + "camión", + "en autobus", + "en bus" + ], + "en_answers": [ + "by bus" + ], + "count": 2 + }, + { + "answers": [ + "camión escolar", + "camion escolar" + ], + "en_answers": [ + "using the school bus" + ], + "count": 2 + }, + { + "answers": [ + "en auto", + "auto" + ], + "en_answers": [ + "by car" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-35": { + "question": "¿Cuál es la forma más común de educación privada en México?", + "en_question": "What is the most common form of private education in your country?", + "annotations": [ + { + "answers": [ + "escuelas con licencia de la s.e.p.", + "escuelas incorporadas a la secretaria de educación publica (sep)" + ], + "en_answers": [ + "schools with a license from the s.e.p." + ], + "count": 1 + }, + { + "answers": [ + "escuelas montessori", + "montessori", + "escuelas que siguen el sistema montessori" + ], + "en_answers": [ + "montessori schools" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ji-ko-36": { + "question": "¿A qué academia de estudio/instituto educativo privado asisten con más frecuencia los estudiantes de secundaria o preparatoria en México?", + "en_question": "Which subject’s academy/private educational institute do middle or high students most frequently attend in your country?", + "annotations": [ + { + "answers": [ + "tec milenio", + "universidad tecmilenio" + ], + "en_answers": [ + "tecmilenio university" + ], + "count": 1 + }, + { + "answers": [ + "la salle", + "universidad \"la salle\"" + ], + "en_answers": [ + "la salle university" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-37": { + "question": "¿Qué tipo de ropa usan los estudiantes de secundaria y preparatoria para ir a la escuela en México?", + "en_question": "What type of clothing do middle and high school students wear to school in your country?", + "annotations": [ + { + "answers": [ + "uniforme", + "uniforme de la escuela", + "uniforme escolar" + ], + "en_answers": [ + "school uniform" + ], + "count": 5 + }, + { + "answers": [ + "pantalon" + ], + "en_answers": [ + "trousers" + ], + "count": 1 + }, + { + "answers": [ + "camisa" + ], + "en_answers": [ + "shirt" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-38": { + "question": "¿Qué carrera se considera la más difícil para ingresar en México?", + "en_question": "Which major is considered the most difficult to gain admission to in your country?", + "annotations": [ + { + "answers": [ + "medicina" + ], + "en_answers": [ + "medicine" + ], + "count": 3 + }, + { + "answers": [ + "informatica" + ], + "en_answers": [ + "computing", + "informatics" + ], + "count": 1 + }, + { + "answers": [ + "ingeniero fisico industrial", + "ingenieria física industrial" + ], + "en_answers": [ + "b.s in engineering physics" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-39": { + "question": "¿Cuál es el instrumento musical más comúnmente aprendido por los estudiantes de primaria en México?", + "en_question": "What is the most commonly learned musical instrument by elementary school students in your country?", + "annotations": [ + { + "answers": [ + "flauta" + ], + "en_answers": [ + "flute" + ], + "count": 5 + }, + { + "answers": [ + "guitarra" + ], + "en_answers": [ + "guitar" + ], + "count": 2 + }, + { + "answers": [ + "tambor" + ], + "en_answers": [ + "drum" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-40": { + "question": "¿Qué suelen hacer los estudiantes de preparatoria durante el recreo en las escuelas de México?", + "en_question": "What do high school students typically do during break time in schools in your country?", + "annotations": [ + { + "answers": [ + "platicar", + "'platicar" + ], + "en_answers": [ + "to chat" + ], + "count": 3 + }, + { + "answers": [ + "deporte", + "jugar algún deporte" + ], + "en_answers": [ + "doing sports" + ], + "count": 2 + }, + { + "answers": [ + "comer" + ], + "en_answers": [ + "have a meal", + "eat" + ], + "count": 1 + }, + { + "answers": [ + "fumar" + ], + "en_answers": [ + "smoke" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-41": { + "question": "¿Qué tipo de zapatos usan los estudiantes en las escuelas en México?", + "en_question": "What kind of shoes do students wear in schools in your country?", + "annotations": [ + { + "answers": [ + "tenis" + ], + "en_answers": [ + "sneakers", + "trainers" + ], + "count": 4 + }, + { + "answers": [ + "zapatos de vestir" + ], + "en_answers": [ + "formal shoes", + "formal dress shoes" + ], + "count": 2 + }, + { + "answers": [ + "zapato escolar" + ], + "en_answers": [ + "shool shoes" + ], + "count": 1 + }, + { + "answers": [ + "zapatos negros de vestir" + ], + "en_answers": [ + "formal black shoes" + ], + "count": 1 + }, + { + "answers": [ + "tenis de color blanco" + ], + "en_answers": [ + "white sneakers", + "white trainers" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-42": { + "question": "¿Cuáles son las materias requeridas en el examen de ingreso a la universidad en México?", + "en_question": "What are the required subjects in your country's university entrance exam?", + "annotations": [ + { + "answers": [ + "matemáticas", + "matematicas" + ], + "en_answers": [ + "mathematics" + ], + "count": 5 + }, + { + "answers": [ + "español", + "lengua espańola", + "lengua" + ], + "en_answers": [ + "spanish language" + ], + "count": 3 + }, + { + "answers": [ + "ciencias", + "ciencias y geografía" + ], + "en_answers": [ + "science", + "science" + ], + "count": 2 + }, + { + "answers": [ + "ética", + "etica" + ], + "en_answers": [ + "ethics" + ], + "count": 1 + }, + { + "answers": [ + "química" + ], + "en_answers": [ + "chemistry" + ], + "count": 1 + }, + { + "answers": [ + "historia" + ], + "en_answers": [ + "history" + ], + "count": 1 + }, + { + "answers": [ + "geografía", + "ciencias y geografía" + ], + "en_answers": [ + "geography" + ], + "count": 1 + }, + { + "answers": [ + "biología", + "biologia" + ], + "en_answers": [ + "biology" + ], + "count": 1 + }, + { + "answers": [ + "física", + "fisica" + ], + "en_answers": [ + "physics" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-44": { + "question": "¿Qué región (dentro de una ciudad) en México tiene el mayor fervor académico?", + "en_question": "Which region (within a city) in your country has the highest academic fervor?", + "annotations": [ + { + "answers": [ + "ciudad universitaria", + "ciudad universitaria (unam)" + ], + "en_answers": [ + "university city" + ], + "count": 2 + }, + { + "answers": [ + "centro de cdmx", + "centro histórico de la ciudad de méxico" + ], + "en_answers": [ + "historic center of mexico city" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-45": { + "question": "¿Qué es lo que más esperan las personas de los festivales universitarios en México?", + "en_question": "What do people look forward to the most at university festivals in your country?", + "annotations": [ + { + "answers": [ + "aprender" + ], + "en_answers": [ + "to learn" + ], + "count": 2 + }, + { + "answers": [ + "divertirse", + "diversión" + ], + "en_answers": [ + "to have fun", + "fun" + ], + "count": 2 + }, + { + "answers": [ + "proyectos universitarios" + ], + "en_answers": [ + "university projects" + ], + "count": 1 + }, + { + "answers": [ + "comida y bebida gratis" + ], + "en_answers": [ + "free food and drinks" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "Jo-sp-01": { + "question": "¿Cuál es el segundo deporte más popular en México?", + "en_question": "What is the second most popular sport in your country?", + "annotations": [ + { + "answers": [ + "basquetbol", + "basketball" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "beisbol" + ], + "en_answers": [ + "baseball" + ], + "count": 2 + }, + { + "answers": [ + "lucha libre" + ], + "en_answers": [ + "wrestling" + ], + "count": 1 + }, + { + "answers": [ + "natación" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + }, + { + "answers": [ + "beisbol", + "baseball" + ], + "en_answers": [ + "baseball" + ], + "count": 1 + }, + { + "answers": [ + "fútbol", + "futbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-02": { + "question": "¿Cuál es el deporte más popular jugado sin una pelota en México?", + "en_question": "What is the most popular sport played without a ball in your country?", + "annotations": [ + { + "answers": [ + "lucha libre" + ], + "en_answers": [ + "wrestling" + ], + "count": 3 + }, + { + "answers": [ + "natación" + ], + "en_answers": [ + "swimming" + ], + "count": 2 + }, + { + "answers": [ + "boxeo", + "box" + ], + "en_answers": [ + "boxing" + ], + "count": 2 + }, + { + "answers": [ + "tae kwon do" + ], + "en_answers": [ + "tae kwon do" + ], + "count": 1 + }, + { + "answers": [ + "formula 1" + ], + "en_answers": [ + "formula 1" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-09": { + "question": "¿Qué deportes están más asociados con la clase alta en México?", + "en_question": "What sports are most associated with the upper class in your country?", + "annotations": [ + { + "answers": [ + "golf" + ], + "en_answers": [ + "golf" + ], + "count": 4 + }, + { + "answers": [ + "tennis" + ], + "en_answers": [ + "tennis" + ], + "count": 2 + }, + { + "answers": [ + "pádel", + "paddel" + ], + "en_answers": [ + "padel", + "padel tennis" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-13": { + "question": "¿Cuál es el deporte acuático más popular en México?", + "en_question": "What is the most popular water sport in your country?", + "annotations": [ + { + "answers": [ + "natación", + "natacion" + ], + "en_answers": [ + "swimming" + ], + "count": 4 + }, + { + "answers": [ + "clavados" + ], + "en_answers": [ + "diving" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-14": { + "question": "¿Cuál es el deporte mental más popular en México?", + "en_question": "What is the most popular mental sport in your country?", + "annotations": [ + { + "answers": [ + "ajedrez" + ], + "en_answers": [ + "chess" + ], + "count": 4 + }, + { + "answers": [ + "golf" + ], + "en_answers": [ + "golf" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-18": { + "question": "¿Cuántos días de vacaciones por año recibe un trabajador estándar en México? (Proporcione solo números arábigos (por ejemplo, 12).)", + "en_question": "How many holiday days per year does a standard worker gets in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 2 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-19": { + "question": "¿Qué región de México ha estado tradicionalmente asociada con la agricultura?", + "en_question": "What region in your country has been traditionally associated with agriculture?", + "annotations": [ + { + "answers": [ + "norte", + "norte de méxico" + ], + "en_answers": [ + "north", + "north of mexico" + ], + "count": 3 + }, + { + "answers": [ + "el sur del país", + "sur" + ], + "en_answers": [ + "the south of the country", + "south" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-21": { + "question": "¿A qué hora, si es que la hay, la gente suele salir del trabajo para ir a comer en México? (Proporcionar en formato HH:MM (por ejemplo, 18:00, 09:00).)", + "en_question": "What time, if any, do people usually leave work for lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 4 + }, + { + "answers": [ + "15:00" + ], + "en_answers": [ + "15:00" + ], + "count": 3 + }, + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-31": { + "question": "¿A qué hora suelen salir los estudiantes de preparatoria de la escuela en México? (Proporcionar en formato HH:MM, por ejemplo, 18:00, 09:00).", + "en_question": "What time do high school students tend to leave school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 2 + }, + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 1 + }, + { + "answers": [ + "20:00" + ], + "en_answers": [ + "20:00" + ], + "count": 1 + }, + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 1 + }, + { + "answers": [ + "19:00" + ], + "en_answers": [ + "19:00" + ], + "count": 1 + }, + { + "answers": [ + "15:00" + ], + "en_answers": [ + "15:00" + ], + "count": 1 + }, + { + "answers": [ + "18:40" + ], + "en_answers": [ + "18:40" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-32": { + "question": "¿Qué deporte suelen practicar los alumnos de primaria en las escuelas de México?", + "en_question": "What sport do elementary school students tend to practice at school in your country?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "basquetlbol", + "basketball" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-36": { + "question": "¿Cuántas semanas duran las vacaciones de verano en las escuelas primarias de México? (Proporcionar solo en números arábigos (por ejemplo, 7, 8).)", + "en_question": "How long (in weeks) are summer vacations at elementary schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 3 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 2 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-37": { + "question": "¿Cuántas semanas duran las vacaciones de verano en las universidades de México? (Proporcionar solo en números arábigos (por ejemplo, 7, 8).)", + "en_question": "How long (in weeks) are summer vacations at universities in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 2 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-39": { + "question": "¿A qué edad comienza la educación primaria en México? (Proporcionar solo en números arábigos (por ejemplo, 7, 8).)", + "en_question": "At what age does elementary education begin in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 3 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 2 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-43": { + "question": "¿Cuántos idiomas se estudian en la educación primaria además del idioma oficial de México? (Proporcionar solo en números arábigos, por ejemplo, 7, 8.)", + "en_question": "How many languages are studied in elementary education besides your country's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 4 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-01": { + "question": "¿Qué utensilios de comida se usan comúnmente en México?", + "en_question": "What eating utensils do people commonly used in your country?", + "annotations": [ + { + "answers": [ + "tenedor" + ], + "en_answers": [ + "fork" + ], + "count": 4 + }, + { + "answers": [ + "cuchara", + "cucharas" + ], + "en_answers": [ + "spoon", + "spoons" + ], + "count": 4 + }, + { + "answers": [ + "cuchillo" + ], + "en_answers": [ + "knife" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-04": { + "question": "¿Qué bebida sin alcohol les gusta tomar a las personas en México?", + "en_question": "What soft drink do people in your country like to have?", + "annotations": [ + { + "answers": [ + "agua de horchata", + "horchata", + "agua horchata" + ], + "en_answers": [ + "horchata drink" + ], + "count": 3 + }, + { + "answers": [ + "cafe", + "café", + "tamarindo", + "agua de tamarindo" + ], + "en_answers": [ + "coffee", + "tamarind drink" + ], + "count": 3 + }, + { + "answers": [ + "agua de jamaica", + "jamaica" + ], + "en_answers": [ + "hibiscus drink" + ], + "count": 2 + }, + { + "answers": [ + "chocolate", + "chocolate caliente" + ], + "en_answers": [ + "hot chocolate" + ], + "count": 1 + }, + { + "answers": [ + "refresco" + ], + "en_answers": [ + "soda" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-06": { + "question": "¿Cuál es el alcohol tradicional más popular en México?", + "en_question": "What is the most popular traditional alcohol in your country?", + "annotations": [ + { + "answers": [ + "tequila" + ], + "en_answers": [ + "tequila" + ], + "count": 5 + }, + { + "answers": [ + "mezcal" + ], + "en_answers": [ + "mezcal" + ], + "count": 3 + }, + { + "answers": [ + "cerveza" + ], + "en_answers": [ + "beer" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-07": { + "question": "¿Cuánto tiempo (en horas) en promedio tardan las personas en México en cenar en un restaurante? (Proporcione solo números arábigos hasta un punto decimal (por ejemplo, 2, 3.5).)", + "en_question": "How long (in hours) on average does it take for people in your country to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + }, + { + "answers": [ + "1.5" + ], + "en_answers": [ + "1.5" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-09": { + "question": "¿A qué hora suelen cenar las personas en México? (Proporcionar en formato HH:MM (por ejemplo, 18:00, 09:00).)", + "en_question": "What time do people usually have dinner in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "20:00" + ], + "en_answers": [ + "20:00" + ], + "count": 4 + }, + { + "answers": [ + "19:00" + ], + "en_answers": [ + "19:00" + ], + "count": 3 + }, + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-12": { + "question": "¿Qué tipo de sopa les gusta tomar a las personas de México?", + "en_question": "What kind of soup do people from your country like to have?", + "annotations": [ + { + "answers": [ + "fideo", + "fideos", + "sopa de fideo" + ], + "en_answers": [ + "noodle soup" + ], + "count": 4 + }, + { + "answers": [ + "pollo", + "sopa de pollo" + ], + "en_answers": [ + "chicken soup" + ], + "count": 1 + }, + { + "answers": [ + "sopa de tortilla" + ], + "en_answers": [ + "tortilla soup" + ], + "count": 1 + }, + { + "answers": [ + "sopa de lima" + ], + "en_answers": [ + "lime soup" + ], + "count": 1 + }, + { + "answers": [ + "sopa de pasta" + ], + "en_answers": [ + "pasta soup", + "noodle soup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-13": { + "question": "¿Qué comida callejera les gusta comer a las personas de México?", + "en_question": "What street food do people from your country like to eat?", + "annotations": [ + { + "answers": [ + "tacos" + ], + "en_answers": [ + "tacos" + ], + "count": 5 + }, + { + "answers": [ + "quesadillas", + "gorditas quesadillas" + ], + "en_answers": [ + "quesadillas" + ], + "count": 3 + }, + { + "answers": [ + "tamales" + ], + "en_answers": [ + "tamales" + ], + "count": 2 + }, + { + "answers": [ + "tortas" + ], + "en_answers": [ + "sandwiches" + ], + "count": 2 + }, + { + "answers": [ + "gorditas", + "gorditas quesadillas" + ], + "en_answers": [ + "stuffed corn tortillas" + ], + "count": 2 + }, + { + "answers": [ + "birria" + ], + "en_answers": [ + "spicy beef or goat stew" + ], + "count": 1 + }, + { + "answers": [ + "empanadas" + ], + "en_answers": [ + "turnovers" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-15": { + "question": "¿Qué tipo de mariscos les gusta comer a las personas de México?", + "en_question": "What kind of seafood do people from your country like to eat?", + "annotations": [ + { + "answers": [ + "camarones", + "camarón" + ], + "en_answers": [ + "shrimp" + ], + "count": 5 + }, + { + "answers": [ + "pescado" + ], + "en_answers": [ + "fish" + ], + "count": 3 + }, + { + "answers": [ + "pulpo" + ], + "en_answers": [ + "octopus" + ], + "count": 2 + }, + { + "answers": [ + "ostras", + "ostiones" + ], + "en_answers": [ + "oysters" + ], + "count": 1 + }, + { + "answers": [ + "almejas" + ], + "en_answers": [ + "clams" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-16": { + "question": "¿Cuál es el festival más grande de México?", + "en_question": "What is the biggest festival in your country?", + "annotations": [ + { + "answers": [ + "feria de san marcos", + "feria nacional de san marcos" + ], + "en_answers": [ + "san marcos fair" + ], + "count": 1 + }, + { + "answers": [ + "festival internacional del globo" + ], + "en_answers": [ + "international balloon festival" + ], + "count": 1 + }, + { + "answers": [ + "festival tecate pal'norte" + ], + "en_answers": [ + "tecate pal norte festival" + ], + "count": 1 + }, + { + "answers": [ + "festival corona capital" + ], + "en_answers": [ + "corona capital festival" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-28": { + "question": "¿Cuál es el transporte público más utilizado por las personas al viajar entre ciudades en México?", + "en_question": "What is the most commonly used public transport by people when travelling between cites in your country?", + "annotations": [ + { + "answers": [ + "autobús", + "autobus de pasajeros", + "bus" + ], + "en_answers": [ + "bus" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-30": { + "question": "¿Cuáles son las decoraciones o símbolos específicos asociados con el festival más grande de México?", + "en_question": "What are the specific decorations or symbols associated with the most biggest festival in your country?", + "annotations": [ + { + "answers": [ + "banderas", + "banderas mexicanas" + ], + "en_answers": [ + "flags", + "mexican flags" + ], + "count": 2 + }, + { + "answers": [ + "catrinas" + ], + "en_answers": [ + "skeleton deciptions" + ], + "count": 1 + }, + { + "answers": [ + "flores de cempasuchitl" + ], + "en_answers": [ + "marigold flowers" + ], + "count": 1 + }, + { + "answers": [ + "ofrendas" + ], + "en_answers": [ + "offerings" + ], + "count": 1 + }, + { + "answers": [ + "trompetas" + ], + "en_answers": [ + "trumpets" + ], + "count": 1 + }, + { + "answers": [ + "sombreros charros" + ], + "en_answers": [ + "charro hats" + ], + "count": 1 + }, + { + "answers": [ + "calaveritas" + ], + "en_answers": [ + "sugar skulls", + "skulls" + ], + "count": 1 + }, + { + "answers": [ + "altares de muertos" + ], + "en_answers": [ + "day of the dead altars" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-37": { + "question": "¿Qué deportes les gusta ver más a las mujeres en México?", + "en_question": "What sports do women like to watch the most in your country?", + "annotations": [ + { + "answers": [ + "futbol" + ], + "en_answers": [ + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "gimnasia rítmica" + ], + "en_answers": [ + "rhythmic gymnastics" + ], + "count": 1 + }, + { + "answers": [ + "beisbol" + ], + "en_answers": [ + "baseball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-38": { + "question": "¿Qué deportes les gusta ver más a los hombres en México?", + "en_question": "What sports do men like to watch the most in your country?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol", + "football" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 5 + }, + { + "answers": [ + "beisbol" + ], + "en_answers": [ + "baseball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-41": { + "question": "¿Cuál es la actividad de ocio común en la que participan las mujeres de 20 años en México?", + "en_question": "What is the common leisure activity that females in their 20s in your country engage in?", + "annotations": [ + { + "answers": [ + "bailar" + ], + "en_answers": [ + "dance" + ], + "count": 2 + }, + { + "answers": [ + "redes sociales" + ], + "en_answers": [ + "social networks" + ], + "count": 1 + }, + { + "answers": [ + "salir de fiesta" + ], + "en_answers": [ + "go partying" + ], + "count": 1 + }, + { + "answers": [ + "ejercicio" + ], + "en_answers": [ + "exercise" + ], + "count": 1 + }, + { + "answers": [ + "tomar" + ], + "en_answers": [ + "drink" + ], + "count": 1 + }, + { + "answers": [ + "fumar" + ], + "en_answers": [ + "smoke" + ], + "count": 1 + }, + { + "answers": [ + "salir con amigos" + ], + "en_answers": [ + "go out with friends" + ], + "count": 1 + }, + { + "answers": [ + "ver series de tv", + "series de tv" + ], + "en_answers": [ + "watch tv series" + ], + "count": 1 + }, + { + "answers": [ + "salir a comer" + ], + "en_answers": [ + "go out to eat" + ], + "count": 1 + }, + { + "answers": [ + "ver tik toks" + ], + "en_answers": [ + "watch tiktoks" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-42": { + "question": "¿Cuál es la actividad de ocio común en la que participan los hombres en sus 20s en México?", + "en_question": "What is the common leisure activity that males in their 20s in your country engage in?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol", + "jugar fútbol" + ], + "en_answers": [ + "soccer", + "football", + "play soccer", + "pay football" + ], + "count": 4 + }, + { + "answers": [ + "play vidieojuegos", + "videojuegos", + "jugar videojuegos" + ], + "en_answers": [ + "play video games" + ], + "count": 3 + }, + { + "answers": [ + "ir a fiestas" + ], + "en_answers": [ + "partying", + "go to parties" + ], + "count": 1 + }, + { + "answers": [ + "ver televisión", + "televisión" + ], + "en_answers": [ + "watch tv" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-46": { + "question": "¿Cuánto tiempo (en horas) suele tomar la gente una pausa después de comer durante un día entre semana en México? (Proporcione solo números arábigos hasta un punto decimal (por ejemplo, 2, 3.5).)", + "en_question": "How long (in hours) do people usually take a break after lunch on a weekday in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + }, + { + "answers": [ + "0.5" + ], + "en_answers": [ + "0.5" + ], + "count": 2 + }, + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 1 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-48": { + "question": "¿Qué comen las personas para el almuerzo durante los días laborales en México?", + "en_question": "What do people eat for lunch during the working days in your country?", + "annotations": [ + { + "answers": [ + "torta", + "tortas" + ], + "en_answers": [ + "sandwich", + "sandwiches" + ], + "count": 2 + }, + { + "answers": [ + "antojito" + ], + "en_answers": [ + "snack" + ], + "count": 1 + }, + { + "answers": [ + "tacos" + ], + "en_answers": [ + "tacos" + ], + "count": 1 + }, + { + "answers": [ + "guisados" + ], + "en_answers": [ + "stews", + "one-pot meal" + ], + "count": 1 + }, + { + "answers": [ + "comida corrida" + ], + "en_answers": [ + "set meal", + "set menu meal" + ], + "count": 1 + }, + { + "answers": [ + "sopas" + ], + "en_answers": [ + "soups" + ], + "count": 1 + }, + { + "answers": [ + "frijoles" + ], + "en_answers": [ + "beans" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-50": { + "question": "¿Cuál es el tiempo promedio de traslado (en minutos) para las personas en México? (Proporcione solo números arábigos, por ejemplo, 1.)", + "en_question": "What is the average commute time (in minutes) for people in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 3 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-51": { + "question": "¿Cuál es el medio de transporte más común que la gente utiliza para ir al trabajo en México?", + "en_question": "What is the most common transportation that people take to get to work in your country?", + "annotations": [ + { + "answers": [ + "camión", + "camion", + "bus", + "autobús" + ], + "en_answers": [ + "bus" + ], + "count": 5 + }, + { + "answers": [ + "metro" + ], + "en_answers": [ + "subway" + ], + "count": 2 + }, + { + "answers": [ + "tren" + ], + "en_answers": [ + "train" + ], + "count": 1 + }, + { + "answers": [ + "combi", + "colectivo", + "minibús" + ], + "en_answers": [ + "minibus" + ], + "count": 1 + }, + { + "answers": [ + "carro", + "auto", + "coche" + ], + "en_answers": [ + "car" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-54": { + "question": "¿Cuántos días dura la licencia por matrimonio en México? (Proporciona solo números arábigos, por ejemplo, 12.)", + "en_question": "How long (in days) is the marriage leave in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 3 + }, + { + "answers": [ + "3", + "3 días" + ], + "en_answers": [ + "3 days" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 1 + }, + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-56": { + "question": "¿Cuál es la edad típica de jubilación para las mujeres en México? (Proporcione solo números arábigos (por ejemplo, 12).)", + "en_question": "What is the typical retirement age for women in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 4 + }, + { + "answers": [ + "65" + ], + "en_answers": [ + "65" + ], + "count": 1 + }, + { + "answers": [ + "62" + ], + "en_answers": [ + "62" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-57": { + "question": "¿Cuál es la edad típica de jubilación para los hombres en México? (Proporcione solo números arábigos (por ejemplo, 12).)", + "en_question": "What is the typical retirement age for men in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "65" + ], + "en_answers": [ + "65" + ], + "count": 5 + }, + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-58": { + "question": "¿Cuál es la profesión más respetada en México?", + "en_question": "Which profession is the most respected in your country?", + "annotations": [ + { + "answers": [ + "médico", + "medico", + "doctor" + ], + "en_answers": [ + "doctor" + ], + "count": 4 + }, + { + "answers": [ + "ingeniero" + ], + "en_answers": [ + "engineer" + ], + "count": 2 + }, + { + "answers": [ + "abogado", + "licenciado" + ], + "en_answers": [ + "lawyer", + "graduate" + ], + "count": 2 + }, + { + "answers": [ + "financiero" + ], + "en_answers": [ + "financial" + ], + "count": 1 + }, + { + "answers": [ + "científico" + ], + "en_answers": [ + "scientist" + ], + "count": 1 + }, + { + "answers": [ + "periodista" + ], + "en_answers": [ + "journalist" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-60": { + "question": "¿Cuál es la duración (en horas) de un día laboral típico en México? (Proporcione únicamente números arábigos (0~24).)", + "en_question": "What is the duration (in hours) of a typical workday in your country? (Provide Arabic numerals (0~24) only.)", + "annotations": [ + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 2 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 2 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + }, + { + "answers": [ + "8-12" + ], + "en_answers": [ + "8-12" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-61": { + "question": "¿Cuál es la ocupación más preferida entre las mujeres en México?", + "en_question": "Which occupation is most preferred among females in your country?", + "annotations": [ + { + "answers": [ + "ama de casa" + ], + "en_answers": [ + "housewife" + ], + "count": 2 + }, + { + "answers": [ + "enfermería", + "enfermera" + ], + "en_answers": [ + "nursing" + ], + "count": 1 + }, + { + "answers": [ + "repostería", + "respostera" + ], + "en_answers": [ + "bakery", + "pastry chef" + ], + "count": 1 + }, + { + "answers": [ + "médica", + "doctora" + ], + "en_answers": [ + "female doctor" + ], + "count": 1 + }, + { + "answers": [ + "maestra" + ], + "en_answers": [ + "teacher" + ], + "count": 1 + }, + { + "answers": [ + "nutrióloga", + "nutriologa", + "nutricionista" + ], + "en_answers": [ + "nutritionist" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-62": { + "question": "¿Cuál es la ocupación más preferida entre los hombres en México?", + "en_question": "Which occupation is most preferred among males in your country?", + "annotations": [ + { + "answers": [ + "ingeniero" + ], + "en_answers": [ + "engineer" + ], + "count": 2 + }, + { + "answers": [ + "empleado" + ], + "en_answers": [ + "employee" + ], + "count": 1 + }, + { + "answers": [ + "abogado" + ], + "en_answers": [ + "lawyer" + ], + "count": 1 + }, + { + "answers": [ + "trabajo de oficina" + ], + "en_answers": [ + "office work" + ], + "count": 1 + }, + { + "answers": [ + "gerente" + ], + "en_answers": [ + "manager" + ], + "count": 1 + }, + { + "answers": [ + "taxista" + ], + "en_answers": [ + "taxi driver" + ], + "count": 1 + }, + { + "answers": [ + "policía" + ], + "en_answers": [ + "police" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-17": { + "question": "En promedio, ¿hasta qué nivel suelen estudiar los estudiantes en México? (por ejemplo, primaria, secundaria)", + "en_question": "On average, how far do students typically pursue their education in your country? (e.g., elementary, high school)", + "annotations": [ + { + "answers": [ + "preparatoria" + ], + "en_answers": [ + "high school" + ], + "count": 3 + }, + { + "answers": [ + "universidad" + ], + "en_answers": [ + "university" + ], + "count": 1 + }, + { + "answers": [ + "bachillerato" + ], + "en_answers": [ + "high school" + ], + "count": 1 + }, + { + "answers": [ + "secundaria" + ], + "en_answers": [ + "secondary school" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-24": { + "question": "¿Qué idioma se enseña en las escuelas de México además del inglés?", + "en_question": "What language is taught in schools in your country besides English?", + "annotations": [ + { + "answers": [ + "francés", + "frances" + ], + "en_answers": [ + "french" + ], + "count": 4 + }, + { + "answers": [ + "español" + ], + "en_answers": [ + "spanish" + ], + "count": 2 + }, + { + "answers": [ + "nahuatl" + ], + "en_answers": [ + "nahuatl" + ], + "count": 1 + }, + { + "answers": [ + "chino mandarin" + ], + "en_answers": [ + "chinese" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-30": { + "question": "¿Qué días de la semana están cerradas las escuelas en México?", + "en_question": "What days of the week are schools closed in your country?", + "annotations": [ + { + "answers": [ + "domingo", + "sábado y domingo", + "sabado y domingo" + ], + "en_answers": [ + "sunday" + ], + "count": 5 + }, + { + "answers": [ + "sabado", + "sábado", + "sábado y domingo", + "sabado y domingo" + ], + "en_answers": [ + "saturday" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-32": { + "question": "¿Qué comida suelen preparar los anfitriones para los invitados en México?", + "en_question": "What food do the hosts usually prepare for the guests in your country?", + "annotations": [ + { + "answers": [ + "pozole" + ], + "en_answers": [ + "a traditional soup or stew made of pork and corn" + ], + "count": 2 + }, + { + "answers": [ + "carne asada" + ], + "en_answers": [ + "grilled meat" + ], + "count": 2 + }, + { + "answers": [ + "mole" + ], + "en_answers": [ + "mole" + ], + "count": 2 + }, + { + "answers": [ + "tamales" + ], + "en_answers": [ + "tamales" + ], + "count": 1 + }, + { + "answers": [ + "comida típica" + ], + "en_answers": [ + "traditional dishes" + ], + "count": 1 + }, + { + "answers": [ + "botanas con salsa" + ], + "en_answers": [ + "snacks and dip" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-34": { + "question": "¿Cuál es la bebida habitual en el desayuno en México?", + "en_question": "What is the usual drink in the breakfast in your country?", + "annotations": [ + { + "answers": [ + "café", + "cafe" + ], + "en_answers": [ + "coffee" + ], + "count": 4 + }, + { + "answers": [ + "licuado" + ], + "en_answers": [ + "smoothie" + ], + "count": 2 + }, + { + "answers": [ + "leche" + ], + "en_answers": [ + "milk" + ], + "count": 2 + }, + { + "answers": [ + "jugo de naranja" + ], + "en_answers": [ + "orange juice" + ], + "count": 1 + }, + { + "answers": [ + "atole" + ], + "en_answers": [ + "a traditional hot mexican beverage made from cornmeal and water or milk" + ], + "count": 1 + }, + { + "answers": [ + "jugo" + ], + "en_answers": [ + "juice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-36": { + "question": "Exceptuando la comida originaria de México, ¿qué comida de qué país es más popular en México?", + "en_question": "Except the food original from your country, which country's food is more popular in your country?", + "annotations": [ + { + "answers": [ + "china" + ], + "en_answers": [ + "chinese" + ], + "count": 2 + }, + { + "answers": [ + "americana", + "americana (hot-dogs hamburguesa)" + ], + "en_answers": [ + "american", + "american (hot dogs, hamburger)" + ], + "count": 2 + }, + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + }, + { + "answers": [ + "hamburguesa" + ], + "en_answers": [ + "burger" + ], + "count": 1 + }, + { + "answers": [ + "sushi" + ], + "en_answers": [ + "sushi" + ], + "count": 1 + }, + { + "answers": [ + "brasileña" + ], + "en_answers": [ + "brazilian" + ], + "count": 1 + }, + { + "answers": [ + "italiana" + ], + "en_answers": [ + "italian" + ], + "count": 1 + }, + { + "answers": [ + "española" + ], + "en_answers": [ + "spanish" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-39": { + "question": "¿Qué comida se suele preparar para un picnic familiar en México?", + "en_question": "What food is usually prepared for a family picnic in your country?", + "annotations": [ + { + "answers": [ + "sandwich", + "sandwiches" + ], + "en_answers": [ + "sandwich", + "sandwiches" + ], + "count": 4 + }, + { + "answers": [ + "tacos" + ], + "en_answers": [ + "tacos" + ], + "count": 1 + }, + { + "answers": [ + "carne asada" + ], + "en_answers": [ + "grilled meat" + ], + "count": 1 + }, + { + "answers": [ + "hot dogs" + ], + "en_answers": [ + "hot dogs" + ], + "count": 1 + }, + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + }, + { + "answers": [ + "pasta" + ], + "en_answers": [ + "pasta" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-40": { + "question": "¿Qué comida de México es considerada asquerosa por el resto del mundo?", + "en_question": "Which food from your country is considered disgusting by the rest of the world?", + "annotations": [ + { + "answers": [ + "chapulines", + "grillos" + ], + "en_answers": [ + "grasshoppers", + "crickets" + ], + "count": 3 + }, + { + "answers": [ + "gusanos de maguey", + "gusanos" + ], + "en_answers": [ + "maguey worms", + "worms" + ], + "count": 2 + }, + { + "answers": [ + "viseras de res o puerco" + ], + "en_answers": [ + "beef or pork offal" + ], + "count": 1 + }, + { + "answers": [ + "tacos de cabeza" + ], + "en_answers": [ + "head tacos" + ], + "count": 1 + }, + { + "answers": [ + "lengua" + ], + "en_answers": [ + "tongue meat" + ], + "count": 1 + }, + { + "answers": [ + "tripa", + "panza" + ], + "en_answers": [ + "tripe" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-43": { + "question": "¿Cuál es el nombre del pan popular en México?", + "en_question": "What is the name of the popular bread in your country?", + "annotations": [ + { + "answers": [ + "concha" + ], + "en_answers": [ + "concha" + ], + "count": 3 + }, + { + "answers": [ + "pan de muerto" + ], + "en_answers": [ + "pan de muerto" + ], + "count": 2 + }, + { + "answers": [ + "bolillo" + ], + "en_answers": [ + "bolillo" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-51": { + "question": "¿A qué hora cierran las oficinas de gobierno en México? (Proporcionar en formato HH:MM (por ejemplo, 18:00, 09:00).)", + "en_question": "What time of day are government offices closed in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 3 + }, + { + "answers": [ + "15:00" + ], + "en_answers": [ + "15:00" + ], + "count": 3 + }, + { + "answers": [ + "12:30" + ], + "en_answers": [ + "12:30" + ], + "count": 1 + }, + { + "answers": [ + "16:00" + ], + "en_answers": [ + "16:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-53": { + "question": "¿Cuál es el horario de inicio habitual de las oficinas gubernamentales en México? (Proporcionar en formato HH:MM, por ejemplo, 18:00, 09:00).", + "en_question": "What is the normal start time of government offices in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 2 + }, + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 2 + }, + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 1 + }, + { + "answers": [ + "05:00", + "5;00" + ], + "en_answers": [ + "05:00" + ], + "count": 1 + }, + { + "answers": [ + "07:00" + ], + "en_answers": [ + "07:00" + ], + "count": 1 + }, + { + "answers": [ + "08:30" + ], + "en_answers": [ + "08:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-01": { + "question": "¿Qué día festivo nacional tiene la mayor duración en México?", + "en_question": "What national holiday has the longest duration in your country?", + "annotations": [ + { + "answers": [ + "semana santa", + "cuaresma" + ], + "en_answers": [ + "easter" + ], + "count": 3 + }, + { + "answers": [ + "el 15 de septiembre", + "dia de la independencia" + ], + "en_answers": [ + "september 15th" + ], + "count": 1 + }, + { + "answers": [ + "vacaciones de navidad" + ], + "en_answers": [ + "christmas break" + ], + "count": 1 + }, + { + "answers": [ + "dia de muertos" + ], + "en_answers": [ + "day of the dead" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-02": { + "question": "¿Cuáles son las actividades comunes que la gente de México realiza para celebrar el Día de la Independencia?", + "en_question": "What are the common activities people from your country do to celebrate Independence day?", + "annotations": [ + { + "answers": [ + "fiestas patrias" + ], + "en_answers": [ + "national holidays" + ], + "count": 1 + }, + { + "answers": [ + "comida mexicana" + ], + "en_answers": [ + "traditional mexican food" + ], + "count": 1 + }, + { + "answers": [ + "fiesta" + ], + "en_answers": [ + "party" + ], + "count": 1 + }, + { + "answers": [ + "ingerir alcohol" + ], + "en_answers": [ + "drink alcohol" + ], + "count": 1 + }, + { + "answers": [ + "comer pozole" + ], + "en_answers": [ + "eat pozole", + "eat a traditional mexican soup" + ], + "count": 1 + }, + { + "answers": [ + "ir al grito a la plaza" + ], + "en_answers": [ + "go to the celebrations at the main square" + ], + "count": 1 + }, + { + "answers": [ + "comer" + ], + "en_answers": [ + "eat" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-04": { + "question": "¿Qué se instala enfrente de la casa cuando muere un miembro de la familia en México?", + "en_question": "What is installed in front of the house when a family member dies in your country?", + "annotations": [ + { + "answers": [ + "moño negro", + "un moño negro" + ], + "en_answers": [ + "black bow", + "a black bow" + ], + "count": 3 + }, + { + "answers": [ + "un adorno negro" + ], + "en_answers": [ + "a black adorment" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-05": { + "question": "¿Cuándo se suele realizar una celebración o ceremonia de embarazo en México?", + "en_question": "When is a pregnancy celebration or ceremony usually held in your country?", + "annotations": [ + { + "answers": [ + "cuando la madre tiene mas de la mitad de gestación", + "6 meses de embarazo", + "7 meses de embarazo" + ], + "en_answers": [ + "when the mother is more than halfway through pregnancy", + "6 months pregnant", + "7 months pregnant" + ], + "count": 2 + }, + { + "answers": [ + "a los 7 u 8 meses" + ], + "en_answers": [ + "at 7 or 8 months" + ], + "count": 1 + }, + { + "answers": [ + "en la última etapa del embarazo" + ], + "en_answers": [ + "in the last stage of pregnancy" + ], + "count": 1 + }, + { + "answers": [ + "baby shower antes del nacimiento" + ], + "en_answers": [ + "before the birth" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-06": { + "question": "¿Qué evento se suele realizar antes de una boda en México?", + "en_question": "What event is usually held before a wedding in your country?", + "annotations": [ + { + "answers": [ + "misa", + "ceremonia religiosa" + ], + "en_answers": [ + "mass", + "religious ceremony" + ], + "count": 2 + }, + { + "answers": [ + "pedida de mano" + ], + "en_answers": [ + "marriage proposal" + ], + "count": 1 + }, + { + "answers": [ + "despedida de soltero" + ], + "en_answers": [ + "bachelor party", + "stag party", + "hen party" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-07": { + "question": "¿Qué se suele compartir con los niños durante el Año Nuevo (Lunar) en México?", + "en_question": "What is usually shared to the children during (Lunar) New Year in your country?", + "annotations": [ + { + "answers": [ + "fuegos artificiales" + ], + "en_answers": [ + "fireworks" + ], + "count": 1 + }, + { + "answers": [ + "dulces" + ], + "en_answers": [ + "sweets" + ], + "count": 1 + }, + { + "answers": [ + "tamales" + ], + "en_answers": [ + "tamales" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 0 + } + }, + "Kik-in-08": { + "question": "¿Qué actividades se suelen realizar días antes del Ramadán en México?", + "en_question": "What activities are usually done days before Ramadan in your country?", + "annotations": [ + { + "answers": [ + "cantos" + ], + "en_answers": [ + "singing" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 0 + } + }, + "Kik-in-10": { + "question": "¿Cuál es la atracción turística más popular para los visitantes extranjeros en México?", + "en_question": "What is the most popular tourist attraction for foreign visitors in your country?", + "annotations": [ + { + "answers": [ + "playas", + "playa" + ], + "en_answers": [ + "beaches", + "beach" + ], + "count": 3 + }, + { + "answers": [ + "cancun" + ], + "en_answers": [ + "cancun" + ], + "count": 1 + }, + { + "answers": [ + "pirámides" + ], + "en_answers": [ + "pyramids" + ], + "count": 1 + }, + { + "answers": [ + "museos" + ], + "en_answers": [ + "museums" + ], + "count": 1 + }, + { + "answers": [ + "pueblos mágicos" + ], + "en_answers": [ + "magic towns", + "touristic towns" + ], + "count": 1 + }, + { + "answers": [ + "ciudad de mexico" + ], + "en_answers": [ + "mexico city" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-11": { + "question": "¿Cuáles son los sitios religiosos (templo, iglesia, etc.) más populares para el turismo en México?", + "en_question": "What is the most popular religious sites (temple, church, etc.) for tourism in your country?", + "annotations": [ + { + "answers": [ + "basilica de guadalupe", + "la basílica de guadalupe", + "basílica de guadalupe" + ], + "en_answers": [ + "basilica of guadalupe" + ], + "count": 5 + }, + { + "answers": [ + "la catedral metropolitana", + "catedral de cdmx" + ], + "en_answers": [ + "the metropolitan cathedral", + "mexico city's cathedral" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-15": { + "question": "¿Qué ropa suelen usar las mujeres en la ceremonia de graduación en México?", + "en_question": "What clothes do women usually wear on graduation commencement ceremony in your country?", + "annotations": [ + { + "answers": [ + "vestido" + ], + "en_answers": [ + "dress" + ], + "count": 3 + }, + { + "answers": [ + "vestido largo", + "vestido formal" + ], + "en_answers": [ + "long dress", + "formal dress" + ], + "count": 2 + }, + { + "answers": [ + "toga" + ], + "en_answers": [ + "gown" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-16": { + "question": "¿Qué bebida se consume comúnmente en México cuando el clima está frío?", + "en_question": "What drink is commonly consumed in your country when the weather is cold?", + "annotations": [ + { + "answers": [ + "atole", + "champurrado" + ], + "en_answers": [ + "a traditional hot mexican beverage made from cornmeal and water or milk", + "chocolate flavored beverage made from cornmeal and water or milk" + ], + "count": 3 + }, + { + "answers": [ + "cafe", + "café" + ], + "en_answers": [ + "coffee" + ], + "count": 2 + }, + { + "answers": [ + "chocolate", + "chocolate caliente" + ], + "en_answers": [ + "hot chocolate" + ], + "count": 2 + }, + { + "answers": [ + "coca-cola" + ], + "en_answers": [ + "coca-cola" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-17": { + "question": "¿Qué fruta se vende y se encuentra más comúnmente durante el Ramadán en México?", + "en_question": "What fruit is more commonly sold and found during Ramadan in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "no-answer": 1, + "idk": 0 + } + }, + "Kik-in-24": { + "question": "¿Qué carbohidrato se sirve usualmente con pollo en un restaurante de comida rápida en México?", + "en_question": "What carbohydrate is usually served with chicken in a fast-food restaurant in your country?", + "annotations": [ + { + "answers": [ + "arroz" + ], + "en_answers": [ + "rice" + ], + "count": 3 + }, + { + "answers": [ + "espagueti" + ], + "en_answers": [ + "spaghetti" + ], + "count": 1 + }, + { + "answers": [ + "pasta" + ], + "en_answers": [ + "pasta" + ], + "count": 1 + }, + { + "answers": [ + "tortilla de algún tipo (frita" + ], + "en_answers": [ + "tortilla" + ], + "count": 1 + }, + { + "answers": [ + "frijoles" + ], + "en_answers": [ + "beans" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-31": { + "question": "¿Cuál es el deporte de artes marciales más famoso en México?", + "en_question": "What is the most famous martial art sports in your country?", + "annotations": [ + { + "answers": [ + "karate" + ], + "en_answers": [ + "karate" + ], + "count": 3 + }, + { + "answers": [ + "taekwando", + "taekwondo", + "tae kwon do" + ], + "en_answers": [ + "taekwondo", + "tae kwon do" + ], + "count": 3 + }, + { + "answers": [ + "boxeo", + "box" + ], + "en_answers": [ + "boxing" + ], + "count": 2 + }, + { + "answers": [ + "judo" + ], + "en_answers": [ + "judo" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-34": { + "question": "¿Qué deportes se transmiten frecuentemente en la televisión nacional en México?", + "en_question": "What sports are often broadcasted on national television in your country?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 4 + }, + { + "answers": [ + "béisbol", + "beisbol" + ], + "en_answers": [ + "baseball" + ], + "count": 2 + }, + { + "answers": [ + "lucha libre" + ], + "en_answers": [ + "wrestling" + ], + "count": 1 + }, + { + "answers": [ + "boxeo" + ], + "en_answers": [ + "boxing" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-35": { + "question": "¿Qué deportes fueron populares entre la gente de México durante la pandemia de COVID-19?", + "en_question": "What sports were popular among people from your country during the COVID-19 pandemic?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "No seguí los deportes durante la pandemia": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Kik-in-36": { + "question": "¿Quién es el entrenador de fútbol más popular en México?", + "en_question": "Who is the most popular soccer coach in your country?", + "annotations": [ + { + "answers": [ + "miguel \"el piojo\" herrera", + "miguel herrera" + ], + "en_answers": [ + "miguel \"the louse\" herrera", + "miguel herrera" + ], + "count": 2 + }, + { + "answers": [ + "tuca ferreti" + ], + "en_answers": [ + "tuca ferretti" + ], + "count": 1 + }, + { + "answers": [ + "pep guardiola" + ], + "en_answers": [ + "pep guardiola" + ], + "count": 1 + }, + { + "answers": [ + "vasco aguirre" + ], + "en_answers": [ + "basque aguirre" + ], + "count": 1 + }, + { + "answers": [ + "jaime lozano" + ], + "en_answers": [ + "jaime lozano" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-37": { + "question": "¿Qué equipos de fútbol en México son famosos por su intensa rivalidad? (p. ej. ___ vs ___)", + "en_question": "What soccer teams in your country are famous for their intense rivalry? (e.g. ___ vs ___)", + "annotations": [ + { + "answers": [ + "chivas vs américa", + "america vs guadalajara", + "america vs chivas" + ], + "en_answers": [ + "chivas vs america", + "america vs guadalajara", + "america vs chivas" + ], + "count": 3 + }, + { + "answers": [ + "rayados vs tigres", + "tigres vs rayados" + ], + "en_answers": [ + "rayados vs tigres", + "tigres vs rayados" + ], + "count": 2 + }, + { + "answers": [ + "america vs pumas" + ], + "en_answers": [ + "america vs pumas" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-38": { + "question": "¿Cuáles son los nombres de los aficionados al fútbol en México que son famosos por su intensa rivalidad? (p. ej. ___ vs ___)", + "en_question": "What are the names of soccer supporters in your country who are famous for their intense rivalry? (e.g. ___ vs ___)", + "annotations": [ + { + "answers": [ + "aguilas vs chivas", + "americanistas vs rebaño sagrado", + "america vs chivas" + ], + "en_answers": [ + "eagles vs goats", + "americanists vs sacred flock", + "america vs chivas" + ], + "count": 3 + }, + { + "answers": [ + "tigres vs rayados" + ], + "en_answers": [ + "tigers vs striped ones" + ], + "count": 1 + }, + { + "answers": [ + "pumas vs américa" + ], + "en_answers": [ + "pumas vs america" + ], + "count": 1 + }, + { + "answers": [ + "chivas vs atlas" + ], + "en_answers": [ + "goats vs atlas" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-40": { + "question": "¿Quién es el jugador de bádminton masculino más famoso en México?", + "en_question": "Who is the most famous male badminton player in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 3, + "no-answer": 0 + } + }, + "Kik-in-41": { + "question": "¿Quién es la jugadora de bádminton femenino más famosa en México?", + "en_question": "Who is the most famous female badminton player in your country?", + "annotations": [ + { + "answers": [ + "sabrina salas" + ], + "en_answers": [ + "sabrina salas" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 2, + "No sigo ese deporte": 1, + "no-answer": 0 + } + }, + "Kik-in-44": { + "question": "¿Qué deporte recibe más apoyo del gobierno en México?", + "en_question": "What sport gets the most support from the government in your country?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol", + "el footbool", + "futbol soccer" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 5 + }, + { + "answers": [ + "beisbol" + ], + "en_answers": [ + "baseball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-45": { + "question": "¿Qué instalaciones de campos deportivos suelen estar disponibles en las escuelas de México?", + "en_question": "What sports field facilities are usually available at schools in your country?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol", + "campo de futbol", + "cancha de fútbol", + "campos de futbol" + ], + "en_answers": [ + "soccer", + "football", + "soccer field", + "soccer fields" + ], + "count": 4 + }, + { + "answers": [ + "basquetbol", + "basketbol", + "cancha de basquetbol", + "cancha de básquetbol", + "canchas de basquetbol", + "canchas de bascketbol" + ], + "en_answers": [ + "basketball", + "basketball court", + "basketball courts" + ], + "count": 4 + }, + { + "answers": [ + "voleibol" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "canchas de concreto" + ], + "en_answers": [ + "concrete courts" + ], + "count": 1 + }, + { + "answers": [ + "canchas de pasto sintetico" + ], + "en_answers": [ + "synthetic grass courts" + ], + "count": 1 + }, + { + "answers": [ + "campo de beisbol" + ], + "en_answers": [ + "baseball field" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-02": { + "question": "¿Qué bebida de café disfrutan más comúnmente las personas de México?", + "en_question": "What cafe beverage do people from your country most commonly enjoy?", + "annotations": [ + { + "answers": [ + "capuccino", + "capuchino" + ], + "en_answers": [ + "cappuccino" + ], + "count": 2 + }, + { + "answers": [ + "cafe de olla", + "de olla" + ], + "en_answers": [ + "pot coffee" + ], + "count": 2 + }, + { + "answers": [ + "nescafé", + "cafe instantáneo", + "cafe solube" + ], + "en_answers": [ + "nescafé" + ], + "count": 1 + }, + { + "answers": [ + "americano" + ], + "en_answers": [ + "american" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-04": { + "question": "¿Cuál es la comida preferida para curar la cruda de las personas en México?", + "en_question": "What is the preferred hangover cure food for people from your country?", + "annotations": [ + { + "answers": [ + "mariscos" + ], + "en_answers": [ + "seafood" + ], + "count": 2 + }, + { + "answers": [ + "tacos" + ], + "en_answers": [ + "tacos" + ], + "count": 2 + }, + { + "answers": [ + "mondongo", + "menudo" + ], + "en_answers": [ + "tripe soup" + ], + "count": 2 + }, + { + "answers": [ + "caldo picante" + ], + "en_answers": [ + "spicy broth" + ], + "count": 1 + }, + { + "answers": [ + "barbacoa" + ], + "en_answers": [ + "barbacoa" + ], + "count": 1 + }, + { + "answers": [ + "chilaquiles" + ], + "en_answers": [ + "chilaquiles" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-05": { + "question": "¿Cuál es la comida típica a domicilio en México?", + "en_question": "What is the typical delivery food in your country?", + "annotations": [ + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 4 + }, + { + "answers": [ + "tacos" + ], + "en_answers": [ + "tacos" + ], + "count": 2 + }, + { + "answers": [ + "hamburguesa", + "hambueguesa", + "hamburguesas", + "hamburgesas" + ], + "en_answers": [ + "burger", + "burgers" + ], + "count": 2 + }, + { + "answers": [ + "sushi" + ], + "en_answers": [ + "sushi" + ], + "count": 1 + }, + { + "answers": [ + "hot dogs" + ], + "en_answers": [ + "hot dogs" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-07": { + "question": "¿Qué tipo de carne es la más consumida por la gente de México?", + "en_question": "What type of meat is consumed most by people from your country?", + "annotations": [ + { + "answers": [ + "res", + "carne de res", + "de res" + ], + "en_answers": [ + "beef" + ], + "count": 5 + }, + { + "answers": [ + "puerco", + "carne de cerdo", + "cerdo" + ], + "en_answers": [ + "pork" + ], + "count": 4 + }, + { + "answers": [ + "carne de pollo" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "borrego" + ], + "en_answers": [ + "lamb" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-08": { + "question": "¿Qué fruta comen comúnmente las personas en México durante la temporada de otoño?", + "en_question": "What fruit do people from your country often eat in the autumn season?", + "annotations": [ + { + "answers": [ + "mandarina" + ], + "en_answers": [ + "tangerine", + "mandarine", + "clementine" + ], + "count": 2 + }, + { + "answers": [ + "manzana" + ], + "en_answers": [ + "apple" + ], + "count": 2 + }, + { + "answers": [ + "plátano" + ], + "en_answers": [ + "banana" + ], + "count": 1 + }, + { + "answers": [ + "durazno" + ], + "en_answers": [ + "peach" + ], + "count": 1 + }, + { + "answers": [ + "peras" + ], + "en_answers": [ + "pears" + ], + "count": 1 + }, + { + "answers": [ + "calabaza" + ], + "en_answers": [ + "pumpkin" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-09": { + "question": "¿Qué guarnición se sirve más comúnmente en una mesa de comedor en México?", + "en_question": "What side dish is the most commonly served on a dining table in your country?", + "annotations": [ + { + "answers": [ + "frijoles" + ], + "en_answers": [ + "beans" + ], + "count": 3 + }, + { + "answers": [ + "arroz" + ], + "en_answers": [ + "rice" + ], + "count": 3 + }, + { + "answers": [ + "espagueti", + "spaghuetti" + ], + "en_answers": [ + "spaghetti" + ], + "count": 1 + }, + { + "answers": [ + "ensalada" + ], + "en_answers": [ + "salad" + ], + "count": 1 + }, + { + "answers": [ + "arroz rojo" + ], + "en_answers": [ + "red rice" + ], + "count": 1 + }, + { + "answers": [ + "tortillas" + ], + "en_answers": [ + "tortillas" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-11": { + "question": "¿Qué comen las personas de México mientras ven un partido de fútbol?", + "en_question": "What do people from your country eat while watching a soccer game?", + "annotations": [ + { + "answers": [ + "papas fritas", + "papitas" + ], + "en_answers": [ + "crisps", + "chips", + "crisp" + ], + "count": 3 + }, + { + "answers": [ + "tacos" + ], + "en_answers": [ + "tacos" + ], + "count": 2 + }, + { + "answers": [ + "chicharrines" + ], + "en_answers": [ + "pork rinds" + ], + "count": 1 + }, + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + }, + { + "answers": [ + "carnita asada" + ], + "en_answers": [ + "grilled meat" + ], + "count": 1 + }, + { + "answers": [ + "botanas" + ], + "en_answers": [ + "snacks" + ], + "count": 1 + }, + { + "answers": [ + "cerveza" + ], + "en_answers": [ + "beer" + ], + "count": 1 + }, + { + "answers": [ + "totopos" + ], + "en_answers": [ + "tortilla chips" + ], + "count": 1 + }, + { + "answers": [ + "chicharron" + ], + "en_answers": [ + "pork rind" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-15": { + "question": "¿Cuál es el alimento nutritivo representativo en México?", + "en_question": "What is the representative nourishing food in your country?", + "annotations": [ + { + "answers": [ + "maíz" + ], + "en_answers": [ + "corn" + ], + "count": 2 + }, + { + "answers": [ + "aguacate" + ], + "en_answers": [ + "avocado" + ], + "count": 2 + }, + { + "answers": [ + "el frijol" + ], + "en_answers": [ + "beans" + ], + "count": 1 + }, + { + "answers": [ + "el amaranto" + ], + "en_answers": [ + "amaranth" + ], + "count": 1 + }, + { + "answers": [ + "el mole" + ], + "en_answers": [ + "mole" + ], + "count": 1 + }, + { + "answers": [ + "frijol" + ], + "en_answers": [ + "beans" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-16": { + "question": "¿Quién es el futbolista más famoso de México?", + "en_question": "Who is the most famous soccer player in your country?", + "annotations": [ + { + "answers": [ + "chicharito", + "javier hernández", + "javier hernandez" + ], + "en_answers": [ + "little pea", + "javier hernandez" + ], + "count": 4 + }, + { + "answers": [ + "hugo sanchez" + ], + "en_answers": [ + "hugo sanchez" + ], + "count": 2 + }, + { + "answers": [ + "ochoa" + ], + "en_answers": [ + "ochoa" + ], + "count": 1 + }, + { + "answers": [ + "cuauhtemoc blanco" + ], + "en_answers": [ + "cuauhtemoc blanco" + ], + "count": 1 + }, + { + "answers": [ + "luis garcía", + "luis garcia" + ], + "en_answers": [ + "luis garcia" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-17": { + "question": "¿Qué deportes disfrutan los estudiantes varones durante la hora del almuerzo en la escuela en México?", + "en_question": "What sports do male students enjoy during lunch time at school in your country?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 5 + }, + { + "answers": [ + "basquetbol" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-18": { + "question": "¿Cuál es el deporte más común en el que participan las niñas durante las clases de educación física en México?", + "en_question": "What is the most common sport girls participate in during physical education classes in your country?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 2 + }, + { + "answers": [ + "voleibol" + ], + "en_answers": [ + "volleyball" + ], + "count": 2 + }, + { + "answers": [ + "gimnasia" + ], + "en_answers": [ + "gymnastics" + ], + "count": 1 + }, + { + "answers": [ + "atletismo" + ], + "en_answers": [ + "athletics" + ], + "count": 1 + }, + { + "answers": [ + "basquetbol" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-19": { + "question": "¿Quién es el jugador de voleibol más popular en México?", + "en_question": "Who is the most popular volleyball player in your country?", + "annotations": [], + "idks": { + "idk": 5, + "not-applicable": 2, + "no-answer": 0 + } + }, + "Na-ko-20": { + "question": "¿Qué evento deportivo apoyan con más pasión las personas de México en las competiciones internacionales?", + "en_question": "What sports event do people from your country passionately support the most in international competitions?", + "annotations": [ + { + "answers": [ + "mundial de futbol" + ], + "en_answers": [ + "soccer world cup", + "football world cup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-22": { + "question": "¿Qué país se considera el mayor rival en partidos de fútbol para México?", + "en_question": "Which country is considered the biggest rival in soccer matches for your country?", + "annotations": [ + { + "answers": [ + "argentina" + ], + "en_answers": [ + "argentina" + ], + "count": 3 + }, + { + "answers": [ + "estados unidos", + "usa" + ], + "en_answers": [ + "united states of america" + ], + "count": 3 + }, + { + "answers": [ + "brasil", + "brazil" + ], + "en_answers": [ + "brazil" + ], + "count": 2 + }, + { + "answers": [ + "holanda" + ], + "en_answers": [ + "holland", + "the netherlands" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-23": { + "question": "¿A qué tipo de academias deportivas asisten más los niños en México?", + "en_question": "What type of sports academies do children attend the most in your country?", + "annotations": [ + { + "answers": [ + "fútbol", + "academias de futbol", + "futbol" + ], + "en_answers": [ + "soccer", + "football", + "soccer academies" + ], + "count": 4 + }, + { + "answers": [ + "natación" + ], + "en_answers": [ + "swimming" + ], + "count": 2 + }, + { + "answers": [ + "tae kwon do" + ], + "en_answers": [ + "tae kwon do" + ], + "count": 1 + }, + { + "answers": [ + "baloncesto" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "voleibol" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "academia de artes marciales" + ], + "en_answers": [ + "martial arts academy" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-24": { + "question": "¿Cuál es la comida más consumida en los estadios deportivos mientras se ven partidos en México?", + "en_question": "What is the most commonly eaten food in sports stadiums while watching games in your country?", + "annotations": [ + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 2 + }, + { + "answers": [ + "palomitas" + ], + "en_answers": [ + "popcorn" + ], + "count": 1 + }, + { + "answers": [ + "cemitas" + ], + "en_answers": [ + "traditional meat sandwich" + ], + "count": 1 + }, + { + "answers": [ + "cerveza" + ], + "en_answers": [ + "beer" + ], + "count": 1 + }, + { + "answers": [ + "papas", + "papitas", + "papas fritas" + ], + "en_answers": [ + "crisps", + "chips", + "potato chips" + ], + "count": 1 + }, + { + "answers": [ + "alitas de pollo" + ], + "en_answers": [ + "chicken wings" + ], + "count": 1 + }, + { + "answers": [ + "tacos" + ], + "en_answers": [ + "tacos" + ], + "count": 1 + }, + { + "answers": [ + "comida chatarra" + ], + "en_answers": [ + "junk food" + ], + "count": 1 + }, + { + "answers": [ + "hotdogs" + ], + "en_answers": [ + "hot dogs" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-25": { + "question": "¿Cuáles son los deportes típicos que se juegan en el día del deporte escolar en México?", + "en_question": "What are the typical sports played in your country's school sports day?", + "annotations": [ + { + "answers": [ + "futbol", + "fútbol", + "futbol soccer" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 5 + }, + { + "answers": [ + "basketball", + "basquetbol", + "bascketball" + ], + "en_answers": [ + "basketball" + ], + "count": 4 + }, + { + "answers": [ + "voleibol" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "fútbol americano", + "americano" + ], + "en_answers": [ + "football", + "american football" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-26": { + "question": "¿Cuáles son los deportes populares entre la población de mediana edad en México?", + "en_question": "What are the popular sports among the middle-aged population in your country?", + "annotations": [ + { + "answers": [ + "futbol", + "fútbol soccer", + "fútbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 4 + }, + { + "answers": [ + "beisbol" + ], + "en_answers": [ + "baseball" + ], + "count": 2 + }, + { + "answers": [ + "box", + "boxeo" + ], + "en_answers": [ + "boxing" + ], + "count": 1 + }, + { + "answers": [ + "basquetbol" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "futbol americano" + ], + "en_answers": [ + "football", + "american football" + ], + "count": 1 + }, + { + "answers": [ + "squash" + ], + "en_answers": [ + "squash" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-28": { + "question": "¿Quién es el deportista de deportes de invierno más popular en México?", + "en_question": "Who is the most popular winter sports player in your country?", + "annotations": [ + { + "answers": [ + "jonathan soto" + ], + "en_answers": [ + "jonathan soto" + ], + "count": 1 + }, + { + "answers": [ + "donovan carrillo" + ], + "en_answers": [ + "donovan carrillo" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "not-applicable": 2, + "no-answer": 1 + } + }, + "Na-ko-29": { + "question": "¿Quién es el nadador más famoso de México?", + "en_question": "Who is the most famous swimmer in your country?", + "annotations": [ + { + "answers": [ + "fernanda gonzáles", + "fernanda gonzales", + "fernanda gonzález" + ], + "en_answers": [ + "fernanda gonzáles", + "fernanda gonzález" + ], + "count": 2 + }, + { + "answers": [ + "ricardo vargas" + ], + "en_answers": [ + "ricardo vargas" + ], + "count": 1 + }, + { + "answers": [ + "miguel de lara" + ], + "en_answers": [ + "miguel de lara" + ], + "count": 1 + }, + { + "answers": [ + "andrea guevara" + ], + "en_answers": [ + "andrea guevara" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Na-ko-30": { + "question": "¿Cuál es el juego de e-sports más popular en México?", + "en_question": "What is the most popular e-sports game in your country?", + "annotations": [ + { + "answers": [ + "fifa" + ], + "en_answers": [ + "fifa" + ], + "count": 2 + }, + { + "answers": [ + "fortnite", + "fortine" + ], + "en_answers": [ + "fortnite" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-33": { + "question": "¿Qué comida simbólica comen las personas de México en el Año Nuevo (Lunar)?", + "en_question": "What symbolic food do people from your country eat on (Lunar) New Year?", + "annotations": [ + { + "answers": [ + "pavo" + ], + "en_answers": [ + "turkey" + ], + "count": 2 + }, + { + "answers": [ + "tamales" + ], + "en_answers": [ + "tamales" + ], + "count": 2 + }, + { + "answers": [ + "ensalada de manzana" + ], + "en_answers": [ + "apple salad" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 1, + "no-answer": 0 + } + }, + "Na-ko-37": { + "question": "¿Cuál es el destino turístico nacional más popular entre la gente de México?", + "en_question": "What is the most popular domestic vacation spot for people from your country?", + "annotations": [ + { + "answers": [ + "cancún", + "cancun" + ], + "en_answers": [ + "cancun" + ], + "count": 5 + }, + { + "answers": [ + "pirámides de teotihuacan", + "piramides de teotihuacan" + ], + "en_answers": [ + "pyramids of teotihuacan" + ], + "count": 1 + }, + { + "answers": [ + "acapulco" + ], + "en_answers": [ + "acapulco" + ], + "count": 1 + }, + { + "answers": [ + "ciudad de méxico", + "ciudad de mexico" + ], + "en_answers": [ + "mexico city" + ], + "count": 1 + }, + { + "answers": [ + "oaxaca" + ], + "en_answers": [ + "oaxaca" + ], + "count": 1 + }, + { + "answers": [ + "puerto vallarta" + ], + "en_answers": [ + "puerto vallarta" + ], + "count": 1 + }, + { + "answers": [ + "tulum" + ], + "en_answers": [ + "tulum" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-38": { + "question": "¿Cuál es el regalo de boda más común entre novios en México?", + "en_question": "What is the most common wedding gift between bride and groom in your country?", + "annotations": [ + { + "answers": [ + "vajillas" + ], + "en_answers": [ + "dinnerware set", + "dinner set" + ], + "count": 1 + }, + { + "answers": [ + "chocolates" + ], + "en_answers": [ + "chocolates" + ], + "count": 1 + }, + { + "answers": [ + "flores" + ], + "en_answers": [ + "flowers" + ], + "count": 1 + }, + { + "answers": [ + "alcohol" + ], + "en_answers": [ + "alcohol" + ], + "count": 1 + }, + { + "answers": [ + "electrodomésticos" + ], + "en_answers": [ + "appliances" + ], + "count": 1 + }, + { + "answers": [ + "viaje" + ], + "en_answers": [ + "trip" + ], + "count": 1 + }, + { + "answers": [ + "anillo" + ], + "en_answers": [ + "ring" + ], + "count": 1 + }, + { + "answers": [ + "reloj" + ], + "en_answers": [ + "watch" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-39": { + "question": "¿Qué se suele dar como gesto de felicitación al asistir a la boda de un amigo en México?", + "en_question": "What is typically given as a congratulatory gesture when attending a friend's wedding in your country?", + "annotations": [ + { + "answers": [ + "regalo", + "regalos", + "regalo de bodas" + ], + "en_answers": [ + "gift", + "gifts", + "wedding gift" + ], + "count": 3 + }, + { + "answers": [ + "alcohol" + ], + "en_answers": [ + "alcohol" + ], + "count": 1 + }, + { + "answers": [ + "electrodomésticos" + ], + "en_answers": [ + "appliances" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-40": { + "question": "¿Cuánto tiempo (en días) dura típicamente un funeral en México? (Proporcione solo números arábigos (por ejemplo, 12).)", + "en_question": "How long (in days) does a funeral typically last in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-41": { + "question": "¿Qué deberías preparar como ofrenda de condolencia al asistir a un funeral en México?", + "en_question": "What should you prepare as a condolence offering when attending a funeral in your country?", + "annotations": [ + { + "answers": [ + "corona de flores", + "una corona de flores" + ], + "en_answers": [ + "a flower wreath", + "a wreath of flowers" + ], + "count": 3 + }, + { + "answers": [ + "galletas" + ], + "en_answers": [ + "cookies", + "biscuits" + ], + "count": 2 + }, + { + "answers": [ + "un arreglo floral" + ], + "en_answers": [ + "a floral arrangement" + ], + "count": 1 + }, + { + "answers": [ + "botana" + ], + "en_answers": [ + "snacks" + ], + "count": 1 + }, + { + "answers": [ + "café" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + }, + { + "answers": [ + "pan" + ], + "en_answers": [ + "bread", + "pastries" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-42": { + "question": "¿Qué tipo de comida se ofrece comúnmente en las funerarias en México?", + "en_question": "What type of food is commonly provided at funeral parlors in your country?", + "annotations": [ + { + "answers": [ + "café", + "cafe" + ], + "en_answers": [ + "coffee" + ], + "count": 4 + }, + { + "answers": [ + "pan" + ], + "en_answers": [ + "pastries", + "sweet bread" + ], + "count": 3 + }, + { + "answers": [ + "galletas" + ], + "en_answers": [ + "cookies", + "biscuits" + ], + "count": 1 + }, + { + "answers": [ + "chilaquiles" + ], + "en_answers": [ + "chilaquiles" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-43": { + "question": "¿Qué hacen las personas en México en la mañana del Año Nuevo (Lunar)?", + "en_question": "What do people do in your country in the morning of the (Lunar) New Year?", + "annotations": [ + { + "answers": [ + "comer recalentado" + ], + "en_answers": [ + "eat the leftovers from the previous night" + ], + "count": 2 + }, + { + "answers": [ + "dormir" + ], + "en_answers": [ + "sleep" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "Na-ko-44": { + "question": "¿Cuándo es el día con la congestión de tráfico más severa a nivel nacional en México?", + "en_question": "When is the day with your country's most severe nationwide traffic congestion?", + "annotations": [ + { + "answers": [ + "lunes" + ], + "en_answers": [ + "monday" + ], + "count": 3 + }, + { + "answers": [ + "viernes" + ], + "en_answers": [ + "friday" + ], + "count": 2 + }, + { + "answers": [ + "jueves" + ], + "en_answers": [ + "thursday" + ], + "count": 1 + }, + { + "answers": [ + "miércoles" + ], + "en_answers": [ + "wednesday" + ], + "count": 1 + }, + { + "answers": [ + "navidad" + ], + "en_answers": [ + "christmas day" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-45": { + "question": "¿Cuál es el destino de luna de miel más popular en México?", + "en_question": "What is the most popular honeymoon destination in your country?", + "annotations": [ + { + "answers": [ + "cancún", + "cancun" + ], + "en_answers": [ + "cancun" + ], + "count": 5 + }, + { + "answers": [ + "acapulco" + ], + "en_answers": [ + "acapulco" + ], + "count": 1 + }, + { + "answers": [ + "florida" + ], + "en_answers": [ + "florida" + ], + "count": 1 + }, + { + "answers": [ + "los cabos" + ], + "en_answers": [ + "los cabos" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-05": { + "question": "¿Cuál es la fiesta nacional más importante en México?", + "en_question": "What is the most important national holiday in your country?", + "annotations": [ + { + "answers": [ + "día de la independencia", + "16 septiembre", + "independencia", + "dia de la independencia" + ], + "en_answers": [ + "independence day", + "september 16th" + ], + "count": 4 + }, + { + "answers": [ + "día de muertos", + "2 de noviembre" + ], + "en_answers": [ + "day of the dead", + "november 2nd" + ], + "count": 2 + }, + { + "answers": [ + "día de la madre" + ], + "en_answers": [ + "mother's day" + ], + "count": 1 + }, + { + "answers": [ + "natalicio de benito juarez" + ], + "en_answers": [ + "birthday of benito juarez" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-06": { + "question": "¿Qué comen las personas de México en Ramadán?", + "en_question": "What do people from your country eat in Ramadan?", + "annotations": [], + "idks": { + "not-applicable": 4, + "idk": 2, + "no-answer": 0 + } + }, + "Ne-ar-09": { + "question": "¿Qué comen las personas de México en Eid ul Fitr?", + "en_question": "What do people from your country eat in Eid ul Fitr?", + "annotations": [], + "idks": { + "not-applicable": 4, + "idk": 1, + "no-answer": 0 + } + }, + "Ne-ar-10": { + "question": "¿Qué comen las personas de México en Eid ul Adha?", + "en_question": "What do people from your country eat in Eid ul Adha?", + "annotations": [], + "idks": { + "not-applicable": 4, + "idk": 1, + "no-answer": 1 + } + }, + "Ne-ar-11": { + "question": "¿A dónde va la gente de México para celebrar el Año Nuevo?", + "en_question": "Where do people from your country go to celebrate New Year's Day?", + "annotations": [ + { + "answers": [ + "casa de familiares", + "casas familiares", + "celebran en casa con la familia" + ], + "en_answers": [ + "relatives' house", + "celebrate at home with the family" + ], + "count": 4 + }, + { + "answers": [ + "restaurantes" + ], + "en_answers": [ + "restaurants" + ], + "count": 1 + }, + { + "answers": [ + "al zócalo de su ciudad" + ], + "en_answers": [ + "to the main square of their city" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-14": { + "question": "¿Dónde se reúne una familia para las festividades de Eid en México?", + "en_question": "Where do a family gather for Eid festivities in your country?", + "annotations": [ + { + "answers": [ + "en casa de los abuelos" + ], + "en_answers": [ + "at the grandparents' house" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 0 + } + }, + "Ne-ar-16": { + "question": "¿Cuándo es el fin de semana en México (por ejemplo, lunes, martes)?", + "en_question": "When is the weekend in your country (e.g. Monday, Tuesday)?", + "annotations": [ + { + "answers": [ + "sabado y domingo" + ], + "en_answers": [ + "saturday and sunday" + ], + "count": 2 + }, + { + "answers": [ + "viernes" + ], + "en_answers": [ + "friday" + ], + "count": 2 + }, + { + "answers": [ + "sabado" + ], + "en_answers": [ + "saturday" + ], + "count": 2 + }, + { + "answers": [ + "domingo" + ], + "en_answers": [ + "sunday" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-17": { + "question": "¿A qué hora comienza la mayoría de la gente a trabajar en México? (Proporcionar en formato HH:MM, por ejemplo, 18:00, 09:00).", + "en_question": "At what time do most people start work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 4 + }, + { + "answers": [ + "07:00" + ], + "en_answers": [ + "07:00" + ], + "count": 2 + }, + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 2 + }, + { + "answers": [ + "06:00" + ], + "en_answers": [ + "06:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-18": { + "question": "¿A qué hora termina la mayoría de la gente de trabajar en México? (Proporcionar en formato HH:MM (por ejemplo, 18:00, 09:00).)", + "en_question": "At what time do most people finish work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "20:00" + ], + "en_answers": [ + "20:00" + ], + "count": 2 + }, + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 2 + }, + { + "answers": [ + "22:00" + ], + "en_answers": [ + "22:00" + ], + "count": 1 + }, + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 1 + }, + { + "answers": [ + "16:00" + ], + "en_answers": [ + "16:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-20": { + "question": "¿Qué se considera un empleo seguro en México?", + "en_question": "What is considered to be a secure job in your country?", + "annotations": [ + { + "answers": [ + "un empleo en el gobierno" + ], + "en_answers": [ + "a job in the government" + ], + "count": 1 + }, + { + "answers": [ + "un empleo que tenda equipo de protección", + "que tenga equipo de proteccion" + ], + "en_answers": [ + "an job offering protective gear" + ], + "count": 1 + }, + { + "answers": [ + "empleado en una compañía o empresa", + "compañía/empresa" + ], + "en_answers": [ + "a job in a company or business" + ], + "count": 1 + }, + { + "answers": [ + "profesor" + ], + "en_answers": [ + "teacher", + "academic", + "university professor" + ], + "count": 1 + }, + { + "answers": [ + "vendedor", + "vendedor/cajero" + ], + "en_answers": [ + "salesperson" + ], + "count": 1 + }, + { + "answers": [ + "cajero", + "vendedor/cajero" + ], + "en_answers": [ + "cashier" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-24": { + "question": "¿Cuál ciudad es el principal centro comercial en México?", + "en_question": "Which city is the primary commercial hub in your country?", + "annotations": [ + { + "answers": [ + "monterrey" + ], + "en_answers": [ + "monterrey" + ], + "count": 3 + }, + { + "answers": [ + "ciudad de méxico", + "ciudad de mexico", + "cd de méxico" + ], + "en_answers": [ + "mexico city" + ], + "count": 3 + }, + { + "answers": [ + "guadalajara" + ], + "en_answers": [ + "guadalajara" + ], + "count": 2 + }, + { + "answers": [ + "soriana" + ], + "en_answers": [ + "soriana" + ], + "count": 1 + }, + { + "answers": [ + "chedraui" + ], + "en_answers": [ + "chedraui" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-25": { + "question": "¿Cuál es la industria que mejor paga en México?", + "en_question": "What is the industry that pays the best in your country?", + "annotations": [ + { + "answers": [ + "construcción" + ], + "en_answers": [ + "construction" + ], + "count": 1 + }, + { + "answers": [ + "minera" + ], + "en_answers": [ + "mining" + ], + "count": 1 + }, + { + "answers": [ + "petrolera" + ], + "en_answers": [ + "oil company" + ], + "count": 1 + }, + { + "answers": [ + "financiera" + ], + "en_answers": [ + "financial" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-26": { + "question": "¿Cuál es la corporación pública más famosa de México?", + "en_question": "What is the most famous public corporation in your country?", + "annotations": [ + { + "answers": [ + "pemex" + ], + "en_answers": [ + "pemex (mexican petroleum)" + ], + "count": 2 + }, + { + "answers": [ + "cfe", + "la cfe" + ], + "en_answers": [ + "cfe (federal electricity commission)" + ], + "count": 2 + }, + { + "answers": [ + "transporte aereo" + ], + "en_answers": [ + "air transport" + ], + "count": 1 + }, + { + "answers": [ + "sat" + ], + "en_answers": [ + "sat (tax administration service)" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-31": { + "question": "¿Cuál es el platillo más famoso de México?", + "en_question": "What is the most famous dish in your country?", + "annotations": [ + { + "answers": [ + "tacos" + ], + "en_answers": [ + "tacos" + ], + "count": 4 + }, + { + "answers": [ + "mole" + ], + "en_answers": [ + "mole sauce" + ], + "count": 2 + }, + { + "answers": [ + "menudo", + "mondongo" + ], + "en_answers": [ + "tripe soup" + ], + "count": 2 + }, + { + "answers": [ + "enchiladas" + ], + "en_answers": [ + "enchiladas" + ], + "count": 1 + }, + { + "answers": [ + "quesadillas" + ], + "en_answers": [ + "quesadillas" + ], + "count": 1 + }, + { + "answers": [ + "pozole" + ], + "en_answers": [ + "traditional soup made of pork and corn" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-32": { + "question": "¿Qué suelen desayunar las personas en México?", + "en_question": "What do people usually have for breakfast in your country?", + "annotations": [ + { + "answers": [ + "chilaquiles" + ], + "en_answers": [ + "chilaquiles" + ], + "count": 4 + }, + { + "answers": [ + "huevo", + "huevos" + ], + "en_answers": [ + "egg", + "eggs" + ], + "count": 3 + }, + { + "answers": [ + "tamales" + ], + "en_answers": [ + "tamales" + ], + "count": 2 + }, + { + "answers": [ + "molletes" + ], + "en_answers": [ + "open-faced sandwiches with beans and cheese" + ], + "count": 2 + }, + { + "answers": [ + "memelas" + ], + "en_answers": [ + "thick tortillas topped with beans, cheese and salsa" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-33": { + "question": "¿A qué hora suelen almorzar las personas en México? (Proporcionar en formato HH:MM (por ejemplo, 18:00, 09:00).)", + "en_question": "When do people usually have lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "15:00" + ], + "en_answers": [ + "15:00" + ], + "count": 4 + }, + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 3 + }, + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 1 + }, + { + "answers": [ + "10:00" + ], + "en_answers": [ + "10:00" + ], + "count": 1 + }, + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-34": { + "question": "¿Qué es típicamente indispensable en las comidas en México?", + "en_question": "What is typically indispensable in meals in your country?", + "annotations": [ + { + "answers": [ + "tortillas", + "tortilla", + "tortila" + ], + "en_answers": [ + "tortillas", + "tortilla" + ], + "count": 4 + }, + { + "answers": [ + "el chile", + "picante" + ], + "en_answers": [ + "chilli pepper", + "chilli pepper" + ], + "count": 2 + }, + { + "answers": [ + "refresco" + ], + "en_answers": [ + "soda" + ], + "count": 1 + }, + { + "answers": [ + "salsa" + ], + "en_answers": [ + "hot sauce" + ], + "count": 1 + }, + { + "answers": [ + "queso" + ], + "en_answers": [ + "cheese" + ], + "count": 1 + }, + { + "answers": [ + "arroz" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "frijoles" + ], + "en_answers": [ + "beans" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-36": { + "question": "¿Cuál es una comida festiva típica en México?", + "en_question": "What is a typical festive meal in your country?", + "annotations": [ + { + "answers": [ + "pozole" + ], + "en_answers": [ + "pozole", + "traditional soup made of pork and corn" + ], + "count": 4 + }, + { + "answers": [ + "mole" + ], + "en_answers": [ + "mole sauce" + ], + "count": 1 + }, + { + "answers": [ + "mole de olla" + ], + "en_answers": [ + "pot mole", + "beef spicy stew" + ], + "count": 1 + }, + { + "answers": [ + "tamales" + ], + "en_answers": [ + "tamales" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-37": { + "question": "¿Qué fruta suelen ofrecer a los turistas/visitantes del extranjero en México?", + "en_question": "Which fruit do people usually offer tourists/visitors from abroad in your country?", + "annotations": [ + { + "answers": [ + "mango" + ], + "en_answers": [ + "mango" + ], + "count": 5 + }, + { + "answers": [ + "sandía" + ], + "en_answers": [ + "watermelon" + ], + "count": 2 + }, + { + "answers": [ + "granada" + ], + "en_answers": [ + "pomegranate" + ], + "count": 2 + }, + { + "answers": [ + "fresas" + ], + "en_answers": [ + "strawberries" + ], + "count": 1 + }, + { + "answers": [ + "naranja" + ], + "en_answers": [ + "orange" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-38": { + "question": "¿Qué comida suelen ofrecer como caridad las personas en México?", + "en_question": "Which food do people usually offer as charity in your country?", + "annotations": [ + { + "answers": [ + "tortas" + ], + "en_answers": [ + "sandwiches" + ], + "count": 2 + }, + { + "answers": [ + "comida enlatada" + ], + "en_answers": [ + "canned food" + ], + "count": 1 + }, + { + "answers": [ + "pan" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "arroz y frijoles" + ], + "en_answers": [ + "rice and beans" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-39": { + "question": "¿Cuál es la comida rápida más barata en México?", + "en_question": "What is the cheapest fast food in your country?", + "annotations": [ + { + "answers": [ + "tacos" + ], + "en_answers": [ + "tacos" + ], + "count": 3 + }, + { + "answers": [ + "hamburguesas", + "hamburguesa" + ], + "en_answers": [ + "burgers", + "burger" + ], + "count": 2 + }, + { + "answers": [ + "hot-dogs" + ], + "en_answers": [ + "hot dogs" + ], + "count": 1 + }, + { + "answers": [ + "esquite" + ], + "en_answers": [ + "esquite", + "boiled corn" + ], + "count": 1 + }, + { + "answers": [ + "chicharrón preparado" + ], + "en_answers": [ + "prepared pork rind" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-43": { + "question": "¿Qué suelen tomar las personas con té en México?", + "en_question": "What do people usually have with tea in your country?", + "annotations": [ + { + "answers": [ + "azúcar", + "azucar" + ], + "en_answers": [ + "sugar" + ], + "count": 2 + }, + { + "answers": [ + "leche" + ], + "en_answers": [ + "milk" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "Ne-ar-44": { + "question": "¿Qué acompaña la gente con el café en México?", + "en_question": "What do people have with coffee in your country?", + "annotations": [ + { + "answers": [ + "pan", + "pan de dulce", + "pan dulce" + ], + "en_answers": [ + "bread", + "pastries", + "sweet bread" + ], + "count": 5 + }, + { + "answers": [ + "galletas" + ], + "en_answers": [ + "cookies", + "biscuits" + ], + "count": 1 + }, + { + "answers": [ + "bolillo" + ], + "en_answers": [ + "bolillo", + "white bread roll" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-02": { + "question": "¿Cuál es la comida tradicional más popular en México?", + "en_question": "What is the most popular traditional food in your country?", + "annotations": [ + { + "answers": [ + "tacos" + ], + "en_answers": [ + "tacos" + ], + "count": 4 + }, + { + "answers": [ + "pozole" + ], + "en_answers": [ + "pozole", + "a traditional soup or stew made of pork and corn" + ], + "count": 3 + }, + { + "answers": [ + "quesadillas" + ], + "en_answers": [ + "quesadillas" + ], + "count": 3 + }, + { + "answers": [ + "mole" + ], + "en_answers": [ + "traditional sauce" + ], + "count": 2 + }, + { + "answers": [ + "enchiladas" + ], + "en_answers": [ + "enchiladas" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-04": { + "question": "¿Cuál es la salsa para untar más popular en México?", + "en_question": "What is the most popular dipping sauce in your country?", + "annotations": [ + { + "answers": [ + "mermelada fresa" + ], + "en_answers": [ + "strawberry jam" + ], + "count": 1 + }, + { + "answers": [ + "taquera", + "salsa taquera" + ], + "en_answers": [ + "taquera sauce" + ], + "count": 1 + }, + { + "answers": [ + "valentina", + "salsa valentina" + ], + "en_answers": [ + "valentina sauce" + ], + "count": 1 + }, + { + "answers": [ + "bufalo" + ], + "en_answers": [ + "buffalo sauce" + ], + "count": 1 + }, + { + "answers": [ + "la picosita" + ], + "en_answers": [ + "\"la picosita\" sauce" + ], + "count": 1 + }, + { + "answers": [ + "guacamole" + ], + "en_answers": [ + "guacamole" + ], + "count": 1 + }, + { + "answers": [ + "salsa de jalapeño" + ], + "en_answers": [ + "jalapeño sauce" + ], + "count": 1 + }, + { + "answers": [ + "salsa de jalapeño rojo" + ], + "en_answers": [ + "red jalapeño sauce" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-08": { + "question": "¿Cuál es la comida más consumida durante el ayuno cristiano en México?", + "en_question": "What food is most often consumed during Christian fasting in your country?", + "annotations": [ + { + "answers": [ + "pescado" + ], + "en_answers": [ + "fish" + ], + "count": 2 + }, + { + "answers": [ + "pepita molida" + ], + "en_answers": [ + "ground pumpkin seed sauce" + ], + "count": 1 + }, + { + "answers": [ + "huevo sancochado" + ], + "en_answers": [ + "boiled egg" + ], + "count": 1 + }, + { + "answers": [ + "tortilla" + ], + "en_answers": [ + "tortilla" + ], + "count": 1 + }, + { + "answers": [ + "atun" + ], + "en_answers": [ + "tuna" + ], + "count": 1 + }, + { + "answers": [ + "arroz" + ], + "en_answers": [ + "rice" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-am-15": { + "question": "¿Qué comida se prepara habitualmente cuando las madres dan a luz en México?", + "en_question": "What food is usually prepared when mothers give birth in your country?", + "annotations": [ + { + "answers": [ + "mole" + ], + "en_answers": [ + "mole sauce" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 3, + "no-answer": 1 + } + }, + "New-am-27": { + "question": "¿Quién es la deportista femenina más popular en México?", + "en_question": "Who is the most popular female sportperson in your country?", + "annotations": [ + { + "answers": [ + "ana gabriela guevara", + "ana guevara" + ], + "en_answers": [ + "ana gabriela guevara", + "ana guevara" + ], + "count": 4 + }, + { + "answers": [ + "soraya jiménez", + "soraya jimenez" + ], + "en_answers": [ + "soraya jiménez" + ], + "count": 2 + }, + { + "answers": [ + "paola espinosa" + ], + "en_answers": [ + "paola espinosa" + ], + "count": 1 + }, + { + "answers": [ + "maría del rosario" + ], + "en_answers": [ + "maría del rosario" + ], + "count": 1 + }, + { + "answers": [ + "lorena ochoa" + ], + "en_answers": [ + "lorena ochoa" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-34": { + "question": "¿Dónde se preparan la mayoría de los estudiantes de primaria para sus exámenes en México?", + "en_question": "Where do most elementary school students prepare for their exams in your country?", + "annotations": [ + { + "answers": [ + "en casa", + "estudio en casa", + "casa" + ], + "en_answers": [ + "at home" + ], + "count": 4 + }, + { + "answers": [ + "en el aula" + ], + "en_answers": [ + "in the classroom" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-am-41": { + "question": "¿En qué grado escolar los estudiantes en México presentan su primer examen a nivel nacional?", + "en_question": "In your country, at which grade level do students take their first national-level examination?", + "annotations": [ + { + "answers": [ + "3ro de secundaria", + "3", + "3 secundaria", + "tercero de secundaria", + "tercer año de secundaria" + ], + "en_answers": [ + "3rd grade of middle school", + "third grade of middle school" + ], + "count": 3 + }, + { + "answers": [ + "6to semestre preparatoria", + "6to año", + "12", + "sexto año", + "3ro de preparatoria" + ], + "en_answers": [ + "6th semester of high school", + "12th grade", + "third year of highschool", + "3rd year of high school", + "3rd grade of high school" + ], + "count": 2 + }, + { + "answers": [ + "secundaria" + ], + "en_answers": [ + "secondary school" + ], + "count": 1 + }, + { + "answers": [ + "6to primaria" + ], + "en_answers": [ + "6th grade in elementary school" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-53": { + "question": "¿Qué región de México es ampliamente conocida por su industria del café/té?", + "en_question": "Which region in your country is widely known for its coffee/tea industry?", + "annotations": [ + { + "answers": [ + "veracruz" + ], + "en_answers": [ + "veracruz" + ], + "count": 3 + }, + { + "answers": [ + "sureste" + ], + "en_answers": [ + "southeast" + ], + "count": 1 + }, + { + "answers": [ + "oaxaca" + ], + "en_answers": [ + "oaxaca" + ], + "count": 1 + }, + { + "answers": [ + "jalisco" + ], + "en_answers": [ + "jalisco" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-54": { + "question": "¿Qué región de México es ampliamente conocida por su industria ganadera?", + "en_question": "Which region in your country is widely known for its livestock industry?", + "annotations": [ + { + "answers": [ + "sonora" + ], + "en_answers": [ + "sonora" + ], + "count": 2 + }, + { + "answers": [ + "chihuahua" + ], + "en_answers": [ + "chihuahua" + ], + "count": 2 + }, + { + "answers": [ + "zona norte", + "norte" + ], + "en_answers": [ + "north zone", + "north" + ], + "count": 2 + }, + { + "answers": [ + "veracruz" + ], + "en_answers": [ + "veracruz" + ], + "count": 1 + }, + { + "answers": [ + "jalisco" + ], + "en_answers": [ + "jalisco" + ], + "count": 1 + }, + { + "answers": [ + "chiapas" + ], + "en_answers": [ + "chiapas" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-59": { + "question": "¿Cuál es la principal ocupación de las personas que viven en los desiertos de México?", + "en_question": "What is the main occupation of people living in deserts in your country?", + "annotations": [ + { + "answers": [ + "turismo" + ], + "en_answers": [ + "tourism" + ], + "count": 1 + }, + { + "answers": [ + "chofer" + ], + "en_answers": [ + "driver" + ], + "count": 1 + }, + { + "answers": [ + "mineria" + ], + "en_answers": [ + "mining" + ], + "count": 1 + }, + { + "answers": [ + "ventas" + ], + "en_answers": [ + "sales" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 1 + } + }, + "New-am-60": { + "question": "¿Qué animal se utiliza típicamente para el transporte en México?", + "en_question": "Which animal is typically used for transportation in your country?", + "annotations": [ + { + "answers": [ + "caballo" + ], + "en_answers": [ + "horse" + ], + "count": 3 + }, + { + "answers": [ + "burro" + ], + "en_answers": [ + "donkey" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-am-72": { + "question": "¿Cuál es el cómic más popular para niños en México?", + "en_question": "What is the most popular comic book for children to read in your country?", + "annotations": [ + { + "answers": [ + "marvel" + ], + "en_answers": [ + "marvel" + ], + "count": 2 + }, + { + "answers": [ + "archie", + "archi" + ], + "en_answers": [ + "archie comics" + ], + "count": 1 + }, + { + "answers": [ + "memín pinguín", + "memin pingüin" + ], + "en_answers": [ + "memín pinguín" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 1 + } + }, + "New-am-73": { + "question": "¿Cuál es el canal de YouTube más popular para niños en México?", + "en_question": "What is the most popular YouTube channel for children in your country?", + "annotations": [ + { + "answers": [ + "plim plim" + ], + "en_answers": [ + "plim plim" + ], + "count": 1 + }, + { + "answers": [ + "mrbeast", + "mr. beast" + ], + "en_answers": [ + "mrbeast" + ], + "count": 1 + }, + { + "answers": [ + "ibai llanos", + "ibaillanos" + ], + "en_answers": [ + "ibai llanos" + ], + "count": 1 + }, + { + "answers": [ + "nickelodeon" + ], + "en_answers": [ + "nickelodeon" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-am-74": { + "question": "¿Cuál es el programa de entrevistas más popular en México?", + "en_question": "What is the most popular talk show in your country?", + "annotations": [ + { + "answers": [ + "ventaneando" + ], + "en_answers": [ + "ventaneando" + ], + "count": 3 + }, + { + "answers": [ + "hoy" + ], + "en_answers": [ + "hoy" + ], + "count": 2 + }, + { + "answers": [ + "venga la alegría" + ], + "en_answers": [ + "venga la alegría" + ], + "count": 2 + }, + { + "answers": [ + "roberto martinez", + "roberto mtz" + ], + "en_answers": [ + "roberto martinez" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-77": { + "question": "¿Cuál es la festividad religiosa más famosa en México?", + "en_question": "What is the most famous religious holiday in your country?", + "annotations": [ + { + "answers": [ + "semana santa" + ], + "en_answers": [ + "easter" + ], + "count": 3 + }, + { + "answers": [ + "día de la virgen", + "la guadalupana", + "dia de la virgen de guadalupe" + ], + "en_answers": [ + "day of the virgin of guadalupe" + ], + "count": 3 + }, + { + "answers": [ + "san judas tadeo", + "día de san juditas", + "día de san judas tadeo" + ], + "en_answers": [ + "day of saint jude thaddeus" + ], + "count": 2 + }, + { + "answers": [ + "navidad" + ], + "en_answers": [ + "christmas" + ], + "count": 1 + }, + { + "answers": [ + "dia de reyes" + ], + "en_answers": [ + "three kings' day" + ], + "count": 1 + }, + { + "answers": [ + "día de los muertos" + ], + "en_answers": [ + "day of the dead" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-81": { + "question": "¿Cuál es el mes más ocupado para bodas en México? (Proporciona solo números arábigos (por ejemplo, 1).)", + "en_question": "What is the busiest month for weddings in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "11" + ], + "en_answers": [ + "11" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-83": { + "question": "¿Cuál es el instrumento musical tradicional más popular en México?", + "en_question": "What is the most popular traditional musical instrument in your country?", + "annotations": [ + { + "answers": [ + "guitarra", + "guitarra acústica" + ], + "en_answers": [ + "guitar", + "acoustic guitar" + ], + "count": 4 + }, + { + "answers": [ + "trompeta" + ], + "en_answers": [ + "trumpet" + ], + "count": 2 + }, + { + "answers": [ + "acordeón", + "acordeon" + ], + "en_answers": [ + "accordion" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-01": { + "question": "¿Cuál es el principal producto agrícola producido en México?", + "en_question": "What is the main agricultural product produced in your country?", + "annotations": [ + { + "answers": [ + "aguacate" + ], + "en_answers": [ + "avocado" + ], + "count": 3 + }, + { + "answers": [ + "maíz", + "maiz" + ], + "en_answers": [ + "corn" + ], + "count": 2 + }, + { + "answers": [ + "aceituna" + ], + "en_answers": [ + "olive" + ], + "count": 1 + }, + { + "answers": [ + "mango" + ], + "en_answers": [ + "mango" + ], + "count": 1 + }, + { + "answers": [ + "carne de ganado" + ], + "en_answers": [ + "beef", + "meat" + ], + "count": 1 + }, + { + "answers": [ + "naranja" + ], + "en_answers": [ + "orange" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-02": { + "question": "¿Cuál es el alimento a base de trigo más popular en México?", + "en_question": "What is the most popular wheat-based food item in your country?", + "annotations": [ + { + "answers": [ + "tortillas de harina", + "tortilla", + "tortillas", + "tortillinas" + ], + "en_answers": [ + "flour tortillas", + "tortillas", + "tortilla" + ], + "count": 3 + }, + { + "answers": [ + "pan" + ], + "en_answers": [ + "bread" + ], + "count": 2 + }, + { + "answers": [ + "cereal" + ], + "en_answers": [ + "cereal" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-05": { + "question": "¿Cuál es la bebida más típica que se ofrece a los invitados cuando visitan hogares en México?", + "en_question": "What is the most typical drink offered to guests when they visit households in your country?", + "annotations": [ + { + "answers": [ + "cerveza", + "agua natural", + "agua", + "agua simple" + ], + "en_answers": [ + "beer", + "water", + "still water" + ], + "count": 3 + }, + { + "answers": [ + "coca cola", + "coca" + ], + "en_answers": [ + "coca cola", + "coke" + ], + "count": 2 + }, + { + "answers": [ + "café", + "cafe" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + }, + { + "answers": [ + "refresco" + ], + "en_answers": [ + "soda" + ], + "count": 1 + }, + { + "answers": [ + "limonada", + "jamaica" + ], + "en_answers": [ + "lemonade", + "hibiscus drink" + ], + "count": 1 + }, + { + "answers": [ + "agua de sabor" + ], + "en_answers": [ + "squash", + "flavored water" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-07": { + "question": "¿Cuál es el platillo más popular preparado con pescado en México?", + "en_question": "What is the most popular dish cooked with fish in your country?", + "annotations": [ + { + "answers": [ + "ceviche" + ], + "en_answers": [ + "ceviche" + ], + "count": 2 + }, + { + "answers": [ + "filete de pescado", + "filete empanizado" + ], + "en_answers": [ + "fish fillet", + "breaded fillet" + ], + "count": 2 + }, + { + "answers": [ + "pan de cazón" + ], + "en_answers": [ + "fish turnovers" + ], + "count": 1 + }, + { + "answers": [ + "zarandeado", + "sarandiado", + "pescado zarandeado" + ], + "en_answers": [ + "grilled fish", + "zarandeado fish" + ], + "count": 1 + }, + { + "answers": [ + "mojo de ajo", + "pescado al mojo", + "pescado al mojo de ajo" + ], + "en_answers": [ + "fish with garlic sauce" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-14": { + "question": "¿Qué comida les gusta comer a las personas de México durante el clima lluvioso?", + "en_question": "What food do people from your country like to eat during rainy weather?", + "annotations": [ + { + "answers": [ + "pozole" + ], + "en_answers": [ + "pozole", + "a traditional soup or stew made of pork and corn" + ], + "count": 2 + }, + { + "answers": [ + "tacos" + ], + "en_answers": [ + "tacos" + ], + "count": 1 + }, + { + "answers": [ + "hamburguesas" + ], + "en_answers": [ + "burgers" + ], + "count": 1 + }, + { + "answers": [ + "pancita", + "mondongo", + "menudo" + ], + "en_answers": [ + "tripe soup" + ], + "count": 1 + }, + { + "answers": [ + "sopa de tortilla" + ], + "en_answers": [ + "tortilla soup" + ], + "count": 1 + }, + { + "answers": [ + "pan", + "pan dulce" + ], + "en_answers": [ + "bread", + "pastries" + ], + "count": 1 + }, + { + "answers": [ + "chocolate" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + }, + { + "answers": [ + "pan con cafe", + "pan dulce con cafe", + "café con pan" + ], + "en_answers": [ + "pastries with coffee", + "sweet bread with coffee" + ], + "count": 1 + }, + { + "answers": [ + "tamales" + ], + "en_answers": [ + "tamales" + ], + "count": 1 + }, + { + "answers": [ + "caldos" + ], + "en_answers": [ + "broths" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-as-15": { + "question": "¿Qué bebida se consume comúnmente en México cuando hace calor?", + "en_question": "What drink is commonly consumed in your country when the weather is hot?", + "annotations": [ + { + "answers": [ + "cerveza" + ], + "en_answers": [ + "beer" + ], + "count": 3 + }, + { + "answers": [ + "refresco" + ], + "en_answers": [ + "soda" + ], + "count": 2 + }, + { + "answers": [ + "coca cola", + "refresco coca cola" + ], + "en_answers": [ + "coca cola" + ], + "count": 2 + }, + { + "answers": [ + "jugos", + "agua de jamaica" + ], + "en_answers": [ + "juices", + "hibiscus water" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-20": { + "question": "¿Cuál es el deporte de interior más popular en México?", + "en_question": "What is the most popular indoor sport in your country?", + "annotations": [ + { + "answers": [ + "basquetbal", + "basketball", + "basquetbol" + ], + "en_answers": [ + "basketball" + ], + "count": 3 + }, + { + "answers": [ + "natación", + "natacion" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + }, + { + "answers": [ + "box", + "boxeo" + ], + "en_answers": [ + "boxing" + ], + "count": 1 + }, + { + "answers": [ + "futbol de interior", + "futbol de salón", + "futbol rápido" + ], + "en_answers": [ + "indoor soccer" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-29": { + "question": "¿Qué deporte les gusta ver a los hombres en México?", + "en_question": "What sport do men in your country like to watch?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 5 + }, + { + "answers": [ + "box", + "boxeo" + ], + "en_answers": [ + "boxing" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-30": { + "question": "¿Qué deporte les gusta ver a las mujeres en México?", + "en_question": "What sport do women in your country like to watch?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 4 + }, + { + "answers": [ + "futbol americano" + ], + "en_answers": [ + "american football", + "football" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-58": { + "question": "¿Cuál es la bebida más popular que a la gente de México le gusta tomar en su lugar de trabajo?", + "en_question": "What is the most popular beverage that people from your country like to drink in their workplace?", + "annotations": [ + { + "answers": [ + "coca cola" + ], + "en_answers": [ + "coca cola" + ], + "count": 3 + }, + { + "answers": [ + "café", + "cafe" + ], + "en_answers": [ + "coffee" + ], + "count": 3 + }, + { + "answers": [ + "agua" + ], + "en_answers": [ + "water" + ], + "count": 1 + }, + { + "answers": [ + "refresco" + ], + "en_answers": [ + "soda" + ], + "count": 1 + }, + { + "answers": [ + "aguas de sabor" + ], + "en_answers": [ + "flavored water" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-64": { + "question": "¿En qué festividad suelen reunirse todos los miembros de la familia en México?", + "en_question": "On which holiday do all family members tend to reunite in your country?", + "annotations": [ + { + "answers": [ + "navidad" + ], + "en_answers": [ + "christmas" + ], + "count": 5 + }, + { + "answers": [ + "año nuevo" + ], + "en_answers": [ + "new year" + ], + "count": 3 + }, + { + "answers": [ + "16 de septiembre", + "día de la independencia" + ], + "en_answers": [ + "september 16th" + ], + "count": 1 + }, + { + "answers": [ + "cumpleaños" + ], + "en_answers": [ + "birthday" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-76": { + "question": "¿Qué juegos tradicionales juegan las familias durante las festividades tradicionales en México?", + "en_question": "What traditional games do families play during traditional holidays in your country?", + "annotations": [ + { + "answers": [ + "loteria", + "lotería" + ], + "en_answers": [ + "traditional mexican bingo" + ], + "count": 3 + }, + { + "answers": [ + "baraja" + ], + "en_answers": [ + "cards" + ], + "count": 1 + }, + { + "answers": [ + "domino" + ], + "en_answers": [ + "domino" + ], + "count": 1 + }, + { + "answers": [ + "romper la piñata" + ], + "en_answers": [ + "break the piñata" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-as-80": { + "question": "¿Qué tipo de ropa usan las personas de México durante los festivales tradicionales?", + "en_question": "What type of clothing do people from your country wear during traditional festivals?", + "annotations": [ + { + "answers": [ + "trajes típicos", + "trajes tipicos", + "vestidos tradicionales" + ], + "en_answers": [ + "traditional dresses", + "traditional costumes" + ], + "count": 3 + }, + { + "answers": [ + "vestidos" + ], + "en_answers": [ + "dresses" + ], + "count": 2 + }, + { + "answers": [ + "poncho" + ], + "en_answers": [ + "poncho" + ], + "count": 1 + }, + { + "answers": [ + "sombrero" + ], + "en_answers": [ + "hat" + ], + "count": 1 + }, + { + "answers": [ + "guayaberas" + ], + "en_answers": [ + "traditional mexican shirts" + ], + "count": 1 + }, + { + "answers": [ + "botas" + ], + "en_answers": [ + "boots" + ], + "count": 1 + }, + { + "answers": [ + "casual", + "ropa casual" + ], + "en_answers": [ + "casual clothing" + ], + "count": 1 + }, + { + "answers": [ + "camisa y pantalon" + ], + "en_answers": [ + "shirt and trousers" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-89": { + "question": "¿Qué accesorios tradicionales de festivales usan las personas en México?", + "en_question": "What traditional festival accessories do people from your country wear?", + "annotations": [ + { + "answers": [ + "poncho" + ], + "en_answers": [ + "poncho" + ], + "count": 1 + }, + { + "answers": [ + "sombrero" + ], + "en_answers": [ + "hat" + ], + "count": 1 + }, + { + "answers": [ + "pulseras" + ], + "en_answers": [ + "bracelets" + ], + "count": 1 + }, + { + "answers": [ + "sombrero charro" + ], + "en_answers": [ + "charro hat" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-05": { + "question": "¿Cuál es la región más famosa para la producción de alcohol en México?", + "en_question": "What is the most famous region for alcohol production in your country?", + "annotations": [ + { + "answers": [ + "tequila" + ], + "en_answers": [ + "tequila" + ], + "count": 3 + }, + { + "answers": [ + "jalisco" + ], + "en_answers": [ + "jalisco" + ], + "count": 3 + }, + { + "answers": [ + "oaxaca" + ], + "en_answers": [ + "oaxaca" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-11": { + "question": "¿Qué fruta comen a menudo las personas de México en la temporada de verano?", + "en_question": "What fruit do people from your country often eat in the summer season?", + "annotations": [ + { + "answers": [ + "mango" + ], + "en_answers": [ + "mango" + ], + "count": 4 + }, + { + "answers": [ + "naranja" + ], + "en_answers": [ + "orange" + ], + "count": 1 + }, + { + "answers": [ + "sandia" + ], + "en_answers": [ + "watermelon" + ], + "count": 1 + }, + { + "answers": [ + "manzana" + ], + "en_answers": [ + "apple" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-az-12": { + "question": "¿Qué región de México es conocida por sus mariscos?", + "en_question": "Which region in your country is known for its seafood?", + "annotations": [ + { + "answers": [ + "sinaloa" + ], + "en_answers": [ + "sinaloa" + ], + "count": 2 + }, + { + "answers": [ + "veracruz" + ], + "en_answers": [ + "veracruz" + ], + "count": 2 + }, + { + "answers": [ + "mazatlán", + "mazatlan" + ], + "en_answers": [ + "mazatlán" + ], + "count": 1 + }, + { + "answers": [ + "noroeste" + ], + "en_answers": [ + "northwest" + ], + "count": 1 + }, + { + "answers": [ + "yucatán" + ], + "en_answers": [ + "yucatán" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-21": { + "question": "¿Cuál es la región más popular para esquiar en México?", + "en_question": "Which region in your country is the most popular skiing destination?", + "annotations": [ + { + "answers": [ + "chihuaha", + "chihuahua" + ], + "en_answers": [ + "chihuaha", + "chihuahua" + ], + "count": 2 + }, + { + "answers": [ + "arteaga" + ], + "en_answers": [ + "arteaga" + ], + "count": 1 + }, + { + "answers": [ + "coahuila" + ], + "en_answers": [ + "coahuila" + ], + "count": 1 + }, + { + "answers": [ + "nevado de toluca" + ], + "en_answers": [ + "nevado de toluca" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 1, + "no-answer": 0 + } + }, + "New-az-26": { + "question": "¿Quién es el luchador de artes marciales más popular en México?", + "en_question": "Who is the most popular martial arts player in your country?", + "annotations": [ + { + "answers": [ + "canelo alvarez", + "canelo", + "\"el canelo\" alvarez" + ], + "en_answers": [ + "\"canelo\" alvarez", + "canelo" + ], + "count": 3 + }, + { + "answers": [ + "rey misterio" + ], + "en_answers": [ + "rey misterio" + ], + "count": 1 + }, + { + "answers": [ + "el santo", + "el enmascarado de plata" + ], + "en_answers": [ + "el santo" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-27": { + "question": "¿Cuál deporte ha sido uno de los de más rápido crecimiento en México durante la última década?", + "en_question": "Which sport has been one of the fastest-growing in your country over the last decade?", + "annotations": [ + { + "answers": [ + "futbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 2 + }, + { + "answers": [ + "pádel", + "padel" + ], + "en_answers": [ + "padel" + ], + "count": 1 + }, + { + "answers": [ + "basquetbol" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "box", + "boxeo" + ], + "en_answers": [ + "boxing" + ], + "count": 1 + }, + { + "answers": [ + "fútbol femenil" + ], + "en_answers": [ + "women's soccer", + "women's football" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-39": { + "question": "¿Cuál es el país de destino más popular para los estudiantes de México que estudian en el extranjero?", + "en_question": "Which country is the most popular destination for students from your country studying abroad?", + "annotations": [ + { + "answers": [ + "estados unidos" + ], + "en_answers": [ + "united states" + ], + "count": 3 + }, + { + "answers": [ + "francia" + ], + "en_answers": [ + "france" + ], + "count": 1 + }, + { + "answers": [ + "japón", + "japon" + ], + "en_answers": [ + "japan" + ], + "count": 1 + }, + { + "answers": [ + "canadá" + ], + "en_answers": [ + "canada" + ], + "count": 1 + }, + { + "answers": [ + "españa" + ], + "en_answers": [ + "spain" + ], + "count": 1 + }, + { + "answers": [ + "cancún", + "cancun" + ], + "en_answers": [ + "cancun" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-49": { + "question": "¿Cuántas personas trabajan en una familia típica en México? (Proporcione solo números arábigos (por ejemplo, 1).)", + "en_question": "How many people work in a typical family in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 4 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-60": { + "question": "¿En México, quién se encarga de los niños cuando ambos padres están trabajando?", + "en_question": "In your country, who takes care of kids when both parents are working?", + "annotations": [ + { + "answers": [ + "abuelos" + ], + "en_answers": [ + "grandparents" + ], + "count": 4 + }, + { + "answers": [ + "niñera", + "nana" + ], + "en_answers": [ + "babysitter" + ], + "count": 2 + }, + { + "answers": [ + "guarderia" + ], + "en_answers": [ + "daycare" + ], + "count": 1 + }, + { + "answers": [ + "abuela" + ], + "en_answers": [ + "grandmother" + ], + "count": 1 + }, + { + "answers": [ + "tia" + ], + "en_answers": [ + "aunt" + ], + "count": 1 + }, + { + "answers": [ + "prima" + ], + "en_answers": [ + "cousin" + ], + "count": 1 + }, + { + "answers": [ + "tios" + ], + "en_answers": [ + "uncles", + "aunts and uncles" + ], + "count": 1 + }, + { + "answers": [ + "hermanos" + ], + "en_answers": [ + "siblings" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-69": { + "question": "¿Cuál es la bebida alcohólica preferida por los hombres de México?", + "en_question": "What is the preferred alcoholic beverage for men from your country?", + "annotations": [ + { + "answers": [ + "cerveza" + ], + "en_answers": [ + "beer" + ], + "count": 4 + }, + { + "answers": [ + "tequila" + ], + "en_answers": [ + "tequila" + ], + "count": 2 + }, + { + "answers": [ + "mezcal" + ], + "en_answers": [ + "mezcal" + ], + "count": 2 + }, + { + "answers": [ + "coca cola" + ], + "en_answers": [ + "coca cola" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-70": { + "question": "¿Cuál es la bebida alcohólica preferida por las mujeres de México?", + "en_question": "What is the preferred alcoholic beverage for women from your country?", + "annotations": [ + { + "answers": [ + "cerveza" + ], + "en_answers": [ + "beer" + ], + "count": 2 + }, + { + "answers": [ + "tequila" + ], + "en_answers": [ + "tequila" + ], + "count": 2 + }, + { + "answers": [ + "cerveza preparada" + ], + "en_answers": [ + "beer cocktails" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-73": { + "question": "¿Cuántas personas en promedio suelen asistir a una boda en México? (Proporciona solo números arábigos (por ejemplo, 1).)", + "en_question": "How many people on average typically attend a wedding in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "200" + ], + "en_answers": [ + "200" + ], + "count": 3 + }, + { + "answers": [ + "100" + ], + "en_answers": [ + "100" + ], + "count": 3 + }, + { + "answers": [ + "50" + ], + "en_answers": [ + "50" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-01": { + "question": "¿Qué tipo de carne suelen comer las personas cuando hacen carne asada en México?", + "en_question": "What kind of meat do people usually eat when they have barbecue in your country?", + "annotations": [ + { + "answers": [ + "res", + "cortes", + "sirloin", + "bisteces" + ], + "en_answers": [ + "beef", + "beef steaks", + "top sirloin" + ], + "count": 4 + }, + { + "answers": [ + "puerco", + "cerdo" + ], + "en_answers": [ + "pork" + ], + "count": 1 + }, + { + "answers": [ + "pescado" + ], + "en_answers": [ + "fish" + ], + "count": 1 + }, + { + "answers": [ + "chuletas" + ], + "en_answers": [ + "pork chops", + "chops" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-02": { + "question": "¿A qué hora suelen desayunar las personas en México? (Proporcionar en formato HH:MM (por ejemplo, 18:00, 09:00).)", + "en_question": "When do people usually have breakfast in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 5 + }, + { + "answers": [ + "05:00" + ], + "en_answers": [ + "05:00" + ], + "count": 1 + }, + { + "answers": [ + "07:00" + ], + "en_answers": [ + "07:00" + ], + "count": 1 + }, + { + "answers": [ + "10:00" + ], + "en_answers": [ + "10:00" + ], + "count": 1 + }, + { + "answers": [ + "06:00" + ], + "en_answers": [ + "06:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-04": { + "question": "¿Qué tipos de comida suelen comer las personas en México como bocadillos nocturnos?", + "en_question": "What kinds of food do people usually eat for late-night snacks in your country?", + "annotations": [ + { + "answers": [ + "tacos" + ], + "en_answers": [ + "tacos" + ], + "count": 2 + }, + { + "answers": [ + "hamburguesa", + "hamburguesas" + ], + "en_answers": [ + "burger", + "burgers" + ], + "count": 2 + }, + { + "answers": [ + "hot dog" + ], + "en_answers": [ + "hot dog" + ], + "count": 1 + }, + { + "answers": [ + "tortas" + ], + "en_answers": [ + "sandwiches" + ], + "count": 1 + }, + { + "answers": [ + "pozole" + ], + "en_answers": [ + "a traditional soup or stew made of pork and corn" + ], + "count": 1 + }, + { + "answers": [ + "quesadillas" + ], + "en_answers": [ + "quesadillas" + ], + "count": 1 + }, + { + "answers": [ + "pan dulce" + ], + "en_answers": [ + "sweet bread", + "pastries" + ], + "count": 1 + }, + { + "answers": [ + "papitas", + "papas fritas" + ], + "en_answers": [ + "chips", + "crisps", + "potato chips" + ], + "count": 1 + }, + { + "answers": [ + "platanos con crema" + ], + "en_answers": [ + "bananas with cream" + ], + "count": 1 + }, + { + "answers": [ + "elotes" + ], + "en_answers": [ + "corn on the cob" + ], + "count": 1 + }, + { + "answers": [ + "chicharrones preparados" + ], + "en_answers": [ + "prepared pork rinds" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-05": { + "question": "¿Cuál es el platillo picante más famoso de México?", + "en_question": "What is the most famous spicy dish in your country?", + "annotations": [ + { + "answers": [ + "mole" + ], + "en_answers": [ + "traditional mole sauce" + ], + "count": 2 + }, + { + "answers": [ + "guisado con chile serrano" + ], + "en_answers": [ + "stew with serrano pepper" + ], + "count": 1 + }, + { + "answers": [ + "enchiladas" + ], + "en_answers": [ + "enchiladas" + ], + "count": 1 + }, + { + "answers": [ + "huevo en salsa" + ], + "en_answers": [ + "egg in sauce" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-07": { + "question": "¿Qué alimentos suelen acompañar las personas con bebidas alcohólicas fuertes en México?", + "en_question": "What food items do people typically pair with hard liquor in your country?", + "annotations": [ + { + "answers": [ + "tacos" + ], + "en_answers": [ + "tacos" + ], + "count": 2 + }, + { + "answers": [ + "carne" + ], + "en_answers": [ + "meat" + ], + "count": 2 + }, + { + "answers": [ + "botana como cacahuates" + ], + "en_answers": [ + "peanuts" + ], + "count": 1 + }, + { + "answers": [ + "botanas" + ], + "en_answers": [ + "snacks" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "New-ch-08": { + "question": "¿Qué condimento esencial es indispensable en la cocina en México?", + "en_question": "What seasoning is indispensable in cooking in your country?", + "annotations": [ + { + "answers": [ + "chile" + ], + "en_answers": [ + "chili pepper" + ], + "count": 2 + }, + { + "answers": [ + "sal" + ], + "en_answers": [ + "salt" + ], + "count": 2 + }, + { + "answers": [ + "pimienta" + ], + "en_answers": [ + "pepper" + ], + "count": 2 + }, + { + "answers": [ + "orégano" + ], + "en_answers": [ + "oregano" + ], + "count": 1 + }, + { + "answers": [ + "salsa" + ], + "en_answers": [ + "hot sauce" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-09": { + "question": "¿Qué comida consumen típicamente las personas cuando el clima está frío en México?", + "en_question": "What food do people typically consume when the weather is cold in your country?", + "annotations": [ + { + "answers": [ + "pan dulce", + "pan" + ], + "en_answers": [ + "sweet bread", + "pastries", + "bread" + ], + "count": 3 + }, + { + "answers": [ + "caldo de pollo" + ], + "en_answers": [ + "chicken broth" + ], + "count": 1 + }, + { + "answers": [ + "caldo de res" + ], + "en_answers": [ + "beef soup" + ], + "count": 1 + }, + { + "answers": [ + "consomé de barbacoa" + ], + "en_answers": [ + "barbecue broth" + ], + "count": 1 + }, + { + "answers": [ + "tamal" + ], + "en_answers": [ + "tamal" + ], + "count": 1 + }, + { + "answers": [ + "caldo" + ], + "en_answers": [ + "broth" + ], + "count": 1 + }, + { + "answers": [ + "chocolate caliente" + ], + "en_answers": [ + "hot chocolate" + ], + "count": 1 + }, + { + "answers": [ + "arroz con leche" + ], + "en_answers": [ + "rice pudding" + ], + "count": 1 + }, + { + "answers": [ + "atole" + ], + "en_answers": [ + "a traditional hot mexican beverage made from cornmeal and water or milk" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-13": { + "question": "¿Cuál es la marca de alcohol más famosa en México?", + "en_question": "What is the most famous alcohol brand in your country?", + "annotations": [ + { + "answers": [ + "corona" + ], + "en_answers": [ + "corona" + ], + "count": 2 + }, + { + "answers": [ + "tecate" + ], + "en_answers": [ + "tecate" + ], + "count": 2 + }, + { + "answers": [ + "modelo" + ], + "en_answers": [ + "modelo" + ], + "count": 2 + }, + { + "answers": [ + "indio" + ], + "en_answers": [ + "indio" + ], + "count": 1 + }, + { + "answers": [ + "victoria" + ], + "en_answers": [ + "victoria" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-14": { + "question": "¿Qué alimentos suelen comer las personas cuando están enfermas en México?", + "en_question": "What foods do people usually eat when they are sick in your country?", + "annotations": [ + { + "answers": [ + "caldo de pollo" + ], + "en_answers": [ + "chicken broth" + ], + "count": 3 + }, + { + "answers": [ + "sopas", + "sopa" + ], + "en_answers": [ + "soups", + "soup" + ], + "count": 2 + }, + { + "answers": [ + "pastas" + ], + "en_answers": [ + "pasta" + ], + "count": 1 + }, + { + "answers": [ + "gelatinas" + ], + "en_answers": [ + "jellies" + ], + "count": 1 + }, + { + "answers": [ + "sopa de verduras" + ], + "en_answers": [ + "vegetable soup" + ], + "count": 1 + }, + { + "answers": [ + "saladitas" + ], + "en_answers": [ + "saltine crackers" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-15": { + "question": "¿Qué alimentos preparados/listos para comer suelen comprar las personas en los supermercados de México?", + "en_question": "What prepared/ready-to-eat food do people typically buy at supermarkets in your country?", + "annotations": [ + { + "answers": [ + "pizzas", + "pizza" + ], + "en_answers": [ + "pizzas", + "pizza" + ], + "count": 3 + }, + { + "answers": [ + "tacos" + ], + "en_answers": [ + "tacos" + ], + "count": 2 + }, + { + "answers": [ + "guisados", + "guisos" + ], + "en_answers": [ + "stews" + ], + "count": 2 + }, + { + "answers": [ + "pollo rostizado", + "pasta" + ], + "en_answers": [ + "roast chicken", + "pasta" + ], + "count": 2 + }, + { + "answers": [ + "alitas", + "puré de papa" + ], + "en_answers": [ + "wings", + "mashed potatoes" + ], + "count": 2 + }, + { + "answers": [ + "tamales" + ], + "en_answers": [ + "tamales" + ], + "count": 1 + }, + { + "answers": [ + "hamburguesa" + ], + "en_answers": [ + "burger" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-16": { + "question": "¿Cuál es la película relacionada con el deporte más famosa en México?", + "en_question": "What is the most famous sports-related movie in your country?", + "annotations": [ + { + "answers": [ + "rocky" + ], + "en_answers": [ + "rocky" + ], + "count": 1 + }, + { + "answers": [ + "¡goool!" + ], + "en_answers": [ + "¡goool!" + ], + "count": 1 + }, + { + "answers": [ + "el mundial 86" + ], + "en_answers": [ + "el mundial 86" + ], + "count": 1 + }, + { + "answers": [ + "los reyes del futbol" + ], + "en_answers": [ + "los reyes del futbol" + ], + "count": 1 + }, + { + "answers": [ + "el chanfle" + ], + "en_answers": [ + "el chanfle" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-17": { + "question": "¿Qué deporte extremo desean intentar más las personas en general en México?", + "en_question": "What extreme sport do people generally wish to try the most in your country?", + "annotations": [ + { + "answers": [ + "salto en bungee", + "bungee" + ], + "en_answers": [ + "bungee jumping" + ], + "count": 2 + }, + { + "answers": [ + "paracaidismo" + ], + "en_answers": [ + "skydiving" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ch-18": { + "question": "¿Cuál es la prueba de atletismo más popular para ver durante las competiciones en México?", + "en_question": "Which track and field event is the most popular to watch during competitions in your country?", + "annotations": [ + { + "answers": [ + "carrera de 100m", + "100 mts", + "carrera de 100m planos", + "100 metros" + ], + "en_answers": [ + "100-meter dash", + "100 meters" + ], + "count": 2 + }, + { + "answers": [ + "salto de altura" + ], + "en_answers": [ + "high jump" + ], + "count": 1 + }, + { + "answers": [ + "maraton" + ], + "en_answers": [ + "marathon" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ch-19": { + "question": "¿Cuál es el evento de gimnasia más popular para ver durante las competencias en México?", + "en_question": "Which gymnastics event is the most popular to watch during competitions in your country?", + "annotations": [ + { + "answers": [ + "olimpiadas", + "juegos olimpicos" + ], + "en_answers": [ + "the olympics", + "olympic games" + ], + "count": 2 + }, + { + "answers": [ + "juegos panamericanos" + ], + "en_answers": [ + "pan american games" + ], + "count": 1 + }, + { + "answers": [ + "torneos nacionales", + "nacionales" + ], + "en_answers": [ + "national tournaments" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-ch-23": { + "question": "¿Quién es el jugador de tenis de mesa más famoso en México?", + "en_question": "Who is the most famous table tennis player in your country?", + "annotations": [ + { + "answers": [ + "marcos madrid", + "madrid" + ], + "en_answers": [ + "marcos madrid", + "madrid" + ], + "count": 2 + }, + { + "answers": [ + "santiago gonzález" + ], + "en_answers": [ + "santiago gonzález" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 1, + "no-answer": 0 + } + }, + "New-ch-26": { + "question": "En los Juegos Olímpicos de Invierno, ¿cuál es el evento más popular para ver en México?", + "en_question": "In the Winter Olympics, which event is the most popular to watch in your country?", + "annotations": [ + { + "answers": [ + "patinaje artistico", + "patinaje sobre hielo" + ], + "en_answers": [ + "figure skating", + "ice skating" + ], + "count": 4 + }, + { + "answers": [ + "snowboard" + ], + "en_answers": [ + "snowboard" + ], + "count": 1 + }, + { + "answers": [ + "esquí" + ], + "en_answers": [ + "skiing" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-ch-27": { + "question": "¿Quién es el boxeador más famoso de México?", + "en_question": "Who is the most famous boxer in your country?", + "annotations": [ + { + "answers": [ + "canelo alvarez" + ], + "en_answers": [ + "\"canelo\" alvarez" + ], + "count": 3 + }, + { + "answers": [ + "julio césar chavez", + "julio cesar chavez", + "julio césar chávez" + ], + "en_answers": [ + "julio césar chavez" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-30": { + "question": "¿Quién es el atleta de pista y campo más famoso en México?", + "en_question": "Who is the most famous track and field athlete in your country?", + "annotations": [ + { + "answers": [ + "ana gabriela guevara", + "ana guevara" + ], + "en_answers": [ + "ana gabriela guevara" + ], + "count": 2 + }, + { + "answers": [ + "hugo sánchez" + ], + "en_answers": [ + "hugo sánchez" + ], + "count": 1 + }, + { + "answers": [ + "rafa márquez", + "rafael márquez" + ], + "en_answers": [ + "rafa márquez" + ], + "count": 1 + }, + { + "answers": [ + "el chicharito", + "el chícharo", + "\"el chicharito\" hernández", + "javier hernández balcázar", + "javier hernández" + ], + "en_answers": [ + "el chicharito" + ], + "count": 1 + }, + { + "answers": [ + "bernardo segura" + ], + "en_answers": [ + "bernardo segura" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-ch-31": { + "question": "¿Qué profesión esperan los padres que sus hijos persigan más en México?", + "en_question": "What job do parents most hope their children will pursue in your country?", + "annotations": [ + { + "answers": [ + "médico", + "medicina", + "medico" + ], + "en_answers": [ + "medical doctor", + "doctor", + "medicine" + ], + "count": 5 + }, + { + "answers": [ + "abogado", + "derecho" + ], + "en_answers": [ + "lawyer", + "law" + ], + "count": 3 + }, + { + "answers": [ + "ingeniero", + "ingenieria" + ], + "en_answers": [ + "engineer", + "engineering" + ], + "count": 2 + }, + { + "answers": [ + "contaduría" + ], + "en_answers": [ + "accounting" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-32": { + "question": "¿Qué software de oficina suelen utilizar las personas en el lugar de trabajo en México?", + "en_question": "What office software do people typically use in the workplace in your country?", + "annotations": [ + { + "answers": [ + "office", + "ms office" + ], + "en_answers": [ + "office", + "ms office", + "microsoft office" + ], + "count": 3 + }, + { + "answers": [ + "office word" + ], + "en_answers": [ + "ms word", + "microsoft word" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-38": { + "question": "¿Qué ciudades o regiones son conocidas por sus actividades de importación y exportación en México?", + "en_question": "Which cities or regions are known for their import and export activities in your country?", + "annotations": [ + { + "answers": [ + "monterrey" + ], + "en_answers": [ + "monterrey" + ], + "count": 2 + }, + { + "answers": [ + "veracruz" + ], + "en_answers": [ + "veracruz" + ], + "count": 2 + }, + { + "answers": [ + "ciudad de méxico" + ], + "en_answers": [ + "mexico city" + ], + "count": 1 + }, + { + "answers": [ + "cancún" + ], + "en_answers": [ + "cancún" + ], + "count": 1 + }, + { + "answers": [ + "puertos" + ], + "en_answers": [ + "ports", + "harbours" + ], + "count": 1 + }, + { + "answers": [ + "torreón", + "torreon" + ], + "en_answers": [ + "torreon" + ], + "count": 1 + }, + { + "answers": [ + "norte" + ], + "en_answers": [ + "north" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-39": { + "question": "¿Qué plataforma se utiliza comúnmente en la industria del comercio electrónico en México?", + "en_question": "What platform is commonly used in the e-commerce industry in your country?", + "annotations": [ + { + "answers": [ + "amazon" + ], + "en_answers": [ + "amazon" + ], + "count": 5 + }, + { + "answers": [ + "mercado libre" + ], + "en_answers": [ + "mercado libre" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-44": { + "question": "¿Cuál es el período de prueba típico para los nuevos empleados antes de firmar un contrato formal en México? (por ejemplo, 1 mes).", + "en_question": "How long is the typical probation period for new employees before signing a formal contract in your country? (e.g., 1 month).", + "annotations": [ + { + "answers": [ + "3 meses" + ], + "en_answers": [ + "3 months" + ], + "count": 4 + }, + { + "answers": [ + "6 meses" + ], + "en_answers": [ + "6 months" + ], + "count": 2 + }, + { + "answers": [ + "1 mes" + ], + "en_answers": [ + "1 month" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-45": { + "question": "¿Qué industrias suelen elegir los jóvenes para iniciar negocios en México?", + "en_question": "Which industries do young people typically choose to start businesses in your country?", + "annotations": [ + { + "answers": [ + "alimentaria", + "comida" + ], + "en_answers": [ + "food industry", + "food industry", + "food" + ], + "count": 2 + }, + { + "answers": [ + "agrícola", + "agricola" + ], + "en_answers": [ + "agricultural" + ], + "count": 1 + }, + { + "answers": [ + "tiendas virtuales" + ], + "en_answers": [ + "virtual stores" + ], + "count": 1 + }, + { + "answers": [ + "retail" + ], + "en_answers": [ + "retail" + ], + "count": 1 + }, + { + "answers": [ + "ropa" + ], + "en_answers": [ + "clothing industry", + "apparel" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ch-49": { + "question": "¿Cuál es la forma más común en que los miembros de la familia se comunican a distancia en México?", + "en_question": "What is the most common way for family members to communicate remotely in your country?", + "annotations": [ + { + "answers": [ + "celular", + "telefono celular" + ], + "en_answers": [ + "cell phone", + "mobile phone" + ], + "count": 3 + }, + { + "answers": [ + "llamada telefónica", + "teléfono fijo", + "llamada" + ], + "en_answers": [ + "phone call", + "landline phone" + ], + "count": 3 + }, + { + "answers": [ + "whatsapp" + ], + "en_answers": [ + "whatsapp" + ], + "count": 2 + }, + { + "answers": [ + "facebook" + ], + "en_answers": [ + "facebook" + ], + "count": 1 + }, + { + "answers": [ + "mensajeria" + ], + "en_answers": [ + "messaging" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-51": { + "question": "¿Qué tipo de alojamiento se reserva habitualmente para viajes familiares en México?", + "en_question": "What form of accommodation is typically booked for family trips in your country?", + "annotations": [ + { + "answers": [ + "hoteles", + "hotel" + ], + "en_answers": [ + "hotels", + "hotel" + ], + "count": 4 + }, + { + "answers": [ + "airbnb", + "airnb", + "air b n b" + ], + "en_answers": [ + "airbnb" + ], + "count": 2 + }, + { + "answers": [ + "rentas de casas", + "casa de renta" + ], + "en_answers": [ + "rental house" + ], + "count": 2 + }, + { + "answers": [ + "departamento" + ], + "en_answers": [ + "apartment", + "flat" + ], + "count": 1 + }, + { + "answers": [ + "casa de algun familiar" + ], + "en_answers": [ + "the house of a relative" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-54": { + "question": "¿Qué fruta se suele preparar más para las cenas familiares en México?", + "en_question": "Which fruit is usually prepared the most for family dinners in your country?", + "annotations": [ + { + "answers": [ + "plátano" + ], + "en_answers": [ + "banana" + ], + "count": 2 + }, + { + "answers": [ + "mango" + ], + "en_answers": [ + "mango" + ], + "count": 2 + }, + { + "answers": [ + "manzana", + "manzanas" + ], + "en_answers": [ + "apple", + "apples" + ], + "count": 2 + }, + { + "answers": [ + "piña" + ], + "en_answers": [ + "pineapple" + ], + "count": 1 + }, + { + "answers": [ + "sandía" + ], + "en_answers": [ + "watermelon" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-ch-64": { + "question": "¿Cuántas horas de clases suelen tener los estudiantes universitarios por semana en México? (Proporciona solo números arábigos (por ejemplo, 1).)", + "en_question": "How many hours of classes do university students typically have per week in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 2 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-66": { + "question": "¿Cuál es la cuota de inscripción típica por semestre para las preparatorias públicas en México? (Proporciona solo números arábigos (por ejemplo, 1).)", + "en_question": "What is the typical tuition fee per semester for public high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "2000" + ], + "en_answers": [ + "2000" + ], + "count": 2 + }, + { + "answers": [ + "1500" + ], + "en_answers": [ + "1500" + ], + "count": 1 + }, + { + "answers": [ + "500" + ], + "en_answers": [ + "500" + ], + "count": 1 + }, + { + "answers": [ + "1000" + ], + "en_answers": [ + "1000" + ], + "count": 1 + }, + { + "answers": [ + "200" + ], + "en_answers": [ + "200" + ], + "count": 1 + }, + { + "answers": [ + "3500" + ], + "en_answers": [ + "3500" + ], + "count": 1 + }, + { + "answers": [ + "4000" + ], + "en_answers": [ + "4000" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-70": { + "question": "¿Qué cursos obligatorios tienen en común los estudiantes universitarios en México?", + "en_question": "What compulsory courses do university students have in common in your country?", + "annotations": [ + { + "answers": [ + "cívica y ética", + "etica" + ], + "en_answers": [ + "civics and ethics", + "ethics" + ], + "count": 2 + }, + { + "answers": [ + "matemáticas", + "matematicas" + ], + "en_answers": [ + "mathematics" + ], + "count": 2 + }, + { + "answers": [ + "estadística" + ], + "en_answers": [ + "statistics" + ], + "count": 1 + }, + { + "answers": [ + "deportes" + ], + "en_answers": [ + "sports" + ], + "count": 1 + }, + { + "answers": [ + "desarrollo de habilidades comunicativas" + ], + "en_answers": [ + "communication skills" + ], + "count": 1 + }, + { + "answers": [ + "español" + ], + "en_answers": [ + "spanish" + ], + "count": 1 + }, + { + "answers": [ + "biología" + ], + "en_answers": [ + "biology" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ch-71": { + "question": "¿Cuál es el tamaño promedio de las clases en las preparatorias en México? (Proporcione únicamente números arábigos (por ejemplo, 1).)", + "en_question": "What is the average class size in high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "1.6" + ], + "en_answers": [ + "1.6" + ], + "count": 1 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + } + ], + "idks": { + "No entiendo a qué se refiere la pregunta, si horas, alumnos, cantidad": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-72": { + "question": "¿Qué carrera se considera más conducente al empleo en México?", + "en_question": "Which major is considered most conducive to employment in your country?", + "annotations": [ + { + "answers": [ + "ingeniería", + "ingenieros", + "ingenieria" + ], + "en_answers": [ + "engineering" + ], + "count": 4 + }, + { + "answers": [ + "enfermería", + "enfermeras" + ], + "en_answers": [ + "nursing" + ], + "count": 1 + }, + { + "answers": [ + "arquitectura", + "arquitectos" + ], + "en_answers": [ + "architecture" + ], + "count": 1 + }, + { + "answers": [ + "administración" + ], + "en_answers": [ + "administration" + ], + "count": 1 + }, + { + "answers": [ + "medicina" + ], + "en_answers": [ + "medicine" + ], + "count": 1 + }, + { + "answers": [ + "derecho" + ], + "en_answers": [ + "law" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-73": { + "question": "¿Qué tipo de clubes son los más populares entre los estudiantes universitarios en México?", + "en_question": "What type of clubs are most popular among university students in your country?", + "annotations": [ + { + "answers": [ + "ajedrez" + ], + "en_answers": [ + "chess clubs" + ], + "count": 2 + }, + { + "answers": [ + "deportivos", + "deportes", + "clubes deportivos" + ], + "en_answers": [ + "sport clubs" + ], + "count": 2 + }, + { + "answers": [ + "cocina", + "clubes de cocina" + ], + "en_answers": [ + "cooking clubs" + ], + "count": 1 + }, + { + "answers": [ + "música" + ], + "en_answers": [ + "music clubs", + "music" + ], + "count": 1 + }, + { + "answers": [ + "nocturnos", + "de futbol" + ], + "en_answers": [ + "night clubs", + "soccer clubs", + "football clubs" + ], + "count": 1 + }, + { + "answers": [ + "artes escénicas", + "artes escenicas" + ], + "en_answers": [ + "performing arts" + ], + "count": 1 + }, + { + "answers": [ + "lectura" + ], + "en_answers": [ + "reading clubs" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-74": { + "question": "¿En que tipos de alojamiento viven principalmente los estudiantes universitarios en México?", + "en_question": "What types of accommodation do university students in your country typically live in?", + "annotations": [ + { + "answers": [ + "apartamento", + "departamentos" + ], + "en_answers": [ + "apartment", + "flat" + ], + "count": 2 + }, + { + "answers": [ + "en casa de sus padres" + ], + "en_answers": [ + "at their parent's home" + ], + "count": 1 + }, + { + "answers": [ + "fraccionamientos" + ], + "en_answers": [ + "housing developments" + ], + "count": 1 + }, + { + "answers": [ + "residencias universitarias" + ], + "en_answers": [ + "university residences" + ], + "count": 1 + }, + { + "answers": [ + "sus domicilios", + "viven en sus domicilios no hay universidades que cuenten con dormitorios" + ], + "en_answers": [ + "home", + "house" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-75": { + "question": "¿Cuánto dura cada período de clase para los estudiantes de secundaria en México (minutos)? (Proporcione solo números arábigos (por ejemplo, 1).)", + "en_question": "How long is each class period for middle school students in your country (minutes)? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "50" + ], + "en_answers": [ + "50" + ], + "count": 3 + }, + { + "answers": [ + "120" + ], + "en_answers": [ + "120" + ], + "count": 1 + }, + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 1 + }, + { + "answers": [ + "360" + ], + "en_answers": [ + "360" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-78": { + "question": "¿Qué actividades de ocio suelen gustarle a las mujeres jubiladas en México?", + "en_question": "What leisure activities do retired women typically like in your country?", + "annotations": [ + { + "answers": [ + "casino" + ], + "en_answers": [ + "casino" + ], + "count": 1 + }, + { + "answers": [ + "pintura" + ], + "en_answers": [ + "painting" + ], + "count": 1 + }, + { + "answers": [ + "lectura" + ], + "en_answers": [ + "reading" + ], + "count": 1 + }, + { + "answers": [ + "spinning" + ], + "en_answers": [ + "indoor cycling", + "fitness cycling", + "spinning" + ], + "count": 1 + }, + { + "answers": [ + "videojuegos" + ], + "en_answers": [ + "video games" + ], + "count": 1 + }, + { + "answers": [ + "bingo" + ], + "en_answers": [ + "bingo" + ], + "count": 1 + }, + { + "answers": [ + "jugar cartas" + ], + "en_answers": [ + "play cards" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-79": { + "question": "¿Qué actividades de ocio suelen gustarles a los hombres jubilados en México?", + "en_question": "What leisure activities do retired men typically like in your country?", + "annotations": [ + { + "answers": [ + "bricolage", + "arreglar o construir cosas" + ], + "en_answers": [ + "diy", + "decoration", + "fix or build things" + ], + "count": 2 + }, + { + "answers": [ + "jardinería" + ], + "en_answers": [ + "gardening" + ], + "count": 1 + }, + { + "answers": [ + "pintar" + ], + "en_answers": [ + "painting" + ], + "count": 1 + }, + { + "answers": [ + "tomar con amigos" + ], + "en_answers": [ + "drink with friends" + ], + "count": 1 + }, + { + "answers": [ + "caminar" + ], + "en_answers": [ + "walking" + ], + "count": 1 + }, + { + "answers": [ + "viajar" + ], + "en_answers": [ + "traveling" + ], + "count": 1 + }, + { + "answers": [ + "futbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 1 + }, + { + "answers": [ + "carpinteria" + ], + "en_answers": [ + "carpentry" + ], + "count": 1 + }, + { + "answers": [ + "bicicleta" + ], + "en_answers": [ + "cycling" + ], + "count": 1 + }, + { + "answers": [ + "bailar" + ], + "en_answers": [ + "dancing" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-80": { + "question": "¿Durante qué festividades la gente suele visitar lugares religiosos (templos, iglesias, etc.) en México?", + "en_question": "During which holidays do people typically visit religious sites (temples, churches, etc.) in your country?", + "annotations": [ + { + "answers": [ + "navidad" + ], + "en_answers": [ + "christmas" + ], + "count": 4 + }, + { + "answers": [ + "año nuevo" + ], + "en_answers": [ + "new year" + ], + "count": 2 + }, + { + "answers": [ + "pascua", + "semana santa" + ], + "en_answers": [ + "easter" + ], + "count": 2 + }, + { + "answers": [ + "12 de diciembre", + "día de la virgen de guadalupe" + ], + "en_answers": [ + "december 12th" + ], + "count": 1 + }, + { + "answers": [ + "día de muertos" + ], + "en_answers": [ + "day of the dead" + ], + "count": 1 + }, + { + "answers": [ + "corpus christi" + ], + "en_answers": [ + "corpus christi" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-81": { + "question": "¿Cuáles son los regalos típicos para una inauguración de casa en México?", + "en_question": "What are the typical housewarming gifts in your country?", + "annotations": [ + { + "answers": [ + "electrodomésticos" + ], + "en_answers": [ + "appliances" + ], + "count": 2 + }, + { + "answers": [ + "platos y cubiertos", + "vajilla" + ], + "en_answers": [ + "dishes and cutlery", + "dinnerware", + "dishware", + "dinner set" + ], + "count": 2 + }, + { + "answers": [ + "una planta" + ], + "en_answers": [ + "a plant" + ], + "count": 1 + }, + { + "answers": [ + "comida" + ], + "en_answers": [ + "food" + ], + "count": 1 + }, + { + "answers": [ + "dinero" + ], + "en_answers": [ + "money" + ], + "count": 1 + }, + { + "answers": [ + "vino" + ], + "en_answers": [ + "wine" + ], + "count": 1 + }, + { + "answers": [ + "cristaleria" + ], + "en_answers": [ + "glassware" + ], + "count": 1 + }, + { + "answers": [ + "flores" + ], + "en_answers": [ + "flowers" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-82": { + "question": "¿A qué hora suelen comenzar las bodas típicamente en México? (Proporcionar en formato HH:MM (por ejemplo, 18:00, 09:00).)", + "en_question": "At what time do weddings typically start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 2 + }, + { + "answers": [ + "20:00" + ], + "en_answers": [ + "20:00" + ], + "count": 2 + }, + { + "answers": [ + "14:00", + "02:00" + ], + "en_answers": [ + "14:00" + ], + "count": 1 + }, + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 1 + }, + { + "answers": [ + "16:00" + ], + "en_answers": [ + "16:00" + ], + "count": 1 + }, + { + "answers": [ + "19:00" + ], + "en_answers": [ + "19:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-83": { + "question": "¿Qué ciudad de México es la que más festivales alberga?", + "en_question": "Which city in your country hosts festivals the most?", + "annotations": [ + { + "answers": [ + "ciudad de méxico", + "cdmx" + ], + "en_answers": [ + "mexico city" + ], + "count": 3 + }, + { + "answers": [ + "monterrey" + ], + "en_answers": [ + "monterrey" + ], + "count": 1 + }, + { + "answers": [ + "guadalajara" + ], + "en_answers": [ + "guadalajara" + ], + "count": 1 + }, + { + "answers": [ + "oaxaca" + ], + "en_answers": [ + "oaxaca" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-84": { + "question": "¿Qué color de ropa suelen llevar las personas cuando asisten a bodas en México?", + "en_question": "What color of clothing do people typically wear when attending weddings in your country?", + "annotations": [ + { + "answers": [ + "azul" + ], + "en_answers": [ + "blue" + ], + "count": 4 + }, + { + "answers": [ + "negro" + ], + "en_answers": [ + "black" + ], + "count": 2 + }, + { + "answers": [ + "blanca" + ], + "en_answers": [ + "white" + ], + "count": 1 + }, + { + "answers": [ + "colores pasteles" + ], + "en_answers": [ + "pastel colors" + ], + "count": 1 + }, + { + "answers": [ + "beige" + ], + "en_answers": [ + "beige" + ], + "count": 1 + }, + { + "answers": [ + "rojo" + ], + "en_answers": [ + "red" + ], + "count": 1 + }, + { + "answers": [ + "verde" + ], + "en_answers": [ + "green" + ], + "count": 1 + }, + { + "answers": [ + "dorado" + ], + "en_answers": [ + "golden" + ], + "count": 1 + }, + { + "answers": [ + "rosa" + ], + "en_answers": [ + "pink" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-85": { + "question": "¿Qué color de ropa suelen llevar las personas cuando asisten a funerales en México?", + "en_question": "What color of clothing do people typically wear when attending funerals in your country?", + "annotations": [ + { + "answers": [ + "negro", + "negra", + "blanca y negra" + ], + "en_answers": [ + "black" + ], + "count": 5 + }, + { + "answers": [ + "gris" + ], + "en_answers": [ + "gray" + ], + "count": 1 + }, + { + "answers": [ + "blanco", + "blanca y negra" + ], + "en_answers": [ + "white" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-01": { + "question": "¿Qué botana se come en el cine en México?", + "en_question": "Which snack is eaten in the cinema in your country?", + "annotations": [ + { + "answers": [ + "palomitas" + ], + "en_answers": [ + "popcorn" + ], + "count": 4 + }, + { + "answers": [ + "nachos" + ], + "en_answers": [ + "nachos" + ], + "count": 4 + }, + { + "answers": [ + "hot dogs" + ], + "en_answers": [ + "hot dogs" + ], + "count": 3 + }, + { + "answers": [ + "palomitas de mantequilla" + ], + "en_answers": [ + "butter flavoured popcorn" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-02": { + "question": "¿Cuál es el sabor de papas fritas más popular en México?", + "en_question": "What is the most popular chip/crisp flavour in your country?", + "annotations": [ + { + "answers": [ + "flaming hot", + "flamin hot", + "flamming hot" + ], + "en_answers": [ + "flaming hot" + ], + "count": 3 + }, + { + "answers": [ + "adobadas" + ], + "en_answers": [ + "spicy" + ], + "count": 2 + }, + { + "answers": [ + "queso" + ], + "en_answers": [ + "cheese" + ], + "count": 2 + }, + { + "answers": [ + "limón" + ], + "en_answers": [ + "lemon" + ], + "count": 1 + }, + { + "answers": [ + "chile y limón" + ], + "en_answers": [ + "chili and lime" + ], + "count": 1 + }, + { + "answers": [ + "chile" + ], + "en_answers": [ + "chili pepper" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-04": { + "question": "¿Quién es un chef celebridad popular en México?", + "en_question": "Who is a popular celebrity chef in your country?", + "annotations": [ + { + "answers": [ + "enrique olivera", + "enrique olvera" + ], + "en_answers": [ + "enrique olivera", + "enrique olvera" + ], + "count": 2 + }, + { + "answers": [ + "mariano sandoval" + ], + "en_answers": [ + "mariano sandoval" + ], + "count": 1 + }, + { + "answers": [ + "chef herrera" + ], + "en_answers": [ + "chef herrera" + ], + "count": 1 + }, + { + "answers": [ + "chef oropeza" + ], + "en_answers": [ + "chef oropeza" + ], + "count": 1 + }, + { + "answers": [ + "jose ramon castillo" + ], + "en_answers": [ + "jose ramon castillo" + ], + "count": 1 + }, + { + "answers": [ + "monica patiño" + ], + "en_answers": [ + "monica patiño" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-05": { + "question": "¿Qué comida es una opción rápida y económica para comer en México?", + "en_question": "Which food is a cost-effective and quick meal option in your country?", + "annotations": [ + { + "answers": [ + "tacos" + ], + "en_answers": [ + "tacos" + ], + "count": 4 + }, + { + "answers": [ + "tortas", + "sandwich" + ], + "en_answers": [ + "sandwiches", + "sandwich" + ], + "count": 2 + }, + { + "answers": [ + "chilaquiles" + ], + "en_answers": [ + "chilaquiles" + ], + "count": 1 + }, + { + "answers": [ + "discada" + ], + "en_answers": [ + "mixed grilled meats" + ], + "count": 1 + }, + { + "answers": [ + "cemitas", + "cemitas poblanas" + ], + "en_answers": [ + "traditional meat sandwich" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-07": { + "question": "¿Cuáles son los programas de cocina más populares en México?", + "en_question": "What are the most popular cooking shows in your country?", + "annotations": [ + { + "answers": [ + "masterchef", + "master chef" + ], + "en_answers": [ + "masterchef" + ], + "count": 3 + }, + { + "answers": [ + "el sabor de mexico" + ], + "en_answers": [ + "the flavor of mexico" + ], + "count": 1 + }, + { + "answers": [ + "kiwi limon" + ], + "en_answers": [ + "kiwi lemon" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-08": { + "question": "¿Cuál es la marca de chocolate más popular en México?", + "en_question": "What is the most popular chocolate brand in your country?", + "annotations": [ + { + "answers": [ + "abuelita" + ], + "en_answers": [ + "abuelita" + ], + "count": 3 + }, + { + "answers": [ + "hershey's" + ], + "en_answers": [ + "hershey's" + ], + "count": 1 + }, + { + "answers": [ + "nesquik" + ], + "en_answers": [ + "nesquik" + ], + "count": 1 + }, + { + "answers": [ + "carlos v" + ], + "en_answers": [ + "carlos v" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-10": { + "question": "¿Cuál es el queso más consumido en México?", + "en_question": "What is the most eaten cheese in your country?", + "annotations": [ + { + "answers": [ + "oaxaca", + "queso oaxaca", + "oaxaca (de hebra)" + ], + "en_answers": [ + "oaxaca cheese" + ], + "count": 4 + }, + { + "answers": [ + "fresco" + ], + "en_answers": [ + "fresh cheese" + ], + "count": 1 + }, + { + "answers": [ + "panela" + ], + "en_answers": [ + "panela cheese" + ], + "count": 1 + }, + { + "answers": [ + "manchego" + ], + "en_answers": [ + "manchego cheese" + ], + "count": 1 + }, + { + "answers": [ + "queso chihuahua" + ], + "en_answers": [ + "chihuahua cheese" + ], + "count": 1 + }, + { + "answers": [ + "queso amarillo" + ], + "en_answers": [ + "american cheese" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-11": { + "question": "¿Cuál es la verdura menos gustada en México?", + "en_question": "What is the most disliked vegetable in your country?", + "annotations": [ + { + "answers": [ + "chayote" + ], + "en_answers": [ + "chayote" + ], + "count": 3 + }, + { + "answers": [ + "cebolla" + ], + "en_answers": [ + "onion" + ], + "count": 1 + }, + { + "answers": [ + "calabaza", + "calabacita", + "calabacín" + ], + "en_answers": [ + "courgette", + "zuccini" + ], + "count": 1 + }, + { + "answers": [ + "brócoli", + "brocoli" + ], + "en_answers": [ + "brocoli" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-12": { + "question": "¿Qué comida se encuentra más comúnmente en las plazas de comida en México?", + "en_question": "What food is most commonly found in food courts in your country?", + "annotations": [ + { + "answers": [ + "tacos" + ], + "en_answers": [ + "tacos" + ], + "count": 4 + }, + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 2 + }, + { + "answers": [ + "hamburguesas" + ], + "en_answers": [ + "burgers" + ], + "count": 2 + }, + { + "answers": [ + "quesadilla" + ], + "en_answers": [ + "quesadilla" + ], + "count": 1 + }, + { + "answers": [ + "papas" + ], + "en_answers": [ + "crisps", + "chips", + "potato chips" + ], + "count": 1 + }, + { + "answers": [ + "elotes" + ], + "en_answers": [ + "corn on the cob" + ], + "count": 1 + }, + { + "answers": [ + "marquesitas" + ], + "en_answers": [ + "crispy crepes" + ], + "count": 1 + }, + { + "answers": [ + "pollo frito" + ], + "en_answers": [ + "fried chicken" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-17": { + "question": "¿Cuáles son los instrumentos de animación más comunes utilizados por los aficionados al deporte en México?", + "en_question": "What are the most common cheering tools used by sports fans in your country?", + "annotations": [ + { + "answers": [ + "cornetas", + "trompeta", + "corneta" + ], + "en_answers": [ + "horns", + "trumpet", + "horn" + ], + "count": 3 + }, + { + "answers": [ + "matracas", + "matraca" + ], + "en_answers": [ + "ratchet" + ], + "count": 2 + }, + { + "answers": [ + "banderines y banderas" + ], + "en_answers": [ + "small flags and flags" + ], + "count": 1 + }, + { + "answers": [ + "silbato" + ], + "en_answers": [ + "whistle" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-18": { + "question": "¿Qué llevan los aficionados consigo cuando asisten a un partido en vivo en México?", + "en_question": "What do fans bring with them when attending a live game in your country?", + "annotations": [ + { + "answers": [ + "playera del equipo", + "camisa de su equipo", + "camisetas de su equipo" + ], + "en_answers": [ + "their team shirt", + "team jerseys" + ], + "count": 3 + }, + { + "answers": [ + "matraca", + "pelucas", + "matracas" + ], + "en_answers": [ + "ratchet", + "wigs" + ], + "count": 2 + }, + { + "answers": [ + "la playera de la selección" + ], + "en_answers": [ + "the national team's jersey" + ], + "count": 1 + }, + { + "answers": [ + "bandera" + ], + "en_answers": [ + "flag" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-19": { + "question": "¿Cuál es el estadio deportivo más conocido en México?", + "en_question": "What is the most well known sporting stadium in your country?", + "annotations": [ + { + "answers": [ + "estadio azteca", + "el azteca", + "coloso de santa úrsula", + "estadio guillermo cañedo" + ], + "en_answers": [ + "aztec stadium" + ], + "count": 5 + }, + { + "answers": [ + "estadio jalisco" + ], + "en_answers": [ + "jalisco stadium" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-23": { + "question": "¿Quién es el paralímpico más famoso de México?", + "en_question": "Who is the most famous Paralympian in your country?", + "annotations": [ + { + "answers": [ + "fabiola ramirez" + ], + "en_answers": [ + "fabiola ramirez" + ], + "count": 1 + }, + { + "answers": [ + "amalia pérez" + ], + "en_answers": [ + "amalia pérez" + ], + "count": 1 + }, + { + "answers": [ + "juana soto" + ], + "en_answers": [ + "juana soto" + ], + "count": 1 + } + ], + "idks": { + "idk": 5, + "no-answer": 2, + "not-applicable": 0 + } + }, + "New-en-26": { + "question": "¿Cuál es el cántico deportivo más reconocido en México?", + "en_question": "What is the best recognized sporting chant in your country?", + "annotations": [ + { + "answers": [ + "cielito lindo" + ], + "en_answers": [ + "cielito lindo" + ], + "count": 1 + }, + { + "answers": [ + "cantico del america" + ], + "en_answers": [ + "america's chant" + ], + "count": 1 + }, + { + "answers": [ + "himno de las chivas" + ], + "en_answers": [ + "anthem of the chivas" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-38": { + "question": "¿Qué industrias son conocidas por tener horarios de trabajo más flexibles en México?", + "en_question": "Which industries are known for more flexible working hours in your country?", + "annotations": [ + { + "answers": [ + "universidades" + ], + "en_answers": [ + "universities" + ], + "count": 1 + }, + { + "answers": [ + "software" + ], + "en_answers": [ + "software" + ], + "count": 1 + }, + { + "answers": [ + "it", + "soporte técnico" + ], + "en_answers": [ + "it" + ], + "count": 1 + }, + { + "answers": [ + "tecnología" + ], + "en_answers": [ + "technology" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-en-41": { + "question": "¿Quién es el empresario más conocido y exitoso de México?", + "en_question": "Who is the most well known and successful entrepreneur in your country?", + "annotations": [ + { + "answers": [ + "carlos slim" + ], + "en_answers": [ + "carlos slim" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-47": { + "question": "¿Qué se puede encontrar típicamente en el jardín trasero de las casas en México?", + "en_question": "What can typically be found in the back garden of houses in your country?", + "annotations": [ + { + "answers": [ + "arboles frutales" + ], + "en_answers": [ + "fruit trees" + ], + "count": 1 + }, + { + "answers": [ + "masetas" + ], + "en_answers": [ + "flowerpots" + ], + "count": 1 + }, + { + "answers": [ + "asador" + ], + "en_answers": [ + "grill" + ], + "count": 1 + }, + { + "answers": [ + "arbol" + ], + "en_answers": [ + "tree" + ], + "count": 1 + }, + { + "answers": [ + "juegos infantiles" + ], + "en_answers": [ + "children's games" + ], + "count": 1 + }, + { + "answers": [ + "tendederos" + ], + "en_answers": [ + "clotheslines" + ], + "count": 1 + }, + { + "answers": [ + "objetos viejos" + ], + "en_answers": [ + "old objects" + ], + "count": 1 + }, + { + "answers": [ + "desechados" + ], + "en_answers": [ + "discarded" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-49": { + "question": "¿Cuál es el nombre de la familia más famosa de México?", + "en_question": "What is the name of the most famous family in your country?", + "annotations": [ + { + "answers": [ + "derbez" + ], + "en_answers": [ + "derbez" + ], + "count": 3 + }, + { + "answers": [ + "slim" + ], + "en_answers": [ + "slim" + ], + "count": 2 + }, + { + "answers": [ + "pinal" + ], + "en_answers": [ + "pinal" + ], + "count": 1 + }, + { + "answers": [ + "salinas" + ], + "en_answers": [ + "salinas" + ], + "count": 1 + }, + { + "answers": [ + "azcárraga", + "azcarraga" + ], + "en_answers": [ + "azcárraga" + ], + "count": 1 + }, + { + "answers": [ + "gonzález" + ], + "en_answers": [ + "gonzález" + ], + "count": 1 + }, + { + "answers": [ + "hernández", + "hernandez" + ], + "en_answers": [ + "hernández" + ], + "count": 1 + }, + { + "answers": [ + "pérez", + "perez" + ], + "en_answers": [ + "pérez" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-50": { + "question": "¿Cuál es el apellido más común en México?", + "en_question": "What is the most common family name in your country?", + "annotations": [ + { + "answers": [ + "lópez", + "lopez" + ], + "en_answers": [ + "lópez" + ], + "count": 3 + }, + { + "answers": [ + "gonzález", + "gonzalez" + ], + "en_answers": [ + "gonzález" + ], + "count": 2 + }, + { + "answers": [ + "martínez", + "martinez" + ], + "en_answers": [ + "martínez" + ], + "count": 2 + }, + { + "answers": [ + "hernández", + "hernandez" + ], + "en_answers": [ + "hernández" + ], + "count": 2 + }, + { + "answers": [ + "pérez" + ], + "en_answers": [ + "pérez" + ], + "count": 1 + }, + { + "answers": [ + "garcía" + ], + "en_answers": [ + "garcía" + ], + "count": 1 + }, + { + "answers": [ + "gómez", + "gomez" + ], + "en_answers": [ + "gómez" + ], + "count": 1 + }, + { + "answers": [ + "juárez", + "juarez" + ], + "en_answers": [ + "juárez" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-55": { + "question": "¿Cuál es la religión más practicada por las familias en México?", + "en_question": "Which religion is most commonly practiced by families in your country?", + "annotations": [ + { + "answers": [ + "católica", + "catolicismo", + "catolica" + ], + "en_answers": [ + "catholic", + "catholicism" + ], + "count": 5 + }, + { + "answers": [ + "cristianismo", + "cristiana" + ], + "en_answers": [ + "christianity", + "christian" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-56": { + "question": "¿Cuál es el idioma extranjero más hablado por las familias en México?", + "en_question": "What is the most popular foreign language spoken by families in your country?", + "annotations": [ + { + "answers": [ + "inglés", + "ingles" + ], + "en_answers": [ + "english" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-59": { + "question": "¿Cuál es el país de destino más popular para las familias de México que emigran?", + "en_question": "Which country is the most popular destination for families from your country to emigrate to?", + "annotations": [ + { + "answers": [ + "estados unidos", + "eua", + "usa" + ], + "en_answers": [ + "united states" + ], + "count": 5 + }, + { + "answers": [ + "canadá", + "canada" + ], + "en_answers": [ + "canada" + ], + "count": 4 + }, + { + "answers": [ + "españa" + ], + "en_answers": [ + "spain" + ], + "count": 1 + }, + { + "answers": [ + "brasil" + ], + "en_answers": [ + "brazil" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-68": { + "question": "¿Qué repercusiones hay para el mal comportamiento en las escuelas en México?", + "en_question": "What repercussions are there for bad behavior in schools in your country?", + "annotations": [ + { + "answers": [ + "expulsión" + ], + "en_answers": [ + "exclusion", + "expulsion" + ], + "count": 3 + }, + { + "answers": [ + "suspensión" + ], + "en_answers": [ + "suspension" + ], + "count": 2 + }, + { + "answers": [ + "reporte", + "reporte escolar" + ], + "en_answers": [ + "disciplinary report", + "disciplinary school report" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-69": { + "question": "¿Qué escritores se estudian comúnmente en la clase de literatura en México?", + "en_question": "Which writers are commonly studied in literature class in your country?", + "annotations": [ + { + "answers": [ + "gabriel garcía márquez" + ], + "en_answers": [ + "gabriel garcía márquez" + ], + "count": 2 + }, + { + "answers": [ + "carlos fuentes" + ], + "en_answers": [ + "carlos fuentes" + ], + "count": 1 + }, + { + "answers": [ + "lope de vega" + ], + "en_answers": [ + "lope de vega" + ], + "count": 1 + }, + { + "answers": [ + "julio cortázar" + ], + "en_answers": [ + "julio cortázar" + ], + "count": 1 + }, + { + "answers": [ + "octavio paz" + ], + "en_answers": [ + "octavio paz" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-70": { + "question": "¿Cuántos periodos vacacionales hay en un año para las preparatorias en México? (Proporciona solo números arábigos (por ejemplo, 1).)", + "en_question": "How many school breaks are there in a year for high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-72": { + "question": "¿Qué recurso en línea suelen utilizar los estudiantes para estudiar en México?", + "en_question": "Which online resource do students usually use to study in your country?", + "annotations": [ + { + "answers": [ + "wikipedia" + ], + "en_answers": [ + "wikipedia" + ], + "count": 2 + }, + { + "answers": [ + "google" + ], + "en_answers": [ + "google" + ], + "count": 2 + }, + { + "answers": [ + "google meets" + ], + "en_answers": [ + "google meet" + ], + "count": 1 + }, + { + "answers": [ + "teams" + ], + "en_answers": [ + "teams" + ], + "count": 1 + }, + { + "answers": [ + "zoom" + ], + "en_answers": [ + "zoom" + ], + "count": 1 + }, + { + "answers": [ + "classroom" + ], + "en_answers": [ + "classroom" + ], + "count": 1 + }, + { + "answers": [ + "youtube" + ], + "en_answers": [ + "youtube" + ], + "count": 1 + }, + { + "answers": [ + "textos" + ], + "en_answers": [ + "texts" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-75": { + "question": "¿Cuál es la duración promedio de un semestre en términos de semanas de enseñanza en las universidades de México? (Proporcione solo números arábigos (por ejemplo, 1).)", + "en_question": "What is the average length of a semester in terms of weeks of teaching at universities in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + }, + { + "answers": [ + "20", + "20 semanas" + ], + "en_answers": [ + "20 weeks" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 1 + }, + { + "answers": [ + "16" + ], + "en_answers": [ + "16" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-76": { + "question": "¿Cuál es el aeropuerto más concurrido en México durante la temporada de vacaciones?", + "en_question": "Which airport in your country is the busiest during the holiday season?", + "annotations": [ + { + "answers": [ + "aeropuerto de la ciudad de méxico", + "ciudad de mexico", + "aeropuerto internacional de la ciudad de méxico", + "aicm", + "aereopuerto internacional benito juárez" + ], + "en_answers": [ + "mexico city", + "mexico city international airport", + "mexico city airport" + ], + "count": 4 + }, + { + "answers": [ + "acapulco" + ], + "en_answers": [ + "acapulco" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-79": { + "question": "¿Qué región de México es bien conocida por sus representaciones teatrales?", + "en_question": "Which region of your country is well known for its theatrical performances?", + "annotations": [ + { + "answers": [ + "cdmx", + "ciudad de mexico" + ], + "en_answers": [ + "mexico city" + ], + "count": 4 + }, + { + "answers": [ + "zona centro" + ], + "en_answers": [ + "central méxico" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-87": { + "question": "¿Cuál es el monumento histórico más famoso de México?", + "en_question": "What is the most famous historic landmark in your country?", + "annotations": [ + { + "answers": [ + "ángel de la independencia", + "angel de la independencia" + ], + "en_answers": [ + "angel of independence" + ], + "count": 2 + }, + { + "answers": [ + "monumento a los niños héroes", + "los niños héroes" + ], + "en_answers": [ + "monument to the niños héroes" + ], + "count": 1 + }, + { + "answers": [ + "el pípila" + ], + "en_answers": [ + "the pípila" + ], + "count": 1 + }, + { + "answers": [ + "piramides" + ], + "en_answers": [ + "pyramids" + ], + "count": 1 + }, + { + "answers": [ + "castillo de chapultepec" + ], + "en_answers": [ + "chapultepec castle" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-90": { + "question": "¿Cuál es la cadena de hoteles más famosa en México?", + "en_question": "What is the most famous hotel brand in your country?", + "annotations": [ + { + "answers": [ + "camino real" + ], + "en_answers": [ + "camino real" + ], + "count": 2 + }, + { + "answers": [ + "city express" + ], + "en_answers": [ + "city express" + ], + "count": 1 + }, + { + "answers": [ + "four seasons" + ], + "en_answers": [ + "four seasons" + ], + "count": 1 + }, + { + "answers": [ + "riu" + ], + "en_answers": [ + "riu hotels" + ], + "count": 1 + }, + { + "answers": [ + "hilton" + ], + "en_answers": [ + "hilton" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-05": { + "question": "¿Cuál es la opción de desayuno para llevar más popular en México?", + "en_question": "What is the most popular grab-and-go breakfast option in your country?", + "annotations": [ + { + "answers": [ + "sandwich", + "sandwiches", + "tortas", + "torta" + ], + "en_answers": [ + "sandwich", + "sandwiches" + ], + "count": 4 + }, + { + "answers": [ + "chilaquiles" + ], + "en_answers": [ + "chilaquiles" + ], + "count": 1 + }, + { + "answers": [ + "hot cakes" + ], + "en_answers": [ + "pancakes" + ], + "count": 1 + }, + { + "answers": [ + "tacos" + ], + "en_answers": [ + "tacos" + ], + "count": 1 + }, + { + "answers": [ + "burritos" + ], + "en_answers": [ + "burritos" + ], + "count": 1 + }, + { + "answers": [ + "avena" + ], + "en_answers": [ + "oatmeal" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-06": { + "question": "¿Cuál es la comida más popular en México entre los jóvenes?", + "en_question": "What is the most popular food in your country among young people?", + "annotations": [ + { + "answers": [ + "tacos" + ], + "en_answers": [ + "tacos" + ], + "count": 5 + }, + { + "answers": [ + "tortas" + ], + "en_answers": [ + "sandwiches" + ], + "count": 2 + }, + { + "answers": [ + "chilaquiles" + ], + "en_answers": [ + "chilaquiles" + ], + "count": 1 + }, + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-08": { + "question": "¿Qué tipo de bebida alcohólica se consume más comúnmente en festivales en México?", + "en_question": "What type of alcoholic drink is most commonly consumed at festivals in your country?", + "annotations": [ + { + "answers": [ + "cerveza" + ], + "en_answers": [ + "beer" + ], + "count": 5 + }, + { + "answers": [ + "tequila" + ], + "en_answers": [ + "tequila" + ], + "count": 2 + }, + { + "answers": [ + "whiskey" + ], + "en_answers": [ + "whiskey" + ], + "count": 1 + }, + { + "answers": [ + "mezcal" + ], + "en_answers": [ + "mezcal" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-13": { + "question": "¿Cuál es la bebida matutina más común en México?", + "en_question": "What is the most common morning drink in your country?", + "annotations": [ + { + "answers": [ + "café", + "cafe" + ], + "en_answers": [ + "coffee" + ], + "count": 5 + }, + { + "answers": [ + "coca cola", + "coca" + ], + "en_answers": [ + "coke", + "coca cola" + ], + "count": 1 + }, + { + "answers": [ + "aguas frescas" + ], + "en_answers": [ + "flavoured waters", + "fruit water", + "squash" + ], + "count": 1 + }, + { + "answers": [ + "té", + "te" + ], + "en_answers": [ + "tea" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-15": { + "question": "¿Cuál es el postre tradicional más popular en México?", + "en_question": "What is the most popular traditional dessert in your country?", + "annotations": [ + { + "answers": [ + "arroz con leche" + ], + "en_answers": [ + "rice pudding" + ], + "count": 3 + }, + { + "answers": [ + "pan dulce" + ], + "en_answers": [ + "sweet bread", + "pastries" + ], + "count": 2 + }, + { + "answers": [ + "flan" + ], + "en_answers": [ + "baked custard" + ], + "count": 2 + }, + { + "answers": [ + "pastel" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "helado" + ], + "en_answers": [ + "ice cream" + ], + "count": 1 + }, + { + "answers": [ + "carlota" + ], + "en_answers": [ + "charlotte" + ], + "count": 1 + }, + { + "answers": [ + "churros" + ], + "en_answers": [ + "churros" + ], + "count": 1 + }, + { + "answers": [ + "buñuelo" + ], + "en_answers": [ + "fritter" + ], + "count": 1 + }, + { + "answers": [ + "pan de elote" + ], + "en_answers": [ + "cornbread" + ], + "count": 1 + }, + { + "answers": [ + "gelatina" + ], + "en_answers": [ + "jelly" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-21": { + "question": "¿Cuál es el deporte de raqueta más popular en México?", + "en_question": "What is the most popular racket sport in your country?", + "annotations": [ + { + "answers": [ + "tenis" + ], + "en_answers": [ + "tennis" + ], + "count": 2 + }, + { + "answers": [ + "pádel", + "padel" + ], + "en_answers": [ + "padel" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "New-gr-24": { + "question": "¿Cuál es el deporte de atletismo más popular en México?", + "en_question": "What is the most popular track and field sport in your country?", + "annotations": [ + { + "answers": [ + "carreras de velocidad" + ], + "en_answers": [ + "sprint races" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-29": { + "question": "¿Cuál evento deportivo internacional es el más popular en México?", + "en_question": "Which international sporting event is the most popular in your country?", + "annotations": [ + { + "answers": [ + "copa mundial", + "mundial de fútbol", + "mundial fifa" + ], + "en_answers": [ + "football world cup", + "fifa world cup" + ], + "count": 3 + }, + { + "answers": [ + "superbowl" + ], + "en_answers": [ + "super bowl" + ], + "count": 2 + }, + { + "answers": [ + "formula 1" + ], + "en_answers": [ + "formula 1" + ], + "count": 1 + }, + { + "answers": [ + "liga mexicana del pacifico" + ], + "en_answers": [ + "mexican pacific league" + ], + "count": 1 + }, + { + "answers": [ + "olimpiadas" + ], + "en_answers": [ + "olympics" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-47": { + "question": "¿Cuánto duran (en minutos) los descansos laborales típicos en México, excluyendo los descansos para comer y cenar? (Proporcione solo números arábigos (por ejemplo, 1).)", + "en_question": "How long (in minutes) are typical work breaks in your country, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 3 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 3 + }, + { + "answers": [ + "60", + "1 hora" + ], + "en_answers": [ + "1 hour" + ], + "count": 1 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-58": { + "question": "¿Qué trabajo se considera mal pagado en México?", + "en_question": "Which job is considered underpaid in your country?", + "annotations": [ + { + "answers": [ + "docencia", + "docentes" + ], + "en_answers": [ + "teaching" + ], + "count": 2 + }, + { + "answers": [ + "agricultura" + ], + "en_answers": [ + "agriculture" + ], + "count": 1 + }, + { + "answers": [ + "albañileria" + ], + "en_answers": [ + "masonry" + ], + "count": 1 + }, + { + "answers": [ + "gatronomia" + ], + "en_answers": [ + "gastronomy" + ], + "count": 1 + }, + { + "answers": [ + "intendencia" + ], + "en_answers": [ + "stewardship" + ], + "count": 1 + }, + { + "answers": [ + "cajero" + ], + "en_answers": [ + "cashier" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-76": { + "question": "¿Cuál es la comida más común que se sirve durante la Semana Santa en México?", + "en_question": "What is the most common food served during Easter in your country?", + "annotations": [ + { + "answers": [ + "mariscos", + "marisco" + ], + "en_answers": [ + "seafood" + ], + "count": 3 + }, + { + "answers": [ + "pescado zarandeado", + "sarandiado" + ], + "en_answers": [ + "grilled fish" + ], + "count": 1 + }, + { + "answers": [ + "pescado al mojo de ajo" + ], + "en_answers": [ + "fish in garlic sauce" + ], + "count": 1 + }, + { + "answers": [ + "ceviche", + "cebiche" + ], + "en_answers": [ + "ceviche" + ], + "count": 1 + }, + { + "answers": [ + "milanesa de pollo" + ], + "en_answers": [ + "chicken milanesa" + ], + "count": 1 + }, + { + "answers": [ + "nopales con pipián", + "nopales con pipian" + ], + "en_answers": [ + "nopales with pumpkin seed sauce" + ], + "count": 1 + }, + { + "answers": [ + "pescado empanizado" + ], + "en_answers": [ + "breaded fish" + ], + "count": 1 + }, + { + "answers": [ + "pescado frito" + ], + "en_answers": [ + "fried fish" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-82": { + "question": "¿Cuál es el género musical más popular entre la población de adultos mayores en México?", + "en_question": "What is the most popular music genre among the elderly population in your country?", + "annotations": [ + { + "answers": [ + "boleros" + ], + "en_answers": [ + "boleros" + ], + "count": 2 + }, + { + "answers": [ + "banda", + "corridos" + ], + "en_answers": [ + "band", + "political ballads", + "folk music" + ], + "count": 2 + }, + { + "answers": [ + "regional" + ], + "en_answers": [ + "regional" + ], + "count": 1 + }, + { + "answers": [ + "mariachi" + ], + "en_answers": [ + "mariachi" + ], + "count": 1 + }, + { + "answers": [ + "baladas" + ], + "en_answers": [ + "ballads" + ], + "count": 1 + }, + { + "answers": [ + "cumbia" + ], + "en_answers": [ + "cumbia" + ], + "count": 1 + }, + { + "answers": [ + "reggaeton" + ], + "en_answers": [ + "reggaeton" + ], + "count": 1 + }, + { + "answers": [ + "tríos" + ], + "en_answers": [ + "bolero trio" + ], + "count": 1 + }, + { + "answers": [ + "ranchero" + ], + "en_answers": [ + "ranchero music" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-88": { + "question": "¿Qué bebida se ofrece habitualmente en los funerales en México?", + "en_question": "What drink is usually offered at funerals in your country?", + "annotations": [ + { + "answers": [ + "café", + "cafe" + ], + "en_answers": [ + "coffee" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-89": { + "question": "¿Qué bebida se ofrece habitualmente en las bodas en México?", + "en_question": "What drink is usually offered at weddings in your country?", + "annotations": [ + { + "answers": [ + "cerveza" + ], + "en_answers": [ + "beer" + ], + "count": 4 + }, + { + "answers": [ + "refresco" + ], + "en_answers": [ + "soda" + ], + "count": 2 + }, + { + "answers": [ + "tequila" + ], + "en_answers": [ + "tequila" + ], + "count": 1 + }, + { + "answers": [ + "mezcal" + ], + "en_answers": [ + "mezcal" + ], + "count": 1 + }, + { + "answers": [ + "vino" + ], + "en_answers": [ + "wine" + ], + "count": 1 + }, + { + "answers": [ + "whisky" + ], + "en_answers": [ + "whiskey" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-07": { + "question": "¿Qué comida se originó en México y puede encontrarse en todo el mundo?", + "en_question": "What food originated from your country and can be found all over the world?", + "annotations": [ + { + "answers": [ + "tacos" + ], + "en_answers": [ + "tacos" + ], + "count": 4 + }, + { + "answers": [ + "mole poblano", + "mole" + ], + "en_answers": [ + "puebla-style mole", + "traditional mole sauce" + ], + "count": 2 + }, + { + "answers": [ + "tamales" + ], + "en_answers": [ + "tamales" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-08": { + "question": "¿Qué comida es típicamente disgustada por los niños pero disfrutada por los ancianos en México?", + "en_question": "What food is typically disliked by children but enjoyed by the elderly in your country?", + "annotations": [ + { + "answers": [ + "mole" + ], + "en_answers": [ + "traditional mole sauce" + ], + "count": 2 + }, + { + "answers": [ + "pozole" + ], + "en_answers": [ + "a traditional soup or stew made of pork and corn" + ], + "count": 1 + }, + { + "answers": [ + "camote" + ], + "en_answers": [ + "sweet potato" + ], + "count": 1 + }, + { + "answers": [ + "elotes" + ], + "en_answers": [ + "corn on the cob" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ha-09": { + "question": "¿Qué utensilio de cocina se usa más comúnmente en México?", + "en_question": "What cooking utensil is most commonly used in your country?", + "annotations": [ + { + "answers": [ + "tenedor" + ], + "en_answers": [ + "fork" + ], + "count": 2 + }, + { + "answers": [ + "cuchara" + ], + "en_answers": [ + "spoon" + ], + "count": 2 + }, + { + "answers": [ + "cuchara madera" + ], + "en_answers": [ + "wooden spoon" + ], + "count": 1 + }, + { + "answers": [ + "molcajete" + ], + "en_answers": [ + "mortar and pestle" + ], + "count": 1 + }, + { + "answers": [ + "cuchillo" + ], + "en_answers": [ + "knife" + ], + "count": 1 + }, + { + "answers": [ + "olla" + ], + "en_answers": [ + "pot" + ], + "count": 1 + }, + { + "answers": [ + "sartén" + ], + "en_answers": [ + "pan" + ], + "count": 1 + }, + { + "answers": [ + "comal" + ], + "en_answers": [ + "griddle" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-13": { + "question": "¿Cuál es la verdura más popular en México?", + "en_question": "Which is the most popular vegetable in your country?", + "annotations": [ + { + "answers": [ + "chile" + ], + "en_answers": [ + "chili pepper" + ], + "count": 3 + }, + { + "answers": [ + "zanahoria" + ], + "en_answers": [ + "carrot" + ], + "count": 2 + }, + { + "answers": [ + "tomate" + ], + "en_answers": [ + "tomato" + ], + "count": 2 + }, + { + "answers": [ + "calabaza" + ], + "en_answers": [ + "courgette", + "zuccini" + ], + "count": 1 + }, + { + "answers": [ + "nopales" + ], + "en_answers": [ + "nopales" + ], + "count": 1 + }, + { + "answers": [ + "aguacate" + ], + "en_answers": [ + "avocado" + ], + "count": 1 + }, + { + "answers": [ + "jitomate" + ], + "en_answers": [ + "tomato" + ], + "count": 1 + }, + { + "answers": [ + "maiz" + ], + "en_answers": [ + "corn" + ], + "count": 1 + }, + { + "answers": [ + "cebolla" + ], + "en_answers": [ + "onion" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-19": { + "question": "¿Qué animal se utiliza para los deportes en México?", + "en_question": "Which animal is used for sports in your country?", + "annotations": [ + { + "answers": [ + "aguilas", + "aguila" + ], + "en_answers": [ + "eagles", + "eagle" + ], + "count": 2 + }, + { + "answers": [ + "chivas" + ], + "en_answers": [ + "goats" + ], + "count": 1 + }, + { + "answers": [ + "pumas" + ], + "en_answers": [ + "pumas" + ], + "count": 1 + }, + { + "answers": [ + "gallos" + ], + "en_answers": [ + "roosters" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ha-66": { + "question": "¿Cuál es el lugar de bodas más popular en México?", + "en_question": "What is the most popular wedding venue in your country?", + "annotations": [ + { + "answers": [ + "cancún" + ], + "en_answers": [ + "cancun" + ], + "count": 2 + }, + { + "answers": [ + "la villa" + ], + "en_answers": [ + "the villa" + ], + "count": 1 + }, + { + "answers": [ + "la catedral" + ], + "en_answers": [ + "the cathedral" + ], + "count": 1 + }, + { + "answers": [ + "san miguel de allende" + ], + "en_answers": [ + "san miguel de allende" + ], + "count": 1 + }, + { + "answers": [ + "tepoztlán" + ], + "en_answers": [ + "tepoztlán" + ], + "count": 1 + }, + { + "answers": [ + "riviera maya" + ], + "en_answers": [ + "mayan riviera" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-01": { + "question": "¿Cuál es la marca de cafetería más popular en México?", + "en_question": "Which coffee shop brand is the most popular in your country?", + "annotations": [ + { + "answers": [ + "starbucks", + "starbuks" + ], + "en_answers": [ + "starbucks" + ], + "count": 5 + }, + { + "answers": [ + "italian coffee" + ], + "en_answers": [ + "italian coffee" + ], + "count": 1 + }, + { + "answers": [ + "bicuits madero" + ], + "en_answers": [ + "biscuits madero" + ], + "count": 1 + }, + { + "answers": [ + "cielito lindo" + ], + "en_answers": [ + "cielito lindo" + ], + "count": 1 + }, + { + "answers": [ + "punta del cielo" + ], + "en_answers": [ + "punta del cielo" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-03": { + "question": "¿Qué tipo de comida de México se sirve típicamente en restaurantes en el extranjero?", + "en_question": "What type of food from your country is typically served in restaurants overseas?", + "annotations": [ + { + "answers": [ + "tacos" + ], + "en_answers": [ + "tacos" + ], + "count": 5 + }, + { + "answers": [ + "guacamole" + ], + "en_answers": [ + "guacamole" + ], + "count": 1 + }, + { + "answers": [ + "burritos" + ], + "en_answers": [ + "burritos" + ], + "count": 1 + }, + { + "answers": [ + "quesadillas" + ], + "en_answers": [ + "quesadillas" + ], + "count": 1 + }, + { + "answers": [ + "tamales" + ], + "en_answers": [ + "tamales" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-33": { + "question": "¿Qué región en México se asocia generalmente con la minería?", + "en_question": "What region in your country is usually associated with mining?", + "annotations": [ + { + "answers": [ + "sonora" + ], + "en_answers": [ + "sonora" + ], + "count": 2 + }, + { + "answers": [ + "chihuahua" + ], + "en_answers": [ + "chihuahua" + ], + "count": 1 + }, + { + "answers": [ + "norte de méxico", + "norte de mexico" + ], + "en_answers": [ + "north of mexico" + ], + "count": 1 + }, + { + "answers": [ + "occidente" + ], + "en_answers": [ + "west" + ], + "count": 1 + }, + { + "answers": [ + "bajío" + ], + "en_answers": [ + "west-central mexico" + ], + "count": 1 + }, + { + "answers": [ + "el centro" + ], + "en_answers": [ + "center of the country" + ], + "count": 1 + }, + { + "answers": [ + "querétaro" + ], + "en_answers": [ + "querétaro" + ], + "count": 1 + }, + { + "answers": [ + "guanajuato" + ], + "en_answers": [ + "guanajuato" + ], + "count": 1 + }, + { + "answers": [ + "zacatecas" + ], + "en_answers": [ + "zacatecas" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-34": { + "question": "¿Qué región de México se asocia normalmente con el petróleo?", + "en_question": "What region in your country is usually associated with oil?", + "annotations": [ + { + "answers": [ + "sureste" + ], + "en_answers": [ + "southeast" + ], + "count": 3 + }, + { + "answers": [ + "veracruz" + ], + "en_answers": [ + "veracruz" + ], + "count": 1 + }, + { + "answers": [ + "la costa" + ], + "en_answers": [ + "the coast" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-62": { + "question": "¿Qué universidad en México es popular por su carrera de ingeniería? (Proporciona el nombre oficial.)", + "en_question": "What university in your country is popular because of its engineering major? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "technológico de monterrey", + "tec de monterrey", + "tecnológico de monterrey" + ], + "en_answers": [ + "monterrey institute of technology" + ], + "count": 3 + }, + { + "answers": [ + "universidad nacional autónoma de méxico", + "unam" + ], + "en_answers": [ + "national autonomous university of mexico" + ], + "count": 2 + }, + { + "answers": [ + "universidad autónoma de nuevo león" + ], + "en_answers": [ + "autonomous university of nuevo león" + ], + "count": 1 + }, + { + "answers": [ + "instituto politécnico nacional", + "instituto politecnico nacional" + ], + "en_answers": [ + "national polytechnic institute" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-63": { + "question": "¿Qué universidad en México es popular por su facultad de medicina? (Proporciona el nombre oficial.)", + "en_question": "What university in your country is popular because of its school of medicine? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "universidad nacional autónoma de méxico", + "unam" + ], + "en_answers": [ + "national autonomous university of mexico" + ], + "count": 4 + }, + { + "answers": [ + "universidad de guadalajara", + "udeg" + ], + "en_answers": [ + "university of guadalajara" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-78": { + "question": "¿Cuál es el método de pago más popular en México?", + "en_question": "What is the most popular payment method in your country?", + "annotations": [ + { + "answers": [ + "efectivo" + ], + "en_answers": [ + "cash" + ], + "count": 5 + }, + { + "answers": [ + "tarjeta" + ], + "en_answers": [ + "card" + ], + "count": 4 + }, + { + "answers": [ + "transferencia" + ], + "en_answers": [ + "transfer" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-80": { + "question": "¿Cuál es el parque temático más famoso de México?", + "en_question": "What is the most famous theme park in your country?", + "annotations": [ + { + "answers": [ + "six flags" + ], + "en_answers": [ + "six flags" + ], + "count": 5 + }, + { + "answers": [ + "xcaret" + ], + "en_answers": [ + "xcaret" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-01": { + "question": "¿Cuál es la animación infantil más popular que comúnmente ven los niños en México?", + "en_question": "What is the most popular children's animation that is commonly watched by kids in your country?", + "annotations": [ + { + "answers": [ + "bluey" + ], + "en_answers": [ + "bluey" + ], + "count": 2 + }, + { + "answers": [ + "paw patrol" + ], + "en_answers": [ + "paw patrol" + ], + "count": 1 + }, + { + "answers": [ + "los simpsons" + ], + "en_answers": [ + "the simpsons" + ], + "count": 1 + }, + { + "answers": [ + "dragon ball" + ], + "en_answers": [ + "dragon ball" + ], + "count": 1 + }, + { + "answers": [ + "naruto" + ], + "en_answers": [ + "naruto" + ], + "count": 1 + }, + { + "answers": [ + "bob esponja" + ], + "en_answers": [ + "sponge bol" + ], + "count": 1 + }, + { + "answers": [ + "bugs bunny" + ], + "en_answers": [ + "bugs bunny" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-02": { + "question": "¿Cuál es la actividad de educación prenatal más popular para mujeres embarazadas en México?", + "en_question": "What is the most popular prenatal education activity for pregnant women in your country?", + "annotations": [ + { + "answers": [ + "respiración y concentración", + "respiración y consentración", + "ejercicios de respiración" + ], + "en_answers": [ + "breathing and concentration", + "breathing exercises" + ], + "count": 2 + }, + { + "answers": [ + "ejecitarse" + ], + "en_answers": [ + "excercising" + ], + "count": 1 + }, + { + "answers": [ + "cursos de preparación para el parto" + ], + "en_answers": [ + "childbirth preparation courses" + ], + "count": 1 + }, + { + "answers": [ + "uso de anticonceptivos" + ], + "en_answers": [ + "use of contraceptives" + ], + "count": 1 + }, + { + "answers": [ + "lactancia" + ], + "en_answers": [ + "breastfeeding" + ], + "count": 1 + }, + { + "answers": [ + "estimulación temprana" + ], + "en_answers": [ + "early stimulation" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-03": { + "question": "¿Cuál es la canción infantil más popular en México que las familias cantan juntas?", + "en_question": "What is the most popular children's song in your country that families sing together?", + "annotations": [ + { + "answers": [ + "la víbora de la mar", + "la vibira de la mar" + ], + "en_answers": [ + "the sea snake" + ], + "count": 1 + }, + { + "answers": [ + "sapito" + ], + "en_answers": [ + "the little toad" + ], + "count": 1 + }, + { + "answers": [ + "el chorrito" + ], + "en_answers": [ + "el chorrito" + ], + "count": 1 + }, + { + "answers": [ + "campanas de belén", + "campanas de belen" + ], + "en_answers": [ + "bells of bethlehem" + ], + "count": 1 + }, + { + "answers": [ + "estrellita donde estas" + ], + "en_answers": [ + "twinkle twinkle little star" + ], + "count": 1 + }, + { + "answers": [ + "pin pon" + ], + "en_answers": [ + "pin pon" + ], + "count": 1 + }, + { + "answers": [ + "un elefante se balanceaba" + ], + "en_answers": [ + "one elephant was swinging" + ], + "count": 1 + }, + { + "answers": [ + "naranja dulce" + ], + "en_answers": [ + "sweet orange" + ], + "count": 1 + }, + { + "answers": [ + "cielito lindo" + ], + "en_answers": [ + "pretty little sky" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-04": { + "question": "¿Cuáles son los juguetes más populares entre los niños en México?", + "en_question": "Which toys are most popular among boys in your country?", + "annotations": [ + { + "answers": [ + "balón" + ], + "en_answers": [ + "ball" + ], + "count": 1 + }, + { + "answers": [ + "nintendo switch" + ], + "en_answers": [ + "nintendo switch" + ], + "count": 1 + }, + { + "answers": [ + "coches" + ], + "en_answers": [ + "cars" + ], + "count": 1 + }, + { + "answers": [ + "muñecas" + ], + "en_answers": [ + "dolls" + ], + "count": 1 + }, + { + "answers": [ + "figuras de plástico" + ], + "en_answers": [ + "plastic figures" + ], + "count": 1 + }, + { + "answers": [ + "triciclo" + ], + "en_answers": [ + "tricycle" + ], + "count": 1 + }, + { + "answers": [ + "tablet" + ], + "en_answers": [ + "tablet" + ], + "count": 1 + }, + { + "answers": [ + "trompos" + ], + "en_answers": [ + "spinning tops" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-05": { + "question": "¿Cuáles son los juguetes más populares entre las niñas en México?", + "en_question": "Which toys are most popular among girls in your country?", + "annotations": [ + { + "answers": [ + "muñecas" + ], + "en_answers": [ + "dolls" + ], + "count": 4 + }, + { + "answers": [ + "peluches" + ], + "en_answers": [ + "stuffed animals" + ], + "count": 2 + }, + { + "answers": [ + "barbies" + ], + "en_answers": [ + "barbie dolls" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-06": { + "question": "¿Cuál es el cuento popular más famoso en México que típicamente se les cuenta a los niños?", + "en_question": "What is the most popular folk tale in your country that is typically told to children?", + "annotations": [ + { + "answers": [ + "conejo de la luna" + ], + "en_answers": [ + "rabbit of the moon" + ], + "count": 1 + }, + { + "answers": [ + "la liebre y la tortuga" + ], + "en_answers": [ + "the hare and the tortoise" + ], + "count": 1 + }, + { + "answers": [ + "principito" + ], + "en_answers": [ + "little prince" + ], + "count": 1 + }, + { + "answers": [ + "la llorona" + ], + "en_answers": [ + "the weeping woman" + ], + "count": 1 + }, + { + "answers": [ + "caperucita roja" + ], + "en_answers": [ + "little red riding hood" + ], + "count": 1 + }, + { + "answers": [ + "los tres cohinitos" + ], + "en_answers": [ + "the three little pigs" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-07": { + "question": "¿Cuál es el símbolo habitual de condolencia utilizado en los funerales en México?", + "en_question": "What is the customary symbol of condolence used at funerals in your country?", + "annotations": [ + { + "answers": [ + "liston negro", + "moño con liston negro", + "un moño negro" + ], + "en_answers": [ + "black ribbon", + "black bow", + "a black ribbon" + ], + "count": 3 + }, + { + "answers": [ + "flores blancas" + ], + "en_answers": [ + "white flowers" + ], + "count": 1 + }, + { + "answers": [ + "sal" + ], + "en_answers": [ + "salt" + ], + "count": 1 + }, + { + "answers": [ + "ropa negra" + ], + "en_answers": [ + "black clothing" + ], + "count": 1 + }, + { + "answers": [ + "una corona de flores" + ], + "en_answers": [ + "a wreath of flowers" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-08": { + "question": "¿Dónde suelen trabajar los estudiantes universitarios en México a tiempo parcial con mayor frecuencia?", + "en_question": "Where do university students in your country tend to work part-time the most?", + "annotations": [ + { + "answers": [ + "call centers" + ], + "en_answers": [ + "call centers" + ], + "count": 2 + }, + { + "answers": [ + "en el gobierno" + ], + "en_answers": [ + "in the government" + ], + "count": 1 + }, + { + "answers": [ + "restaurantes de comida rápida", + "comida rápida" + ], + "en_answers": [ + "fast food restaurants" + ], + "count": 1 + }, + { + "answers": [ + "entrega de comida", + "food delivery" + ], + "en_answers": [ + "entrega de comida" + ], + "count": 1 + }, + { + "answers": [ + "tiendas de abarrotes" + ], + "en_answers": [ + "grocery stores" + ], + "count": 1 + }, + { + "answers": [ + "oxxos" + ], + "en_answers": [ + "convenience stores" + ], + "count": 1 + }, + { + "answers": [ + "pizzerias" + ], + "en_answers": [ + "pizzerias" + ], + "count": 1 + }, + { + "answers": [ + "cadenas de alimentos" + ], + "en_answers": [ + "food chains" + ], + "count": 1 + }, + { + "answers": [ + "cines" + ], + "en_answers": [ + "movie theaters" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-09": { + "question": "¿Cuáles son las actividades de integración de equipos más practicadas en las empresas con sede en México?", + "en_question": "What are the most frequently practiced team-building activities in companies based in your country?", + "annotations": [ + { + "answers": [ + "viaje", + "viajes" + ], + "en_answers": [ + "trip", + "trips" + ], + "count": 2 + }, + { + "answers": [ + "ir a comer" + ], + "en_answers": [ + "go to eat" + ], + "count": 1 + }, + { + "answers": [ + "reuniones al aire libre" + ], + "en_answers": [ + "outdoor meetings" + ], + "count": 1 + }, + { + "answers": [ + "cursos curriculares" + ], + "en_answers": [ + "curricular courses" + ], + "count": 1 + }, + { + "answers": [ + "actividades para fundaciones" + ], + "en_answers": [ + "activities for foundations" + ], + "count": 1 + }, + { + "answers": [ + "cursos de inducción" + ], + "en_answers": [ + "induction courses" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 2, + "not-applicable": 0 + } + }, + "New-ko-10": { + "question": "¿Cuáles son las actividades más comunes que la gente hace como trabajo secundario en México?", + "en_question": "What are the most common activities people do as a side job in your country?", + "annotations": [ + { + "answers": [ + "ventas", + "vender algo", + "vender o revender productos" + ], + "en_answers": [ + "sale of goods", + "sale of goods and services" + ], + "count": 4 + }, + { + "answers": [ + "venta de comida" + ], + "en_answers": [ + "food stalls", + "small restaurants", + "catering" + ], + "count": 2 + }, + { + "answers": [ + "reventa de productos de costco" + ], + "en_answers": [ + "resale of costco products" + ], + "count": 1 + }, + { + "answers": [ + "taxista" + ], + "en_answers": [ + "taxi driver" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-02": { + "question": "¿Cuál es el recuerdo comestible más famoso para los turistas en México?", + "en_question": "What is the most famous edible souvenir for tourists in your country?", + "annotations": [ + { + "answers": [ + "tacos" + ], + "en_answers": [ + "tacos" + ], + "count": 3 + }, + { + "answers": [ + "birria" + ], + "en_answers": [ + "spicy beef or goat stew" + ], + "count": 1 + }, + { + "answers": [ + "tostadas" + ], + "en_answers": [ + "crispy tortillas" + ], + "count": 1 + }, + { + "answers": [ + "obleas" + ], + "en_answers": [ + "wafers" + ], + "count": 1 + }, + { + "answers": [ + "tamarindo" + ], + "en_answers": [ + "tamarind" + ], + "count": 1 + }, + { + "answers": [ + "chimichangas" + ], + "en_answers": [ + "chimichangas" + ], + "count": 1 + }, + { + "answers": [ + "tortas" + ], + "en_answers": [ + "sandwiches" + ], + "count": 1 + }, + { + "answers": [ + "grillos" + ], + "en_answers": [ + "grasshoppers" + ], + "count": 1 + }, + { + "answers": [ + "chicharrones" + ], + "en_answers": [ + "pork rinds" + ], + "count": 1 + }, + { + "answers": [ + "dulces mexicanos" + ], + "en_answers": [ + "mexican candies" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-06": { + "question": "¿Cuál es el guiso más popular en México?", + "en_question": "What is the most popular stew in your country?", + "annotations": [ + { + "answers": [ + "tacos" + ], + "en_answers": [ + "tacos" + ], + "count": 2 + }, + { + "answers": [ + "mole" + ], + "en_answers": [ + "molel sauce" + ], + "count": 1 + }, + { + "answers": [ + "carne asada" + ], + "en_answers": [ + "grilled meat" + ], + "count": 1 + }, + { + "answers": [ + "discada" + ], + "en_answers": [ + "mixed grilled meats" + ], + "count": 1 + }, + { + "answers": [ + "barbacoa" + ], + "en_answers": [ + "barbecue" + ], + "count": 1 + }, + { + "answers": [ + "carne con chile" + ], + "en_answers": [ + "meat with chili" + ], + "count": 1 + }, + { + "answers": [ + "chicharron" + ], + "en_answers": [ + "pork rind" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-11": { + "question": "¿Cuál es la especia/hierba más común utilizada en los platillos de México?", + "en_question": "What is the most common spice/herb used in dishes from your country?", + "annotations": [ + { + "answers": [ + "epazote" + ], + "en_answers": [ + "skunk weed", + "wormseed" + ], + "count": 2 + }, + { + "answers": [ + "cilantro" + ], + "en_answers": [ + "coriander" + ], + "count": 2 + }, + { + "answers": [ + "laurel" + ], + "en_answers": [ + "bay leaf" + ], + "count": 1 + }, + { + "answers": [ + "albahaca" + ], + "en_answers": [ + "basil" + ], + "count": 1 + }, + { + "answers": [ + "pimienta" + ], + "en_answers": [ + "pepper" + ], + "count": 1 + }, + { + "answers": [ + "orégano" + ], + "en_answers": [ + "oregano" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-16": { + "question": "¿Cuál es el deporte tradicional más famoso en México?", + "en_question": "What is the most famous traditional sport in your country?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 4 + }, + { + "answers": [ + "boxeo", + "box" + ], + "en_answers": [ + "boxing" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-pe-20": { + "question": "¿Qué deporte es popular para jugar en la playa en México?", + "en_question": "What sport is popular to play on the beach in your country?", + "annotations": [ + { + "answers": [ + "voleibol", + "bolivol", + "voleybol" + ], + "en_answers": [ + "volleyball" + ], + "count": 5 + }, + { + "answers": [ + "futbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 2 + }, + { + "answers": [ + "frisbee", + "frizbie" + ], + "en_answers": [ + "frisbee" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-45": { + "question": "¿Cuál suele ser el horario de trabajo durante el mes de Ramadán en México?", + "en_question": "What is the usual work schedule during the month of Ramadan in your country?", + "annotations": [ + { + "answers": [ + "horario normal" + ], + "en_answers": [ + "regular schedule" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 0 + } + }, + "New-pe-47": { + "question": "¿Cuándo se celebra el Día del Estudiante en México? (Proporcionar en formato MM/DD (por ejemplo, 12/31).)", + "en_question": "When is Student's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "05/23" + ], + "en_answers": [ + "05/23" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-pe-49": { + "question": "¿Dónde se reúnen las familias para rezar juntas en México?", + "en_question": "Where do families gather to pray together in your country?", + "annotations": [ + { + "answers": [ + "iglesia", + "iglesia catolica" + ], + "en_answers": [ + "church", + "catholic church" + ], + "count": 5 + }, + { + "answers": [ + "casa", + "casas" + ], + "en_answers": [ + "home" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-53": { + "question": "¿Qué regalos reciben los padres en el Día del Padre (o Día de los Padres) en México?", + "en_question": "What gifts do fathers get on Father's Day (or Parents' Day) in your country?", + "annotations": [ + { + "answers": [ + "cartera" + ], + "en_answers": [ + "wallet" + ], + "count": 3 + }, + { + "answers": [ + "corbata" + ], + "en_answers": [ + "tie" + ], + "count": 1 + }, + { + "answers": [ + "vino" + ], + "en_answers": [ + "wine" + ], + "count": 1 + }, + { + "answers": [ + "reloj" + ], + "en_answers": [ + "watch" + ], + "count": 1 + }, + { + "answers": [ + "cinturón" + ], + "en_answers": [ + "belt" + ], + "count": 1 + }, + { + "answers": [ + "camisas" + ], + "en_answers": [ + "shirts" + ], + "count": 1 + }, + { + "answers": [ + "zapatos" + ], + "en_answers": [ + "shoes" + ], + "count": 1 + }, + { + "answers": [ + "calcetas" + ], + "en_answers": [ + "socks" + ], + "count": 1 + }, + { + "answers": [ + "botellas de alcohol" + ], + "en_answers": [ + "alcoholic drinks" + ], + "count": 1 + }, + { + "answers": [ + "ropa" + ], + "en_answers": [ + "clothes" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-pe-54": { + "question": "¿Qué regalos reciben las madres en el Día de la Madre (o Día de los Padres) en México?", + "en_question": "What gifts do mothers get on Mother's Day (or Parents' Day) in your country?", + "annotations": [ + { + "answers": [ + "flores" + ], + "en_answers": [ + "flowers" + ], + "count": 4 + }, + { + "answers": [ + "comida", + "desayunos o comidas" + ], + "en_answers": [ + "food", + "breakfasts or meals" + ], + "count": 2 + }, + { + "answers": [ + "cartas" + ], + "en_answers": [ + "cards" + ], + "count": 1 + }, + { + "answers": [ + "chocolates" + ], + "en_answers": [ + "chocolates" + ], + "count": 1 + }, + { + "answers": [ + "joyas" + ], + "en_answers": [ + "jewelry" + ], + "count": 1 + }, + { + "answers": [ + "gadgets" + ], + "en_answers": [ + "gadgets" + ], + "count": 1 + }, + { + "answers": [ + "electrodomésticos" + ], + "en_answers": [ + "appliances" + ], + "count": 1 + }, + { + "answers": [ + "postres" + ], + "en_answers": [ + "desserts" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-59": { + "question": "¿Cuántas generaciones suelen vivir juntas en un hogar en México? (Proporcione solo números arábigos (por ejemplo, 12).)", + "en_question": "How many generations typically live together in a household in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 5 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-65": { + "question": "¿Cuántas materias se imparten en las escuelas secundarias en México? (Proporcione solo números arábigos (por ejemplo, 12).)", + "en_question": "How many subjects are taught in middle schools in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "14" + ], + "en_answers": [ + "14" + ], + "count": 1 + }, + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + }, + { + "answers": [ + "13" + ], + "en_answers": [ + "13" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-pe-66": { + "question": "¿Cuáles son las actividades extracurriculares más populares en las escuelas primarias de México después de clases?", + "en_question": "What is the most popular after school curricular in elementary schools in your country?", + "annotations": [ + { + "answers": [ + "futbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 3 + }, + { + "answers": [ + "natación" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + }, + { + "answers": [ + "bascketball" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "danza" + ], + "en_answers": [ + "dance" + ], + "count": 1 + }, + { + "answers": [ + "teatro" + ], + "en_answers": [ + "theater" + ], + "count": 1 + }, + { + "answers": [ + "gimnasia" + ], + "en_answers": [ + "gymnastics" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-pe-74": { + "question": "¿Cuál es la cuota anual promedio de colegiatura en las universidades públicas de México?", + "en_question": "How much is the average annual tuition fee for public universities in your country?", + "annotations": [ + { + "answers": [ + "0.5 mxn" + ], + "en_answers": [ + "0.5 mexican pesos" + ], + "count": 1 + }, + { + "answers": [ + "13000" + ], + "en_answers": [ + "13000" + ], + "count": 1 + }, + { + "answers": [ + "15000" + ], + "en_answers": [ + "15000" + ], + "count": 1 + }, + { + "answers": [ + "16000" + ], + "en_answers": [ + "16000" + ], + "count": 1 + }, + { + "answers": [ + "300", + "$300" + ], + "en_answers": [ + "three hundred dollars" + ], + "count": 1 + }, + { + "answers": [ + "8000" + ], + "en_answers": [ + "8000" + ], + "count": 1 + }, + { + "answers": [ + "10000" + ], + "en_answers": [ + "10000" + ], + "count": 1 + }, + { + "answers": [ + "150000" + ], + "en_answers": [ + "150000" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-76": { + "question": "¿Cuál es una actividad popular para hacer en los parques en México?", + "en_question": "What is a popular activity to do in parks in your country?", + "annotations": [ + { + "answers": [ + "caminar", + "pasear" + ], + "en_answers": [ + "walking" + ], + "count": 3 + }, + { + "answers": [ + "correr" + ], + "en_answers": [ + "running", + "jogging" + ], + "count": 2 + }, + { + "answers": [ + "futbol", + "jugar futbol" + ], + "en_answers": [ + "playing soccer", + "playing football" + ], + "count": 2 + }, + { + "answers": [ + "pasear al perro" + ], + "en_answers": [ + "walking the dog" + ], + "count": 1 + }, + { + "answers": [ + "jugar" + ], + "en_answers": [ + "playing" + ], + "count": 1 + }, + { + "answers": [ + "relajarse" + ], + "en_answers": [ + "relaxing" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-78": { + "question": "¿Cuál es el nombre del festival de cine más famoso que se celebra en México?", + "en_question": "What is the name of the most famous film festival held in your country?", + "annotations": [ + { + "answers": [ + "festival de cine de morelia", + "festival de cine morelia" + ], + "en_answers": [ + "morelia film festival" + ], + "count": 2 + }, + { + "answers": [ + "festival internacional de cine unam" + ], + "en_answers": [ + "unam international film festival" + ], + "count": 1 + }, + { + "answers": [ + "cineteca nacional" + ], + "en_answers": [ + "national film archive festival" + ], + "count": 1 + }, + { + "answers": [ + "festival internacional de cine en guadalajara" + ], + "en_answers": [ + "guadalajara international film festival" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-83": { + "question": "¿Cuál es el juego de cartas popular que se juega durante las reuniones sociales en México?", + "en_question": "What is the popular card game played during social gatherings in your country?", + "annotations": [ + { + "answers": [ + "uno" + ], + "en_answers": [ + "uno" + ], + "count": 4 + }, + { + "answers": [ + "lotería", + "loteria" + ], + "en_answers": [ + "mexican bingo" + ], + "count": 2 + }, + { + "answers": [ + "barajas" + ], + "en_answers": [ + "cards" + ], + "count": 1 + }, + { + "answers": [ + "juego de oca" + ], + "en_answers": [ + "game of the goose" + ], + "count": 1 + }, + { + "answers": [ + "conquian" + ], + "en_answers": [ + "conquian" + ], + "count": 1 + }, + { + "answers": [ + "poker" + ], + "en_answers": [ + "poker" + ], + "count": 1 + }, + { + "answers": [ + "el burro" + ], + "en_answers": [ + "the donkey" + ], + "count": 1 + }, + { + "answers": [ + "siete y media" + ], + "en_answers": [ + "seven and a half" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-85": { + "question": "¿Cuál es el destino turístico en el extranjero más popular para la gente de México?", + "en_question": "Where is the most popular tourist destination abroad for people from your country?", + "annotations": [ + { + "answers": [ + "estados unidos" + ], + "en_answers": [ + "united states" + ], + "count": 3 + }, + { + "answers": [ + "parís", + "paris" + ], + "en_answers": [ + "paris" + ], + "count": 1 + }, + { + "answers": [ + "nueva york" + ], + "en_answers": [ + "new york" + ], + "count": 1 + }, + { + "answers": [ + "italia" + ], + "en_answers": [ + "italy" + ], + "count": 1 + }, + { + "answers": [ + "acapulco" + ], + "en_answers": [ + "acapulco" + ], + "count": 1 + }, + { + "answers": [ + "cancún" + ], + "en_answers": [ + "cancun" + ], + "count": 1 + }, + { + "answers": [ + "puerto vallarta" + ], + "en_answers": [ + "puerto vallarta" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-86": { + "question": "¿Cuál es el nombre de la torre más famosa de México?", + "en_question": "What is the name of the most famous tower in your country?", + "annotations": [ + { + "answers": [ + "torre latinoamericana", + "latinoamericana" + ], + "en_answers": [ + "latin american tower" + ], + "count": 4 + }, + { + "answers": [ + "la torre de reforma", + "reforma" + ], + "en_answers": [ + "reform tower" + ], + "count": 1 + }, + { + "answers": [ + "torre bbva", + "bbva" + ], + "en_answers": [ + "bbva méxico tower" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-01": { + "question": "¿Qué insecto comestible se consume más a menudo en México?", + "en_question": "What edible insect is eaten most often in your country?", + "annotations": [ + { + "answers": [ + "chapulines", + "grillos", + "chapulin" + ], + "en_answers": [ + "grasshoppers" + ], + "count": 5 + }, + { + "answers": [ + "asqueles" + ], + "en_answers": [ + "ants" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-04": { + "question": "¿Cuál es el producto agrícola que más se exporta en México?", + "en_question": "Which agricultural product is exported most often in your country?", + "annotations": [ + { + "answers": [ + "aguacate" + ], + "en_answers": [ + "avocado" + ], + "count": 3 + }, + { + "answers": [ + "jitomate" + ], + "en_answers": [ + "tomato" + ], + "count": 3 + }, + { + "answers": [ + "maíz", + "maiz" + ], + "en_answers": [ + "corn" + ], + "count": 2 + }, + { + "answers": [ + "trigo" + ], + "en_answers": [ + "wheat" + ], + "count": 1 + }, + { + "answers": [ + "chiles" + ], + "en_answers": [ + "chilies" + ], + "count": 1 + }, + { + "answers": [ + "zarzamora" + ], + "en_answers": [ + "blackberry" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-05": { + "question": "¿Cuáles son los dulces más populares en México?", + "en_question": "What are the most popular sweets in your country?", + "annotations": [ + { + "answers": [ + "mazapan" + ], + "en_answers": [ + "marzipan" + ], + "count": 2 + }, + { + "answers": [ + "pulparindo" + ], + "en_answers": [ + "tamarind pulp candy" + ], + "count": 2 + }, + { + "answers": [ + "cocada", + "dulce de coco" + ], + "en_answers": [ + "coconut candy" + ], + "count": 2 + }, + { + "answers": [ + "dulce de leche" + ], + "en_answers": [ + "dulce de leche" + ], + "count": 1 + }, + { + "answers": [ + "obleas" + ], + "en_answers": [ + "wafers" + ], + "count": 1 + }, + { + "answers": [ + "duvalin" + ], + "en_answers": [ + "duvalin" + ], + "count": 1 + }, + { + "answers": [ + "paleta payaso" + ], + "en_answers": [ + "payaso lollipop" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-15": { + "question": "¿Cuál es la bebida deportiva más popular en México?", + "en_question": "What is the most popular sports drink in your country?", + "annotations": [ + { + "answers": [ + "gatorade" + ], + "en_answers": [ + "gatorade" + ], + "count": 4 + }, + { + "answers": [ + "energizante" + ], + "en_answers": [ + "energy drink" + ], + "count": 1 + }, + { + "answers": [ + "agua" + ], + "en_answers": [ + "water" + ], + "count": 1 + }, + { + "answers": [ + "powerade" + ], + "en_answers": [ + "powerade" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-27": { + "question": "¿Cuál es el nivel educativo promedio de las personas en México?", + "en_question": "What is the average education level for people in your country?", + "annotations": [ + { + "answers": [ + "preparatoria" + ], + "en_answers": [ + "high school" + ], + "count": 2 + }, + { + "answers": [ + "secundaria" + ], + "en_answers": [ + "secondary school" + ], + "count": 2 + }, + { + "answers": [ + "bachillerato" + ], + "en_answers": [ + "bachelor" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-37": { + "question": "¿Cuál es la profesión que más estudian en el extranjero los estudiantes de México?", + "en_question": "Which profession is most commonly studied abroad by students from your country?", + "annotations": [ + { + "answers": [ + "ingenieria" + ], + "en_answers": [ + "engineering" + ], + "count": 2 + }, + { + "answers": [ + "medicina" + ], + "en_answers": [ + "medicine" + ], + "count": 2 + }, + { + "answers": [ + "ciencias" + ], + "en_answers": [ + "sciences" + ], + "count": 1 + }, + { + "answers": [ + "relaciones internacionales" + ], + "en_answers": [ + "international relations" + ], + "count": 1 + }, + { + "answers": [ + "gastronomía" + ], + "en_answers": [ + "cooking" + ], + "count": 1 + }, + { + "answers": [ + "negocios" + ], + "en_answers": [ + "business administration" + ], + "count": 1 + }, + { + "answers": [ + "administracion de negocios" + ], + "en_answers": [ + "business administration" + ], + "count": 1 + }, + { + "answers": [ + "derecho" + ], + "en_answers": [ + "law" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-60": { + "question": "¿Qué día de la semana la mayoría de las familias en México practican actividades religiosas? (por ejemplo, lunes, martes)", + "en_question": "Which day of the week do most families in your country practice religious activities? (e.g. Monday, Tuesday)", + "annotations": [ + { + "answers": [ + "domingo" + ], + "en_answers": [ + "sunday" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-65": { + "question": "¿Cuál es la forma más popular de celebrar el Día de la Independencia en México?", + "en_question": "What is the most popular way to celebrate Independence Day in your country?", + "annotations": [ + { + "answers": [ + "grito en el zocalo", + "grito de independencia", + "salir al centro" + ], + "en_answers": [ + "celebration in the main square", + "independence celebration", + "go downtown" + ], + "count": 2 + }, + { + "answers": [ + "comiendo", + "fiesta y comida" + ], + "en_answers": [ + "having a meal", + "party and food" + ], + "count": 2 + }, + { + "answers": [ + "bebiendo", + "beber" + ], + "en_answers": [ + "drinking" + ], + "count": 2 + }, + { + "answers": [ + "fiestas locales" + ], + "en_answers": [ + "local parties" + ], + "count": 1 + }, + { + "answers": [ + "comer pozole" + ], + "en_answers": [ + "eat a traditional stew made of pork and corn" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-68": { + "question": "¿Cuál es la bebida más popular entre los niños en México?", + "en_question": "What is the most popular beverage among children in your country?", + "annotations": [ + { + "answers": [ + "jugo", + "jugos" + ], + "en_answers": [ + "juice" + ], + "count": 3 + }, + { + "answers": [ + "coca cola" + ], + "en_answers": [ + "coca cola" + ], + "count": 2 + }, + { + "answers": [ + "refresco" + ], + "en_answers": [ + "soda" + ], + "count": 2 + }, + { + "answers": [ + "boing" + ], + "en_answers": [ + "juice-based drink" + ], + "count": 1 + }, + { + "answers": [ + "chocolate" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + }, + { + "answers": [ + "limonada" + ], + "en_answers": [ + "lemonade" + ], + "count": 1 + }, + { + "answers": [ + "aguas frescas" + ], + "en_answers": [ + "fresh waters" + ], + "count": 1 + }, + { + "answers": [ + "agua" + ], + "en_answers": [ + "water" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-76": { + "question": "¿Cuál es el lugar más popular en México para celebrar el Día de la Independencia?", + "en_question": "What is the most popular place in your country to celebrate Independence Day?", + "annotations": [ + { + "answers": [ + "ciudad de méxico", + "ciudad de mexico" + ], + "en_answers": [ + "mexico city" + ], + "count": 2 + }, + { + "answers": [ + "plaza comercial" + ], + "en_answers": [ + "shopping mall" + ], + "count": 1 + }, + { + "answers": [ + "plancha del zócalo" + ], + "en_answers": [ + "main square" + ], + "count": 1 + }, + { + "answers": [ + "ángel de la independencia", + "monumento a la independencia" + ], + "en_answers": [ + "angel of independence" + ], + "count": 1 + }, + { + "answers": [ + "san miguel de allende" + ], + "en_answers": [ + "san miguel de allende" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-78": { + "question": "¿Cómo se llama la canción que típicamente se canta en las fiestas de cumpleaños en México?", + "en_question": "What is the name of the song that is typically sung at birthday parties in your country?", + "annotations": [ + { + "answers": [ + "las mañanitas" + ], + "en_answers": [ + "las mañanitas" + ], + "count": 4 + }, + { + "answers": [ + "cumpleaños feliz" + ], + "en_answers": [ + "cumpleaños feliz" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-01": { + "question": "¿Qué bocadillos se venden usualmente frente a las escuelas en México?", + "en_question": "What snacks are usually sold in front of schools in your country?", + "annotations": [ + { + "answers": [ + "chicharrones", + "frituras", + "churros preparados" + ], + "en_answers": [ + "pork rinds", + "snacks", + "crisps", + "prepared churros" + ], + "count": 5 + }, + { + "answers": [ + "helados" + ], + "en_answers": [ + "ice cream" + ], + "count": 2 + }, + { + "answers": [ + "jicaletas" + ], + "en_answers": [ + "jicama popsicles" + ], + "count": 1 + }, + { + "answers": [ + "papas" + ], + "en_answers": [ + "chips", + "crisps" + ], + "count": 1 + }, + { + "answers": [ + "raspados" + ], + "en_answers": [ + "ice cones", + "snow cones" + ], + "count": 1 + }, + { + "answers": [ + "cocteles de fruta" + ], + "en_answers": [ + "fruit cocktails" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-09": { + "question": "¿Qué aceite se utiliza habitualmente para cocinar en México?", + "en_question": "What oil is usually used for cooking in your country?", + "annotations": [ + { + "answers": [ + "canola", + "de canola" + ], + "en_answers": [ + "canola", + "of canola" + ], + "count": 4 + }, + { + "answers": [ + "oliva", + "aceite de olivo" + ], + "en_answers": [ + "olive", + "olive oil" + ], + "count": 3 + }, + { + "answers": [ + "de soya" + ], + "en_answers": [ + "of soy" + ], + "count": 1 + }, + { + "answers": [ + "aguacate" + ], + "en_answers": [ + "avocado" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-10": { + "question": "¿Qué alimentos son comúnmente consumidos por mujeres embarazadas en México?", + "en_question": "What food is commonly consumed by pregnant women in your country?", + "annotations": [ + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + }, + { + "answers": [ + "pastel" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "tacos" + ], + "en_answers": [ + "tacos" + ], + "count": 1 + }, + { + "answers": [ + "pozole" + ], + "en_answers": [ + "a traditional soup or stew made of pork and corn" + ], + "count": 1 + }, + { + "answers": [ + "enchiladas" + ], + "en_answers": [ + "enchiladas" + ], + "count": 1 + }, + { + "answers": [ + "postres" + ], + "en_answers": [ + "desserts" + ], + "count": 1 + }, + { + "answers": [ + "comida picante" + ], + "en_answers": [ + "spicy food" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 2, + "not-applicable": 0 + } + }, + "New-su-15": { + "question": "¿Cuál es la bebida tradicional sin alcohol más popular en México?", + "en_question": "What is the most popular traditional non-alcoholic drink in your country?", + "annotations": [ + { + "answers": [ + "café" + ], + "en_answers": [ + "coffee" + ], + "count": 2 + }, + { + "answers": [ + "agua de horchata" + ], + "en_answers": [ + "horchata" + ], + "count": 2 + }, + { + "answers": [ + "atole" + ], + "en_answers": [ + "a traditional hot mexican beverage made from cornmeal and water or milk" + ], + "count": 1 + }, + { + "answers": [ + "agua de jamaica" + ], + "en_answers": [ + "hibiscus water" + ], + "count": 1 + }, + { + "answers": [ + "chocolate" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + }, + { + "answers": [ + "coca cola" + ], + "en_answers": [ + "coca cola" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-17": { + "question": "¿Qué instalaciones deportivas están generalmente disponibles en los parques en México?", + "en_question": "What sports facilities are generally available in parks in your country?", + "annotations": [ + { + "answers": [ + "canchas de fútbol", + "cancha de fútbol", + "cancha futbol", + "cancha de futbol" + ], + "en_answers": [ + "football fields", + "soccer fields", + "football field", + "soccer field" + ], + "count": 4 + }, + { + "answers": [ + "canchas de basquetbol", + "cancha de basquetball" + ], + "en_answers": [ + "basketball courts", + "basketball court" + ], + "count": 2 + }, + { + "answers": [ + "pista para correr" + ], + "en_answers": [ + "running track" + ], + "count": 1 + }, + { + "answers": [ + "canchas" + ], + "en_answers": [ + "courts" + ], + "count": 1 + }, + { + "answers": [ + "gimnasios al aire libre" + ], + "en_answers": [ + "outdoor gyms" + ], + "count": 1 + }, + { + "answers": [ + "juegos para niños" + ], + "en_answers": [ + "playgrounds" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-21": { + "question": "¿Cuáles son las actividades comunes que los adultos mayores suelen hacer en los parques en México?", + "en_question": "What are the common activities that seniors usually do in parks in your country?", + "annotations": [ + { + "answers": [ + "caminar" + ], + "en_answers": [ + "walking" + ], + "count": 4 + }, + { + "answers": [ + "jugar ajedrez" + ], + "en_answers": [ + "playing chess" + ], + "count": 1 + }, + { + "answers": [ + "platicar" + ], + "en_answers": [ + "chatting" + ], + "count": 1 + }, + { + "answers": [ + "alimentar a las aves" + ], + "en_answers": [ + "feeding the birds" + ], + "count": 1 + }, + { + "answers": [ + "bailar" + ], + "en_answers": [ + "dancing" + ], + "count": 1 + }, + { + "answers": [ + "sentarse" + ], + "en_answers": [ + "to sit down" + ], + "count": 1 + }, + { + "answers": [ + "pasear mascotas" + ], + "en_answers": [ + "walking pets" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-24": { + "question": "¿Qué deportes suelen jugar juntos los padres y los hijos en México?", + "en_question": "What sports do parents and children commonly play together in your country?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol", + "pelota futbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 5 + }, + { + "answers": [ + "basquetbol", + "básquet", + "basket ball" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-28": { + "question": "¿Qué color se asocia con la selección nacional de fútbol de México?", + "en_question": "What color is associated with the national soccer team of your country?", + "annotations": [ + { + "answers": [ + "verde" + ], + "en_answers": [ + "green" + ], + "count": 5 + }, + { + "answers": [ + "rojo" + ], + "en_answers": [ + "red" + ], + "count": 2 + }, + { + "answers": [ + "blanco" + ], + "en_answers": [ + "white" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-33": { + "question": "¿Cuál es el código de vestimenta común para los maestros de escuela en México?", + "en_question": "What is the common dress code for school teachers in your country?", + "annotations": [ + { + "answers": [ + "pantalon y camisa" + ], + "en_answers": [ + "trousers and shirt" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-34": { + "question": "¿Cuál es la actividad extracurricular relacionada con la música más popular en las escuelas de México?", + "en_question": "What is the most popular extracurricular activity related to music in schools in your country?", + "annotations": [ + { + "answers": [ + "guitarra", + "tocar guitarra" + ], + "en_answers": [ + "guitar", + "playing guitar" + ], + "count": 3 + }, + { + "answers": [ + "flauta" + ], + "en_answers": [ + "flute" + ], + "count": 2 + }, + { + "answers": [ + "coro" + ], + "en_answers": [ + "choir" + ], + "count": 1 + }, + { + "answers": [ + "convivios escolares" + ], + "en_answers": [ + "school gatherings" + ], + "count": 1 + }, + { + "answers": [ + "tocar bateria" + ], + "en_answers": [ + "paying drums" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-42": { + "question": "¿Qué religión se enseña principalmente en las escuelas de México?", + "en_question": "What religion is mainly taught in schools in your country?", + "annotations": [ + { + "answers": [ + "católica romana", + "catolicismo", + "catolica", + "catolico" + ], + "en_answers": [ + "roman catholic", + "catholicism", + "catholic" + ], + "count": 4 + }, + { + "answers": [ + "cristiana" + ], + "en_answers": [ + "christian" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-su-45": { + "question": "¿En qué fecha se celebra el Día de la Educación en México? (Proporcione en formato MM/DD (por ejemplo, 12/31).)", + "en_question": "What date is Education Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "05/15", + "15/05/2024" + ], + "en_answers": [ + "05/15" + ], + "count": 1 + }, + { + "answers": [ + "01/24" + ], + "en_answers": [ + "01/24" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "not-applicable": 2, + "no-answer": 1 + } + }, + "New-su-50": { + "question": "¿Cuál es la principal ocupación de la gente en las zonas montañosas de México?", + "en_question": "What is the main occupation of people in mountainous areas in your country?", + "annotations": [ + { + "answers": [ + "agricultura" + ], + "en_answers": [ + "agriculture" + ], + "count": 2 + }, + { + "answers": [ + "campesinos" + ], + "en_answers": [ + "farmers", + "farm workers" + ], + "count": 1 + }, + { + "answers": [ + "ganadería" + ], + "en_answers": [ + "livestock farming" + ], + "count": 1 + }, + { + "answers": [ + "mineria" + ], + "en_answers": [ + "mining" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-su-51": { + "question": "¿Cuál es la principal ocupación de las personas en las zonas costeras de México?", + "en_question": "What is the main occupation of people in coastal areas in your country?", + "annotations": [ + { + "answers": [ + "pesca" + ], + "en_answers": [ + "fishing" + ], + "count": 4 + }, + { + "answers": [ + "turismo" + ], + "en_answers": [ + "tourism" + ], + "count": 3 + }, + { + "answers": [ + "vendedor" + ], + "en_answers": [ + "sales person" + ], + "count": 1 + }, + { + "answers": [ + "comercio" + ], + "en_answers": [ + "trading" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-57": { + "question": "¿Cuál es el ganado más comúnmente criado en México?", + "en_question": "What is the most common livestock raised in your country?", + "annotations": [ + { + "answers": [ + "vacuno", + "bacuno", + "vaca", + "res", + "vacas" + ], + "en_answers": [ + "cows" + ], + "count": 4 + }, + { + "answers": [ + "porcino", + "cerdo", + "cerdos" + ], + "en_answers": [ + "pigs" + ], + "count": 3 + }, + { + "answers": [ + "pollo" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "cabras" + ], + "en_answers": [ + "goats" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-su-58": { + "question": "¿Qué animales se utilizan comúnmente para la agricultura en México?", + "en_question": "What animals are commonly used for agriculture in your country?", + "annotations": [ + { + "answers": [ + "burros" + ], + "en_answers": [ + "donkeys" + ], + "count": 3 + }, + { + "answers": [ + "caballos" + ], + "en_answers": [ + "horses" + ], + "count": 3 + }, + { + "answers": [ + "vacas" + ], + "en_answers": [ + "cows" + ], + "count": 2 + }, + { + "answers": [ + "perro" + ], + "en_answers": [ + "dog" + ], + "count": 1 + }, + { + "answers": [ + "mula" + ], + "en_answers": [ + "mule" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-59": { + "question": "¿Qué suelen usar los agricultores en México para protegerse del calor mientras trabajan en el campo?", + "en_question": "What do farmers in your country typically wear to protect themselves from the heat whilst farming?", + "annotations": [ + { + "answers": [ + "sombrero", + "sombreros", + "uso de sombreros" + ], + "en_answers": [ + "hat", + "hats" + ], + "count": 5 + }, + { + "answers": [ + "gorra" + ], + "en_answers": [ + "cap" + ], + "count": 1 + }, + { + "answers": [ + "camisa manga larga" + ], + "en_answers": [ + "long-sleeve shirt" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-60": { + "question": "¿Qué suelen comer los agricultores en México para el almuerzo?", + "en_question": "What do farmers in your country usually eat for lunch?", + "annotations": [ + { + "answers": [ + "frijol", + "frijoles y arroz", + "frijoles" + ], + "en_answers": [ + "beans" + ], + "count": 3 + }, + { + "answers": [ + "tortilla", + "tortillas" + ], + "en_answers": [ + "tortilla" + ], + "count": 2 + }, + { + "answers": [ + "arroz", + "frijoles y arroz" + ], + "en_answers": [ + "rice", + "rice" + ], + "count": 2 + }, + { + "answers": [ + "tacos" + ], + "en_answers": [ + "tacos" + ], + "count": 1 + }, + { + "answers": [ + "huevo" + ], + "en_answers": [ + "egg" + ], + "count": 1 + }, + { + "answers": [ + "guisos" + ], + "en_answers": [ + "stews" + ], + "count": 1 + }, + { + "answers": [ + "caldos" + ], + "en_answers": [ + "broths", + "soups" + ], + "count": 1 + }, + { + "answers": [ + "coca cola" + ], + "en_answers": [ + "coca cola" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-71": { + "question": "¿Qué regalos suelen dar los padres a sus hijos para sus cumpleaños en México?", + "en_question": "What gifts do parents generally give to their children for their birthdays in your country?", + "annotations": [ + { + "answers": [ + "juguetes" + ], + "en_answers": [ + "toys" + ], + "count": 2 + }, + { + "answers": [ + "reloj" + ], + "en_answers": [ + "watch" + ], + "count": 1 + }, + { + "answers": [ + "carros de juguete" + ], + "en_answers": [ + "toy cars" + ], + "count": 1 + }, + { + "answers": [ + "muñecos" + ], + "en_answers": [ + "dolls" + ], + "count": 1 + }, + { + "answers": [ + "perfumes" + ], + "en_answers": [ + "perfumes" + ], + "count": 1 + }, + { + "answers": [ + "ropas" + ], + "en_answers": [ + "clothes" + ], + "count": 1 + }, + { + "answers": [ + "zapatos" + ], + "en_answers": [ + "shoes" + ], + "count": 1 + }, + { + "answers": [ + "dispositivos electronicos" + ], + "en_answers": [ + "electronic devices" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-75": { + "question": "¿Qué vehículos poseen generalmente la mayoría de las familias en México?", + "en_question": "What type of vehicle do most families in your country generally own?", + "annotations": [ + { + "answers": [ + "nissan sedan", + "nissan particulares", + "carros", + "automovil", + "coches", + "autos" + ], + "en_answers": [ + "nissan sedan", + "cars", + "car" + ], + "count": 3 + }, + { + "answers": [ + "motocicletas", + "motos" + ], + "en_answers": [ + "motorcycles" + ], + "count": 1 + }, + { + "answers": [ + "coches pequeños", + "coches pequeños (chevy", + "autos compactos" + ], + "en_answers": [ + "small cars", + "compact cars" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-77": { + "question": "¿Qué se les suele dar a los niños durante el Eid en México?", + "en_question": "What is usually given to the children during Eid in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "New-su-81": { + "question": "¿Qué ropa suelen llevar los novios en las bodas en México?", + "en_question": "What clothes do grooms usually wear at weddings in your country?", + "annotations": [ + { + "answers": [ + "traje", + "traje formal", + "traje y vestido" + ], + "en_answers": [ + "suit" + ], + "count": 4 + }, + { + "answers": [ + "smokin", + "vestido de novia y smokin" + ], + "en_answers": [ + "tuxedo" + ], + "count": 2 + }, + { + "answers": [ + "vestido de novia", + "vestido de novia y smokin" + ], + "en_answers": [ + "wedding dress" + ], + "count": 1 + }, + { + "answers": [ + "vestido", + "traje y vestido" + ], + "en_answers": [ + "dress" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-82": { + "question": "¿Qué ropa suelen llevar las novias en las bodas en México?", + "en_question": "What clothes do brides usually wear at weddings in your country?", + "annotations": [ + { + "answers": [ + "vestido blanco" + ], + "en_answers": [ + "white dress" + ], + "count": 2 + }, + { + "answers": [ + "vestido blanco de novia", + "vestidos de novia amplios blancos" + ], + "en_answers": [ + "white wedding dress", + "wide white wedding dresses" + ], + "count": 2 + }, + { + "answers": [ + "ropa blanca" + ], + "en_answers": [ + "white clothes" + ], + "count": 1 + }, + { + "answers": [ + "velos" + ], + "en_answers": [ + "veils" + ], + "count": 1 + }, + { + "answers": [ + "vestidos tipo coctel blancos" + ], + "en_answers": [ + "white cocktail dresses" + ], + "count": 1 + }, + { + "answers": [ + "vestidos color marfil" + ], + "en_answers": [ + "ivory-colored dresses" + ], + "count": 1 + }, + { + "answers": [ + "beige", + "beige etc" + ], + "en_answers": [ + "beige" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-83": { + "question": "¿Qué comida se sirve habitualmente en las bodas en México?", + "en_question": "What food is usually served at weddings in your country?", + "annotations": [ + { + "answers": [ + "pollo" + ], + "en_answers": [ + "chicken" + ], + "count": 2 + }, + { + "answers": [ + "mole con pollo", + "mole" + ], + "en_answers": [ + "chicken with mole sauce", + "mole sauce" + ], + "count": 2 + }, + { + "answers": [ + "espagueti" + ], + "en_answers": [ + "spaghetti" + ], + "count": 1 + }, + { + "answers": [ + "carnitas" + ], + "en_answers": [ + "carnitas" + ], + "count": 1 + }, + { + "answers": [ + "arroz con mole" + ], + "en_answers": [ + "rice with mole" + ], + "count": 1 + }, + { + "answers": [ + "pozole" + ], + "en_answers": [ + "a traditional soup or stew" + ], + "count": 1 + }, + { + "answers": [ + "tacos" + ], + "en_answers": [ + "tacos" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-86": { + "question": "¿Cuál es el edificio gubernamental más famoso de México?", + "en_question": "What is the most famous government building in your country?", + "annotations": [ + { + "answers": [ + "palacio de gobierno", + "el palacio nacional", + "el palacio de gobierno en cdmx", + "palacio nacional" + ], + "en_answers": [ + "government palace", + "the national palace", + "the government palace in mexico city", + "national palace" + ], + "count": 5 + }, + { + "answers": [ + "el edificio de hacienda", + "museo de la secretaría de hacienda y crédito público" + ], + "en_answers": [ + "the treasury building" + ], + "count": 1 + }, + { + "answers": [ + "los pinos", + "residencia oficial de los pinos", + "complejo cultural los pinos" + ], + "en_answers": [ + "los pinos" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-88": { + "question": "¿Cuál es el género musical más popular entre la población joven en México?", + "en_question": "What is the most popular music genre among the younger population in your country?", + "annotations": [ + { + "answers": [ + "reggaeton", + "reaggeton", + "reguetón", + "reggaetón" + ], + "en_answers": [ + "reggaeton" + ], + "count": 4 + }, + { + "answers": [ + "corridos" + ], + "en_answers": [ + "political ballads", + "folk music" + ], + "count": 3 + }, + { + "answers": [ + "pop" + ], + "en_answers": [ + "pop music" + ], + "count": 2 + }, + { + "answers": [ + "banda" + ], + "en_answers": [ + "band music" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-02": { + "question": "¿A qué hora suelen salir los estudiantes de secundaria en México cada día? (Proporcionar en formato HH:MM, por ejemplo, 18:00, 09:00).", + "en_question": "What time do middle school students in your country typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 2 + }, + { + "answers": [ + "15:00" + ], + "en_answers": [ + "15:00" + ], + "count": 2 + }, + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 1 + }, + { + "answers": [ + "16:00" + ], + "en_answers": [ + "16:00" + ], + "count": 1 + }, + { + "answers": [ + "19:00" + ], + "en_answers": [ + "19:00" + ], + "count": 1 + }, + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-03": { + "question": "¿A qué edad suelen las personas en México ir a la universidad? (Proporciona solo números arábigos, por ejemplo, 12.)", + "en_question": "At what age do people in your country typically go to university? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 5 + }, + { + "answers": [ + "17" + ], + "en_answers": [ + "17" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-06": { + "question": "¿A partir de qué edad las personas deben asistir a la educación obligatoria en México? (Proporciona solo números arábigos, por ejemplo, 12.)", + "en_question": "From what age do people need to attend compulsory education in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 3 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 2 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-09": { + "question": "¿Cuántos días a la semana asisten los niños a la escuela en México? (Proporcione únicamente números arábigos (0~7).)", + "en_question": "How many days a week do children attend school in your country? (Provide Arabic numerals (0~7) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-11": { + "question": "¿Cuánto tiempo (en años) se tarda típicamente en completar una Maestría en México? (Proporciona solo números arábigos, por ejemplo, 2).", + "en_question": "In your country, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 4 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-12": { + "question": "¿Cuál es la universidad más prestigiosa de México? (Proporciona el nombre oficial.)", + "en_question": "What is the top university in your country? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "universidad autónoma de méxico", + "unam", + "universidad nacional autonoma de mexico" + ], + "en_answers": [ + "national autonomous university of mexico" + ], + "count": 3 + }, + { + "answers": [ + "uvm" + ], + "en_answers": [ + "valle de mexico university" + ], + "count": 1 + }, + { + "answers": [ + "tecnológico de monterrey", + "tec de monterrey" + ], + "en_answers": [ + "monterrey institute of technology" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-13": { + "question": "¿A qué edad se gradúa la mayoría de las personas en México de la universidad? (Proporciona solo números arábigos, por ejemplo, 12.)", + "en_question": "At what age do most people in your country graduate from university? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 2 + }, + { + "answers": [ + "23" + ], + "en_answers": [ + "23" + ], + "count": 2 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-15": { + "question": "¿A qué edad suelen los niños en México comenzar la secundaria? (Proporcione solo números arábigos, por ejemplo, 12.)", + "en_question": "At what age do children in your country generally start middle school? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 4 + }, + { + "answers": [ + "13" + ], + "en_answers": [ + "13" + ], + "count": 3 + }, + { + "answers": [ + "11" + ], + "en_answers": [ + "11" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-17": { + "question": "¿Cuántas horas a la semana trabaja típicamente un trabajador de tiempo completo en México? (Proporcione solo números arábigos (por ejemplo, 12).)", + "en_question": "How many hours a week does a full-time worker in your country typically work? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "45" + ], + "en_answers": [ + "45" + ], + "count": 1 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + }, + { + "answers": [ + "48" + ], + "en_answers": [ + "48" + ], + "count": 1 + }, + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + }, + { + "answers": [ + "50" + ], + "en_answers": [ + "50" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-19": { + "question": "¿Cuántos días a la semana trabaja un trabajador de tiempo completo en México? (Proporcione solo números arábigos (0~7).)", + "en_question": "How many days a week does a full-time worker work in your country? (Provide Arabic numerals (0~7) only.)", + "annotations": [ + { + "answers": [ + "6", + "6-7" + ], + "en_answers": [ + "6" + ], + "count": 4 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 3 + }, + { + "answers": [ + "7", + "6-7" + ], + "en_answers": [ + "7" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-20": { + "question": "¿A qué edad comienza a trabajar la mayoría de las personas en México? (Proporcione solo números arábigos (por ejemplo, 12).)", + "en_question": "At what age do most people start working in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "16" + ], + "en_answers": [ + "16" + ], + "count": 2 + }, + { + "answers": [ + "23" + ], + "en_answers": [ + "23" + ], + "count": 1 + }, + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 1 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 1 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-21": { + "question": "¿A partir de qué edad se permite trabajar a un individuo en México? (Proporcione únicamente números arábigos (por ejemplo, 12).)", + "en_question": "From what age is an individual allowed to work in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 3 + }, + { + "answers": [ + "16" + ], + "en_answers": [ + "16" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-31": { + "question": "¿Qué comen tradicionalmente las personas en México el Día de Navidad?", + "en_question": "What do people in your country traditionally eat on Christmas Day?", + "annotations": [ + { + "answers": [ + "pavo" + ], + "en_answers": [ + "turkey" + ], + "count": 3 + }, + { + "answers": [ + "romeritos" + ], + "en_answers": [ + "seepweed stew" + ], + "count": 2 + }, + { + "answers": [ + "tamales" + ], + "en_answers": [ + "tamales" + ], + "count": 2 + }, + { + "answers": [ + "bacalao" + ], + "en_answers": [ + "cod" + ], + "count": 1 + }, + { + "answers": [ + "pierna de cerdo", + "pierna" + ], + "en_answers": [ + "leg of pork" + ], + "count": 1 + }, + { + "answers": [ + "chiles rellenos" + ], + "en_answers": [ + "stuffed chilli peppers" + ], + "count": 1 + }, + { + "answers": [ + "pasta" + ], + "en_answers": [ + "pasta" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-37": { + "question": "¿Cómo se llama el día del año en que la gente en México celebra el amor y el romance?", + "en_question": "What is the name of the day of the year where people in your country celebrate love and romance?", + "annotations": [ + { + "answers": [ + "día del amor y la amistad", + "14 de febrero", + "día de san valentín", + "san valentín", + "san valentin" + ], + "en_answers": [ + "day of love and friendship", + "valentine's day" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-40": { + "question": "¿Cuál es la canción de Navidad más popular en México?", + "en_question": "What is the most popular Christmas song in your country?", + "annotations": [ + { + "answers": [ + "feliz navidad" + ], + "en_answers": [ + "merry christmas" + ], + "count": 2 + }, + { + "answers": [ + "los peces en el río", + "peces en el rio" + ], + "en_answers": [ + "the fish in the river" + ], + "count": 2 + }, + { + "answers": [ + "burrito sabanero" + ], + "en_answers": [ + "the little donkey from the savannah" + ], + "count": 1 + }, + { + "answers": [ + "santa claus llegó a la ciudad" + ], + "en_answers": [ + "santa claus is coming to town" + ], + "count": 1 + }, + { + "answers": [ + "rodolfo el reno" + ], + "en_answers": [ + "rudolph the reindeer" + ], + "count": 1 + }, + { + "answers": [ + "campana sobre campana" + ], + "en_answers": [ + "bell over bell" + ], + "count": 1 + }, + { + "answers": [ + "jingle bells" + ], + "en_answers": [ + "jingle bells" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-04": { + "question": "¿Cuántos semestres hay en cada año académico en las preparatorias de México? (Proporcionar solo en números arábigos (por ejemplo, 7, 8).)", + "en_question": "How many semesters are there each academic year at high schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 4 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-05": { + "question": "¿En qué mes suele comenzar el nuevo año escolar en México? (Proporcione solo números arábigos (1~12).)", + "en_question": "In which month does the new school year typically begin in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 4 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-06": { + "question": "¿Cuándo se conmemora el Día Nacional del Maestro en México? (Proporcionar en formato MM/DD (por ejemplo, 12/31).)", + "en_question": "When is National Teacher's Day commemorated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "05/15" + ], + "en_answers": [ + "05/15" + ], + "count": 4 + }, + { + "answers": [ + "04/15" + ], + "en_answers": [ + "04/15" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-11": { + "question": "¿A qué hora comienza la escuela primaria en México? (Proporcionar en formato HH:MM (por ejemplo, 18:00, 09:00).)", + "en_question": "At what time does elementary school start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 4 + }, + { + "answers": [ + "07:00" + ], + "en_answers": [ + "07:00" + ], + "count": 2 + }, + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-20": { + "question": "¿Cuándo se celebra el Día del Niño en México? (Proporcionar en formato MM/DD (por ejemplo, 12/31).)", + "en_question": "When is Children's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "04/30", + "04/ 30" + ], + "en_answers": [ + "04/30" + ], + "count": 4 + }, + { + "answers": [ + "04/31" + ], + "en_answers": [ + "04/31" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-40": { + "question": "¿Cuál ciudad es el principal destino para los buscadores de empleo en México?", + "en_question": "Which city is the main destination for job seekers in your country?", + "annotations": [ + { + "answers": [ + "cdmx", + "ciudad de méxico", + "ciudad de mexico" + ], + "en_answers": [ + "mexico city" + ], + "count": 5 + }, + { + "answers": [ + "guadalajara" + ], + "en_answers": [ + "guadalajara" + ], + "count": 3 + }, + { + "answers": [ + "monterrey" + ], + "en_answers": [ + "monterrey" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-1": { + "question": "¿Cuál es la cadena de comida rápida más popular de México?", + "en_question": "What is your country's most popular fast food chain?", + "annotations": [ + { + "answers": [ + "kfc" + ], + "en_answers": [ + "kentucky fried chicken" + ], + "count": 2 + }, + { + "answers": [ + "little caesars", + "little ceasar's" + ], + "en_answers": [ + "little caesars", + "little caesar's" + ], + "count": 2 + }, + { + "answers": [ + "mc donalds", + "mcdonalds" + ], + "en_answers": [ + "mcdonald's" + ], + "count": 2 + }, + { + "answers": [ + "domino's" + ], + "en_answers": [ + "domino's" + ], + "count": 1 + }, + { + "answers": [ + "burger king" + ], + "en_answers": [ + "burger king" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Sa-en-13": { + "question": "¿Cuál es la comida que más divide (o se ama o se odia) en México?", + "en_question": "What is the food that is most divisive (either love or hate) in your country?", + "annotations": [ + { + "answers": [ + "tortas de tamal", + "tortas de tamales", + "torta de tamal" + ], + "en_answers": [ + "tamal sandwiches", + "tamale sandwich" + ], + "count": 2 + }, + { + "answers": [ + "quesadillas" + ], + "en_answers": [ + "quesadillas" + ], + "count": 1 + }, + { + "answers": [ + "tortas ahogadas" + ], + "en_answers": [ + "drowned sandwiches" + ], + "count": 1 + }, + { + "answers": [ + "moronga" + ], + "en_answers": [ + "blood sausage" + ], + "count": 1 + }, + { + "answers": [ + "tacos de tripa" + ], + "en_answers": [ + "tripe tacos" + ], + "count": 1 + }, + { + "answers": [ + "mariscos" + ], + "en_answers": [ + "seafood" + ], + "count": 1 + }, + { + "answers": [ + "pozole" + ], + "en_answers": [ + "a traditional soup or stew made of pork and corn" + ], + "count": 1 + }, + { + "answers": [ + "mole" + ], + "en_answers": [ + "traditional sauce" + ], + "count": 1 + }, + { + "answers": [ + "menudo" + ], + "en_answers": [ + "tripe soup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-16": { + "question": "¿Cuál es el equipo de fútbol más popular entre la gente de México?", + "en_question": "What is the most popular soccer team among the people from your country?", + "annotations": [ + { + "answers": [ + "américa", + "america" + ], + "en_answers": [ + "america" + ], + "count": 5 + }, + { + "answers": [ + "cruz azul" + ], + "en_answers": [ + "cruz azul" + ], + "count": 3 + }, + { + "answers": [ + "chivas", + "guadalajara" + ], + "en_answers": [ + "goats", + "guadalajara" + ], + "count": 3 + }, + { + "answers": [ + "tigres" + ], + "en_answers": [ + "tigers" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-22": { + "question": "¿Cuál es la universidad más famosa de México conocida por su equipo deportivo?", + "en_question": "What is the most famous university in your country known for its sports team?", + "annotations": [ + { + "answers": [ + "unam", + "universidad nacional autónoma de méxico" + ], + "en_answers": [ + "national autonomous university of mexico" + ], + "count": 5 + }, + { + "answers": [ + "tec", + "tecnológico de monterrey", + "tec de monerrey" + ], + "en_answers": [ + "monterrey institute of technology" + ], + "count": 2 + }, + { + "answers": [ + "universidad autónoma de nuevo león", + "universidad autonoma de nuevo leon" + ], + "en_answers": [ + "autonomous university of nuevo leon" + ], + "count": 1 + }, + { + "answers": [ + "universidad de guadalajara" + ], + "en_answers": [ + "university of guadalajara" + ], + "count": 1 + }, + { + "answers": [ + "ipn", + "instituto politécnico nacional" + ], + "en_answers": [ + "national polytechnic institute" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-31": { + "question": "¿Cuál es la mascota familiar más popular de México?", + "en_question": "What is your country's most popular family pet?", + "annotations": [ + { + "answers": [ + "perro" + ], + "en_answers": [ + "dog" + ], + "count": 5 + }, + { + "answers": [ + "gato" + ], + "en_answers": [ + "cat" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-32": { + "question": "¿Cuál es el programa de televisión familiar más popular en México?", + "en_question": "What is the most popular family TV show in your country?", + "annotations": [ + { + "answers": [ + "chabelo", + "en familia con chabelo" + ], + "en_answers": [ + "chabelo" + ], + "count": 1 + }, + { + "answers": [ + "hoy" + ], + "en_answers": [ + "hoy" + ], + "count": 1 + }, + { + "answers": [ + "el chavo del 8" + ], + "en_answers": [ + "the kid from number 8" + ], + "count": 1 + }, + { + "answers": [ + "me caigo de risa" + ], + "en_answers": [ + "i'm dying of laughter" + ], + "count": 1 + }, + { + "answers": [ + "la familia peluche" + ], + "en_answers": [ + "the plush family" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-37": { + "question": "¿Cuál es el juego de mesa familiar más popular en México?", + "en_question": "What is the most popular family boardgame in your country?", + "annotations": [ + { + "answers": [ + "loteria", + "lotería" + ], + "en_answers": [ + "mexican bingo" + ], + "count": 4 + }, + { + "answers": [ + "uno" + ], + "en_answers": [ + "one" + ], + "count": 2 + }, + { + "answers": [ + "turista mundial" + ], + "en_answers": [ + "world tourist" + ], + "count": 1 + }, + { + "answers": [ + "domino" + ], + "en_answers": [ + "domino" + ], + "count": 1 + }, + { + "answers": [ + "cartas" + ], + "en_answers": [ + "cards" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-6": { + "question": "¿Cuál es la comida para llevar más popular en México?", + "en_question": "What is the most popular takeaway food in your country?", + "annotations": [ + { + "answers": [ + "tortas", + "sandwich", + "torta" + ], + "en_answers": [ + "sandwiches", + "sandwich" + ], + "count": 5 + }, + { + "answers": [ + "tacos" + ], + "en_answers": [ + "tacos" + ], + "count": 3 + }, + { + "answers": [ + "quesadillas" + ], + "en_answers": [ + "quesadillas" + ], + "count": 2 + }, + { + "answers": [ + "burrito" + ], + "en_answers": [ + "burrito" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-7": { + "question": "¿Cuáles son los antojitos populares en México?", + "en_question": "What are popular snacks in your country?", + "annotations": [ + { + "answers": [ + "tostadas" + ], + "en_answers": [ + "tostadas" + ], + "count": 2 + }, + { + "answers": [ + "enchiladas" + ], + "en_answers": [ + "enchiladas" + ], + "count": 2 + }, + { + "answers": [ + "gorditas" + ], + "en_answers": [ + "thick stuffed tortillas" + ], + "count": 2 + }, + { + "answers": [ + "flautas", + "tacos dorados" + ], + "en_answers": [ + "flautas", + "fried tacos" + ], + "count": 2 + }, + { + "answers": [ + "sopes" + ], + "en_answers": [ + "thick tortillas with toppings" + ], + "count": 1 + }, + { + "answers": [ + "elotes en vaso", + "esquites" + ], + "en_answers": [ + "corn in a cup" + ], + "count": 1 + }, + { + "answers": [ + "helados" + ], + "en_answers": [ + "ice cream" + ], + "count": 1 + }, + { + "answers": [ + "quesadillas" + ], + "en_answers": [ + "quesadilla" + ], + "count": 1 + }, + { + "answers": [ + "pozole" + ], + "en_answers": [ + "a traditional soup or stew made of pork and corn" + ], + "count": 1 + }, + { + "answers": [ + "tacos" + ], + "en_answers": [ + "tacos" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-9": { + "question": "¿Qué comen las personas de México en la playa?", + "en_question": "What do people from your country eat at the beach?", + "annotations": [ + { + "answers": [ + "mariscos" + ], + "en_answers": [ + "seafood" + ], + "count": 2 + }, + { + "answers": [ + "pescado a las brasas" + ], + "en_answers": [ + "grilled fish" + ], + "count": 1 + }, + { + "answers": [ + "cocktel de camarón" + ], + "en_answers": [ + "shrimp cocktail" + ], + "count": 1 + }, + { + "answers": [ + "esquites" + ], + "en_answers": [ + "corn in a cup" + ], + "count": 1 + }, + { + "answers": [ + "cerveza" + ], + "en_answers": [ + "beer" + ], + "count": 1 + }, + { + "answers": [ + "dulces" + ], + "en_answers": [ + "sweets" + ], + "count": 1 + }, + { + "answers": [ + "sandwiches" + ], + "en_answers": [ + "sandwiches" + ], + "count": 1 + }, + { + "answers": [ + "camarones" + ], + "en_answers": [ + "shrimp" + ], + "count": 1 + }, + { + "answers": [ + "bebidas frias" + ], + "en_answers": [ + "cold drinks" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-10": { + "question": "¿A qué edad suelen casarse los hombres en México? (Proporcione solo números arábigos (por ejemplo, 20).)", + "en_question": "At what age do men usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 3 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 2 + }, + { + "answers": [ + "28" + ], + "en_answers": [ + "28" + ], + "count": 2 + }, + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-11": { + "question": "¿A qué edad suelen casarse las mujeres en México? (Proporcione solo números arábigos, por ejemplo, 20.)", + "en_question": "At what age do women usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 2 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + }, + { + "answers": [ + "27" + ], + "en_answers": [ + "27" + ], + "count": 1 + }, + { + "answers": [ + "21" + ], + "en_answers": [ + "21" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-13": { + "question": "En la generación de tus padres, ¿cuál era el número promedio de miembros en sus familias en México? (Proporciona únicamente números arábigos, por ejemplo, 20.)", + "en_question": "In your parents' generation, what was the average number of members in their family in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 3 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 2 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-17": { + "question": "En los Juegos Olímpicos, ¿cuál es el deporte más popular en México?", + "en_question": "In the Olympic Games, which sport is the most popular in your country?", + "annotations": [ + { + "answers": [ + "clavados" + ], + "en_answers": [ + "diving" + ], + "count": 3 + }, + { + "answers": [ + "fútbol", + "futbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 2 + }, + { + "answers": [ + "atletismo" + ], + "en_answers": [ + "athletics" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ta-pe-21": { + "question": "¿Dónde suelen jugar fútbol los niños en México?", + "en_question": "Where do children usually play soccer in your country?", + "annotations": [ + { + "answers": [ + "en la calle", + "calle" + ], + "en_answers": [ + "on the street", + "street" + ], + "count": 3 + }, + { + "answers": [ + "en parques", + "parque" + ], + "en_answers": [ + "in parks", + "park" + ], + "count": 2 + }, + { + "answers": [ + "patio de la escuela", + "escuela" + ], + "en_answers": [ + "schoolyard", + "school" + ], + "count": 2 + }, + { + "answers": [ + "en unidades deportivas" + ], + "en_answers": [ + "in sports units" + ], + "count": 1 + }, + { + "answers": [ + "cancha" + ], + "en_answers": [ + "court" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-22": { + "question": "¿Qué ejercicio diario es popular entre las mujeres en México?", + "en_question": "Which daily exercise is popular among women in your country?", + "annotations": [ + { + "answers": [ + "zumba" + ], + "en_answers": [ + "zumba" + ], + "count": 5 + }, + { + "answers": [ + "pilates" + ], + "en_answers": [ + "pilates" + ], + "count": 2 + }, + { + "answers": [ + "bicicleta estacionaria" + ], + "en_answers": [ + "stationary bike" + ], + "count": 1 + }, + { + "answers": [ + "cycling" + ], + "en_answers": [ + "ciclismo" + ], + "count": 1 + }, + { + "answers": [ + "caminar" + ], + "en_answers": [ + "walking" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-23": { + "question": "¿Qué ejercicio diario es popular entre los hombres en México?", + "en_question": "Which daily exercise is popular among men in your country?", + "annotations": [ + { + "answers": [ + "pesas", + "gym", + "gimnasio" + ], + "en_answers": [ + "weight lifting", + "gym" + ], + "count": 4 + }, + { + "answers": [ + "fútbol", + "futbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 3 + }, + { + "answers": [ + "correr" + ], + "en_answers": [ + "running", + "jogging" + ], + "count": 2 + }, + { + "answers": [ + "baloncesto", + "basquet" + ], + "en_answers": [ + "basketball", + "basquetbol" + ], + "count": 2 + }, + { + "answers": [ + "caminar" + ], + "en_answers": [ + "walking" + ], + "count": 1 + }, + { + "answers": [ + "box", + "deportes de contacto (box", + "boxeo" + ], + "en_answers": [ + "boxing" + ], + "count": 1 + }, + { + "answers": [ + "karate" + ], + "en_answers": [ + "karate" + ], + "count": 1 + }, + { + "answers": [ + "judo", + "judo)" + ], + "en_answers": [ + "judo" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-25": { + "question": "¿Cuál es la rivalidad más famosa en una liga deportiva nacional en México? (por ejemplo, ___ vs ___)", + "en_question": "What is the most famous rivalry in a national sports league in your country? (e.g., ___ vs ___)", + "annotations": [ + { + "answers": [ + "américa vs chivas", + "guadalajara vs américa", + "america vs chivas", + "america vs guadalajara" + ], + "en_answers": [ + "america vs chivas", + "guadalajara vs america", + "america vs guadalajara" + ], + "count": 4 + }, + { + "answers": [ + "america vs cruz azul" + ], + "en_answers": [ + "america vs cruz azul" + ], + "count": 1 + }, + { + "answers": [ + "rayados vs tigres" + ], + "en_answers": [ + "rayados vs trigres" + ], + "count": 1 + }, + { + "answers": [ + "chivas vs atlas" + ], + "en_answers": [ + "chivas vs atlas" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-29": { + "question": "¿Cuál es el deporte profesional mejor pagado en México?", + "en_question": "Which professional sport is the highest paying in your country?", + "annotations": [ + { + "answers": [ + "futbol", + "fútbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 5 + }, + { + "answers": [ + "tenis" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + }, + { + "answers": [ + "automovilismo" + ], + "en_answers": [ + "auto racing" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-30": { + "question": "¿Cuál es/fue el programa de televisión relacionado con deportes más popular en México?", + "en_question": "What is/was the most popular sports-related TV program in your country?", + "annotations": [ + { + "answers": [ + "la jugada" + ], + "en_answers": [ + "the play" + ], + "count": 3 + }, + { + "answers": [ + "futbol picante" + ], + "en_answers": [ + "spicy soccer" + ], + "count": 1 + }, + { + "answers": [ + "la ultima palabra" + ], + "en_answers": [ + "the last word" + ], + "count": 1 + }, + { + "answers": [ + "televisa deportes" + ], + "en_answers": [ + "televisa sports" + ], + "count": 1 + }, + { + "answers": [ + "acción" + ], + "en_answers": [ + "actions" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-32": { + "question": "¿Qué día del año se dedica usualmente a los fuegos artificiales en México?", + "en_question": "What day of the year is usually dedicated to fireworks in your country?", + "annotations": [ + { + "answers": [ + "año nuevo", + "31 de diciembre", + "31 diciembre" + ], + "en_answers": [ + "new year", + "december 31" + ], + "count": 5 + }, + { + "answers": [ + "dia de la independencia", + "independencia", + "15 de septiembre", + "día de la independencia" + ], + "en_answers": [ + "independence day", + "independence", + "september 15" + ], + "count": 3 + }, + { + "answers": [ + "navidad" + ], + "en_answers": [ + "navidad" + ], + "count": 1 + }, + { + "answers": [ + "12 de diciembre", + "day of the virgin of guadalupe" + ], + "en_answers": [ + "december 12" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-37": { + "question": "¿Cuál es el símbolo común de la Nochevieja que usualmente se encuentra en México?", + "en_question": "What is the common symbol of New Year's Eve that is usually found in your country?", + "annotations": [ + { + "answers": [ + "la noche buena", + "nochebuenas", + "flor de nochebuena", + "nochebuena" + ], + "en_answers": [ + "poinsettia flower", + "poinsettias" + ], + "count": 4 + }, + { + "answers": [ + "el viejo" + ], + "en_answers": [ + "the old man" + ], + "count": 1 + }, + { + "answers": [ + "fuegos artificiales" + ], + "en_answers": [ + "fireworks" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-42": { + "question": "¿Qué comida suelen comer las personas de México en la víspera de Año Nuevo?", + "en_question": "What food do people from your country usually eat on New Year's Eve?", + "annotations": [ + { + "answers": [ + "pavo", + "pierna pavo" + ], + "en_answers": [ + "turkey", + "turkey leg" + ], + "count": 3 + }, + { + "answers": [ + "bacalao" + ], + "en_answers": [ + "cod" + ], + "count": 2 + }, + { + "answers": [ + "tamales" + ], + "en_answers": [ + "tamales" + ], + "count": 2 + }, + { + "answers": [ + "romeritos" + ], + "en_answers": [ + "seepweed" + ], + "count": 2 + }, + { + "answers": [ + "pasta" + ], + "en_answers": [ + "pasta" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-45": { + "question": "¿Qué se suele comer durante la celebración de la noche más larga del año en México?", + "en_question": "What is usually eaten during the celebration of the longest night of the year in your country?", + "annotations": [ + { + "answers": [ + "pan de muerto" + ], + "en_answers": [ + "bread of the dead" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "no-answer": 1, + "idk": 0 + } + }, + "Th-en-01": { + "question": "¿Cuál es el deporte de verano más popular en México?", + "en_question": "What is the most popular summer sport in your country?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 4 + }, + { + "answers": [ + "beisbol" + ], + "en_answers": [ + "baseball" + ], + "count": 1 + }, + { + "answers": [ + "volleybal de playa" + ], + "en_answers": [ + "beach volleyball" + ], + "count": 1 + }, + { + "answers": [ + "natación", + "nadar" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-03": { + "question": "¿Cuál es la liga profesional de deportes más popular en México?", + "en_question": "What is the most popular professional sports league in your country?", + "annotations": [ + { + "answers": [ + "liga mx", + "liga mexicana de futbol", + "liga bbva mx", + "bbva", + "liga mexicana de fútbol", + "futbol" + ], + "en_answers": [ + "liga mx", + "mexican soccer league", + "mexican football league", + "liga bbva mx" + ], + "count": 5 + }, + { + "answers": [ + "lucha libre aaa", + "triple a" + ], + "en_answers": [ + "lucha libre aaa" + ], + "count": 1 + }, + { + "answers": [ + "liga mexicana de beisbol", + "béisbol" + ], + "en_answers": [ + "mexican baseball league" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-05": { + "question": "¿Cuál es el equipo deportivo femenino más popular en México?", + "en_question": "What is the most popular women's sports team in your country?", + "annotations": [ + { + "answers": [ + "gimnasia" + ], + "en_answers": [ + "gymnastics" + ], + "count": 1 + }, + { + "answers": [ + "américa femenil", + "america femenil" + ], + "en_answers": [ + "america women's team" + ], + "count": 1 + }, + { + "answers": [ + "selección mexicana de fútbol femenil", + "selección mexicana de fútbol" + ], + "en_answers": [ + "mexican national women's soccer team" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Th-en-09": { + "question": "¿Cuál es el torneo más popular en México?", + "en_question": "What is the most popular tournament in your country?", + "annotations": [ + { + "answers": [ + "liga mx", + "futbol liga mx", + "liga mx futból" + ], + "en_answers": [ + "mexican soccer league", + "mexican football league" + ], + "count": 4 + }, + { + "answers": [ + "fifa" + ], + "en_answers": [ + "fifa world cup" + ], + "count": 1 + }, + { + "answers": [ + "copa azteca" + ], + "en_answers": [ + "aztec cup" + ], + "count": 1 + }, + { + "answers": [ + "liga mexicana de beisbol" + ], + "en_answers": [ + "mexican baseball league" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-11": { + "question": "¿Quién es el deportista más popular en México?", + "en_question": "Who is the most popular sportperson in your country?", + "annotations": [ + { + "answers": [ + "el \"chicharito\"", + "el chicharito", + "javier hernández (\"chicharito\")", + "javier hernandez (chicharito)" + ], + "en_answers": [ + "el chicharito", + "javier hernandez (chicharito)" + ], + "count": 2 + }, + { + "answers": [ + "\"el checo\" pérez", + "el checo pérez", + "\"checho\" pérez", + "checo perez", + "sergio pérez" + ], + "en_answers": [ + "checo pérez" + ], + "count": 2 + }, + { + "answers": [ + "saul \"canelo\" alvarez", + "saul \"canelo\" álvarez", + "\"canelo\" alvarez", + "canelo alvarez" + ], + "en_answers": [ + "saul \"canelo\" alvarez", + "\"canelo\" alvarez" + ], + "count": 2 + }, + { + "answers": [ + "gignac", + "guignac", + "andré-pierre christian gignac" + ], + "en_answers": [ + "gignac" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-12": { + "question": "¿En qué deporte ha tenido México más éxito en competiciones internacionales?", + "en_question": "In which sport has your country been most successful in international competitions?", + "annotations": [ + { + "answers": [ + "taekwondo", + "tae kwondo" + ], + "en_answers": [ + "taekwondo" + ], + "count": 3 + }, + { + "answers": [ + "clavados" + ], + "en_answers": [ + "diving" + ], + "count": 2 + }, + { + "answers": [ + "box", + "boxeo" + ], + "en_answers": [ + "boxing" + ], + "count": 2 + }, + { + "answers": [ + "fútbol", + "futbol", + "fútbol soccer" + ], + "en_answers": [ + "soccer", + "football", + "football soccer" + ], + "count": 2 + }, + { + "answers": [ + "natación", + "boxeo" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + }, + { + "answers": [ + "raquet boll" + ], + "en_answers": [ + "racquetball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-15": { + "question": "¿Cuál es el deporte de invierno más popular en México?", + "en_question": "What is the most popular winter sport in your country?", + "annotations": [], + "idks": { + "not-applicable": 2, + "no-answer": 1, + "idk": 0 + } + }, + "Th-en-19": { + "question": "¿Cuál es una ciudad o región en México conocida por la industria manufacturera?", + "en_question": "What is a city or region in your country known for manufacturing industry?", + "annotations": [ + { + "answers": [ + "monterrey", + "monterey" + ], + "en_answers": [ + "monterrey" + ], + "count": 2 + }, + { + "answers": [ + "norte de mexico" + ], + "en_answers": [ + "the north of mexico" + ], + "count": 1 + }, + { + "answers": [ + "nuevo león", + "nuevo leon" + ], + "en_answers": [ + "nuevo león" + ], + "count": 1 + }, + { + "answers": [ + "chihuahua" + ], + "en_answers": [ + "chihuahua" + ], + "count": 1 + }, + { + "answers": [ + "león" + ], + "en_answers": [ + "león" + ], + "count": 1 + }, + { + "answers": [ + "estado de méxico" + ], + "en_answers": [ + "estado de méxico" + ], + "count": 1 + }, + { + "answers": [ + "jalisco" + ], + "en_answers": [ + "jalisco" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-21": { + "question": "¿Cuál se considera el beneficio más importante que se ofrece típicamente a los empleados en México?", + "en_question": "What is regarded as the most important perk typically offered to employees in your country?", + "annotations": [ + { + "answers": [ + "imss", + "seguro social", + "instituto mexicano del seguro social" + ], + "en_answers": [ + "mexican social security institute", + "social security" + ], + "count": 2 + }, + { + "answers": [ + "vacaciones pagadas", + "vacaciones" + ], + "en_answers": [ + "paid vacations", + "annual leave", + "vacations" + ], + "count": 2 + }, + { + "answers": [ + "afore", + "administradora de fondos para el retiro" + ], + "en_answers": [ + "retirement fund administration companies" + ], + "count": 1 + }, + { + "answers": [ + "infonavit", + "instituto del fondo nacional de la vivienda para los trabajadores" + ], + "en_answers": [ + "institute of the national housing fund for workers" + ], + "count": 1 + }, + { + "answers": [ + "prestaciones de ley" + ], + "en_answers": [ + "statutory benefits" + ], + "count": 1 + }, + { + "answers": [ + "seguro medico" + ], + "en_answers": [ + "health insurance" + ], + "count": 1 + }, + { + "answers": [ + "aguinaldo" + ], + "en_answers": [ + "christmas bonus", + "end-of-year bonus" + ], + "count": 1 + }, + { + "answers": [ + "prima dominical" + ], + "en_answers": [ + "sunday premium" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-22": { + "question": "¿Cuál fue el período económico más catastrófico para México?", + "en_question": "What was the most catastrophic economic period for your country?", + "annotations": [ + { + "answers": [ + "1994" + ], + "en_answers": [ + "1994" + ], + "count": 2 + }, + { + "answers": [ + "1980's", + "los años 80" + ], + "en_answers": [ + "1980's", + "the 80s" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "No lo sé": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-24": { + "question": "¿Qué región de México es un centro principal para trabajadores de tecnología y startups?", + "en_question": "What region in your country is a major hub for tech workers and start ups?", + "annotations": [ + { + "answers": [ + "ciudad de méxico", + "cdmx" + ], + "en_answers": [ + "mexico city" + ], + "count": 4 + }, + { + "answers": [ + "monterrey" + ], + "en_answers": [ + "monterrey" + ], + "count": 2 + }, + { + "answers": [ + "guadalajara" + ], + "en_answers": [ + "guadalajara" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-27": { + "question": "¿Cuál es la industria más importante en México?", + "en_question": "What is the most important industry in your country?", + "annotations": [ + { + "answers": [ + "automotriz" + ], + "en_answers": [ + "automotive" + ], + "count": 2 + }, + { + "answers": [ + "petrolera", + "el petroleo", + "pemex" + ], + "en_answers": [ + "oil industry", + "petroleum industry", + "mexican petroleum industry" + ], + "count": 2 + }, + { + "answers": [ + "la mineria", + "minera" + ], + "en_answers": [ + "mining" + ], + "count": 2 + }, + { + "answers": [ + "la agricultura" + ], + "en_answers": [ + "agriculture" + ], + "count": 1 + }, + { + "answers": [ + "textil" + ], + "en_answers": [ + "textile" + ], + "count": 1 + }, + { + "answers": [ + "turismo" + ], + "en_answers": [ + "tourism" + ], + "count": 1 + }, + { + "answers": [ + "alimentaria" + ], + "en_answers": [ + "food industry" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-35": { + "question": "¿Cuál de las comidas diarias se comparte comúnmente con los miembros de la familia en México? (por ejemplo, desayuno, comida, cena)", + "en_question": "Which one of the daily meals is commonly shared with family members in your country? (e.g., breakfast, lunch, dinner)", + "annotations": [ + { + "answers": [ + "comida" + ], + "en_answers": [ + "lunch" + ], + "count": 4 + }, + { + "answers": [ + "desayuno" + ], + "en_answers": [ + "breakfast" + ], + "count": 3 + }, + { + "answers": [ + "cena" + ], + "en_answers": [ + "dinner" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-36": { + "question": "¿Cuál es una actividad familiar popular para hacer con un niño los fines de semana en México?", + "en_question": "What is a popular family activity with a child to do on weekends in your country?", + "annotations": [ + { + "answers": [ + "ir al parque", + "jugar en el parque", + "parque" + ], + "en_answers": [ + "go to the park", + "play in the park" + ], + "count": 5 + }, + { + "answers": [ + "visitar a la abuelita" + ], + "en_answers": [ + "visit grandma" + ], + "count": 1 + }, + { + "answers": [ + "ir al cine" + ], + "en_answers": [ + "go to the movies" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-37": { + "question": "¿A qué edad suelen los niños volverse independientes de sus padres en México? (Proporcione solo números arábigos (por ejemplo, 12).)", + "en_question": "At what age do children typically become independent from their parents in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "28" + ], + "en_answers": [ + "28" + ], + "count": 3 + }, + { + "answers": [ + "21" + ], + "en_answers": [ + "21" + ], + "count": 2 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 2 + }, + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 1 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + }, + { + "answers": [ + "17" + ], + "en_answers": [ + "17" + ], + "count": 1 + }, + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-38": { + "question": "¿Cuál es la festividad familiar más importante en México?", + "en_question": "What is the most important family holiday in your country?", + "annotations": [ + { + "answers": [ + "navidad" + ], + "en_answers": [ + "christmas" + ], + "count": 4 + }, + { + "answers": [ + "día de la madre", + "dia de las madres", + "dia de la madre" + ], + "en_answers": [ + "mother's day" + ], + "count": 3 + }, + { + "answers": [ + "cumpleaños" + ], + "en_answers": [ + "birthday's celebrations" + ], + "count": 2 + }, + { + "answers": [ + "día del niño", + "año nuevo" + ], + "en_answers": [ + "children's day", + "new year" + ], + "count": 2 + }, + { + "answers": [ + "día de la independencia" + ], + "en_answers": [ + "independence day" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-39": { + "question": "¿Cuál es un juego familiar popular en México?", + "en_question": "What is a popular family game in your country?", + "annotations": [ + { + "answers": [ + "loteria", + "lotería mexicana" + ], + "en_answers": [ + "mexican bingo" + ], + "count": 3 + }, + { + "answers": [ + "monopoly", + "monopolio" + ], + "en_answers": [ + "monopoly" + ], + "count": 2 + }, + { + "answers": [ + "la rondalla" + ], + "en_answers": [ + "the serenade group" + ], + "count": 1 + }, + { + "answers": [ + "baraja" + ], + "en_answers": [ + "cards" + ], + "count": 1 + }, + { + "answers": [ + "football" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-41": { + "question": "¿Cuál es la edad promedio para que las parejas tengan su primer hijo en México? (Proporcione solo números arábigos (por ejemplo, 20).)", + "en_question": "What is the average age for couples to have their first child in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "21" + ], + "en_answers": [ + "21" + ], + "count": 2 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 2 + }, + { + "answers": [ + "28" + ], + "en_answers": [ + "28" + ], + "count": 2 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + }, + { + "answers": [ + "33" + ], + "en_answers": [ + "33" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-43": { + "question": "¿Cuántos autos posee una familia típica en México? (Proporcione solo números arábigos, por ejemplo, 12.)", + "en_question": "How many cars are owned by a typical family in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 5 + }, + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 2 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-44": { + "question": "¿Cuál es la comida más popular en México para las comidas familiares de los fines de semana?", + "en_question": "What is your country's most popular food for family meals on weekends?", + "annotations": [ + { + "answers": [ + "carne asada" + ], + "en_answers": [ + "grilled meat" + ], + "count": 3 + }, + { + "answers": [ + "barbacoa" + ], + "en_answers": [ + "barbecue" + ], + "count": 1 + }, + { + "answers": [ + "tacos" + ], + "en_answers": [ + "tacos" + ], + "count": 1 + }, + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + }, + { + "answers": [ + "tamales" + ], + "en_answers": [ + "tamales" + ], + "count": 1 + }, + { + "answers": [ + "guiso" + ], + "en_answers": [ + "stew" + ], + "count": 1 + }, + { + "answers": [ + "carnitas" + ], + "en_answers": [ + "carnitas", + "roasted pork", + "fried pork" + ], + "count": 1 + }, + { + "answers": [ + "pollo asado" + ], + "en_answers": [ + "roast chicken" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-45": { + "question": "¿Cuál es la actividad familiar más popular durante las noches entre semana en México?", + "en_question": "What is the most popular weekday evening family activity in your country?", + "annotations": [ + { + "answers": [ + "ver la tele", + "ver televisión", + "ver tv" + ], + "en_answers": [ + "watch tv", + "watch television" + ], + "count": 3 + }, + { + "answers": [ + "juegos de mesa" + ], + "en_answers": [ + "board games" + ], + "count": 2 + }, + { + "answers": [ + "jugar lotería" + ], + "en_answers": [ + "play mexican bingo" + ], + "count": 1 + }, + { + "answers": [ + "futbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 1 + }, + { + "answers": [ + "cine" + ], + "en_answers": [ + "cinema" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-48": { + "question": "¿Cuál es la calificación más alta que se les da a los estudiantes de preparatoria con mejores resultados en tareas y exámenes en México?", + "en_question": "What is the highest grade given to top-achieving high school students on assignments and exams in your country?", + "annotations": [ + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 3 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + }, + { + "answers": [ + "100" + ], + "en_answers": [ + "100" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-49": { + "question": "¿Cuál es considerado el examen más importante para los estudiantes de preparatoria en México?", + "en_question": "What is considered the most important exam for high school students in your country?", + "annotations": [ + { + "answers": [ + "exámen del ceneval", + "ceneval", + "exani-ii", + "exani ii", + "examen nacional de ingreso a la educación superior (exani-ii)" + ], + "en_answers": [ + "exam of the national assessment center for higher education", + "national higher education assessment exam ii" + ], + "count": 5 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-51": { + "question": "¿Qué materia se considera la más importante para los estudiantes en México?", + "en_question": "Which subject is considered the most important for students in your country?", + "annotations": [ + { + "answers": [ + "matemáticas", + "matematicas" + ], + "en_answers": [ + "mathematics" + ], + "count": 5 + }, + { + "answers": [ + "español" + ], + "en_answers": [ + "spanish" + ], + "count": 3 + }, + { + "answers": [ + "inglés" + ], + "en_answers": [ + "english" + ], + "count": 1 + }, + { + "answers": [ + "historia" + ], + "en_answers": [ + "history" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-53": { + "question": "¿Cuál es el evento social extracurricular más popular en las escuelas de México?", + "en_question": "What is the most popular extracurricular social event at schools in your country?", + "annotations": [ + { + "answers": [ + "reyna de la primavera" + ], + "en_answers": [ + "spring queen" + ], + "count": 1 + }, + { + "answers": [ + "día de la independencia" + ], + "en_answers": [ + "independence day" + ], + "count": 1 + }, + { + "answers": [ + "concurso de altares del dia de muertos", + "concurso de altares" + ], + "en_answers": [ + "day of the death altar contests", + "day of the death offerings contests" + ], + "count": 1 + }, + { + "answers": [ + "dia del niño" + ], + "en_answers": [ + "children's day" + ], + "count": 1 + } + ], + "idks": { + "No entiendo qué quieren decir con \"evento social extracurricular\"": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-58": { + "question": "¿Cuál es la materia de matemáticas más avanzada que se aprende antes de la universidad en México?", + "en_question": "What is the most advanced math subject learned before university in your country?", + "annotations": [ + { + "answers": [ + "cálculo" + ], + "en_answers": [ + "calculus" + ], + "count": 2 + }, + { + "answers": [ + "álgebra" + ], + "en_answers": [ + "algebra" + ], + "count": 1 + }, + { + "answers": [ + "estadística", + "estadistica" + ], + "en_answers": [ + "statistics" + ], + "count": 1 + }, + { + "answers": [ + "cálculo integral" + ], + "en_answers": [ + "integral calculus" + ], + "count": 1 + }, + { + "answers": [ + "cálculo diferencial" + ], + "en_answers": [ + "differential calculus" + ], + "count": 1 + }, + { + "answers": [ + "ecuaciones diferenciales" + ], + "en_answers": [ + "differential equations" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-01": { + "question": "¿A dónde suelen ir los estudiantes universitarios en México para estudiar para sus examenes finales?", + "en_question": "Where do university students in your country usually go to study for their final exams?", + "annotations": [ + { + "answers": [ + "biblioteca", + "biblioteca universitaria", + "bibliotecas", + "bibloteca" + ], + "en_answers": [ + "library", + "university library", + "libraries" + ], + "count": 5 + }, + { + "answers": [ + "sus propias casas", + "casa" + ], + "en_answers": [ + "home" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-02": { + "question": "¿Cuál es un transporte público común que la gente utiliza para ir a la universidad en México?", + "en_question": "What is a common public transport that people use to go to university in your country?", + "annotations": [ + { + "answers": [ + "autobus", + "camiones", + "camión", + "camiones o combis", + "autobuses" + ], + "en_answers": [ + "bus", + "buses" + ], + "count": 5 + }, + { + "answers": [ + "metro" + ], + "en_answers": [ + "subway", + "underground" + ], + "count": 3 + }, + { + "answers": [ + "combi", + "combis", + "camiones o combis" + ], + "en_answers": [ + "van", + "minibus", + "vans", + "minimuses", + "minibuses" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-04": { + "question": "¿Qué suelen hacer los estudiantes de primaria en México después de la escuela?", + "en_question": "What do elementary students in your country usually do after school?", + "annotations": [ + { + "answers": [ + "hacer deporte", + "deportes", + "hacer un deporte" + ], + "en_answers": [ + "do sports" + ], + "count": 3 + }, + { + "answers": [ + "comer" + ], + "en_answers": [ + "eat", + "have a meal" + ], + "count": 2 + }, + { + "answers": [ + "hacer tareas escolares", + "tarea", + "tareas" + ], + "en_answers": [ + "do homework" + ], + "count": 2 + }, + { + "answers": [ + "ir a sus casas" + ], + "en_answers": [ + "go home" + ], + "count": 1 + }, + { + "answers": [ + "jugar" + ], + "en_answers": [ + "pay" + ], + "count": 1 + }, + { + "answers": [ + "ir a clases de danza", + "clases de danza" + ], + "en_answers": [ + "take dance classes" + ], + "count": 1 + }, + { + "answers": [ + "ver televisión" + ], + "en_answers": [ + "watch television" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + } +} \ No newline at end of file diff --git a/data/annotations/North_Korea_data.json b/data/annotations/North_Korea_data.json new file mode 100644 index 0000000000000000000000000000000000000000..e18c776ec2b6ccd030d6a7bce0673d7cee7a84fc --- /dev/null +++ b/data/annotations/North_Korea_data.json @@ -0,0 +1,23216 @@ +{ + "Al-en-01": { + "question": "북한의 유치원 어린이들이 많이 먹는 간식은 무엇인가요?", + "en_question": "What is a common snack for preschool kids in your country?", + "annotations": [ + { + "answers": [ + "사탕" + ], + "en_answers": [ + "candy" + ], + "count": 3 + }, + { + "answers": [ + "손가락 과자", + "손가락과자" + ], + "en_answers": [ + "finger cookie", + "finger biscuit", + "finger-shaped cookie", + "finger-shaped biscuit" + ], + "count": 2 + }, + { + "answers": [ + "강냉이닦개" + ], + "en_answers": [ + "corn husk scrubber" + ], + "count": 1 + }, + { + "answers": [ + "콩닦개" + ], + "en_answers": [ + "toothbrush" + ], + "count": 1 + }, + { + "answers": [ + "강냉이튀기" + ], + "en_answers": [ + "puffed maize", + "puffed corn" + ], + "count": 1 + }, + { + "answers": [ + "과자" + ], + "en_answers": [ + "snack", + "cracker", + "cookie", + "biscuit" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-02": { + "question": "북한에서 맥주와 함께 안주로 먹기 좋아 하는 음식은 무엇인가요?", + "en_question": "What is a popular food to go with beer in your country?", + "annotations": [ + { + "answers": [ + "낙지", + "낙지(오징어)", + "마른 낙지", + "오징어" + ], + "en_answers": [ + "squid", + "cuttlefish", + "dried squid", + "dried cuttlefish" + ], + "count": 4 + }, + { + "answers": [ + "두부" + ], + "en_answers": [ + "tofu", + "bean curd" + ], + "count": 1 + }, + { + "answers": [ + "땅콩" + ], + "en_answers": [ + "peanut" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-04": { + "question": "북한에서 가장 좋아 하는 과일은 무엇입니까?", + "en_question": "What is the most popular fruit in your country?", + "annotations": [ + { + "answers": [ + "배" + ], + "en_answers": [ + "pear" + ], + "count": 3 + }, + { + "answers": [ + "사과" + ], + "en_answers": [ + "apple" + ], + "count": 3 + }, + { + "answers": [ + "살구" + ], + "en_answers": [ + "apricot" + ], + "count": 1 + }, + { + "answers": [ + "귤" + ], + "en_answers": [ + "mandarin", + "tangerine" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-06": { + "question": "북한 학교 급식에서 흔히 볼 수 있는 음식은 무엇인가요?", + "en_question": "What is a common school cafeteria food in your country?", + "annotations": [], + "idks": { + "not-applicable": 3, + "no-answer": 2, + "idk": 0 + } + }, + "Al-en-08": { + "question": "북한 상업중심에서 사람들이 가장 많이 먹는 간식은 무엇인가요?", + "en_question": "What are the most commonly eaten snacks at shopping malls in your country?", + "annotations": [ + { + "answers": [ + "과자" + ], + "en_answers": [ + "snack", + "cracker", + "cookie", + "biscuit" + ], + "count": 1 + }, + { + "answers": [ + "오징어" + ], + "en_answers": [ + "squid", + "cuttlefish" + ], + "count": 1 + }, + { + "answers": [ + "아이스께끼", + "아이스께기" + ], + "en_answers": [ + "ice cream" + ], + "count": 1 + }, + { + "answers": [ + "단물" + ], + "en_answers": [ + "juice" + ], + "count": 1 + }, + { + "answers": [ + "빵" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "꽈배기" + ], + "en_answers": [ + "twisted doughnut", + "twisted bread stick", + "twisted donut" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-09": { + "question": "북한의 유희장에서 먹기 좋아 하는 간식은 무엇인가요?", + "en_question": "What is a popular snack at an amusement park in your country?", + "annotations": [ + { + "answers": [ + "사탕" + ], + "en_answers": [ + "candy" + ], + "count": 2 + }, + { + "answers": [ + "과자" + ], + "en_answers": [ + "snack", + "cracker", + "cookie", + "biscuit" + ], + "count": 2 + }, + { + "answers": [ + "아이스크림" + ], + "en_answers": [ + "ice cream" + ], + "count": 1 + }, + { + "answers": [ + "김밥" + ], + "en_answers": [ + "gimbap", + "kimbap" + ], + "count": 1 + }, + { + "answers": [ + "솜사탕" + ], + "en_answers": [ + "cotton candy" + ], + "count": 1 + }, + { + "answers": [ + "붕어과자" + ], + "en_answers": [ + "fish-shaped bun" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-16": { + "question": "북한에서 아이들은 보통 몇 살에 유치원에 다니기 시작하나요? (아라비아 숫자(예: 12)만 기재해 주세요.)", + "en_question": "At what age do kids start preschool in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 3 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "5", + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-17": { + "question": "북한의 소학교에서 수업 후에 하는 체육 중 아이들이 좋아 하는 체육은 무엇인가요?", + "en_question": "What is a popular afterschool sport for elementary schools in your country?", + "annotations": [ + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "스케이트" + ], + "en_answers": [ + "skate", + "skating" + ], + "count": 2 + }, + { + "answers": [ + "공놀이" + ], + "en_answers": [ + "ball game", + "play ball" + ], + "count": 1 + }, + { + "answers": [ + "륙상" + ], + "en_answers": [ + "athletics", + "track and field", + "track-and-field" + ], + "count": 1 + }, + { + "answers": [ + "배구" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "철봉" + ], + "en_answers": [ + "bar" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-18": { + "question": "북한에서 소학교 학생들이 받는 전문 개인지도에는 어떤 과목이 있나요?", + "en_question": "For which subject do elementary students get private education in your country?", + "annotations": [ + { + "answers": [ + "영어" + ], + "en_answers": [ + "english" + ], + "count": 3 + }, + { + "answers": [ + "음악" + ], + "en_answers": [ + "music" + ], + "count": 1 + }, + { + "answers": [ + "악기" + ], + "en_answers": [ + "musical instrument" + ], + "count": 1 + }, + { + "answers": [ + "수학" + ], + "en_answers": [ + "mathematics", + "math" + ], + "count": 1 + }, + { + "answers": [ + "손풍금" + ], + "en_answers": [ + "accordion" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Al-en-19": { + "question": "북한 고급중학생들이 가장 좋아 하는 외국어는 무엇인가요?", + "en_question": "What is a popular second language for high school students in your country?", + "annotations": [ + { + "answers": [ + "영어" + ], + "en_answers": [ + "english" + ], + "count": 5 + }, + { + "answers": [ + "중국어" + ], + "en_answers": [ + "chinese" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-21": { + "question": "북한의 수재 교육에서 가장 중요한 과목은 무엇인가요?", + "en_question": "Which subject is the most important for gifted education in your country?", + "annotations": [ + { + "answers": [ + "수학" + ], + "en_answers": [ + "mathematics", + "math" + ], + "count": 5 + }, + { + "answers": [ + "영어" + ], + "en_answers": [ + "english" + ], + "count": 3 + }, + { + "answers": [ + "국어", + "국어 등" + ], + "en_answers": [ + "korean language", + "korean" + ], + "count": 2 + }, + { + "answers": [ + "물리" + ], + "en_answers": [ + "physics" + ], + "count": 1 + }, + { + "answers": [ + "외국어" + ], + "en_answers": [ + "foreign language" + ], + "count": 1 + }, + { + "answers": [ + "콤푸터", + "콤퓨터" + ], + "en_answers": [ + "computer" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-32": { + "question": "북한에서는 추석에 주로 어떤 음식을 먹나요?", + "en_question": "What is the main dish for Thanksgiving in your country?", + "annotations": [ + { + "answers": [ + "떡" + ], + "en_answers": [ + "rice cake", + "tteok" + ], + "count": 3 + }, + { + "answers": [ + "송편", + "송편떡" + ], + "en_answers": [ + "songpyeon" + ], + "count": 2 + }, + { + "answers": [ + "지짐(전)" + ], + "en_answers": [ + "jeon", + "korean pancake" + ], + "count": 1 + }, + { + "answers": [ + "산나물 반찬", + "산나물반찬" + ], + "en_answers": [ + "wild greens", + "mountain greens", + "wild vegetable" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-33": { + "question": "북한 사람들은 할로윈을 기념하기 위해 무엇을 하나요?", + "en_question": "What do people do to celebrate Halloween in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "no-answer": 1, + "idk": 0 + } + }, + "Al-en-34": { + "question": "북한 사람들은 새해 첫날을 어떻게 기념하나요?", + "en_question": "What do people do to celebrate New Year's Day in your country?", + "annotations": [ + { + "answers": [ + "세배", + "설인사", + "세배 및 친구집 방문" + ], + "en_answers": [ + "bow", + "new year's bow", + "new year's greeting", + "new year's bow and visiting friends' houses" + ], + "count": 3 + }, + { + "answers": [ + "김일성동상청소 및 꽃드림", + "동상 인사" + ], + "en_answers": [ + "cleaning of kim il-sung statue and laying of flowers", + "statue bowing" + ], + "count": 2 + }, + { + "answers": [ + "맛있는 식사", + "가족과 설음식 나눔" + ], + "en_answers": [ + "delicious meal", + "sharing lunar new year's meal with family" + ], + "count": 2 + }, + { + "answers": [ + "가족의 윗어른집 방문하여 인사" + ], + "en_answers": [ + "visiting the house of a senior family member to greet them" + ], + "count": 1 + }, + { + "answers": [ + "스승의 집 방문하여 인사" + ], + "en_answers": [ + "visiting the teacher's house to greet" + ], + "count": 1 + }, + { + "answers": [ + "또래친구들끼리 사진찍고 놀러다님." + ], + "en_answers": [ + "taking pictures and hanging out with peers." + ], + "count": 1 + }, + { + "answers": [ + "떡" + ], + "en_answers": [ + "rice cake" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-35": { + "question": "북한에서 사람들은 크리스마스를 어떻게 기념하나요?", + "en_question": "What do people do to celebrate Christmas in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "no-answer": 1, + "idk": 0 + } + }, + "Al-en-36": { + "question": "북한에서 할로윈 관련 음식은 무엇인가요?", + "en_question": "What food is associated with Halloween in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "no-answer": 1, + "idk": 0 + } + }, + "Al-en-37": { + "question": "북한에서 크리스마스를 상징하는 음식은 무엇인가요?", + "en_question": "What food is associated with Christmas in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "no-answer": 1, + "idk": 0 + } + }, + "Al-en-38": { + "question": "북한에서 발렌타인과 관련된 음식은 무엇인가요?", + "en_question": "What food is associated with Valentine's day in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "no-answer": 1, + "idk": 0 + } + }, + "Al-en-39": { + "question": "북한 사람들은 생일에 무엇을 먹나요?", + "en_question": "What do people eat on their birthday in your country?", + "annotations": [ + { + "answers": [ + "떡" + ], + "en_answers": [ + "rice cake", + "tteok" + ], + "count": 2 + }, + { + "answers": [ + "고기" + ], + "en_answers": [ + "meat" + ], + "count": 1 + }, + { + "answers": [ + "흰쌀밥" + ], + "en_answers": [ + "white rice", + "polished rice" + ], + "count": 1 + }, + { + "answers": [ + "국수" + ], + "en_answers": [ + "noodles" + ], + "count": 1 + }, + { + "answers": [ + "밥" + ], + "en_answers": [ + "rice", + "steamed rice", + "boiled rice", + "cooked rice" + ], + "count": 1 + }, + { + "answers": [ + "미역국" + ], + "en_answers": [ + "sea mustard soup", + "seaweed soup" + ], + "count": 1 + }, + { + "answers": [ + "랭면" + ], + "en_answers": [ + "naengmyeon", + "naengmyŏn", + "cold noodles", + "korean cold noodles" + ], + "count": 1 + }, + { + "answers": [ + "만두", + "만두 등" + ], + "en_answers": [ + "dumpling", + "mandu" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-40": { + "question": "북한에서 가족이 어린 자식들과 함께 재밌는 시간을 보낼 수 있는 이름 있는 야외 장소는 어디인가요?", + "en_question": "What is a popular outdoor place for families to have fun with little kids in your country?", + "annotations": [ + { + "answers": [ + "유희장" + ], + "en_answers": [ + "amusement park" + ], + "count": 2 + }, + { + "answers": [ + "야산" + ], + "en_answers": [ + "hill" + ], + "count": 1 + }, + { + "answers": [ + "공원" + ], + "en_answers": [ + "park" + ], + "count": 1 + }, + { + "answers": [ + "강", + "강변", + "강가" + ], + "en_answers": [ + "river", + "riverside" + ], + "count": 1 + }, + { + "answers": [ + "바다", + "해변", + "해수욕장" + ], + "en_answers": [ + "sea", + "ocean", + "beach" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Al-en-43": { + "question": "북한에서 가족들이 집에서 주로 즐기는 활동은 무엇인가요?", + "en_question": "What is a popular indoor activity for families in your country?", + "annotations": [ + { + "answers": [ + "집일" + ], + "en_answers": [ + "housework" + ], + "count": 1 + }, + { + "answers": [ + "카드" + ], + "en_answers": [ + "card" + ], + "count": 1 + }, + { + "answers": [ + "꼬니놀이" + ], + "en_answers": [ + "kono" + ], + "count": 1 + }, + { + "answers": [ + "게임" + ], + "en_answers": [ + "game" + ], + "count": 1 + }, + { + "answers": [ + "tv시청" + ], + "en_answers": [ + "tv", + "watching tv" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "An-ar-02": { + "question": "북한의 대학생들은 어디에서 점심을 먹나요?", + "en_question": "Where do university students have lunch in your country?", + "annotations": [ + { + "answers": [ + "기숙사 식당", + "기숙사에서 생활하는 친구들의 숙소에서 먹었다는 것인지, 기숙사 식당을 이용한 기숙사생인지에 대한 답변요청이 필요함.", + "기숙사", + "대학식당", + "정리가 필요한 부분임. 자가생들은 도시락을 가지고 오며, 학교 교실이나 친구들 기숙사에서 식사를 함. 대학교에서 특별히 제공해주는 식당 장소가 없음. 대학 식당 이용이 불가함. 기숙사생들은 대학교에서 제공해주는 대학 식당(기숙사 식당 같음)에서 밥을 먹으며 특별한 경우를 제외하고는 대학 식당의 음식을 자신의 기숙시설에 가져가서 자가생들과 함께 먹는게 쉽지 않음.)" + ], + "en_answers": [ + "dormitory cafeteria", + "dormitory", + "university cafeteria" + ], + "count": 4 + }, + { + "answers": [ + "기숙사 식당", + "대학 식당", + "식당" + ], + "en_answers": [ + "university cafeteria", + "restaurant" + ], + "count": 2 + }, + { + "answers": [ + "대학교 교실", + "학교교실", + "자가생", + "도시락" + ], + "en_answers": [ + "school classroom", + "packed lunch" + ], + "count": 2 + }, + { + "answers": [ + "대학교와 가까운 자가생", + "집" + ], + "en_answers": [ + "house" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-03": { + "question": "북한의 고급중학교 학생들은 주로 몇 월에 학기말시험을 보나요? (아라비아 숫자(1~12)만 기재해 주세요.)", + "en_question": "Which month is the final exam term usually scheduled at high schools in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "7", + "7월 중순", + "7~8", + "7월과 12월" + ], + "en_answers": [ + "7" + ], + "count": 3 + }, + { + "answers": [ + "2", + "2~3" + ], + "en_answers": [ + "2" + ], + "count": 2 + }, + { + "answers": [ + "8", + "7~8" + ], + "en_answers": [ + "8" + ], + "count": 2 + }, + { + "answers": [ + "3", + "2~3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "12", + "7월과 12월" + ], + "en_answers": [ + "12" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-08": { + "question": "북한 고급중학생들은 보통 하루에 몇 시간을 학교에서 보내나요? (아라비아 숫자 정수(0~24)로, 소수점 없이 제공해주세요.)", + "en_question": "How many hours a day do students in your country usually spend at high school? (Provide Arabic numerals in integers (0~24), without any decimal points.)", + "annotations": [ + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 2 + }, + { + "answers": [ + "8", + "8시간" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "5", + "5~7" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "7", + "5~7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + }, + { + "answers": [ + "9", + "9시간 정도" + ], + "en_answers": [ + "9" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-09": { + "question": "북한의 고급중학교 학생들은 학교에서 몇 가지 외국어를 공부하나요? (아라비아 숫자(예: 5)만 기재해주세요.)", + "en_question": "How many languages do students study at high school in your country? (Provide Arabic numerals (e.g., 5) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 4 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-34": { + "question": "북한의 학교에서 가장 많이 하는 단체체육종목은 무엇입니까?", + "en_question": "What is the most popular sport played in a team at school in your country?", + "annotations": [ + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "집단체조" + ], + "en_answers": [ + "mass games", + "mass gymnastics" + ], + "count": 1 + }, + { + "answers": [ + "수영" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + }, + { + "answers": [ + "바줄당기기" + ], + "en_answers": [ + "tug-of-war" + ], + "count": 1 + }, + { + "answers": [ + "륙상" + ], + "en_answers": [ + "athletics", + "track and field", + "track-and-field" + ], + "count": 1 + }, + { + "answers": [ + "배구" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "스케이트" + ], + "en_answers": [ + "skate", + "skating" + ], + "count": 1 + }, + { + "answers": [ + "철봉" + ], + "en_answers": [ + "bar" + ], + "count": 1 + }, + { + "answers": [ + "평행봉" + ], + "en_answers": [ + "bar" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-35": { + "question": "북한에서 가장 잘하는 체육경기 해설원은 누구인가요?", + "en_question": "Who is the most popular sport commentator in your country?", + "annotations": [ + { + "answers": [ + "중앙방송원" + ], + "en_answers": [ + "central broadcasting committee" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "An-ar-36": { + "question": "북한에서 가장 유명한 체육단은 어디인가요?", + "en_question": "What is the most popular sport team in your country?", + "annotations": [ + { + "answers": [ + "4.25체육단", + "4·25 체육단" + ], + "en_answers": [ + "april 25 sports club", + "4.25 sc", + "april 25 national defence sports club" + ], + "count": 5 + }, + { + "answers": [ + "압록강 체육단" + ], + "en_answers": [ + "amnokgang sports club" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-43": { + "question": "북한 사람들이 보통 체육경기 방송을 보기 위해 모이는 장소는 어디인가요?", + "en_question": "What are the common places or venues where individuals in your country usually gather to watch sports broadcasts?", + "annotations": [ + { + "answers": [ + "집", + "가정" + ], + "en_answers": [ + "house", + "home" + ], + "count": 4 + }, + { + "answers": [ + "십자거리" + ], + "en_answers": [ + "crossroads" + ], + "count": 1 + }, + { + "answers": [ + "기업소 사무실", + "기업소사무실" + ], + "en_answers": [ + "enterprise office" + ], + "count": 1 + }, + { + "answers": [ + "사무실" + ], + "en_answers": [ + "office" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ca-sp-05": { + "question": "북한 사람들은 보통 하루에 몇 끼를 먹나요? (아라비아 숫자(예: 5)만 기재하세요.)", + "en_question": "How many meals per day do people from your country usually have? (Provide Arabic numerals (e.g., 5) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 5 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-06": { + "question": "북한 사람들에게 하루 중 가장 중요한 끼니는 무엇인가요?", + "en_question": "Which is the most important meal of the day to people from your country?", + "annotations": [ + { + "answers": [ + "아침" + ], + "en_answers": [ + "breakfast" + ], + "count": 2 + }, + { + "answers": [ + "세끼" + ], + "en_answers": [ + "three meals" + ], + "count": 1 + }, + { + "answers": [ + "저녁" + ], + "en_answers": [ + "supper", + "dinner", + "evening meal" + ], + "count": 1 + }, + { + "answers": [ + "점심" + ], + "en_answers": [ + "lunch" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-08": { + "question": "북한 음식에서 가장 흔히 사용되는 음식감은 무엇입니까?", + "en_question": "What is the most common ingredient used in your country's diet?", + "annotations": [ + { + "answers": [ + "배추" + ], + "en_answers": [ + "chinese cabbage", + "kimchi cabbage", + "napa cabbage" + ], + "count": 3 + }, + { + "answers": [ + "무우", + "무" + ], + "en_answers": [ + "radish" + ], + "count": 2 + }, + { + "answers": [ + "김치" + ], + "en_answers": [ + "kimchi", + "gimchi", + "kimch'i" + ], + "count": 1 + }, + { + "answers": [ + "잡곡" + ], + "en_answers": [ + "grain", + "mixed grains" + ], + "count": 1 + }, + { + "answers": [ + "백미" + ], + "en_answers": [ + "rice", + "white rice" + ], + "count": 1 + }, + { + "answers": [ + "감자" + ], + "en_answers": [ + "potato" + ], + "count": 1 + }, + { + "answers": [ + "두부" + ], + "en_answers": [ + "tofu", + "bean curd" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-09": { + "question": "북한 사람들은 보통 식사 후 무엇을 먹나요?", + "en_question": "What do people from your country usually eat for dessert?", + "annotations": [ + { + "answers": [ + "숭늉" + ], + "en_answers": [ + "sungnyung", + "scorched rice tea", + "scorched-rice tea", + "scorched rice water", + "scorched-rice water" + ], + "count": 1 + }, + { + "answers": [ + "후식을 먹지 않음" + ], + "en_answers": [ + "do not eat dessert" + ], + "count": 1 + }, + { + "answers": [ + "까마치", + "누룽지" + ], + "en_answers": [ + "scorched rice", + "crunchy rice", + "nurungji", + "crust of overcooked rice" + ], + "count": 1 + }, + { + "answers": [ + "과일", + "과일 등" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ca-sp-11": { + "question": "북한에서 사람들은 보통 어떤 요일에 가족식사를 하나요?", + "en_question": "Which day of the week do people usually organize a family meal in your country?", + "annotations": [ + { + "answers": [ + "매일" + ], + "en_answers": [ + "every day" + ], + "count": 3 + }, + { + "answers": [ + "매주 저녁" + ], + "en_answers": [ + "every evening" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ca-sp-14": { + "question": "북한 사람들이 가장 좋아 하는 따뜻한 음료는 무엇입니까?", + "en_question": "Which is the most popular hot drink in your country?", + "annotations": [ + { + "answers": [ + "숭늉", + "누룽지 물", + "슝늉" + ], + "en_answers": [ + "sungnyung", + "scorched rice tea", + "scorched-rice tea", + "scorched rice water", + "scorched-rice water" + ], + "count": 3 + }, + { + "answers": [ + "커피", + "우유" + ], + "en_answers": [ + "coffee", + "milk" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-19": { + "question": "북한의 젊은이들은 구락부에서 보통 무엇을 마시나요?", + "en_question": "What do young people from your country usually drink at the night club?", + "annotations": [ + { + "answers": [ + "사이다" + ], + "en_answers": [ + "cider", + "lemon-lime drink", + "lemon-lime soda" + ], + "count": 2 + }, + { + "answers": [ + "찬물", + "물" + ], + "en_answers": [ + "cold water", + "water" + ], + "count": 2 + }, + { + "answers": [ + "단물" + ], + "en_answers": [ + "juice" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Ca-sp-21": { + "question": "북한에서 사람들이 보통 어느 달에 휴가를 가나요? (아라비아 숫자(1~12)만 기재해 주세요.)", + "en_question": "At which month do people usually take holidays in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "not-applicable": 1, + "idk": 0 + } + }, + "Ca-sp-29": { + "question": "북한에는 새해 전날에 무엇을 하나요?", + "en_question": "What tradition is there in your country for New Year's Eve?", + "annotations": [ + { + "answers": [ + "설날음식만들기", + "음식 만들기", + "음식준비", + "설음식 마련" + ], + "en_answers": [ + "cooking", + "food for lunar new year", + "lunar new year food" + ], + "count": 4 + }, + { + "answers": [ + "윷놀이" + ], + "en_answers": [ + "yunnori", + "yutnori", + "yut", + "nyout", + "yoot" + ], + "count": 1 + }, + { + "answers": [ + "주패", + "주패(사사끼)", + "사사끼" + ], + "en_answers": [ + "card game", + "trump", + "sasaki", + "playing cards" + ], + "count": 1 + }, + { + "answers": [ + "집청소" + ], + "en_answers": [ + "cleaning", + "house cleaning", + "clean the house" + ], + "count": 1 + }, + { + "answers": [ + "빨래" + ], + "en_answers": [ + "laundry" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ca-sp-38": { + "question": "북한에서 가족이 대부분 어떤 집에서 사는가요?", + "en_question": "Which is the typical type of house for a family in your country?", + "annotations": [ + { + "answers": [ + "땅집", + "단층집", + "다주택", + "1층만 있는 연립식 집", + "다세대주택" + ], + "en_answers": [ + "earth house", + "single-story house", + "multiple homes", + "single-story terraced house", + "multi-family housing" + ], + "count": 5 + }, + { + "answers": [ + "아빠트", + "아파트" + ], + "en_answers": [ + "apartment", + "flat" + ], + "count": 3 + }, + { + "answers": [ + "단독주택" + ], + "en_answers": [ + "detached house" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-41": { + "question": "북한에서 혼자 움직일 수 없는 로인들은 대체로 어느 곳에 사나요?", + "en_question": "Where do the dependent elderly usually live in your country?", + "annotations": [ + { + "answers": [ + "집", + "자식집", + "가정" + ], + "en_answers": [ + "house", + "home", + "child's house" + ], + "count": 4 + }, + { + "answers": [ + "양로원", + "양료원", + "요양병원" + ], + "en_answers": [ + "nursing home", + "retirement home", + "old people's home", + "old folks' home", + "old age home", + "nursing hospital", + "care hospital" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-42": { + "question": "북한에서 여성의 산전산후 휴가는 몇 주인가요? (아라비아 숫자(예: 20)만 제공해 주세요.)", + "en_question": "How long (in weeks) is your country's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "150" + ], + "en_answers": [ + "150" + ], + "count": 1 + }, + { + "answers": [ + "120" + ], + "en_answers": [ + "120" + ], + "count": 1 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "20", + "20주" + ], + "en_answers": [ + "20" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-43": { + "question": "북한에서 남자의 산전산후휴가 기간은 몇 주인가요? (아라비아 숫자(예: 20)만 제공해 주세요.)", + "en_question": "How long (in weeks) is your country's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [], + "idks": { + "not-applicable": 2, + "no-answer": 2, + "idk": 1 + } + }, + "Ca-sp-45": { + "question": "북한에서는 주로 어떤 곳으로 가족이 여행를 가나요?", + "en_question": "What type of destination is commonly chosen for a family vacation in your country?", + "annotations": [ + { + "answers": [ + "바다", + "해변", + "해수욕장" + ], + "en_answers": [ + "sea", + "ocean", + "beach" + ], + "count": 2 + }, + { + "answers": [ + "유적지" + ], + "en_answers": [ + "historic site", + "historical site" + ], + "count": 1 + }, + { + "answers": [ + "산" + ], + "en_answers": [ + "mountain" + ], + "count": 1 + }, + { + "answers": [ + "평양" + ], + "en_answers": [ + "pyongyang" + ], + "count": 1 + }, + { + "answers": [ + "유희장" + ], + "en_answers": [ + "amusement park" + ], + "count": 1 + }, + { + "answers": [ + "온천" + ], + "en_answers": [ + "hot spring", + "thermal spring", + "spa" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 0 + } + }, + "Gu-ch-05": { + "question": "북한의 로인들이 가장 좋아 하는 체육은 무엇인가요?", + "en_question": "What sports do seniors like the most in your country?", + "annotations": [ + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "탁구" + ], + "en_answers": [ + "table tennis", + "ping-pong" + ], + "count": 1 + }, + { + "answers": [ + "배드민턴" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "인민보건체조" + ], + "en_answers": [ + "people's health exercise" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-06": { + "question": "북한 남자들이 가장 좋아 하는 체육종목은 무엇인가요?", + "en_question": "What sports do men like to play the most in your country?", + "annotations": [ + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "태권도" + ], + "en_answers": [ + "taekwondo", + "taekwon-do", + "tae kwon do", + "tae kwon-do", + "tae-kwon-do" + ], + "count": 1 + }, + { + "answers": [ + "공놀이" + ], + "en_answers": [ + "ball game", + "play ball" + ], + "count": 1 + }, + { + "answers": [ + "배구" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "농구" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-07": { + "question": "북한에서 가장 이름 있는 농구 선수는 누구인가요?", + "en_question": "Who is the most famous basketball player in your country?", + "annotations": [ + { + "answers": [ + "리명훈", + "이명훈" + ], + "en_answers": [ + "ri myung-hun", + "myung-hun ri" + ], + "count": 2 + }, + { + "answers": [ + "박진아" + ], + "en_answers": [ + "pak jina", + "jina pak" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-08": { + "question": "북한의 어린이들이 가장 좋아 하는 체육은 무엇인가요?", + "en_question": "What is the most popular sports among children in your country?", + "annotations": [ + { + "answers": [ + "달리기", + "달리기(마라톤)", + "마라손" + ], + "en_answers": [ + "running", + "marathon" + ], + "count": 2 + }, + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "공놀이" + ], + "en_answers": [ + "ball game", + "play ball" + ], + "count": 1 + }, + { + "answers": [ + "바줄당기기" + ], + "en_answers": [ + "tug-of-war" + ], + "count": 1 + }, + { + "answers": [ + "태권도" + ], + "en_answers": [ + "taekwondo", + "taekwon-do", + "tae kwon do", + "tae kwon-do", + "tae-kwon-do" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-09": { + "question": "북한 여자들이 가장 좋아 하는 체육종목은 무엇인가요?", + "en_question": "What sports do women like to play the most in your country?", + "annotations": [ + { + "answers": [ + "배구" + ], + "en_answers": [ + "volleyball" + ], + "count": 2 + }, + { + "answers": [ + "배드민톤", + "바드민턴" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "공기놀이" + ], + "en_answers": [ + "gonggi", + "gongginori", + "konggi", + "kongginori", + "korean jacks" + ], + "count": 1 + }, + { + "answers": [ + "륙상" + ], + "en_answers": [ + "athletics", + "track and field", + "track-and-field" + ], + "count": 1 + }, + { + "answers": [ + "율동체조" + ], + "en_answers": [ + "rhythmic gymnastics" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-11": { + "question": "북한이 올림픽에서 가장 많은 금메달을 받은 종목은 무엇인가요?", + "en_question": "What sports event has your country won the most gold medals at the Olympics?", + "annotations": [ + { + "answers": [ + "력기", + "력기(역도)" + ], + "en_answers": [ + "weightlifting" + ], + "count": 3 + }, + { + "answers": [ + "사격" + ], + "en_answers": [ + "shooting", + "shooting sports" + ], + "count": 1 + }, + { + "answers": [ + "탁구" + ], + "en_answers": [ + "table tennis", + "ping-pong" + ], + "count": 1 + }, + { + "answers": [ + "마라손", + "마라톤" + ], + "en_answers": [ + "marathon" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-15": { + "question": "북한의 대학 남학생들이 가장 좋아 하는 체육종목은 무엇인가요?", + "en_question": "What sports do male students in university like to play the most in your country?", + "annotations": [ + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "농구" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "탁구" + ], + "en_answers": [ + "table tennis", + "ping-pong" + ], + "count": 1 + }, + { + "answers": [ + "공놀이" + ], + "en_answers": [ + "ball game", + "play ball" + ], + "count": 1 + }, + { + "answers": [ + "배구" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-16": { + "question": "북한의 평균 가족 식구 수는 몇 명입니까? (아라비아 숫자(예: 12)만 기재해 주세요.)", + "en_question": "How many people are there in a family on average in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 5 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-18": { + "question": "북한의 부부는 보통 몇 명의 자식를 낳습니까? (아라비아 숫자(예: 12)만 기재해 주세요.)", + "en_question": "How many children do couples usually have in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 5 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-31": { + "question": "북한의 소학교는 모두 몇 년 다녀야 하나요? (아라비아 숫자(예: 12)만 기재해 주세요.)", + "en_question": "What is the duration of elementary school in years in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 4 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-32": { + "question": "북한의 의무교육 기간은 몇 년인가요? (아라비아 숫자(예: 12)만 기재해 주세요.)", + "en_question": "What is the duration of compulsory education in years in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-33": { + "question": "북한에서 학생들은 몇 살 때부터 외국어를 배우기 시작하나요? (아라비아 숫자(예: 12)만 기재해 주세요.)", + "en_question": "From which age do students start learning their second language in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 2 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 2 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "11" + ], + "en_answers": [ + "11" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-38": { + "question": "북한의 대학 학부 교육 기간은 몇 년인가요? (아라비아 숫자(예: 12)만 기재해 주세요.)", + "en_question": "What is the duration of undergraduate education in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 4 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 3 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 2 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-40": { + "question": "북한의 소학교 낮은 학년 학생들은 주로 몇 시에 집에 가나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)", + "en_question": "What time do younger elementary school students finish school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "12:00" + ], + "en_answers": [ + "12:00" + ], + "count": 2 + }, + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 2 + }, + { + "answers": [ + "16:00" + ], + "en_answers": [ + "16:00" + ], + "count": 1 + }, + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 1 + }, + { + "answers": [ + "13:00", + "01:00" + ], + "en_answers": [ + "13:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-41": { + "question": "북한의 소학교 학생들은 보통 몇 가지 악기를 다루나요? (아라비아 숫자(예: 12)만 기재해주세요.)", + "en_question": "How many musical instruments do elementary school students in your country typically play? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 5 + }, + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-02": { + "question": "북한 사람들은 어느 요일에 모여서 먹는것(추렴) 하는 것을 가장 좋아 하나요?", + "en_question": "What day of the week do people in your country prefer to have company dinners?", + "annotations": [ + { + "answers": [ + "일요일" + ], + "en_answers": [ + "sunday" + ], + "count": 3 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Ji-ko-03": { + "question": "북한에서 은행이 가장 많은 지방/시는 어디인가요?", + "en_question": "Which region/city has the highest number of financial companies in your country?", + "annotations": [ + { + "answers": [ + "평양" + ], + "en_answers": [ + "pyongyang" + ], + "count": 3 + }, + { + "answers": [ + "함흥" + ], + "en_answers": [ + "hamhung", + "hamhŭng" + ], + "count": 1 + }, + { + "answers": [ + "청진" + ], + "en_answers": [ + "chongjin", + "chŏngjin" + ], + "count": 1 + }, + { + "answers": [ + "신의주" + ], + "en_answers": [ + "sinuiju", + "sinŭiju" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-07": { + "question": "북한에서 가장 이름 있는 개인 기업소는 어디입니까?", + "en_question": "What is the most famous private company in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "idk": 1, + "no-answer": 0 + } + }, + "Ji-ko-08": { + "question": "북한에서는 일주일에 최대 몇 시간 일할 수 있습니까? (아라비아 숫자(예: 12)만 기재해 주세요.)", + "en_question": "What is the maximum number of hours one can work per week in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "48" + ], + "en_answers": [ + "48" + ], + "count": 2 + }, + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 2 + }, + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 1 + }, + { + "answers": [ + "54" + ], + "en_answers": [ + "54" + ], + "count": 1 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-09": { + "question": "북한 사람들은 보통 모여서 먹을 때 무엇을 먹나요?", + "en_question": "What do people typically eat during company get-together in your country?", + "annotations": [ + { + "answers": [ + "술", + "술(농태기)", + "농태기" + ], + "en_answers": [ + "alcohol", + "nongtaegi", + "soju", + "home brewed liquor", + "homemade alcohol" + ], + "count": 2 + }, + { + "answers": [ + "막걸리" + ], + "en_answers": [ + "makgeolli", + "makkoli", + "rice wine" + ], + "count": 1 + }, + { + "answers": [ + "떡" + ], + "en_answers": [ + "rice cake", + "tteok" + ], + "count": 1 + }, + { + "answers": [ + "랭면", + "냉면" + ], + "en_answers": [ + "naengmyeon", + "naengmyŏn", + "cold noodles", + "korean cold noodles" + ], + "count": 1 + }, + { + "answers": [ + "고기" + ], + "en_answers": [ + "meat" + ], + "count": 1 + }, + { + "answers": [ + "옥수수 뻥튀김" + ], + "en_answers": [ + "puffed maize", + "puffed corn" + ], + "count": 1 + }, + { + "answers": [ + "과일" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + }, + { + "answers": [ + "감자" + ], + "en_answers": [ + "potato" + ], + "count": 1 + }, + { + "answers": [ + "고구마" + ], + "en_answers": [ + "sweet potato" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-14": { + "question": "북한의 대표 수출 품종은 무엇입니까?", + "en_question": "What is the representative export item of your country?", + "annotations": [ + { + "answers": [ + "철광석" + ], + "en_answers": [ + "iron ore" + ], + "count": 2 + }, + { + "answers": [ + "석탄" + ], + "en_answers": [ + "coal" + ], + "count": 2 + }, + { + "answers": [ + "명태", + "목재" + ], + "en_answers": [ + "alaska pollock", + "walleye pollock", + "gadus chalcogrammus", + "lumber", + "timber", + "wood" + ], + "count": 2 + }, + { + "answers": [ + "광물" + ], + "en_answers": [ + "mineral" + ], + "count": 1 + }, + { + "answers": [ + "수산물" + ], + "en_answers": [ + "aquatic product", + "marine product", + "fishery product" + ], + "count": 1 + }, + { + "answers": [ + "철강" + ], + "en_answers": [ + "steel" + ], + "count": 1 + }, + { + "answers": [ + "무기" + ], + "en_answers": [ + "weapon", + "weaponry", + "arm", + "armament" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-15": { + "question": "북한에서 점심 시간은 보통 몇 시간입니까? (아라비아 숫자로 소수점 한 자리까지(예: 2, 3.5)만 제공해 주세요.)", + "en_question": "How long (in hours) is the typical lunch break in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 3 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-16": { + "question": "북한에서 애기를 놓은 후 어머니들이 건강을 위해 어디에 머무르나요?", + "en_question": "Where do mothers stay for a certain period after childbirth for recovery in your country?", + "annotations": [ + { + "answers": [ + "산원", + "평양산원", + "산부인과" + ], + "en_answers": [ + "mountain guardian", + "pyongyang maternity hospital", + "gynecology" + ], + "count": 4 + }, + { + "answers": [ + "집", + "본인집" + ], + "en_answers": [ + "house", + "home", + "own house" + ], + "count": 3 + }, + { + "answers": [ + "친정집" + ], + "en_answers": [ + "parental home" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-19": { + "question": "북한에서 어머니의날에 어머님께 드리는 가장 흔한 꽃은 무엇인가요?", + "en_question": "What is your country's most commonly given flower on Parents' Day?", + "annotations": [ + { + "answers": [ + "종이꽃", + "카네이션" + ], + "en_answers": [ + "carnation" + ], + "count": 1 + }, + { + "answers": [ + "장미" + ], + "en_answers": [ + "rose" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "not-applicable": 1, + "idk": 1 + } + }, + "Ji-ko-22": { + "question": "북한 사회에서 사람들은 첫 로임을 특별히 어디에 쓰나요?", + "en_question": "What do people especially spend their first salary on in your country's society?", + "annotations": [ + { + "answers": [ + "부모효성", + "부모선물" + ], + "en_answers": [ + "filial piety to parents", + "parental gift" + ], + "count": 2 + }, + { + "answers": [ + "부모님 선물" + ], + "en_answers": [ + "parents' gift" + ], + "count": 1 + }, + { + "answers": [ + "필요한 곳" + ], + "en_answers": [ + "necessary place" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "Ji-ko-24": { + "question": "북한 어린이들이 가장 좋아 하는 유희장은 무엇인가요?", + "en_question": "What is the most preferred recreational facility among children in your country?", + "annotations": [ + { + "answers": [ + "만경대유희장" + ], + "en_answers": [ + "mangyongdae funfair" + ], + "count": 2 + }, + { + "answers": [ + "대성산유희장" + ], + "en_answers": [ + "daesongsan amusement park" + ], + "count": 2 + }, + { + "answers": [ + "평양문수물놀이장", + "문수물놀이장" + ], + "en_answers": [ + "pyongyang munsu water park", + "munsu water park" + ], + "count": 2 + }, + { + "answers": [ + "물놀이장" + ], + "en_answers": [ + "water park" + ], + "count": 1 + }, + { + "answers": [ + "썰매장" + ], + "en_answers": [ + "sledding hill" + ], + "count": 1 + }, + { + "answers": [ + "운동장" + ], + "en_answers": [ + "playground" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-25": { + "question": "북한의 가족 관련 국가휴식일은 무엇이 있나요?", + "en_question": "What are the family-related holidays in your country?", + "annotations": [ + { + "answers": [ + "추석" + ], + "en_answers": [ + "ch'usŏk", + "chuseok", + "korean thanksgiving day" + ], + "count": 2 + }, + { + "answers": [ + "설날" + ], + "en_answers": [ + "sŏllal", + "korean new year", + "lunar new year" + ], + "count": 1 + }, + { + "answers": [ + "탄생일(3명)", + "태양절", + "4·15", + "광명성절" + ], + "en_answers": [ + "birthday of kim family", + "birthday of president", + "birthday of kim il sung", + "birthday of kim jong il", + "birthday of kim jong un" + ], + "count": 1 + }, + { + "answers": [ + "3.8절", + "국제부녀절" + ], + "en_answers": [ + "international women's day", + "march 8" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-26": { + "question": "북한 사회에서 사람들은 언제(무엇을 한 후에) 부모로부터 따로 나나요?", + "en_question": "What are the key milestones associated with children's independence from their parents in your country's society?", + "annotations": [ + { + "answers": [ + "결혼", + "결혼 후", + "결혼후" + ], + "en_answers": [ + "marriage", + "after marriage" + ], + "count": 4 + }, + { + "answers": [ + "학교 졸업 후" + ], + "en_answers": [ + "graduation" + ], + "count": 1 + }, + { + "answers": [ + "대학공부" + ], + "en_answers": [ + "university" + ], + "count": 1 + }, + { + "answers": [ + "군대 입대", + "군대입대" + ], + "en_answers": [ + "join the army", + "conscripted into the army", + "military enlistment" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-27": { + "question": "북한에서 늙은 부모를 보려 갈때 주로 가지고 가는 물건은 무엇인가요?", + "en_question": "What is the common gift you give when visiting elderly parents in your country?", + "annotations": [ + { + "answers": [ + "돈" + ], + "en_answers": [ + "money" + ], + "count": 1 + }, + { + "answers": [ + "선물" + ], + "en_answers": [ + "present", + "gift" + ], + "count": 1 + }, + { + "answers": [ + "옷" + ], + "en_answers": [ + "clothes" + ], + "count": 1 + }, + { + "answers": [ + "식품" + ], + "en_answers": [ + "food", + "groceries" + ], + "count": 1 + }, + { + "answers": [ + "쌀" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "술" + ], + "en_answers": [ + "alcohol" + ], + "count": 1 + }, + { + "answers": [ + "고기" + ], + "en_answers": [ + "meat" + ], + "count": 1 + }, + { + "answers": [ + "음식" + ], + "en_answers": [ + "food" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-28": { + "question": "북한에서 아기가 태어난 후 사람들이 처음으로 보는 날은 언제인가요?", + "en_question": "When is the first day that people celebrate after a child is born in your country?", + "annotations": [ + { + "answers": [ + "10", + "10일 후" + ], + "en_answers": [ + "10", + "after 10 days", + "10 days after birth" + ], + "count": 2 + }, + { + "answers": [ + "한달 후" + ], + "en_answers": [ + "after a month", + "after one month", + "a month after birth", + "one month after birth" + ], + "count": 1 + }, + { + "answers": [ + "백일" + ], + "en_answers": [ + "100th day", + "hundredth day" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-29": { + "question": "북한 사회에서 가장 잘 보내는 생일은 몇 번째 생일인가요?", + "en_question": "Which age's birthday is celebrated the most grandly in your country's society?", + "annotations": [ + { + "answers": [ + "환갑", + "60", + "60(환갑)" + ], + "en_answers": [ + "60", + "60th birthday" + ], + "count": 3 + }, + { + "answers": [ + "돌" + ], + "en_answers": [ + "1", + "first birthday" + ], + "count": 1 + }, + { + "answers": [ + "진갑" + ], + "en_answers": [ + "61", + "61st birthday" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-31": { + "question": "북한의 초고급중학교 학생들은 보통 어디에서 시험공부를 하나요?", + "en_question": "Where do middle and high school students in your country usually study for exams?", + "annotations": [ + { + "answers": [ + "학교" + ], + "en_answers": [ + "school" + ], + "count": 5 + }, + { + "answers": [ + "집", + "가정" + ], + "en_answers": [ + "house", + "home" + ], + "count": 4 + }, + { + "answers": [ + "공원" + ], + "en_answers": [ + "park" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-33": { + "question": "북한의 고급중학교 학생들은 보통 저녁 식사 후에 어디로 가나요?", + "en_question": "Where do high school students in your country usually go after dinner?", + "annotations": [ + { + "answers": [ + "집" + ], + "en_answers": [ + "house", + "home" + ], + "count": 2 + }, + { + "answers": [ + "동네" + ], + "en_answers": [ + "village", + "town", + "neighborhood" + ], + "count": 1 + }, + { + "answers": [ + "친구 집" + ], + "en_answers": [ + "friend's house" + ], + "count": 1 + }, + { + "answers": [ + "장마당" + ], + "en_answers": [ + "jangmadang", + "market grounds", + "market" + ], + "count": 1 + }, + { + "answers": [ + "공원" + ], + "en_answers": [ + "park" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-34": { + "question": "북한의 소학교 학생들은 어떻게 학교에 가나요?", + "en_question": "How do elementary school students in your country go to school?", + "annotations": [ + { + "answers": [ + "걸어서", + "도보" + ], + "en_answers": [ + "on foot", + "walk" + ], + "count": 5 + }, + { + "answers": [ + "자전거" + ], + "en_answers": [ + "bicycle", + "bike" + ], + "count": 1 + }, + { + "answers": [ + "버스", + "버스 및 지하철" + ], + "en_answers": [ + "bus" + ], + "count": 1 + }, + { + "answers": [ + "지하철", + "버스 및 지하철" + ], + "en_answers": [ + "subway" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-35": { + "question": "북한에서 가장 많이 받는 전문 개인지도는 무엇인가요?", + "en_question": "What is the most common form of private education in your country?", + "annotations": [ + { + "answers": [ + "영어" + ], + "en_answers": [ + "english" + ], + "count": 3 + }, + { + "answers": [ + "수학" + ], + "en_answers": [ + "mathematics", + "math" + ], + "count": 3 + }, + { + "answers": [ + "예체능" + ], + "en_answers": [ + "art", + "music", + "physical education" + ], + "count": 2 + }, + { + "answers": [ + "음악" + ], + "en_answers": [ + "music" + ], + "count": 2 + }, + { + "answers": [ + "악기" + ], + "en_answers": [ + "musical instrument" + ], + "count": 2 + }, + { + "answers": [ + "외국어" + ], + "en_answers": [ + "foreign language" + ], + "count": 1 + }, + { + "answers": [ + "콤퓨터", + "컴퓨터" + ], + "en_answers": [ + "computer" + ], + "count": 1 + }, + { + "answers": [ + "중국어" + ], + "en_answers": [ + "chinese" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-36": { + "question": "북한의 초고급중학교 학생들이 어떤 과목에 대한 개인전문지도를 가장 많이 받나요?", + "en_question": "Which subject’s academy/private educational institute do middle or high students most frequently attend in your country?", + "annotations": [ + { + "answers": [ + "수학" + ], + "en_answers": [ + "mathematics", + "math" + ], + "count": 4 + }, + { + "answers": [ + "영어" + ], + "en_answers": [ + "english" + ], + "count": 3 + }, + { + "answers": [ + "콤퓨터", + "컴퓨터" + ], + "en_answers": [ + "computer" + ], + "count": 1 + }, + { + "answers": [ + "외국어" + ], + "en_answers": [ + "foreign language" + ], + "count": 1 + }, + { + "answers": [ + "예체능" + ], + "en_answers": [ + "art", + "music", + "physical education" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-37": { + "question": "북한의 초고급중학교 학생들은 학교에 어떤 옷을 입고 학교에 가나요?", + "en_question": "What type of clothing do middle and high school students wear to school in your country?", + "annotations": [ + { + "answers": [ + "교복" + ], + "en_answers": [ + "school uniform" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-38": { + "question": "북한의 대학 입학에서 가장 입학하기 어려운 학부는 무엇인가요?", + "en_question": "Which major is considered the most difficult to gain admission to in your country?", + "annotations": [ + { + "answers": [ + "건설학부", + "건설학부(2000년대 변경)", + "사범대학은 지도원학부" + ], + "en_answers": [ + "faculty of construction", + "teachers' college is the department of guidance" + ], + "count": 2 + }, + { + "answers": [ + "이과" + ], + "en_answers": [ + "science and technology" + ], + "count": 1 + }, + { + "answers": [ + "법학부" + ], + "en_answers": [ + "department of law" + ], + "count": 1 + }, + { + "answers": [ + "혁명력사학부" + ], + "en_answers": [ + "department of revolutionary history" + ], + "count": 1 + }, + { + "answers": [ + "음악학부" + ], + "en_answers": [ + "department of music" + ], + "count": 1 + }, + { + "answers": [ + "외국어학부" + ], + "en_answers": [ + "foreign language department" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-39": { + "question": "북한 소학교 학생들이 가장 많이 배우는 악기는 무엇인가요?", + "en_question": "What is the most commonly learned musical instrument by elementary school students in your country?", + "annotations": [ + { + "answers": [ + "기타" + ], + "en_answers": [ + "guitar" + ], + "count": 2 + }, + { + "answers": [ + "하모니카" + ], + "en_answers": [ + "harmonica" + ], + "count": 2 + }, + { + "answers": [ + "바이올린" + ], + "en_answers": [ + "violin" + ], + "count": 2 + }, + { + "answers": [ + "손풍금", + "아코디언" + ], + "en_answers": [ + "accordion" + ], + "count": 2 + }, + { + "answers": [ + "가야금" + ], + "en_answers": [ + "gayageum", + "korean harp" + ], + "count": 1 + }, + { + "answers": [ + "피리" + ], + "en_answers": [ + "pipe" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-40": { + "question": "북한의 고급중학교 학생들은 보통 쉬는 시간에 무엇을 하나요?", + "en_question": "What do high school students typically do during break time in schools in your country?", + "annotations": [ + { + "answers": [ + "휴식" + ], + "en_answers": [ + "rest", + "break" + ], + "count": 2 + }, + { + "answers": [ + "수다", + "잡담" + ], + "en_answers": [ + "chat", + "chatter", + "small talk", + "chitchat" + ], + "count": 2 + }, + { + "answers": [ + "복습" + ], + "en_answers": [ + "review" + ], + "count": 1 + }, + { + "answers": [ + "숙제" + ], + "en_answers": [ + "homework", + "assignment" + ], + "count": 1 + }, + { + "answers": [ + "뜀줄" + ], + "en_answers": [ + "jump rope" + ], + "count": 1 + }, + { + "answers": [ + "체조" + ], + "en_answers": [ + "gymnastics", + "exercise" + ], + "count": 1 + }, + { + "answers": [ + "친구들과 자유롭게" + ], + "en_answers": [ + "freely with friends" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-41": { + "question": "북한의 학교 안에서 학생들은 어떤 신발을 신나요?", + "en_question": "What kind of shoes do students wear in schools in your country?", + "annotations": [ + { + "answers": [ + "구두" + ], + "en_answers": [ + "shoes" + ], + "count": 2 + }, + { + "answers": [ + "슈즈", + "운동화" + ], + "en_answers": [ + "sneakers" + ], + "count": 2 + }, + { + "answers": [ + "쓰레빠", + "덧신(슬리퍼)" + ], + "en_answers": [ + "slipper" + ], + "count": 1 + }, + { + "answers": [ + "실내화" + ], + "en_answers": [ + "slippers", + "indoor shoes" + ], + "count": 1 + }, + { + "answers": [ + "편리화" + ], + "en_answers": [ + "convenience" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-42": { + "question": "북한의 대학 입학시험에서 꼭 시험치는 과목은 무엇인가요?", + "en_question": "What are the required subjects in your country's university entrance exam?", + "annotations": [ + { + "answers": [ + "수학" + ], + "en_answers": [ + "mathematics", + "math" + ], + "count": 3 + }, + { + "answers": [ + "국어" + ], + "en_answers": [ + "korean" + ], + "count": 3 + }, + { + "answers": [ + "혁명력사", + "혁명역사", + "김일성혁명력사" + ], + "en_answers": [ + "revolutionary history", + "modern and contemporary history", + "modern history", + "contemporary history", + "kim il sung revolutionary history" + ], + "count": 3 + }, + { + "answers": [ + "영어" + ], + "en_answers": [ + "english" + ], + "count": 2 + }, + { + "answers": [ + "체육" + ], + "en_answers": [ + "physical education" + ], + "count": 1 + }, + { + "answers": [ + "외국어" + ], + "en_answers": [ + "foreign language" + ], + "count": 1 + }, + { + "answers": [ + "자연과학", + "자연과학 등" + ], + "en_answers": [ + "science" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-44": { + "question": "북한의 어느 지방(도시 내)에서 교육 열성이 가장 높나요?", + "en_question": "Which region (within a city) in your country has the highest academic fervor?", + "annotations": [ + { + "answers": [ + "평양" + ], + "en_answers": [ + "pyongyang" + ], + "count": 3 + }, + { + "answers": [ + "직할시" + ], + "en_answers": [ + "directly governed city" + ], + "count": 1 + }, + { + "answers": [ + "도소재지" + ], + "en_answers": [ + "provincial capital" + ], + "count": 1 + }, + { + "answers": [ + "모든 지방" + ], + "en_answers": [ + "all provinces" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-45": { + "question": "북한의 대학 축제에서 사람들이 가장 바라는 것은 무엇인가요?", + "en_question": "What do people look forward to the most at university festivals in your country?", + "annotations": [ + { + "answers": [ + "즐겁게 노는것" + ], + "en_answers": [ + "having fun" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 1, + "no-answer": 0 + } + }, + "Jo-sp-01": { + "question": "북한에서 두번째로 좋아 하는 체육종목 무엇인가요?", + "en_question": "What is the second most popular sport in your country?", + "annotations": [ + { + "answers": [ + "배구" + ], + "en_answers": [ + "volleyball" + ], + "count": 2 + }, + { + "answers": [ + "륙상", + "육상" + ], + "en_answers": [ + "athletics", + "track and field", + "track-and-field" + ], + "count": 2 + }, + { + "answers": [ + "농구" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "력기" + ], + "en_answers": [ + "weightlifting" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Jo-sp-02": { + "question": "북한에서 구기종목을 제외하고 가장 좋아 하는 체육종목은 무엇인가요?", + "en_question": "What is the most popular sport played without a ball in your country?", + "annotations": [ + { + "answers": [ + "태권도" + ], + "en_answers": [ + "taekwondo", + "taekwon-do", + "tae kwon do", + "tae kwon-do", + "tae-kwon-do" + ], + "count": 2 + }, + { + "answers": [ + "륙상", + "육상" + ], + "en_answers": [ + "athletics", + "track and field", + "track-and-field" + ], + "count": 2 + }, + { + "answers": [ + "수영" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + }, + { + "answers": [ + "스케이트" + ], + "en_answers": [ + "skate", + "skating" + ], + "count": 1 + }, + { + "answers": [ + "력기" + ], + "en_answers": [ + "weightlifting" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-09": { + "question": "북한의 상류층이 가장 좋아 하는 체육종목은 무엇인가요?", + "en_question": "What sports are most associated with the upper class in your country?", + "annotations": [ + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "스키" + ], + "en_answers": [ + "ski" + ], + "count": 1 + }, + { + "answers": [ + "말타기" + ], + "en_answers": [ + "riding", + "horse riding" + ], + "count": 1 + }, + { + "answers": [ + "골프" + ], + "en_answers": [ + "golf" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-13": { + "question": "북한에서 가장 좋아 하는 수상 체육종목은 무엇인가요?", + "en_question": "What is the most popular water sport in your country?", + "annotations": [ + { + "answers": [ + "수영" + ], + "en_answers": [ + "swimming" + ], + "count": 3 + }, + { + "answers": [ + "수구" + ], + "en_answers": [ + "water polo" + ], + "count": 1 + }, + { + "answers": [ + "수중무용" + ], + "en_answers": [ + "synchronized swimming", + "synchronised swimming", + "artistic swimming" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-14": { + "question": "북한에서 좋아 하는 뇌발달 경기종목은 무엇인가요?", + "en_question": "What is the most popular mental sport in your country?", + "annotations": [ + { + "answers": [ + "바둑" + ], + "en_answers": [ + "go" + ], + "count": 2 + }, + { + "answers": [ + "공뺏기" + ], + "en_answers": [ + "airplane catching" + ], + "count": 1 + }, + { + "answers": [ + "장기" + ], + "en_answers": [ + "janggi", + "changgi", + "korean chess" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-18": { + "question": "북한의 로동자 한 명이 일년에 받는 휴가 일수는 며칠인가요? (아라비아 숫자(예: 12)로만 제공해 주세요.)", + "en_question": "How many holiday days per year does a standard worker gets in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 2 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Jo-sp-19": { + "question": "북한의 어느 지방이 옛적 부터 농업 지역입니까?", + "en_question": "What region in your country has been traditionally associated with agriculture?", + "annotations": [ + { + "answers": [ + "황해도" + ], + "en_answers": [ + "hwanghae", + "hwanghae province", + "hwanghae-do" + ], + "count": 4 + }, + { + "answers": [ + "평안도" + ], + "en_answers": [ + "p'yŏngan", + "pyeongan", + "pyongan", + "pyongan province", + "pyeong-an-do", + "p'yŏngan-do" + ], + "count": 1 + }, + { + "answers": [ + "함경도", + "함경도 등" + ], + "en_answers": [ + "hamgyŏng", + "hamgyeong", + "hamgyong", + "hamgyong province", + "hamgyeong-do", + "hamgyŏng-do" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-21": { + "question": "북한의 로동자들은 보통 몇 시부터 점심밥을 먹나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공하세요.)", + "en_question": "What time, if any, do people usually leave work for lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "12:00" + ], + "en_answers": [ + "12:00" + ], + "count": 5 + }, + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-31": { + "question": "북한의 고급중학교 학생들은 보통 몇 시에 집에 가나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)", + "en_question": "What time do high school students tend to leave school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 4 + }, + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 1 + }, + { + "answers": [ + "12:00" + ], + "en_answers": [ + "12:00" + ], + "count": 1 + }, + { + "answers": [ + "20:00" + ], + "en_answers": [ + "20:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-32": { + "question": "북한의 소학교 학생들은 학교에서 주로 어떤 체육을 하나요?", + "en_question": "What sport do elementary school students tend to practice at school in your country?", + "annotations": [ + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "달리기" + ], + "en_answers": [ + "running" + ], + "count": 2 + }, + { + "answers": [ + "평행봉" + ], + "en_answers": [ + "parallel bars" + ], + "count": 2 + }, + { + "answers": [ + "수영" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + }, + { + "answers": [ + "대중체육" + ], + "en_answers": [ + "mass sports" + ], + "count": 1 + }, + { + "answers": [ + "업간체조" + ], + "en_answers": [ + "mass gymnastics" + ], + "count": 1 + }, + { + "answers": [ + "스케이트" + ], + "en_answers": [ + "skate", + "skating" + ], + "count": 1 + }, + { + "answers": [ + "철봉" + ], + "en_answers": [ + "bar" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-36": { + "question": "북한 소학교의 여름 방학은 주로 몇 주인가요? (아라비아 숫자(예: 7, 8)만 기재해 주세요.)", + "en_question": "How long (in weeks) are summer vacations at elementary schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 2 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 2 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 2 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-37": { + "question": "북한 대학의 여름 방학은 몇주 인가요? (아라비아 숫자(예: 7, 8)만 기재해 주세요.)", + "en_question": "How long (in weeks) are summer vacations at universities in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 4 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-39": { + "question": "북한에서 소학교는 몇 살에 입학하나요? (아라비아 숫자(예: 12)만 기재해주세요.)", + "en_question": "At what age does elementary education begin in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 3 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-43": { + "question": "북한의 소학교에서 국어 외에 배우는 외국어는 몇 개인가요? (아라비아 숫자(예: 7, 8)만 제공해 주세요.)", + "en_question": "How many languages are studied in elementary education besides your country's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-01": { + "question": "북한에서 사람들이 주로 무엇을 리용하여 밥을 먹는가요?", + "en_question": "What eating utensils do people commonly used in your country?", + "annotations": [ + { + "answers": [ + "김치" + ], + "en_answers": [ + "kimchi", + "gimchi", + "kimch'i" + ], + "count": 2 + }, + { + "answers": [ + "숟가락" + ], + "en_answers": [ + "spoon" + ], + "count": 2 + }, + { + "answers": [ + "밥솥" + ], + "en_answers": [ + "rice cooker" + ], + "count": 1 + }, + { + "answers": [ + "쇠가마" + ], + "en_answers": [ + "iron pot" + ], + "count": 1 + }, + { + "answers": [ + "저가락" + ], + "en_answers": [ + "low price" + ], + "count": 1 + }, + { + "answers": [ + "국" + ], + "en_answers": [ + "soup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-04": { + "question": "북한 사람들은 어떤 청량음료를 좋아 하나요?", + "en_question": "What soft drink do people in your country like to have?", + "annotations": [ + { + "answers": [ + "사이다", + "탄산수" + ], + "en_answers": [ + "cider", + "carbonated water" + ], + "count": 5 + }, + { + "answers": [ + "과일단물" + ], + "en_answers": [ + "juice" + ], + "count": 1 + }, + { + "answers": [ + "약수" + ], + "en_answers": [ + "mineral spring" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-06": { + "question": "북한에서 가장 좋아 하는 옛날 술은 무엇입니까?", + "en_question": "What is the most popular traditional alcohol in your country?", + "annotations": [ + { + "answers": [ + "탁배기", + "막걸리" + ], + "en_answers": [ + "makgeolli", + "makkoli", + "rice wine" + ], + "count": 2 + }, + { + "answers": [ + "고려인삼술" + ], + "en_answers": [ + "koryo ginseng liquor" + ], + "count": 1 + }, + { + "answers": [ + "소주" + ], + "en_answers": [ + "soju" + ], + "count": 1 + }, + { + "answers": [ + "농태기" + ], + "en_answers": [ + "nongtaegi", + "soju", + "home brewed liquor", + "homemade alcohol" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-07": { + "question": "북한 사람들이 식당에서 저녁을 먹는데 평균적으로 몇 시간이 걸리나요? (아라비아 숫자로 소수점 한 자리까지(예: 2, 3.5)만 제공해 주세요.)", + "en_question": "How long (in hours) on average does it take for people in your country to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 3 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Jod-ch-09": { + "question": "북한에서 사람들은 보통 몇 시에 저녁을 먹나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)", + "en_question": "What time do people usually have dinner in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "19:00" + ], + "en_answers": [ + "19:00" + ], + "count": 5 + }, + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 2 + }, + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-12": { + "question": "북한 사람들은 어떤 국을 좋아 하나요?", + "en_question": "What kind of soup do people from your country like to have?", + "annotations": [ + { + "answers": [ + "배추국" + ], + "en_answers": [ + "cabbage soup" + ], + "count": 2 + }, + { + "answers": [ + "두부국", + "두부" + ], + "en_answers": [ + "tofu soup", + "tofu" + ], + "count": 2 + }, + { + "answers": [ + "김치국", + "김칫국" + ], + "en_answers": [ + "counting one's chickens before they hatch", + "kimchi soup" + ], + "count": 2 + }, + { + "answers": [ + "된장", + "된장국" + ], + "en_answers": [ + "soybean paste", + "soybean paste soup" + ], + "count": 2 + }, + { + "answers": [ + "무우국" + ], + "en_answers": [ + "radish soup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-13": { + "question": "북한 사람들은 어떤 거리 음식을 좋아 하나요?", + "en_question": "What street food do people from your country like to eat?", + "annotations": [ + { + "answers": [ + "두부밥" + ], + "en_answers": [ + "tofu rice" + ], + "count": 4 + }, + { + "answers": [ + "인조고기밥" + ], + "en_answers": [ + "synthetic meat rice" + ], + "count": 2 + }, + { + "answers": [ + "김밥" + ], + "en_answers": [ + "gimbap", + "kimbap" + ], + "count": 1 + }, + { + "answers": [ + "삶은 강냉이" + ], + "en_answers": [ + "boiled corn" + ], + "count": 1 + }, + { + "answers": [ + "시장" + ], + "en_answers": [ + "market" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-15": { + "question": "북한 사람들은 어떤 수산물을 좋아 하나요?", + "en_question": "What kind of seafood do people from your country like to eat?", + "annotations": [ + { + "answers": [ + "이면수", + "이면수(임연수)", + "임연수" + ], + "en_answers": [ + "two-faced number", + "rice with meat and vegetables", + "carp" + ], + "count": 5 + }, + { + "answers": [ + "명태" + ], + "en_answers": [ + "alaska pollock" + ], + "count": 3 + }, + { + "answers": [ + "낙지" + ], + "en_answers": [ + "octopus" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-16": { + "question": "북한에서 가장 큰 축제는 무엇인가요?", + "en_question": "What is the biggest festival in your country?", + "annotations": [ + { + "answers": [ + "4.15", + "김일성생일축전" + ], + "en_answers": [ + "4.15", + "kim il-sung's birthday celebration" + ], + "count": 3 + }, + { + "answers": [ + "2.16" + ], + "en_answers": [ + "2.16" + ], + "count": 1 + }, + { + "answers": [ + "세계청년학생축제" + ], + "en_answers": [ + "world festival of youth and students" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-28": { + "question": "북한에서 사람들이 다른 도시로 갈 때 가장 많이 이용하는 대중교통은 무엇입니까?", + "en_question": "What is the most commonly used public transport by people when travelling between cites in your country?", + "annotations": [ + { + "answers": [ + "기차" + ], + "en_answers": [ + "train" + ], + "count": 4 + }, + { + "answers": [ + "버스" + ], + "en_answers": [ + "bus" + ], + "count": 3 + }, + { + "answers": [ + "자동차", + "차", + "서비차" + ], + "en_answers": [ + "car", + "service car" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-30": { + "question": "북한에서 가장 큰 행사축제 때 하는 특별한 장식이나 상징은 무엇인가요?", + "en_question": "What are the specific decorations or symbols associated with the most biggest festival in your country?", + "annotations": [ + { + "answers": [ + "집단체조" + ], + "en_answers": [ + "mass gymnastics" + ], + "count": 1 + }, + { + "answers": [ + "꽃", + "꽃다발" + ], + "en_answers": [ + "flower", + "bouquet" + ], + "count": 1 + }, + { + "answers": [ + "인공기" + ], + "en_answers": [ + "national flag" + ], + "count": 1 + }, + { + "answers": [ + "국기계양" + ], + "en_answers": [ + "raising of the national flag" + ], + "count": 1 + }, + { + "answers": [ + "선전 포스타" + ], + "en_answers": [ + "propaganda poster" + ], + "count": 1 + }, + { + "answers": [ + "꽃밭" + ], + "en_answers": [ + "flower garden" + ], + "count": 1 + }, + { + "answers": [ + "목란꽃" + ], + "en_answers": [ + "magnolia flower" + ], + "count": 1 + }, + { + "answers": [ + "김정일화" + ], + "en_answers": [ + "kimjongilia" + ], + "count": 1 + }, + { + "answers": [ + "진달래" + ], + "en_answers": [ + "azalea" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-37": { + "question": "북한에서 여성들이 가장 보기 좋아 하는 체육경기는 무엇인가요?", + "en_question": "What sports do women like to watch the most in your country?", + "annotations": [ + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "피겨스케이트" + ], + "en_answers": [ + "figure skate" + ], + "count": 1 + }, + { + "answers": [ + "댕기" + ], + "en_answers": [ + "hair" + ], + "count": 1 + }, + { + "answers": [ + "곤봉" + ], + "en_answers": [ + "club" + ], + "count": 1 + }, + { + "answers": [ + "륜", + "윤" + ], + "en_answers": [ + "leap (as in a leap year)" + ], + "count": 1 + }, + { + "answers": [ + "배구" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "예술체조" + ], + "en_answers": [ + "artistic gymnastics" + ], + "count": 1 + }, + { + "answers": [ + "탁구" + ], + "en_answers": [ + "table tennis" + ], + "count": 1 + }, + { + "answers": [ + "마라손", + "마라톤" + ], + "en_answers": [ + "marathon" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-38": { + "question": "북한에서 남성들이 가장 보기 좋아 하는 체육경기는 무엇인가요?", + "en_question": "What sports do men like to watch the most in your country?", + "annotations": [ + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "배구" + ], + "en_answers": [ + "volleyball" + ], + "count": 2 + }, + { + "answers": [ + "롱구", + "농구" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "태권도" + ], + "en_answers": [ + "taekwondo", + "taekwon-do", + "tae kwon do", + "tae kwon-do", + "tae-kwon-do" + ], + "count": 1 + }, + { + "answers": [ + "륙상" + ], + "en_answers": [ + "athletics", + "track and field", + "track-and-field" + ], + "count": 1 + }, + { + "answers": [ + "사격" + ], + "en_answers": [ + "shooting", + "shooting sports" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-41": { + "question": "북한의 20대 여자들이 주로 하는 활동은 무엇인가요?", + "en_question": "What is the common leisure activity that females in their 20s in your country engage in?", + "annotations": [ + { + "answers": [ + "노래부르기" + ], + "en_answers": [ + "singing" + ], + "count": 1 + }, + { + "answers": [ + "조직단체활동" + ], + "en_answers": [ + "organizational activities" + ], + "count": 1 + }, + { + "answers": [ + "부모돕기활동" + ], + "en_answers": [ + "parental support activities" + ], + "count": 1 + }, + { + "answers": [ + "장사" + ], + "en_answers": [ + "business" + ], + "count": 1 + }, + { + "answers": [ + "경제활동" + ], + "en_answers": [ + "economic activities" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Jod-ch-42": { + "question": "북한의 20대 남자들이 주로 하는 활동은 무엇인가요?", + "en_question": "What is the common leisure activity that males in their 20s in your country engage in?", + "annotations": [ + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "조직단체활동" + ], + "en_answers": [ + "organizational activities" + ], + "count": 1 + }, + { + "answers": [ + "부모돕기활동" + ], + "en_answers": [ + "parental support activities" + ], + "count": 1 + }, + { + "answers": [ + "장사" + ], + "en_answers": [ + "business" + ], + "count": 1 + }, + { + "answers": [ + "경제활동" + ], + "en_answers": [ + "economic activities" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Jod-ch-46": { + "question": "북한에서 점심 식사 후 보통 몇 시간 동안 휴식을 하나요? (아라비아 숫자로 소수점 한 자리까지(예: 2, 3.5)만 제공해 주세요.)", + "en_question": "How long (in hours) do people usually take a break after lunch on a weekday in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 4 + }, + { + "answers": [ + "0.5" + ], + "en_answers": [ + "0.5" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-48": { + "question": "북한에서 사람들은 근로일에 점심으로 무엇을 먹나요?", + "en_question": "What do people eat for lunch during the working days in your country?", + "annotations": [ + { + "answers": [ + "밥" + ], + "en_answers": [ + "rice" + ], + "count": 2 + }, + { + "answers": [ + "집에 가서 먹음." + ], + "en_answers": [ + "eat at home." + ], + "count": 1 + }, + { + "answers": [ + "쌀밥" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "잡곡밥" + ], + "en_answers": [ + "mixed grain rice" + ], + "count": 1 + }, + { + "answers": [ + "감자" + ], + "en_answers": [ + "potato" + ], + "count": 1 + }, + { + "answers": [ + "국" + ], + "en_answers": [ + "soup" + ], + "count": 1 + }, + { + "answers": [ + "반찬" + ], + "en_answers": [ + "side dish" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-50": { + "question": "북한 사람들의 평균 출근 시간은 몇 분인가요? (아라비아 숫자(예: 1)만 기재해 주세요.)", + "en_question": "What is the average commute time (in minutes) for people in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 2 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 1 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + }, + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + }, + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 1 + }, + { + "answers": [ + "480" + ], + "en_answers": [ + "480" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-51": { + "question": "북한에서 사람들이 출근할 때 가장 많이 타는 차는 무엇인가요?", + "en_question": "What is the most common transportation that people take to get to work in your country?", + "annotations": [ + { + "answers": [ + "버스" + ], + "en_answers": [ + "bus" + ], + "count": 4 + }, + { + "answers": [ + "자전거" + ], + "en_answers": [ + "bicycle", + "bike" + ], + "count": 3 + }, + { + "answers": [ + "지하철" + ], + "en_answers": [ + "subway" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-54": { + "question": "북한의 결혼 휴가는 며칠입니까? (아라비아 숫자(예: 12)로만 기재해 주세요.)", + "en_question": "How long (in days) is the marriage leave in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 1 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "Jod-ch-56": { + "question": "북한 여성의 년로보장 나이는 몇 살입니까? (아라비아 숫자(예: 12)만 기재해 주세요.)", + "en_question": "What is the typical retirement age for women in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "55" + ], + "en_answers": [ + "55" + ], + "count": 3 + }, + { + "answers": [ + "56" + ], + "en_answers": [ + "56" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-57": { + "question": "북한 남성의 년로보장 나이는 몇 살입니까? (아라비아 숫자(예: 12)만 기재해 주세요.)", + "en_question": "What is the typical retirement age for men in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-58": { + "question": "북한에서 가장 존경하는 직업은 무엇입니까?", + "en_question": "Which profession is the most respected in your country?", + "annotations": [ + { + "answers": [ + "교사" + ], + "en_answers": [ + "teacher" + ], + "count": 2 + }, + { + "answers": [ + "교수" + ], + "en_answers": [ + "professor" + ], + "count": 1 + }, + { + "answers": [ + "장사" + ], + "en_answers": [ + "business" + ], + "count": 1 + }, + { + "answers": [ + "고급당간부" + ], + "en_answers": [ + "senior party official" + ], + "count": 1 + }, + { + "answers": [ + "고급군관" + ], + "en_answers": [ + "senior officer" + ], + "count": 1 + }, + { + "answers": [ + "돈주" + ], + "en_answers": [ + "money master" + ], + "count": 1 + }, + { + "answers": [ + "보위원" + ], + "en_answers": [ + "security officer" + ], + "count": 1 + }, + { + "answers": [ + "당일군" + ], + "en_answers": [ + "party day military" + ], + "count": 1 + }, + { + "answers": [ + "무역일군" + ], + "en_answers": [ + "trade worker" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-60": { + "question": "북한 사람들의 하루 평균 로동시간은 몇 시간인가요? (아라비아 숫자(0~24)만 기재해 주세요.)", + "en_question": "What is the duration (in hours) of a typical workday in your country? (Provide Arabic numerals (0~24) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 4 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-61": { + "question": "북한 여성들이 가장 좋아 하는 직업은 무엇입니까?", + "en_question": "Which occupation is most preferred among females in your country?", + "annotations": [ + { + "answers": [ + "교원", + "교사", + "선생님" + ], + "en_answers": [ + "teacher" + ], + "count": 3 + }, + { + "answers": [ + "장사" + ], + "en_answers": [ + "business" + ], + "count": 1 + }, + { + "answers": [ + "고급당간부" + ], + "en_answers": [ + "senior party official" + ], + "count": 1 + }, + { + "answers": [ + "고급군관" + ], + "en_answers": [ + "senior officer" + ], + "count": 1 + }, + { + "answers": [ + "돈주" + ], + "en_answers": [ + "money master" + ], + "count": 1 + }, + { + "answers": [ + "의사" + ], + "en_answers": [ + "doctor" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-62": { + "question": "북한 남자들이 가장 좋아 하는 직업은 무엇입니까?", + "en_question": "Which occupation is most preferred among males in your country?", + "annotations": [ + { + "answers": [ + "당일군" + ], + "en_answers": [ + "party day military" + ], + "count": 2 + }, + { + "answers": [ + "공무원" + ], + "en_answers": [ + "public official" + ], + "count": 1 + }, + { + "answers": [ + "보위원", + "보안원" + ], + "en_answers": [ + "security officer" + ], + "count": 1 + }, + { + "answers": [ + "군인" + ], + "en_answers": [ + "soldier" + ], + "count": 1 + }, + { + "answers": [ + "장사" + ], + "en_answers": [ + "business" + ], + "count": 1 + }, + { + "answers": [ + "고급당간부" + ], + "en_answers": [ + "senior party official" + ], + "count": 1 + }, + { + "answers": [ + "고급군관" + ], + "en_answers": [ + "senior officer" + ], + "count": 1 + }, + { + "answers": [ + "돈주" + ], + "en_answers": [ + "money master" + ], + "count": 1 + }, + { + "answers": [ + "무역일군", + "보위원" + ], + "en_answers": [ + "trade worker", + "security officer" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-17": { + "question": "평균적으로 북한 학생들은 보통 어느 정도까지 교육을 받나요? (예: 소학교, 고급중학교)", + "en_question": "On average, how far do students typically pursue their education in your country? (e.g., elementary, high school)", + "annotations": [ + { + "answers": [ + "고급중학교", + "고급중학고" + ], + "en_answers": [ + "senior middle school" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-24": { + "question": "북한의 학교에서 학생들은 영어 외에 어떤 외국어를 배우나요?", + "en_question": "What language is taught in schools in your country besides English?", + "annotations": [ + { + "answers": [ + "중국어" + ], + "en_answers": [ + "chinese" + ], + "count": 4 + }, + { + "answers": [ + "러시아어", + "로어" + ], + "en_answers": [ + "russian language", + "labor" + ], + "count": 3 + }, + { + "answers": [ + "한문" + ], + "en_answers": [ + "chinese characters" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-30": { + "question": "북한의 학교는 어느 요일에 휴식하나요?", + "en_question": "What days of the week are schools closed in your country?", + "annotations": [ + { + "answers": [ + "일요일", + "일" + ], + "en_answers": [ + "sunday" + ], + "count": 5 + }, + { + "answers": [ + "토" + ], + "en_answers": [ + "saturday" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-32": { + "question": "북한에서 보통 손님들을 위해 어떤 음식을 하나요?", + "en_question": "What food do the hosts usually prepare for the guests in your country?", + "annotations": [ + { + "answers": [ + "돼지고기볶음" + ], + "en_answers": [ + "stir-fried pork" + ], + "count": 1 + }, + { + "answers": [ + "계란말이" + ], + "en_answers": [ + "rolled omelette" + ], + "count": 1 + }, + { + "answers": [ + "두부국" + ], + "en_answers": [ + "tofu soup" + ], + "count": 1 + }, + { + "answers": [ + "떡" + ], + "en_answers": [ + "rice cake", + "tteok" + ], + "count": 1 + }, + { + "answers": [ + "빵" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "고기" + ], + "en_answers": [ + "meat" + ], + "count": 1 + }, + { + "answers": [ + "한정식" + ], + "en_answers": [ + "korean set menu" + ], + "count": 1 + }, + { + "answers": [ + "랭면", + "냉면" + ], + "en_answers": [ + "naengmyeon", + "naengmyŏn", + "cold noodles", + "korean cold noodles" + ], + "count": 1 + }, + { + "answers": [ + "순대" + ], + "en_answers": [ + "korean sausage", + "sundae", + "soondae" + ], + "count": 1 + }, + { + "answers": [ + "물고기회" + ], + "en_answers": [ + "sliced raw fish" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-34": { + "question": "북한의 아침 식사에서 보통 무엇을 마시나요?", + "en_question": "What is the usual drink in the breakfast in your country?", + "annotations": [ + { + "answers": [ + "숭늉" + ], + "en_answers": [ + "sungnyung", + "scorched rice tea", + "scorched-rice tea", + "scorched rice water", + "scorched-rice water" + ], + "count": 2 + }, + { + "answers": [ + "물" + ], + "en_answers": [ + "water" + ], + "count": 2 + }, + { + "answers": [ + "우유", + "염소젓" + ], + "en_answers": [ + "milk", + "goat milk" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ki-pe-36": { + "question": "북한 음식을 제외하고, 북한에서 어느 나라 음식을 아주 좋아 하나요?", + "en_question": "Except the food original from your country, which country's food is more popular in your country?", + "annotations": [ + { + "answers": [ + "중국음식", + "중국" + ], + "en_answers": [ + "chinese cuisine", + "chinese food", + "china" + ], + "count": 4 + }, + { + "answers": [ + "서양료리" + ], + "en_answers": [ + "western dish", + "western cuisine" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ki-pe-39": { + "question": "북한에서 가족 원족에 보통 어떤 음식을 준비하나요?", + "en_question": "What food is usually prepared for a family picnic in your country?", + "annotations": [ + { + "answers": [ + "김밥", + "깁밥" + ], + "en_answers": [ + "gimbap", + "kimbap", + "rice and other ingredients rolled in dried laver seaweed" + ], + "count": 4 + }, + { + "answers": [ + "떡" + ], + "en_answers": [ + "rice cake", + "tteok" + ], + "count": 3 + }, + { + "answers": [ + "빵" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "꽈배기" + ], + "en_answers": [ + "twisted doughnut", + "twisted bread stick", + "twisted donut" + ], + "count": 1 + }, + { + "answers": [ + "두부밥" + ], + "en_answers": [ + "tofu rice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-40": { + "question": "북한의 어떤 음식을 다른 나라 사람들이 징그럽게 여기나요?", + "en_question": "Which food from your country is considered disgusting by the rest of the world?", + "annotations": [ + { + "answers": [ + "개고기" + ], + "en_answers": [ + "dog meat" + ], + "count": 1 + }, + { + "answers": [ + "청국장" + ], + "en_answers": [ + "fermented soybean paste" + ], + "count": 1 + }, + { + "answers": [ + "순대" + ], + "en_answers": [ + "korean sausage", + "sundae", + "soondae" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "no-answer": 1, + "idk": 1 + } + }, + "Ki-pe-43": { + "question": "북한 사람들은 어떤 빵을 많이 좋아 하나요?", + "en_question": "What is the name of the popular bread in your country?", + "annotations": [ + { + "answers": [ + "밀빵" + ], + "en_answers": [ + "wheat bread" + ], + "count": 2 + }, + { + "answers": [ + "꽃빵(중국빵)" + ], + "en_answers": [ + "flower bread (chinese bread)" + ], + "count": 1 + }, + { + "answers": [ + "소다빵" + ], + "en_answers": [ + "soda bread" + ], + "count": 1 + }, + { + "answers": [ + "카스테라" + ], + "en_answers": [ + "castella (a type of sponge cake)" + ], + "count": 1 + }, + { + "answers": [ + "피짜" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + }, + { + "answers": [ + "속빵" + ], + "en_answers": [ + "usb flash drive" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-51": { + "question": "북한의 국가 기관은 주로 몇 시에 문을 닫나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요)", + "en_question": "What time of day are government offices closed in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 3 + }, + { + "answers": [ + "17:30" + ], + "en_answers": [ + "17:30" + ], + "count": 1 + }, + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 1 + }, + { + "answers": [ + "19:00" + ], + "en_answers": [ + "19:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-53": { + "question": "북한 국가 기관은 주로 몇 시에 문을 여나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)", + "en_question": "What is the normal start time of government offices in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 5 + }, + { + "answers": [ + "08:30" + ], + "en_answers": [ + "08:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-01": { + "question": "북한에서 가장 기간이 긴 국가명절은 무엇인가요?", + "en_question": "What national holiday has the longest duration in your country?", + "annotations": [ + { + "answers": [ + "태양절(4월 15일)", + "4.15" + ], + "en_answers": [ + "day of the sun (april 15)", + "4.15" + ], + "count": 2 + }, + { + "answers": [ + "설날" + ], + "en_answers": [ + "lunar new year" + ], + "count": 1 + }, + { + "answers": [ + "김일성 김정일생일" + ], + "en_answers": [ + "kim il-sung kim jong-il's birthday" + ], + "count": 1 + }, + { + "answers": [ + "음력설" + ], + "en_answers": [ + "lunar new year" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-02": { + "question": "북한의 8.15해방을 경축하기 위해 사람들이 많이 하는 행사는 무엇인가요?", + "en_question": "What are the common activities people from your country do to celebrate Independence day?", + "annotations": [ + { + "answers": [ + "꽃바구니 중정식" + ], + "en_answers": [ + "flower basket table setting" + ], + "count": 1 + }, + { + "answers": [ + "정치적 행사" + ], + "en_answers": [ + "political event" + ], + "count": 1 + }, + { + "answers": [ + "국가경축보고대회" + ], + "en_answers": [ + "national celebration report meeting" + ], + "count": 1 + }, + { + "answers": [ + "국가행사" + ], + "en_answers": [ + "national event" + ], + "count": 1 + }, + { + "answers": [ + "여맹행사" + ], + "en_answers": [ + "women's league event" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-04": { + "question": "북한에서는 가족 식구가 사망했을 때 집 앞에 무엇을 설치하나요?", + "en_question": "What is installed in front of the house when a family member dies in your country?", + "annotations": [], + "idks": { + "not-applicable": 3, + "no-answer": 2, + "idk": 0 + } + }, + "Kik-in-05": { + "question": "북한에서 임신 축하 행사/파티는 보통 언제 하나요?", + "en_question": "When is a pregnancy celebration or ceremony usually held in your country?", + "annotations": [], + "idks": { + "no-answer": 2, + "not-applicable": 2, + "idk": 1 + } + }, + "Kik-in-06": { + "question": "북한에서는 결혼식 전에 주로 하는 행사는 무엇인가요?", + "en_question": "What event is usually held before a wedding in your country?", + "annotations": [ + { + "answers": [ + "약혼식", + "약혼" + ], + "en_answers": [ + "engagement ceremony", + "engagement" + ], + "count": 4 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Kik-in-07": { + "question": "북한에서는 설날에 무엇을 아이들에게 주나요?", + "en_question": "What is usually shared to the children during (Lunar) New Year in your country?", + "annotations": [ + { + "answers": [ + "세배돈", + "세뱃돈" + ], + "en_answers": [ + "new year's money" + ], + "count": 3 + }, + { + "answers": [ + "음식" + ], + "en_answers": [ + "food" + ], + "count": 1 + }, + { + "answers": [ + "새옷" + ], + "en_answers": [ + "new clothes" + ], + "count": 1 + }, + { + "answers": [ + "장난감" + ], + "en_answers": [ + "toy" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-08": { + "question": "북한 사람들은 이슬람교의 단식날이 시작되기 며칠 전부터 주로 어떤 걸 하나요?", + "en_question": "What activities are usually done days before Ramadan in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Kik-in-10": { + "question": "북한을 방문하는 외국인 관광객에게 가장 인기 있는 관광명승지는 어디입니까?", + "en_question": "What is the most popular tourist attraction for foreign visitors in your country?", + "annotations": [ + { + "answers": [ + "백두산" + ], + "en_answers": [ + "mount paektu" + ], + "count": 3 + }, + { + "answers": [ + "금강산" + ], + "en_answers": [ + "mount kumgang" + ], + "count": 2 + }, + { + "answers": [ + "평양" + ], + "en_answers": [ + "pyongyang" + ], + "count": 2 + }, + { + "answers": [ + "묘향산" + ], + "en_answers": [ + "myohyangsan" + ], + "count": 2 + }, + { + "answers": [ + "칠보산" + ], + "en_answers": [ + "chilbosan" + ], + "count": 1 + }, + { + "answers": [ + "김정숙 동상" + ], + "en_answers": [ + "statue of kim jong-suk" + ], + "count": 1 + }, + { + "answers": [ + "김정숙 생가" + ], + "en_answers": [ + "birthplace of kim jong-suk" + ], + "count": 1 + }, + { + "answers": [ + "모란봉" + ], + "en_answers": [ + "moran hill" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-11": { + "question": "북한에서 종교적 장소(절, 교회 등) 중 관광명승지로 가장 이름 있는 곳은 어디인가요?", + "en_question": "What is the most popular religious sites (temple, church, etc.) for tourism in your country?", + "annotations": [ + { + "answers": [ + "묘향산 보현사", + "묘향산" + ], + "en_answers": [ + "myohyangsan pohyonsa", + "myohyangsan" + ], + "count": 2 + }, + { + "answers": [ + "칠골교회" + ], + "en_answers": [ + "chilgol church" + ], + "count": 1 + }, + { + "answers": [ + "봉수교회" + ], + "en_answers": [ + "bongsu church" + ], + "count": 1 + }, + { + "answers": [ + "평양 봉수교회" + ], + "en_answers": [ + "pyongyang bongsu church" + ], + "count": 1 + }, + { + "answers": [ + "금강산" + ], + "en_answers": [ + "mount kumgang" + ], + "count": 1 + }, + { + "answers": [ + "칠보산" + ], + "en_answers": [ + "chilbosan" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "Kik-in-15": { + "question": "북한에서 여성들은 보통 졸업식에 어떤 옷을 입나요?", + "en_question": "What clothes do women usually wear on graduation commencement ceremony in your country?", + "annotations": [ + { + "answers": [ + "교복" + ], + "en_answers": [ + "school uniform" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-16": { + "question": "날씨가 추울 때 북한에서 많이 마시는 청량음료는 무엇인가요?", + "en_question": "What drink is commonly consumed in your country when the weather is cold?", + "annotations": [ + { + "answers": [ + "커피" + ], + "en_answers": [ + "coffee" + ], + "count": 3 + }, + { + "answers": [ + "록차" + ], + "en_answers": [ + "green tea" + ], + "count": 1 + }, + { + "answers": [ + "우유" + ], + "en_answers": [ + "milk" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Kik-in-17": { + "question": "북한에서 이슬람교 금식 기간에 더 많이 팔리고 흔히 보이는 과일은 무엇인가요?", + "en_question": "What fruit is more commonly sold and found during Ramadan in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "no-answer": 1, + "idk": 0 + } + }, + "Kik-in-24": { + "question": "북한의 즉석음식 식당에서 닭튀기와 함께 주로 나오는 탄수화물은 무엇인가요?", + "en_question": "What carbohydrate is usually served with chicken in a fast-food restaurant in your country?", + "annotations": [ + { + "answers": [ + "사이다" + ], + "en_answers": [ + "cider" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 2, + "no-answer": 0 + } + }, + "Kik-in-31": { + "question": "북한에서 가장 잘 알려진 무술은 무엇인가요?", + "en_question": "What is the most famous martial art sports in your country?", + "annotations": [ + { + "answers": [ + "태권도" + ], + "en_answers": [ + "taekwondo", + "taekwon-do", + "tae kwon do", + "tae kwon-do", + "tae-kwon-do" + ], + "count": 4 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Kik-in-34": { + "question": "북한의 국가 방송에서 자주 중계되는 체육경기는 무엇인가요?", + "en_question": "What sports are often broadcasted on national television in your country?", + "annotations": [ + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "탁구" + ], + "en_answers": [ + "table tennis", + "ping-pong" + ], + "count": 2 + }, + { + "answers": [ + "롱구", + "농구" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "씨름" + ], + "en_answers": [ + "ssireum (korean wrestling)" + ], + "count": 1 + }, + { + "answers": [ + "국내체육경기" + ], + "en_answers": [ + "domestic sports competition" + ], + "count": 1 + }, + { + "answers": [ + "아세아체육경기대회" + ], + "en_answers": [ + "asian games" + ], + "count": 1 + }, + { + "answers": [ + "올림픽체육경기대회" + ], + "en_answers": [ + "olympic sports games" + ], + "count": 1 + }, + { + "answers": [ + "마라손", + "마라톤" + ], + "en_answers": [ + "marathon" + ], + "count": 1 + }, + { + "answers": [ + "배구" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-35": { + "question": "코로나 기간 동안 북한 사람들이 많이 하였던 체육은 무엇이었나요?", + "en_question": "What sports were popular among people from your country during the COVID-19 pandemic?", + "annotations": [ + { + "answers": [ + "인민보건체조" + ], + "en_answers": [ + "people's health exercise" + ], + "count": 1 + }, + { + "answers": [ + "건강태권도" + ], + "en_answers": [ + "health taekwondo" + ], + "count": 1 + }, + { + "answers": [ + "율동체조" + ], + "en_answers": [ + "rhythmic gymnastics" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "전국봉쇄": 1, + "not-applicable": 0 + } + }, + "Kik-in-36": { + "question": "북한에서 가장 이름 있는 축구 감독은 누구인가요?", + "en_question": "Who is the most popular soccer coach in your country?", + "annotations": [ + { + "answers": [ + "김정훈" + ], + "en_answers": [ + "kim jong-un" + ], + "count": 2 + }, + { + "answers": [ + "박두익" + ], + "en_answers": [ + "park du-ik" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-37": { + "question": "북한에서 어떤 축구 단들이 치열한 경쟁자로 유명한가요? (예: ___ 대 ___)", + "en_question": "What soccer teams in your country are famous for their intense rivalry? (e.g. ___ vs ___)", + "annotations": [ + { + "answers": [ + "4.25 대 압록강", + "4.25체육단 대 압록강체육단" + ], + "en_answers": [ + "april 25 vs. amnok river", + "april 25 sports team vs. amnokgang sports team" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Kik-in-38": { + "question": "북한에서 경쟁자로 유명한 축구단들의 팬클럽 이름은 무엇인가요? (예: ___ 대 ___)", + "en_question": "What are the names of soccer supporters in your country who are famous for their intense rivalry? (e.g. ___ vs ___)", + "annotations": [ + { + "answers": [ + "4.25축구단" + ], + "en_answers": [ + "april 25 sports club" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "no-answer": 1, + "idk": 1 + } + }, + "Kik-in-40": { + "question": "북한에서 가장 이름 있는 남자 배드민턴 선수는 누구인가요?", + "en_question": "Who is the most famous male badminton player in your country?", + "annotations": [], + "idks": { + "idk": 3, + "no-answer": 1, + "몸 단련을 위한 대중체육활동": 1, + "not-applicable": 0 + } + }, + "Kik-in-41": { + "question": "북한에서 가장 이름 있는 여자 배드민턴 선수는 누구인가요?", + "en_question": "Who is the most famous female badminton player in your country?", + "annotations": [], + "idks": { + "idk": 3, + "no-answer": 1, + "몸단련을 위한 대중체육활동": 1, + "not-applicable": 0 + } + }, + "Kik-in-44": { + "question": "북한 정부로부터 가장 많은 지원을 받는 체육종목은 무엇인가요?", + "en_question": "What sport gets the most support from the government in your country?", + "annotations": [ + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "륙상", + "육상" + ], + "en_answers": [ + "athletics", + "track and field", + "track-and-field" + ], + "count": 1 + }, + { + "answers": [ + "구기종목" + ], + "en_answers": [ + "ball games" + ], + "count": 1 + }, + { + "answers": [ + "력기" + ], + "en_answers": [ + "weightlifting" + ], + "count": 1 + }, + { + "answers": [ + "사격" + ], + "en_answers": [ + "shooting", + "shooting sports" + ], + "count": 1 + }, + { + "answers": [ + "탁구" + ], + "en_answers": [ + "table tennis", + "ping-pong" + ], + "count": 1 + }, + { + "answers": [ + "배구" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "롱구", + "농구" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-45": { + "question": "북한의 학교에는 보통 어떤 체육의 경기장이 있나요?", + "en_question": "What sports field facilities are usually available at schools in your country?", + "annotations": [ + { + "answers": [ + "농구장", + "롱구", + "농구" + ], + "en_answers": [ + "basketball court", + "table tennis", + "basketball" + ], + "count": 3 + }, + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "배구" + ], + "en_answers": [ + "volleyball" + ], + "count": 2 + }, + { + "answers": [ + "축구장" + ], + "en_answers": [ + "soccer field" + ], + "count": 1 + }, + { + "answers": [ + "배구장" + ], + "en_answers": [ + "volleyball court" + ], + "count": 1 + }, + { + "answers": [ + "구기종목" + ], + "en_answers": [ + "ball games" + ], + "count": 1 + }, + { + "answers": [ + "철봉" + ], + "en_answers": [ + "bar" + ], + "count": 1 + }, + { + "answers": [ + "너비뛰기" + ], + "en_answers": [ + "long jump" + ], + "count": 1 + }, + { + "answers": [ + "높이뛰기", + "높이뛰기 등" + ], + "en_answers": [ + "high jump, etc." + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-02": { + "question": "북한 사람들이 가장 잘 마시는 커피점 음료는 무엇인가요?", + "en_question": "What cafe beverage do people from your country most commonly enjoy?", + "annotations": [ + { + "answers": [ + "아메리카노" + ], + "en_answers": [ + "americano" + ], + "count": 2 + }, + { + "answers": [ + "탄산음료" + ], + "en_answers": [ + "carbonated drink" + ], + "count": 1 + }, + { + "answers": [ + "막대기커피" + ], + "en_answers": [ + "stick coffee" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Na-ko-04": { + "question": "북한 사람들이 좋아 하는 술 깨는 음식은 무엇인가요?", + "en_question": "What is the preferred hangover cure food for people from your country?", + "annotations": [ + { + "answers": [ + "꿀 물" + ], + "en_answers": [ + "honey water" + ], + "count": 1 + }, + { + "answers": [ + "꿀" + ], + "en_answers": [ + "honey" + ], + "count": 1 + }, + { + "answers": [ + "된장국" + ], + "en_answers": [ + "soybean paste soup" + ], + "count": 1 + }, + { + "answers": [ + "두부감자국" + ], + "en_answers": [ + "tofu potato soup" + ], + "count": 1 + }, + { + "answers": [ + "김치물" + ], + "en_answers": [ + "kimchi juice" + ], + "count": 1 + }, + { + "answers": [ + "콩나물국" + ], + "en_answers": [ + "bean sprout soup" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-05": { + "question": "북한에서 주로 먹는 전화주문 음식은 무엇인가요?", + "en_question": "What is the typical delivery food in your country?", + "annotations": [ + { + "answers": [ + "랭면", + "냉면" + ], + "en_answers": [ + "naengmyeon", + "naengmyŏn", + "cold noodles", + "korean cold noodles" + ], + "count": 2 + }, + { + "answers": [ + "농마국수" + ], + "en_answers": [ + "farm horse noodles" + ], + "count": 1 + }, + { + "answers": [ + "옥류관랭면" + ], + "en_answers": [ + "okryu cold noodles" + ], + "count": 1 + }, + { + "answers": [ + "커피" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-07": { + "question": "북한 사람들은 어떤 고기를 가장 많이 먹나요?", + "en_question": "What type of meat is consumed most by people from your country?", + "annotations": [ + { + "answers": [ + "돼지고기", + "돼지" + ], + "en_answers": [ + "pork", + "pig" + ], + "count": 5 + }, + { + "answers": [ + "닭고기", + "닭" + ], + "en_answers": [ + "chicken" + ], + "count": 2 + }, + { + "answers": [ + "개고기", + "개" + ], + "en_answers": [ + "dog meat", + "dog" + ], + "count": 2 + }, + { + "answers": [ + "양고기" + ], + "en_answers": [ + "mutton" + ], + "count": 1 + }, + { + "answers": [ + "토끼" + ], + "en_answers": [ + "rabbit" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-08": { + "question": "북한 사람들은 가을철에 주로 어떤 과일을 먹나요?", + "en_question": "What fruit do people from your country often eat in the autumn season?", + "annotations": [ + { + "answers": [ + "사과" + ], + "en_answers": [ + "apple" + ], + "count": 4 + }, + { + "answers": [ + "배" + ], + "en_answers": [ + "pear" + ], + "count": 4 + }, + { + "answers": [ + "돌배" + ], + "en_answers": [ + "asian pear" + ], + "count": 1 + }, + { + "answers": [ + "귤" + ], + "en_answers": [ + "mandarin", + "tangerine" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-09": { + "question": "북한 밥상에서 가장 흔하게 볼 수 있는 반찬은 무엇인가요?", + "en_question": "What side dish is the most commonly served on a dining table in your country?", + "annotations": [ + { + "answers": [ + "김치" + ], + "en_answers": [ + "kimchi", + "gimchi", + "kimch'i" + ], + "count": 3 + }, + { + "answers": [ + "감자반찬" + ], + "en_answers": [ + "potato side dish" + ], + "count": 1 + }, + { + "answers": [ + "김치볶음" + ], + "en_answers": [ + "stir-fried kimchi" + ], + "count": 1 + }, + { + "answers": [ + "나물" + ], + "en_answers": [ + "wild greens" + ], + "count": 1 + }, + { + "answers": [ + "물고기" + ], + "en_answers": [ + "fish" + ], + "count": 1 + }, + { + "answers": [ + "콩나물" + ], + "en_answers": [ + "bean sprouts" + ], + "count": 1 + }, + { + "answers": [ + "감자" + ], + "en_answers": [ + "potato" + ], + "count": 1 + }, + { + "answers": [ + "두부" + ], + "en_answers": [ + "tofu", + "bean curd" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-11": { + "question": "북한 사람들은 축구 경기를 볼 때 무엇을 먹나요?", + "en_question": "What do people from your country eat while watching a soccer game?", + "annotations": [ + { + "answers": [ + "물" + ], + "en_answers": [ + "water" + ], + "count": 1 + }, + { + "answers": [ + "과자" + ], + "en_answers": [ + "snack", + "cracker", + "cookie", + "biscuit" + ], + "count": 1 + }, + { + "answers": [ + "맥주" + ], + "en_answers": [ + "beer" + ], + "count": 1 + }, + { + "answers": [ + "오징어" + ], + "en_answers": [ + "squid" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Na-ko-15": { + "question": "북한의 대표적인 보건식은 무엇인가요?", + "en_question": "What is the representative nourishing food in your country?", + "annotations": [ + { + "answers": [ + "죽" + ], + "en_answers": [ + "porridge" + ], + "count": 1 + }, + { + "answers": [ + "두부" + ], + "en_answers": [ + "tofu", + "bean curd" + ], + "count": 1 + }, + { + "answers": [ + "된장국" + ], + "en_answers": [ + "soybean paste soup" + ], + "count": 1 + }, + { + "answers": [ + "닭곰" + ], + "en_answers": [ + "chicken bear" + ], + "count": 1 + }, + { + "answers": [ + "개고기곰" + ], + "en_answers": [ + "dog meat bear" + ], + "count": 1 + }, + { + "answers": [ + "이밥에 돼지고기국" + ], + "en_answers": [ + "rice with pork soup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-16": { + "question": "북한에서 가장 이름 있는 축구 선수는 누구인가요?", + "en_question": "Who is the most famous soccer player in your country?", + "annotations": [ + { + "answers": [ + "박두희" + ], + "en_answers": [ + "park du-hee" + ], + "count": 1 + }, + { + "answers": [ + "박광용" + ], + "en_answers": [ + "park kwang yong" + ], + "count": 1 + }, + { + "answers": [ + "호날도" + ], + "en_answers": [ + "ronaldo" + ], + "count": 1 + }, + { + "answers": [ + "한광성" + ], + "en_answers": [ + "han kwang-song" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-17": { + "question": "북한의 학교에서 남학생들은 점심시간에 어떤 체육을 즐겨 하나요?", + "en_question": "What sports do male students enjoy during lunch time at school in your country?", + "annotations": [ + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "구기종목" + ], + "en_answers": [ + "ball games" + ], + "count": 1 + }, + { + "answers": [ + "철봉" + ], + "en_answers": [ + "bar" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-18": { + "question": "북한의 체육 수업 시간에 여학생들이 가장 많이 하는 체육은 무엇인가요?", + "en_question": "What is the most common sport girls participate in during physical education classes in your country?", + "annotations": [ + { + "answers": [ + "뜀줄", + "줄넘기" + ], + "en_answers": [ + "skipping rope", + "jump rope" + ], + "count": 2 + }, + { + "answers": [ + "배드민턴" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "고무줄놀이" + ], + "en_answers": [ + "rubber band game" + ], + "count": 1 + }, + { + "answers": [ + "농구" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "배구" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "육상" + ], + "en_answers": [ + "athletics" + ], + "count": 1 + }, + { + "answers": [ + "스케이트" + ], + "en_answers": [ + "skate", + "skating" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-19": { + "question": "북한에서 가장 이름 있는 배구 선수는 누구인가요?", + "en_question": "Who is the most popular volleyball player in your country?", + "annotations": [ + { + "answers": [ + "정진심" + ], + "en_answers": [ + "jeong jin-sim", + "jin-sim jeong", + "chŏng chin-sim", + "chin-sim chŏng" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-20": { + "question": "북한 사람들이 국제 대회에서 가장 열성적으로 응원하는 체육경기 종목은 무엇인가요?", + "en_question": "What sports event do people from your country passionately support the most in international competitions?", + "annotations": [ + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "력기" + ], + "en_answers": [ + "weightlifting" + ], + "count": 1 + }, + { + "answers": [ + "사격" + ], + "en_answers": [ + "shooting", + "shooting sports" + ], + "count": 1 + }, + { + "answers": [ + "탁구" + ], + "en_answers": [ + "table tennis", + "ping-pong" + ], + "count": 1 + }, + { + "answers": [ + "농구" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "배구" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-22": { + "question": "어느 나라를 북한이 가장 큰 축구 경쟁자로 여기고 있나요?", + "en_question": "Which country is considered the biggest rival in soccer matches for your country?", + "annotations": [ + { + "answers": [ + "남한", + "대한민국", + "남조선", + "한국" + ], + "en_answers": [ + "south korea", + "republic of korea", + "rok" + ], + "count": 4 + }, + { + "answers": [ + "일본" + ], + "en_answers": [ + "japan" + ], + "count": 2 + }, + { + "answers": [ + "독일" + ], + "en_answers": [ + "germany" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-23": { + "question": "북한에서 아이들이 가장 많이 하는 전문개인체육지도는 무엇인가요?", + "en_question": "What type of sports academies do children attend the most in your country?", + "annotations": [ + { + "answers": [ + "태권도" + ], + "en_answers": [ + "taekwondo", + "taekwon-do", + "tae kwon do", + "tae kwon-do", + "tae-kwon-do" + ], + "count": 1 + }, + { + "answers": [ + "탁구" + ], + "en_answers": [ + "table tennis", + "ping-pong" + ], + "count": 1 + }, + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "체육교사" + ], + "en_answers": [ + "physical education teacher" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 1 + } + }, + "Na-ko-24": { + "question": "북한의 체육 경기장에서 경기를 보며 먹는 음식 중 가장 많이 먹는 음식은 무엇인가요?", + "en_question": "What is the most commonly eaten food in sports stadiums while watching games in your country?", + "annotations": [], + "idks": { + "not-applicable": 2, + "idk": 2, + "no-answer": 1 + } + }, + "Na-ko-25": { + "question": "북한의 학교 체육대회에서 일반적으로 하는 체육경기는 무엇인가요?", + "en_question": "What are the typical sports played in your country's school sports day?", + "annotations": [ + { + "answers": [ + "밧줄당기기", + "바줄당기기", + "밧줄당기기 등" + ], + "en_answers": [ + "tug-of-war" + ], + "count": 3 + }, + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "달리기" + ], + "en_answers": [ + "running" + ], + "count": 1 + }, + { + "answers": [ + "육상" + ], + "en_answers": [ + "athletics" + ], + "count": 1 + }, + { + "answers": [ + "구기종목" + ], + "en_answers": [ + "ball games" + ], + "count": 1 + }, + { + "answers": [ + "병끼고달리기" + ], + "en_answers": [ + "running with a bottle" + ], + "count": 1 + }, + { + "answers": [ + "사람찾아달리기" + ], + "en_answers": [ + "human hunting" + ], + "count": 1 + }, + { + "answers": [ + "배구" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "농구" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "미국놈때려잡기" + ], + "en_answers": [ + "미국놈때려잡기" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-26": { + "question": "북한의 중년층이 좋아 하는 체육종목은 무엇입니까?", + "en_question": "What are the popular sports among the middle-aged population in your country?", + "annotations": [ + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "탁구" + ], + "en_answers": [ + "table tennis", + "ping-pong" + ], + "count": 1 + }, + { + "answers": [ + "배구" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "롱구" + ], + "en_answers": [ + "table tennis" + ], + "count": 1 + }, + { + "answers": [ + "배드민턴" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-28": { + "question": "북한에서 가장 이름 있는 동계 체육선수는 누구인가요?", + "en_question": "Who is the most popular winter sports player in your country?", + "annotations": [ + { + "answers": [ + "한필화" + ], + "en_answers": [ + "korean brush painting" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-29": { + "question": "북한에서 가장 이름 있는 수영 선수는 누구인가요?", + "en_question": "Who is the most famous swimmer in your country?", + "annotations": [], + "idks": { + "idk": 4, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Na-ko-30": { + "question": "북한에서 가장 좋아 하는 콤퓨터 경기는 무엇인가요?", + "en_question": "What is the most popular e-sports game in your country?", + "annotations": [ + { + "answers": [ + "고속조약" + ], + "en_answers": [ + "high-speed pact" + ], + "count": 1 + }, + { + "answers": [ + "고무총쏘기" + ], + "en_answers": [ + "rubber bullet shooting" + ], + "count": 1 + }, + { + "answers": [ + "땅크전" + ], + "en_answers": [ + "tank battle" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 2, + "not-applicable": 0 + } + }, + "Na-ko-33": { + "question": "북한 사람들은 설날에 대부분 어떤 음식을 먹나요?", + "en_question": "What symbolic food do people from your country eat on (Lunar) New Year?", + "annotations": [ + { + "answers": [ + "떡" + ], + "en_answers": [ + "rice cake", + "tteok" + ], + "count": 3 + }, + { + "answers": [ + "만두" + ], + "en_answers": [ + "dumpling" + ], + "count": 1 + }, + { + "answers": [ + "송편" + ], + "en_answers": [ + "rice cake" + ], + "count": 1 + }, + { + "answers": [ + "국수" + ], + "en_answers": [ + "noodles" + ], + "count": 1 + }, + { + "answers": [ + "농마국수" + ], + "en_answers": [ + "farm horse noodles" + ], + "count": 1 + }, + { + "answers": [ + "삶은 돼지고기" + ], + "en_answers": [ + "boiled pork" + ], + "count": 1 + }, + { + "answers": [ + "떡국" + ], + "en_answers": [ + "rice cake soup" + ], + "count": 1 + }, + { + "answers": [ + "만두국" + ], + "en_answers": [ + "dumpling soup" + ], + "count": 1 + }, + { + "answers": [ + "찰떡" + ], + "en_answers": [ + "glutinous rice cake" + ], + "count": 1 + }, + { + "answers": [ + "입쌀떡" + ], + "en_answers": [ + "rice cake" + ], + "count": 1 + }, + { + "answers": [ + "콩떡" + ], + "en_answers": [ + "bean rice cake" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-37": { + "question": "북한 사람들에게 가장 인기 있는 국내 휴양지는 어디인가요?", + "en_question": "What is the most popular domestic vacation spot for people from your country?", + "annotations": [ + { + "answers": [ + "백두산" + ], + "en_answers": [ + "mount paektu" + ], + "count": 2 + }, + { + "answers": [ + "묘향산" + ], + "en_answers": [ + "myohyangsan" + ], + "count": 2 + }, + { + "answers": [ + "칠보산" + ], + "en_answers": [ + "chilbosan" + ], + "count": 2 + }, + { + "answers": [ + "원산" + ], + "en_answers": [ + "wonsan" + ], + "count": 1 + }, + { + "answers": [ + "금강산" + ], + "en_answers": [ + "mount kumgang" + ], + "count": 1 + }, + { + "answers": [ + "경성온천" + ], + "en_answers": [ + "kyongsong hot spring" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-38": { + "question": "북한에서 신랑과 신부 사이에 주고받는 가장 흔한 결혼 례단은 무엇인가요?", + "en_question": "What is the most common wedding gift between bride and groom in your country?", + "annotations": [ + { + "answers": [ + "옷감" + ], + "en_answers": [ + "cloth" + ], + "count": 2 + }, + { + "answers": [ + "옷", + "옷가지" + ], + "en_answers": [ + "clothes" + ], + "count": 2 + }, + { + "answers": [ + "반지" + ], + "en_answers": [ + "ring" + ], + "count": 1 + }, + { + "answers": [ + "시계" + ], + "en_answers": [ + "clock" + ], + "count": 1 + }, + { + "answers": [ + "돈" + ], + "en_answers": [ + "money" + ], + "count": 1 + }, + { + "answers": [ + "이불" + ], + "en_answers": [ + "blanket" + ], + "count": 1 + }, + { + "answers": [ + "가구" + ], + "en_answers": [ + "furniture" + ], + "count": 1 + }, + { + "answers": [ + "이불감", + "금반지" + ], + "en_answers": [ + "blanket cover", + "gold ring" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-39": { + "question": "북한에서 친구의 결혼식에 참가할 때 축하로 보통 어떤 선물을 주나요?", + "en_question": "What is typically given as a congratulatory gesture when attending a friend's wedding in your country?", + "annotations": [ + { + "answers": [ + "돈" + ], + "en_answers": [ + "money" + ], + "count": 3 + }, + { + "answers": [ + "꽃다발" + ], + "en_answers": [ + "bouquet" + ], + "count": 1 + }, + { + "answers": [ + "현금" + ], + "en_answers": [ + "cash" + ], + "count": 1 + }, + { + "answers": [ + "쌀" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "축의금" + ], + "en_answers": [ + "congratulatory money" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-40": { + "question": "북한에서 장례식은 보통 며칠 동안\u001c하나요? (아라비아 숫자(예: 12)만 기재해 주세요.)", + "en_question": "How long (in days) does a funeral typically last in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 4 + }, + { + "answers": [ + "2일장" + ], + "en_answers": [ + "2-day market" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-41": { + "question": "북한 장례식에 참가 할 때 슬픔을 표시하기 위해 무엇을 준비해야 하나요?", + "en_question": "What should you prepare as a condolence offering when attending a funeral in your country?", + "annotations": [ + { + "answers": [ + "조의금" + ], + "en_answers": [ + "condolence money" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 1 + } + }, + "Na-ko-42": { + "question": "북한 장례식에서 주로 먹는 음식은 무엇인가요?", + "en_question": "What type of food is commonly provided at funeral parlors in your country?", + "annotations": [ + { + "answers": [ + "국수" + ], + "en_answers": [ + "noodles" + ], + "count": 2 + }, + { + "answers": [ + "술" + ], + "en_answers": [ + "alcohol" + ], + "count": 2 + }, + { + "answers": [ + "떡", + "일반 음식과 떡 등" + ], + "en_answers": [ + "rice cake", + "tteok" + ], + "count": 2 + }, + { + "answers": [ + "밥" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "반찬안주" + ], + "en_answers": [ + "side dish snack" + ], + "count": 1 + }, + { + "answers": [ + "일반 음식", + "일반 음식과 떡 등" + ], + "en_answers": [ + "general food and rice cakes, etc." + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-43": { + "question": "북한 사람들은 설날 아침에 무엇을 하나요?", + "en_question": "What do people do in your country in the morning of the (Lunar) New Year?", + "annotations": [ + { + "answers": [ + "세배" + ], + "en_answers": [ + "new year's bow" + ], + "count": 2 + }, + { + "answers": [ + "김일성동상인사", + "동상인사" + ], + "en_answers": [ + "bowing to the statue of kim il-sung", + "statue bowing" + ], + "count": 2 + }, + { + "answers": [ + "만두" + ], + "en_answers": [ + "dumpling" + ], + "count": 1 + }, + { + "answers": [ + "송편" + ], + "en_answers": [ + "rice cake" + ], + "count": 1 + }, + { + "answers": [ + "친척 및 직장 상사집에 찾아가 설 인사 드림" + ], + "en_answers": [ + "visiting relatives and bosses' homes to give lunar new year greetings" + ], + "count": 1 + }, + { + "answers": [ + "절" + ], + "en_answers": [ + "temple" + ], + "count": 1 + }, + { + "answers": [ + "명절음식 식사" + ], + "en_answers": [ + "holiday meal" + ], + "count": 1 + }, + { + "answers": [ + "조상차례상" + ], + "en_answers": [ + "ancestral ritual table" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-44": { + "question": "북한에서 전국적으로 교통 체증이 가장 심한 날은 언제입니까?", + "en_question": "When is the day with your country's most severe nationwide traffic congestion?", + "annotations": [ + { + "answers": [ + "없음" + ], + "en_answers": [ + "none" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "no-answer": 1, + "idk": 0 + } + }, + "Na-ko-45": { + "question": "북한에서 가장 인기 있는 신혼여행지는 어디인가요?", + "en_question": "What is the most popular honeymoon destination in your country?", + "annotations": [ + { + "answers": [ + "칠보산" + ], + "en_answers": [ + "chilbosan" + ], + "count": 1 + }, + { + "answers": [ + "묘향산" + ], + "en_answers": [ + "myohyangsan" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "no-answer": 1, + "idk": 1 + } + }, + "Ne-ar-05": { + "question": "북한에서 가장 중요한 국가명절은 무엇인가요?", + "en_question": "What is the most important national holiday in your country?", + "annotations": [ + { + "answers": [ + "태양절", + "4.15", + "김일성탄생일" + ], + "en_answers": [ + "day of the sun", + "4.15", + "kim il-sung's birthday" + ], + "count": 3 + }, + { + "answers": [ + "2.16", + "김정일탄생일", + "광명성절" + ], + "en_answers": [ + "2.16", + "kim jong-il's birthday", + "day of the shining star" + ], + "count": 2 + }, + { + "answers": [ + "국경일(9.9)" + ], + "en_answers": [ + "national day (9.9)" + ], + "count": 1 + }, + { + "answers": [ + "탄생일" + ], + "en_answers": [ + "birthdate" + ], + "count": 1 + }, + { + "answers": [ + "로동당창건일10월10일" + ], + "en_answers": [ + "workers' party of korea foundation day october 10" + ], + "count": 1 + }, + { + "answers": [ + "김정은 생일" + ], + "en_answers": [ + "kim jong-un's birthday" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-06": { + "question": "북한 사람들은 이슬람교의 단식일 기간에 무엇을 먹나요?", + "en_question": "What do people from your country eat in Ramadan?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Ne-ar-09": { + "question": "북한 사람들은 이드 알피트르에 무엇을 먹나요?", + "en_question": "What do people from your country eat in Eid ul Fitr?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Ne-ar-10": { + "question": "북한 사람들은 이드 알아드하에 무엇을 먹나요?", + "en_question": "What do people from your country eat in Eid ul Adha?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Ne-ar-11": { + "question": "북한 사람들은 새해 첫날을 기념하러 어디로 가나요?", + "en_question": "Where do people from your country go to celebrate New Year's Day?", + "annotations": [ + { + "answers": [ + "동상" + ], + "en_answers": [ + "statue" + ], + "count": 2 + }, + { + "answers": [ + "김일성 동상", + "김일성동상인사" + ], + "en_answers": [ + "kim il-sung statue", + "bowing to the statue of kim il-sung" + ], + "count": 2 + }, + { + "answers": [ + "친정" + ], + "en_answers": [ + "parents' home" + ], + "count": 1 + }, + { + "answers": [ + "사진관" + ], + "en_answers": [ + "photo studio" + ], + "count": 1 + }, + { + "answers": [ + "친구집 방문" + ], + "en_answers": [ + "visit to a friend's house" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-14": { + "question": "북한 가족들은 이드 축제를 위해 어디에 모이나요?", + "en_question": "Where do a family gather for Eid festivities in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Ne-ar-16": { + "question": "북한의 휴식일은 언제인가요 (예: 월요일, 화요일)?", + "en_question": "When is the weekend in your country (e.g. Monday, Tuesday)?", + "annotations": [ + { + "answers": [ + "일요일" + ], + "en_answers": [ + "sunday" + ], + "count": 5 + }, + { + "answers": [ + "토요일" + ], + "en_answers": [ + "saturday" + ], + "count": 1 + }, + { + "answers": [ + "국가명절" + ], + "en_answers": [ + "national holiday" + ], + "count": 1 + }, + { + "answers": [ + "추석" + ], + "en_answers": [ + "ch'usŏk", + "chuseok", + "korean thanksgiving day" + ], + "count": 1 + }, + { + "answers": [ + "양력 음력설" + ], + "en_answers": [ + "solar lunar new year" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-17": { + "question": "북한에서 대부분의 로동자들은 몇 시에 일을 시작하나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공하세요.).", + "en_question": "At what time do most people start work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 5 + }, + { + "answers": [ + "08:30" + ], + "en_answers": [ + "08:30" + ], + "count": 1 + }, + { + "answers": [ + "16:00" + ], + "en_answers": [ + "16:00" + ], + "count": 1 + }, + { + "answers": [ + "24:00" + ], + "en_answers": [ + "24:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-18": { + "question": "북한에서 대부분의 로동자들은 몇 시에 퇴근하나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공하세요.).", + "en_question": "At what time do most people finish work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 3 + }, + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 3 + }, + { + "answers": [ + "17:30" + ], + "en_answers": [ + "17:30" + ], + "count": 1 + }, + { + "answers": [ + "00:00" + ], + "en_answers": [ + "00:00" + ], + "count": 1 + }, + { + "answers": [ + "21:00", + "09:00" + ], + "en_answers": [ + "21:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-20": { + "question": "북한에서 안정적인 직업으로 여겨지는 직업은 무엇인가요?", + "en_question": "What is considered to be a secure job in your country?", + "annotations": [ + { + "answers": [ + "정권기관" + ], + "en_answers": [ + "regime institution" + ], + "count": 1 + }, + { + "answers": [ + "교사" + ], + "en_answers": [ + "teacher" + ], + "count": 1 + }, + { + "answers": [ + "군인" + ], + "en_answers": [ + "soldier" + ], + "count": 1 + }, + { + "answers": [ + "장사" + ], + "en_answers": [ + "business" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "no-answer": 1, + "idk": 0 + } + }, + "Ne-ar-24": { + "question": "북한의 주요 상업 중심지는 어느 도시입니까?", + "en_question": "Which city is the primary commercial hub in your country?", + "annotations": [ + { + "answers": [ + "평성" + ], + "en_answers": [ + "pyongsong" + ], + "count": 3 + }, + { + "answers": [ + "신의주" + ], + "en_answers": [ + "sinuiju" + ], + "count": 2 + }, + { + "answers": [ + "개천" + ], + "en_answers": [ + "day of the foundation of the republic" + ], + "count": 2 + }, + { + "answers": [ + "평양" + ], + "en_answers": [ + "pyongyang" + ], + "count": 1 + }, + { + "answers": [ + "라진-선봉시" + ], + "en_answers": [ + "rason special economic zone" + ], + "count": 1 + }, + { + "answers": [ + "청진" + ], + "en_answers": [ + "chongjin" + ], + "count": 1 + }, + { + "answers": [ + "함흥" + ], + "en_answers": [ + "hamhung" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-25": { + "question": "북한에서 어느 공업 근로자들의 평균 로임이 가장 높나요?", + "en_question": "What is the industry that pays the best in your country?", + "annotations": [ + { + "answers": [ + "군수공업", + "군수공장" + ], + "en_answers": [ + "military industry", + "military factory" + ], + "count": 2 + }, + { + "answers": [ + "군인" + ], + "en_answers": [ + "soldier" + ], + "count": 1 + }, + { + "answers": [ + "광물업" + ], + "en_answers": [ + "mining industry" + ], + "count": 1 + }, + { + "answers": [ + "수산업" + ], + "en_answers": [ + "fisheries" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Ne-ar-26": { + "question": "북한에서 가장 유명한 국가기업소는 어디입니까?", + "en_question": "What is the most famous public corporation in your country?", + "annotations": [ + { + "answers": [ + "연합기업소" + ], + "en_answers": [ + "joint venture" + ], + "count": 1 + }, + { + "answers": [ + "황해제철소" + ], + "en_answers": [ + "hwanghae iron and steel complex" + ], + "count": 1 + }, + { + "answers": [ + "강선제강소" + ], + "en_answers": [ + "kangson steel plant" + ], + "count": 1 + }, + { + "answers": [ + "평양방직공장" + ], + "en_answers": [ + "pyongyang textile factory" + ], + "count": 1 + }, + { + "answers": [ + "제철소" + ], + "en_answers": [ + "steelworks" + ], + "count": 1 + }, + { + "answers": [ + "제강소" + ], + "en_answers": [ + "steelworks" + ], + "count": 1 + }, + { + "answers": [ + "자동차 공장" + ], + "en_answers": [ + "automobile factory" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-31": { + "question": "북한에서 가장 이름 있는 음식은 무엇입니까?", + "en_question": "What is the most famous dish in your country?", + "annotations": [ + { + "answers": [ + "인조고기밥" + ], + "en_answers": [ + "synthetic meat rice" + ], + "count": 1 + }, + { + "answers": [ + "두부밥" + ], + "en_answers": [ + "tofu rice" + ], + "count": 1 + }, + { + "answers": [ + "단고기" + ], + "en_answers": [ + "sweet meat" + ], + "count": 1 + }, + { + "answers": [ + "평양랭면" + ], + "en_answers": [ + "pyongyang cold noodles" + ], + "count": 1 + }, + { + "answers": [ + "함흥랭면" + ], + "en_answers": [ + "hamhung cold noodles" + ], + "count": 1 + }, + { + "answers": [ + "단고기국" + ], + "en_answers": [ + "sweet meat soup" + ], + "count": 1 + }, + { + "answers": [ + "함흥국수" + ], + "en_answers": [ + "hamhung noodles" + ], + "count": 1 + }, + { + "answers": [ + "옥류관국수", + "옥류관국수 등" + ], + "en_answers": [ + "okryugwan noodles, etc." + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-32": { + "question": "북한에서 사람들은 보통 아침에 무엇을 먹나요?", + "en_question": "What do people usually have for breakfast in your country?", + "annotations": [ + { + "answers": [ + "밥" + ], + "en_answers": [ + "rice" + ], + "count": 3 + }, + { + "answers": [ + "쌀밥" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "국" + ], + "en_answers": [ + "soup" + ], + "count": 1 + }, + { + "answers": [ + "반찬" + ], + "en_answers": [ + "side dish" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-33": { + "question": "북한에서 사람들은 보통 몇 시에 점심을 먹나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)", + "en_question": "When do people usually have lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "12:00" + ], + "en_answers": [ + "12:00" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-34": { + "question": "북한의 식사에서 항상 없어서는 안 될 음식은 무엇인가요?", + "en_question": "What is typically indispensable in meals in your country?", + "annotations": [ + { + "answers": [ + "김치" + ], + "en_answers": [ + "kimchi", + "gimchi", + "kimch'i" + ], + "count": 4 + }, + { + "answers": [ + "국" + ], + "en_answers": [ + "soup" + ], + "count": 2 + }, + { + "answers": [ + "된장국" + ], + "en_answers": [ + "soybean paste soup" + ], + "count": 1 + }, + { + "answers": [ + "밥" + ], + "en_answers": [ + "rice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-36": { + "question": "북한의 축제에서 많이 먹는 음식은 무엇인가요?", + "en_question": "What is a typical festive meal in your country?", + "annotations": [ + { + "answers": [ + "떡" + ], + "en_answers": [ + "rice cake", + "tteok" + ], + "count": 1 + }, + { + "answers": [ + "랭면" + ], + "en_answers": [ + "cold noodles" + ], + "count": 1 + }, + { + "answers": [ + "순대" + ], + "en_answers": [ + "korean sausage", + "sundae", + "soondae" + ], + "count": 1 + }, + { + "answers": [ + "삶은 돼지고기" + ], + "en_answers": [ + "boiled pork" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Ne-ar-37": { + "question": "북한에서는 외국에서 온 관광손님/방문손님에게 주로 어떤 과일을 먹으라고 하나요?", + "en_question": "Which fruit do people usually offer tourists/visitors from abroad in your country?", + "annotations": [ + { + "answers": [ + "사과" + ], + "en_answers": [ + "apology" + ], + "count": 2 + }, + { + "answers": [ + "배" + ], + "en_answers": [ + "pear" + ], + "count": 1 + }, + { + "answers": [ + "회령살구" + ], + "en_answers": [ + "hoeryong apricot" + ], + "count": 1 + }, + { + "answers": [ + "복숭아", + "복숭아 등" + ], + "en_answers": [ + "peach, etc." + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Ne-ar-38": { + "question": "북한에서는 어떤 음식을 무료로 나눠 주나요?", + "en_question": "Which food do people usually offer as charity in your country?", + "annotations": [ + { + "answers": [ + "우유와 빵" + ], + "en_answers": [ + "milk and bread" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 3, + "not-applicable": 1, + "idk": 0 + } + }, + "Ne-ar-39": { + "question": "북한에서 가장 싸게 판매되는 즉석음식은 무엇인가요?", + "en_question": "What is the cheapest fast food in your country?", + "annotations": [ + { + "answers": [ + "두부밥" + ], + "en_answers": [ + "tofu rice" + ], + "count": 1 + }, + { + "answers": [ + "인조고기밥" + ], + "en_answers": [ + "synthetic meat rice" + ], + "count": 1 + }, + { + "answers": [ + "김밥" + ], + "en_answers": [ + "gimbap", + "kimbap" + ], + "count": 1 + }, + { + "answers": [ + "라면" + ], + "en_answers": [ + "instant noodles" + ], + "count": 1 + }, + { + "answers": [ + "국수" + ], + "en_answers": [ + "noodles" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-43": { + "question": "북한에서 사람들은 보통 차에 무엇을 함께 먹나요?", + "en_question": "What do people usually have with tea in your country?", + "annotations": [ + { + "answers": [ + "과자" + ], + "en_answers": [ + "snack", + "cracker", + "cookie", + "biscuit" + ], + "count": 2 + }, + { + "answers": [ + "숭늉", + "숭늉(누룽지)" + ], + "en_answers": [ + "sungnyung", + "scorched rice tea", + "scorched-rice tea", + "scorched rice water", + "scorched-rice water" + ], + "count": 1 + }, + { + "answers": [ + "누룽지", + "숭늉(누룽지)" + ], + "en_answers": [ + "scorched rice", + "crunchy rice", + "nurungji", + "crust of overcooked rice" + ], + "count": 1 + }, + { + "answers": [ + "단설기" + ], + "en_answers": [ + "rice cooker" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Ne-ar-44": { + "question": "북한에서 사람들은 커피에 무엇을 함께 먹나요?", + "en_question": "What do people have with coffee in your country?", + "annotations": [ + { + "answers": [ + "과자" + ], + "en_answers": [ + "snack", + "cracker", + "cookie", + "biscuit" + ], + "count": 2 + }, + { + "answers": [ + "빵" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "단설기" + ], + "en_answers": [ + "rice cooker" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-am-02": { + "question": "북한에서 가장 좋아 하는 옛날 음식은 무엇입니까?", + "en_question": "What is the most popular traditional food in your country?", + "annotations": [ + { + "answers": [ + "김치" + ], + "en_answers": [ + "kimchi", + "gimchi", + "kimch'i" + ], + "count": 2 + }, + { + "answers": [ + "지짐(전)" + ], + "en_answers": [ + "pan-fried dish" + ], + "count": 1 + }, + { + "answers": [ + "떡" + ], + "en_answers": [ + "rice cake", + "tteok" + ], + "count": 1 + }, + { + "answers": [ + "닭곰" + ], + "en_answers": [ + "chicken bear" + ], + "count": 1 + }, + { + "answers": [ + "찰떡" + ], + "en_answers": [ + "glutinous rice cake" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-04": { + "question": "북한에서 가장 좋아 하는 찍어 먹는 양념은 무엇인가요?", + "en_question": "What is the most popular dipping sauce in your country?", + "annotations": [ + { + "answers": [ + "인조고기양념" + ], + "en_answers": [ + "artificial meat seasoning" + ], + "count": 1 + }, + { + "answers": [ + "고추장" + ], + "en_answers": [ + "red chili paste" + ], + "count": 1 + }, + { + "answers": [ + "된장양념" + ], + "en_answers": [ + "soybean paste seasoning" + ], + "count": 1 + }, + { + "answers": [ + "간장양념" + ], + "en_answers": [ + "soy sauce seasoning" + ], + "count": 1 + }, + { + "answers": [ + "사탕가루" + ], + "en_answers": [ + "sugar powder" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-am-08": { + "question": "북한에서 기독교인의 금식 기간에 가장 흔히 섭취하는 음식은 무엇인가요?", + "en_question": "What food is most often consumed during Christian fasting in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "New-am-15": { + "question": "북한에서 엄마들이 애기 낳을 때 보통 어떤 음식을 준비하나요?", + "en_question": "What food is usually prepared when mothers give birth in your country?", + "annotations": [ + { + "answers": [ + "미역국" + ], + "en_answers": [ + "seaweed soup" + ], + "count": 3 + }, + { + "answers": [ + "돼지족발" + ], + "en_answers": [ + "pig's trotters" + ], + "count": 1 + }, + { + "answers": [ + "소고기 미역국" + ], + "en_answers": [ + "beef seaweed soup" + ], + "count": 1 + }, + { + "answers": [ + "미역" + ], + "en_answers": [ + "seaweed" + ], + "count": 1 + }, + { + "answers": [ + "닭곰" + ], + "en_answers": [ + "chicken bear" + ], + "count": 1 + }, + { + "answers": [ + "이밥" + ], + "en_answers": [ + "this rice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-27": { + "question": "북한에서 가장 좋아 하는 여자 체육선수는 누구인가요?", + "en_question": "Who is the most popular female sportperson in your country?", + "annotations": [ + { + "answers": [ + "박영순" + ], + "en_answers": [ + "park young-soon" + ], + "count": 2 + }, + { + "answers": [ + "정성옥" + ], + "en_answers": [ + "jeong seong-ok" + ], + "count": 2 + }, + { + "answers": [ + "계순희" + ], + "en_answers": [ + "gye soon-hee" + ], + "count": 1 + }, + { + "answers": [ + "농구선수 로숙영" + ], + "en_answers": [ + "basketball player ro suk yong" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-34": { + "question": "북한의 소학교 학생들은 보통 어디에서 시험 준비를 하나요?", + "en_question": "Where do most elementary school students prepare for their exams in your country?", + "annotations": [ + { + "answers": [ + "학교" + ], + "en_answers": [ + "school" + ], + "count": 5 + }, + { + "answers": [ + "집", + "가정" + ], + "en_answers": [ + "house", + "family" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-41": { + "question": "북한에서 학생들이 처음으로 전국적 으로 시험을 치는 학년은 몇 학년입니까?", + "en_question": "In your country, at which grade level do students take their first national-level examination?", + "annotations": [ + { + "answers": [ + "고급중학교 6학년", + "6학년" + ], + "en_answers": [ + "senior middle school grade 6", + "6th grade" + ], + "count": 2 + }, + { + "answers": [ + "5학년" + ], + "en_answers": [ + "5th grade" + ], + "count": 1 + }, + { + "answers": [ + "고급2학년" + ], + "en_answers": [ + "advanced year 2" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-am-53": { + "question": "북한에서 커피/차 생산으로 이름 있는 지방은 어디인가요?", + "en_question": "Which region in your country is widely known for its coffee/tea industry?", + "annotations": [ + { + "answers": [ + "황해남도 강령" + ], + "en_answers": [ + "kangryeong, south hwanghae province" + ], + "count": 1 + }, + { + "answers": [ + "황해남도" + ], + "en_answers": [ + "south hwanghae province" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "no-answer": 1, + "idk": 1 + } + }, + "New-am-54": { + "question": "북한에서 축산업을 많이 하는 지방은 어디인가요?", + "en_question": "Which region in your country is widely known for its livestock industry?", + "annotations": [ + { + "answers": [ + "모든 지방" + ], + "en_answers": [ + "all provinces" + ], + "count": 2 + }, + { + "answers": [ + "농촌" + ], + "en_answers": [ + "rural area" + ], + "count": 1 + }, + { + "answers": [ + "강원도" + ], + "en_answers": [ + "gangwon province" + ], + "count": 1 + }, + { + "answers": [ + "자강도" + ], + "en_answers": [ + "chagang province" + ], + "count": 1 + }, + { + "answers": [ + "평안북도" + ], + "en_answers": [ + "north pyongan province" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-59": { + "question": "북한의 사막에 사는 사람들의 주요 직업은 무엇입니까?", + "en_question": "What is the main occupation of people living in deserts in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "no-answer": 1, + "idk": 0 + } + }, + "New-am-60": { + "question": "북한에서 주로 교통 수단으로 리용되는 동물은 무엇입니까?", + "en_question": "Which animal is typically used for transportation in your country?", + "annotations": [ + { + "answers": [ + "소" + ], + "en_answers": [ + "cow" + ], + "count": 3 + } + ], + "idks": { + "not-applicable": 1, + "no-answer": 1, + "idk": 0 + } + }, + "New-am-72": { + "question": "북한에서 아이들이 가장 좋아 하는 만화책은 무엇인가요?", + "en_question": "What is the most popular comic book for children to read in your country?", + "annotations": [ + { + "answers": [ + "황금덩이와 강낭떡" + ], + "en_answers": [ + "gold nuggets and gangnangtteok" + ], + "count": 1 + }, + { + "answers": [ + "이숍" + ], + "en_answers": [ + "this" + ], + "count": 1 + }, + { + "answers": [ + "토끼전" + ], + "en_answers": [ + "rabbit fable" + ], + "count": 1 + }, + { + "answers": [ + "흥부와 놀부" + ], + "en_answers": [ + "heungbu and nolbu" + ], + "count": 1 + }, + { + "answers": [ + "심청전" + ], + "en_answers": [ + "the tale of shim cheong" + ], + "count": 1 + }, + { + "answers": [ + "영리한 너구리" + ], + "en_answers": [ + "clever raccoon" + ], + "count": 1 + }, + { + "answers": [ + "용감한 고슴도치" + ], + "en_answers": [ + "brave hedgehog" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-am-73": { + "question": "북한에서 아이들이 가장 좋아 하는 유튜브 채널은 무엇인가요?", + "en_question": "What is the most popular YouTube channel for children in your country?", + "annotations": [ + { + "answers": [ + "중앙방송" + ], + "en_answers": [ + "central broadcasting" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "no-answer": 1, + "idk": 0 + } + }, + "New-am-74": { + "question": "북한에서 가장 좋아 하는 좌담회는 무엇인가요?", + "en_question": "What is the most popular talk show in your country?", + "annotations": [ + { + "answers": [ + "영화배우좌담회" + ], + "en_answers": [ + "film actors' symposium" + ], + "count": 1 + }, + { + "answers": [ + "체육선수좌담회" + ], + "en_answers": [ + "sports athletes symposium" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 2, + "not-applicable": 0 + } + }, + "New-am-77": { + "question": "북한에서 가장 유명한 종교적 명절은 무엇입니까?", + "en_question": "What is the most famous religious holiday in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "no-answer": 1, + "idk": 0 + } + }, + "New-am-81": { + "question": "북한에서 결혼식을 가장 많이 하는 달은 언제입니까? (아라비아 숫자(예: 1)만 기재해 주세요.)", + "en_question": "What is the busiest month for weddings in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 3 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "봄" + ], + "en_answers": [ + "spring" + ], + "count": 1 + }, + { + "answers": [ + "가을" + ], + "en_answers": [ + "autumn" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-83": { + "question": "북한에서 가장 좋아 하는 옛날 악기는 무엇입니까?", + "en_question": "What is the most popular traditional musical instrument in your country?", + "annotations": [ + { + "answers": [ + "가야금" + ], + "en_answers": [ + "gayageum" + ], + "count": 4 + }, + { + "answers": [ + "손풍금(아코디언)" + ], + "en_answers": [ + "accordion" + ], + "count": 1 + }, + { + "answers": [ + "기타" + ], + "en_answers": [ + "guitar" + ], + "count": 1 + }, + { + "answers": [ + "소해금" + ], + "en_answers": [ + "small string instrument" + ], + "count": 1 + }, + { + "answers": [ + "퉁소" + ], + "en_answers": [ + "flute" + ], + "count": 1 + }, + { + "answers": [ + "해금" + ], + "en_answers": [ + "lifting of a ban" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-01": { + "question": "북한에서 생산하는 주요 농작물은 무엇입니까?", + "en_question": "What is the main agricultural product produced in your country?", + "annotations": [ + { + "answers": [ + "강냉이", + "옥수수" + ], + "en_answers": [ + "corn" + ], + "count": 5 + }, + { + "answers": [ + "벼" + ], + "en_answers": [ + "rice plant" + ], + "count": 3 + }, + { + "answers": [ + "두부콩" + ], + "en_answers": [ + "tofu bean" + ], + "count": 1 + }, + { + "answers": [ + "콩", + "콩등 잡곡" + ], + "en_answers": [ + "mixed grains including beans" + ], + "count": 1 + }, + { + "answers": [ + "잡곡", + "콩등 잡곡" + ], + "en_answers": [], + "count": 1 + }, + { + "answers": [ + "감자" + ], + "en_answers": [ + "potato" + ], + "count": 1 + }, + { + "answers": [ + "보리" + ], + "en_answers": [ + "barley" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-02": { + "question": "북한에서 가장 좋아 하는 밀가루 음식은 무엇입니까?", + "en_question": "What is the most popular wheat-based food item in your country?", + "annotations": [ + { + "answers": [ + "빵" + ], + "en_answers": [ + "bread" + ], + "count": 3 + }, + { + "answers": [ + "만두" + ], + "en_answers": [ + "dumpling" + ], + "count": 2 + }, + { + "answers": [ + "꽈베기" + ], + "en_answers": [ + "twisted doughnut", + "twisted bread stick", + "twisted donut" + ], + "count": 1 + }, + { + "answers": [ + "카스테라" + ], + "en_answers": [ + "castella (a type of sponge cake)" + ], + "count": 1 + }, + { + "answers": [ + "떠덕국", + "수제비" + ], + "en_answers": [ + "hand-pulled dough soup" + ], + "count": 1 + }, + { + "answers": [ + "만두국" + ], + "en_answers": [ + "dumpling soup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-05": { + "question": "북한의 가정을 방문할 때 손님들에게 가장 많이 내 놓는 음료나 술은 무엇인가요?", + "en_question": "What is the most typical drink offered to guests when they visit households in your country?", + "annotations": [ + { + "answers": [ + "술" + ], + "en_answers": [ + "alcohol" + ], + "count": 2 + }, + { + "answers": [ + "들쭉술" + ], + "en_answers": [ + "wild berry wine" + ], + "count": 2 + }, + { + "answers": [ + "농태기", + "집에서 만든 술" + ], + "en_answers": [ + "nongtaegi", + "soju", + "home brewed liquor", + "homemade alcohol" + ], + "count": 2 + }, + { + "answers": [ + "맥주" + ], + "en_answers": [ + "beer" + ], + "count": 1 + }, + { + "answers": [ + "막걸리" + ], + "en_answers": [ + "makgeolli", + "makkoli", + "rice wine" + ], + "count": 1 + }, + { + "answers": [ + "대동강맥주" + ], + "en_answers": [ + "taedonggang beer" + ], + "count": 1 + }, + { + "answers": [ + "오미자술" + ], + "en_answers": [ + "five-flavor berry wine" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-07": { + "question": "북한에서 가장 좋아 하는 수산물 료리는 무엇입니까?", + "en_question": "What is the most popular dish cooked with fish in your country?", + "annotations": [ + { + "answers": [ + "도루묵" + ], + "en_answers": [ + "alaska pollock" + ], + "count": 1 + }, + { + "answers": [ + "명태" + ], + "en_answers": [ + "alaska pollock" + ], + "count": 1 + }, + { + "answers": [ + "까나리" + ], + "en_answers": [ + "anchovy" + ], + "count": 1 + }, + { + "answers": [ + "구이류" + ], + "en_answers": [ + "grilled dishes" + ], + "count": 1 + }, + { + "answers": [ + "이면수구이" + ], + "en_answers": [ + "two-faced tactics" + ], + "count": 1 + }, + { + "answers": [ + "마른 낙지반찬" + ], + "en_answers": [ + "dried octopus side dish" + ], + "count": 1 + }, + { + "answers": [ + "동태김치" + ], + "en_answers": [ + "frozen pollack kimchi" + ], + "count": 1 + }, + { + "answers": [ + "회" + ], + "en_answers": [ + "times/meeting/association" + ], + "count": 1 + }, + { + "answers": [ + "구이" + ], + "en_answers": [ + "barbecue" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-14": { + "question": "비 오는 날에 북한 사람들은 보통 무엇을 먹나요?", + "en_question": "What food do people from your country like to eat during rainy weather?", + "annotations": [ + { + "answers": [ + "지짐", + "전", + "붙임개(지짐)" + ], + "en_answers": [ + "electricity", + "attachment (file)" + ], + "count": 2 + }, + { + "answers": [ + "농태기" + ], + "en_answers": [ + "nongtaegi", + "soju", + "home brewed liquor", + "homemade alcohol" + ], + "count": 1 + }, + { + "answers": [ + "국수" + ], + "en_answers": [ + "noodles" + ], + "count": 1 + }, + { + "answers": [ + "된장국" + ], + "en_answers": [ + "soybean paste soup" + ], + "count": 1 + }, + { + "answers": [ + "남새지짐" + ], + "en_answers": [ + "vegetable farming" + ], + "count": 1 + }, + { + "answers": [ + "언감자떡" + ], + "en_answers": [ + "frozen potato cake" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-15": { + "question": "북한에서 날씨가 더울 때 보통 마시는 음료는 무엇인가요?", + "en_question": "What drink is commonly consumed in your country when the weather is hot?", + "annotations": [ + { + "answers": [ + "사이다" + ], + "en_answers": [ + "cider" + ], + "count": 3 + }, + { + "answers": [ + "탄산수" + ], + "en_answers": [ + "carbonated water" + ], + "count": 1 + }, + { + "answers": [ + "들쭉단물" + ], + "en_answers": [ + "bittersweet" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-20": { + "question": "북한에서 좋아 하는 실내 체육운동은 무엇인가요?", + "en_question": "What is the most popular indoor sport in your country?", + "annotations": [ + { + "answers": [ + "탁구" + ], + "en_answers": [ + "table tennis", + "ping-pong" + ], + "count": 3 + }, + { + "answers": [ + "롱구", + "농구" + ], + "en_answers": [ + "table tennis", + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "배구" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "송구" + ], + "en_answers": [ + "new year's eve" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-as-29": { + "question": "북한의 남자들은 어떤 체육을 보는 것을 좋아 하나요?", + "en_question": "What sport do men in your country like to watch?", + "annotations": [ + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "구기종목" + ], + "en_answers": [ + "ball games" + ], + "count": 1 + }, + { + "answers": [ + "배구" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-30": { + "question": "북한의 여자들은 어떤 체육을 보는 것을 좋아 하나요?", + "en_question": "What sport do women in your country like to watch?", + "annotations": [ + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "율동체조" + ], + "en_answers": [ + "rhythmic gymnastics" + ], + "count": 1 + }, + { + "answers": [ + "농구" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "구기종목" + ], + "en_answers": [ + "ball games" + ], + "count": 1 + }, + { + "answers": [ + "예술체조" + ], + "en_answers": [ + "artistic gymnastics" + ], + "count": 1 + }, + { + "answers": [ + "탁구" + ], + "en_answers": [ + "table tennis", + "ping-pong" + ], + "count": 1 + }, + { + "answers": [ + "배드민턴" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-58": { + "question": "북한 사람들이 직장에서 가장 많이 마시는 음료는 무엇인가요?", + "en_question": "What is the most popular beverage that people from your country like to drink in their workplace?", + "annotations": [ + { + "answers": [ + "물" + ], + "en_answers": [ + "water" + ], + "count": 1 + }, + { + "answers": [ + "탄산" + ], + "en_answers": [ + "carbonated" + ], + "count": 1 + }, + { + "answers": [ + "사이다" + ], + "en_answers": [ + "cider" + ], + "count": 1 + }, + { + "answers": [ + "단물" + ], + "en_answers": [ + "sweet water" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-as-64": { + "question": "북한에서 모든 가족 식구들이 함께 모이는 명절은 무엇이 있나요?", + "en_question": "On which holiday do all family members tend to reunite in your country?", + "annotations": [ + { + "answers": [ + "추석" + ], + "en_answers": [ + "ch'usŏk", + "chuseok", + "korean thanksgiving day" + ], + "count": 3 + }, + { + "answers": [ + "설날" + ], + "en_answers": [ + "lunar new year" + ], + "count": 2 + }, + { + "answers": [ + "생일" + ], + "en_answers": [ + "birthday" + ], + "count": 1 + }, + { + "answers": [ + "양력설" + ], + "en_answers": [ + "gregorian new year" + ], + "count": 1 + }, + { + "answers": [ + "한식" + ], + "en_answers": [ + "korean food" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-76": { + "question": "북한의 옛날 부터 내려오는 명절에 가족식구들이 함께 하는 민족놀이는 무엇이 있나요?", + "en_question": "What traditional games do families play during traditional holidays in your country?", + "annotations": [ + { + "answers": [ + "윷놀이", + "윶놀이" + ], + "en_answers": [ + "yunnori", + "yutnori", + "yut", + "nyout", + "yoot" + ], + "count": 5 + }, + { + "answers": [ + "제기차기" + ], + "en_answers": [ + "jegichagi" + ], + "count": 1 + }, + { + "answers": [ + "장기" + ], + "en_answers": [ + "chess" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-80": { + "question": "북한의 옛날 축제에서 사람들은 어떤 종류의 옷을 입나요?", + "en_question": "What type of clothing do people from your country wear during traditional festivals?", + "annotations": [ + { + "answers": [ + "저고리", + "한복", + "한복(저고리)", + "조선옷" + ], + "en_answers": [ + "korean traditional dress", + "hanbok (jacket)", + "korean clothing" + ], + "count": 4 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-as-89": { + "question": "북한 사람들은 옛날 축제 때 목걸이 귀걸이를 하나요?", + "en_question": "What traditional festival accessories do people from your country wear?", + "annotations": [ + { + "answers": [ + "목걸이" + ], + "en_answers": [ + "necklace" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 4, + "idk": 0, + "not-applicable": 0 + } + }, + "New-az-05": { + "question": "북한에서 가장 이름 있는 술 생산 지방은 어디입니까?", + "en_question": "What is the most famous region for alcohol production in your country?", + "annotations": [ + { + "answers": [ + "평양" + ], + "en_answers": [ + "pyongyang" + ], + "count": 3 + }, + { + "answers": [ + "개성" + ], + "en_answers": [ + "kaeseong" + ], + "count": 2 + }, + { + "answers": [ + "자강도" + ], + "en_answers": [ + "chagang province" + ], + "count": 1 + }, + { + "answers": [ + "평성", + "평성 등" + ], + "en_answers": [ + "pyongsong, etc." + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-11": { + "question": "북한 사람들은 여름철에 보통 어떤 과일을 먹나요?", + "en_question": "What fruit do people from your country often eat in the summer season?", + "annotations": [ + { + "answers": [ + "복숭아" + ], + "en_answers": [ + "peach" + ], + "count": 3 + }, + { + "answers": [ + "수박" + ], + "en_answers": [ + "watermelon" + ], + "count": 2 + }, + { + "answers": [ + "사과" + ], + "en_answers": [ + "apology" + ], + "count": 1 + }, + { + "answers": [ + "배" + ], + "en_answers": [ + "pear" + ], + "count": 1 + }, + { + "answers": [ + "추리" + ], + "en_answers": [ + "deduction" + ], + "count": 1 + }, + { + "answers": [ + "살구" + ], + "en_answers": [ + "apricot" + ], + "count": 1 + }, + { + "answers": [ + "딸기" + ], + "en_answers": [ + "strawberry" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-12": { + "question": "북한에서 수산물로 이름 있는 지역은 어디인가요?", + "en_question": "Which region in your country is known for its seafood?", + "annotations": [ + { + "answers": [ + "명천" + ], + "en_answers": [ + "bright spring" + ], + "count": 1 + }, + { + "answers": [ + "원산" + ], + "en_answers": [ + "wonsan" + ], + "count": 1 + }, + { + "answers": [ + "청진시" + ], + "en_answers": [ + "chongjin city" + ], + "count": 1 + }, + { + "answers": [ + "함경남도" + ], + "en_answers": [ + "south hamgyong province" + ], + "count": 1 + }, + { + "answers": [ + "함경북도" + ], + "en_answers": [ + "north hamgyong province" + ], + "count": 1 + }, + { + "answers": [ + "황해도" + ], + "en_answers": [ + "hwanghae province" + ], + "count": 1 + }, + { + "answers": [ + "청진" + ], + "en_answers": [ + "chongjin" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-21": { + "question": "북한에서 스키 관광명승지로 가장 이름 있는 지방은 어디인가요?", + "en_question": "Which region in your country is the most popular skiing destination?", + "annotations": [ + { + "answers": [ + "마식령", + "강원도 마식령" + ], + "en_answers": [ + "masikryong", + "gangwon province masikryong" + ], + "count": 2 + }, + { + "answers": [ + "원산" + ], + "en_answers": [ + "wonsan" + ], + "count": 1 + }, + { + "answers": [ + "혜산시" + ], + "en_answers": [ + "hyesan city" + ], + "count": 1 + }, + { + "answers": [ + "량강도 백두산" + ], + "en_answers": [ + "ryanggang province mount paektu" + ], + "count": 1 + }, + { + "answers": [ + "자강도" + ], + "en_answers": [ + "chagang province" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-26": { + "question": "북한에서 가장 이름 있는 무술 선수는 누구인가요?", + "en_question": "Who is the most popular martial arts player in your country?", + "annotations": [ + { + "answers": [ + "력도산", + "역도산" + ], + "en_answers": [ + "mount paektu" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 2, + "not-applicable": 0 + } + }, + "New-az-27": { + "question": "북한에서 지난 10년 동안 가장 빠르게 발전 한 체육은 무엇입니까?", + "en_question": "Which sport has been one of the fastest-growing in your country over the last decade?", + "annotations": [ + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "롱구" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-39": { + "question": "북한에서 학생들이 외국으로 가장 류학가고 싶어 하는 나라는 어느 나라 인가요?", + "en_question": "Which country is the most popular destination for students from your country studying abroad?", + "annotations": [ + { + "answers": [ + "중국" + ], + "en_answers": [ + "china", + "people's republic of china", + "prc" + ], + "count": 2 + }, + { + "answers": [ + "러시아" + ], + "en_answers": [ + "russia", + "russian federation" + ], + "count": 1 + }, + { + "answers": [ + "미국" + ], + "en_answers": [ + "united states of america", + "usa", + "u.s.a.", + "the united states", + "us", + "u.s." + ], + "count": 1 + }, + { + "answers": [ + "한국" + ], + "en_answers": [ + "south korea", + "republic of korea", + "rok" + ], + "count": 1 + }, + { + "answers": [ + "스위스" + ], + "en_answers": [ + "switzerland", + "swiss confederation" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "New-az-49": { + "question": "북한의 보통 가정에서는 몇 명이 일합니까? (아라비아 숫자(예: 1)만 기재해 주세요.)", + "en_question": "How many people work in a typical family in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 4 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-60": { + "question": "북한에서 부모가 둘 다 일할 때 아이들을 누가 봐주나요?", + "en_question": "In your country, who takes care of kids when both parents are working?", + "annotations": [ + { + "answers": [ + "탁아소" + ], + "en_answers": [ + "nursery" + ], + "count": 2 + }, + { + "answers": [ + "유치원" + ], + "en_answers": [ + "kindergarten" + ], + "count": 2 + }, + { + "answers": [ + "할머니", + "할아버지", + "로부모" + ], + "en_answers": [ + "grandmother", + "grandfather", + "old parents" + ], + "count": 2 + }, + { + "answers": [ + "방치" + ], + "en_answers": [ + "neglect" + ], + "count": 1 + }, + { + "answers": [ + "친척" + ], + "en_answers": [ + "relative" + ], + "count": 1 + }, + { + "answers": [ + "이웃" + ], + "en_answers": [ + "neighbor" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-69": { + "question": "북한 남자들이 좋아 하는 술은 무엇인가요?", + "en_question": "What is the preferred alcoholic beverage for men from your country?", + "annotations": [ + { + "answers": [ + "농태기", + "가정에서 직접 뽑은 술" + ], + "en_answers": [ + "nongtaegi", + "soju", + "home brewed liquor", + "homemade alcohol" + ], + "count": 3 + }, + { + "answers": [ + "개성 인삼술", + "개성인삼술" + ], + "en_answers": [ + "kaeseong ginseng liquor" + ], + "count": 1 + }, + { + "answers": [ + "대동강 맥주", + "대동강맥주" + ], + "en_answers": [ + "taedonggang beer" + ], + "count": 1 + }, + { + "answers": [ + "들쭉술" + ], + "en_answers": [ + "wild berry wine" + ], + "count": 1 + }, + { + "answers": [ + "소주" + ], + "en_answers": [ + "soju" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-az-70": { + "question": "북한 여자들이 좋아 하는 술은 무엇인가요?", + "en_question": "What is the preferred alcoholic beverage for women from your country?", + "annotations": [ + { + "answers": [ + "농태기" + ], + "en_answers": [ + "nongtaegi", + "soju", + "home brewed liquor", + "homemade alcohol" + ], + "count": 2 + }, + { + "answers": [ + "중국술", + "중국 술" + ], + "en_answers": [ + "chinese alcohol" + ], + "count": 1 + }, + { + "answers": [ + "들쭉술" + ], + "en_answers": [ + "wild berry wine" + ], + "count": 1 + }, + { + "answers": [ + "대동강 맥주", + "대동강맥주" + ], + "en_answers": [ + "taedonggang beer" + ], + "count": 1 + }, + { + "answers": [ + "소주" + ], + "en_answers": [ + "soju" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-az-73": { + "question": "북한의 보통 결혼식에는 평균 몇 명이 참가하나요? (아라비아 숫자(예: 1)만 기재해 주세요.)", + "en_question": "How many people on average typically attend a wedding in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 3 + }, + { + "answers": [ + "50", + "50~100" + ], + "en_answers": [ + "50" + ], + "count": 3 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 2 + }, + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + }, + { + "answers": [ + "100", + "50~100" + ], + "en_answers": [ + "100" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-01": { + "question": "북한에서 불로 고기를 구울 때 사람들은 보통 어떤 고기를 먹나요?", + "en_question": "What kind of meat do people usually eat when they have barbecue in your country?", + "annotations": [ + { + "answers": [ + "돼지고기", + "돼지" + ], + "en_answers": [ + "pork" + ], + "count": 4 + }, + { + "answers": [ + "염소" + ], + "en_answers": [ + "goat" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-ch-02": { + "question": "북한에서 사람들은 보통 몇 시에 아침을 먹나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)", + "en_question": "When do people usually have breakfast in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "07:00" + ], + "en_answers": [ + "07:00" + ], + "count": 4 + }, + { + "answers": [ + "05:00" + ], + "en_answers": [ + "05:00" + ], + "count": 1 + }, + { + "answers": [ + "06:00" + ], + "en_answers": [ + "06:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-04": { + "question": "북한에서 사람들은 보통 밤 늦게 배고플 때 무엇을 먹나요?", + "en_question": "What kinds of food do people usually eat for late-night snacks in your country?", + "annotations": [ + { + "answers": [ + "밥" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "간식" + ], + "en_answers": [ + "snack" + ], + "count": 1 + }, + { + "answers": [ + "밥과줄", + "쌀과줄" + ], + "en_answers": [ + "food and housing" + ], + "count": 1 + }, + { + "answers": [ + "삶은 감자" + ], + "en_answers": [ + "boiled potatoes" + ], + "count": 1 + }, + { + "answers": [ + "무우" + ], + "en_answers": [ + "radish" + ], + "count": 1 + }, + { + "answers": [ + "강냉이튀기" + ], + "en_answers": [ + "puffed maize", + "puffed corn" + ], + "count": 1 + }, + { + "answers": [ + "감자" + ], + "en_answers": [ + "potato" + ], + "count": 1 + }, + { + "answers": [ + "옥수수" + ], + "en_answers": [ + "corn" + ], + "count": 1 + }, + { + "answers": [ + "고구마" + ], + "en_answers": [ + "sweet potato" + ], + "count": 1 + }, + { + "answers": [ + "꽈배기" + ], + "en_answers": [ + "twisted doughnut", + "twisted bread stick", + "twisted donut" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ch-05": { + "question": "북한에서 가장 이름 있는 매운 음식은 무엇인가요?", + "en_question": "What is the most famous spicy dish in your country?", + "annotations": [ + { + "answers": [ + "고추 반찬", + "고추반찬" + ], + "en_answers": [ + "pepper side dish" + ], + "count": 1 + }, + { + "answers": [ + "매운 김치" + ], + "en_answers": [ + "spicy kimchi" + ], + "count": 1 + }, + { + "answers": [ + "매운 된장국" + ], + "en_answers": [ + "spicy soybean paste soup" + ], + "count": 1 + }, + { + "answers": [ + "고추 볶음", + "고추볶음" + ], + "en_answers": [ + "stir-fried chili" + ], + "count": 1 + }, + { + "answers": [ + "라면" + ], + "en_answers": [ + "instant noodles" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ch-07": { + "question": "북한에서 독한 술을 마실 때 사람들은 보통 어떤 음식을 안주로 먹나요?", + "en_question": "What food items do people typically pair with hard liquor in your country?", + "annotations": [ + { + "answers": [ + "마른명태", + "명태" + ], + "en_answers": [ + "dried pollack", + "alaska pollock" + ], + "count": 2 + }, + { + "answers": [ + "두부볶음", + "두부찌개" + ], + "en_answers": [ + "stir-fried tofu" + ], + "count": 1 + }, + { + "answers": [ + "김치" + ], + "en_answers": [ + "kimchi", + "gimchi", + "kimch'i" + ], + "count": 1 + }, + { + "answers": [ + "두부" + ], + "en_answers": [ + "tofu", + "bean curd" + ], + "count": 1 + }, + { + "answers": [ + "감자 두부국", + "감자두부국" + ], + "en_answers": [ + "potato tofu soup" + ], + "count": 1 + }, + { + "answers": [ + "돼지고기국" + ], + "en_answers": [ + "pork soup" + ], + "count": 1 + }, + { + "answers": [ + "개고기국" + ], + "en_answers": [ + "dog meat soup" + ], + "count": 1 + }, + { + "answers": [ + "고기" + ], + "en_answers": [ + "meat" + ], + "count": 1 + }, + { + "answers": [ + "오징어" + ], + "en_answers": [ + "squid" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-08": { + "question": "북한 료리에서 꼭 들어가야 하는 필요한 양념은 무엇인가요?", + "en_question": "What seasoning is indispensable in cooking in your country?", + "annotations": [ + { + "answers": [ + "고추가루", + "고춧가루" + ], + "en_answers": [ + "red pepper powder" + ], + "count": 4 + }, + { + "answers": [ + "맛내기" + ], + "en_answers": [ + "red pepper powder" + ], + "count": 1 + }, + { + "answers": [ + "기름" + ], + "en_answers": [ + "flavoring" + ], + "count": 1 + }, + { + "answers": [ + "미원" + ], + "en_answers": [ + "oil" + ], + "count": 1 + }, + { + "answers": [ + "된장" + ], + "en_answers": [ + "america" + ], + "count": 1 + }, + { + "answers": [ + "마늘" + ], + "en_answers": [ + "soybean paste" + ], + "count": 1 + }, + { + "answers": [ + "고추" + ], + "en_answers": [ + "garlic" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-09": { + "question": "날씨가 추울 때 북한 사람들은 보통 어떤 음식을 먹나요?", + "en_question": "What food do people typically consume when the weather is cold in your country?", + "annotations": [ + { + "answers": [ + "완두콩 죽", + "콩죽", + "죽" + ], + "en_answers": [ + "pea porridge", + "porridge" + ], + "count": 2 + }, + { + "answers": [ + "감자 두부국", + "감자두부국" + ], + "en_answers": [ + "potato tofu soup" + ], + "count": 1 + }, + { + "answers": [ + "된장국" + ], + "en_answers": [ + "soybean paste soup" + ], + "count": 1 + }, + { + "answers": [ + "남새 지짐", + "남새지짐" + ], + "en_answers": [ + "vegetable farming" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ch-13": { + "question": "북한에서 가장 이름 있는 술 상표는 무엇인가요?", + "en_question": "What is the most famous alcohol brand in your country?", + "annotations": [ + { + "answers": [ + "들쭉술" + ], + "en_answers": [ + "wild berry wine" + ], + "count": 2 + }, + { + "answers": [ + "개성 인삼술", + "개성인삼술" + ], + "en_answers": [ + "kaeseong ginseng liquor" + ], + "count": 2 + }, + { + "answers": [ + "평양술" + ], + "en_answers": [ + "pyongyang soju" + ], + "count": 1 + }, + { + "answers": [ + "대동강 맥주", + "대동강맥주" + ], + "en_answers": [ + "taedonggang beer" + ], + "count": 1 + }, + { + "answers": [ + "오미자술" + ], + "en_answers": [ + "five-flavor berry wine" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-14": { + "question": "북한에서는 아플 때 보통 어떤 음식을 먹나요?", + "en_question": "What foods do people usually eat when they are sick in your country?", + "annotations": [ + { + "answers": [ + "죽" + ], + "en_answers": [ + "porridge" + ], + "count": 2 + }, + { + "answers": [ + "뜨끈한 음식", + "따끈한 음식" + ], + "en_answers": [ + "hot food" + ], + "count": 1 + }, + { + "answers": [ + "랭면" + ], + "en_answers": [ + "naengmyeon", + "naengmyŏn", + "cold noodles", + "korean cold noodles" + ], + "count": 1 + }, + { + "answers": [ + "감자두부국" + ], + "en_answers": [ + "potato tofu soup" + ], + "count": 1 + }, + { + "answers": [ + "삶은 돼지고기" + ], + "en_answers": [ + "boiled pork" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-15": { + "question": "북한에서 사람들이 보통 상점에서 구매하는 료리/즉석 식품은 무엇인가요?", + "en_question": "What prepared/ready-to-eat food do people typically buy at supermarkets in your country?", + "annotations": [ + { + "answers": [ + "라면" + ], + "en_answers": [ + "instant noodles" + ], + "count": 2 + }, + { + "answers": [ + "과자" + ], + "en_answers": [ + "snack", + "cracker", + "cookie", + "biscuit" + ], + "count": 1 + }, + { + "answers": [ + "수산물과자", + "오징어과자" + ], + "en_answers": [ + "seafood snacks" + ], + "count": 1 + }, + { + "answers": [ + "빵" + ], + "en_answers": [ + "bread" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ch-16": { + "question": "북한에서 가장 이름 있는 체육 영화는 무엇인가요?", + "en_question": "What is the most famous sports-related movie in your country?", + "annotations": [ + { + "answers": [ + "가족롱구선수단" + ], + "en_answers": [ + "family badminton team" + ], + "count": 1 + }, + { + "answers": [ + "마지막 한알" + ], + "en_answers": [ + "the last pill" + ], + "count": 1 + }, + { + "answers": [ + "조선아, 달려라", + "조선아" + ], + "en_answers": [ + "korea, run" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-17": { + "question": "북한 사람들이 일반적으로 가장 해보고 싶어하는 익스트림 스포츠는 무엇인가요?", + "en_question": "What extreme sport do people generally wish to try the most in your country?", + "annotations": [ + { + "answers": [ + "볼링" + ], + "en_answers": [ + "bowling" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 2, + "no-answer": 0 + } + }, + "New-ch-18": { + "question": "북한에서 가장 즐겨 보는 륙상 경기 종목은 무엇인가요?", + "en_question": "Which track and field event is the most popular to watch during competitions in your country?", + "annotations": [ + { + "answers": [ + "마라손", + "마라톤" + ], + "en_answers": [ + "marathon" + ], + "count": 4 + }, + { + "answers": [ + "높이뛰기" + ], + "en_answers": [ + "high jump" + ], + "count": 1 + }, + { + "answers": [ + "100메터달리기" + ], + "en_answers": [ + "100-meter dash" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-19": { + "question": "북한에서 가장 즐겨 보는 체조 경기 종목은 무엇인가요?", + "en_question": "Which gymnastics event is the most popular to watch during competitions in your country?", + "annotations": [ + { + "answers": [ + "예술체조", + "기계체조" + ], + "en_answers": [ + "mass gymnastics" + ], + "count": 2 + }, + { + "answers": [ + "마루" + ], + "en_answers": [ + "iron bar" + ], + "count": 1 + }, + { + "answers": [ + "철봉" + ], + "en_answers": [ + "artistic gymnastics" + ], + "count": 1 + }, + { + "answers": [ + "예술체조" + ], + "en_answers": [ + "people's health exercise" + ], + "count": 1 + }, + { + "answers": [ + "체육무용", + "율동체조" + ], + "en_answers": [ + "taekwondo" + ], + "count": 1 + }, + { + "answers": [ + "태권도" + ], + "en_answers": [ + "taekwondo", + "taekwon-do", + "tae kwon do", + "tae kwon-do", + "tae-kwon-do" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-23": { + "question": "북한에서 가장 이름 있는 탁구 선수는 누구인가요?", + "en_question": "Who is the most famous table tennis player in your country?", + "annotations": [ + { + "answers": [ + "리분희", + "이분희" + ], + "en_answers": [ + "ri bun-hee", + "lee bun-hee" + ], + "count": 4 + }, + { + "answers": [ + "박영순" + ], + "en_answers": [ + "park young-soon" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-26": { + "question": "북한에서 가장 잘 보는 동계 올림픽 경기는 무엇인가요?", + "en_question": "In the Winter Olympics, which event is the most popular to watch in your country?", + "annotations": [ + { + "answers": [ + "스키" + ], + "en_answers": [ + "ski" + ], + "count": 2 + }, + { + "answers": [ + "피겨스케이팅" + ], + "en_answers": [ + "figure skating" + ], + "count": 1 + }, + { + "answers": [ + "속도빙상" + ], + "en_answers": [ + "speed skating" + ], + "count": 1 + }, + { + "answers": [ + "빙상호케이", + "호케이" + ], + "en_answers": [ + "okay" + ], + "count": 1 + }, + { + "answers": [ + "스케이트", + "스케트" + ], + "en_answers": [ + "skate", + "skating" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ch-27": { + "question": "북한에서 가장 이름 있는 권투선수는 누구인가요?", + "en_question": "Who is the most famous boxer in your country?", + "annotations": [ + { + "answers": [ + "구영조" + ], + "en_answers": [ + "9-0-2-5-1" + ], + "count": 2 + }, + { + "answers": [ + "방철미" + ], + "en_answers": [ + "pang chol mi" + ], + "count": 1 + }, + { + "answers": [ + "최철수" + ], + "en_answers": [ + "choe cheol-su" + ], + "count": 1 + }, + { + "answers": [ + "김혁" + ], + "en_answers": [ + "kim hyuk" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-30": { + "question": "북한에서 가장 이름 있는 륙상 선수는 누구인가요?", + "en_question": "Who is the most famous track and field athlete in your country?", + "annotations": [ + { + "answers": [ + "정성옥" + ], + "en_answers": [ + "jeong seong-ok" + ], + "count": 5 + }, + { + "answers": [ + "신금단" + ], + "en_answers": [ + "new restricted zone" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-31": { + "question": "북한에서 부모들은 자식이 어떤 직업을 가지길 가장 바라나요?", + "en_question": "What job do parents most hope their children will pursue in your country?", + "annotations": [ + { + "answers": [ + "교원", + "교사" + ], + "en_answers": [ + "teacher" + ], + "count": 1 + }, + { + "answers": [ + "보위원", + "권력이 있는 직업인 보위원" + ], + "en_answers": [ + "powerful job of a security officer" + ], + "count": 1 + }, + { + "answers": [ + "관광 안내원", + "관광안내원", + "관광가이드" + ], + "en_answers": [ + "tour guide" + ], + "count": 1 + }, + { + "answers": [ + "무역회사 사무원", + "무역회사사무원" + ], + "en_answers": [ + "trade company office worker" + ], + "count": 1 + }, + { + "answers": [ + "의사" + ], + "en_answers": [ + "doctor" + ], + "count": 1 + }, + { + "answers": [ + "검사" + ], + "en_answers": [ + "inspection" + ], + "count": 1 + }, + { + "answers": [ + "무역일군" + ], + "en_answers": [ + "trade worker" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-32": { + "question": "북한의 직장에서 사람들은 일반적으로 어떤 사무 콤퓨터 프로그람을 사용하나요?", + "en_question": "What office software do people typically use in the workplace in your country?", + "annotations": [ + { + "answers": [ + "우리" + ], + "en_answers": [ + "our" + ], + "count": 1 + }, + { + "answers": [ + "pc" + ], + "en_answers": [ + "computer" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ch-38": { + "question": "북한에서 수입수출로 이름 있는 도시나 지방은 어디인가요?", + "en_question": "Which cities or regions are known for their import and export activities in your country?", + "annotations": [ + { + "answers": [ + "청진" + ], + "en_answers": [ + "chongjin" + ], + "count": 2 + }, + { + "answers": [ + "라선시", + "라진" + ], + "en_answers": [ + "rason city", + "rajin" + ], + "count": 2 + }, + { + "answers": [ + "원산" + ], + "en_answers": [ + "wonsan" + ], + "count": 1 + }, + { + "answers": [ + "라진-선봉시" + ], + "en_answers": [ + "rason special economic zone" + ], + "count": 1 + }, + { + "answers": [ + "신의주" + ], + "en_answers": [ + "sinuiju" + ], + "count": 1 + }, + { + "answers": [ + "함흥" + ], + "en_answers": [ + "hamhung" + ], + "count": 1 + }, + { + "answers": [ + "평양" + ], + "en_answers": [ + "pyongyang" + ], + "count": 1 + }, + { + "answers": [ + "평성" + ], + "en_answers": [ + "pyongsong" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-39": { + "question": "북한에서 전자상업거래에 많이 쓰는 플랫폼은 무엇인가요?", + "en_question": "What platform is commonly used in the e-commerce industry in your country?", + "annotations": [ + { + "answers": [ + "만물상" + ], + "en_answers": [ + "general store" + ], + "count": 1 + }, + { + "answers": [ + "옥류" + ], + "en_answers": [ + "okryu" + ], + "count": 1 + }, + { + "answers": [ + "번영" + ], + "en_answers": [ + "prosperity" + ], + "count": 1 + }, + { + "answers": [ + "주문봉사" + ], + "en_answers": [ + "mail service" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "no-answer": 1, + "idk": 1 + } + }, + "New-ch-44": { + "question": "북한에서 정식 계약을 체결하기 전 새로운 직원들에게 일반적으로 적용되는 수습 기간은 얼마나 됩니까? (예: 1개월)", + "en_question": "How long is the typical probation period for new employees before signing a formal contract in your country? (e.g., 1 month).", + "annotations": [], + "idks": { + "not-applicable": 3, + "no-answer": 1, + "idk": 1 + } + }, + "New-ch-45": { + "question": "북한에서 청년들은 장사를 할 때 주로 어떤 부문을 선택하나요?", + "en_question": "Which industries do young people typically choose to start businesses in your country?", + "annotations": [ + { + "answers": [ + "쌀 장사", + "쌀장사" + ], + "en_answers": [ + "rice merchant" + ], + "count": 1 + }, + { + "answers": [ + "공업품 장사", + "공업품장사" + ], + "en_answers": [ + "industrial goods sales" + ], + "count": 1 + }, + { + "answers": [ + "남새 장사", + "남새장사" + ], + "en_answers": [ + "vegetable vendor" + ], + "count": 1 + }, + { + "answers": [ + "무역" + ], + "en_answers": [ + "trade" + ], + "count": 1 + }, + { + "answers": [ + "밀수" + ], + "en_answers": [ + "smuggling" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-ch-49": { + "question": "북한에서 가족 식구들끼리 원격으로 대화할 때 쓰는 가장 일반적인 방법은 무엇인가요?", + "en_question": "What is the most common way for family members to communicate remotely in your country?", + "annotations": [ + { + "answers": [ + "손전화기" + ], + "en_answers": [ + "telephone" + ], + "count": 1 + }, + { + "answers": [ + "유선전화" + ], + "en_answers": [ + "landline telephone" + ], + "count": 1 + }, + { + "answers": [ + "전화기" + ], + "en_answers": [ + "hand phone" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-ch-51": { + "question": "북한에서 가족 여행 시 보통 어떤 려관을 미리 약속하여 정하나요?", + "en_question": "What form of accommodation is typically booked for family trips in your country?", + "annotations": [ + { + "answers": [ + "려관" + ], + "en_answers": [ + "restaurant" + ], + "count": 1 + }, + { + "answers": [ + "숙박집" + ], + "en_answers": [ + "lodging house" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 1 + } + }, + "New-ch-54": { + "question": "북한의 가족 저녁식사에 가장 많이 올리는 과일은 무엇인가요?", + "en_question": "Which fruit is usually prepared the most for family dinners in your country?", + "annotations": [ + { + "answers": [ + "배" + ], + "en_answers": [ + "pear" + ], + "count": 1 + }, + { + "answers": [ + "사과" + ], + "en_answers": [ + "apple" + ], + "count": 1 + }, + { + "answers": [ + "감" + ], + "en_answers": [ + "persimmon" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 1 + } + }, + "New-ch-64": { + "question": "북한의 대학생들은 일주일에 보통 수업에 몇 시간 참가 하나요? (아라비아 숫자(예: 1)만 기재해 주세요.)", + "en_question": "How many hours of classes do university students typically have per week in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 2 + }, + { + "answers": [ + "27" + ], + "en_answers": [ + "27" + ], + "count": 1 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 1 + }, + { + "answers": [ + "35" + ], + "en_answers": [ + "35" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-66": { + "question": "북한 국가 고급중학교의 한 학기당 평균 수업료는 얼마입니까? (아라비아 숫자(예: 1)만 기재해 주세요.)", + "en_question": "What is the typical tuition fee per semester for public high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "0", + "수업료 없음" + ], + "en_answers": [ + "no tuition fee", + "0" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 3, + "idk": 0, + "no-answer": 0 + } + }, + "New-ch-70": { + "question": "북한 대학생들이 모두 꼭 참가하여야 하는 수업 과목은 무엇인가요?", + "en_question": "What compulsory courses do university students have in common in your country?", + "annotations": [ + { + "answers": [ + "혁명력사" + ], + "en_answers": [ + "revolutionary history" + ], + "count": 2 + }, + { + "answers": [ + "전과목", + "전 과목" + ], + "en_answers": [ + "all subjects" + ], + "count": 2 + }, + { + "answers": [ + "정치사상과목", + "혁명활동 등 김정은 일가 관련 정치사상과목" + ], + "en_answers": [ + "subjects related to political ideology and activities of the kim jong-un family, etc." + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "New-ch-71": { + "question": "북한 고급중학교의 한 학급당 평균 학생 수는 몇 명인가요? (아라비아 숫자(예: 1)만 기재해 주세요.)", + "en_question": "What is the average class size in high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "30", + "30~40" + ], + "en_answers": [ + "30" + ], + "count": 4 + }, + { + "answers": [ + "40", + "30~40" + ], + "en_answers": [ + "40" + ], + "count": 2 + }, + { + "answers": [ + "50" + ], + "en_answers": [ + "50" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-72": { + "question": "북한에서 어떤 학부가 취업에 가장 유리하다고 여기나요?", + "en_question": "Which major is considered most conducive to employment in your country?", + "annotations": [ + { + "answers": [ + "법학부" + ], + "en_answers": [ + "department of law" + ], + "count": 1 + }, + { + "answers": [ + "김일성력사학부" + ], + "en_answers": [ + "kim il-sung university department of history" + ], + "count": 1 + }, + { + "answers": [ + "외국어학부" + ], + "en_answers": [ + "foreign language department" + ], + "count": 1 + }, + { + "answers": [ + "경제학부" + ], + "en_answers": [ + "department of economics" + ], + "count": 1 + }, + { + "answers": [ + "콤퓨터", + "컴퓨터" + ], + "en_answers": [ + "computer" + ], + "count": 1 + }, + { + "answers": [ + "it" + ], + "en_answers": [ + "information technology" + ], + "count": 1 + }, + { + "answers": [ + "무역" + ], + "en_answers": [ + "trade" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 0 + } + }, + "New-ch-73": { + "question": "북한 대학생들 사이에서 어떤 동아리가 가장 인기 있나요?", + "en_question": "What type of clubs are most popular among university students in your country?", + "annotations": [ + { + "answers": [ + "예술" + ], + "en_answers": [ + "art" + ], + "count": 1 + }, + { + "answers": [ + "체육 동아리" + ], + "en_answers": [ + "sports club" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 1 + } + }, + "New-ch-74": { + "question": "북한 대학생들은 주로 어떤 곳에서 사나요?", + "en_question": "What types of accommodation do university students in your country typically live in?", + "annotations": [ + { + "answers": [ + "기숙사" + ], + "en_answers": [ + "dormitory" + ], + "count": 4 + }, + { + "answers": [ + "집", + "본인집", + "각 가정" + ], + "en_answers": [ + "own house", + "each household" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-75": { + "question": "북한의 초급중학교 한 시간 수업은 총 몇 분인가요? (아라비아 숫자(예: 1)만 기재해 주세요.)", + "en_question": "How long is each class period for middle school students in your country (minutes)? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "45", + "45분" + ], + "en_answers": [ + "45" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-78": { + "question": "북한에서 년로보장 받은 여자들이 일반적으로 좋아 하는 활동은 무엇인가요?", + "en_question": "What leisure activities do retired women typically like in your country?", + "annotations": [ + { + "answers": [ + "장사", + "장마당 장사", + "장마당장사" + ], + "en_answers": [ + "business", + "market trading" + ], + "count": 2 + }, + { + "answers": [ + "터밭농사", + "텃밭농사" + ], + "en_answers": [ + "kitchen garden farming" + ], + "count": 1 + }, + { + "answers": [ + "걷기", + "도보" + ], + "en_answers": [ + "walking" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 0 + } + }, + "New-ch-79": { + "question": "북한에서 년로보장 받은 남자들이 일반적으로 좋아 하는 활동은 무엇인가요?", + "en_question": "What leisure activities do retired men typically like in your country?", + "annotations": [ + { + "answers": [ + "농사", + "터밭농사", + "텃밭농사" + ], + "en_answers": [ + "agriculture", + "kitchen garden farming" + ], + "count": 2 + }, + { + "answers": [ + "장마당 장사", + "장마당장사" + ], + "en_answers": [ + "market trading" + ], + "count": 1 + }, + { + "answers": [ + "걷기", + "도보" + ], + "en_answers": [ + "walking" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 0 + } + }, + "New-ch-80": { + "question": "북한에선 대체로 어느 명절에 종교적인 장소(사찰, 교회 등)를 방문하나요?", + "en_question": "During which holidays do people typically visit religious sites (temples, churches, etc.) in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "no-answer": 1, + "idk": 0 + } + }, + "New-ch-81": { + "question": "북한의 일반적인 집초대 선물은 무엇인가요?", + "en_question": "What are the typical housewarming gifts in your country?", + "annotations": [ + { + "answers": [ + "술" + ], + "en_answers": [ + "alcohol" + ], + "count": 1 + }, + { + "answers": [ + "쌀" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "고기" + ], + "en_answers": [ + "meat" + ], + "count": 1 + }, + { + "answers": [ + "수산물" + ], + "en_answers": [ + "seafood" + ], + "count": 1 + }, + { + "answers": [ + "음식대접", + "음식접대" + ], + "en_answers": [ + "food hospitality" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ch-82": { + "question": "북한에서 결혼식은 보통 몇 시에 시작하나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)", + "en_question": "At what time do weddings typically start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "10시", + "10:00" + ], + "en_answers": [ + "10:00" + ], + "count": 4 + }, + { + "answers": [ + "12시", + "12:00" + ], + "en_answers": [ + "12:00" + ], + "count": 2 + }, + { + "answers": [ + "11시", + "11:00" + ], + "en_answers": [ + "11:00" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-83": { + "question": "북한의 어느 도시에서 축제가 가장 많이 열리나요?", + "en_question": "Which city in your country hosts festivals the most?", + "annotations": [ + { + "answers": [ + "평양" + ], + "en_answers": [ + "pyongyang" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-84": { + "question": "북한 사람들은 결혼식에 참석할 때 보통 어떤 색깔의 옷을 입나요?", + "en_question": "What color of clothing do people typically wear when attending weddings in your country?", + "annotations": [ + { + "answers": [ + "일반옷", + "그냥 옷 입음", + "상관 없음", + "단정한 옷" + ], + "en_answers": [ + "just wearing clothes", + "doesn't matter", + "neat clothes" + ], + "count": 2 + }, + { + "answers": [ + "밝은 색갈 옷", + "밝은 색", + "울긋불긋한 옷", + "울긋불긋" + ], + "en_answers": [ + "bright color", + "colorful" + ], + "count": 2 + }, + { + "answers": [ + "양복" + ], + "en_answers": [ + "suit" + ], + "count": 1 + }, + { + "answers": [ + "한복" + ], + "en_answers": [ + "korean traditional dress" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-85": { + "question": "북한 사람들은 장례식에 참석할 때 보통 어떤 색깔의 옷을 입나요?", + "en_question": "What color of clothing do people typically wear when attending funerals in your country?", + "annotations": [ + { + "answers": [ + "검은색", + "검은색 옷" + ], + "en_answers": [ + "black", + "black clothes" + ], + "count": 4 + }, + { + "answers": [ + "양복" + ], + "en_answers": [ + "suit" + ], + "count": 1 + }, + { + "answers": [ + "흰색" + ], + "en_answers": [ + "white" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-01": { + "question": "북한 영화관에선 어떤 간식을 먹나요?", + "en_question": "Which snack is eaten in the cinema in your country?", + "annotations": [ + { + "answers": [ + "과자" + ], + "en_answers": [ + "snack", + "cracker", + "cookie", + "biscuit" + ], + "count": 2 + }, + { + "answers": [ + "사탕" + ], + "en_answers": [ + "candy" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-en-02": { + "question": "북한에서 사람들이 가장 좋아 하는 감자튀기 맛은 무엇인가요?", + "en_question": "What is the most popular chip/crisp flavour in your country?", + "annotations": [ + { + "answers": [ + "소금맛" + ], + "en_answers": [ + "salty taste" + ], + "count": 1 + }, + { + "answers": [ + "매운 맛" + ], + "en_answers": [ + "spicy taste" + ], + "count": 1 + }, + { + "answers": [ + "고소한 맛" + ], + "en_answers": [ + "savory taste" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-en-04": { + "question": "북한에서 이름 있는 료리사는 누구인가요?", + "en_question": "Who is a popular celebrity chef in your country?", + "annotations": [ + { + "answers": [ + "김석" + ], + "en_answers": [ + "kim seok" + ], + "count": 2 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-05": { + "question": "북한에서 돈이 싸고 빨리 먹을 수 있는 음식은 무엇인가요?", + "en_question": "Which food is a cost-effective and quick meal option in your country?", + "annotations": [ + { + "answers": [ + "두부밥" + ], + "en_answers": [ + "tofu rice" + ], + "count": 3 + }, + { + "answers": [ + "인조 고기밥", + "인조고기밥" + ], + "en_answers": [ + "synthetic meat rice" + ], + "count": 2 + }, + { + "answers": [ + "김밥" + ], + "en_answers": [ + "gimbap", + "kimbap" + ], + "count": 1 + }, + { + "answers": [ + "펑펑이떡" + ], + "en_answers": [ + "rice cake" + ], + "count": 1 + }, + { + "answers": [ + "라면" + ], + "en_answers": [ + "instant noodles" + ], + "count": 1 + }, + { + "answers": [ + "랭면", + "냉면" + ], + "en_answers": [ + "naengmyeon", + "naengmyŏn", + "cold noodles", + "korean cold noodles" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-07": { + "question": "북한에서 사람들이 가장 좋아 하는 료리 프로그람은 무엇인가요?", + "en_question": "What are the most popular cooking shows in your country?", + "annotations": [ + { + "answers": [ + "료리상식" + ], + "en_answers": [ + "cooking knowledge" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "New-en-08": { + "question": "북한에서 사람들이 가장 좋아 하는 초콜렛트 상표는 무엇인가요?", + "en_question": "What is the most popular chocolate brand in your country?", + "annotations": [ + { + "answers": [ + "경흥" + ], + "en_answers": [ + "gyeongheung" + ], + "count": 1 + }, + { + "answers": [ + "대하" + ], + "en_answers": [ + "about" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 1 + } + }, + "New-en-10": { + "question": "북한에선 어떤 치즈를 가장 많이 먹나요?", + "en_question": "What is the most eaten cheese in your country?", + "annotations": [ + { + "answers": [ + "염소 치즈", + "염소치즈" + ], + "en_answers": [ + "goat cheese" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "not-applicable": 1, + "idk": 1 + } + }, + "New-en-11": { + "question": "북한에서 가장 인기 없는 남새는 무엇인가요?", + "en_question": "What is the most disliked vegetable in your country?", + "annotations": [ + { + "answers": [ + "당근" + ], + "en_answers": [ + "carrot" + ], + "count": 2 + }, + { + "answers": [ + "파" + ], + "en_answers": [ + "spring onion" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "no-answer": 1, + "idk": 0 + } + }, + "New-en-12": { + "question": "북한의 음식매대에서 가장 흔히 볼 수 있는 음식은 무엇인가요?", + "en_question": "What food is most commonly found in food courts in your country?", + "annotations": [ + { + "answers": [ + "두부밥" + ], + "en_answers": [ + "tofu rice" + ], + "count": 4 + }, + { + "answers": [ + "인조 고기밥", + "인조고기밥" + ], + "en_answers": [ + "synthetic meat rice" + ], + "count": 3 + }, + { + "answers": [ + "김밥" + ], + "en_answers": [ + "gimbap", + "kimbap" + ], + "count": 1 + }, + { + "answers": [ + "랭면" + ], + "en_answers": [ + "naengmyeon", + "naengmyŏn", + "cold noodles", + "korean cold noodles" + ], + "count": 1 + }, + { + "answers": [ + "순대" + ], + "en_answers": [ + "korean sausage", + "sundae", + "soondae" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-17": { + "question": "북한 체육을 좋아 하는 사람들이 가장 많이 쓰는 응원 도구는 무엇인가요?", + "en_question": "What are the most common cheering tools used by sports fans in your country?", + "annotations": [ + { + "answers": [ + "박수채", + "박수치개" + ], + "en_answers": [ + "applause" + ], + "count": 4 + }, + { + "answers": [ + "손뼉" + ], + "en_answers": [ + "clapping" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-18": { + "question": "북한에서 체육을 좋아 하는 사람들이 경기를 보러 갈 때 무엇을 가지고 가나요?", + "en_question": "What do fans bring with them when attending a live game in your country?", + "annotations": [ + { + "answers": [ + "박수채", + "박수치개" + ], + "en_answers": [ + "applause" + ], + "count": 4 + }, + { + "answers": [ + "방석" + ], + "en_answers": [ + "cushion" + ], + "count": 2 + }, + { + "answers": [ + "모자" + ], + "en_answers": [ + "hat" + ], + "count": 1 + }, + { + "answers": [ + "메가폰" + ], + "en_answers": [ + "megaphone" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-19": { + "question": "북한에서 가장 이름 있는 체육 경기장은 어디인가요?", + "en_question": "What is the most well known sporting stadium in your country?", + "annotations": [ + { + "answers": [ + "5.1 경기장", + "5.1경기장", + "5월 1일 경기장", + "5.1일경기장" + ], + "en_answers": [ + "may day stadium", + "5.1 stadium", + "may 1st stadium" + ], + "count": 5 + }, + { + "answers": [ + "릉라 경기장", + "릉라경기장" + ], + "en_answers": [ + "rungra stadium" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-23": { + "question": "북한에서 가장 이름 있는 장애인 올림픽 선수는 누구인가요?", + "en_question": "Who is the most famous Paralympian in your country?", + "annotations": [ + { + "answers": [ + "림주성", + "임주성" + ], + "en_answers": [ + "imjuseong" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 1 + } + }, + "New-en-26": { + "question": "북한에서 가장 많이 하는 체육 응원 구호는 무엇인가요?", + "en_question": "What is the best recognized sporting chant in your country?", + "annotations": [ + { + "answers": [ + "이겨라", + "이겨라 이겨라", + "우리선수 이겨라", + "우리선수" + ], + "en_answers": [ + "win", + "win, win", + "our athlete" + ], + "count": 4 + }, + { + "answers": [ + "잘한다 잘한다 우리 선수 잘한다", + "잘한다잘한다우리선수잘한다" + ], + "en_answers": [ + "well done, well done, our player is doing well" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-38": { + "question": "북한에서 근무 시간이 유연한 것으로 알려진 산업은 어떤 것들이 있나요?", + "en_question": "Which industries are known for more flexible working hours in your country?", + "annotations": [], + "idks": { + "idk": 4, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-en-41": { + "question": "북한에서 가장 유명하고 돈 잘 버는 기업소 단위 지배인은 누구인가요?", + "en_question": "Who is the most well known and successful entrepreneur in your country?", + "annotations": [ + { + "answers": [ + "외화벌이 사업소", + "외화벌이 사업소 지배인" + ], + "en_answers": [ + "foreign currency-earning enterprise", + "foreign-currency-earning enterprise manager" + ], + "count": 2 + }, + { + "answers": [ + "기계공장 지배인", + "기계공장" + ], + "en_answers": [ + "machinery factory" + ], + "count": 1 + }, + { + "answers": [ + "제철소 지배인" + ], + "en_answers": [ + "steelworks manager" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-en-47": { + "question": "북한의 주택 뒤 마당에서 자주 발견되는 것은 무엇인가요?", + "en_question": "What can typically be found in the back garden of houses in your country?", + "annotations": [ + { + "answers": [ + "변소칸", + "변소", + "변소칸(화장실)" + ], + "en_answers": [ + "toilet compartment", + "toilet stall (bathroom)" + ], + "count": 2 + }, + { + "answers": [ + "터밭작물", + "텃밭작물" + ], + "en_answers": [ + "kitchen garden crops" + ], + "count": 1 + }, + { + "answers": [ + "퇴비" + ], + "en_answers": [ + "fertilizer" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-49": { + "question": "북한에서 가장 이름 있는 가족은 어디인가요?", + "en_question": "What is the name of the most famous family in your country?", + "annotations": [ + { + "answers": [ + "김일성 가족" + ], + "en_answers": [ + "kim il-sung family" + ], + "count": 1 + }, + { + "answers": [ + "영웅가족" + ], + "en_answers": [ + "hero family" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-50": { + "question": "북한에서 가장 많은 성은 무엇인가요?", + "en_question": "What is the most common family name in your country?", + "annotations": [ + { + "answers": [ + "리", + "이", + "리(이)", + "리씨" + ], + "en_answers": [ + "this", + "ri (unit of measurement, equivalent to about 0.4 kilometers or 0.25 miles)", + "man", + "ri (a unit of measurement, approximately 2.5 miles or 4 kilometers)" + ], + "count": 4 + }, + { + "answers": [ + "김" + ], + "en_answers": [ + "kim" + ], + "count": 3 + }, + { + "answers": [ + "박" + ], + "en_answers": [ + "park" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-55": { + "question": "북한의 가정에서 가장 흔히 믿는 종교는 무엇인가요?", + "en_question": "Which religion is most commonly practiced by families in your country?", + "annotations": [ + { + "answers": [ + "기독교" + ], + "en_answers": [ + "christianity" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 1, + "no-answer": 0 + } + }, + "New-en-56": { + "question": "북한의 가정에서 어떤 외국어로 가장 많이 말하나요?", + "en_question": "What is the most popular foreign language spoken by families in your country?", + "annotations": [ + { + "answers": [ + "영어" + ], + "en_answers": [ + "english" + ], + "count": 2 + }, + { + "answers": [ + "중국어" + ], + "en_answers": [ + "chinese" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "New-en-59": { + "question": "북한에서 온 가족이 이민 가기에 가장 좋아 하는 나라는 어디인가요?", + "en_question": "Which country is the most popular destination for families from your country to emigrate to?", + "annotations": [ + { + "answers": [ + "미국" + ], + "en_answers": [ + "united states of america", + "usa", + "u.s.a.", + "the united states", + "us", + "u.s." + ], + "count": 1 + }, + { + "answers": [ + "스위스" + ], + "en_answers": [ + "switzerland", + "swiss confederation" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 1, + "no-answer": 0 + } + }, + "New-en-68": { + "question": "북한 학교에서 학교 규률을 어기는 행동을 하였을 때 어떤 처벌을 받나요?", + "en_question": "What repercussions are there for bad behavior in schools in your country?", + "annotations": [ + { + "answers": [ + "청소" + ], + "en_answers": [ + "cleaning" + ], + "count": 3 + }, + { + "answers": [ + "벌", + "벌서기", + "체벌", + "손들고 벌서기" + ], + "en_answers": [ + "self-criticism", + "parent-teacher association meeting" + ], + "count": 2 + }, + { + "answers": [ + "집단 처벌" + ], + "en_answers": [ + "collective punishment" + ], + "count": 1 + }, + { + "answers": [ + "자기비판" + ], + "en_answers": [], + "count": 1 + }, + { + "answers": [ + "학부형 학교 호출", + "학부형학교호출" + ], + "en_answers": [ + "times" + ], + "count": 1 + }, + { + "answers": [ + "반성문 쓰기", + "반성문쓰기" + ], + "en_answers": [ + "standing punishment" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-69": { + "question": "북한의 문학 수업에서 주로 배우는 작가는 누구인가요?", + "en_question": "Which writers are commonly studied in literature class in your country?", + "annotations": [ + { + "answers": [ + "김소월" + ], + "en_answers": [], + "count": 2 + }, + { + "answers": [ + "일제강점시기 작가" + ], + "en_answers": [ + "kim sowol" + ], + "count": 1 + }, + { + "answers": [ + "리기영" + ], + "en_answers": [ + "writer during the japanese colonial period" + ], + "count": 1 + }, + { + "answers": [ + "리춘구", + "이춘구" + ], + "en_answers": [ + "ri ki-yong" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-70": { + "question": "북한의 고급중학교에는 1년에 방학이 총 몇 번 있나요? (아라비아 숫자(예: 1)만 기재해 주세요.)", + "en_question": "How many school breaks are there in a year for high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-72": { + "question": "북한 학생들이 공부할 때 주로 사용하는 망 웨브 싸이트는 무엇인가요?", + "en_question": "Which online resource do students usually use to study in your country?", + "annotations": [ + { + "answers": [ + "광명망" + ], + "en_answers": [ + "kwangmyong (bright light) network" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 2, + "not-applicable": 0 + } + }, + "New-en-75": { + "question": "북한 대학은 한 학기에 몇 주 동안 수업하나요? (아라비아 숫자(예: 1)만 기재해 주세요.)", + "en_question": "What is the average length of a semester in terms of weeks of teaching at universities in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "15", + "15주" + ], + "en_answers": [ + "15" + ], + "count": 2 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + }, + { + "answers": [ + "16" + ], + "en_answers": [ + "16" + ], + "count": 1 + }, + { + "answers": [ + "35" + ], + "en_answers": [ + "35" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-76": { + "question": "북한 명절에 가장 복잡한 비행장은 어디인가요?", + "en_question": "Which airport in your country is the busiest during the holiday season?", + "annotations": [ + { + "answers": [ + "순안 비행장", + "순안비행장" + ], + "en_answers": [ + "sunan airport" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 2, + "no-answer": 0 + } + }, + "New-en-79": { + "question": "북한 어느 지방에서 연극를 잘 합니까?", + "en_question": "Which region of your country is well known for its theatrical performances?", + "annotations": [ + { + "answers": [ + "평양" + ], + "en_answers": [ + "pyongyang" + ], + "count": 2 + }, + { + "answers": [ + "함흥" + ], + "en_answers": [ + "hamhung" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-en-87": { + "question": "북한에서 어떤 력사명승지가 가장 이름 있는가요?", + "en_question": "What is the most famous historic landmark in your country?", + "annotations": [ + { + "answers": [ + "금강산" + ], + "en_answers": [ + "mount kumgang" + ], + "count": 2 + }, + { + "answers": [ + "묘향산" + ], + "en_answers": [ + "myohyangsan" + ], + "count": 1 + }, + { + "answers": [ + "만경대 고향집", + "만경대고향집" + ], + "en_answers": [ + "mangyongdae birthplace" + ], + "count": 1 + }, + { + "answers": [ + "백두산 고향집", + "백두산고향집" + ], + "en_answers": [ + "baekdusan home" + ], + "count": 1 + }, + { + "answers": [ + "보현사" + ], + "en_answers": [ + "pohyon temple" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-90": { + "question": "북한에서 어떤 호텔 상표가 가장 이름 있는가요?", + "en_question": "What is the most famous hotel brand in your country?", + "annotations": [ + { + "answers": [ + "고려 호텔", + "고려호텔" + ], + "en_answers": [ + "koryo hotel" + ], + "count": 4 + }, + { + "answers": [ + "양각도 호텔", + "양각도호텔" + ], + "en_answers": [ + "yanggakdo hotel" + ], + "count": 2 + }, + { + "answers": [ + "류경 호텔", + "류경호텔" + ], + "en_answers": [ + "ryugyong hotel" + ], + "count": 1 + }, + { + "answers": [ + "묘향산 호텔", + "묘향산호텔" + ], + "en_answers": [ + "myohyangsan hotel" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-05": { + "question": "북한에서 아침에 간단하게 싸고 가서 먹을 수 있는 것 중 가장 좋아 하는 것은?", + "en_question": "What is the most popular grab-and-go breakfast option in your country?", + "annotations": [ + { + "answers": [ + "김밥" + ], + "en_answers": [ + "gimbap", + "kimbap" + ], + "count": 2 + }, + { + "answers": [ + "누룽지" + ], + "en_answers": [ + "scorched rice", + "crunchy rice", + "nurungji", + "crust of overcooked rice" + ], + "count": 1 + }, + { + "answers": [ + "두부밥" + ], + "en_answers": [ + "tofu rice" + ], + "count": 1 + }, + { + "answers": [ + "주먹밥" + ], + "en_answers": [ + "rice ball" + ], + "count": 1 + }, + { + "answers": [ + "꽈배기" + ], + "en_answers": [ + "twisted doughnut", + "twisted bread stick", + "twisted donut" + ], + "count": 1 + }, + { + "answers": [ + "빵" + ], + "en_answers": [ + "bread" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-06": { + "question": "북한의 젊은이들이 가장 좋아 하는 음식은 무엇인가요?", + "en_question": "What is the most popular food in your country among young people?", + "annotations": [ + { + "answers": [ + "인조고기밥" + ], + "en_answers": [ + "synthetic meat rice" + ], + "count": 1 + }, + { + "answers": [ + "삼겹살" + ], + "en_answers": [ + "pork belly" + ], + "count": 1 + }, + { + "answers": [ + "랭면" + ], + "en_answers": [ + "naengmyeon", + "naengmyŏn", + "cold noodles", + "korean cold noodles" + ], + "count": 1 + }, + { + "answers": [ + "순대" + ], + "en_answers": [ + "korean sausage", + "sundae", + "soondae" + ], + "count": 1 + }, + { + "answers": [ + "치킨" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-08": { + "question": "북한의 축제에서 가장 많이 마시는 술은 무엇인가요?", + "en_question": "What type of alcoholic drink is most commonly consumed at festivals in your country?", + "annotations": [ + { + "answers": [ + "농태기", + "농태기(소주)", + "소주" + ], + "en_answers": [ + "nongtaegi", + "soju", + "home brewed liquor", + "homemade alcohol" + ], + "count": 2 + }, + { + "answers": [ + "중국 빼주" + ], + "en_answers": [ + "chinese exclusion" + ], + "count": 1 + }, + { + "answers": [ + "평양 맥주", + "평양맥주" + ], + "en_answers": [ + "pyongyang beer" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-gr-13": { + "question": "북한에서 아침에 가장 많이 마시는 음료는 무엇인가요?", + "en_question": "What is the most common morning drink in your country?", + "annotations": [ + { + "answers": [ + "물" + ], + "en_answers": [ + "water" + ], + "count": 2 + }, + { + "answers": [ + "사이다" + ], + "en_answers": [ + "cider" + ], + "count": 1 + }, + { + "answers": [ + "약수" + ], + "en_answers": [ + "mineral spring" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-gr-15": { + "question": "북한에서 가장 많이 먹는 옛날 간식은 무엇입니까?", + "en_question": "What is the most popular traditional dessert in your country?", + "annotations": [ + { + "answers": [ + "꽝튀기", + "꽝튀기(팝콘)", + "강냉이튀기" + ], + "en_answers": [ + "popcorn", + "puffed maize", + "puffed corn" + ], + "count": 3 + }, + { + "answers": [ + "닦은 콩", + "볶은 콩" + ], + "en_answers": [ + "roasted beans" + ], + "count": 1 + }, + { + "answers": [ + "옥수수떡" + ], + "en_answers": [ + "corn rice cake" + ], + "count": 1 + }, + { + "answers": [ + "엿" + ], + "en_answers": [ + "year" + ], + "count": 1 + }, + { + "answers": [ + "건빵" + ], + "en_answers": [ + "hardtack" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-21": { + "question": "북한에서 가장 좋아 하는 라켓 체육운동은 무엇입니까?", + "en_question": "What is the most popular racket sport in your country?", + "annotations": [ + { + "answers": [ + "배드민턴" + ], + "en_answers": [ + "badminton" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-24": { + "question": "북한에서 가장 좋아 하는 륙상 경기 종목은 무엇입니까?", + "en_question": "What is the most popular track and field sport in your country?", + "annotations": [ + { + "answers": [ + "100m 달리기" + ], + "en_answers": [ + "100m sprint" + ], + "count": 3 + }, + { + "answers": [ + "마라손", + "마라톤" + ], + "en_answers": [ + "marathon" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-29": { + "question": "북한에서 가장 좋아 하는 국제체육대회는 무엇인가요?", + "en_question": "Which international sporting event is the most popular in your country?", + "annotations": [ + { + "answers": [ + "올림픽", + "올림픽 체육대회", + "올림픽체육대회" + ], + "en_answers": [ + "olympics", + "olympic sports competition" + ], + "count": 2 + }, + { + "answers": [ + "태권도 대회", + "태권도대회" + ], + "en_answers": [ + "taekwondo tournament" + ], + "count": 1 + }, + { + "answers": [ + "아시아 체육대회", + "아세아체육대회" + ], + "en_answers": [ + "asian games" + ], + "count": 1 + }, + { + "answers": [ + "탁구 선수권대회", + "탁구" + ], + "en_answers": [ + "table tennis" + ], + "count": 1 + }, + { + "answers": [ + "롱구 선수권대회", + "롱구" + ], + "en_answers": [ + "table tennis" + ], + "count": 1 + }, + { + "answers": [ + "배드 민턴선수권대회", + "배드민턴" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-47": { + "question": "북한의 직장에서 점심과 저녁 시간을 제외한 휴식 시간은 몇 분인가요? (아라비아 숫자(예: 1)만 기재해 주세요.)", + "en_question": "How long (in minutes) are typical work breaks in your country, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 2 + }, + { + "answers": [ + "80", + "80분" + ], + "en_answers": [ + "80" + ], + "count": 1 + }, + { + "answers": [ + "60", + "1" + ], + "en_answers": [ + "60" + ], + "count": 1 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-gr-58": { + "question": "북한에서는 어떤 직업이 하는 일에 비해 충분한 로임을 받지 못한다고 여기나요?", + "en_question": "Which job is considered underpaid in your country?", + "annotations": [ + { + "answers": [ + "모든 직업" + ], + "en_answers": [ + "all occupations" + ], + "count": 2 + }, + { + "answers": [ + "광산로동자" + ], + "en_answers": [ + "miner" + ], + "count": 1 + }, + { + "answers": [ + "농장원" + ], + "en_answers": [ + "farm worker" + ], + "count": 1 + }, + { + "answers": [ + "농촌동원", + "사회동원", + "사회동원(철도지원" + ], + "en_answers": [ + "rural mobilization", + "social mobilization (railway support)" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-76": { + "question": "북한에서 부활절에 가장 흔히 제공되는 음식은 무엇인가요?", + "en_question": "What is the most common food served during Easter in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "New-gr-82": { + "question": "북한의 로인들이 가장 좋아 하는 음악종류는 무엇인가요?", + "en_question": "What is the most popular music genre among the elderly population in your country?", + "annotations": [ + { + "answers": [ + "계몽기 가요", + "계몽기가요" + ], + "en_answers": [], + "count": 1 + }, + { + "answers": [ + "민속 가요", + "민속가요" + ], + "en_answers": [ + "enlightenment period song" + ], + "count": 1 + }, + { + "answers": [ + "민요" + ], + "en_answers": [ + "folk song" + ], + "count": 1 + }, + { + "answers": [ + "영화 음악", + "영화음악" + ], + "en_answers": [ + "folk song" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-88": { + "question": "북한의 장례식에서 보통 먹는 음료나 술은 무엇인가요?", + "en_question": "What drink is usually offered at funerals in your country?", + "annotations": [ + { + "answers": [ + "농태기", + "농태기(소주)", + "소주", + "직접 뽑은 술", + "집에서 만든 술", + "막걸리" + ], + "en_answers": [ + "nongtaegi", + "soju", + "home brewed liquor", + "homemade alcohol", + "makgeolli", + "makkoli", + "rice wine" + ], + "count": 4 + }, + { + "answers": [ + "농태기" + ], + "en_answers": [ + "nongtaegi", + "soju", + "home brewed liquor", + "homemade alcohol" + ], + "count": 1 + }, + { + "answers": [ + "감주", + "감주(식혜)" + ], + "en_answers": [ + "gamju", + "kamju", + "dansul", + "tansul", + "sweet wine" + ], + "count": 1 + }, + { + "answers": [ + "소주" + ], + "en_answers": [ + "soju" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-89": { + "question": "북한의 결혼식에서 많이 먹는 음료나 술은 무엇인가요?", + "en_question": "What drink is usually offered at weddings in your country?", + "annotations": [ + { + "answers": [ + "농태기", + "농태기(소주)", + "소주", + "직접 뽑은 술", + "집에서 만든 술" + ], + "en_answers": [ + "nongtaegi", + "soju", + "home brewed liquor", + "homemade alcohol" + ], + "count": 4 + }, + { + "answers": [ + "맥주" + ], + "en_answers": [ + "beer" + ], + "count": 2 + }, + { + "answers": [ + "소주" + ], + "en_answers": [ + "soju" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-07": { + "question": "전 세계에서 찾아 볼 수 있는 북한의 음식은 무엇이 있나요?", + "en_question": "What food originated from your country and can be found all over the world?", + "annotations": [ + { + "answers": [ + "김치" + ], + "en_answers": [ + "kimchi", + "gimchi", + "kimch'i" + ], + "count": 2 + }, + { + "answers": [ + "순대" + ], + "en_answers": [ + "korean sausage", + "sundae", + "soondae" + ], + "count": 1 + }, + { + "answers": [ + "랭면" + ], + "en_answers": [ + "naengmyeon", + "naengmyŏn", + "cold noodles", + "korean cold noodles" + ], + "count": 1 + }, + { + "answers": [ + "비빔밥" + ], + "en_answers": [ + "mixed rice" + ], + "count": 1 + }, + { + "answers": [ + "평양냉면" + ], + "en_answers": [ + "pyongyang cold noodles" + ], + "count": 1 + }, + { + "answers": [ + "함흥국수" + ], + "en_answers": [ + "hamhung noodles" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-08": { + "question": "북한에서 어린이들이 거의 싫어하지만 로인들이 먹기 좋아 하는 음식은 무엇인가요?", + "en_question": "What food is typically disliked by children but enjoyed by the elderly in your country?", + "annotations": [ + { + "answers": [ + "묵" + ], + "en_answers": [ + "ink" + ], + "count": 2 + }, + { + "answers": [ + "된장국" + ], + "en_answers": [ + "soybean paste soup" + ], + "count": 1 + }, + { + "answers": [ + "죽" + ], + "en_answers": [ + "porridge" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-09": { + "question": "북한에서 가장 많이 쓰는 료리 도구는 무엇입니까?", + "en_question": "What cooking utensil is most commonly used in your country?", + "annotations": [ + { + "answers": [ + "칼" + ], + "en_answers": [ + "knife" + ], + "count": 2 + }, + { + "answers": [ + "알루미늄 가마", + "알루미늄가마" + ], + "en_answers": [ + "aluminum pot" + ], + "count": 1 + }, + { + "answers": [ + "철가마" + ], + "en_answers": [ + "iron turtle" + ], + "count": 1 + }, + { + "answers": [ + "부침판" + ], + "en_answers": [ + "frying pan" + ], + "count": 1 + }, + { + "answers": [ + "거름망", + "거름망 등" + ], + "en_answers": [ + "strainer, etc" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-13": { + "question": "북한에서 가장 좋아 하는 남새는 무엇입니까?", + "en_question": "Which is the most popular vegetable in your country?", + "annotations": [ + { + "answers": [ + "배추" + ], + "en_answers": [ + "cabbage" + ], + "count": 4 + }, + { + "answers": [ + "오이" + ], + "en_answers": [ + "cucumber" + ], + "count": 2 + }, + { + "answers": [ + "무" + ], + "en_answers": [ + "radish" + ], + "count": 2 + }, + { + "answers": [ + "양배추" + ], + "en_answers": [ + "cabbage" + ], + "count": 1 + }, + { + "answers": [ + "토마토" + ], + "en_answers": [ + "tomato" + ], + "count": 1 + }, + { + "answers": [ + "가지" + ], + "en_answers": [ + "eggplant" + ], + "count": 1 + }, + { + "answers": [ + "고추" + ], + "en_answers": [ + "chili pepper" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-19": { + "question": "북한에서 체육에 리용되는 동물은 무엇인가요?", + "en_question": "Which animal is used for sports in your country?", + "annotations": [ + { + "answers": [ + "말" + ], + "en_answers": [ + "horse" + ], + "count": 2 + }, + { + "answers": [ + "곰" + ], + "en_answers": [ + "bear" + ], + "count": 1 + }, + { + "answers": [ + "강아지" + ], + "en_answers": [ + "puppy" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ha-66": { + "question": "북한에서 가장 좋아 하는 결혼식 장소는 어디인가요?", + "en_question": "What is the most popular wedding venue in your country?", + "annotations": [ + { + "answers": [ + "집" + ], + "en_answers": [ + "house" + ], + "count": 3 + }, + { + "answers": [ + "결혼식장", + "결혼식장(평양)", + "예식장" + ], + "en_answers": [ + "wedding hall (pyongyang)", + "wedding hall" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-01": { + "question": "북한에서 사람들이 가장 좋아 하는 커피음료점 상표는 무엇입니까?", + "en_question": "Which coffee shop brand is the most popular in your country?", + "annotations": [], + "idks": { + "no-answer": 2, + "idk": 2, + "차집에서 커리플 판매한다.": 1, + "not-applicable": 0 + } + }, + "New-in-03": { + "question": "외국 식당에서 주로 판매하는 북한 음식은 무엇인가요?", + "en_question": "What type of food from your country is typically served in restaurants overseas?", + "annotations": [ + { + "answers": [ + "랭면", + "냉면", + "평양 랭면", + "평양냉면" + ], + "en_answers": [ + "naengmyeon", + "naengmyŏn", + "cold noodles", + "korean cold noodles", + "pyongyang cold noodles" + ], + "count": 2 + }, + { + "answers": [ + "함흥 랭면", + "함흥냉면 등" + ], + "en_answers": [ + "hamhung cold noodles, etc." + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-in-33": { + "question": "북한에서 광산이 많은 지방은 보통 어디인가요?", + "en_question": "What region in your country is usually associated with mining?", + "annotations": [ + { + "answers": [ + "함경북도", + "함북도" + ], + "en_answers": [ + "north hamgyong province" + ], + "count": 2 + }, + { + "answers": [ + "검덕" + ], + "en_answers": [ + "kumduk" + ], + "count": 1 + }, + { + "answers": [ + "평안북도" + ], + "en_answers": [ + "north pyongan province" + ], + "count": 1 + }, + { + "answers": [ + "함남도", + "함경도" + ], + "en_answers": [ + "south hamgyong province", + "hamgyong province" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-34": { + "question": "북한에서 석유와 관련된 지역은 보통 어디인가요?", + "en_question": "What region in your country is usually associated with oil?", + "annotations": [], + "idks": { + "no-answer": 3, + "idk": 1, + "not-applicable": 1 + } + }, + "New-in-62": { + "question": "북한에서 어느 공업 대학이 이름이 있나요? (공식 명칭을 제공해 주세요.)", + "en_question": "What university in your country is popular because of its engineering major? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "김책공업종합대학", + "김책공업대학", + "김책공대" + ], + "en_answers": [ + "kim chaek university of technology" + ], + "count": 5 + }, + { + "answers": [ + "청진광산금속대학" + ], + "en_answers": [ + "chongjin mine & metal university" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-63": { + "question": "북한에서 어느 의학 대학이 이름이 있나요? (공식 명칭을 제공해 주세요.)", + "en_question": "What university in your country is popular because of its school of medicine? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "평양의학대학" + ], + "en_answers": [ + "pyongyang medical college" + ], + "count": 4 + }, + { + "answers": [ + "청진의과대학" + ], + "en_answers": [ + "chongjin medical university" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-78": { + "question": "북한에서 가장 많이 쓰이는 결제 방법은 무엇인가요?", + "en_question": "What is the most popular payment method in your country?", + "annotations": [ + { + "answers": [ + "현금", + "돈계산" + ], + "en_answers": [ + "cash", + "money calculation" + ], + "count": 4 + }, + { + "answers": [ + "카드" + ], + "en_answers": [ + "card" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-80": { + "question": "북한에서 어느 유희장이 가장 이름 있는가요?", + "en_question": "What is the most famous theme park in your country?", + "annotations": [ + { + "answers": [ + "문수 물놀이장", + "문수물놀이장" + ], + "en_answers": [ + "munsu water park" + ], + "count": 3 + }, + { + "answers": [ + "대성산 유희장", + "대성산유희장" + ], + "en_answers": [ + "daesongsan amusement park" + ], + "count": 1 + }, + { + "answers": [ + "만경대 유희장", + "만경대유희장" + ], + "en_answers": [ + "mangyongdae funfair" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-01": { + "question": "북한의 어린이들이 가장 많이 보는 인기 어린이 만화는 무엇인가요?", + "en_question": "What is the most popular children's animation that is commonly watched by kids in your country?", + "annotations": [ + { + "answers": [ + "소년장수" + ], + "en_answers": [ + "young general" + ], + "count": 4 + }, + { + "answers": [ + "령리한 너구리" + ], + "en_answers": [ + "clever raccoon" + ], + "count": 3 + }, + { + "answers": [ + "다람쥐와 고슴도치", + "다람이와 고슴도치", + "고슴도치와 다람쥐" + ], + "en_answers": [ + "squirrel and hedgehog", + "hedgehog and squirrel" + ], + "count": 3 + }, + { + "answers": [ + "령리한 너구리", + "영리한 너구리" + ], + "en_answers": [ + "clever raccoon" + ], + "count": 1 + }, + { + "answers": [ + "용감한 고슴도치" + ], + "en_answers": [ + "brave hedgehog" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-02": { + "question": "북한에서 임신부들이 가장 많이 하는 배속 아이 가르치기 활동은 무엇인가요?", + "en_question": "What is the most popular prenatal education activity for pregnant women in your country?", + "annotations": [ + { + "answers": [ + "태교 음악", + "음악 들려주기", + "음악감상" + ], + "en_answers": [ + "prenatal education music", + "play music", + "music appreciation" + ], + "count": 3 + }, + { + "answers": [ + "좋은 책읽기" + ], + "en_answers": [ + "good reading" + ], + "count": 1 + }, + { + "answers": [ + "좋은 영화보기" + ], + "en_answers": [ + "watching good movies" + ], + "count": 1 + }, + { + "answers": [ + "좋은 음식먹기", + "좋은 음식 먹기" + ], + "en_answers": [ + "eating good food" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-03": { + "question": "북한에서 식구 모두가 함께 부를 수 있는 가장 이름 있는 동요는 무엇인가요?", + "en_question": "What is the most popular children's song in your country that families sing together?", + "annotations": [ + { + "answers": [ + "소년장수 주제곡", + "아동영화 '소년장수'에서 나오는 노래" + ], + "en_answers": [ + "the theme song of the boy general", + "song from the children's movie 'the boy general'" + ], + "count": 2 + }, + { + "answers": [ + "푸른 하늘 은하수" + ], + "en_answers": [ + "blue sky milky way" + ], + "count": 1 + }, + { + "answers": [ + "영리한 너구리" + ], + "en_answers": [ + "clever raccoon" + ], + "count": 1 + }, + { + "answers": [ + "반달" + ], + "en_answers": [ + "half-moon" + ], + "count": 1 + }, + { + "answers": [ + "대홍단 감자" + ], + "en_answers": [ + "daehongdan potatoes" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-04": { + "question": "북한 남자아이들이 가장 좋아 하는 장난감은 무엇인가요?", + "en_question": "Which toys are most popular among boys in your country?", + "annotations": [ + { + "answers": [ + "탱크 모형" + ], + "en_answers": [ + "tank model" + ], + "count": 2 + }, + { + "answers": [ + "총", + "나무총" + ], + "en_answers": [ + "gun", + "wooden gun" + ], + "count": 2 + }, + { + "answers": [ + "칼 장난감" + ], + "en_answers": [ + "knife toy" + ], + "count": 1 + }, + { + "answers": [ + "자동차" + ], + "en_answers": [ + "car" + ], + "count": 1 + }, + { + "answers": [ + "로봇" + ], + "en_answers": [ + "robot" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-05": { + "question": "북한 여자아이들이 가장 좋아 하는 장난감은 무엇인가요?", + "en_question": "Which toys are most popular among girls in your country?", + "annotations": [ + { + "answers": [ + "아기인형", + "인형", + "어린이 인형" + ], + "en_answers": [ + "doll", + "children's doll" + ], + "count": 3 + }, + { + "answers": [ + "토끼인형" + ], + "en_answers": [ + "rabbit doll" + ], + "count": 1 + }, + { + "answers": [ + "오또기인형" + ], + "en_answers": [ + "marionette" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-06": { + "question": "북한에서 아이들에게 가장 많이 들려주는 이름 있는 고전동화는 무엇인가요?", + "en_question": "What is the most popular folk tale in your country that is typically told to children?", + "annotations": [ + { + "answers": [ + "흥부와 놀부" + ], + "en_answers": [ + "heungbu and nolbu" + ], + "count": 3 + }, + { + "answers": [ + "선녀와 나무꾼" + ], + "en_answers": [ + "the fairy and the woodcutter" + ], + "count": 1 + }, + { + "answers": [ + "햇님달님" + ], + "en_answers": [ + "sun and moon" + ], + "count": 1 + }, + { + "answers": [ + "토끼전" + ], + "en_answers": [ + "rabbit fable" + ], + "count": 1 + }, + { + "answers": [ + "놀부와 흥부" + ], + "en_answers": [ + "nolbu and heungbu" + ], + "count": 1 + }, + { + "answers": [ + "금빛물고기의 은혜 갚음" + ], + "en_answers": [ + "repaying the kindness of the golden fish" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-07": { + "question": "북한 장례식에서 슬픔을 표시 하는 행동이나 방법은 무엇인가요?", + "en_question": "What is the customary symbol of condolence used at funerals in your country?", + "annotations": [ + { + "answers": [ + "울음", + "곡소리" + ], + "en_answers": [ + "crying", + "wailing" + ], + "count": 3 + }, + { + "answers": [ + "쌀과 돈 부조", + "쌀이나 돈 들고찾아가 위로" + ], + "en_answers": [ + "offering consolation with rice or money" + ], + "count": 1 + }, + { + "answers": [ + "음악" + ], + "en_answers": [ + "music" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-08": { + "question": "북한 대학생들은 주로 어디에서 삵벌이를 가장 많이 하나요?", + "en_question": "Where do university students in your country tend to work part-time the most?", + "annotations": [ + { + "answers": [ + "짐 운반" + ], + "en_answers": [ + "luggage transport" + ], + "count": 1 + }, + { + "answers": [ + "개인 전문지도", + "개인전문지도" + ], + "en_answers": [ + "individual specialized guidance" + ], + "count": 1 + }, + { + "answers": [ + "장마당" + ], + "en_answers": [ + "marketplace" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-09": { + "question": "북한 기업소 단위에서 가장 많이 하는 조직강화활동은 무엇인가요?", + "en_question": "What are the most frequently practiced team-building activities in companies based in your country?", + "annotations": [ + { + "answers": [ + "생활총화", + "생활 총화", + "조직생활총화" + ], + "en_answers": [ + "life review", + "summary of organizational life" + ], + "count": 5 + }, + { + "answers": [ + "강연회" + ], + "en_answers": [ + "lecture" + ], + "count": 1 + }, + { + "answers": [ + "충성의 노래모임" + ], + "en_answers": [ + "loyalty singing gathering" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-10": { + "question": "북한에서 사람들이 가장 많이 하는 부업은 무엇인가요?", + "en_question": "What are the most common activities people do as a side job in your country?", + "annotations": [ + { + "answers": [ + "터밭농사", + "텃밭농사", + "농사", + "터밭 가꾸기", + "텃밭가꾸기" + ], + "en_answers": [ + "kitchen garden farming", + "agriculture", + "gardening" + ], + "count": 5 + }, + { + "answers": [ + "장마당 장사", + "장마당장사" + ], + "en_answers": [ + "market trading" + ], + "count": 1 + }, + { + "answers": [ + "개인기술 장사", + "개인기술장사" + ], + "en_answers": [ + "individual technician" + ], + "count": 1 + }, + { + "answers": [ + "집짐승 기르기", + "집짐승 기르기 등" + ], + "en_answers": [ + "raising domestic animals, etc" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-02": { + "question": "북한에서 관광객들에게 가장 이름 있는 음식 기념품은 무엇인가요?", + "en_question": "What is the most famous edible souvenir for tourists in your country?", + "annotations": [ + { + "answers": [ + "들쭉술" + ], + "en_answers": [ + "wild berry wine" + ], + "count": 1 + }, + { + "answers": [ + "개성인삼" + ], + "en_answers": [ + "gaeseong ginseng" + ], + "count": 1 + }, + { + "answers": [ + "대동강맥주" + ], + "en_answers": [ + "taedonggang beer" + ], + "count": 1 + }, + { + "answers": [ + "들쭉단묵", + "들쭉시럽" + ], + "en_answers": [ + "sweet and sour pork" + ], + "count": 1 + }, + { + "answers": [ + "오징어", + "오징어 등 지방특산물" + ], + "en_answers": [ + "squid and other local specialties" + ], + "count": 1 + }, + { + "answers": [ + "지방특산물", + "오징어 등 지방특산물" + ], + "en_answers": [], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-06": { + "question": "북한\b사람들이 가장 좋아 하는 국 종류는 무엇인가요?", + "en_question": "What is the most popular stew in your country?", + "annotations": [ + { + "answers": [ + "고기국", + "고깃국" + ], + "en_answers": [ + "meat soup" + ], + "count": 2 + }, + { + "answers": [ + "된장국" + ], + "en_answers": [ + "soybean paste soup" + ], + "count": 2 + }, + { + "answers": [ + "물고기국" + ], + "en_answers": [ + "fish soup" + ], + "count": 1 + }, + { + "answers": [ + "두부국" + ], + "en_answers": [ + "tofu soup" + ], + "count": 1 + }, + { + "answers": [ + "배추국" + ], + "en_answers": [ + "cabbage soup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-11": { + "question": "북한 료리에서 가장 많이 사용되는 향신료/허브는 무엇인가요?", + "en_question": "What is the most common spice/herb used in dishes from your country?", + "annotations": [ + { + "answers": [ + "후추가루", + "후춧가루", + "후추" + ], + "en_answers": [ + "pepper powder", + "pepper" + ], + "count": 3 + }, + { + "answers": [ + "고수", + "내기풀", + "내기풀(방아풀)", + "방아풀" + ], + "en_answers": [ + "expert", + "foxtail millet" + ], + "count": 2 + }, + { + "answers": [ + "맛내기", + "맛내기(미원)" + ], + "en_answers": [ + "flavor enhancer (mi-won)" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-16": { + "question": "북한에서 가장 이름 있는 전통 체육은 무엇인가요?", + "en_question": "What is the most famous traditional sport in your country?", + "annotations": [ + { + "answers": [ + "씨름" + ], + "en_answers": [ + "ssireum (korean wrestling)" + ], + "count": 4 + }, + { + "answers": [ + "바줄 당기기", + "밧줄 당기기" + ], + "en_answers": [ + "tug-of-war" + ], + "count": 1 + }, + { + "answers": [ + "활쏘기" + ], + "en_answers": [ + "archery" + ], + "count": 1 + }, + { + "answers": [ + "태권도" + ], + "en_answers": [ + "taekwondo", + "taekwon-do", + "tae kwon do", + "tae kwon-do", + "tae-kwon-do" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-20": { + "question": "북한에서 바다에서 할 수 있는 체육 중 사람들이 가장 좋아 하는 것은 무엇인가요?", + "en_question": "What sport is popular to play on the beach in your country?", + "annotations": [ + { + "answers": [ + "수영" + ], + "en_answers": [ + "swimming" + ], + "count": 4 + }, + { + "answers": [ + "수중무용" + ], + "en_answers": [ + "underwater ballet" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-45": { + "question": "일반적으로 이슬람교 금식 기간 동안 북한에서의 근무 시간은 어떻게 되나요?", + "en_question": "What is the usual work schedule during the month of Ramadan in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "New-pe-47": { + "question": "북한에서의 학생의 날은 언제인가요? (MM/DD 형식(예: 12/31)으로 제공하세요.)", + "en_question": "When is Student's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "06월 06일", + "6월 6일", + "6.6" + ], + "en_answers": [ + "6.6" + ], + "count": 2 + }, + { + "answers": [ + "08월 28일" + ], + "en_answers": [ + "august 28th" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 1, + "no-answer": 0 + } + }, + "New-pe-49": { + "question": "북한에서 가족들이 함께 모여 기도하는 곳은 어디인가요?", + "en_question": "Where do families gather to pray together in your country?", + "annotations": [ + { + "answers": [ + "지하교회" + ], + "en_answers": [ + "underground church" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 0 + } + }, + "New-pe-53": { + "question": "북한에서 아버지의 날(혹은 어버이날)에 아버지들은 어떤 선물을 받나요?", + "en_question": "What gifts do fathers get on Father's Day (or Parents' Day) in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "New-pe-54": { + "question": "북한에서 어머니의 날(혹은 어버이날)에 어머니들은 어떤 선물을 받나요?", + "en_question": "What gifts do mothers get on Mother's Day (or Parents' Day) in your country?", + "annotations": [ + { + "answers": [ + "돈" + ], + "en_answers": [ + "money" + ], + "count": 2 + }, + { + "answers": [ + "꽃" + ], + "en_answers": [ + "flower" + ], + "count": 2 + }, + { + "answers": [ + "옷" + ], + "en_answers": [ + "clothes" + ], + "count": 1 + }, + { + "answers": [ + "금반지" + ], + "en_answers": [ + "gold ring" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-pe-59": { + "question": "일반적으로 북한 가정에는 몇 세대가 함께 거주하고 있나요? (아라비아 숫자(예: 12)만 기재해 주세요.)", + "en_question": "How many generations typically live together in a household in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 2 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-65": { + "question": "북한의 초급중학교에서는 몇 개의 과목을 배우나요? (아라비아 숫자(예: 12)만 기재해주세요.)", + "en_question": "How many subjects are taught in middle schools in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 2 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + }, + { + "answers": [ + "16" + ], + "en_answers": [ + "16" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-66": { + "question": "북한의 소학교에서 아이들이 가장 좋아 하는 수업 후 활동은 무엇인가요?", + "en_question": "What is the most popular after school curricular in elementary schools in your country?", + "annotations": [ + { + "answers": [ + "체육", + "체육활동" + ], + "en_answers": [ + "physical education", + "physical activities" + ], + "count": 2 + }, + { + "answers": [ + "학과목 소조활동", + "과목소조활동" + ], + "en_answers": [ + "subject group activity" + ], + "count": 1 + }, + { + "answers": [ + "음악활동" + ], + "en_answers": [ + "musical activities" + ], + "count": 1 + }, + { + "answers": [ + "과외체육" + ], + "en_answers": [ + "extracurricular physical education" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-74": { + "question": "북한 국가대학의 평균 년간 등록금은 얼마입니까?", + "en_question": "How much is the average annual tuition fee for public universities in your country?", + "annotations": [ + { + "answers": [ + "0", + "등록금 없음", + "0원", + "무료", + "세금부담 있음" + ], + "en_answers": [ + "no tuition fee", + "0 won", + "free" + ], + "count": 3 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "New-pe-76": { + "question": "북한의 공원에서 할 수 있는 활동 중 사람들이 자주 하는 것은 무엇인가요?", + "en_question": "What is a popular activity to do in parks in your country?", + "annotations": [ + { + "answers": [ + "걷기" + ], + "en_answers": [ + "walking" + ], + "count": 3 + }, + { + "answers": [ + "달리기" + ], + "en_answers": [ + "running" + ], + "count": 1 + }, + { + "answers": [ + "노래" + ], + "en_answers": [ + "song" + ], + "count": 1 + }, + { + "answers": [ + "춤" + ], + "en_answers": [ + "dance" + ], + "count": 1 + }, + { + "answers": [ + "인민보건체조", + "인민체조" + ], + "en_answers": [ + "mass gymnastics" + ], + "count": 1 + }, + { + "answers": [ + "놀이기구" + ], + "en_answers": [ + "amusement ride" + ], + "count": 1 + }, + { + "answers": [ + "꽃구경", + "꽃구경 등" + ], + "en_answers": [ + "flower viewing, etc." + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-78": { + "question": "북한에서 열리는 가장 이름 있는 영화제의 이름은 무엇인가요?", + "en_question": "What is the name of the most famous film festival held in your country?", + "annotations": [ + { + "answers": [ + "평양국제영화축전", + "평양국제영화제" + ], + "en_answers": [ + "pyongyang international film festival" + ], + "count": 2 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-83": { + "question": "북한에서 사람들이 함께 모여 주로 즐기는 주패 놀이 중 사람들이 좋아 하는 것은 무엇인가요?", + "en_question": "What is the popular card game played during social gatherings in your country?", + "annotations": [ + { + "answers": [ + "주패", + "사사끼", + "사사끼/흥수", + "흥수" + ], + "en_answers": [ + "card game", + "trump", + "sasaki", + "playing cards" + ], + "count": 5 + }, + { + "answers": [ + "오십케이" + ], + "en_answers": [ + "50k" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-85": { + "question": "북한 사람들이 가장 좋아 하는 외국 관광명승지는 어디인가요?", + "en_question": "Where is the most popular tourist destination abroad for people from your country?", + "annotations": [ + { + "answers": [ + "중국", + "천안문" + ], + "en_answers": [ + "china", + "tiananmen" + ], + "count": 2 + }, + { + "answers": [ + "평양" + ], + "en_answers": [ + "pyongyang" + ], + "count": 1 + }, + { + "answers": [ + "금강산" + ], + "en_answers": [ + "mount kumgang" + ], + "count": 1 + }, + { + "answers": [ + "묘향산" + ], + "en_answers": [ + "myohyangsan" + ], + "count": 1 + }, + { + "answers": [ + "칠보산", + "칠보산 등" + ], + "en_answers": [ + "chilbosan, etc." + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-86": { + "question": "북한에서 가장 이름 있는 탑의 이름은 무엇인가요?", + "en_question": "What is the name of the most famous tower in your country?", + "annotations": [ + { + "answers": [ + "주체사상탑" + ], + "en_answers": [], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-01": { + "question": "북한에서 가장 많이 먹는 식용 곤충은 무엇인가요?", + "en_question": "What edible insect is eaten most often in your country?", + "annotations": [ + { + "answers": [ + "메뚜기" + ], + "en_answers": [ + "grasshopper" + ], + "count": 2 + }, + { + "answers": [ + "개구리" + ], + "en_answers": [ + "frog" + ], + "count": 1 + }, + { + "answers": [ + "누에고치 번데기" + ], + "en_answers": [ + "silkworm pupa" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-04": { + "question": "북한에서 가장 많이 수출하는 농작물은 무엇입니까?", + "en_question": "Which agricultural product is exported most often in your country?", + "annotations": [ + { + "answers": [ + "약초류" + ], + "en_answers": [ + "medicinal herbs" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "not-applicable": 2, + "idk": 0 + } + }, + "New-spme-05": { + "question": "북한에서 가장 좋아 하는 단 간식(사탕, 초콜렛트 등)은 무엇인가요?", + "en_question": "What are the most popular sweets in your country?", + "annotations": [ + { + "answers": [ + "사탕", + "알사탕" + ], + "en_answers": [ + "candy", + "jawbreaker" + ], + "count": 5 + }, + { + "answers": [ + "초콜릿", + "초콜렛", + "쵸콜릿" + ], + "en_answers": [ + "chocolate" + ], + "count": 2 + }, + { + "answers": [ + "콩사탕" + ], + "en_answers": [ + "cotton candy" + ], + "count": 1 + }, + { + "answers": [ + "경흥 쵸콜레트" + ], + "en_answers": [ + "gyeonghung chocolate" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-15": { + "question": "북한에서 가장 좋아 하는 체육운동 할때 먹는 음료는 무엇입니까?", + "en_question": "What is the most popular sports drink in your country?", + "annotations": [ + { + "answers": [ + "탄산수", + "사이다(탄산수)", + "사이다", + "사이다 등" + ], + "en_answers": [ + "cider (carbonated water)", + "cider, etc." + ], + "count": 2 + }, + { + "answers": [ + "물" + ], + "en_answers": [ + "water" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-spme-27": { + "question": "북한 사람들의 평균 학력은 무엇입니까?", + "en_question": "What is the average education level for people in your country?", + "annotations": [ + { + "answers": [ + "고졸", + "고급중학교", + "고등학교" + ], + "en_answers": [ + "high school graduate", + "senior middle school", + "high school" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-37": { + "question": "북한 학생들이 외국에서 가장 많이 공부하는 분야는 무엇입니까?", + "en_question": "Which profession is most commonly studied abroad by students from your country?", + "annotations": [ + { + "answers": [ + "영어" + ], + "en_answers": [ + "english" + ], + "count": 2 + }, + { + "answers": [ + "중국어" + ], + "en_answers": [ + "chinese" + ], + "count": 2 + }, + { + "answers": [ + "콤퓨터" + ], + "en_answers": [ + "computer" + ], + "count": 1 + }, + { + "answers": [ + "군사" + ], + "en_answers": [ + "military" + ], + "count": 1 + }, + { + "answers": [ + "경제" + ], + "en_answers": [ + "economy" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-spme-60": { + "question": "북한의 일반적인 가정이 종교 활동을 하는 요일은 언제인가요? (예: 월요일, 화요일)", + "en_question": "Which day of the week do most families in your country practice religious activities? (e.g. Monday, Tuesday)", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "New-spme-65": { + "question": "북한의 광복절을 기념하기 위해 사람들이 가장 많이 하는 행동은 무엇인가요?", + "en_question": "What is the most popular way to celebrate Independence Day in your country?", + "annotations": [ + { + "answers": [ + "국가적 행사 참여" + ], + "en_answers": [ + "participation in national events" + ], + "count": 1 + }, + { + "answers": [ + "경축보고대회", + "국가경축보고대회" + ], + "en_answers": [ + "national celebration report meeting" + ], + "count": 1 + }, + { + "answers": [ + "국가행사" + ], + "en_answers": [ + "national event" + ], + "count": 1 + }, + { + "answers": [ + "여맹행사" + ], + "en_answers": [ + "women's league event" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-spme-68": { + "question": "북한 어린이들이 가장 좋아 하는 음료는 무엇입니까?", + "en_question": "What is the most popular beverage among children in your country?", + "annotations": [ + { + "answers": [ + "단물", + "사탕가루물", + "사탕가루물/설탕물", + "설탕물", + "단 물" + ], + "en_answers": [ + "juice", + "candy powder/liquid sugar", + "fruit syrup" + ], + "count": 4 + }, + { + "answers": [ + "사이다" + ], + "en_answers": [ + "sweet water" + ], + "count": 1 + }, + { + "answers": [ + "과일단물" + ], + "en_answers": [ + "cider" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-76": { + "question": "북한의 광복절을 경축하기 위해 사람들이 많이 가는 장소는 어디인가요?", + "en_question": "What is the most popular place in your country to celebrate Independence Day?", + "annotations": [ + { + "answers": [ + "광장", + "동상" + ], + "en_answers": [ + "square", + "statue" + ], + "count": 2 + }, + { + "answers": [ + "동상앞 광장", + "동상앞광장" + ], + "en_answers": [ + "statue square" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-spme-78": { + "question": "북한의 생일 파티에서 보통 부르는 노래의 제목은 무엇인가요?", + "en_question": "What is the name of the song that is typically sung at birthday parties in your country?", + "annotations": [ + { + "answers": [ + "생일 축하합니다.", + "생일축하합니다.", + "해피버스데이", + "생일을 축하합니다." + ], + "en_answers": [ + "happy birthday.", + "happy birthday" + ], + "count": 3 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-su-01": { + "question": "북한의 학교 앞에서는 보통 어떤 간식들을 파나요?", + "en_question": "What snacks are usually sold in front of schools in your country?", + "annotations": [ + { + "answers": [ + "껌" + ], + "en_answers": [ + "gum" + ], + "count": 3 + }, + { + "answers": [ + "과자" + ], + "en_answers": [ + "snack", + "cracker", + "cookie", + "biscuit" + ], + "count": 3 + }, + { + "answers": [ + "사탕", + "알사탕" + ], + "en_answers": [ + "candy", + "jawbreaker" + ], + "count": 3 + }, + { + "answers": [ + "두부밥" + ], + "en_answers": [ + "tofu rice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-09": { + "question": "북한에서 료리할 때 보통 어떤 기름을 사용하나요?", + "en_question": "What oil is usually used for cooking in your country?", + "annotations": [ + { + "answers": [ + "콩기름", + "콩" + ], + "en_answers": [ + "soybean oil", + "beans" + ], + "count": 5 + }, + { + "answers": [ + "옥수수", + "옥수수기름" + ], + "en_answers": [ + "corn", + "corn oil" + ], + "count": 2 + }, + { + "answers": [ + "참기름" + ], + "en_answers": [ + "sesame oil" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-10": { + "question": "북한에서 임신부들이 보통 먹는 음식은 무엇인가요?", + "en_question": "What food is commonly consumed by pregnant women in your country?", + "annotations": [ + { + "answers": [ + "신 과일", + "신맛나는 음식", + "보통사람들과 비슷하게" + ], + "en_answers": [ + "sour food", + "similarly to ordinary people" + ], + "count": 2 + }, + { + "answers": [ + "식초", + "신맛 음식" + ], + "en_answers": [ + "sour food" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-su-15": { + "question": "북한에서 가장 좋아 하는 옛날 음료는 무엇입니까?", + "en_question": "What is the most popular traditional non-alcoholic drink in your country?", + "annotations": [ + { + "answers": [ + "탁배기", + "탁배기(막걸리)", + "막걸리" + ], + "en_answers": [ + "makgeolli", + "makkoli", + "rice wine" + ], + "count": 2 + }, + { + "answers": [ + "사이다" + ], + "en_answers": [ + "cider" + ], + "count": 1 + }, + { + "answers": [ + "탁주", + "막걸리" + ], + "en_answers": [ + "unrefined rice wine" + ], + "count": 1 + }, + { + "answers": [ + "단물" + ], + "en_answers": [ + "juice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-17": { + "question": "북한의 공원에는 보통 어떤 체육 시설이 있나요?", + "en_question": "What sports facilities are generally available in parks in your country?", + "annotations": [ + { + "answers": [ + "철봉" + ], + "en_answers": [ + "bar" + ], + "count": 3 + }, + { + "answers": [ + "그네" + ], + "en_answers": [ + "swing" + ], + "count": 1 + }, + { + "answers": [ + "평행봉" + ], + "en_answers": [ + "parallel bars" + ], + "count": 1 + }, + { + "answers": [ + "그네", + "그네 등" + ], + "en_answers": [ + "swing etc" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-21": { + "question": "북한의 공원에서 로인들이 하는 자주 하는 활동은 무엇인가요?", + "en_question": "What are the common activities that seniors usually do in parks in your country?", + "annotations": [ + { + "answers": [ + "걷기" + ], + "en_answers": [ + "walking" + ], + "count": 3 + }, + { + "answers": [ + "장기" + ], + "en_answers": [ + "chess" + ], + "count": 1 + }, + { + "answers": [ + "인민체조" + ], + "en_answers": [ + "mass gymnastics" + ], + "count": 1 + }, + { + "answers": [ + "체조" + ], + "en_answers": [ + "gymnastics" + ], + "count": 1 + }, + { + "answers": [ + "장기두기" + ], + "en_answers": [ + "playing chess" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-24": { + "question": "북한에서 부모와 자식이 함께 자주 하는 체육운동은 무엇인가요?", + "en_question": "What sports do parents and children commonly play together in your country?", + "annotations": [ + { + "answers": [ + "철봉" + ], + "en_answers": [ + "bar" + ], + "count": 1 + }, + { + "answers": [ + "그네" + ], + "en_answers": [ + "swing" + ], + "count": 1 + }, + { + "answers": [ + "인민보건체조" + ], + "en_answers": [ + "people's health exercise" + ], + "count": 1 + }, + { + "answers": [ + "태권도" + ], + "en_answers": [ + "taekwondo", + "taekwon-do", + "tae kwon do", + "tae kwon-do", + "tae-kwon-do" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-su-28": { + "question": "북한 국가축구단과 련관된 색깔은 무엇인가요?", + "en_question": "What color is associated with the national soccer team of your country?", + "annotations": [ + { + "answers": [ + "붉은색" + ], + "en_answers": [ + "red color" + ], + "count": 2 + }, + { + "answers": [ + "빨간색" + ], + "en_answers": [ + "red color" + ], + "count": 2 + }, + { + "answers": [ + "파란색" + ], + "en_answers": [ + "blue" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-su-33": { + "question": "북한 학교 선생님들의 보통 옷차림 규정은 무엇인가요?", + "en_question": "What is the common dress code for school teachers in your country?", + "annotations": [ + { + "answers": [ + "단정한 옷", + "단정한 옷차림" + ], + "en_answers": [ + "neat clothes", + "neat attire" + ], + "count": 2 + }, + { + "answers": [ + "교복" + ], + "en_answers": [ + "school uniform" + ], + "count": 1 + }, + { + "answers": [ + "조선옷" + ], + "en_answers": [ + "korean clothing" + ], + "count": 1 + }, + { + "answers": [ + "양복" + ], + "en_answers": [ + "suit" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-34": { + "question": "북한의 학교에서 가장 좋아 하는 수업 후 음악소조활동은 무엇입니까?", + "en_question": "What is the most popular extracurricular activity related to music in schools in your country?", + "annotations": [ + { + "answers": [ + "개인 악기연습", + "개인악기연습" + ], + "en_answers": [ + "individual instrument practice" + ], + "count": 1 + }, + { + "answers": [ + "손풍금연습" + ], + "en_answers": [ + "accordion practice" + ], + "count": 1 + }, + { + "answers": [ + "바이올린 연습" + ], + "en_answers": [ + "violin practice" + ], + "count": 1 + }, + { + "answers": [ + "악기소조" + ], + "en_answers": [ + "instrumental ensemble" + ], + "count": 1 + }, + { + "answers": [ + "성악소조", + "노래소조" + ], + "en_answers": [ + "vocal ensemble" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-42": { + "question": "북한의 학교에서 보통 가르치는 종교는 무엇입니까?", + "en_question": "What religion is mainly taught in schools in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 1 + } + }, + "New-su-45": { + "question": "북한의 교육절은 언제인가요? (MM/DD 형식(예: 12/31)으로 제공하세요.)", + "en_question": "What date is Education Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "09/05", + "9.5" + ], + "en_answers": [ + "9.5" + ], + "count": 4 + }, + { + "answers": [ + "10/05", + "10월 05일" + ], + "en_answers": [ + "october 05" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-50": { + "question": "북한의 산골지방 사람들의 주요 직업은 무엇입니까?", + "en_question": "What is the main occupation of people in mountainous areas in your country?", + "annotations": [ + { + "answers": [ + "농사", + "농사꾼", + "농장원" + ], + "en_answers": [ + "farmer", + "farm worker" + ], + "count": 5 + }, + { + "answers": [ + "림업 로동자" + ], + "en_answers": [ + "forestry worker" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-51": { + "question": "북한의 바다가 지방 사람들의 주요 직업은 무엇입니까?", + "en_question": "What is the main occupation of people in coastal areas in your country?", + "annotations": [ + { + "answers": [ + "어부", + "배꾼" + ], + "en_answers": [ + "fisherman", + "shipper" + ], + "count": 3 + }, + { + "answers": [ + "어업" + ], + "en_answers": [ + "fishing" + ], + "count": 1 + }, + { + "answers": [ + "수산부문 노동자", + "수산업 로동자" + ], + "en_answers": [ + "fishery worker" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-57": { + "question": "북한에서 가장 많이 기르는 집짐승은 무엇입니까?", + "en_question": "What is the most common livestock raised in your country?", + "annotations": [ + { + "answers": [ + "돼지" + ], + "en_answers": [ + "pig" + ], + "count": 5 + }, + { + "answers": [ + "닭" + ], + "en_answers": [ + "chicken" + ], + "count": 4 + }, + { + "answers": [ + "개", + "강아지" + ], + "en_answers": [ + "dog", + "puppy" + ], + "count": 4 + }, + { + "answers": [ + "토끼" + ], + "en_answers": [ + "rabbit" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-58": { + "question": "북한에서 농업에 보통 리용되는 동물은 무엇인가요?", + "en_question": "What animals are commonly used for agriculture in your country?", + "annotations": [ + { + "answers": [ + "소" + ], + "en_answers": [ + "cow" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-59": { + "question": "북한의 농사꾼들이 농사를 지을 때 더위를 피하기 위해 입는 것은 무엇입니까?", + "en_question": "What do farmers in your country typically wear to protect themselves from the heat whilst farming?", + "annotations": [ + { + "answers": [ + "반소매", + "반팔옷" + ], + "en_answers": [ + "short sleeve", + "short-sleeved clothes" + ], + "count": 2 + }, + { + "answers": [ + "농민모", + "농민모(모자)" + ], + "en_answers": [ + "farmer's hat" + ], + "count": 1 + }, + { + "answers": [ + "런닝" + ], + "en_answers": [ + "running" + ], + "count": 1 + }, + { + "answers": [ + "면옷" + ], + "en_answers": [ + "underwear" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-60": { + "question": "북한의 농사꾼들은 보통 점심으로 무엇을 먹나요?", + "en_question": "What do farmers in your country usually eat for lunch?", + "annotations": [ + { + "answers": [ + "국수" + ], + "en_answers": [ + "noodles" + ], + "count": 2 + }, + { + "answers": [ + "밥", + "잡곡밥" + ], + "en_answers": [ + "rice", + "steamed rice", + "japgokbap", + "multi-grain rice", + "steamed multi-grain rice" + ], + "count": 2 + }, + { + "answers": [ + "개인도시락" + ], + "en_answers": [ + "box lunch", + "lunch box", + "packed lunch" + ], + "count": 1 + }, + { + "answers": [ + "옥수수" + ], + "en_answers": [ + "corn" + ], + "count": 1 + }, + { + "answers": [ + "감자" + ], + "en_answers": [ + "potato" + ], + "count": 1 + }, + { + "answers": [ + "보리밥" + ], + "en_answers": [ + "barley rice", + "steamed barley rice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-71": { + "question": "북한의 부모님들은 보통 자녀들의 생일에 어떤 선물을 주나요?", + "en_question": "What gifts do parents generally give to their children for their birthdays in your country?", + "annotations": [ + { + "answers": [ + "옷" + ], + "en_answers": [ + "clothes", + "dress" + ], + "count": 3 + }, + { + "answers": [ + "장난감" + ], + "en_answers": [ + "toy" + ], + "count": 2 + }, + { + "answers": [ + "신발" + ], + "en_answers": [ + "shoes" + ], + "count": 1 + }, + { + "answers": [ + "간식" + ], + "en_answers": [ + "snack", + "refreshments", + "nosh" + ], + "count": 1 + }, + { + "answers": [ + "생일상", + "생일상차려줌.친구초청" + ], + "en_answers": [ + "setting up a birthday table. inviting friends" + ], + "count": 1 + }, + { + "answers": [ + "학용품" + ], + "en_answers": [ + "school supplices", + "stationery" + ], + "count": 1 + }, + { + "answers": [ + "돈" + ], + "en_answers": [ + "money", + "pocket money", + "allowance" + ], + "count": 1 + }, + { + "answers": [ + "자녀가 가지고 싶어하는 물건" + ], + "en_answers": [ + "items that children want to have" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-75": { + "question": "북한의 보통 가정은 보통 무엇을 타고 다니나요?", + "en_question": "What type of vehicle do most families in your country generally own?", + "annotations": [ + { + "answers": [ + "자전거" + ], + "en_answers": [ + "bicycle", + "bike" + ], + "count": 4 + }, + { + "answers": [ + "버스" + ], + "en_answers": [ + "bus" + ], + "count": 2 + }, + { + "answers": [ + "도보", + "걸어다닌다" + ], + "en_answers": [ + "on foot", + "walk" + ], + "count": 1 + }, + { + "answers": [ + "서비차", + "택시", + "써비차" + ], + "en_answers": [ + "service car" + ], + "count": 1 + }, + { + "answers": [ + "기차" + ], + "en_answers": [ + "train" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-77": { + "question": "북한에서는 이드 축제 때 어린이들에게 주로 무엇을 주나요?", + "en_question": "What is usually given to the children during Eid in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "idk": 1, + "no-answer": 0 + } + }, + "New-su-81": { + "question": "북한에서 신랑들은 결혼식에 보통 어떤 옷을 입나요?", + "en_question": "What clothes do grooms usually wear at weddings in your country?", + "annotations": [ + { + "answers": [ + "정장" + ], + "en_answers": [ + "suit" + ], + "count": 2 + }, + { + "answers": [ + "한복" + ], + "en_answers": [ + "hanbok", + "korean traditional clothes", + "korean traditional dress" + ], + "count": 2 + }, + { + "answers": [ + "양복" + ], + "en_answers": [ + "suit" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-82": { + "question": "북한에서 신부들은 결혼식에 보통 어떤 옷을 입나요?", + "en_question": "What clothes do brides usually wear at weddings in your country?", + "annotations": [ + { + "answers": [ + "한복" + ], + "en_answers": [ + "hanbok", + "korean traditional clothes", + "korean traditional dress" + ], + "count": 2 + }, + { + "answers": [ + "조선저고리", + "조선저고리(한복)", + "조선옷" + ], + "en_answers": [ + "hanbok", + "korean traditional clothes", + "korean traditional dress" + ], + "count": 2 + }, + { + "answers": [ + "정장" + ], + "en_answers": [ + "suit" + ], + "count": 1 + }, + { + "answers": [ + "드레스" + ], + "en_answers": [ + "dress", + "wedding dress" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-83": { + "question": "북한의 결혼식에서는 보통 어떤 음식을 먹나요?", + "en_question": "What food is usually served at weddings in your country?", + "annotations": [ + { + "answers": [ + "떡" + ], + "en_answers": [ + "rice cake", + "tteok" + ], + "count": 4 + }, + { + "answers": [ + "잔치국수", + "국수" + ], + "en_answers": [ + "noodles", + "banquet noodles" + ], + "count": 3 + }, + { + "answers": [ + "랭면" + ], + "en_answers": [ + "naengmyeon", + "naengmyŏn", + "cold noodles", + "korean cold noodles" + ], + "count": 1 + }, + { + "answers": [ + "농마국수" + ], + "en_answers": [ + "farm horse noodles" + ], + "count": 1 + }, + { + "answers": [ + "다양한 음식" + ], + "en_answers": [ + "various foods" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-86": { + "question": "북한에서 가장 이름 있는 국가 건물은 무엇입니까?", + "en_question": "What is the most famous government building in your country?", + "annotations": [ + { + "answers": [ + "인민대학습당" + ], + "en_answers": [ + "grand people's study hall" + ], + "count": 1 + }, + { + "answers": [ + "조선혁명박물관" + ], + "en_answers": [ + "korea revolutionary museum", + "museum of the korean revolution" + ], + "count": 1 + }, + { + "answers": [ + "금수산기념궁전" + ], + "en_answers": [ + "kumsusan palace of the sun", + "kumsusan memorial palace", + "mausoleum for kim il-sung", + "kumsusan assembly hall" + ], + "count": 1 + }, + { + "answers": [ + "금수산의사당" + ], + "en_answers": [ + "kumsusan palace of the sun", + "kumsusan memorial palace", + "mausoleum for kim il-sung", + "kumsusan assembly hall" + ], + "count": 1 + }, + { + "answers": [ + "당중앙위원회청사" + ], + "en_answers": [ + "the office building of the central committee of the wpk", + "the office building of the central committee of the party" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-88": { + "question": "북한의 젊은 층이 가장 좋아 하는 음악 종류는 무엇인가요?", + "en_question": "What is the most popular music genre among the younger population in your country?", + "annotations": [ + { + "answers": [ + "사이다" + ], + "en_answers": [ + "cider" + ], + "count": 1 + }, + { + "answers": [ + "한국음악/7080" + ], + "en_answers": [ + "korean music/7080" + ], + "count": 1 + }, + { + "answers": [ + "한국가요" + ], + "en_answers": [ + "korean pop music" + ], + "count": 1 + }, + { + "answers": [ + "영화음악" + ], + "en_answers": [ + "film music" + ], + "count": 1 + }, + { + "answers": [ + "남한 노래" + ], + "en_answers": [ + "south korean song" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-02": { + "question": "북한의 초급중학생들은 주로 몇 시에 집에 가나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)", + "en_question": "What time do middle school students in your country typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 2 + }, + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 2 + }, + { + "answers": [ + "16:00" + ], + "en_answers": [ + "16:00" + ], + "count": 1 + }, + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 1 + }, + { + "answers": [ + "19:00" + ], + "en_answers": [ + "19:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-03": { + "question": "북한 사람들은 보통 몇 살에 대학에 가나요? (아라비아 숫자(예: 12)만 기재해주세요.)", + "en_question": "At what age do people in your country typically go to university? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 4 + }, + { + "answers": [ + "27" + ], + "en_answers": [ + "27" + ], + "count": 1 + }, + { + "answers": [ + "17" + ], + "en_answers": [ + "17" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-06": { + "question": "북한에서 의무교육을 받아야 하는 나이는 몇 살부터인가요? (아라비아 숫자(예: 12)만 기재해주세요.)", + "en_question": "From what age do people need to attend compulsory education in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 4 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-09": { + "question": "북한에서 아이들은 일주일에 며칠 동안 학교에 가나요? (아라비아 숫자(0~7)만 기재해 주세요.)", + "en_question": "How many days a week do children attend school in your country? (Provide Arabic numerals (0~7) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-11": { + "question": "북한에서 준박사를 취득하는 데 보통 몇 년이 걸리나요? (아라비아 숫자(예: 12)만 기재해 주세요.)", + "en_question": "In your country, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-12": { + "question": "북한에서 가장 좋은 대학은 어디인가요? (공식 명칭을 제공해 주세요.)", + "en_question": "What is the top university in your country? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "김일성종합대학", + "김일성 종합대학 등" + ], + "en_answers": [ + "kim il-sung university" + ], + "count": 5 + }, + { + "answers": [ + "김정은국방종합대학" + ], + "en_answers": [ + "kim il-sung military university" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-13": { + "question": "대부분의 북한 사람들은 보통 몇 살에 대학(본과)을 졸업하나요? (아라비아 숫자(예: 12)만 기재해 주세요.)", + "en_question": "At what age do most people in your country graduate from university? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 4 + }, + { + "answers": [ + "23" + ], + "en_answers": [ + "23" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-15": { + "question": "북한의 아이들은 보통 몇 살에 초급중학교에 입학하나요? (아라비아 숫자(예: 12)만 기재해 주세요.)", + "en_question": "At what age do children in your country generally start middle school? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 2 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-17": { + "question": "북한의 로동자는 일주일에 보통 몇 시간을 일합니까? (아라비아 숫자(예: 12)만 기재해 주세요.)", + "en_question": "How many hours a week does a full-time worker in your country typically work? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "48" + ], + "en_answers": [ + "48" + ], + "count": 2 + }, + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 1 + }, + { + "answers": [ + "50" + ], + "en_answers": [ + "50" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-19": { + "question": "북한에서 로동자는 일주일에 며칠을 일합니까? (아라비아 숫자 (0~7)만 기재하세요.)", + "en_question": "How many days a week does a full-time worker work in your country? (Provide Arabic numerals (0~7) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-20": { + "question": "북한에서 대부분의 사람들은 몇 살에 일을 시작하나요? (아라비아 숫자(예: 12)만 기재해 주세요.)", + "en_question": "At what age do most people start working in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 3 + }, + { + "answers": [ + "17" + ], + "en_answers": [ + "17" + ], + "count": 1 + }, + { + "answers": [ + "19" + ], + "en_answers": [ + "19" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-21": { + "question": "북한에서는 몇 살부터 일을 할 수 있나요? (아라비아 숫자(예: 12)만 기재해 주세요.)", + "en_question": "From what age is an individual allowed to work in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 3 + }, + { + "answers": [ + "19" + ], + "en_answers": [ + "19" + ], + "count": 1 + } + ], + "idks": { + "부모의 판단에 의해 일을 시킴. 10살만 넘으면 일을 해야 한다고 생각": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-31": { + "question": "북한 사람들은 크리스마스 날에 무엇을 먹어 왔나요?", + "en_question": "What do people in your country traditionally eat on Christmas Day?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Ni-en-37": { + "question": "북한에서 사랑과 로맨스에 관련된 기념일의 이름은 무엇인가요?", + "en_question": "What is the name of the day of the year where people in your country celebrate love and romance?", + "annotations": [], + "idks": { + "not-applicable": 4, + "idk": 1, + "no-answer": 0 + } + }, + "Ni-en-40": { + "question": "북한 사람들이 가장 좋아 하는 크리스마스 노래는 무엇인가요?", + "en_question": "What is the most popular Christmas song in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Nu-in-04": { + "question": "북한 고급중학교는 1년에 몇 학기가 있나요? (아라비아 숫자(예: 7, 8)만 기재하십시오.)", + "en_question": "How many semesters are there each academic year at high schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-05": { + "question": "북한에서 새 학년은 보통 몇 월에 시작하나요? (아라비아 숫자(1~12)만 기재해 주세요.)", + "en_question": "In which month does the new school year typically begin in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-06": { + "question": "북한의 교육절은 언제인가요? (MM/DD 형식(예: 12/31)으로 제공하세요.)", + "en_question": "When is National Teacher's Day commemorated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "9.5" + ], + "en_answers": [ + "09/05" + ], + "count": 4 + }, + { + "answers": [ + "10월 05일" + ], + "en_answers": [ + "10/05" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-11": { + "question": "북한의 소학교는 주로 몇 시에 시작하나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)", + "en_question": "At what time does elementary school start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 3 + }, + { + "answers": [ + "08:30" + ], + "en_answers": [ + "08:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-20": { + "question": "북한의 아동절은 언제인가요? (MM/DD 형식(예: 12/31)으로 제공하세요.)", + "en_question": "When is Children's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "06/01", + "6.1" + ], + "en_answers": [ + "6/1" + ], + "count": 3 + }, + { + "answers": [ + "06/06", + "06월 06일", + "6.6" + ], + "en_answers": [ + "6/6" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-40": { + "question": "북한에서 사람들은 일자리를 찾기 위해 주로 어느 도시로 가나요?", + "en_question": "Which city is the main destination for job seekers in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Sa-en-1": { + "question": "북한에서 가장 좋아 하는 즉석음식 지점은 무엇입니까?", + "en_question": "What is your country's most popular fast food chain?", + "annotations": [ + { + "answers": [ + "시장", + "장마당" + ], + "en_answers": [ + "market", + "marketplace" + ], + "count": 2 + }, + { + "answers": [ + "매대" + ], + "en_answers": [ + "counter" + ], + "count": 1 + }, + { + "answers": [ + "평양광복지구 상업중심", + "평양광복지구상업중심" + ], + "en_answers": [ + "pyongyang liberation district commercial center" + ], + "count": 1 + }, + { + "answers": [ + "식당" + ], + "en_answers": [ + "restaurant" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Sa-en-13": { + "question": "북한에서 가장 맛있다거나 맛없다는 것이 명백하게 갈라지는 음식은 무엇인가요?", + "en_question": "What is the food that is most divisive (either love or hate) in your country?", + "annotations": [ + { + "answers": [ + "썩장" + ], + "en_answers": [ + "cheonggukjang", + "fast-fermented bean paste", + "rish soybean paste", + "fermented soybeans" + ], + "count": 1 + }, + { + "answers": [ + "지역마다 다름" + ], + "en_answers": [ + "varies by region" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-16": { + "question": "북한 사람들 사이에서 가장 이름 있는 축구단은 어디인가요?", + "en_question": "What is the most popular soccer team among the people from your country?", + "annotations": [ + { + "answers": [ + "4.25 체육단", + "4.25체육단" + ], + "en_answers": [ + "april 25 sports club", + "4.25 sc", + "april 25 national defence sports club" + ], + "count": 4 + }, + { + "answers": [ + "북한축구 국가대표팀", + "북한축구국가대표팀" + ], + "en_answers": [ + "north korea national football team", + "dprk national football team" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-22": { + "question": "체육으로 가장 유명한 북한의 대학은 어디인가요?", + "en_question": "What is the most famous university in your country known for its sports team?", + "annotations": [ + { + "answers": [ + "평양체육대학" + ], + "en_answers": [ + "pyongyang sports university", + "pyongyang sports college", + "pyongyang college of physical education" + ], + "count": 3 + }, + { + "answers": [ + "북한체육대학" + ], + "en_answers": [ + "dprk sports university", + "dprk sports college", + "dprk college of physical education" + ], + "count": 1 + }, + { + "answers": [ + "조선체육대학" + ], + "en_answers": [ + "joseon sports university", + "joseon sports college", + "joseon college of physical education", + "chosun sports university", + "chosun sports college", + "chosun college of physical education", + "dprk sports university", + "dprk sports college", + "dprk college of physical education" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-31": { + "question": "북한에서 가장 인기 있는 애완동물은 무엇인가요?", + "en_question": "What is your country's most popular family pet?", + "annotations": [ + { + "answers": [ + "강아지", + "개", + "개(강아지)" + ], + "en_answers": [ + "dog", + "puppy" + ], + "count": 5 + }, + { + "answers": [ + "고양이" + ], + "en_answers": [ + "cat", + "kitty" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-32": { + "question": "북한의 가정에서 가장 좋아 하는 텔레비죤 프로그람은 무엇인가요?", + "en_question": "What is the most popular family TV show in your country?", + "annotations": [ + { + "answers": [ + "텔레비죤연속극", + "텔레비전연속극" + ], + "en_answers": [ + "soap opera", + "drama", + "television drama", + "tv drama" + ], + "count": 2 + }, + { + "answers": [ + "아동영화" + ], + "en_answers": [ + "a film for school kids", + "film for children", + "children's film" + ], + "count": 1 + }, + { + "answers": [ + "어린이프로그람" + ], + "en_answers": [ + "children's program", + "program for hildren" + ], + "count": 1 + }, + { + "answers": [ + "국제체육경기대회 중계" + ], + "en_answers": [ + "international sports competition broadcast" + ], + "count": 1 + }, + { + "answers": [ + "영화" + ], + "en_answers": [ + "movie", + "film" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Sa-en-37": { + "question": "북한의 가정에서 가장 좋아 하는 놀이는 무엇인가요?", + "en_question": "What is the most popular family boardgame in your country?", + "annotations": [ + { + "answers": [ + "사사끼", + "주패치기", + "카드/주패", + "카드놀이" + ], + "en_answers": [ + "card game", + "trump", + "sasaki", + "playing cards" + ], + "count": 4 + }, + { + "answers": [ + "윷놀이" + ], + "en_answers": [ + "yunnori", + "yutnori", + "yut", + "nyout", + "yoot" + ], + "count": 3 + }, + { + "answers": [ + "꼬니놀이" + ], + "en_answers": [ + "kono" + ], + "count": 1 + }, + { + "answers": [ + "장기두기" + ], + "en_answers": [ + "janggi", + "korean chess" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-6": { + "question": "북한에서 가장 좋아 하는 포장 음식은 무엇입니까?", + "en_question": "What is the most popular takeaway food in your country?", + "annotations": [ + { + "answers": [ + "인조고기밥" + ], + "en_answers": [ + "synthetic meat rice" + ], + "count": 1 + }, + { + "answers": [ + "두부밥" + ], + "en_answers": [ + "tofu rice" + ], + "count": 1 + }, + { + "answers": [ + "떡" + ], + "en_answers": [ + "rice cake", + "tteok" + ], + "count": 1 + }, + { + "answers": [ + "음료" + ], + "en_answers": [ + "drink", + "beverage" + ], + "count": 1 + }, + { + "answers": [ + "커피" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-7": { + "question": "북한에서 좋아 하는 간식은 무엇인가요?", + "en_question": "What are popular snacks in your country?", + "annotations": [ + { + "answers": [ + "알사탕", + "사탕" + ], + "en_answers": [ + "jawbreaker", + "candy" + ], + "count": 3 + }, + { + "answers": [ + "과자" + ], + "en_answers": [ + "snack", + "cracker", + "cookie", + "biscuit" + ], + "count": 2 + }, + { + "answers": [ + "꽝튀기" + ], + "en_answers": [ + "bombardment" + ], + "count": 1 + }, + { + "answers": [ + "뻥튀기" + ], + "en_answers": [ + "puffed rice snack" + ], + "count": 1 + }, + { + "answers": [ + "붕어과자" + ], + "en_answers": [ + "fish-shaped bun" + ], + "count": 1 + }, + { + "answers": [ + "손가락과자" + ], + "en_answers": [ + "finger cookie", + "finger biscuit", + "finger-shaped cookie", + "finger-shaped biscuit" + ], + "count": 1 + }, + { + "answers": [ + "옥수수" + ], + "en_answers": [ + "corn" + ], + "count": 1 + }, + { + "answers": [ + "감자" + ], + "en_answers": [ + "potato" + ], + "count": 1 + }, + { + "answers": [ + "고구마" + ], + "en_answers": [ + "sweet potato" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-9": { + "question": "북한 사람들은 바다가에서 무엇을 먹나요?", + "en_question": "What do people from your country eat at the beach?", + "annotations": [ + { + "answers": [ + "생선" + ], + "en_answers": [ + "fish" + ], + "count": 1 + }, + { + "answers": [ + "김밥" + ], + "en_answers": [ + "gimbap", + "kimbap" + ], + "count": 1 + }, + { + "answers": [ + "조개구이" + ], + "en_answers": [ + "grilled clams" + ], + "count": 1 + }, + { + "answers": [ + "털게" + ], + "en_answers": [ + "crab" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-10": { + "question": "북한의 남자들은 보통 몇 살에 결혼하나요? (아라비아 숫자(예: 20)만 제공해 주세요.)", + "en_question": "At what age do men usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 3 + }, + { + "answers": [ + "27" + ], + "en_answers": [ + "27" + ], + "count": 2 + }, + { + "answers": [ + "28" + ], + "en_answers": [ + "28" + ], + "count": 2 + }, + { + "answers": [ + "26" + ], + "en_answers": [ + "26" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-11": { + "question": "북한의 여자들은 보통 몇 살에 결혼하나요? (아라비아 숫자(예: 20)만 제공해 주세요.)", + "en_question": "At what age do women usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "23" + ], + "en_answers": [ + "23" + ], + "count": 2 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 2 + }, + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 1 + }, + { + "answers": [ + "28" + ], + "en_answers": [ + "28" + ], + "count": 1 + }, + { + "answers": [ + "26" + ], + "en_answers": [ + "26" + ], + "count": 1 + }, + { + "answers": [ + "27" + ], + "en_answers": [ + "27" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-13": { + "question": "동무의 부모 시절에 북한의 평균 가족 식구는 몇 명이였나요? (아라비아 숫자(예: 20)만 제공해 주세요.)", + "en_question": "In your parents' generation, what was the average number of members in their family in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 4 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-17": { + "question": "올림픽 경기 중에서 북한에서 사람들이 가장 좋아 하는 경기는 무엇인가요?", + "en_question": "In the Olympic Games, which sport is the most popular in your country?", + "annotations": [ + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 3 + }, + { + "answers": [ + "력기", + "력기(역도)" + ], + "en_answers": [ + "weightlifting" + ], + "count": 1 + }, + { + "answers": [ + "탁구" + ], + "en_answers": [ + "table tennis", + "ping-pong" + ], + "count": 1 + }, + { + "answers": [ + "롱구" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "배구" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "활쏘기" + ], + "en_answers": [ + "archery" + ], + "count": 1 + }, + { + "answers": [ + "수영", + "수영 등" + ], + "en_answers": [ + "swimming", + "swim" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-21": { + "question": "북한에서 아이들은 보통 어디에서 축구를 하나요?", + "en_question": "Where do children usually play soccer in your country?", + "annotations": [ + { + "answers": [ + "운동장" + ], + "en_answers": [ + "playground", + "field", + "schoolyard" + ], + "count": 2 + }, + { + "answers": [ + "학교 운동장", + "학교운동장" + ], + "en_answers": [ + "playground", + "field", + "schoolyard", + "school playground" + ], + "count": 2 + }, + { + "answers": [ + "동네 마당" + ], + "en_answers": [ + "village square" + ], + "count": 1 + }, + { + "answers": [ + "가정", + "가정에서" + ], + "en_answers": [ + "home", + "at home" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-22": { + "question": "북한 여성들이 일상적으로 많이 하는 체육은 무엇인가요?", + "en_question": "Which daily exercise is popular among women in your country?", + "annotations": [ + { + "answers": [ + "율동체조" + ], + "en_answers": [ + "rhythmic gymnastics" + ], + "count": 2 + }, + { + "answers": [ + "인민보건체조" + ], + "en_answers": [ + "people's health exercise" + ], + "count": 1 + }, + { + "answers": [ + "그네뛰기" + ], + "en_answers": [ + "swing" + ], + "count": 1 + }, + { + "answers": [ + "배드민턴" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ta-pe-23": { + "question": "북한 남성들이 일상적으로 많이 하는 체육은 무엇인가요?", + "en_question": "Which daily exercise is popular among men in your country?", + "annotations": [ + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 3 + }, + { + "answers": [ + "배구" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "태권도" + ], + "en_answers": [ + "taekwondo", + "taekwon-do", + "tae kwon do", + "tae kwon-do", + "tae-kwon-do" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ta-pe-25": { + "question": "북한 국내 체육 련맹전에서 가장 경쟁을 많이 하는 체육단은 무엇인가요? (예: ___ 대 ___)", + "en_question": "What is the most famous rivalry in a national sports league in your country? (e.g., ___ vs ___)", + "annotations": [ + { + "answers": [ + "4.25 체육단 대 압록강 체육단", + "4.25체육단 대 압록강체육단" + ], + "en_answers": [ + "april 25 sports team vs. amnokgang sports team" + ], + "count": 2 + }, + { + "answers": [ + "압록강 대 4.25 체육단" + ], + "en_answers": [ + "amnokgang versus 4.25 sports club" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-29": { + "question": "북한에서 가장 돈 잘 버는 체육종목은 무엇인가요?", + "en_question": "Which professional sport is the highest paying in your country?", + "annotations": [ + { + "answers": [ + "개인종목" + ], + "en_answers": [ + "individual event" + ], + "count": 1 + }, + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 1 + }, + { + "answers": [ + "수중무용" + ], + "en_answers": [ + "underwater ballet" + ], + "count": 1 + }, + { + "answers": [ + "태권도" + ], + "en_answers": [ + "taekwondo", + "taekwon-do", + "tae kwon do", + "tae kwon-do", + "tae-kwon-do" + ], + "count": 1 + }, + { + "answers": [ + "롱구" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "탁구" + ], + "en_answers": [ + "table tennis", + "ping-pong" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-30": { + "question": "북한에서 가장 좋아 하는/좋아했던 체육 관련 텔레비죤 프로그람은 무엇인가요?", + "en_question": "What is/was the most popular sports-related TV program in your country?", + "annotations": [ + { + "answers": [ + "국제체육경기대회 중계" + ], + "en_answers": [ + "international sports competition broadcast" + ], + "count": 1 + }, + { + "answers": [ + "생중계 혹은 녹화 경기프로그램" + ], + "en_answers": [ + "live or recorded game program" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "Ta-pe-32": { + "question": "북한에서 보통 어떤 날에 불꽃놀이를 하나요?", + "en_question": "What day of the year is usually dedicated to fireworks in your country?", + "annotations": [ + { + "answers": [ + "설날" + ], + "en_answers": [ + "new year's day", + "lunar new year" + ], + "count": 1 + }, + { + "answers": [ + "국가 기념일 행사", + "국가기념행사일" + ], + "en_answers": [ + "national memorial day" + ], + "count": 1 + }, + { + "answers": [ + "김부자 생일" + ], + "en_answers": [ + "kim il-sung's birthday" + ], + "count": 1 + }, + { + "answers": [ + "전승기념일", + "전승기념일 등" + ], + "en_answers": [ + "v-day", + "anniversary of victory" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Ta-pe-37": { + "question": "북한에서 새해 전날(12/31) 하면 떠오르는 상징물건은 무엇인가요?", + "en_question": "What is the common symbol of New Year's Eve that is usually found in your country?", + "annotations": [ + { + "answers": [ + "폭죽" + ], + "en_answers": [ + "fireworks" + ], + "count": 1 + }, + { + "answers": [ + "청소" + ], + "en_answers": [ + "cleaning" + ], + "count": 1 + }, + { + "answers": [ + "김일성동상 헌화" + ], + "en_answers": [ + "laying flowers at the statue of kim il-sung" + ], + "count": 1 + }, + { + "answers": [ + "어린이 신년맞이 행사" + ], + "en_answers": [ + "children's new year's event" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ta-pe-42": { + "question": "북한 사람들은 보통 새해 전날에 무슨 음식을 먹나요?", + "en_question": "What food do people from your country usually eat on New Year's Eve?", + "annotations": [ + { + "answers": [ + "떡" + ], + "en_answers": [ + "rice cake", + "tteok" + ], + "count": 1 + }, + { + "answers": [ + "음식을 만들 준비로 다양한 음식을 먹음." + ], + "en_answers": [ + "eating a variety of foods in preparation for cooking." + ], + "count": 1 + }, + { + "answers": [ + "잡곡밥" + ], + "en_answers": [ + "japgokbap", + "multi-grain rice", + "steamed multigrain rice" + ], + "count": 1 + }, + { + "answers": [ + "보통날과 비슷하게" + ], + "en_answers": [ + "similar to an ordinary day" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ta-pe-45": { + "question": "북한에서는 동지에 주로 어떤 음식을 먹나요?", + "en_question": "What is usually eaten during the celebration of the longest night of the year in your country?", + "annotations": [ + { + "answers": [ + "동지팥죽", + "팥죽", + "동지죽/팥죽", + "동지죽" + ], + "en_answers": [ + "red bean porridge", + "winter solstice red bean porridge" + ], + "count": 5 + }, + { + "answers": [ + "송편떡" + ], + "en_answers": [ + "songpyeon", + "half-moon rice cake" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-01": { + "question": "북한에서 가장 좋아 하는 하계 체육종목은 무엇인가요?", + "en_question": "What is the most popular summer sport in your country?", + "annotations": [ + { + "answers": [ + "수영" + ], + "en_answers": [ + "swim", + "swimming" + ], + "count": 3 + }, + { + "answers": [ + "태권도" + ], + "en_answers": [ + "taekwondo", + "taekwon-do", + "tae kwon do", + "tae kwon-do", + "tae-kwon-do" + ], + "count": 1 + }, + { + "answers": [ + "배구" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "수중발레무용" + ], + "en_answers": [ + "artistic swimming" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-03": { + "question": "북한에서 가장 이름 있는 체육 련맹전은 무엇인가요?", + "en_question": "What is the most popular professional sports league in your country?", + "annotations": [ + { + "answers": [ + "공화국선수권대회" + ], + "en_answers": [ + "republic championship" + ], + "count": 1 + }, + { + "answers": [ + "전국씨름경기" + ], + "en_answers": [ + "national ssireum competition" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-05": { + "question": "북한에서 가장 이름있는 여자 체육단은 어디인가요?", + "en_question": "What is the most popular women's sports team in your country?", + "annotations": [ + { + "answers": [ + "여자축구단" + ], + "en_answers": [ + "women's soccer team" + ], + "count": 1 + }, + { + "answers": [ + "4.25체육단 여자배구팀" + ], + "en_answers": [ + "april 25 sports club women's volleyball team" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-09": { + "question": "북한에서 가장 이름 있는 체육 승자전(토나멘트)은 무엇인가요?", + "en_question": "What is the most popular tournament in your country?", + "annotations": [ + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 1 + }, + { + "answers": [ + "조선1부류축구련맹전" + ], + "en_answers": [ + "korean 1st division football league" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-11": { + "question": "북한에서 가장 좋아 하는 체육선수는 누구인가요?", + "en_question": "Who is the most popular sportperson in your country?", + "annotations": [ + { + "answers": [ + "박영순" + ], + "en_answers": [ + "yung-sun pak", + "pak yung-sun" + ], + "count": 4 + }, + { + "answers": [ + "정성옥" + ], + "en_answers": [ + "jong song-ok", + "song-ok jong" + ], + "count": 3 + }, + { + "answers": [ + "계순희" + ], + "en_answers": [ + "kye sun-hui", + "sun-hui kye" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-12": { + "question": "북한이 국제 대회에서 가장 좋은 점수를 받는 체육경기 종목은 무엇인가요?", + "en_question": "In which sport has your country been most successful in international competitions?", + "annotations": [ + { + "answers": [ + "력기", + "력기(역도)", + "역도" + ], + "en_answers": [ + "weightlifting" + ], + "count": 2 + }, + { + "answers": [ + "유도" + ], + "en_answers": [ + "judo" + ], + "count": 1 + }, + { + "answers": [ + "기계체조" + ], + "en_answers": [ + "artistic gymnastics" + ], + "count": 1 + }, + { + "answers": [ + "사격" + ], + "en_answers": [ + "shooting", + "shooting sports" + ], + "count": 1 + }, + { + "answers": [ + "마라손", + "마라톤" + ], + "en_answers": [ + "marathon" + ], + "count": 1 + }, + { + "answers": [ + "탁구" + ], + "en_answers": [ + "table tennis", + "ping-pong" + ], + "count": 1 + }, + { + "answers": [ + "배구" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-15": { + "question": "북한에서 좋아 하는 동계 체육종목은 무엇인가요?", + "en_question": "What is the most popular winter sport in your country?", + "annotations": [ + { + "answers": [ + "스케트", + "스케이트" + ], + "en_answers": [ + "skate", + "skating" + ], + "count": 3 + }, + { + "answers": [ + "스키" + ], + "en_answers": [ + "ski", + "skiing" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-19": { + "question": "경공업으로 유명한 북한의 도시나 지방은 어디인가요?", + "en_question": "What is a city or region in your country known for manufacturing industry?", + "annotations": [ + { + "answers": [ + "평양" + ], + "en_answers": [ + "pyongyang" + ], + "count": 3 + }, + { + "answers": [ + "라선" + ], + "en_answers": [ + "rasun", + "rason" + ], + "count": 1 + }, + { + "answers": [ + "평성" + ], + "en_answers": [ + "phyongsong" + ], + "count": 1 + }, + { + "answers": [ + "신의주" + ], + "en_answers": [ + "sinuiju" + ], + "count": 1 + }, + { + "answers": [ + "함흥" + ], + "en_answers": [ + "hamheung" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-21": { + "question": "북한에서 일반적으로 로동자들에게 주는 사회급양, 표창 및 휴양소 휴가 중 가장 중요하게 여기는 것은 무엇인가요?", + "en_question": "What is regarded as the most important perk typically offered to employees in your country?", + "annotations": [ + { + "answers": [ + "사회급양" + ], + "en_answers": [ + "social distribution" + ], + "count": 2 + }, + { + "answers": [ + "휴양소 휴가", + "휴양소휴가" + ], + "en_answers": [ + "resort vacation" + ], + "count": 1 + }, + { + "answers": [ + "표창 휴가", + "표창" + ], + "en_answers": [ + "commendation", + "citation" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-22": { + "question": "북한 력사상 경제가 가장 어려웠던 시기는 언제였나요?", + "en_question": "What was the most catastrophic economic period for your country?", + "annotations": [ + { + "answers": [ + "1995~99년", + "1995년~98년", + "1995", + "1990년대 말", + "94년 이후" + ], + "en_answers": [ + "1995~99", + "1995~98", + "1995", + "late 1990s", + "after 1994" + ], + "count": 5 + }, + { + "answers": [ + "고난의 행군" + ], + "en_answers": [ + "north korean famine", + "arduous march", + "march of suffering" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-24": { + "question": "북한에서 개발자와 새로 시작하는 공업이 많은 지역은 어디입니까?", + "en_question": "What region in your country is a major hub for tech workers and start ups?", + "annotations": [ + { + "answers": [ + "함경북도 라진" + ], + "en_answers": [ + "rajin", + "rajin district" + ], + "count": 1 + }, + { + "answers": [ + "평성" + ], + "en_answers": [ + "phyongsong" + ], + "count": 1 + }, + { + "answers": [ + "함흥" + ], + "en_answers": [ + "hamheung" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-27": { + "question": "북한에서 가장 중요한 공업은 무엇입니까?", + "en_question": "What is the most important industry in your country?", + "annotations": [ + { + "answers": [ + "군수공업", + "군수" + ], + "en_answers": [ + "munitions industry", + "armaments industry", + "war industry", + "military industry" + ], + "count": 2 + }, + { + "answers": [ + "비날론화학공업" + ], + "en_answers": [ + "vinalon", + "vinylon", + "vinalon chemical industry", + "vinylon chemical industry", + "vinalon industry", + "vinylon industry" + ], + "count": 1 + }, + { + "answers": [ + "철" + ], + "en_answers": [ + "iron", + "steel", + "iron and steel" + ], + "count": 1 + }, + { + "answers": [ + "철광업" + ], + "en_answers": [ + "steel industry", + "iron and steel industry" + ], + "count": 1 + }, + { + "answers": [ + "국방" + ], + "en_answers": [ + "national defense" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-35": { + "question": "북한에서 가족 식구들과 함께하는 식사는 대략 언제 하나요? (예: 아침, 점심, 저녁)", + "en_question": "Which one of the daily meals is commonly shared with family members in your country? (e.g., breakfast, lunch, dinner)", + "annotations": [ + { + "answers": [ + "아침" + ], + "en_answers": [ + "breakfast", + "morning" + ], + "count": 4 + }, + { + "answers": [ + "저녁" + ], + "en_answers": [ + "dinner", + "evening" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-36": { + "question": "북한에서 휴식일에 아이와 함께하는 많이 하는 가족 활동은 무엇인가요?", + "en_question": "What is a popular family activity with a child to do on weekends in your country?", + "annotations": [ + { + "answers": [ + "사사끼" + ], + "en_answers": [ + "card game", + "trump", + "sasaki", + "playing cards" + ], + "count": 1 + }, + { + "answers": [ + "실내에서 놀기", + "집 실내에서 놀아주기" + ], + "en_answers": [ + "playing indoors", + "playing indoors at home" + ], + "count": 1 + }, + { + "answers": [ + "장마당가기" + ], + "en_answers": [ + "go to the market", + "going to the market", + "market" + ], + "count": 1 + }, + { + "answers": [ + "터밭농사", + "텃밭농사" + ], + "en_answers": [ + "farming", + "gardening", + "tending vegetable gardens" + ], + "count": 1 + }, + { + "answers": [ + "영화보기" + ], + "en_answers": [ + "watching movie", + "movie" + ], + "count": 1 + }, + { + "answers": [ + "놀이장 구경" + ], + "en_answers": [ + "amusement park tour" + ], + "count": 1 + }, + { + "answers": [ + "바다구경", + "바다구경 등", + "해수욕장 체험" + ], + "en_answers": [ + "sea viewing, etc." + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-37": { + "question": "북한에서 사람들이 보통 부모로부터 따로 나는 나이는 몇 살인가요? (아라비아 숫자(예: 12)만 기재해 주세요.)", + "en_question": "At what age do children typically become independent from their parents in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "28" + ], + "en_answers": [ + "28" + ], + "count": 3 + }, + { + "answers": [ + "27" + ], + "en_answers": [ + "27" + ], + "count": 1 + }, + { + "answers": [ + "29" + ], + "en_answers": [ + "29" + ], + "count": 1 + }, + { + "answers": [ + "17" + ], + "en_answers": [ + "17" + ], + "count": 1 + }, + { + "answers": [ + "33" + ], + "en_answers": [ + "33" + ], + "count": 1 + }, + { + "answers": [ + "26" + ], + "en_answers": [ + "26" + ], + "count": 1 + }, + { + "answers": [ + "30이후" + ], + "en_answers": [ + "after 30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-38": { + "question": "북한에서 가장 중요한 가족 기념일은 무엇인가요?", + "en_question": "What is the most important family holiday in your country?", + "annotations": [ + { + "answers": [ + "본인생일", + "생일" + ], + "en_answers": [ + "birthday" + ], + "count": 2 + }, + { + "answers": [ + "부모님 생일", + "아버지 생일", + "아버지생일", + "어머니의 날" + ], + "en_answers": [ + "parent's birthday", + "parents' birthday", + "father's birthday", + "mother's day" + ], + "count": 2 + }, + { + "answers": [ + "추석" + ], + "en_answers": [ + "ch'usŏk", + "chuseok", + "korean thanksgiving day" + ], + "count": 1 + }, + { + "answers": [ + "부모님의 환갑" + ], + "en_answers": [ + "60th birthday", + "parents' 60th birthday" + ], + "count": 1 + }, + { + "answers": [ + "진갑잔치" + ], + "en_answers": [ + "61th birthday", + "61th birthday party", + "61th birthday celebration" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-39": { + "question": "북한에서 가족과 함께 하는 놀이 중 가장 좋아 하는 놀이는 무엇인가요?", + "en_question": "What is a popular family game in your country?", + "annotations": [ + { + "answers": [ + "윷놀이" + ], + "en_answers": [ + "yunnori", + "yutnori", + "yut", + "nyout", + "yoot" + ], + "count": 2 + }, + { + "answers": [ + "사사끼", + "주패 치기", + "카드(주패)놀이" + ], + "en_answers": [ + "card game", + "trump", + "sasaki", + "playing cards" + ], + "count": 2 + }, + { + "answers": [ + "꼬니놀이" + ], + "en_answers": [ + "kono" + ], + "count": 1 + }, + { + "answers": [ + "장기" + ], + "en_answers": [ + "janggi", + "korean chess" + ], + "count": 1 + }, + { + "answers": [ + "윷놀이", + "윷놀이 등" + ], + "en_answers": [ + "yunnori", + "yutnori", + "yut", + "nyout", + "yoot" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-41": { + "question": "북한에서 부부가 첫 아이를 갖는 평균 나이는 몇 살인가요? (아라비아 숫자(예: 12)만 기재해 주세요.)", + "en_question": "What is the average age for couples to have their first child in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 3 + }, + { + "answers": [ + "28" + ], + "en_answers": [ + "28" + ], + "count": 2 + }, + { + "answers": [ + "27" + ], + "en_answers": [ + "27" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-43": { + "question": "북한의 대부분 가정이 가지고 있는 자동차는 몇 대인가요? (아라비아 숫자(예: 12)만 기재해 주세요.)", + "en_question": "How many cars are owned by a typical family in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "0", + "자전거만 있음" + ], + "en_answers": [ + "0" + ], + "count": 3 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Th-en-44": { + "question": "북한에서 휴식날에 가족 식사로 주로 먹는 음식은 무엇인가요?", + "en_question": "What is your country's most popular food for family meals on weekends?", + "annotations": [ + { + "answers": [ + "밥", + "그냥 밥" + ], + "en_answers": [ + "just rice", + "rice" + ], + "count": 1 + }, + { + "answers": [ + "평일과 같음" + ], + "en_answers": [ + "same as weekdays", + "no difference" + ], + "count": 1 + }, + { + "answers": [ + "빵" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "순대" + ], + "en_answers": [ + "korean sausage", + "sundae", + "soondae" + ], + "count": 1 + }, + { + "answers": [ + "삶은 돼지고기" + ], + "en_answers": [ + "steamed pork meat", + "steamed pork", + "boiled pork", + "boiled pork meat" + ], + "count": 1 + }, + { + "answers": [ + "가족마다 지방마다 다름" + ], + "en_answers": [ + "it depends on families and regions", + "different from families and regions" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Th-en-45": { + "question": "북한에서 보통 가족끼리 주로 무엇을 하나요?", + "en_question": "What is the most popular weekday evening family activity in your country?", + "annotations": [ + { + "answers": [ + "대화" + ], + "en_answers": [ + "conversation", + "talk", + "talking", + "have a conversation", + "have a talk", + "chatter", + "chat" + ], + "count": 1 + }, + { + "answers": [ + "장마당장사" + ], + "en_answers": [ + "market trade", + "running markets", + "selling things in the market" + ], + "count": 1 + }, + { + "answers": [ + "텃밭농사" + ], + "en_answers": [ + "farming", + "gardening", + "tending vegetable gardens" + ], + "count": 1 + }, + { + "answers": [ + "음식료리" + ], + "en_answers": [ + "cook", + "cooking", + "cook foods" + ], + "count": 1 + }, + { + "answers": [ + "tv시청" + ], + "en_answers": [ + "watching tv", + "watching television", + "tv", + "television" + ], + "count": 1 + }, + { + "answers": [ + "영화보기", + "영화보기 등" + ], + "en_answers": [ + "watching movies", + "movies" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-48": { + "question": "북한 고급중학교에서 숙제와 시험 성적이 우수한 학생들에게 어떤 영예를 주는가요?", + "en_question": "What is the highest grade given to top-achieving high school students on assignments and exams in your country?", + "annotations": [ + { + "answers": [ + "표창장" + ], + "en_answers": [ + "award certificate", + "certificate of merit", + "certificate of commendation", + "certificate of award", + "commendation", + "award" + ], + "count": 3 + }, + { + "answers": [ + "7.15 최우등상", + "7.15최우등상" + ], + "en_answers": [ + "honor student award", + "an excellence award", + "the grand prize", + "the top prize", + "the first prize", + "7.15 honor student award", + "7.15 an excellence award", + "7.15 the grand prize", + "7.15 the top prize", + "7.15 the first prize", + "july 15th honor student award", + "july 15th an excellence award", + "july 15th the grand prize", + "july 15th the top prize", + "july 15th the first prize" + ], + "count": 1 + }, + { + "answers": [ + "대학입학" + ], + "en_answers": [ + "entrance into a university", + "university entrance", + "admission into a university", + "university admission" + ], + "count": 1 + }, + { + "answers": [ + "학생간부" + ], + "en_answers": [ + "student executive", + "student cadre" + ], + "count": 1 + }, + { + "answers": [ + "표창" + ], + "en_answers": [ + "commendation", + "award" + ], + "count": 1 + }, + { + "answers": [ + "평양견학" + ], + "en_answers": [ + "field trip to pyongyang", + "visit to pyongyang", + "pyongyang tour", + "pyongyang sightseeing" + ], + "count": 1 + }, + { + "answers": [ + "전적지 답사", + "전적지 답사 등" + ], + "en_answers": [ + "explore former battlefield", + "explore battle site", + "former battlefield exploration", + "battle sife exploration", + "visit battle site", + "visit former battlefield", + "visiting former battlefield", + "visiting battle site" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-49": { + "question": "북한의 고급중학교 학생들은 어떤 시험을 가장 중요하게 여기나요?", + "en_question": "What is considered the most important exam for high school students in your country?", + "annotations": [ + { + "answers": [ + "대학입학예비시험" + ], + "en_answers": [ + "university entrance examination", + "university entracne exam", + "college entrance examination", + "college entrance exam", + "korean sat test", + "korean sat" + ], + "count": 2 + }, + { + "answers": [ + "기말시험" + ], + "en_answers": [ + "final exam", + "term-end exam" + ], + "count": 1 + }, + { + "answers": [ + "학년말시험" + ], + "en_answers": [ + "an annual examination", + "a final examination", + "end-of-year examination", + "an annual exam", + "a final exam", + "end-of-year exam" + ], + "count": 1 + }, + { + "answers": [ + "대학예비시험" + ], + "en_answers": [ + "university entrance examination", + "university entracne exam", + "college entrance examination", + "college entrance exam", + "korean sat test", + "korean sat" + ], + "count": 1 + }, + { + "answers": [ + "수학" + ], + "en_answers": [ + "mathematics", + "math" + ], + "count": 1 + }, + { + "answers": [ + "국어" + ], + "en_answers": [ + "korean", + "north korean", + "munhwaeo" + ], + "count": 1 + }, + { + "answers": [ + "영어", + "영어 등 기본과목" + ], + "en_answers": [ + "english" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-51": { + "question": "북한에서 학생들은 어떤 과목을 가장 중요하게 여기나요?", + "en_question": "Which subject is considered the most important for students in your country?", + "annotations": [ + { + "answers": [ + "수학" + ], + "en_answers": [ + "mathematics", + "math" + ], + "count": 3 + }, + { + "answers": [ + "외국어" + ], + "en_answers": [ + "foreign language" + ], + "count": 2 + }, + { + "answers": [ + "혁명력사" + ], + "en_answers": [ + "kim il-sung hyukmyung history", + "kim il-sung revolutionary history", + "hyukmyung history", + "revolutionary history", + "history" + ], + "count": 1 + }, + { + "answers": [ + "김일성혁명력사" + ], + "en_answers": [ + "kim il-sung hyukmyung history", + "kim il-sung revolutionary history", + "hyukmyung history", + "revolutionary history", + "history" + ], + "count": 1 + }, + { + "answers": [ + "영어" + ], + "en_answers": [ + "english" + ], + "count": 1 + }, + { + "answers": [ + "정치사상과목", + "정치사상과목을 비롯한 기본과목" + ], + "en_answers": [ + "political thought", + "political philosophy", + "politics" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-53": { + "question": "북한의 학교에서 학생들이 가장 좋아 하는 학교 행사는 무엇인가요?", + "en_question": "What is the most popular extracurricular social event at schools in your country?", + "annotations": [ + { + "answers": [ + "체육대회" + ], + "en_answers": [ + "field day", + "sports day", + "athletic meet", + "sport event", + "athletic sports", + "school sports", + "sports meet", + "track meet", + "athletics competition" + ], + "count": 3 + }, + { + "answers": [ + "원족", + "원족 가는 날", + "원족(등산)가는날" + ], + "en_answers": [ + "trip", + "picnic", + "outing", + "excursion", + "going for a picnic" + ], + "count": 2 + }, + { + "answers": [ + "운동회" + ], + "en_answers": [ + "field day", + "sports day", + "athletic meet", + "sport event", + "athletic sports", + "school sports", + "sports meet", + "track meet", + "athletics competition" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-58": { + "question": "북한에서 대학에 입학하기 전 학생들이 배우는 수학 과목 중 가장 어려운 과목은 무엇인가요?", + "en_question": "What is the most advanced math subject learned before university in your country?", + "annotations": [ + { + "answers": [ + "대수" + ], + "en_answers": [ + "algebra" + ], + "count": 1 + }, + { + "answers": [ + "기하" + ], + "en_answers": [ + "geometry" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-01": { + "question": "북한의 대학생들은 보통 학기말 시험 공부를 어디에서 하나요?", + "en_question": "Where do university students in your country usually go to study for their final exams?", + "annotations": [ + { + "answers": [ + "교실", + "학교 교실", + "학교" + ], + "en_answers": [ + "classroom", + "school" + ], + "count": 4 + }, + { + "answers": [ + "집" + ], + "en_answers": [ + "home", + "at home" + ], + "count": 3 + }, + { + "answers": [ + "기숙사" + ], + "en_answers": [ + "dorm", + "dormitory" + ], + "count": 1 + }, + { + "answers": [ + "공원" + ], + "en_answers": [ + "park" + ], + "count": 1 + }, + { + "answers": [ + "대학" + ], + "en_answers": [ + "university", + "college" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-02": { + "question": "북한에서 대학교에 통학할 때 사람들은 모두 무엇을 타고 가나요?", + "en_question": "What is a common public transport that people use to go to university in your country?", + "annotations": [ + { + "answers": [ + "자전거" + ], + "en_answers": [ + "bicycle", + "bike", + "cycle" + ], + "count": 3 + }, + { + "answers": [ + "도보", + "걸어서 간다", + "걸어서" + ], + "en_answers": [ + "on foot", + "foot", + "afoot", + "walk", + "by walk", + "walking" + ], + "count": 3 + }, + { + "answers": [ + "버스" + ], + "en_answers": [ + "bus" + ], + "count": 2 + }, + { + "answers": [ + "지하철" + ], + "en_answers": [ + "subway" + ], + "count": 1 + }, + { + "answers": [ + "통근열차" + ], + "en_answers": [ + "train", + "by train", + "take the train", + "commute by train", + "commuter train" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-04": { + "question": "북한의 소학교 학생들은 수업 후에 보통 무엇을 하나요?", + "en_question": "What do elementary students in your country usually do after school?", + "annotations": [ + { + "answers": [ + "귀가", + "집으로 귀가", + "집 간다." + ], + "en_answers": [ + "going home", + "go home", + "come home", + "coming home", + "home", + "come home from school" + ], + "count": 2 + }, + { + "answers": [ + "농촌동원 및 다양한 동원" + ], + "en_answers": [ + "farm mobilization", + "farming mobilization", + "planting mobilization", + "mobilization" + ], + "count": 1 + }, + { + "answers": [ + "소년단조직생활" + ], + "en_answers": [ + "korean children's union", + "children's union", + "sonyundan" + ], + "count": 1 + }, + { + "answers": [ + "좋은 일하기운동" + ], + "en_answers": [ + "do-good-works movement" + ], + "count": 1 + }, + { + "answers": [ + "소조활동" + ], + "en_answers": [ + "club", + "group", + "club activity", + "group activity", + "small group activity" + ], + "count": 1 + }, + { + "answers": [ + "과외체육" + ], + "en_answers": [ + "extra pt class", + "extra pe class", + "private pt lesson", + "private pe lesson" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + } +} \ No newline at end of file diff --git a/data/annotations/Northern_Nigeria_data.json b/data/annotations/Northern_Nigeria_data.json new file mode 100644 index 0000000000000000000000000000000000000000..36cfeadf90578f3d972eeab84b11585de05b1aeb --- /dev/null +++ b/data/annotations/Northern_Nigeria_data.json @@ -0,0 +1,18196 @@ +{ + "Al-en-01": { + "question": "Menene abincin kayan fulawa na gama gari na makarantar reno na yara a Arewacin Najeriya?", + "en_question": "What is a common snack for preschool kids in your country?", + "annotations": [ + { + "answers": [ + "taliyar indomi", + "indomi", + "indomie" + ], + "en_answers": [ + "noodles" + ], + "count": 2 + }, + { + "answers": [ + "burodi" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "fanke" + ], + "en_answers": [ + "puff-puff" + ], + "count": 1 + }, + { + "answers": [ + "wainar fulawa" + ], + "en_answers": [ + "pancakes" + ], + "count": 1 + }, + { + "answers": [ + "kek", + "cake" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "cin cin" + ], + "en_answers": [ + "chin-chin" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-02": { + "question": "Menene shahararren abincin da ake ci da giya a Arewacin Najeriya?", + "en_question": "What is a popular food to go with beer in your country?", + "annotations": [], + "idks": { + "idk": 3, + "not-applicable": 2, + "no-answer": 0 + } + }, + "Al-en-04": { + "question": "Wane irin 'ya'yan itace ne yafi shahara a Arewacin Najeriya?", + "en_question": "What is the most popular fruit in your country?", + "annotations": [ + { + "answers": [ + "ayaba" + ], + "en_answers": [ + "banana" + ], + "count": 3 + }, + { + "answers": [ + "lemon zaki", + "lemon ɓawo", + "lemo" + ], + "en_answers": [ + "orange", + "orange" + ], + "count": 3 + }, + { + "answers": [ + "kankana" + ], + "en_answers": [ + "watermelon" + ], + "count": 2 + }, + { + "answers": [ + "mangwaro", + "mangoro" + ], + "en_answers": [ + "mango" + ], + "count": 2 + }, + { + "answers": [ + "dabino" + ], + "en_answers": [ + "date fruit" + ], + "count": 1 + }, + { + "answers": [ + "karas" + ], + "en_answers": [ + "carrot" + ], + "count": 1 + }, + { + "answers": [ + "ɗata" + ], + "en_answers": [ + "garden egg" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-06": { + "question": "Menene abinci na gama gari a gidan abinci na makaranta a Arewacin Najeriya?", + "en_question": "What is a common school cafeteria food in your country?", + "annotations": [ + { + "answers": [ + "shinkafa da wake" + ], + "en_answers": [ + "rice and beans" + ], + "count": 3 + }, + { + "answers": [ + "mitfai", + "meat pie" + ], + "en_answers": [ + "meat pie" + ], + "count": 1 + }, + { + "answers": [ + "cincin" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "shinkafa" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "shinkafa da miya" + ], + "en_answers": [ + "rice and sauce" + ], + "count": 1 + }, + { + "answers": [ + "taliya" + ], + "en_answers": [ + "spaghetti" + ], + "count": 1 + }, + { + "answers": [ + "awara" + ], + "en_answers": [ + "fried bean cake" + ], + "count": 1 + }, + { + "answers": [ + "wainar fulawa" + ], + "en_answers": [ + "flour cake" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-08": { + "question": "Wadanne ababan motsa baki ne na gama gari da ake ci a cikin shagunan sayayya a Arewacin Najeriya?", + "en_question": "What are the most commonly eaten snacks at shopping malls in your country?", + "annotations": [ + { + "answers": [ + "biskit" + ], + "en_answers": [ + "biscuit" + ], + "count": 3 + }, + { + "answers": [ + "alawa" + ], + "en_answers": [ + "candy" + ], + "count": 2 + }, + { + "answers": [ + "mitfai", + "meat pie" + ], + "en_answers": [ + "meat pie" + ], + "count": 1 + }, + { + "answers": [ + "cincin" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "gyada" + ], + "en_answers": [ + "groundnut" + ], + "count": 1 + }, + { + "answers": [ + "gyada mai gishiri" + ], + "en_answers": [ + "salted groundnuts" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-09": { + "question": "Menene abincin sha'awa da ake ci a wurin shakatawa a Arewacin Najeriya?", + "en_question": "What is a popular snack at an amusement park in your country?", + "annotations": [ + { + "answers": [ + "shawarma" + ], + "en_answers": [ + "shawarma" + ], + "count": 3 + }, + { + "answers": [ + "nama" + ], + "en_answers": [ + "meat" + ], + "count": 1 + }, + { + "answers": [ + "shinkafa" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "awara" + ], + "en_answers": [ + "fried bean cake" + ], + "count": 1 + }, + { + "answers": [ + "gurasa da nama" + ], + "en_answers": [ + "flatbread with meat" + ], + "count": 1 + }, + { + "answers": [ + "soyayyiyar shinkafa", + "fried rice" + ], + "en_answers": [ + "fried rice" + ], + "count": 1 + }, + { + "answers": [ + "kaza" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-16": { + "question": "A wane shekaru yara suke fara zuwa makarantar share-fagen shiga firamare a Arewacin Najeriya? (Ka bayar da lambobi na Larabci (misali, 12) kawai.)", + "en_question": "At what age do kids start preschool in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 3 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 2 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-17": { + "question": "Wane irin wasan motsa jiki ne yara ke yi bayan makaranta a makarantun firamare a Arewacin Najeriya?", + "en_question": "What is a popular afterschool sport for elementary schools in your country?", + "annotations": [ + { + "answers": [ + "ƙwallon ƙafa", + "kwallo", + "kwallon kafa" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "langa", + "wasan langa" + ], + "en_answers": [ + "to lick", + "stick game" + ], + "count": 3 + }, + { + "answers": [ + "tsere" + ], + "en_answers": [ + "race" + ], + "count": 1 + }, + { + "answers": [ + "yar gala gala" + ], + "en_answers": [ + "tall girl" + ], + "count": 1 + }, + { + "answers": [ + "yanta", + "yan ta" + ], + "en_answers": [ + "her children" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-18": { + "question": "Wane darasi ne daliban firamare ke samun ilimin kashin kansu a Arewacin Najeriya?", + "en_question": "For which subject do elementary students get private education in your country?", + "annotations": [ + { + "answers": [ + "hausa" + ], + "en_answers": [ + "hausa" + ], + "count": 2 + }, + { + "answers": [ + "lissafi" + ], + "en_answers": [ + "arithmetic" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Al-en-19": { + "question": "Wane sanannan yare ne yake a matsayin yare na biyu ga dalibai yan sakandare a Arewacin Najeriya?", + "en_question": "What is a popular second language for high school students in your country?", + "annotations": [ + { + "answers": [ + "hausa" + ], + "en_answers": [ + "hausa" + ], + "count": 2 + }, + { + "answers": [ + "turanci" + ], + "en_answers": [ + "english" + ], + "count": 2 + }, + { + "answers": [ + "larabci" + ], + "en_answers": [ + "arabic" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Al-en-21": { + "question": "Wane darasi ne mafi muhimmanci ga ilimin hazikai a Arewacin Najeriya?", + "en_question": "Which subject is the most important for gifted education in your country?", + "annotations": [ + { + "answers": [ + "ingilishi" + ], + "en_answers": [ + "english" + ], + "count": 1 + }, + { + "answers": [ + "taimakon juna" + ], + "en_answers": [ + "helping each other" + ], + "count": 1 + }, + { + "answers": [ + "lissafi" + ], + "en_answers": [ + "arithmetic" + ], + "count": 1 + }, + { + "answers": [ + "qur'ani" + ], + "en_answers": [ + "quran" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-32": { + "question": "Menene babban abincin godiya a Arewacin Najeriya?", + "en_question": "What is the main dish for Thanksgiving in your country?", + "annotations": [ + { + "answers": [ + "tuwon shinkafa miyan taushe" + ], + "en_answers": [ + "rice dumplings with pumpkin soup" + ], + "count": 1 + }, + { + "answers": [ + "tuwo" + ], + "en_answers": [ + "mashed food" + ], + "count": 1 + }, + { + "answers": [ + "fura" + ], + "en_answers": [ + "millet porridge" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "no-answer": 1, + "idk": 0 + } + }, + "Al-en-33": { + "question": "Me mutane ke yi don murnar Halloween a Arewacin Najeriya?", + "en_question": "What do people do to celebrate Halloween in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-34": { + "question": "Me mutane ke yi don murnar sabuwar shekara a Arewacin Najeriya?", + "en_question": "What do people do to celebrate New Year's Day in your country?", + "annotations": [ + { + "answers": [ + "hotona da rugunan sabuwar shekara" + ], + "en_answers": [ + "pictures and clothes of the new year" + ], + "count": 1 + }, + { + "answers": [ + "gaisuwa" + ], + "en_answers": [ + "greeting" + ], + "count": 1 + }, + { + "answers": [ + "sabon kaya" + ], + "en_answers": [ + "new clothes" + ], + "count": 1 + }, + { + "answers": [ + "hotona" + ], + "en_answers": [ + "pictures" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "no-answer": 1, + "idk": 0 + } + }, + "Al-en-35": { + "question": "Me mutane ke yi don murnar Kirsimeti a Arewacin Najeriya?", + "en_question": "What do people do to celebrate Christmas in your country?", + "annotations": [ + { + "answers": [ + "girka abinci" + ], + "en_answers": [ + "cooking food" + ], + "count": 1 + }, + { + "answers": [ + "cin abinci" + ], + "en_answers": [ + "eating food" + ], + "count": 1 + }, + { + "answers": [ + "haɗuwar iyali" + ], + "en_answers": [ + "family gathering" + ], + "count": 1 + }, + { + "answers": [ + "ziyara" + ], + "en_answers": [ + "visit" + ], + "count": 1 + }, + { + "answers": [ + "kwalliya" + ], + "en_answers": [ + "make-up" + ], + "count": 1 + }, + { + "answers": [ + "taron 'yan uwa" + ], + "en_answers": [ + "family gathering" + ], + "count": 1 + }, + { + "answers": [ + "girki" + ], + "en_answers": [ + "cooking" + ], + "count": 1 + }, + { + "answers": [ + "kyauta" + ], + "en_answers": [ + "gift" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "Al-en-36": { + "question": "Wane abinci ne ake dangantawa da Halloween a Arewacin Najeriya?", + "en_question": "What food is associated with Halloween in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-37": { + "question": "Wane abinci ne ake dangantawa da Kirsimeti a Arewacin Najeriya?", + "en_question": "What food is associated with Christmas in your country?", + "annotations": [ + { + "answers": [ + "nama" + ], + "en_answers": [ + "meat" + ], + "count": 3 + }, + { + "answers": [ + "kaji", + "kaza" + ], + "en_answers": [ + "chicken" + ], + "count": 2 + }, + { + "answers": [ + "shinkafa dafa duka", + "shinkafa dafa duka da nama", + "jalof" + ], + "en_answers": [ + "jollof rice" + ], + "count": 2 + }, + { + "answers": [ + "shinkafa" + ], + "en_answers": [ + "rice" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "Al-en-38": { + "question": "Wane abinci ne ake dangantawa da ranar soyayya a Arewacin Najeriya?", + "en_question": "What food is associated with Valentine's day in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-39": { + "question": "Me mutane ke ci a ranar haihuwarsu a Arewacin Najeriya?", + "en_question": "What do people eat on their birthday in your country?", + "annotations": [ + { + "answers": [ + "kek" + ], + "en_answers": [ + "cake" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 3, + "idk": 1, + "not-applicable": 0 + } + }, + "Al-en-40": { + "question": "Wane shahararre buɗaɗɗen wuri ne da iyalai ke zuwa don nishadi da kananan yara a Arewacin Najeriya?", + "en_question": "What is a popular outdoor place for families to have fun with little kids in your country?", + "annotations": [ + { + "answers": [ + "minjibir park" + ], + "en_answers": [ + "minjibir park" + ], + "count": 2 + }, + { + "answers": [ + "minjibir pack" + ], + "en_answers": [ + "minjibir package" + ], + "count": 1 + }, + { + "answers": [ + "gidan zoo" + ], + "en_answers": [ + "zoo" + ], + "count": 1 + }, + { + "answers": [ + "gidan kallo" + ], + "en_answers": [ + "cinema" + ], + "count": 1 + }, + { + "answers": [ + "yankari" + ], + "en_answers": [ + "yankari (refers to yankari national park or yankari game reserve)" + ], + "count": 1 + }, + { + "answers": [ + "filin idi" + ], + "en_answers": [ + "eid ground" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Al-en-43": { + "question": "Wanne ne aikin cikin gida da aka fi so ga iyali a Arewacin Najeriya?", + "en_question": "What is a popular indoor activity for families in your country?", + "annotations": [ + { + "answers": [ + "shara" + ], + "en_answers": [ + "sweep" + ], + "count": 4 + }, + { + "answers": [ + "girki" + ], + "en_answers": [ + "cooking" + ], + "count": 3 + }, + { + "answers": [ + "wanke-wanke", + "wanke wanke" + ], + "en_answers": [ + "dishes", + "doing dishes" + ], + "count": 3 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "An-ar-02": { + "question": "A ina daliban jami'a ke ci abincin rana a Arewacin Najeriya?", + "en_question": "Where do university students have lunch in your country?", + "annotations": [ + { + "answers": [ + "kafteriya", + "cafeterias" + ], + "en_answers": [ + "gidajen abinci", + "cafeteria" + ], + "count": 2 + }, + { + "answers": [ + "ƙaramar kasuwa", + "mini market" + ], + "en_answers": [ + "mini market" + ], + "count": 1 + }, + { + "answers": [ + "cikin makaranta" + ], + "en_answers": [ + "in school" + ], + "count": 1 + }, + { + "answers": [ + "teburin mai shayi" + ], + "en_answers": [ + "tea seller's table" + ], + "count": 1 + }, + { + "answers": [ + "gidan cin abinci" + ], + "en_answers": [ + "restaurant" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-03": { + "question": "Wane wata ne ake yawan shirya jarabawar karshe a makarantun sakandare a Arewacin Najeriya? (Ka bayar da lambobin Larabci (1~12) kawai.)", + "en_question": "Which month is the final exam term usually scheduled at high schools in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 4 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 2 + }, + { + "answers": [ + "7", + "da 7" + ], + "en_answers": [ + "7" + ], + "count": 2 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-08": { + "question": "Awanni nawa daliban makarantar sakandare a Arewacin Najeriya suke yi a makaranta a kowacce rana? (Ka bayar da lambobin Larabci a cikin gaba daya (0~24), ba tare da wani digo ba.)", + "en_question": "How many hours a day do students in your country usually spend at high school? (Provide Arabic numerals in integers (0~24), without any decimal points.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 3 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-09": { + "question": "Yaruka nawa dalibai ke karantawa a makarantun sakandare a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 5) kawai.)", + "en_question": "How many languages do students study at high school in your country? (Provide Arabic numerals (e.g., 5) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 2 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "An-ar-34": { + "question": "Wane wasa ne aka fi bugawa a matsayin tawaga a makarantun Arewacin Najeriya?", + "en_question": "What is the most popular sport played in a team at school in your country?", + "annotations": [ + { + "answers": [ + "ƙwallon ƙafa", + "kwallon kafa" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "ƙwallo", + "kwallo" + ], + "en_answers": [ + "ball" + ], + "count": 2 + }, + { + "answers": [ + "ƙwallon kwando", + "kwallon kwando" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-35": { + "question": "Wane ne mai sharhin wasanni mafi shahara a Arewacin Najeriya?", + "en_question": "Who is the most popular sport commentator in your country?", + "annotations": [ + { + "answers": [ + "aminu halilu tudunwada", + "babs shariff abdallah" + ], + "en_answers": [ + "aminu halilu tudunwada", + "babs shariff abdallah" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "An-ar-36": { + "question": "Wacce kungiyar wasanni ce mafi shahara a Arewacin Najeriya?", + "en_question": "What is the most popular sport team in your country?", + "annotations": [ + { + "answers": [ + "kano pillars", + "kano pillas" + ], + "en_answers": [ + "kano pillars" + ], + "count": 3 + }, + { + "answers": [ + "real madrid" + ], + "en_answers": [ + "real madrid" + ], + "count": 1 + }, + { + "answers": [ + "manchester united" + ], + "en_answers": [ + "manchester united" + ], + "count": 1 + }, + { + "answers": [ + "barcelona" + ], + "en_answers": [ + "barcelona" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-43": { + "question": "Wadanne wuraren taro ne mutane a Arewacin Najeriya sukan taru domin kallon watsa shirye-shiryen wasanni?", + "en_question": "What are the common places or venues where individuals in your country usually gather to watch sports broadcasts?", + "annotations": [ + { + "answers": [ + "gidan kallo" + ], + "en_answers": [ + "cinema" + ], + "count": 2 + }, + { + "answers": [ + "sitediyum", + "sitediyun" + ], + "en_answers": [ + "stadium", + "situation" + ], + "count": 2 + }, + { + "answers": [ + "sinima", + "cinema" + ], + "en_answers": [ + "sinima" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ca-sp-05": { + "question": "Abinci nawa mutanen Arewacin Najeriya ke ci a kowace rana? (Ka bayar da lambobi na Larabci (misali, 5) kawai.)", + "en_question": "How many meals per day do people from your country usually have? (Provide Arabic numerals (e.g., 5) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-06": { + "question": "Wane abinci ne mafi muhimmanci na rana ga mutanen Arewacin Najeriya?", + "en_question": "Which is the most important meal of the day to people from your country?", + "annotations": [ + { + "answers": [ + "shinkafa" + ], + "en_answers": [ + "rice" + ], + "count": 3 + }, + { + "answers": [ + "abincin dare" + ], + "en_answers": [ + "dinner" + ], + "count": 1 + }, + { + "answers": [ + "shinkafa da wake" + ], + "en_answers": [ + "rice and beans" + ], + "count": 1 + }, + { + "answers": [ + "dan wake" + ], + "en_answers": [ + "bean dumplings" + ], + "count": 1 + }, + { + "answers": [ + "tuwo" + ], + "en_answers": [ + "mashed food" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-08": { + "question": "Menene sinadaran da aka fi amfani da shi a abincin Arewacin Najeriya?", + "en_question": "What is the most common ingredient used in your country's diet?", + "annotations": [ + { + "answers": [ + "gishiri" + ], + "en_answers": [ + "salt" + ], + "count": 4 + }, + { + "answers": [ + "magi", + "maggi", + "magi" + ], + "en_answers": [ + "seasoning", + "water" + ], + "count": 4 + }, + { + "answers": [ + "daddawa" + ], + "en_answers": [ + "locust beans" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-09": { + "question": "Me mutanen Arewacin Najeriya suka saba ci a matsayin kayan zaki?", + "en_question": "What do people from your country usually eat for dessert?", + "annotations": [ + { + "answers": [ + "alkaki", + "alkali" + ], + "en_answers": [ + "biscuit", + "judge" + ], + "count": 3 + }, + { + "answers": [ + "dubulan", + "dubulan", + "dubbilan" + ], + "en_answers": [ + "two thousand", + "thousands" + ], + "count": 2 + }, + { + "answers": [ + "mazarƙwaila", + "mazankwaila" + ], + "en_answers": [ + "lollipop", + "banana hawkers" + ], + "count": 2 + }, + { + "answers": [ + "alawar madara" + ], + "en_answers": [ + "milk candy" + ], + "count": 1 + }, + { + "answers": [ + "rake" + ], + "en_answers": [ + "how much" + ], + "count": 1 + }, + { + "answers": [ + "alawowi" + ], + "en_answers": [ + "sweets" + ], + "count": 1 + }, + { + "answers": [ + "zobo" + ], + "en_answers": [ + "hibiscus tea" + ], + "count": 1 + }, + { + "answers": [ + "kunun aya" + ], + "en_answers": [ + "tiger nut milk" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-11": { + "question": "Wacce rana ce cikin mako mutane sukan shirya abincin iyali a Arewacin Najeriya?", + "en_question": "Which day of the week do people usually organize a family meal in your country?", + "annotations": [ + { + "answers": [ + "juma'a" + ], + "en_answers": [ + "friday" + ], + "count": 3 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Ca-sp-14": { + "question": "Wanne abin sha mai zafi ne yafi shahara abin sha a Arewacin Najeriya?", + "en_question": "Which is the most popular hot drink in your country?", + "annotations": [ + { + "answers": [ + "koko" + ], + "en_answers": [ + "pap" + ], + "count": 3 + }, + { + "answers": [ + "kunu" + ], + "en_answers": [ + "millet or sorghum porridge" + ], + "count": 3 + }, + { + "answers": [ + "shayi", + "shaye" + ], + "en_answers": [ + "drink", + "tea" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-19": { + "question": "Me matasa 'yan Arewacin Najeriya ke sha a kulob din dare?", + "en_question": "What do young people from your country usually drink at the night club?", + "annotations": [ + { + "answers": [ + "lemo" + ], + "en_answers": [ + "lemon" + ], + "count": 2 + }, + { + "answers": [ + "lemuka" + ], + "en_answers": [ + "messages" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "Ca-sp-21": { + "question": "A wane wata ne mutane sukan dauki hutu a Arewacin Najeriya? (Ka bayar da lambobi na Larabci (1~12) kawai.)", + "en_question": "At which month do people usually take holidays in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Ca-sp-29": { + "question": "Wane al'ada ake yi a Arewacin Najeriya don bikin dare na sabuwar shekara?", + "en_question": "What tradition is there in your country for New Year's Eve?", + "annotations": [ + { + "answers": [ + "kiɗa", + "kiɗa da waƙa" + ], + "en_answers": [ + "singing" + ], + "count": 1 + }, + { + "answers": [ + "waƙa", + "kiɗa da waƙa" + ], + "en_answers": [ + "dancing" + ], + "count": 1 + }, + { + "answers": [ + "gaɗa" + ], + "en_answers": [ + "bridge" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 1 + } + }, + "Ca-sp-38": { + "question": "Wane irin gida ne aka saba gina wa iyali a Arewacin Najeriya?", + "en_question": "Which is the typical type of house for a family in your country?", + "annotations": [ + { + "answers": [ + "gidan da babu bene" + ], + "en_answers": [ + "a house without a floor" + ], + "count": 1 + }, + { + "answers": [ + "gida mai bene" + ], + "en_answers": [ + "house with stair floor" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ca-sp-41": { + "question": "A ina tsofaffi da suka dogara da wasu suke fi zama a Arewacin Najeriya?", + "en_question": "Where do the dependent elderly usually live in your country?", + "annotations": [ + { + "answers": [ + "gidanjensu", + "gidanjen su", + "gidajensu" + ], + "en_answers": [ + "their houses" + ], + "count": 2 + }, + { + "answers": [ + "gidan 'ya 'yansu" + ], + "en_answers": [ + "their daughters' house" + ], + "count": 1 + }, + { + "answers": [ + "gidan ɗansu" + ], + "en_answers": [ + "their son's house" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ca-sp-42": { + "question": "Tsawon sati nawa ne lokacin hutun haihuwa a Arewacin Najeriya? (Ka bayar da lambobi na Larabci kawai (misali, 20).)", + "en_question": "How long (in weeks) is your country's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 2 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + }, + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-43": { + "question": "Tsawon makonni nawa ne hutun uba a Arewacin Najeriya? (Ka bayar da lambobi na Larabci kawai (misali, 20).)", + "en_question": "How long (in weeks) is your country's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "baa bayar wa" + ], + "en_answers": [ + "not given" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 1, + "no-answer": 1 + } + }, + "Ca-sp-45": { + "question": "Wane irin wuri ake zaba akai-akai don hutun iyali a Arewacin Najeriya?", + "en_question": "What type of destination is commonly chosen for a family vacation in your country?", + "annotations": [ + { + "answers": [ + "minjibir pack" + ], + "en_answers": [ + "minjibir package" + ], + "count": 1 + }, + { + "answers": [ + "parks" + ], + "en_answers": [ + "gardens" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Gu-ch-05": { + "question": "Wane irin wasanni ne tsofaffi suka fi so a Arewacin Najeriya?", + "en_question": "What sports do seniors like the most in your country?", + "annotations": [ + { + "answers": [ + "karta" + ], + "en_answers": [ + "cards" + ], + "count": 1 + }, + { + "answers": [ + "caca", + "cha cha" + ], + "en_answers": [ + "gambling" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-06": { + "question": "Wane irin wasanni ne maza suka fi so su yi a Arewacin Najeriya?", + "en_question": "What sports do men like to play the most in your country?", + "annotations": [ + { + "answers": [ + "ƙwallon ƙafa", + "kwallon kafa" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "ƙwallo", + "kwallo" + ], + "en_answers": [ + "ball" + ], + "count": 2 + }, + { + "answers": [ + "dambe" + ], + "en_answers": [ + "traditional wrestling" + ], + "count": 1 + }, + { + "answers": [ + "shaɗi" + ], + "en_answers": [ + "dye" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-07": { + "question": "Wane ne dan wasan ƙallon kwando mafi shahara a Arewacin Najeriya?", + "en_question": "Who is the most famous basketball player in your country?", + "annotations": [ + { + "answers": [ + "ahmad musa", + "ahmad musq" + ], + "en_answers": [ + "ahmad's toilet" + ], + "count": 1 + }, + { + "answers": [ + "lebron james" + ], + "en_answers": [ + "lebron james" + ], + "count": 1 + }, + { + "answers": [ + "michel jordan" + ], + "en_answers": [ + "michael jordan" + ], + "count": 1 + }, + { + "answers": [ + "braynt" + ], + "en_answers": [ + "brain" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-08": { + "question": "Wane wasa ne yafi shahara tsakanin yara a Arewacin Najeriya?", + "en_question": "What is the most popular sports among children in your country?", + "annotations": [ + { + "answers": [ + "ƙwallon ƙafa", + "kwallon kafa" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "ƙwallon", + "kwallo" + ], + "en_answers": [ + "ball" + ], + "count": 2 + }, + { + "answers": [ + "tammo" + ], + "en_answers": [ + "understanding" + ], + "count": 1 + }, + { + "answers": [ + "tsere" + ], + "en_answers": [ + "race" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-09": { + "question": "Wane irin wasanni mata suka fi so su yi a Arewacin Najeriya?", + "en_question": "What sports do women like to play the most in your country?", + "annotations": [ + { + "answers": [ + "yar gala-gala", + "yar gala gala" + ], + "en_answers": [ + "wandering girl", + "tall girl" + ], + "count": 2 + }, + { + "answers": [ + "rawa", + "rawa da waka" + ], + "en_answers": [ + "dance and song" + ], + "count": 1 + }, + { + "answers": [ + "waƙa", + "rawa da waka" + ], + "en_answers": [ + "singing" + ], + "count": 1 + }, + { + "answers": [ + "tammo" + ], + "en_answers": [ + "understanding" + ], + "count": 1 + }, + { + "answers": [ + "charafke" + ], + "en_answers": [ + "spoon" + ], + "count": 1 + }, + { + "answers": [ + "gaɗa" + ], + "en_answers": [ + "bridge" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-11": { + "question": "Wane wasan motsa jiki ne Arewacin Najeriya ta lashe lambobin zinare da yawa a gasar Olympics?", + "en_question": "What sports event has your country won the most gold medals at the Olympics?", + "annotations": [], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-15": { + "question": "Wane irin wasanni daliban jami'a maza suka fi so su yi a Arewacin Najeriya?", + "en_question": "What sports do male students in university like to play the most in your country?", + "annotations": [ + { + "answers": [ + "kwallon kafa", + "ƙwallon ƙafa", + "kwallon ƙafa" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "kwllon kwando", + "kwallon kwando" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-16": { + "question": "Mutane nawa ake da su a gidaje masu matsaikatan iyali a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 12) kawai.)", + "en_question": "How many people are there in a family on average in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 2 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Gu-ch-18": { + "question": "Yawanci, yara nawa ma'aurata kan haifa a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 12) kawai.)", + "en_question": "How many children do couples usually have in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 3 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 2 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Gu-ch-31": { + "question": "Menen tsawon shekarun karatun firamare Arewacin Najeriya? (Ka bayar da lambobin Larabci kawai (misali, 12).)", + "en_question": "What is the duration of elementary school in years in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 4 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 3 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-32": { + "question": "Menene tsawon shekarun karatun ilimin tilas a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 12) kawai.)", + "en_question": "What is the duration of compulsory education in years in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 2 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 2 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Gu-ch-33": { + "question": "A wane shekaru dalibai suke fara koyon harshe na biyu a Arewacin Najeriya? (Ka bayar da lambobi na Larabci (misali, 12) kawai.)", + "en_question": "From which age do students start learning their second language in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Gu-ch-38": { + "question": "Menene tsawon lokacin karatun digiri na farko a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 12) kawai.)", + "en_question": "What is the duration of undergraduate education in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 5 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 3 + }, + { + "answers": [ + "6", + "da 6" + ], + "en_answers": [ + "6" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-40": { + "question": "Wane lokaci daliban firamare masu kananan shekaru suke tashi daga makaranta a Arewacin Najeriya? (A bayar da shi a tsarin HH:MM misali, 18:00, 09:00).", + "en_question": "What time do younger elementary school students finish school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "13:00", + "01:00" + ], + "en_answers": [ + "13:00" + ], + "count": 4 + }, + { + "answers": [ + "12:00" + ], + "en_answers": [ + "12:00" + ], + "count": 2 + }, + { + "answers": [ + "13:30", + "01:30" + ], + "en_answers": [ + "13:30" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-41": { + "question": "Kayan kida nawa daliban firamare a Arewacin Najeriya suka saba bugawa? (Ka bayar da lambobi na Larabci (misali, 12) kawai.)", + "en_question": "How many musical instruments do elementary school students in your country typically play? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 1, + "no-answer": 1, + "idk": 1 + } + }, + "Ji-ko-02": { + "question": "Wacce rana ce mutanen Arewacin Najeriya suka fi son cin abincin dare na kamfani?", + "en_question": "What day of the week do people in your country prefer to have company dinners?", + "annotations": [ + { + "answers": [ + "lahadi" + ], + "en_answers": [ + "sunday" + ], + "count": 2 + }, + { + "answers": [ + "juma'a" + ], + "en_answers": [ + "friday" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "Ji-ko-03": { + "question": "Wane yanki/gari ne ke da yawan kamfanonin kudi mafi yawa a Arewacin Najeriya?", + "en_question": "Which region/city has the highest number of financial companies in your country?", + "annotations": [ + { + "answers": [ + "kano" + ], + "en_answers": [ + "kano" + ], + "count": 3 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-07": { + "question": "Wane kamfani mai zaman kansa ne yafi shahara a Arewacin Najeriya?", + "en_question": "What is the most famous private company in your country?", + "annotations": [ + { + "answers": [ + "dangote", + "kamfanin dangote", + "dangote group" + ], + "en_answers": [ + "wealthy", + "dangote company", + "dangote group" + ], + "count": 4 + }, + { + "answers": [ + "bua" + ], + "en_answers": [ + "four" + ], + "count": 2 + }, + { + "answers": [ + "mamuda" + ], + "en_answers": [ + "how much" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-08": { + "question": "Menene adadi mafi yawa na awannin da mutum zai iya aiki a sati a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 12) kawai.)", + "en_question": "What is the maximum number of hours one can work per week in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "45" + ], + "en_answers": [ + "45" + ], + "count": 1 + }, + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + }, + { + "answers": [ + "35" + ], + "en_answers": [ + "35" + ], + "count": 1 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-09": { + "question": "Me mutane ke ci lokacin taron kamfani a Arewacin Najeriya?", + "en_question": "What do people typically eat during company get-together in your country?", + "annotations": [ + { + "answers": [ + "shinkafa" + ], + "en_answers": [ + "rice" + ], + "count": 2 + }, + { + "answers": [ + "gurasa" + ], + "en_answers": [ + "flatbread" + ], + "count": 2 + }, + { + "answers": [ + "taliya" + ], + "en_answers": [ + "spaghetti" + ], + "count": 1 + }, + { + "answers": [ + "alala" + ], + "en_answers": [ + "pudding" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Ji-ko-14": { + "question": "Menene abun fitarwa waje da zai wakilci wannan yanki na Arewacin Najeriya?", + "en_question": "What is the representative export item of your country?", + "annotations": [ + { + "answers": [ + "riɗi" + ], + "en_answers": [ + "millet" + ], + "count": 2 + }, + { + "answers": [ + "zobo" + ], + "en_answers": [ + "hibiscus tea" + ], + "count": 1 + }, + { + "answers": [ + "auduga" + ], + "en_answers": [ + "cotton" + ], + "count": 1 + }, + { + "answers": [ + "gyada" + ], + "en_answers": [ + "groundnut" + ], + "count": 1 + }, + { + "answers": [ + "kayan abinci" + ], + "en_answers": [ + "food items" + ], + "count": 1 + }, + { + "answers": [ + "fatar dabbobi" + ], + "en_answers": [ + "animal skin" + ], + "count": 1 + }, + { + "answers": [ + "shinkafa" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "gero" + ], + "en_answers": [ + "millet" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-15": { + "question": "tsawon awa nawa ne lokacin hutun abinci na rana a Arewacin Najeriya? (Ka bayar da lambobin Larabci har zuwa wani wurin da ya kai digo daya (misali, 2, 3.5) kawai.)", + "en_question": "How long (in hours) is the typical lunch break in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "1", + "0.5", + "rabin awa" + ], + "en_answers": [ + "1", + "0.5" + ], + "count": 3 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Ji-ko-16": { + "question": "Ina ne iyaye mata suke zama na wani lokaci bayan haihuwa domin samun sauki a Arewacin Najeriya?", + "en_question": "Where do mothers stay for a certain period after childbirth for recovery in your country?", + "annotations": [ + { + "answers": [ + "gidan iyayensu", + "gidan su" + ], + "en_answers": [ + "their parents' house", + "their house" + ], + "count": 2 + }, + { + "answers": [ + "asibiti" + ], + "en_answers": [ + "hospital" + ], + "count": 1 + }, + { + "answers": [ + "gida" + ], + "en_answers": [ + "house" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-19": { + "question": "Wane irin fure ne aka fi bayarwa a matsayin kyauta a ranar iyaye a Arewacin Najeriya?", + "en_question": "What is your country's most commonly given flower on Parents' Day?", + "annotations": [], + "idks": { + "not-applicable": 3, + "idk": 2, + "no-answer": 0 + } + }, + "Ji-ko-22": { + "question": "Me mutane suka fi kashe albashin su na farko a ka a al'ummar Arewacin Najeriya?", + "en_question": "What do people especially spend their first salary on in your country's society?", + "annotations": [ + { + "answers": [ + "sadaka" + ], + "en_answers": [ + "charity" + ], + "count": 2 + }, + { + "answers": [ + "abinci" + ], + "en_answers": [ + "food" + ], + "count": 2 + }, + { + "answers": [ + "rabawa 'yan uwa" + ], + "en_answers": [ + "distribute to relatives" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-24": { + "question": "Wane irin wurin shakatawa ne yara suka fi so a Arewacin Najeriya?", + "en_question": "What is the most preferred recreational facility among children in your country?", + "annotations": [ + { + "answers": [ + "wajan wasa mai lilo", + "wurare masu lilo" + ], + "en_answers": [ + "playground with swings", + "tourist attractions" + ], + "count": 2 + }, + { + "answers": [ + "gidan zoo" + ], + "en_answers": [ + "zoo" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Ji-ko-25": { + "question": "Waɗanne ne hutun da suka shafi iyali a Arewacin Najeriya?", + "en_question": "What are the family-related holidays in your country?", + "annotations": [ + { + "answers": [ + "bikin sallah", + "sallah", + "sallah da kirismeti" + ], + "en_answers": [ + "eid celebration", + "eid and christmas" + ], + "count": 3 + }, + { + "answers": [ + "bikin kirsimeti", + "kirismeti", + "sallah da kirismeti" + ], + "en_answers": [ + "christmas celebration" + ], + "count": 2 + }, + { + "answers": [ + "karshen shekara" + ], + "en_answers": [ + "end of the year" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "Ji-ko-26": { + "question": "Menene manyan matakan da suka shafi 'yancin yara daga iyayensu a al'ummar Arewacin Najeriya?", + "en_question": "What are the key milestones associated with children's independence from their parents in your country's society?", + "annotations": [], + "idks": { + "not-applicable": 3, + "no-answer": 1, + "idk": 1 + } + }, + "Ji-ko-27": { + "question": "Menene kyautar da aka saba bayarwa idan zaka ziyarci iyaye tsofaffi a Arewacin Najeriya?", + "en_question": "What is the common gift you give when visiting elderly parents in your country?", + "annotations": [ + { + "answers": [ + "goro" + ], + "en_answers": [ + "kola nut" + ], + "count": 4 + }, + { + "answers": [ + "kudi" + ], + "en_answers": [ + "money" + ], + "count": 2 + }, + { + "answers": [ + "burodi" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "kayan shayi" + ], + "en_answers": [ + "tea ingredients" + ], + "count": 1 + }, + { + "answers": [ + "kayan sawa" + ], + "en_answers": [ + "clothes" + ], + "count": 1 + }, + { + "answers": [ + "atamfa" + ], + "en_answers": [ + "fabric" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-28": { + "question": "Yaushe ne rana ta farko da mutane ke murnar haihuwar yaro a Arewacin Najeriya?", + "en_question": "When is the first day that people celebrate after a child is born in your country?", + "annotations": [ + { + "answers": [ + "ranar suna" + ], + "en_answers": [ + "naming ceremony" + ], + "count": 2 + }, + { + "answers": [ + "bayan kwana bakwai", + "7" + ], + "en_answers": [ + "after seven days" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-29": { + "question": "Wane shekarun haihuwa ake bikin su mafi girma a al'ummar Arewacin Najeriya?", + "en_question": "Which age's birthday is celebrated the most grandly in your country's society?", + "annotations": [ + { + "answers": [ + "shekara ɗaya" + ], + "en_answers": [ + "one year" + ], + "count": 1 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "maulidi" + ], + "en_answers": [ + "mawlid (celebration of the birth of prophet muhammad)" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-31": { + "question": "A ina daliban makarantar sakandare da manyan makarantu a Arewacin Najeriya sukan yi karantun jarrabawa?", + "en_question": "Where do middle and high school students in your country usually study for exams?", + "annotations": [ + { + "answers": [ + "ɗakin karatu", + "dakin karatu", + "library" + ], + "en_answers": [ + "library", + "dakin karatu" + ], + "count": 4 + }, + { + "answers": [ + "gida", + "a gida" + ], + "en_answers": [ + "house", + "at home" + ], + "count": 3 + }, + { + "answers": [ + "makaranta" + ], + "en_answers": [ + "school" + ], + "count": 1 + }, + { + "answers": [ + "ajujuwa" + ], + "en_answers": [ + "classrooms" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-33": { + "question": "Ina daliban makarantar sakandare a Arewacin Najeriya sukan je bayan cin abincin dare?", + "en_question": "Where do high school students in your country usually go after dinner?", + "annotations": [ + { + "answers": [ + "komawa aji", + "aji" + ], + "en_answers": [ + "return to class", + "class" + ], + "count": 2 + }, + { + "answers": [ + "gida" + ], + "en_answers": [ + "house" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Ji-ko-34": { + "question": "Ta yaya daliban firamare a Arewacin Najeriya ke zuwa makaranta?", + "en_question": "How do elementary school students in your country go to school?", + "annotations": [ + { + "answers": [ + "da ƙafa", + "tafiya da ƙafa", + "a kafa", + "tafiyar kafa", + "ƙafa" + ], + "en_answers": [ + "on foot", + "walking", + "foot journey", + "leg" + ], + "count": 5 + }, + { + "answers": [ + "a mota", + "mota" + ], + "en_answers": [ + "in a car", + "car" + ], + "count": 2 + }, + { + "answers": [ + "abun hawa", + "amfani da abin hawa" + ], + "en_answers": [ + "vehicle", + "using a vehicle" + ], + "count": 2 + }, + { + "answers": [ + "keke" + ], + "en_answers": [ + "bicycle" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-35": { + "question": "Menene nau'in ilimin kudi da aka fi samu a Arewacin Najeriya?", + "en_question": "What is the most common form of private education in your country?", + "annotations": [ + { + "answers": [ + "naurar cire kuɗi", + "pos" + ], + "en_answers": [ + "well" + ], + "count": 2 + }, + { + "answers": [ + "banki" + ], + "en_answers": [ + "bank" + ], + "count": 1 + }, + { + "answers": [ + "atm" + ], + "en_answers": [ + "automated teller machine" + ], + "count": 1 + }, + { + "answers": [ + "ilimin boko" + ], + "en_answers": [ + "western education" + ], + "count": 1 + }, + { + "answers": [ + "kasuwanci" + ], + "en_answers": [ + "business" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-36": { + "question": "Wane darasin akademi/ma'aikatar ilimi masu zaman kansu ne daliban sakandare ko masu matsakaicin karatu suka fi halarta a Arewacin Najeriya?", + "en_question": "Which subject’s academy/private educational institute do middle or high students most frequently attend in your country?", + "annotations": [ + { + "answers": [ + "kimiyya" + ], + "en_answers": [ + "science" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Ji-ko-37": { + "question": "Wane irin tufafi daliban makarantar sakandare ke sakawa zuwa makaranta a Arewacin Najeriya?", + "en_question": "What type of clothing do middle and high school students wear to school in your country?", + "annotations": [ + { + "answers": [ + "fari" + ], + "en_answers": [ + "white" + ], + "count": 1 + }, + { + "answers": [ + "shuɗi" + ], + "en_answers": [ + "blue" + ], + "count": 1 + }, + { + "answers": [ + "kayan makaranta" + ], + "en_answers": [ + "school uniform" + ], + "count": 1 + }, + { + "answers": [ + "farara jumper da wando" + ], + "en_answers": [ + "white jumper and trousers" + ], + "count": 1 + }, + { + "answers": [ + "yadi" + ], + "en_answers": [ + "cloth" + ], + "count": 1 + }, + { + "answers": [ + "riga" + ], + "en_answers": [ + "clothes" + ], + "count": 1 + }, + { + "answers": [ + "wando" + ], + "en_answers": [ + "trousers" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-38": { + "question": "Wane fanni ake ganin yafi wuya a samu shiga a Arewacin Najeriya?", + "en_question": "Which major is considered the most difficult to gain admission to in your country?", + "annotations": [ + { + "answers": [ + "fannin lafiya" + ], + "en_answers": [ + "health sector" + ], + "count": 1 + }, + { + "answers": [ + "likitanci" + ], + "en_answers": [ + "medicine" + ], + "count": 1 + }, + { + "answers": [ + "jami'a", + "university" + ], + "en_answers": [ + "jami'a" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Ji-ko-39": { + "question": "Wane kayan kida ne daliban firamare suka fi koyon amfani da shi a Arewacin Najeriya?", + "en_question": "What is the most commonly learned musical instrument by elementary school students in your country?", + "annotations": [ + { + "answers": [ + "ganga" + ], + "en_answers": [ + "drum" + ], + "count": 3 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "Ji-ko-40": { + "question": "Me daliban sakandire ke yi a lokacin hutu a makarantun Arewacin Najeriya?", + "en_question": "What do high school students typically do during break time in schools in your country?", + "annotations": [ + { + "answers": [ + "wasa" + ], + "en_answers": [ + "play" + ], + "count": 1 + }, + { + "answers": [ + "kalon tv" + ], + "en_answers": [ + "watching tv" + ], + "count": 1 + }, + { + "answers": [ + "kasuwanci" + ], + "en_answers": [ + "business" + ], + "count": 1 + }, + { + "answers": [ + "ziyara" + ], + "en_answers": [ + "visit" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-41": { + "question": "Wane irin takalma dalibai ke sakawa a makarantun Arewacin Najeriya?", + "en_question": "What kind of shoes do students wear in schools in your country?", + "annotations": [ + { + "answers": [ + "sandal" + ], + "en_answers": [ + "takalmi" + ], + "count": 2 + }, + { + "answers": [ + "sauciki" + ], + "en_answers": [ + "easy" + ], + "count": 1 + }, + { + "answers": [ + "sauciki", + "sau ciki" + ], + "en_answers": [ + "times" + ], + "count": 1 + }, + { + "answers": [ + "kambas" + ], + "en_answers": [ + "canvas" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-42": { + "question": "Wadanne darussa ne ake bukata a jarrabawar shiga jami'a a Arewacin Najeriya?", + "en_question": "What are the required subjects in your country's university entrance exam?", + "annotations": [ + { + "answers": [ + "lissafi", + "mathematics" + ], + "en_answers": [ + "arithmetic", + "lissafi" + ], + "count": 3 + }, + { + "answers": [ + "ingilishi", + "turanci", + "english" + ], + "en_answers": [ + "english" + ], + "count": 3 + }, + { + "answers": [ + "waec" + ], + "en_answers": [ + "west african examinations council" + ], + "count": 1 + }, + { + "answers": [ + "jamb" + ], + "en_answers": [ + "entrance exam" + ], + "count": 1 + }, + { + "answers": [ + "neco" + ], + "en_answers": [ + "national examinations council" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-44": { + "question": "Wane yanki (a cikin gari) a Arewacin Najeriya yake da mafi yawan masu sha'awar karatu?", + "en_question": "Which region (within a city) in your country has the highest academic fervor?", + "annotations": [ + { + "answers": [ + "kano" + ], + "en_answers": [ + "kano" + ], + "count": 2 + }, + { + "answers": [ + "kaduna" + ], + "en_answers": [ + "kaduna" + ], + "count": 2 + }, + { + "answers": [ + "katsina" + ], + "en_answers": [ + "katsina" + ], + "count": 1 + }, + { + "answers": [ + "bauchi" + ], + "en_answers": [ + "bauchi" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ji-ko-45": { + "question": "Me mutane suka fi tsammanin gani a bikin jami'o'i a Arewacin Najeriya?", + "en_question": "What do people look forward to the most at university festivals in your country?", + "annotations": [ + { + "answers": [ + "ɗalibai" + ], + "en_answers": [ + "students" + ], + "count": 2 + }, + { + "answers": [ + "dalibai masu hazaƙa", + "dalibai masu hazaka" + ], + "en_answers": [ + "brilliant students" + ], + "count": 1 + }, + { + "answers": [ + "masu gadi" + ], + "en_answers": [ + "security guards" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Jo-sp-01": { + "question": "Menene wasa na biyun shahara a Arewacin Najeriya?", + "en_question": "What is the second most popular sport in your country?", + "annotations": [ + { + "answers": [ + "hawan doki" + ], + "en_answers": [ + "horse riding" + ], + "count": 2 + }, + { + "answers": [ + "langa" + ], + "en_answers": [ + "to lick" + ], + "count": 1 + }, + { + "answers": [ + "odi odi" + ], + "en_answers": [ + "greetings" + ], + "count": 1 + }, + { + "answers": [ + "dambe" + ], + "en_answers": [ + "traditional wrestling" + ], + "count": 1 + }, + { + "answers": [ + "kwallon kwando" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-02": { + "question": "Menene wasan da aka fi bugawa ba tare da kwallo ba a Arewacin Najeriya?", + "en_question": "What is the most popular sport played without a ball in your country?", + "annotations": [ + { + "answers": [ + "langa" + ], + "en_answers": [ + "to lick" + ], + "count": 2 + }, + { + "answers": [ + "odi-odi" + ], + "en_answers": [ + "greeting" + ], + "count": 1 + }, + { + "answers": [ + "dambe" + ], + "en_answers": [ + "traditional wrestling" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-09": { + "question": "Waɗanne wasanni ne aka fi danganta su da masu kudi a Arewacin Najeriya?", + "en_question": "What sports are most associated with the upper class in your country?", + "annotations": [ + { + "answers": [ + "hawan doki" + ], + "en_answers": [ + "horse riding" + ], + "count": 2 + }, + { + "answers": [ + "ƙwallo", + "kwollo" + ], + "en_answers": [ + "ball" + ], + "count": 1 + }, + { + "answers": [ + "ƙwallon doki", + "kwallon doki" + ], + "en_answers": [ + "horse ball" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-13": { + "question": "Wane irin wasan ruwa ne yafi shahara a Arewacin Najeriya?", + "en_question": "What is the most popular water sport in your country?", + "annotations": [ + { + "answers": [ + "wakan kogi", + "iyo", + "tseren ruwa" + ], + "en_answers": [ + "river song", + "swimming", + "swimming race" + ], + "count": 3 + }, + { + "answers": [ + "tsere" + ], + "en_answers": [ + "race" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-14": { + "question": "Menene wasan kwakwalwa da yafi shahara a Arewacin Najeriya?", + "en_question": "What is the most popular mental sport in your country?", + "annotations": [ + { + "answers": [ + "whot" + ], + "en_answers": [ + "cards" + ], + "count": 1 + }, + { + "answers": [ + "ludo" + ], + "en_answers": [ + "ludo" + ], + "count": 1 + }, + { + "answers": [ + "kacici-kacici" + ], + "en_answers": [ + "riddle" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Jo-sp-18": { + "question": "Nawa ne yawan kwanakin hutu da ma'aikaci yake samu a shekara a Arewacin Najeriya? (Ka bayar da lambobi na Larabci (misali, 12) kawai.)", + "en_question": "How many holiday days per year does a standard worker gets in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 2 + }, + { + "answers": [ + "90" + ], + "en_answers": [ + "90" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-19": { + "question": "Wane yanki a Arewacin Najeriya aka saba dangantawa da aikin gona?", + "en_question": "What region in your country has been traditionally associated with agriculture?", + "annotations": [ + { + "answers": [ + "jigawa" + ], + "en_answers": [ + "dry or parched" + ], + "count": 2 + }, + { + "answers": [ + "kano" + ], + "en_answers": [ + "kano" + ], + "count": 1 + }, + { + "answers": [ + "kaduna" + ], + "en_answers": [ + "kaduna" + ], + "count": 1 + }, + { + "answers": [ + "adamawa" + ], + "en_answers": [ + "adamawa" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Jo-sp-21": { + "question": "Wane lokaci, idan akwai, mutane sukan bar aiki don zuwa cin abincin rana a Arewacin Najeriya? (A bayar a tsarin HH:MM misali, 18:00, 09:00).", + "en_question": "What time, if any, do people usually leave work for lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 4 + }, + { + "answers": [ + "14:00", + "02:00" + ], + "en_answers": [ + "14:00" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-31": { + "question": "Wane lokaci daliban makarantar sakandare ke tafiya gida a Arewacin Najeriya? (A bayar da shi a tsarin HH:MM misali, 18:00, 09:00).", + "en_question": "What time do high school students tend to leave school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 2 + }, + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 2 + }, + { + "answers": [ + "14:00", + "02:00" + ], + "en_answers": [ + "14:00" + ], + "count": 1 + }, + { + "answers": [ + "13:30" + ], + "en_answers": [ + "13:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-32": { + "question": "Wane irin wasanni daliban firamare ke yi a makarantu a Arewacin Najeriya?", + "en_question": "What sport do elementary school students tend to practice at school in your country?", + "annotations": [ + { + "answers": [ + "ƙwallon ƙafa", + "kwallon kafa", + "ƙwallon", + "kwollo" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "tsere", + "wasan gudu" + ], + "en_answers": [ + "race", + "running game" + ], + "count": 2 + }, + { + "answers": [ + "tammo" + ], + "en_answers": [ + "understanding" + ], + "count": 1 + }, + { + "answers": [ + "hawa lilo" + ], + "en_answers": [ + "riding a bicycle" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-36": { + "question": "Tsawon makonni nawa ne hutun bazara a makarantun firamare a Arewacin Najeriya? (A bayar da amsa cikin lambobin Larabci kawai (misali, 7, 8).)", + "en_question": "How long (in weeks) are summer vacations at elementary schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 3 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-37": { + "question": "Tsawon makonni nawa ne hutun bazara a jami'o'in Arewacin Najeriya? (A bayar da amsa cikin lambobin Larabci kawai (misali, 7, 8).)", + "en_question": "How long (in weeks) are summer vacations at universities in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 2 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-39": { + "question": "A wane shekaru ne ake fara karatun firamare a Arewacin Najeriya? (A bayar da amsa cikin lambobin Larabci kawai (misali, 7, 8).)", + "en_question": "At what age does elementary education begin in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 3 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 3 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jo-sp-43": { + "question": "Yaruka nawa ake karantawa a ilimin firamare bayan harshen hukuma na Arewacin Najeriya? (A bayar da amsa a lambobin Larabci kawai (misali, 7, 8).)", + "en_question": "How many languages are studied in elementary education besides your country's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 4 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-01": { + "question": "Wadanne kayan cin abinci ne mutane suka fi amfani da su a Arewacin Najeriya?", + "en_question": "What eating utensils do people commonly used in your country?", + "annotations": [ + { + "answers": [ + "shinkafa" + ], + "en_answers": [ + "rice" + ], + "count": 4 + }, + { + "answers": [ + "masara" + ], + "en_answers": [ + "corn" + ], + "count": 3 + }, + { + "answers": [ + "wake", + "waki" + ], + "en_answers": [ + "beans", + "armpit" + ], + "count": 3 + }, + { + "answers": [ + "taliya" + ], + "en_answers": [ + "spaghetti" + ], + "count": 1 + }, + { + "answers": [ + "gero" + ], + "en_answers": [ + "millet" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-04": { + "question": "Wane irin abin sha mai sanyi mutane ke so su sha a Arewacin Najeriya?", + "en_question": "What soft drink do people in your country like to have?", + "annotations": [ + { + "answers": [ + "zoɓo", + "zobo" + ], + "en_answers": [ + "hibiscus tea", + "hyena" + ], + "count": 5 + }, + { + "answers": [ + "kunun aya", + "kunun zaƙi" + ], + "en_answers": [ + "tiger nut milk", + "sweet porridge" + ], + "count": 3 + }, + { + "answers": [ + "fura", + "fura da nono" + ], + "en_answers": [ + "millet porridge", + "millet porridge with fermented milk" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-06": { + "question": "Wacce giyar gargajiya ce mafi shahara a Arewacin Najeriya?", + "en_question": "What is the most popular traditional alcohol in your country?", + "annotations": [ + { + "answers": [ + "burkutu" + ], + "en_answers": [ + "local beer" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Jod-ch-07": { + "question": "Awanni nawa zai dauki mutanen Arewacin Najeriya su ci abincin dare a gidan cin abinci? (Ka bayar da lambobin Larabci har zuwa wani wurin da ya nuna digo daya (misali, 2, 3.5) kawai.)", + "en_question": "How long (in hours) on average does it take for people in your country to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 3 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-09": { + "question": "Wanne lokaci ne mutane sukan ci abincin dare a Arewacin Najeriya? (A bayar da shi a tsarin HH:MM misali, 18:00, 09:00).", + "en_question": "What time do people usually have dinner in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "19:00" + ], + "en_answers": [ + "19:00" + ], + "count": 2 + }, + { + "answers": [ + "20:00", + "08:00" + ], + "en_answers": [ + "20:00" + ], + "count": 2 + }, + { + "answers": [ + "21:00", + "09:00" + ], + "en_answers": [ + "21:00" + ], + "count": 1 + }, + { + "answers": [ + "22:00", + "10:00" + ], + "en_answers": [ + "22:00" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-12": { + "question": "Wane irin miya mutanen Arewacin Najeriya suka fi so?", + "en_question": "What kind of soup do people from your country like to have?", + "annotations": [ + { + "answers": [ + "miyar kuka" + ], + "en_answers": [ + "baobab leaf soup" + ], + "count": 2 + }, + { + "answers": [ + "miyar taushe", + "taushe" + ], + "en_answers": [ + "vegetable soup", + "sauce" + ], + "count": 2 + }, + { + "answers": [ + "jar miya" + ], + "en_answers": [ + "tomato sauce" + ], + "count": 1 + }, + { + "answers": [ + "miyar kubewa" + ], + "en_answers": [ + "okra soup" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-13": { + "question": "Wane irin abincin titi ne mutanen Arewacin Najeriya suka fi son ci?", + "en_question": "What street food do people from your country like to eat?", + "annotations": [ + { + "answers": [ + "awara" + ], + "en_answers": [ + "fried bean cake" + ], + "count": 3 + }, + { + "answers": [ + "gurasa" + ], + "en_answers": [ + "flatbread" + ], + "count": 2 + }, + { + "answers": [ + "shinkafa" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "wainar fulawa" + ], + "en_answers": [ + "flour cake" + ], + "count": 1 + }, + { + "answers": [ + "ƙosai" + ], + "en_answers": [ + "bean cake" + ], + "count": 1 + }, + { + "answers": [ + "ɗan wake", + "dan wake" + ], + "en_answers": [ + "bean dumplings" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-15": { + "question": "Wane irin abincin teku ne mutanen Arewacin Najeriya suke so su ci?", + "en_question": "What kind of seafood do people from your country like to eat?", + "annotations": [ + { + "answers": [ + "kifi" + ], + "en_answers": [ + "fish" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-16": { + "question": "Menene babban bikin al'adu a Arewacin Najeriya?", + "en_question": "What is the biggest festival in your country?", + "annotations": [ + { + "answers": [ + "babbar sallah" + ], + "en_answers": [ + "eid al-adha" + ], + "count": 2 + }, + { + "answers": [ + "ƙaramar sallah", + "karamar sallah", + "sallah karama" + ], + "en_answers": [ + "small sallah", + "lesser eid" + ], + "count": 2 + }, + { + "answers": [ + "maulidi", + "bikin maulidi", + "mauludi" + ], + "en_answers": [ + "maulid festival", + "mawlid" + ], + "count": 2 + }, + { + "answers": [ + "kirsimeti" + ], + "en_answers": [ + "christmas" + ], + "count": 1 + }, + { + "answers": [ + "bikin idi" + ], + "en_answers": [ + "festival" + ], + "count": 1 + }, + { + "answers": [ + "sallah" + ], + "en_answers": [ + "prayer" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-28": { + "question": "Wanne ne abin sufurin jama'a da aka fi amfani da shi wajen tafiya tsakanin birane a Arewacin Najeriya?", + "en_question": "What is the most commonly used public transport by people when travelling between cites in your country?", + "annotations": [ + { + "answers": [ + "mota" + ], + "en_answers": [ + "car" + ], + "count": 5 + }, + { + "answers": [ + "babur" + ], + "en_answers": [ + "motorcycle" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-30": { + "question": "Menene takamaiman ado ko alamomin da suka shafi babban bikin da yafi girma a Arewacin Najeriya?", + "en_question": "What are the specific decorations or symbols associated with the most biggest festival in your country?", + "annotations": [ + { + "answers": [ + "saka kayan sallah", + "saka sabon kaya" + ], + "en_answers": [ + "wearing sallah clothes", + "wearing new clothes" + ], + "count": 2 + }, + { + "answers": [ + "shanu da ragona" + ], + "en_answers": [ + "cows and goats" + ], + "count": 1 + }, + { + "answers": [ + "bikin sallah" + ], + "en_answers": [ + "eid celebration" + ], + "count": 1 + }, + { + "answers": [ + "yanka rago" + ], + "en_answers": [ + "slaughter sheep" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Jod-ch-37": { + "question": "Wane irin wasanni mata suka fi so su kalla a Arewacin Najeriya?", + "en_question": "What sports do women like to watch the most in your country?", + "annotations": [ + { + "answers": [ + "hawan doki" + ], + "en_answers": [ + "horse riding" + ], + "count": 1 + }, + { + "answers": [ + "wasan hausa" + ], + "en_answers": [ + "hausa game" + ], + "count": 1 + }, + { + "answers": [ + "hawan sallah" + ], + "en_answers": [ + "sallah festival procession" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-38": { + "question": "Wane irin wasanni maza suka fi so su kalla a Arewacin Najeriya?", + "en_question": "What sports do men like to watch the most in your country?", + "annotations": [ + { + "answers": [ + "ƙwallon ƙafa", + "kwallon kafa", + "kwollo", + "wasan kwallon ƙafa" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "kokawa" + ], + "en_answers": [ + "wrestling" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-41": { + "question": "Menene aikin hutu na gama gari da mata masu shekaru 20 a Arewacin Najeriya suke yi?", + "en_question": "What is the common leisure activity that females in their 20s in your country engage in?", + "annotations": [ + { + "answers": [ + "kallo" + ], + "en_answers": [ + "look" + ], + "count": 2 + }, + { + "answers": [ + "girke girke" + ], + "en_answers": [ + "recipes" + ], + "count": 1 + }, + { + "answers": [ + "bacci" + ], + "en_answers": [ + "sleep" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "Jod-ch-42": { + "question": "Menene aikin hutu na gama gari da samari masu shekaru 20 a Arewacin Najeriya suke yi?", + "en_question": "What is the common leisure activity that males in their 20s in your country engage in?", + "annotations": [ + { + "answers": [ + "ƙwallo" + ], + "en_answers": [ + "ball" + ], + "count": 1 + }, + { + "answers": [ + "ƙwallo", + "kwallo" + ], + "en_answers": [ + "ball" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Jod-ch-46": { + "question": "Tsawon awanni nawa mutane ke yin hutu bayan cin abincin rana a ranakun aiki a Arewacin Najeriya? (Ka bayar da lambobin Larabci har zuwa wani digo daya kawai (misali, 2, 3.5).)", + "en_question": "How long (in hours) do people usually take a break after lunch on a weekday in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 3 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-48": { + "question": "Me mutane ke ci a matsayin abincin rana a kwanakin aiki a Arewacin Najeriya?", + "en_question": "What do people eat for lunch during the working days in your country?", + "annotations": [ + { + "answers": [ + "shinkafa" + ], + "en_answers": [ + "rice" + ], + "count": 3 + }, + { + "answers": [ + "gurasa" + ], + "en_answers": [ + "flatbread" + ], + "count": 1 + }, + { + "answers": [ + "taliya" + ], + "en_answers": [ + "spaghetti" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-50": { + "question": "Menene matsakaicin lokacin tafiya (a cikin mintuna) ga mutanen Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 1) kawai.)", + "en_question": "What is the average commute time (in minutes) for people in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "30", + "30mins" + ], + "en_answers": [ + "30", + "minti talatin" + ], + "count": 2 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Jod-ch-51": { + "question": "Menene hanyar sufuri da aka fi amfani da ita wajen zuwa aiki a Arewacin Najeriya?", + "en_question": "What is the most common transportation that people take to get to work in your country?", + "annotations": [ + { + "answers": [ + "mota" + ], + "en_answers": [ + "car" + ], + "count": 4 + }, + { + "answers": [ + "adaidaita sahu", + "adaidaita" + ], + "en_answers": [ + "tricycle taxi" + ], + "count": 2 + }, + { + "answers": [ + "jirgi" + ], + "en_answers": [ + "airplane" + ], + "count": 1 + }, + { + "answers": [ + "babur" + ], + "en_answers": [ + "motorcycle" + ], + "count": 1 + }, + { + "answers": [ + "bus" + ], + "en_answers": [ + "motar haya" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-54": { + "question": "Kwanaki nawa ne hutun aure a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 12) kawai.)", + "en_question": "How long (in days) is the marriage leave in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 2 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + }, + { + "answers": [ + "14" + ], + "en_answers": [ + "14" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Jod-ch-56": { + "question": "Menene shekarun ritaya ga mata a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 12) kawai.)", + "en_question": "What is the typical retirement age for women in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "65" + ], + "en_answers": [ + "65" + ], + "count": 3 + }, + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-57": { + "question": "Menene shekarun yin ritaya na al'ada ga maza a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 12) kawai.)", + "en_question": "What is the typical retirement age for men in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "65" + ], + "en_answers": [ + "65" + ], + "count": 3 + }, + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-58": { + "question": "Wane sana'a ce aka fi girmamawa a Arewacin Najeriya?", + "en_question": "Which profession is the most respected in your country?", + "annotations": [ + { + "answers": [ + "noma" + ], + "en_answers": [ + "farming" + ], + "count": 2 + }, + { + "answers": [ + "fatauci" + ], + "en_answers": [ + "trade" + ], + "count": 1 + }, + { + "answers": [ + "kasuwanci" + ], + "en_answers": [ + "business" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-60": { + "question": "Nawa ne tsawon lokacin (a cikin awanni) na yini na aiki a Arewacin Najeriya? (Ka bayar da lambobin Larabci (0~24) kawai.)", + "en_question": "What is the duration (in hours) of a typical workday in your country? (Provide Arabic numerals (0~24) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 3 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-61": { + "question": "Wacce sana'a mata suka fi so a Arewacin Najeriya?", + "en_question": "Which occupation is most preferred among females in your country?", + "annotations": [ + { + "answers": [ + "ɗinki", + "dinki" + ], + "en_answers": [ + "sewing" + ], + "count": 3 + }, + { + "answers": [ + "kiwo" + ], + "en_answers": [ + "herding" + ], + "count": 1 + }, + { + "answers": [ + "kunshi" + ], + "en_answers": [ + "package" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Jod-ch-62": { + "question": "Wacce sana'a maza suka fi so a Arewacin Najeriya?", + "en_question": "Which occupation is most preferred among males in your country?", + "annotations": [ + { + "answers": [ + "kasuwanci", + "kusuwanci" + ], + "en_answers": [ + "business" + ], + "count": 4 + }, + { + "answers": [ + "fatauci" + ], + "en_answers": [ + "trade" + ], + "count": 1 + }, + { + "answers": [ + "noma" + ], + "en_answers": [ + "farming" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ki-pe-17": { + "question": "A tsaka-tsaki, har zuwa wani mataki dalibai sukan yi karatunsu a Arewacin Najeriya? (misali, firamare, sakandare)", + "en_question": "On average, how far do students typically pursue their education in your country? (e.g., elementary, high school)", + "annotations": [ + { + "answers": [ + "sakandare" + ], + "en_answers": [ + "secondary school" + ], + "count": 4 + }, + { + "answers": [ + "sakandare", + "sakandiri" + ], + "en_answers": [ + "secondary school" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-24": { + "question": "Wane yare ake koyarwa a makarantun Arewacin Najeriya banda Turanci?", + "en_question": "What language is taught in schools in your country besides English?", + "annotations": [ + { + "answers": [ + "hausa", + "hausa da arabic" + ], + "en_answers": [ + "hausa" + ], + "count": 4 + }, + { + "answers": [ + "larabci", + "hausa da arabic", + "arabiya" + ], + "en_answers": [ + "arabic" + ], + "count": 4 + }, + { + "answers": [ + "turanci" + ], + "en_answers": [ + "english" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ki-pe-30": { + "question": "Wadanne kwanaki ne na mako makarantu ke rufewa a Arewacin Najeriya?", + "en_question": "What days of the week are schools closed in your country?", + "annotations": [ + { + "answers": [ + "asabar", + "asabar da lahadi" + ], + "en_answers": [ + "saturday", + "saturday and sunday" + ], + "count": 5 + }, + { + "answers": [ + "lahadi", + "asabar da lahadi" + ], + "en_answers": [ + "sunday" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-32": { + "question": "Wane irin abinci ne masu masauki kan shirya wa baƙi a Arewacin Najeriya?", + "en_question": "What food do the hosts usually prepare for the guests in your country?", + "annotations": [ + { + "answers": [ + "shinkafa" + ], + "en_answers": [ + "rice" + ], + "count": 2 + }, + { + "answers": [ + "shinkafa da miya" + ], + "en_answers": [ + "rice and sauce" + ], + "count": 1 + }, + { + "answers": [ + "tuwo" + ], + "en_answers": [ + "mashed food" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ki-pe-34": { + "question": "Menene abin sha na yau da kullum a karin kumallo a Arewacin Najeriya?", + "en_question": "What is the usual drink in the breakfast in your country?", + "annotations": [ + { + "answers": [ + "shayi", + "biredi da shayi" + ], + "en_answers": [ + "tea" + ], + "count": 5 + }, + { + "answers": [ + "koko" + ], + "en_answers": [ + "pap" + ], + "count": 4 + }, + { + "answers": [ + "kunu" + ], + "en_answers": [ + "millet or sorghum porridge" + ], + "count": 3 + }, + { + "answers": [ + "burodi", + "biredi da shayi" + ], + "en_answers": [ + "bread" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-36": { + "question": "Ban da abincin asali daga Arewacin Najeriya, abincin wacce kasa ya fi shahara a Arewacin Najeriya?", + "en_question": "Except the food original from your country, which country's food is more popular in your country?", + "annotations": [ + { + "answers": [ + "ƙasar larabawa", + "larabawa" + ], + "en_answers": [ + "arab country", + "arabs" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "Ki-pe-39": { + "question": "Wane irin abinci ake yawan shirya wa picnic na iyali a Arewacin Najeriya?", + "en_question": "What food is usually prepared for a family picnic in your country?", + "annotations": [ + { + "answers": [ + "kaji" + ], + "en_answers": [ + "chicken" + ], + "count": 2 + }, + { + "answers": [ + "soyayyiyar shinkafa" + ], + "en_answers": [ + "fried rice" + ], + "count": 1 + }, + { + "answers": [ + "nama" + ], + "en_answers": [ + "meat" + ], + "count": 1 + }, + { + "answers": [ + "shawarma" + ], + "en_answers": [ + "shawarma" + ], + "count": 1 + }, + { + "answers": [ + "shinkafa" + ], + "en_answers": [ + "rice" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ki-pe-40": { + "question": "Wane irin abinci daga Arewacin Najeriya ake ƙyama a sauran sassan duniya?", + "en_question": "Which food from your country is considered disgusting by the rest of the world?", + "annotations": [ + { + "answers": [ + "tuwo" + ], + "en_answers": [ + "mashed food" + ], + "count": 2 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-43": { + "question": "Menene sunan burodin da aka yafi shahara a Arewacin Najeriya?", + "en_question": "What is the name of the popular bread in your country?", + "annotations": [ + { + "answers": [ + "mummuki" + ], + "en_answers": [ + "ugly" + ], + "count": 1 + }, + { + "answers": [ + "burodi" + ], + "en_answers": [ + "bread" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 2, + "not-applicable": 0 + } + }, + "Ki-pe-51": { + "question": "Wane lokaci ne ofisoshin gwamnati ke rufewa a Arewacin Najeriya? (A bayar da shi a tsarin HH:MM misali, 18:00, 09:00).", + "en_question": "What time of day are government offices closed in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "17:00", + "05:00" + ], + "en_answers": [ + "17:00" + ], + "count": 4 + }, + { + "answers": [ + "16:00", + "04:00" + ], + "en_answers": [ + "16:00" + ], + "count": 2 + }, + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-53": { + "question": "Yaushe ne lokacin fara aiki na yau da kullun na ofisoshin gwamnati a Arewacin Najeriya? (Ka bayar da shi a tsarin HH:MM (misali, 18:00, 09:00).)", + "en_question": "What is the normal start time of government offices in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 5 + }, + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-01": { + "question": "Wane hutun ƙasa ne yafi kowanne tsawo a Arewacin Najeriya?", + "en_question": "What national holiday has the longest duration in your country?", + "annotations": [ + { + "answers": [ + "hutun karshen shekara" + ], + "en_answers": [ + "end of year holiday" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Kik-in-02": { + "question": "Waɗanne ayyuka ne mutane suka saba yi don yin murnar ranar ƴanci a Arewacin Najeriya?", + "en_question": "What are the common activities people from your country do to celebrate Independence day?", + "annotations": [ + { + "answers": [ + "hotuna" + ], + "en_answers": [ + "pictures" + ], + "count": 1 + }, + { + "answers": [ + "rawa" + ], + "en_answers": [ + "dance" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Kik-in-04": { + "question": "Me ake sanyawa a gaban gida idan wani daga cikin iyalin gida ya mutu a Arewacin Najeriya?", + "en_question": "What is installed in front of the house when a family member dies in your country?", + "annotations": [ + { + "answers": [ + "tabarmi", + "tabarmi", + "tabarma" + ], + "en_answers": [ + "mat" + ], + "count": 2 + }, + { + "answers": [ + "tanful" + ], + "en_answers": [ + "complete" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 0, + "no-answer": 0 + } + }, + "Kik-in-05": { + "question": "Yaushe ake yawan gudanar da shagalin samun ciki ko bukin haihuwa a Arewacin Najeriya?", + "en_question": "When is a pregnancy celebration or ceremony usually held in your country?", + "annotations": [ + { + "answers": [ + "bayan kwana bakwai", + "baban kwana bake ai", + "bayan sati daya da haihuwa" + ], + "en_answers": [ + "after seven days", + "one week after giving birth" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 1 + } + }, + "Kik-in-06": { + "question": "Wane taro ake yawan yi kafin aure a Arewacin Najeriya?", + "en_question": "What event is usually held before a wedding in your country?", + "annotations": [ + { + "answers": [ + "kamu" + ], + "en_answers": [ + "catching a bride" + ], + "count": 3 + }, + { + "answers": [ + "taron biki" + ], + "en_answers": [ + "wedding ceremony" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Kik-in-07": { + "question": "Me aka fi rabawa yara a lokacin Sabuwar Shekara ta (Lunar) a Arewacin Najeriya?", + "en_question": "What is usually shared to the children during (Lunar) New Year in your country?", + "annotations": [ + { + "answers": [ + "alawoyi" + ], + "en_answers": [ + "candy" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 1, + "no-answer": 0 + } + }, + "Kik-in-08": { + "question": "Wadanne ayyuka ake yawan yi kwanaki kafin watan Ramadan a Arewacin Najeriya?", + "en_question": "What activities are usually done days before Ramadan in your country?", + "annotations": [ + { + "answers": [ + "siyayya" + ], + "en_answers": [ + "shopping" + ], + "count": 2 + }, + { + "answers": [ + "gyaran gida" + ], + "en_answers": [ + "house cleaning" + ], + "count": 1 + }, + { + "answers": [ + "dinkin kayan sallah" + ], + "en_answers": [ + "sewing of festive clothes" + ], + "count": 1 + }, + { + "answers": [ + "azumin tsofaffi" + ], + "en_answers": [ + "fasting of the elders" + ], + "count": 1 + }, + { + "answers": [ + "kwalema" + ], + "en_answers": [ + "blind" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Kik-in-10": { + "question": "Wanne ne mafi shahararren wurin yawon bude ido ga baki 'yan kasashen waje a Arewacin Najeriya?", + "en_question": "What is the most popular tourist attraction for foreign visitors in your country?", + "annotations": [ + { + "answers": [ + "yankari" + ], + "en_answers": [ + "yankari (refers to yankari national park or yankari game reserve)" + ], + "count": 3 + }, + { + "answers": [ + "gidan makama" + ], + "en_answers": [ + "king's palace" + ], + "count": 1 + }, + { + "answers": [ + "dutsen zuma" + ], + "en_answers": [ + "honey rock" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Kik-in-11": { + "question": "Wanne ne wuraren ibada (haikali, coci, da sauransu) da suka fi shahara don yawon bude ido a Arewacin Najeriya?", + "en_question": "What is the most popular religious sites (temple, church, etc.) for tourism in your country?", + "annotations": [ + { + "answers": [ + "masallacin sarkin mususlmi" + ], + "en_answers": [ + "sultan's mosque" + ], + "count": 1 + }, + { + "answers": [ + "babban masallacin juma'a na kano" + ], + "en_answers": [ + "the great friday mosque of kano" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 2, + "not-applicable": 0 + } + }, + "Kik-in-15": { + "question": "Wane irin tufafi mata sukan saka a bikin yaye karatu a Arewacin Najeriya?", + "en_question": "What clothes do women usually wear on graduation commencement ceremony in your country?", + "annotations": [ + { + "answers": [ + "atamfa" + ], + "en_answers": [ + "fabric" + ], + "count": 2 + }, + { + "answers": [ + "shadda" + ], + "en_answers": [ + "richly embroidered fabric" + ], + "count": 2 + }, + { + "answers": [ + "lesi", + "les" + ], + "en_answers": [ + "100", + "tongue" + ], + "count": 2 + }, + { + "answers": [ + "riga da zani" + ], + "en_answers": [ + "shirt and wrapper" + ], + "count": 1 + }, + { + "answers": [ + "riga da wando" + ], + "en_answers": [ + "shirt and trousers" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Kik-in-16": { + "question": "Wane irin abin sha ake sha a Arewacin Najeriya lokacin da yanayi ya yi sanyi?", + "en_question": "What drink is commonly consumed in your country when the weather is cold?", + "annotations": [ + { + "answers": [ + "shayi" + ], + "en_answers": [ + "tea" + ], + "count": 4 + }, + { + "answers": [ + "koko" + ], + "en_answers": [ + "pap" + ], + "count": 1 + }, + { + "answers": [ + "kunu" + ], + "en_answers": [ + "millet or sorghum porridge" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-17": { + "question": "Wane irin 'ya'yan itace ake sayarwa da samunsa sosai a lokacin Ramadan a Arewacin Najeriya?", + "en_question": "What fruit is more commonly sold and found during Ramadan in your country?", + "annotations": [ + { + "answers": [ + "kankana", + "kankana", + "kankana da dabino" + ], + "en_answers": [ + "watermelon" + ], + "count": 5 + }, + { + "answers": [ + "ayaba" + ], + "en_answers": [ + "banana" + ], + "count": 3 + }, + { + "answers": [ + "lemo", + "lemon fata", + "lemon" + ], + "en_answers": [ + "lemon", + "bright yellow", + "lemu" + ], + "count": 3 + }, + { + "answers": [ + "dabino", + "kankana da dabino" + ], + "en_answers": [ + "date fruit", + "date" + ], + "count": 2 + }, + { + "answers": [ + "abarba" + ], + "en_answers": [ + "papaya" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-24": { + "question": "Wane irin carbohydrate ne ake yawanci bada shi tare da kaza a gidan abinci mai sauri a Arewacin Najeriya?", + "en_question": "What carbohydrate is usually served with chicken in a fast-food restaurant in your country?", + "annotations": [ + { + "answers": [ + "shinkafa" + ], + "en_answers": [ + "rice" + ], + "count": 3 + }, + { + "answers": [ + "dankali" + ], + "en_answers": [ + "potato" + ], + "count": 2 + }, + { + "answers": [ + "burodi" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "doya" + ], + "en_answers": [ + "yam" + ], + "count": 1 + }, + { + "answers": [ + "shawarma" + ], + "en_answers": [ + "shawarma" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-31": { + "question": "Wane irin wasan dambe ne aka fi sani a Arewacin Najeriya?", + "en_question": "What is the most famous martial art sports in your country?", + "annotations": [ + { + "answers": [ + "kokawa" + ], + "en_answers": [ + "wrestling" + ], + "count": 2 + }, + { + "answers": [ + "shaɗi" + ], + "en_answers": [ + "dye" + ], + "count": 2 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-34": { + "question": "Wane irin wasanni ake yawan watsawa a gidan talabijin na kasa a Arewacin Najeriya?", + "en_question": "What sports are often broadcasted on national television in your country?", + "annotations": [ + { + "answers": [ + "ƙwallon ƙafa", + "kwollo", + "kwallon kafa", + "kwallan ƙafa" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-35": { + "question": "Wadanne wasanni ne suka shahara tsakanin mutanen Arewacin Najeriya a lokacin annobar COVID-19?", + "en_question": "What sports were popular among people from your country during the COVID-19 pandemic?", + "annotations": [ + { + "answers": [ + "wasa", + "games" + ], + "en_answers": [ + "wasanni" + ], + "count": 1 + }, + { + "answers": [ + "kwallon kafa" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Kik-in-36": { + "question": "Wane ne kocin ƙwallon ƙafa da yafi shahara a Arewacin Najeriya?", + "en_question": "Who is the most popular soccer coach in your country?", + "annotations": [ + { + "answers": [ + "salisu yusuff" + ], + "en_answers": [ + "salisu yusuff" + ], + "count": 1 + }, + { + "answers": [ + "morinho" + ], + "en_answers": [ + "good morning" + ], + "count": 1 + }, + { + "answers": [ + "gadiola" + ], + "en_answers": [ + "gatekeeper" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-37": { + "question": "Wadanne kungiyoyin kwallon kafa a Arewacin Najeriya ne suka shahara saboda gaba da juna? (misali ___ da ___)", + "en_question": "What soccer teams in your country are famous for their intense rivalry? (e.g. ___ vs ___)", + "annotations": [ + { + "answers": [ + "kano pillers da katsina united" + ], + "en_answers": [ + "kano pillars and katsina united" + ], + "count": 1 + }, + { + "answers": [ + "real madrid da barcelona" + ], + "en_answers": [ + "real madrid and barcelona" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Kik-in-38": { + "question": "Menene sunayen magoya bayan kwallon kafa a Arewacin Najeriya wadanda suka shahara da hamayya mai zafi? (misali ___ da ___)", + "en_question": "What are the names of soccer supporters in your country who are famous for their intense rivalry? (e.g. ___ vs ___)", + "annotations": [ + { + "answers": [ + "ronaldo da messi" + ], + "en_answers": [ + "ronaldo and messi" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Kik-in-40": { + "question": "Wane ne dan wasan badminton namiji mafi shahara a Arewacin Najeriya?", + "en_question": "Who is the most famous male badminton player in your country?", + "annotations": [ + { + "answers": [ + "oyebanji bello" + ], + "en_answers": [ + "oyebanji bello" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-41": { + "question": "Wace ce 'yar wasan badminton mace mafi shahara a Arewacin Najeriya?", + "en_question": "Who is the most famous female badminton player in your country?", + "annotations": [ + { + "answers": [ + "zainab damilola alabi" + ], + "en_answers": [ + "zainab damilola alabi" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-44": { + "question": "Wane wasa ne gwamnatin Arewacin Najeriya ta fi bawa goyon baya?", + "en_question": "What sport gets the most support from the government in your country?", + "annotations": [ + { + "answers": [ + "ƙwallon ƙafa", + "kwollo", + "kwallon kafa", + "kwallo" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-45": { + "question": "Wane irin kayan aikin filin wasanni ake samu a makarantun Arewacin Najeriya?", + "en_question": "What sports field facilities are usually available at schools in your country?", + "annotations": [ + { + "answers": [ + "lilo" + ], + "en_answers": [ + "swimming" + ], + "count": 2 + }, + { + "answers": [ + "merry-go-round" + ], + "en_answers": [ + "dawafi" + ], + "count": 1 + }, + { + "answers": [ + "kwallo" + ], + "en_answers": [ + "ball" + ], + "count": 1 + }, + { + "answers": [ + "shebur" + ], + "en_answers": [ + "spoon" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Na-ko-02": { + "question": "Wane irin abin sha na kafe ne mutanen Arewacin Najeriya suka fi so?", + "en_question": "What cafe beverage do people from your country most commonly enjoy?", + "annotations": [ + { + "answers": [ + "naskef" + ], + "en_answers": [ + "i am fine" + ], + "count": 2 + }, + { + "answers": [ + "shayi" + ], + "en_answers": [ + "tea" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Na-ko-04": { + "question": "Menene abincin da aka fi so don magance maye ga mutanen Arewacin Najeriya?", + "en_question": "What is the preferred hangover cure food for people from your country?", + "annotations": [], + "idks": { + "idk": 4, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Na-ko-05": { + "question": "Menene abincin da ake kaiwa a gida a Arewacin Najeriya?", + "en_question": "What is the typical delivery food in your country?", + "annotations": [ + { + "answers": [ + "shinkafa" + ], + "en_answers": [ + "rice" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 2, + "not-applicable": 0 + } + }, + "Na-ko-07": { + "question": "Wane irin nama ne mutanen Arewacin Najeriya suka fi ci?", + "en_question": "What type of meat is consumed most by people from your country?", + "annotations": [ + { + "answers": [ + "naman rago", + "rago" + ], + "en_answers": [ + "mutton", + "sheep" + ], + "count": 3 + }, + { + "answers": [ + "naman kaza", + "kaza" + ], + "en_answers": [ + "chicken", + "chicken meat" + ], + "count": 3 + }, + { + "answers": [ + "zabi" + ], + "en_answers": [ + "choice" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-08": { + "question": "Wane irin 'ya'yan itatuwa ne mutanen Arewacin Najeriya sukan ci a lokacin kaka?", + "en_question": "What fruit do people from your country often eat in the autumn season?", + "annotations": [ + { + "answers": [ + "magoro", + "mangoro", + "mangwaro" + ], + "en_answers": [ + "goat", + "mango", + "pawpaw" + ], + "count": 3 + }, + { + "answers": [ + "kasho" + ], + "en_answers": [ + "pen" + ], + "count": 1 + }, + { + "answers": [ + "agwaluma" + ], + "en_answers": [ + "soursop" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-09": { + "question": "Wane irin abincin haɗi ake yawan bawa mutane a kan teburin cin abinci a Arewacin Najeriya?", + "en_question": "What side dish is the most commonly served on a dining table in your country?", + "annotations": [ + { + "answers": [ + "shinkafa" + ], + "en_answers": [ + "rice" + ], + "count": 3 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Na-ko-11": { + "question": "Me mutanen Arewacin Najeriya ke ci yayin da suke kallon wasan kwallon kafa?", + "en_question": "What do people from your country eat while watching a soccer game?", + "annotations": [ + { + "answers": [ + "rake" + ], + "en_answers": [ + "how much" + ], + "count": 3 + }, + { + "answers": [ + "indomi" + ], + "en_answers": [ + "noodles" + ], + "count": 1 + }, + { + "answers": [ + "gyada" + ], + "en_answers": [ + "groundnut" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Na-ko-15": { + "question": "Menene abincin gina jiki a Arewacin Najeriya?", + "en_question": "What is the representative nourishing food in your country?", + "annotations": [ + { + "answers": [ + "tuwo" + ], + "en_answers": [ + "mashed food" + ], + "count": 4 + }, + { + "answers": [ + "shinkafa" + ], + "en_answers": [ + "rice" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-16": { + "question": "Wane dan wasan kwallon kafa ne ya fi shahara a Arewacin Najeriya?", + "en_question": "Who is the most famous soccer player in your country?", + "annotations": [ + { + "answers": [ + "ahmad musa" + ], + "en_answers": [ + "ahmad musa" + ], + "count": 3 + }, + { + "answers": [ + "ronaldo" + ], + "en_answers": [ + "ronaldo" + ], + "count": 1 + }, + { + "answers": [ + "ahmda musa" + ], + "en_answers": [ + "ahmad musa" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-17": { + "question": "Wane irin wasanni dalibai maza ke ji dadin yi lokacin hutun rana a makarantu a Arewacin Najeriya?", + "en_question": "What sports do male students enjoy during lunch time at school in your country?", + "annotations": [ + { + "answers": [ + "ƙwallon ƙafa", + "kwallon kafa", + "kwollo", + "kwallo" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-18": { + "question": "Wane irin wasanni ne 'yan mata suka fi shiga a lokacin darussan ilimin motsa jiki a Arewacin Najeriya?", + "en_question": "What is the most common sport girls participate in during physical education classes in your country?", + "annotations": [ + { + "answers": [ + "tsere", + "gudu", + "tseren gudu" + ], + "en_answers": [ + "speed", + "race" + ], + "count": 3 + }, + { + "answers": [ + "badminton", + "rawa" + ], + "en_answers": [ + "wasan badminton", + "dance" + ], + "count": 2 + }, + { + "answers": [ + "kwollo" + ], + "en_answers": [ + "ball" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-19": { + "question": "Wane ne dan wasan volleyball mafi shahara a Arewacin Najeriya?", + "en_question": "Who is the most popular volleyball player in your country?", + "annotations": [ + { + "answers": [ + "mohammed adamu aris" + ], + "en_answers": [ + "mohammed adamu aris" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Na-ko-20": { + "question": "Wane irin wasan motsa jiki ne mutanen Arewacin Najeriya ke goyon baya da zuciya ɗaya a gasar kasa da kasa?", + "en_question": "What sports event do people from your country passionately support the most in international competitions?", + "annotations": [ + { + "answers": [ + "ƙwallon ƙafa", + "kwollo", + "kwallon kafa", + "kwallo" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "tsere", + "gudu", + "tseren gudu" + ], + "en_answers": [ + "race" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-22": { + "question": "Wace ƙasa ake ɗauka a matsayin babbar abokiyar hamayya a wasannin ƙwallon kafa ga Arewacin Najeriya?", + "en_question": "Which country is considered the biggest rival in soccer matches for your country?", + "annotations": [ + { + "answers": [ + "ghana" + ], + "en_answers": [ + "ghana" + ], + "count": 2 + }, + { + "answers": [ + "cameroon" + ], + "en_answers": [ + "kamaru" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Na-ko-23": { + "question": "Wane irin makarantun wasanni yara suka fi halarta a Arewacin Najeriya?", + "en_question": "What type of sports academies do children attend the most in your country?", + "annotations": [ + { + "answers": [ + "ƙwallon ƙafa", + "kwallon kafa" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "abuja sport school" + ], + "en_answers": [ + "makarantar wasanni ta abuja" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-24": { + "question": "Wane irin abinci ne ake ci da yawa a filayen wasanni yayin kallon wasanni a Arewacin Najeriya?", + "en_question": "What is the most commonly eaten food in sports stadiums while watching games in your country?", + "annotations": [ + { + "answers": [ + "rake" + ], + "en_answers": [ + "how much" + ], + "count": 2 + }, + { + "answers": [ + "cin cin" + ], + "en_answers": [ + "eating" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Na-ko-25": { + "question": "Wadanne irin wasanni ne ake yi a ranar wasannin makarantun Arewacin Najeriya?", + "en_question": "What are the typical sports played in your country's school sports day?", + "annotations": [ + { + "answers": [ + "ƙwallon ƙafa", + "kwollo", + "kwallon kafa", + "kwallo" + ], + "en_answers": [ + "ball", + "football", + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "tsere", + "gudu" + ], + "en_answers": [ + "speed", + "race" + ], + "count": 2 + }, + { + "answers": [ + "ƙwallon kwando" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "yar burum burum" + ], + "en_answers": [ + "a girl with curly hair" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-26": { + "question": "Wadanne wasanni ne suka shahara tsakanin mutane masu matsaikaitan shekaru a Arewacin Najeriya?", + "en_question": "What are the popular sports among the middle-aged population in your country?", + "annotations": [ + { + "answers": [ + "ƙwallon ƙafa", + "kwallon kafa", + "kwollo", + "kwallo" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "tsere", + "gudu" + ], + "en_answers": [ + "speed" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-28": { + "question": "Wane ne dan wasan wasannin hunturu mafi shahara a Arewacin Najeriya?", + "en_question": "Who is the most popular winter sports player in your country?", + "annotations": [], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-29": { + "question": "Wane ne zakaran ninkaya mafi shahara a Arewacin Najeriya?", + "en_question": "Who is the most famous swimmer in your country?", + "annotations": [], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-30": { + "question": "Wane wasan e-sports ne yafi shahara a Arewacin Najeriya?", + "en_question": "What is the most popular e-sports game in your country?", + "annotations": [], + "idks": { + "idk": 4, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Na-ko-33": { + "question": "Wane irin abinci na al'ada mutanen Arewacin Najeriya ke ci a sabuwar shekarar (Lunar)?", + "en_question": "What symbolic food do people from your country eat on (Lunar) New Year?", + "annotations": [ + { + "answers": [ + "tuwon shinkafa", + "tuwan shinkafa" + ], + "en_answers": [ + "rice pudding", + "rice meal" + ], + "count": 2 + }, + { + "answers": [ + "tuwo" + ], + "en_answers": [ + "mashed food" + ], + "count": 1 + }, + { + "answers": [ + "wainar shinkafa" + ], + "en_answers": [ + "rice cake" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "Na-ko-37": { + "question": "Wanne ne wurin hutun cikin gida da ya fi shahara ga mutanen Arewacin Najeriya?", + "en_question": "What is the most popular domestic vacation spot for people from your country?", + "annotations": [ + { + "answers": [ + "yankari game reserve" + ], + "en_answers": [ + "yankari game reserve" + ], + "count": 1 + }, + { + "answers": [ + "soro" + ], + "en_answers": [ + "talk" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Na-ko-38": { + "question": "Menene kyautar aure da aka fi bayarwa tsakanin ango da amarya a Arewacin Najeriya?", + "en_question": "What is the most common wedding gift between bride and groom in your country?", + "annotations": [ + { + "answers": [ + "sadaki", + "kudin sadaki" + ], + "en_answers": [ + "bride price", + "dowry" + ], + "count": 2 + }, + { + "answers": [ + "mota" + ], + "en_answers": [ + "car" + ], + "count": 1 + }, + { + "answers": [ + "turare" + ], + "en_answers": [ + "perfume" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-39": { + "question": "Me ake yawan bada a matsayin alamar taya murna idan aka halarci bikin aure na aboki a Arewacin Najeriya?", + "en_question": "What is typically given as a congratulatory gesture when attending a friend's wedding in your country?", + "annotations": [ + { + "answers": [ + "goro" + ], + "en_answers": [ + "kola nut" + ], + "count": 2 + }, + { + "answers": [ + "kudi" + ], + "en_answers": [ + "money" + ], + "count": 1 + }, + { + "answers": [ + "alawa" + ], + "en_answers": [ + "candy" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Na-ko-40": { + "question": "Tsawon kwanaki nawa ake yin jana'iza a Arewacin Najeriya? (Ka bayar da lambobi na Larabci (misali, 12) kawai.)", + "en_question": "How long (in days) does a funeral typically last in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-41": { + "question": "Me ya kamata ka shirya a matsayin gudummuwar ta'aziyya lokacin da ka halarci jana'iza a Arewacin Najeriya?", + "en_question": "What should you prepare as a condolence offering when attending a funeral in your country?", + "annotations": [ + { + "answers": [ + "kudi" + ], + "en_answers": [ + "money" + ], + "count": 1 + }, + { + "answers": [ + "abinci" + ], + "en_answers": [ + "food" + ], + "count": 1 + }, + { + "answers": [ + "waina" + ], + "en_answers": [ + "rice cake" + ], + "count": 1 + }, + { + "answers": [ + "gurasa" + ], + "en_answers": [ + "flatbread" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 1 + } + }, + "Na-ko-42": { + "question": "Wane irin abinci aka fi samarwa a dakin jana'iza a Arewacin Najeriya?", + "en_question": "What type of food is commonly provided at funeral parlors in your country?", + "annotations": [ + { + "answers": [ + "masa" + ], + "en_answers": [ + "rice cake" + ], + "count": 1 + }, + { + "answers": [ + "fanke" + ], + "en_answers": [ + "pancake" + ], + "count": 1 + }, + { + "answers": [ + "gurasa" + ], + "en_answers": [ + "flatbread" + ], + "count": 1 + }, + { + "answers": [ + "waina" + ], + "en_answers": [ + "rice cake" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "not-applicable": 1, + "idk": 0 + } + }, + "Na-ko-43": { + "question": "Me mutane ke yi a Arewacin Najeriya da safiyar ranar Sabuwar Shekara ta Kalandar Wata?", + "en_question": "What do people do in your country in the morning of the (Lunar) New Year?", + "annotations": [ + { + "answers": [ + "babu" + ], + "en_answers": [ + "none" + ], + "count": 1 + }, + { + "answers": [ + "bakomai" + ], + "en_answers": [ + "nothing" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Na-ko-44": { + "question": "Yaushe ne ranar da ake samun cunkoson ababen hawa mafi tsanani a fadin Arewacin Najeriya?", + "en_question": "When is the day with your country's most severe nationwide traffic congestion?", + "annotations": [ + { + "answers": [ + "ranar bikin sallah" + ], + "en_answers": [ + "eid celebration day" + ], + "count": 1 + }, + { + "answers": [ + "ranar eid ul fitr" + ], + "en_answers": [ + "eid ul-fitr day" + ], + "count": 1 + }, + { + "answers": [ + "litinin" + ], + "en_answers": [ + "monday" + ], + "count": 1 + }, + { + "answers": [ + "juma'a" + ], + "en_answers": [ + "friday" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Na-ko-45": { + "question": "Ina ne wurin shakatawa na amarci da aka fi so a Arewacin Najeriya?", + "en_question": "What is the most popular honeymoon destination in your country?", + "annotations": [ + { + "answers": [ + "abuja otel", + "abuja" + ], + "en_answers": [ + "abuja hotel", + "abuja" + ], + "count": 2 + }, + { + "answers": [ + "yankari" + ], + "en_answers": [ + "yankari (refers to yankari national park or yankari game reserve)" + ], + "count": 1 + }, + { + "answers": [ + "gusto" + ], + "en_answers": [ + "interest" + ], + "count": 1 + }, + { + "answers": [ + "lagos" + ], + "en_answers": [ + "lagos" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Ne-ar-05": { + "question": "Menene ranar hutun ƙasa mafi muhimmanci a Arewacin Najeriya?", + "en_question": "What is the most important national holiday in your country?", + "annotations": [ + { + "answers": [ + "hutun kistimeti", + "hutun kirismeti", + "kirismeti", + "hutum kirismeti" + ], + "en_answers": [ + "christmas break", + "christmas" + ], + "count": 3 + }, + { + "answers": [ + "hutun bikin sallah" + ], + "en_answers": [ + "eid celebration holiday" + ], + "count": 1 + }, + { + "answers": [ + "sallar idi" + ], + "en_answers": [ + "eid prayer" + ], + "count": 1 + }, + { + "answers": [ + "hutun eid ul fitr" + ], + "en_answers": [ + "eid ul-fitr holiday" + ], + "count": 1 + }, + { + "answers": [ + "ranar yancin kai" + ], + "en_answers": [ + "independence day" + ], + "count": 1 + }, + { + "answers": [ + "hutun sallah" + ], + "en_answers": [ + "eid holiday" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-06": { + "question": "Me mutanen Arewacin Najeriya ke ci a watan Ramadan?", + "en_question": "What do people from your country eat in Ramadan?", + "annotations": [ + { + "answers": [ + "kayan marmari", + "kayan itaciya" + ], + "en_answers": [ + "food items", + "fruits" + ], + "count": 2 + }, + { + "answers": [ + "nama/kaza" + ], + "en_answers": [ + "meat/chicken" + ], + "count": 1 + }, + { + "answers": [ + "kayan lambu" + ], + "en_answers": [ + "vegetables" + ], + "count": 1 + }, + { + "answers": [ + "koko da kosai" + ], + "en_answers": [ + "pap and bean cake" + ], + "count": 1 + }, + { + "answers": [ + "dabino" + ], + "en_answers": [ + "date fruit" + ], + "count": 1 + }, + { + "answers": [ + "dankali" + ], + "en_answers": [ + "potato" + ], + "count": 1 + }, + { + "answers": [ + "kunu da ƙosai" + ], + "en_answers": [ + "millet porridge and bean cakes" + ], + "count": 1 + }, + { + "answers": [ + "doya" + ], + "en_answers": [ + "yam" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-09": { + "question": "Me mutanen Arewacin Najeriya ke ci a lokacin Eid ul Fitr?", + "en_question": "What do people from your country eat in Eid ul Fitr?", + "annotations": [ + { + "answers": [ + "tuwon shinkafa", + "tuwan shinkafa" + ], + "en_answers": [ + "rice pudding", + "rice meal" + ], + "count": 2 + }, + { + "answers": [ + "tuwo" + ], + "en_answers": [ + "mashed food" + ], + "count": 1 + }, + { + "answers": [ + "kaza" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "fankaso" + ], + "en_answers": [ + "malaria" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-10": { + "question": "Me mutanen Arewacin Najeriya ke ci a lokacin Eid ul Adha?", + "en_question": "What do people from your country eat in Eid ul Adha?", + "annotations": [ + { + "answers": [ + "nama" + ], + "en_answers": [ + "meat" + ], + "count": 2 + }, + { + "answers": [ + "tuwo" + ], + "en_answers": [ + "mashed food" + ], + "count": 2 + }, + { + "answers": [ + "naman layya" + ], + "en_answers": [ + "sacrificial meat" + ], + "count": 1 + }, + { + "answers": [ + "naman rago" + ], + "en_answers": [ + "mutton" + ], + "count": 1 + }, + { + "answers": [ + "naman sa" + ], + "en_answers": [ + "his meat" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-11": { + "question": "Ina mutanen Arewacin Najeriya ke zuwa don murnar sabuwar shekara?", + "en_question": "Where do people from your country go to celebrate New Year's Day?", + "annotations": [], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 1 + } + }, + "Ne-ar-14": { + "question": "A ina ne iyalai sukan taru don shagulgulan Sallah a Arewacin Najeriya?", + "en_question": "Where do a family gather for Eid festivities in your country?", + "annotations": [ + { + "answers": [ + "gidan kakanni" + ], + "en_answers": [ + "ancestral home" + ], + "count": 2 + }, + { + "answers": [ + "filin idi" + ], + "en_answers": [ + "eid ground" + ], + "count": 1 + }, + { + "answers": [ + "gidajen su" + ], + "en_answers": [ + "their houses" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-16": { + "question": "Yaushe ne karshen mako a Arewacin Najeriya (misali Litinin, Talata)?", + "en_question": "When is the weekend in your country (e.g. Monday, Tuesday)?", + "annotations": [ + { + "answers": [ + "juma'a" + ], + "en_answers": [ + "friday" + ], + "count": 3 + }, + { + "answers": [ + "juma'a", + "jumma'a" + ], + "en_answers": [ + "friday" + ], + "count": 1 + }, + { + "answers": [ + "asabar da lahadi" + ], + "en_answers": [ + "saturday and sunday" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-17": { + "question": "A wane lokaci ne yawancin mutane suke fara aiki a Arewacin Najeriya? (A bayar da shi a tsarin HH:MM misali, 18:00, 09:00).", + "en_question": "At what time do most people start work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 5 + }, + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-18": { + "question": "A wane lokaci ne yawancin mutane suka gama aiki a Arewacin Najeriya? (A bayar da shi a tsarin HH:MM misali, 18:00, 09:00).", + "en_question": "At what time do most people finish work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "16:00", + "04:00" + ], + "en_answers": [ + "16:00" + ], + "count": 4 + }, + { + "answers": [ + "18:00", + "06:00" + ], + "en_answers": [ + "18:00" + ], + "count": 2 + }, + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-20": { + "question": "Wane irin aiki ake dauka a matsayin aikin da yake da tabbaci a Arewacin Najeriya?", + "en_question": "What is considered to be a secure job in your country?", + "annotations": [ + { + "answers": [ + "noma" + ], + "en_answers": [ + "farming" + ], + "count": 2 + }, + { + "answers": [ + "aikin gwamnati", + "aikin gwannati" + ], + "en_answers": [ + "government job", + "government work" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-24": { + "question": "Wane gari ne cibiyar kasuwanci a Arewacin Najeriya?", + "en_question": "Which city is the primary commercial hub in your country?", + "annotations": [ + { + "answers": [ + "kano" + ], + "en_answers": [ + "kano" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-25": { + "question": "Wace masana'anta ce ke biyan albashi mafi kyau a Arewacin Najeriya?", + "en_question": "What is the industry that pays the best in your country?", + "annotations": [ + { + "answers": [ + "shell petroleum development company (spdc)" + ], + "en_answers": [ + "shell petroleum development company (spdc)" + ], + "count": 1 + }, + { + "answers": [ + "nnpc" + ], + "en_answers": [ + "nigerian national petroleum corporation" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ne-ar-26": { + "question": "Wanne ne kamfanin gwamnati mafi shahara a Arewacin Najeriya?", + "en_question": "What is the most famous public corporation in your country?", + "annotations": [ + { + "answers": [ + "cbn" + ], + "en_answers": [ + "two hundred" + ], + "count": 2 + }, + { + "answers": [ + "firs" + ], + "en_answers": [ + "federal inland revenue service" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-31": { + "question": "Menene abincin da ya fi shahara a Arewacin Najeriya?", + "en_question": "What is the most famous dish in your country?", + "annotations": [ + { + "answers": [ + "shinkafa" + ], + "en_answers": [ + "rice" + ], + "count": 2 + }, + { + "answers": [ + "shinkafa da wake" + ], + "en_answers": [ + "rice and beans" + ], + "count": 1 + }, + { + "answers": [ + "tuwo" + ], + "en_answers": [ + "mashed food" + ], + "count": 1 + }, + { + "answers": [ + "tuwo da miya" + ], + "en_answers": [ + "mashed food with soup" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-32": { + "question": "Me mutane ke ci akasari don karin kumallo a Arewacin Najeriya?", + "en_question": "What do people usually have for breakfast in your country?", + "annotations": [ + { + "answers": [ + "shayi da burodi", + "burodi da shayi" + ], + "en_answers": [ + "tea and bread", + "bread and tea" + ], + "count": 3 + }, + { + "answers": [ + "ƙosai da koko", + "koko da kosai", + "koko da ƙosai" + ], + "en_answers": [ + "bean cake and porridge", + "pap and bean cake" + ], + "count": 3 + }, + { + "answers": [ + "ɗumame" + ], + "en_answers": [ + "spoiled" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-33": { + "question": "Yaushe mutane sukan ci abincin rana a Arewacin Najeriya? (Ka bayar da shi a tsarin HH:MM misali, 18:00, 09:00).", + "en_question": "When do people usually have lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 3 + }, + { + "answers": [ + "14:00", + "02:00" + ], + "en_answers": [ + "14:00" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-34": { + "question": "Menene galibin abinda ba za a iya rabuwa da shi ba a cikin abincin Arewacin Najeriya?", + "en_question": "What is typically indispensable in meals in your country?", + "annotations": [ + { + "answers": [ + "shinkafa" + ], + "en_answers": [ + "rice" + ], + "count": 2 + }, + { + "answers": [ + "tuwo da miya" + ], + "en_answers": [ + "mashed food with soup" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Ne-ar-36": { + "question": "Menene abincin bukukuwa na al'ada a Arewacin Najeriya?", + "en_question": "What is a typical festive meal in your country?", + "annotations": [ + { + "answers": [ + "shinkafa" + ], + "en_answers": [ + "rice" + ], + "count": 2 + }, + { + "answers": [ + "alala" + ], + "en_answers": [ + "pudding" + ], + "count": 2 + }, + { + "answers": [ + "tuwo" + ], + "en_answers": [ + "mashed food" + ], + "count": 1 + }, + { + "answers": [ + "tuwo da miya" + ], + "en_answers": [ + "mashed food with soup" + ], + "count": 1 + }, + { + "answers": [ + "gurasa" + ], + "en_answers": [ + "flatbread" + ], + "count": 1 + }, + { + "answers": [ + "fankaso" + ], + "en_answers": [ + "malaria" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-37": { + "question": "Wane irin 'ya'yan itace mutane sukan bayar ga baki/masu ziyara daga kasashen waje a Arewacin Najeriya?", + "en_question": "Which fruit do people usually offer tourists/visitors from abroad in your country?", + "annotations": [ + { + "answers": [ + "dabino" + ], + "en_answers": [ + "date fruit" + ], + "count": 3 + }, + { + "answers": [ + "goro" + ], + "en_answers": [ + "kola nut" + ], + "count": 1 + }, + { + "answers": [ + "inibi" + ], + "en_answers": [ + "yesterday" + ], + "count": 1 + }, + { + "answers": [ + "tufah" + ], + "en_answers": [ + "apple" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Ne-ar-38": { + "question": "Wane irin abinci ne mutane sukan bayar a matsayin sadaka a Arewacin Najeriya?", + "en_question": "Which food do people usually offer as charity in your country?", + "annotations": [ + { + "answers": [ + "shinkafa" + ], + "en_answers": [ + "rice" + ], + "count": 3 + }, + { + "answers": [ + "shinkafa da wake" + ], + "en_answers": [ + "rice and beans" + ], + "count": 1 + }, + { + "answers": [ + "shinkafa da fadika" + ], + "en_answers": [ + "rice and beans" + ], + "count": 1 + }, + { + "answers": [ + "masara" + ], + "en_answers": [ + "corn" + ], + "count": 1 + }, + { + "answers": [ + "gero" + ], + "en_answers": [ + "millet" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-39": { + "question": "Wanne ne mafi araha a abincin sauri a Arewacin Najeriya?", + "en_question": "What is the cheapest fast food in your country?", + "annotations": [ + { + "answers": [ + "taliya" + ], + "en_answers": [ + "spaghetti" + ], + "count": 1 + }, + { + "answers": [ + "shinkafa" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "taliyar hausa" + ], + "en_answers": [ + "hausa noodles" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Ne-ar-43": { + "question": "Me mutane suka fi da shayi a Arewacin Najeriya?", + "en_question": "What do people usually have with tea in your country?", + "annotations": [ + { + "answers": [ + "burodi", + "biredi", + "burudi" + ], + "en_answers": [ + "bread" + ], + "count": 3 + }, + { + "answers": [ + "burodi" + ], + "en_answers": [ + "bread" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-44": { + "question": "Me mutane ke ci tare da kofi a Arewacin Najeriya?", + "en_question": "What do people have with coffee in your country?", + "annotations": [ + { + "answers": [ + "burodi", + "buredi", + "burode", + "biredi" + ], + "en_answers": [ + "bread" + ], + "count": 3 + }, + { + "answers": [ + "kunu" + ], + "en_answers": [ + "millet or sorghum porridge" + ], + "count": 1 + }, + { + "answers": [ + "shayi" + ], + "en_answers": [ + "tea" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-02": { + "question": "Wanne ne abincin gargajiya mafi shahara a Arewacin Najeriya?", + "en_question": "What is the most popular traditional food in your country?", + "annotations": [ + { + "answers": [ + "tuwo" + ], + "en_answers": [ + "mashed food" + ], + "count": 1 + }, + { + "answers": [ + "tuwo da miya" + ], + "en_answers": [ + "mashed food with soup" + ], + "count": 1 + }, + { + "answers": [ + "dan wake" + ], + "en_answers": [ + "bean dumplings" + ], + "count": 1 + }, + { + "answers": [ + "dambu" + ], + "en_answers": [ + "a type of meat dish" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-am-04": { + "question": "Wacce miyar tsome ce mafi shahara a Arewacin Najeriya?", + "en_question": "What is the most popular dipping sauce in your country?", + "annotations": [ + { + "answers": [ + "taushe" + ], + "en_answers": [ + "sauce" + ], + "count": 2 + }, + { + "answers": [ + "miyar kuka", + "kuka" + ], + "en_answers": [ + "baobab leaf soup", + "cry" + ], + "count": 2 + }, + { + "answers": [ + "jar miya" + ], + "en_answers": [ + "tomato sauce" + ], + "count": 1 + }, + { + "answers": [ + "kuɓewa" + ], + "en_answers": [ + "hiding" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-08": { + "question": "Wane irin abinci ne aka fi ci sosai lokacin azumin Kiristoci a Arewacin Najeriya?", + "en_question": "What food is most often consumed during Christian fasting in your country?", + "annotations": [ + { + "answers": [ + "amala" + ], + "en_answers": [ + "yam flour dish" + ], + "count": 1 + }, + { + "answers": [ + "fufu" + ], + "en_answers": [ + "mashed yam/cassava" + ], + "count": 1 + }, + { + "answers": [ + "sakwara" + ], + "en_answers": [ + "a type of cornmeal dumpling" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-am-15": { + "question": "Wane irin abinci yawanci ake haɗawa lokacin da mata suka haihu a Arewacin Najeriya?", + "en_question": "What food is usually prepared when mothers give birth in your country?", + "annotations": [ + { + "answers": [ + "tuwo" + ], + "en_answers": [ + "mashed food" + ], + "count": 1 + }, + { + "answers": [ + "alala" + ], + "en_answers": [ + "pudding" + ], + "count": 1 + }, + { + "answers": [ + "tuwo da miya" + ], + "en_answers": [ + "mashed food with soup" + ], + "count": 1 + }, + { + "answers": [ + "tuwan dawa" + ], + "en_answers": [ + "millet porridge" + ], + "count": 1 + }, + { + "answers": [ + "kunun kanwa" + ], + "en_answers": [ + "millet and potash porridge" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-am-27": { + "question": "Wace ce 'yar wasan da tafi shahara a Arewacin Najeriya?", + "en_question": "Who is the most popular female sportperson in your country?", + "annotations": [ + { + "answers": [ + "rahama sadau", + "rahma sadau" + ], + "en_answers": [ + "rahama sadau", + "rahma sadau" + ], + "count": 3 + }, + { + "answers": [ + "jamila nagudu" + ], + "en_answers": [ + "beautiful" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-34": { + "question": "A ina daliban makarantar firamare suka fi shirin yin jarabawarsu a Arewacin Najeriya?", + "en_question": "Where do most elementary school students prepare for their exams in your country?", + "annotations": [ + { + "answers": [ + "a makaranta" + ], + "en_answers": [ + "in school" + ], + "count": 2 + }, + { + "answers": [ + "ajujuwa" + ], + "en_answers": [ + "classrooms" + ], + "count": 1 + }, + { + "answers": [ + "gidajen su" + ], + "en_answers": [ + "their houses" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-am-41": { + "question": "A Arewacin Najeriya, a wane matakin aji dalibai ke daukar jarabawar ƙasa ta farko?", + "en_question": "In your country, at which grade level do students take their first national-level examination?", + "annotations": [ + { + "answers": [ + "6", + "gama firamare" + ], + "en_answers": [ + "6th grade", + "after primary", + "end of primary" + ], + "count": 3 + }, + { + "answers": [ + "5", + "aji biyar" + ], + "en_answers": [ + "5th grade", + "fifth grade" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-53": { + "question": "Wane yanki a Arewacin Najeriya aka fi sani da masana'antar kofi/shayi?", + "en_question": "Which region in your country is widely known for its coffee/tea industry?", + "annotations": [ + { + "answers": [ + "filato" + ], + "en_answers": [ + "plateau" + ], + "count": 1 + }, + { + "answers": [ + "bauchi" + ], + "en_answers": [ + "bauchi" + ], + "count": 1 + }, + { + "answers": [ + "maiduguri" + ], + "en_answers": [ + "maiduguri" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-am-54": { + "question": "Wane yanki a Arewacin Najeriya aka fi sani da kiwon dabbobi?", + "en_question": "Which region in your country is widely known for its livestock industry?", + "annotations": [ + { + "answers": [ + "adamawa" + ], + "en_answers": [ + "adamawa" + ], + "count": 2 + }, + { + "answers": [ + "jigawa" + ], + "en_answers": [ + "dry or parched" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-am-59": { + "question": "Menene babban sana'ar mutanen da ke zaune a hamadoni a Arewacin Najeriya?", + "en_question": "What is the main occupation of people living in deserts in your country?", + "annotations": [ + { + "answers": [ + "kiwo" + ], + "en_answers": [ + "herding" + ], + "count": 2 + }, + { + "answers": [ + "kiwan rakumi" + ], + "en_answers": [ + "camel rearing" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-am-60": { + "question": "Wane irin dabba ake amfani da ita wajen sufuri a Arewacin Najeriya?", + "en_question": "Which animal is typically used for transportation in your country?", + "annotations": [ + { + "answers": [ + "jaki" + ], + "en_answers": [ + "donkey" + ], + "count": 5 + }, + { + "answers": [ + "doki" + ], + "en_answers": [ + "horse" + ], + "count": 4 + }, + { + "answers": [ + "raƙumi", + "rakumi" + ], + "en_answers": [ + "camel" + ], + "count": 3 + }, + { + "answers": [ + "shanu" + ], + "en_answers": [ + "cows" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-72": { + "question": "Wane littafin barkwanci ne yafi shahara don yara su karanta a Arewacin Najeriya?", + "en_question": "What is the most popular comic book for children to read in your country?", + "annotations": [ + { + "answers": [ + "ilya dan me karfi" + ], + "en_answers": [ + "strong elephant" + ], + "count": 1 + }, + { + "answers": [ + "magana jari" + ], + "en_answers": [ + "spoken words are valuable" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-am-73": { + "question": "Wacce tashar YouTube ce ta fi shahara ga yara a Arewacin Najeriya?", + "en_question": "What is the most popular YouTube channel for children in your country?", + "annotations": [ + { + "answers": [ + "arewa 24" + ], + "en_answers": [ + "north 24" + ], + "count": 2 + }, + { + "answers": [ + "cocomelon" + ], + "en_answers": [ + "cocomelon" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-74": { + "question": "Wanne shirin fira ne aka fi so a Arewacin Najeriya?", + "en_question": "What is the most popular talk show in your country?", + "annotations": [ + { + "answers": [ + "zafafa 10" + ], + "en_answers": [ + "top 10" + ], + "count": 1 + }, + { + "answers": [ + "mata a yau" + ], + "en_answers": [ + "women today" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-am-77": { + "question": "Wanne ne babban bukin addini mafi shahara a Arewacin Najeriya?", + "en_question": "What is the most famous religious holiday in your country?", + "annotations": [ + { + "answers": [ + "bikin kistimeti", + "kiristimeti", + "sallah da chrismas", + "bikin kirismeti" + ], + "en_answers": [ + "christmas celebration", + "christmas" + ], + "count": 3 + }, + { + "answers": [ + "karamar sallah", + "sallar idi ƙarama", + "sallar azumi", + "eid ul fitr" + ], + "en_answers": [ + "eid al-fitr" + ], + "count": 2 + }, + { + "answers": [ + "babbar sallah", + "sallah babba" + ], + "en_answers": [ + "eid al-adha" + ], + "count": 2 + }, + { + "answers": [ + "sallar idi" + ], + "en_answers": [ + "eid prayer" + ], + "count": 1 + }, + { + "answers": [ + "eid ul fitr" + ], + "en_answers": [ + "breaking of the fast festival" + ], + "count": 1 + }, + { + "answers": [ + "sallah", + "sallah da chrismas" + ], + "en_answers": [ + "eid" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-81": { + "question": "Wane wata ne watan da aka fi yin aure a Arewacin Najeriya? (Ka bayar da lambobi na Larabci (misali, 1) kawai.)", + "en_question": "What is the busiest month for weddings in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 4 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-am-83": { + "question": "Wanne kayan kiɗa na gargajiya aka fi sani a Arewacin Najeriya?", + "en_question": "What is the most popular traditional musical instrument in your country?", + "annotations": [ + { + "answers": [ + "ganga" + ], + "en_answers": [ + "drum" + ], + "count": 3 + }, + { + "answers": [ + "kalangu" + ], + "en_answers": [ + "drum" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-01": { + "question": "Wanne kayan amfanin gona ne ake nomawa a Arewacin Najeriya?", + "en_question": "What is the main agricultural product produced in your country?", + "annotations": [ + { + "answers": [ + "shinkafa" + ], + "en_answers": [ + "rice" + ], + "count": 3 + }, + { + "answers": [ + "gero" + ], + "en_answers": [ + "millet" + ], + "count": 2 + }, + { + "answers": [ + "dawa" + ], + "en_answers": [ + "guinea corn" + ], + "count": 1 + }, + { + "answers": [ + "alkama" + ], + "en_answers": [ + "wheat" + ], + "count": 1 + }, + { + "answers": [ + "wake" + ], + "en_answers": [ + "beans" + ], + "count": 1 + }, + { + "answers": [ + "gyaɗa" + ], + "en_answers": [ + "peanut" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-as-02": { + "question": "Wanne ne abincin da aka fi so wanda aka yi da alkama a Arewacin Najeriya?", + "en_question": "What is the most popular wheat-based food item in your country?", + "annotations": [ + { + "answers": [ + "funkaso", + "fankaso" + ], + "en_answers": [ + "millet pancake", + "malaria" + ], + "count": 3 + }, + { + "answers": [ + "alkubus", + "al-kubus" + ], + "en_answers": [ + "flatbread", + "bread" + ], + "count": 2 + }, + { + "answers": [ + "alkali" + ], + "en_answers": [ + "judge" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-as-05": { + "question": "Wanne abin sha da aka fi bayarwa ga baƙi idan sun ziyarci gidajen mutane a Arewacin Najeriya?", + "en_question": "What is the most typical drink offered to guests when they visit households in your country?", + "annotations": [ + { + "answers": [ + "ruwa", + "ruwa da lemon zobo" + ], + "en_answers": [ + "water" + ], + "count": 3 + }, + { + "answers": [ + "zobo", + "ruwa da lemon zobo", + "zoɓo" + ], + "en_answers": [ + "hibiscus tea", + "hyena" + ], + "count": 3 + }, + { + "answers": [ + "lemo" + ], + "en_answers": [ + "lemon" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-as-07": { + "question": "Wanne abinci aka fi so wanda aka dafa shi da kifi a Arewacin Najeriya?", + "en_question": "What is the most popular dish cooked with fish in your country?", + "annotations": [ + { + "answers": [ + "dambo", + "dambu" + ], + "en_answers": [ + "boxing", + "a type of meat dish" + ], + "count": 2 + }, + { + "answers": [ + "faten doya" + ], + "en_answers": [ + "fried yam" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-as-14": { + "question": "Wane irin abinci ne mutanen Arewacin Najeriya suka fi so su ci lokacin damina?", + "en_question": "What food do people from your country like to eat during rainy weather?", + "annotations": [ + { + "answers": [ + "doya", + "tuwo" + ], + "en_answers": [ + "yam", + "mashed food" + ], + "count": 2 + }, + { + "answers": [ + "shinkafa" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "gyada" + ], + "en_answers": [ + "groundnut" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-as-15": { + "question": "Wane irin abin sha ake sha a Arewacin Najeriya lokacin da yanayi yayi zafi?", + "en_question": "What drink is commonly consumed in your country when the weather is hot?", + "annotations": [ + { + "answers": [ + "fura" + ], + "en_answers": [ + "millet porridge" + ], + "count": 1 + }, + { + "answers": [ + "ruwa" + ], + "en_answers": [ + "water" + ], + "count": 1 + }, + { + "answers": [ + "ruwan sanyi" + ], + "en_answers": [ + "cold water" + ], + "count": 1 + }, + { + "answers": [ + "fura da nono" + ], + "en_answers": [ + "millet porridge with fermented milk" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-as-20": { + "question": "Wanne wasan cikin gida da aka fi so a Arewacin Najeriya?", + "en_question": "What is the most popular indoor sport in your country?", + "annotations": [ + { + "answers": [ + "kwallon kafa" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "kacici-kacici" + ], + "en_answers": [ + "riddle" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-as-29": { + "question": "Wane irin wasanni maza a Arewacin Najeriya suka fi so su kalla?", + "en_question": "What sport do men in your country like to watch?", + "annotations": [ + { + "answers": [ + "kwallon kafa", + "ƙwallon ƙafa", + "kwollo", + "kwallo" + ], + "en_answers": [ + "football", + "soccer", + "ball" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-30": { + "question": "Wane irin wasanni mata a Arewacin Najeriya suka fi so kallo?", + "en_question": "What sport do women in your country like to watch?", + "annotations": [ + { + "answers": [ + "kwollo" + ], + "en_answers": [ + "ball" + ], + "count": 1 + }, + { + "answers": [ + "wasan fim" + ], + "en_answers": [ + "movie game" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-58": { + "question": "Menene abin sha mafi shahara da mutanen Arewacin Najeriya suka fi so su sha a wurin aikinsu?", + "en_question": "What is the most popular beverage that people from your country like to drink in their workplace?", + "annotations": [ + { + "answers": [ + "fura" + ], + "en_answers": [ + "millet porridge" + ], + "count": 1 + }, + { + "answers": [ + "koko" + ], + "en_answers": [ + "pap" + ], + "count": 1 + }, + { + "answers": [ + "kunu" + ], + "en_answers": [ + "millet or sorghum porridge" + ], + "count": 1 + }, + { + "answers": [ + "shayi" + ], + "en_answers": [ + "tea" + ], + "count": 1 + }, + { + "answers": [ + "zobo" + ], + "en_answers": [ + "hibiscus tea" + ], + "count": 1 + }, + { + "answers": [ + "kunun gyaɗa" + ], + "en_answers": [ + "peanut milk" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-as-64": { + "question": "A wane hutun ne dukkan 'yan uwa sukan hadu a Arewacin Najeriya?", + "en_question": "On which holiday do all family members tend to reunite in your country?", + "annotations": [ + { + "answers": [ + "hutun sallah", + "sallar idi", + "sallah" + ], + "en_answers": [ + "eid holiday", + "eid prayer", + "prayer" + ], + "count": 4 + }, + { + "answers": [ + "hutun kistimeti", + "kirsimeti", + "hutun kirsimeti", + "hutum kirismeti" + ], + "en_answers": [ + "christmas break", + "christmas" + ], + "count": 3 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-as-76": { + "question": "Wane irin wasannin gargajiya ne iyalai suke yi yayin bukukuwan al'adu a Arewacin Najeriya?", + "en_question": "What traditional games do families play during traditional holidays in your country?", + "annotations": [], + "idks": { + "idk": 2, + "no-answer": 2, + "not-applicable": 0 + } + }, + "New-as-80": { + "question": "Wane irin tufafi ne mutanen Arewacin Najeriya ke sanyawa a lokacin bukukuwan al'adu?", + "en_question": "What type of clothing do people from your country wear during traditional festivals?", + "annotations": [ + { + "answers": [ + "shadda" + ], + "en_answers": [ + "richly embroidered fabric" + ], + "count": 3 + }, + { + "answers": [ + "atamfa", + "atamfah" + ], + "en_answers": [ + "fabric" + ], + "count": 2 + }, + { + "answers": [ + "leshi" + ], + "en_answers": [ + "lace" + ], + "count": 1 + }, + { + "answers": [ + "kufatani" + ], + "en_answers": [ + "kaftan" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-as-89": { + "question": "Wane irin kayan ado na gargajiya ne mutanen Arewacin Najeriya ke sakawa a lokacin bukukuwa?", + "en_question": "What traditional festival accessories do people from your country wear?", + "annotations": [ + { + "answers": [ + "zobe" + ], + "en_answers": [ + "ring" + ], + "count": 1 + }, + { + "answers": [ + "sarƙa" + ], + "en_answers": [ + "chain" + ], + "count": 1 + }, + { + "answers": [ + "ɗan kunne" + ], + "en_answers": [ + "earring" + ], + "count": 1 + }, + { + "answers": [ + "gari" + ], + "en_answers": [ + "kaftan" + ], + "count": 1 + }, + { + "answers": [ + "saƙi" + ], + "en_answers": [ + "cap" + ], + "count": 1 + }, + { + "answers": [ + "murjani" + ], + "en_answers": [ + "coral" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-az-05": { + "question": "Wane yanki ne aka fi sani da samar da barasa a Arewacin Najeriya?", + "en_question": "What is the most famous region for alcohol production in your country?", + "annotations": [ + { + "answers": [ + "jos" + ], + "en_answers": [ + "jos" + ], + "count": 1 + }, + { + "answers": [ + "taraba" + ], + "en_answers": [ + "taraba" + ], + "count": 1 + }, + { + "answers": [ + "lagus", + "logos" + ], + "en_answers": [ + "lagos" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-11": { + "question": "Wane irin 'ya'yan itatuwa ne mutanen Arewacin Najeriya sukan ci a lokacin bazara?", + "en_question": "What fruit do people from your country often eat in the summer season?", + "annotations": [ + { + "answers": [ + "rake" + ], + "en_answers": [ + "sugar cane" + ], + "count": 1 + }, + { + "answers": [ + "mangwaro", + "mangoro" + ], + "en_answers": [ + "mango" + ], + "count": 1 + }, + { + "answers": [ + "kanya" + ], + "en_answers": [ + "zucchini" + ], + "count": 1 + }, + { + "answers": [ + "ɗinya" + ], + "en_answers": [ + "daughter" + ], + "count": 1 + }, + { + "answers": [ + "magarya" + ], + "en_answers": [ + "silk cotton tree" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-az-12": { + "question": "Wane yanki a Arewacin Najeriya aka sani da cin halilun ruwa?", + "en_question": "Which region in your country is known for its seafood?", + "annotations": [ + { + "answers": [ + "yobe" + ], + "en_answers": [ + "yobe" + ], + "count": 1 + }, + { + "answers": [ + "argungu" + ], + "en_answers": [ + "a fishing festival" + ], + "count": 1 + }, + { + "answers": [ + "kebbi" + ], + "en_answers": [ + "kebbi" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-az-21": { + "question": "Wane yanki a Arewacin Najeriya ne ya fi shahara a matsayin wurin shakatawa na kankara?", + "en_question": "Which region in your country is the most popular skiing destination?", + "annotations": [ + { + "answers": [ + "yankari game reserve" + ], + "en_answers": [ + "yankari game reserve" + ], + "count": 1 + }, + { + "answers": [ + "gembu" + ], + "en_answers": [ + "mountain" + ], + "count": 1 + }, + { + "answers": [ + "yankari" + ], + "en_answers": [ + "yankari (refers to yankari national park or yankari game reserve)" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-26": { + "question": "Wane ne ɗan wasan dambe mafi shahara a Arewacin Najeriya?", + "en_question": "Who is the most popular martial arts player in your country?", + "annotations": [ + { + "answers": [ + "shagun dan tagayi" + ], + "en_answers": [ + "the number 20" + ], + "count": 1 + }, + { + "answers": [ + "john cena" + ], + "en_answers": [ + "john cena" + ], + "count": 1 + }, + { + "answers": [ + "shago ahmadu" + ], + "en_answers": [ + "ahmadu's shop" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-27": { + "question": "Wane wasa ne ya zama ɗaya daga cikin wasannin da suka fi bunkasa a Arewacin Najeriya cikin shekaru goman da suka gabata?", + "en_question": "Which sport has been one of the fastest-growing in your country over the last decade?", + "annotations": [ + { + "answers": [ + "kwallon kafa", + "kwollo", + "kwallo" + ], + "en_answers": [ + "football", + "ball" + ], + "count": 4 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-az-39": { + "question": "Wace ƙasa ce tafi shahara ga dalibai daga Arewacin Najeriya da ke karatu a kasashen waje?", + "en_question": "Which country is the most popular destination for students from your country studying abroad?", + "annotations": [ + { + "answers": [ + "ingila" + ], + "en_answers": [ + "english" + ], + "count": 2 + }, + { + "answers": [ + "indiya" + ], + "en_answers": [ + "india" + ], + "count": 1 + }, + { + "answers": [ + "malaysia" + ], + "en_answers": [ + "malaysia" + ], + "count": 1 + }, + { + "answers": [ + "england" + ], + "en_answers": [ + "ingila" + ], + "count": 1 + }, + { + "answers": [ + "china" + ], + "en_answers": [ + "china" + ], + "count": 1 + }, + { + "answers": [ + "turkey" + ], + "en_answers": [ + "turkey" + ], + "count": 1 + }, + { + "answers": [ + "uganda" + ], + "en_answers": [ + "uganda" + ], + "count": 1 + }, + { + "answers": [ + "malesiya" + ], + "en_answers": [ + "malaysia" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-49": { + "question": "Mutane nawa ne suke aiki a yawancin iyalai na Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 1) kawai.)", + "en_question": "How many people work in a typical family in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 2 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-az-60": { + "question": "A Arewacin Najeriya, waye ke kula da yara idan duk iyayen suna aiki?", + "en_question": "In your country, who takes care of kids when both parents are working?", + "annotations": [ + { + "answers": [ + "me raino" + ], + "en_answers": [ + "nanny" + ], + "count": 1 + }, + { + "answers": [ + "kaka" + ], + "en_answers": [ + "grandfather" + ], + "count": 1 + }, + { + "answers": [ + "mai aiki" + ], + "en_answers": [ + "worker" + ], + "count": 1 + }, + { + "answers": [ + "babbar yaya" + ], + "en_answers": [ + "elder sister" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-az-69": { + "question": "Wacce giyar ce maza daga Arewacin Najeriya suka fi so?", + "en_question": "What is the preferred alcoholic beverage for men from your country?", + "annotations": [], + "idks": { + "idk": 4, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-az-70": { + "question": "Wacce giyar ce mata a Arewacin Najeriya suka fi so?", + "en_question": "What is the preferred alcoholic beverage for women from your country?", + "annotations": [], + "idks": { + "idk": 4, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-az-73": { + "question": "Adadin mutanen nawa su suka saba halartar bikin aure a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 1) kawai.)", + "en_question": "How many people on average typically attend a wedding in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "100" + ], + "en_answers": [ + "100" + ], + "count": 2 + }, + { + "answers": [ + "150" + ], + "en_answers": [ + "150" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ch-01": { + "question": "Wane irin nama mutane sukan ci lokacin da suke yin gashin nama a Arewacin Najeriya?", + "en_question": "What kind of meat do people usually eat when they have barbecue in your country?", + "annotations": [ + { + "answers": [ + "naman rago", + "rago" + ], + "en_answers": [ + "sheep meat", + "sheep" + ], + "count": 3 + }, + { + "answers": [ + "naman sa", + "nama sa", + "sa" + ], + "en_answers": [ + "cow meat", + "cow" + ], + "count": 3 + }, + { + "answers": [ + "kaza", + "naman kaji" + ], + "en_answers": [ + "chicken", + "chicken meat" + ], + "count": 2 + }, + { + "answers": [ + "naman tafi" + ], + "en_answers": [ + "takeaway meat" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-02": { + "question": "Yaushe mutane sukan yi karin kumallo a Arewacin Najeriya? (Ka bayar da shi a tsarin HH:MM (misali, 18:00, 09:00).)", + "en_question": "When do people usually have breakfast in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:00" + ], + "en_answers": [ + "8:00" + ], + "count": 4 + }, + { + "answers": [ + "10:00" + ], + "en_answers": [ + "10:00" + ], + "count": 2 + }, + { + "answers": [ + "09:00" + ], + "en_answers": [ + "9:00" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-04": { + "question": "Wane irin abinci mutane sukan ci a matsayin abun ciye-ciye da daddare a Arewacin Najeriya?", + "en_question": "What kinds of food do people usually eat for late-night snacks in your country?", + "annotations": [ + { + "answers": [ + "awara" + ], + "en_answers": [ + "fried bean cake" + ], + "count": 3 + }, + { + "answers": [ + "tsire" + ], + "en_answers": [ + "grilled meat" + ], + "count": 1 + }, + { + "answers": [ + "gyada" + ], + "en_answers": [ + "groundnut" + ], + "count": 1 + }, + { + "answers": [ + "shawarma" + ], + "en_answers": [ + "shawarma" + ], + "count": 1 + }, + { + "answers": [ + "gurasa" + ], + "en_answers": [ + "flatbread" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-05": { + "question": "Menene abinci mai yaji da yafi kowane shahara a Arewacin Najeriya?", + "en_question": "What is the most famous spicy dish in your country?", + "annotations": [ + { + "answers": [ + "dan wake", + "dan wanke" + ], + "en_answers": [ + "bean dumplings" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ch-07": { + "question": "Wadanne abinci ne mutane sukan hada da giya mai karfi a Arewacin Najeriya?", + "en_question": "What food items do people typically pair with hard liquor in your country?", + "annotations": [], + "idks": { + "idk": 4, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-ch-08": { + "question": "Wane kayan kamshi ne ba za a iya yin girki ba tare da shi ba a Arewacin Najeriya?", + "en_question": "What seasoning is indispensable in cooking in your country?", + "annotations": [ + { + "answers": [ + "sinadari ɗanɗano" + ], + "en_answers": [ + "flavor ingredient" + ], + "count": 1 + }, + { + "answers": [ + "gishiri" + ], + "en_answers": [ + "salt" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ch-09": { + "question": "Wane irin abinci mutane ke ci akasari lokacin da yanayi ya yi sanyi a Arewacin Najeriya?", + "en_question": "What food do people typically consume when the weather is cold in your country?", + "annotations": [ + { + "answers": [ + "waina" + ], + "en_answers": [ + "pan cake" + ], + "count": 1 + }, + { + "answers": [ + "masa" + ], + "en_answers": [ + "rice cake" + ], + "count": 1 + }, + { + "answers": [ + "mai zafi" + ], + "en_answers": [ + "hot" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-13": { + "question": "Menene mashahurin irin giya a Arewacin Najeriya?", + "en_question": "What is the most famous alcohol brand in your country?", + "annotations": [], + "idks": { + "idk": 4, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-ch-14": { + "question": "Wadanne abinci mutane sukan ci lokacin da suke rashin lafiya a Arewacin Najeriya?", + "en_question": "What foods do people usually eat when they are sick in your country?", + "annotations": [ + { + "answers": [ + "kayan marmari" + ], + "en_answers": [ + "fruits" + ], + "count": 2 + }, + { + "answers": [ + "gurasa" + ], + "en_answers": [ + "flatbread" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-15": { + "question": "Wane irin abinci da aka riga aka shirya/abinci da za a iya ci kai tsaye ne mutane sukan saya a manyan shagunan sayar da kayayyaki a Arewacin Najeriya?", + "en_question": "What prepared/ready-to-eat food do people typically buy at supermarkets in your country?", + "annotations": [ + { + "answers": [ + "cin-cin" + ], + "en_answers": [ + "chin-chin" + ], + "count": 1 + }, + { + "answers": [ + "gurasa" + ], + "en_answers": [ + "flatbread" + ], + "count": 1 + }, + { + "answers": [ + "dambu" + ], + "en_answers": [ + "a type of meat dish" + ], + "count": 1 + }, + { + "answers": [ + "masa" + ], + "en_answers": [ + "rice cake" + ], + "count": 1 + }, + { + "answers": [ + "biskit" + ], + "en_answers": [ + "biscuit" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-16": { + "question": "Menene fim din wasanni da ya fi shahara a Arewacin Najeriya?", + "en_question": "What is the most famous sports-related movie in your country?", + "annotations": [ + { + "answers": [ + "labarina" + ], + "en_answers": [ + "my story" + ], + "count": 1 + }, + { + "answers": [ + "kwana chassa'in" + ], + "en_answers": [ + "ninety days" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ch-17": { + "question": "Wane irin wasan tsalle-tsalle ne mutane suka fi son gwadawa a Najeriya?", + "en_question": "What extreme sport do people generally wish to try the most in your country?", + "annotations": [ + { + "answers": [ + "tsalle" + ], + "en_answers": [ + "jump" + ], + "count": 1 + }, + { + "answers": [ + "restilin" + ], + "en_answers": [ + "wrestling" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ch-18": { + "question": "Wane wasan guje-guje da tsalle-tsalle ne aka fi so kallo a lokacin gasa a Arewacin Najeriya?", + "en_question": "Which track and field event is the most popular to watch during competitions in your country?", + "annotations": [ + { + "answers": [ + "gudu" + ], + "en_answers": [ + "race" + ], + "count": 2 + }, + { + "answers": [ + "gudun tsere" + ], + "en_answers": [ + "running race" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ch-19": { + "question": "Wane wasan motsa jiki ne aka fi so a kallo a lokacin gasa a Arewacin Najeriya?", + "en_question": "Which gymnastics event is the most popular to watch during competitions in your country?", + "annotations": [ + { + "answers": [ + "kwallon kafa", + "kwollo", + "kwallo" + ], + "en_answers": [ + "ball", + "football" + ], + "count": 3 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ch-23": { + "question": "Wane ne dan wasan ƙwallon tebur da ya fi shahara a Arewacin Najeriya?", + "en_question": "Who is the most famous table tennis player in your country?", + "annotations": [], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-26": { + "question": "A gasar Olympics ta hunturu, wane wasa ne ya fi shahara a kallo a Arewacin Najeriya?", + "en_question": "In the Winter Olympics, which event is the most popular to watch in your country?", + "annotations": [ + { + "answers": [ + "kwallon kafa", + "kwollo" + ], + "en_answers": [ + "ball" + ], + "count": 1 + }, + { + "answers": [ + "gudun kankara" + ], + "en_answers": [ + "ice skating" + ], + "count": 1 + }, + { + "answers": [ + "kwallo" + ], + "en_answers": [ + "ball" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-ch-27": { + "question": "Wane ne zakaran dambe mafi shahara a Arewacin Najeriya?", + "en_question": "Who is the most famous boxer in your country?", + "annotations": [ + { + "answers": [ + "muhammad ali" + ], + "en_answers": [ + "muhammad ali" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-30": { + "question": "Wane ne dan wasan guje-guje da tsalle-tsalle mafi shahara a Arewacin Najeriya?", + "en_question": "Who is the most famous track and field athlete in your country?", + "annotations": [ + { + "answers": [ + "teslim balogun" + ], + "en_answers": [ + "teslim balogun" + ], + "count": 1 + }, + { + "answers": [ + "hussain bolt" + ], + "en_answers": [ + "hussain bolt" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-31": { + "question": "Wane irin aiki ne iyaye suka fi so 'ya'yansu su yi a Arewacin Najeriya?", + "en_question": "What job do parents most hope their children will pursue in your country?", + "annotations": [ + { + "answers": [ + "likitanci", + "likita" + ], + "en_answers": [ + "doctor", + "medicine" + ], + "count": 2 + }, + { + "answers": [ + "aikin gwamnati" + ], + "en_answers": [ + "government job" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-32": { + "question": "Wane irin software na ofis ne mutane sukan yi amfani da shi a wuraren aiki a Arewacin Najeriya?", + "en_question": "What office software do people typically use in the workplace in your country?", + "annotations": [ + { + "answers": [ + "microsoft office" + ], + "en_answers": [ + "ofishin microsoft" + ], + "count": 1 + }, + { + "answers": [ + "excel" + ], + "en_answers": [ + "fice" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ch-38": { + "question": "Wadanne birane ko yankuna ne aka sani da ayyukan shigowa da fitarwa a Arewacin Najeriya?", + "en_question": "Which cities or regions are known for their import and export activities in your country?", + "annotations": [ + { + "answers": [ + "kano" + ], + "en_answers": [ + "kano" + ], + "count": 2 + }, + { + "answers": [ + "china" + ], + "en_answers": [ + "china" + ], + "count": 1 + }, + { + "answers": [ + "dubai" + ], + "en_answers": [ + "twenty" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ch-39": { + "question": "Wane dandali ake amfani da shi sosai a masana'antar kasuwanci ta yanar gizo a Arewacin Najeriya?", + "en_question": "What platform is commonly used in the e-commerce industry in your country?", + "annotations": [ + { + "answers": [ + "fasbuk", + "facebook", + "fesbok" + ], + "en_answers": [ + "facebook" + ], + "count": 3 + }, + { + "answers": [ + "instagram", + "insagiram" + ], + "en_answers": [ + "i agree", + "instagram" + ], + "count": 2 + }, + { + "answers": [ + "whatsaapp", + "watsaf", + "whatsapp" + ], + "en_answers": [ + "evening", + "whatsapp" + ], + "count": 2 + }, + { + "answers": [ + "ali express" + ], + "en_answers": [ + "ali express" + ], + "count": 1 + }, + { + "answers": [ + "tiktok" + ], + "en_answers": [ + "tiktok" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-44": { + "question": "Menene tsawon lokacin gwaji na yau da kullun ga sabbin ma'aikata kafin su sanya hannu kan kwangila na dindindin a Arewacin Najeriya? (misali, wata 1).", + "en_question": "How long is the typical probation period for new employees before signing a formal contract in your country? (e.g., 1 month).", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ch-45": { + "question": "Wadanne masana'antu matasa suka fi zaba don fara kasuwanci a Arewacin Najeriya?", + "en_question": "Which industries do young people typically choose to start businesses in your country?", + "annotations": [ + { + "answers": [ + "ɗinki" + ], + "en_answers": [ + "sewing" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ch-49": { + "question": "Menene hanyar da ƴan'uwa suka fi amfani da ita wurin sadarwa ta nesa a Arewacin Najeriya?", + "en_question": "What is the most common way for family members to communicate remotely in your country?", + "annotations": [ + { + "answers": [ + "whatsapp", + "watsaf", + "was'af" + ], + "en_answers": [ + "evening", + "whatsapp", + "description" + ], + "count": 3 + }, + { + "answers": [ + "waya", + "phone call", + "wayar salula" + ], + "en_answers": [ + "phone", + "kira", + "mobile phone" + ], + "count": 3 + }, + { + "answers": [ + "yanar gizo" + ], + "en_answers": [ + "website" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-51": { + "question": "Wane irin masauki ake yawan tanada saboda tafiye-tafiyen iyali a Arewacin Najeriya?", + "en_question": "What form of accommodation is typically booked for family trips in your country?", + "annotations": [ + { + "answers": [ + "otel" + ], + "en_answers": [ + "hotel" + ], + "count": 2 + }, + { + "answers": [ + "daki" + ], + "en_answers": [ + "room" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-54": { + "question": "Wane irin 'ya'yan itace ake shirya wa sosai don cin abincin dare a gidajen Arewacin Najeriya?", + "en_question": "Which fruit is usually prepared the most for family dinners in your country?", + "annotations": [ + { + "answers": [ + "kankana" + ], + "en_answers": [ + "watermelon" + ], + "count": 3 + }, + { + "answers": [ + "abarba" + ], + "en_answers": [ + "pineapple" + ], + "count": 1 + }, + { + "answers": [ + "lemon zaki", + "lemo" + ], + "en_answers": [ + "lemon" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-64": { + "question": "Adadin sa'o'i nawa daliban jami'a ke samu na azuzuwa a kowane mako a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 1) kawai.)", + "en_question": "How many hours of classes do university students typically have per week in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 2 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 2 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-66": { + "question": "Nawa ne kudin makaranta na yau da kullum a kowane zangon karatu ga makarantun sakandare na gwamnati a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 1) kawai.)", + "en_question": "What is the typical tuition fee per semester for public high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "5000" + ], + "en_answers": [ + "5000" + ], + "count": 1 + }, + { + "answers": [ + "2000" + ], + "en_answers": [ + "2000" + ], + "count": 1 + }, + { + "answers": [ + "3000" + ], + "en_answers": [ + "3000" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-70": { + "question": "Wadanne darussa ne daliban jami'a ke dauka dole a Arewacin Najeriya?", + "en_question": "What compulsory courses do university students have in common in your country?", + "annotations": [ + { + "answers": [ + "gst", + "gns" + ], + "en_answers": [ + "general studies" + ], + "count": 2 + }, + { + "answers": [ + "kasuwanci" + ], + "en_answers": [ + "business" + ], + "count": 1 + }, + { + "answers": [ + "zaman lafiya da magance tarzoma" + ], + "en_answers": [ + "peaceful coexistence and conflict resolution" + ], + "count": 1 + }, + { + "answers": [ + "ilimin kasa" + ], + "en_answers": [ + "geography" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-71": { + "question": "Menene matsakaicin girman aji a makarantun sakandare a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 1) kawai.)", + "en_question": "What is the average class size in high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ch-72": { + "question": "Wane fanni ake ganin yafi samar da aikin yi a Arewacin Najeriya?", + "en_question": "Which major is considered most conducive to employment in your country?", + "annotations": [ + { + "answers": [ + "lafiya" + ], + "en_answers": [ + "health" + ], + "count": 2 + }, + { + "answers": [ + "kimiyya" + ], + "en_answers": [ + "science" + ], + "count": 1 + }, + { + "answers": [ + "fasaha" + ], + "en_answers": [ + "technology" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-73": { + "question": "Wane irin kungiyoyi ne suka fi shahara tsakanin daliban jami'a a Arewacin Najeriya?", + "en_question": "What type of clubs are most popular among university students in your country?", + "annotations": [ + { + "answers": [ + "sug" + ], + "en_answers": [ + "water" + ], + "count": 2 + }, + { + "answers": [ + "mssn" + ], + "en_answers": [ + "mission" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ch-74": { + "question": "Wane irin masauki daliban jami'a a Arewacin Najeriya sukan zauna a ciki?", + "en_question": "What types of accommodation do university students in your country typically live in?", + "annotations": [ + { + "answers": [ + "ɗakin kwanan ɗalibai", + "dakunan dalibai", + "hostel" + ], + "en_answers": [ + "student dormitory", + "student rooms", + "dakin kwanan dalibai" + ], + "count": 3 + }, + { + "answers": [ + "gida a wajen makaranta" + ], + "en_answers": [ + "home outside school" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-75": { + "question": "Menene tsawon kowanne lokacin darasi ga daliban makarantar sakandire a Arewacin Najeriya (mintuna)? (Ka bayar da lambobin Larabci (misali, 1) kawai.)", + "en_question": "How long is each class period for middle school students in your country (minutes)? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "60", + "1" + ], + "en_answers": [ + "60" + ], + "count": 3 + }, + { + "answers": [ + "45" + ], + "en_answers": [ + "45" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-78": { + "question": "Wadanne irin ayyukan hutu matan da suka yi ritaya suka fi so a Arewacin Najeriya?", + "en_question": "What leisure activities do retired women typically like in your country?", + "annotations": [ + { + "answers": [ + "sana'a" + ], + "en_answers": [ + "business" + ], + "count": 1 + }, + { + "answers": [ + "noma" + ], + "en_answers": [ + "farming" + ], + "count": 1 + }, + { + "answers": [ + "kiwo" + ], + "en_answers": [ + "herding" + ], + "count": 1 + }, + { + "answers": [ + "ziyara" + ], + "en_answers": [ + "visit" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ch-79": { + "question": "Wane irin abubuwan shaƙatawa ne maza da suka yi ritaya sukan so a Arewacin Najeriya?", + "en_question": "What leisure activities do retired men typically like in your country?", + "annotations": [ + { + "answers": [ + "karatun jarida", + "karanta jarida" + ], + "en_answers": [ + "newspaper reading", + "read newspaper" + ], + "count": 3 + }, + { + "answers": [ + "yawon bude ido" + ], + "en_answers": [ + "tourism" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ch-80": { + "question": "A wane lokutan bukukuwa ne mutane sukan ziyarci wuraren ibada (haikali, coci-coci, da sauransu) a Arewacin Najeriya?", + "en_question": "During which holidays do people typically visit religious sites (temples, churches, etc.) in your country?", + "annotations": [ + { + "answers": [ + "bikin sallah", + "sallar idi", + "lokutan sallah" + ], + "en_answers": [ + "eid celebration", + "eid prayer", + "prayer times" + ], + "count": 4 + }, + { + "answers": [ + "kirismeti", + "bikin kirismeti" + ], + "en_answers": [ + "christmas", + "christmas celebration" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-81": { + "question": "Menene kyaututtukan da ake bayarwa na sabon gida a Arewacin Najeriya?", + "en_question": "What are the typical housewarming gifts in your country?", + "annotations": [], + "idks": { + "idk": 3, + "no-answer": 2, + "not-applicable": 0 + } + }, + "New-ch-82": { + "question": "A wane lokaci ne aure ke farawa a Arewacin Najeriya? (Ka bayar da shi a tsarin HH:MM misali, 18:00, 09:00).", + "en_question": "At what time do weddings typically start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "10:00" + ], + "en_answers": [ + "10:00" + ], + "count": 1 + }, + { + "answers": [ + "16:00", + "04:00" + ], + "en_answers": [ + "16:00" + ], + "count": 1 + }, + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-83": { + "question": "Wane gari ne a Arewacin Najeriya ya fi yin bukukuwa?", + "en_question": "Which city in your country hosts festivals the most?", + "annotations": [ + { + "answers": [ + "kano", + "garin kano" + ], + "en_answers": [ + "kano", + "city of kano" + ], + "count": 3 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-84": { + "question": "Wane launi na tufafi ne mutane sukan saka yayin halartar bikin aure a Arewacin Najeriya?", + "en_question": "What color of clothing do people typically wear when attending weddings in your country?", + "annotations": [ + { + "answers": [ + "fari", + "farare" + ], + "en_answers": [ + "white" + ], + "count": 2 + }, + { + "answers": [ + "tufafin al-ada" + ], + "en_answers": [ + "traditional clothes" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-85": { + "question": "Wane launi na tufafi mutane sukan saka lokacin da suke halartar jana'izah a Arewacin Najeriya?", + "en_question": "What color of clothing do people typically wear when attending funerals in your country?", + "annotations": [ + { + "answers": [ + "baƙi" + ], + "en_answers": [ + "guests" + ], + "count": 1 + }, + { + "answers": [ + "jumper da hula" + ], + "en_answers": [ + "jumper and hat" + ], + "count": 1 + }, + { + "answers": [ + "farare" + ], + "en_answers": [ + "white" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-01": { + "question": "Wane irin abincin motsa baki ake ci a gidan kallo a Arewacin Najeriya?", + "en_question": "Which snack is eaten in the cinema in your country?", + "annotations": [ + { + "answers": [ + "gurguru", + "gurguro" + ], + "en_answers": [ + "popcorn" + ], + "count": 1 + }, + { + "answers": [ + "rake" + ], + "en_answers": [ + "sugar cane" + ], + "count": 1 + }, + { + "answers": [ + "gyada" + ], + "en_answers": [ + "groundnut" + ], + "count": 1 + }, + { + "answers": [ + "dankali" + ], + "en_answers": [ + "potato" + ], + "count": 1 + }, + { + "answers": [ + "awara" + ], + "en_answers": [ + "fried bean cake" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-en-02": { + "question": "Wane irin dandanon kwakwa/chips ne aka fi so a Arewacin Najeriya?", + "en_question": "What is the most popular chip/crisp flavour in your country?", + "annotations": [ + { + "answers": [ + "gishiri", + "me gishiri" + ], + "en_answers": [ + "salt", + "salty" + ], + "count": 2 + }, + { + "answers": [ + "vanilla" + ], + "en_answers": [ + "vanilla" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-en-04": { + "question": "Wane ne shahararren mai dafa abinci a Arewacin Najeriya?", + "en_question": "Who is a popular celebrity chef in your country?", + "annotations": [ + { + "answers": [ + "aisha gwadabe" + ], + "en_answers": [ + "aisha gwadabe" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-en-05": { + "question": "Wane abinci ne mai saukin kudi da kuma saurin hadawa a Arewacin Najeriya?", + "en_question": "Which food is a cost-effective and quick meal option in your country?", + "annotations": [ + { + "answers": [ + "taliya" + ], + "en_answers": [ + "spaghetti" + ], + "count": 2 + }, + { + "answers": [ + "garin kwaki" + ], + "en_answers": [ + "corn flour" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-07": { + "question": "Menene shirye-shiryen girki da suka fi shahara a Arewacin Najeriya?", + "en_question": "What are the most popular cooking shows in your country?", + "annotations": [ + { + "answers": [ + "akushi da rufi", + "akushi da rufe" + ], + "en_answers": [ + "complete package", + "complete set of cooking pot" + ], + "count": 4 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-08": { + "question": "Wane irin alawar cakulan ne aka fi so a Arewacin Najeriya?", + "en_question": "What is the most popular chocolate brand in your country?", + "annotations": [ + { + "answers": [ + "gudi-gudi" + ], + "en_answers": [ + "merry-go-round" + ], + "count": 1 + }, + { + "answers": [ + "bounty" + ], + "en_answers": [ + "reward" + ], + "count": 1 + }, + { + "answers": [ + "roxy" + ], + "en_answers": [ + "understand" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-en-10": { + "question": "Wane irin cuku ne aka fi ci a Arewacin Najeriya?", + "en_question": "What is the most eaten cheese in your country?", + "annotations": [ + { + "answers": [ + "bushashshiyar cuku" + ], + "en_answers": [ + "spoiled cheese" + ], + "count": 1 + }, + { + "answers": [ + "na sokoto" + ], + "en_answers": [ + "of sokoto" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-en-11": { + "question": "Wane kayan lambu ne aka fi kin su a Arewacin Najeriya?", + "en_question": "What is the most disliked vegetable in your country?", + "annotations": [ + { + "answers": [ + "yakuwa" + ], + "en_answers": [ + "sorrel" + ], + "count": 2 + }, + { + "answers": [ + "alayyahu" + ], + "en_answers": [ + "cucumber" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-en-12": { + "question": "Wane irin abinci ne aka fi samu a wuraren cin abinci a Arewacin Najeriya?", + "en_question": "What food is most commonly found in food courts in your country?", + "annotations": [ + { + "answers": [ + "shinkafa" + ], + "en_answers": [ + "rice" + ], + "count": 3 + }, + { + "answers": [ + "alala" + ], + "en_answers": [ + "pudding" + ], + "count": 1 + }, + { + "answers": [ + "tuwo" + ], + "en_answers": [ + "mashed food" + ], + "count": 1 + }, + { + "answers": [ + "shinkafa da miya" + ], + "en_answers": [ + "rice and sauce" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-17": { + "question": "Menene kayan aikin kara da magoya bayan wasanni ke amfani da su a Arewacin Najeriya?", + "en_question": "What are the most common cheering tools used by sports fans in your country?", + "annotations": [ + { + "answers": [ + "kwallo" + ], + "en_answers": [ + "ball" + ], + "count": 2 + }, + { + "answers": [ + "tutar kungiya" + ], + "en_answers": [ + "organization's flag" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-18": { + "question": "Me magoya baya ke tafiya da shi lokacin da suke halartar wasan kai tsaye a Arewacin Najeriya?", + "en_question": "What do fans bring with them when attending a live game in your country?", + "annotations": [ + { + "answers": [ + "tutar ƙasa", + "tutar kasa" + ], + "en_answers": [ + "national flag" + ], + "count": 2 + }, + { + "answers": [ + "kayan kida" + ], + "en_answers": [ + "musical instruments" + ], + "count": 1 + }, + { + "answers": [ + "sarewa" + ], + "en_answers": [ + "flute" + ], + "count": 1 + }, + { + "answers": [ + "kalar kayan 'yan wasa" + ], + "en_answers": [ + "color of players' kits" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-19": { + "question": "Wane filin wasa ne aka fi sani a Arewacin Najeriya?", + "en_question": "What is the most well known sporting stadium in your country?", + "annotations": [ + { + "answers": [ + "sani abacha" + ], + "en_answers": [ + "sani abacha" + ], + "count": 2 + }, + { + "answers": [ + "kano pillers" + ], + "en_answers": [ + "kano pillars" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-23": { + "question": "Wane ne shahararren dan wasan Paralympic a Arewacin Najeriya?", + "en_question": "Who is the most famous Paralympian in your country?", + "annotations": [], + "idks": { + "idk": 4, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-en-26": { + "question": "Menene taken wasanni da aka fi sani a Arewacin Najeriya?", + "en_question": "What is the best recognized sporting chant in your country?", + "annotations": [ + { + "answers": [ + "kwallon kafa" + ], + "en_answers": [ + "football" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-38": { + "question": "Wadanne masana'antu aka fi sani da samun lokutan aiki masu sassauci a Arewacin Najeriya?", + "en_question": "Which industries are known for more flexible working hours in your country?", + "annotations": [ + { + "answers": [ + "jami'a" + ], + "en_answers": [ + "university" + ], + "count": 1 + }, + { + "answers": [ + "masana'antun masu zaman kansu" + ], + "en_answers": [ + "private industries" + ], + "count": 1 + }, + { + "answers": [ + "kedco" + ], + "en_answers": [ + "kano electricity distribution company" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-en-41": { + "question": "Wane ne ɗan kasuwa mafi shahara da nasara a Arewacin Najeriya?", + "en_question": "Who is the most well known and successful entrepreneur in your country?", + "annotations": [ + { + "answers": [ + "aliko dangote", + "dangote", + "ɗangote", + "aliko" + ], + "en_answers": [ + "aliko dangote", + "wealthy", + "blood relative", + "wealth" + ], + "count": 5 + }, + { + "answers": [ + "abdulsamad rabiu" + ], + "en_answers": [ + "abdulsamad rabiu" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-47": { + "question": "Me ake samu a lambun bayan gidaje a Arewacin Najeriya?", + "en_question": "What can typically be found in the back garden of houses in your country?", + "annotations": [ + { + "answers": [ + "zogale" + ], + "en_answers": [ + "moringa" + ], + "count": 2 + }, + { + "answers": [ + "tumatur" + ], + "en_answers": [ + "tomato" + ], + "count": 2 + }, + { + "answers": [ + "albasa" + ], + "en_answers": [ + "onion" + ], + "count": 1 + }, + { + "answers": [ + "salak" + ], + "en_answers": [ + "salad" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-49": { + "question": "Menene sunan iyalan da suka fi shahara a Arewacin Najeriya?", + "en_question": "What is the name of the most famous family in your country?", + "annotations": [ + { + "answers": [ + "dantata" + ], + "en_answers": [ + "wealthy person" + ], + "count": 2 + }, + { + "answers": [ + "dangote" + ], + "en_answers": [ + "wealthy" + ], + "count": 2 + }, + { + "answers": [ + "indimi" + ], + "en_answers": [ + "languages" + ], + "count": 1 + }, + { + "answers": [ + "ado bayaro" + ], + "en_answers": [ + "ado bayero" + ], + "count": 1 + }, + { + "answers": [ + "isyaka rabi'u" + ], + "en_answers": [ + "isyaka rabi'u" + ], + "count": 1 + }, + { + "answers": [ + "ɗahiru usman bauchi" + ], + "en_answers": [ + "dahiru usman bauchi" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-en-50": { + "question": "Menene sunan iyalan da aka fi sani a Arewacin Najeriya?", + "en_question": "What is the most common family name in your country?", + "annotations": [ + { + "answers": [ + "dangote" + ], + "en_answers": [ + "wealthy" + ], + "count": 2 + }, + { + "answers": [ + "dantata", + "ɗantata" + ], + "en_answers": [ + "wealthy person" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-en-55": { + "question": "Wanne addini ne yafi yawaita tsakanin iyalai a Arewacin Najeriya?", + "en_question": "Which religion is most commonly practiced by families in your country?", + "annotations": [ + { + "answers": [ + "musulunci" + ], + "en_answers": [ + "islam" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-56": { + "question": "Wane ne yaren wajen da ake magana da shi yafi shahara a tsakanin iyalai a Arewacin Najeriya?", + "en_question": "What is the most popular foreign language spoken by families in your country?", + "annotations": [ + { + "answers": [ + "hausa" + ], + "en_answers": [ + "hausa" + ], + "count": 2 + }, + { + "answers": [ + "turanci" + ], + "en_answers": [ + "english" + ], + "count": 2 + }, + { + "answers": [ + "larabci" + ], + "en_answers": [ + "arabic" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-59": { + "question": "Wace ƙasa ce ta fi shahara a matsayin inda iyalai daga Arewacin Najeriya ke ƙaura zuwa ita?", + "en_question": "Which country is the most popular destination for families from your country to emigrate to?", + "annotations": [ + { + "answers": [ + "kano" + ], + "en_answers": [ + "kano" + ], + "count": 1 + }, + { + "answers": [ + "katsina" + ], + "en_answers": [ + "katsina" + ], + "count": 1 + }, + { + "answers": [ + "england" + ], + "en_answers": [ + "ingila" + ], + "count": 1 + }, + { + "answers": [ + "dubai" + ], + "en_answers": [ + "twenty" + ], + "count": 1 + }, + { + "answers": [ + "saudi arabia" + ], + "en_answers": [ + "saudiyya" + ], + "count": 1 + }, + { + "answers": [ + "niger" + ], + "en_answers": [ + "niger" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-en-68": { + "question": "Wane irin sakamako ne ke akwai ga halayen banza a makarantun Arewacin Najeriya?", + "en_question": "What repercussions are there for bad behavior in schools in your country?", + "annotations": [ + { + "answers": [ + "kora" + ], + "en_answers": [ + "expel" + ], + "count": 3 + }, + { + "answers": [ + "shara" + ], + "en_answers": [ + "sweep" + ], + "count": 1 + }, + { + "answers": [ + "wankin banɗaƙi" + ], + "en_answers": [ + "washing toilet" + ], + "count": 1 + }, + { + "answers": [ + "dakatarwa" + ], + "en_answers": [ + "suspension" + ], + "count": 1 + }, + { + "answers": [ + "bulala" + ], + "en_answers": [ + "whip" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-69": { + "question": "Wadanne marubuta ake karantawa a aji na adabin Arewacin Najeriya?", + "en_question": "Which writers are commonly studied in literature class in your country?", + "annotations": [ + { + "answers": [ + "abubakar imam" + ], + "en_answers": [ + "abubakar imam" + ], + "count": 1 + }, + { + "answers": [ + "abubakar gimba" + ], + "en_answers": [ + "abubakar gimba" + ], + "count": 1 + }, + { + "answers": [ + "abdulaziz sani madaki" + ], + "en_answers": [ + "abdulaziz sani madaki" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-en-70": { + "question": "Sau nawa ake hutun makarantun sakandare a shekara guda a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 1) kawai.)", + "en_question": "How many school breaks are there in a year for high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 4 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-72": { + "question": "Wane kayan karatun yanar gizo ne dalibai ke amfani da su akai-akai don karatu a Arewacin Najeriya?", + "en_question": "Which online resource do students usually use to study in your country?", + "annotations": [ + { + "answers": [ + "google" + ], + "en_answers": [ + "google" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-en-75": { + "question": "Menene matsakaicin tsawon lokacin zangon karatu a jami'o'in Arewacin Najeriya a makonni? (Ka bayar da lambobin Larabci (misali, 1) kawai.)", + "en_question": "What is the average length of a semester in terms of weeks of teaching at universities in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 2 + }, + { + "answers": [ + "16" + ], + "en_answers": [ + "16" + ], + "count": 1 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-76": { + "question": "Wane filin jirgin sama ne a Arewacin Najeriya yake da cunkoso sosai a lokacin hutun?", + "en_question": "Which airport in your country is the busiest during the holiday season?", + "annotations": [ + { + "answers": [ + "malam aminu kano", + "aminu kano" + ], + "en_answers": [ + "malam aminu kano", + "aminu kano" + ], + "count": 3 + }, + { + "answers": [ + "filin jirgin nnamdi azikiwe" + ], + "en_answers": [ + "nnamdi azikiwe airport" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-79": { + "question": "Wane yanki na Arewacin Najeriya aka fi sani da wasan kwaikwayo?", + "en_question": "Which region of your country is well known for its theatrical performances?", + "annotations": [ + { + "answers": [ + "kano" + ], + "en_answers": [ + "kano" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-87": { + "question": "Wanne wurin tarihi ne mafi shaharara a Arewacin Najeriya?", + "en_question": "What is the most famous historic landmark in your country?", + "annotations": [ + { + "answers": [ + "gidan makama" + ], + "en_answers": [ + "king's palace" + ], + "count": 3 + }, + { + "answers": [ + "rijiyar kusugu" + ], + "en_answers": [ + "well of kusugu" + ], + "count": 1 + }, + { + "answers": [ + "gidan bayajidda" + ], + "en_answers": [ + "house of bayajidda" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-en-90": { + "question": "Menene mafi shahararren sunan otal a Arewacin Najeriya?", + "en_question": "What is the most famous hotel brand in your country?", + "annotations": [ + { + "answers": [ + "daula otal" + ], + "en_answers": [ + "palace hotel" + ], + "count": 1 + }, + { + "answers": [ + "bristol", + "britol" + ], + "en_answers": [ + "bottle" + ], + "count": 1 + }, + { + "answers": [ + "tahir" + ], + "en_answers": [ + "pure" + ], + "count": 1 + }, + { + "answers": [ + "5 star" + ], + "en_answers": [ + "tawurin taurari biyar" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-gr-05": { + "question": "Wanne zabin karin kumallo ne nace dandanan ya fi shahara a Arewacin Najeriya?", + "en_question": "What is the most popular grab-and-go breakfast option in your country?", + "annotations": [ + { + "answers": [ + "koko da kosai", + "koko da ƙosai" + ], + "en_answers": [ + "pap and bean cake" + ], + "count": 3 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-gr-06": { + "question": "Wanne abincin da aka fi so a Arewacin Najeriya tsakanin matasa?", + "en_question": "What is the most popular food in your country among young people?", + "annotations": [ + { + "answers": [ + "shinkafa da wake" + ], + "en_answers": [ + "rice and beans" + ], + "count": 3 + }, + { + "answers": [ + "masa" + ], + "en_answers": [ + "rice cake" + ], + "count": 1 + }, + { + "answers": [ + "ɗan wake" + ], + "en_answers": [ + "bean dumplings" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-gr-08": { + "question": "Wane irin giya ce aka fi sha a bukukuwan Arewacin Najeriya?", + "en_question": "What type of alcoholic drink is most commonly consumed at festivals in your country?", + "annotations": [ + { + "answers": [ + "burkutu" + ], + "en_answers": [ + "local beer" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-gr-13": { + "question": "Wanne ne abin sha da aka saba sha da safe a Arewacin Najeriya?", + "en_question": "What is the most common morning drink in your country?", + "annotations": [ + { + "answers": [ + "kunu" + ], + "en_answers": [ + "millet or sorghum porridge" + ], + "count": 4 + }, + { + "answers": [ + "shayi" + ], + "en_answers": [ + "tea" + ], + "count": 3 + }, + { + "answers": [ + "koko" + ], + "en_answers": [ + "pap" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-15": { + "question": "Menene shahararren kayan zaki na gargajiya a Arewacin Najeriya?", + "en_question": "What is the most popular traditional dessert in your country?", + "annotations": [ + { + "answers": [ + "alkaki" + ], + "en_answers": [ + "biscuit" + ], + "count": 3 + }, + { + "answers": [ + "zobo" + ], + "en_answers": [ + "hibiscus tea" + ], + "count": 2 + }, + { + "answers": [ + "dudulan" + ], + "en_answers": [ + "completely" + ], + "count": 1 + }, + { + "answers": [ + "nakiya" + ], + "en_answers": [ + "mine" + ], + "count": 1 + }, + { + "answers": [ + "mazarƙwaila" + ], + "en_answers": [ + "lollipop" + ], + "count": 1 + }, + { + "answers": [ + "hallaka kwabo" + ], + "en_answers": [ + "kill a mosquito" + ], + "count": 1 + }, + { + "answers": [ + "kunun aya" + ], + "en_answers": [ + "tiger nut milk" + ], + "count": 1 + }, + { + "answers": [ + "kantun gana" + ], + "en_answers": [ + "corn shop" + ], + "count": 1 + }, + { + "answers": [ + "tuwan madara" + ], + "en_answers": [ + "rice pudding with milk" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-21": { + "question": "Wane wasan raket ne yafi shahara a Arewacin Najeriya?", + "en_question": "What is the most popular racket sport in your country?", + "annotations": [], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-24": { + "question": "Wane wasan guje-guje da tsalle-tsalle ne ya fi shahara a Arewacin Najeriya?", + "en_question": "What is the most popular track and field sport in your country?", + "annotations": [ + { + "answers": [ + "kwallon kafa", + "kwallo" + ], + "en_answers": [ + "football", + "ball" + ], + "count": 2 + }, + { + "answers": [ + "tsere" + ], + "en_answers": [ + "race" + ], + "count": 1 + }, + { + "answers": [ + "hawan doki" + ], + "en_answers": [ + "horse riding" + ], + "count": 1 + }, + { + "answers": [ + "langa" + ], + "en_answers": [ + "to lick" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-gr-29": { + "question": "Wane taron wasanni na ƙasa da ƙasa ne ya fi shahara a Arewacin Najeriya?", + "en_question": "Which international sporting event is the most popular in your country?", + "annotations": [ + { + "answers": [ + "kwallon kafa" + ], + "en_answers": [ + "football" + ], + "count": 2 + }, + { + "answers": [ + "fremiya ta najeriya", + "nigeria premia link" + ], + "en_answers": [ + "nigeria premium link" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-47": { + "question": "Ya tsawon (a cikin mintuna) hutun aiki yake na yau da kullum a Arewacin Najeriya, banda hutun cin abincin rana da na cin abincin dare? (Ka bayar da lambobin Larabci (misali, 1) kawai.)", + "en_question": "How long (in minutes) are typical work breaks in your country, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 3 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-gr-58": { + "question": "Wane irin aiki ake ganin ana biyan kudi ƙasa da kima a Arewacin Najeriya?", + "en_question": "Which job is considered underpaid in your country?", + "annotations": [ + { + "answers": [ + "cbn" + ], + "en_answers": [ + "two hundred" + ], + "count": 1 + }, + { + "answers": [ + "shara" + ], + "en_answers": [ + "sweep" + ], + "count": 1 + }, + { + "answers": [ + "goge-goge" + ], + "en_answers": [ + "cleaning" + ], + "count": 1 + }, + { + "answers": [ + "leburanchi" + ], + "en_answers": [ + "labourer" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-gr-76": { + "question": "Menene abincin da aka saba bayarwa a lokacin Easter a Arewacin Najeriya?", + "en_question": "What is the most common food served during Easter in your country?", + "annotations": [ + { + "answers": [ + "nama" + ], + "en_answers": [ + "meat" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 1 + } + }, + "New-gr-82": { + "question": "Wane irin kiɗa ne ya fi shahara tsakanin tsofaffin mutane a Arewacin Najeriya?", + "en_question": "What is the most popular music genre among the elderly population in your country?", + "annotations": [ + { + "answers": [ + "fuji" + ], + "en_answers": [ + "mountain" + ], + "count": 1 + }, + { + "answers": [ + "shata" + ], + "en_answers": [ + "singer" + ], + "count": 1 + }, + { + "answers": [ + "gurmi" + ], + "en_answers": [ + "traditional musical instrument" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-gr-88": { + "question": "Wane irin abin sha ake bayarwa a lokacin ta'aziyya a Arewacin Najeriya?", + "en_question": "What drink is usually offered at funerals in your country?", + "annotations": [ + { + "answers": [ + "ruwa" + ], + "en_answers": [ + "water" + ], + "count": 2 + }, + { + "answers": [ + "lemo" + ], + "en_answers": [ + "lemon" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-gr-89": { + "question": "Wane irin abin sha ake bayarwa a bukukuwan aure a Arewacin Najeriya?", + "en_question": "What drink is usually offered at weddings in your country?", + "annotations": [ + { + "answers": [ + "lemon kwalba" + ], + "en_answers": [ + "bottle of lemonade" + ], + "count": 2 + }, + { + "answers": [ + "zobo", + "zoɓo" + ], + "en_answers": [ + "hibiscus tea", + "hibiscus drink" + ], + "count": 2 + }, + { + "answers": [ + "lemo" + ], + "en_answers": [ + "lemon" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ha-07": { + "question": "Wane abinci ne ya samo asali daga Arewacin Najeriya kuma ake samun sa a ko'ina cikin duniya?", + "en_question": "What food originated from your country and can be found all over the world?", + "annotations": [ + { + "answers": [ + "masa" + ], + "en_answers": [ + "rice cake" + ], + "count": 2 + }, + { + "answers": [ + "tuwo da miya" + ], + "en_answers": [ + "mashed food with soup" + ], + "count": 1 + }, + { + "answers": [ + "gurasa" + ], + "en_answers": [ + "flatbread" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-08": { + "question": "Wane irin abinci ne yara kan ƙi shi amma tsofaffi su kan so a Arewacin Najeriya?", + "en_question": "What food is typically disliked by children but enjoyed by the elderly in your country?", + "annotations": [ + { + "answers": [ + "tuwo", + "tuwo da miya" + ], + "en_answers": [ + "mashed food", + "mashed food with soup" + ], + "count": 4 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ha-09": { + "question": "Wane kayan girki ake amfani da shi sosai a Arewacin Najeriya?", + "en_question": "What cooking utensil is most commonly used in your country?", + "annotations": [ + { + "answers": [ + "mai" + ], + "en_answers": [ + "owner" + ], + "count": 2 + }, + { + "answers": [ + "tukunya" + ], + "en_answers": [ + "pot" + ], + "count": 2 + }, + { + "answers": [ + "murhu" + ], + "en_answers": [ + "stove" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ha-13": { + "question": "Wane ne kayan lambu mafi shahara a Arewacin Najeriya?", + "en_question": "Which is the most popular vegetable in your country?", + "annotations": [ + { + "answers": [ + "salak" + ], + "en_answers": [ + "prayer" + ], + "count": 3 + }, + { + "answers": [ + "zogale" + ], + "en_answers": [ + "moringa" + ], + "count": 2 + }, + { + "answers": [ + "yakuwa" + ], + "en_answers": [ + "sorrel" + ], + "count": 1 + }, + { + "answers": [ + "tumatur" + ], + "en_answers": [ + "tomato" + ], + "count": 1 + }, + { + "answers": [ + "albasa" + ], + "en_answers": [ + "onion" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ha-19": { + "question": "Wane irin dabba ake amfani da shi don wasanni a Arewacin Najeriya?", + "en_question": "Which animal is used for sports in your country?", + "annotations": [ + { + "answers": [ + "doki" + ], + "en_answers": [ + "horse" + ], + "count": 5 + }, + { + "answers": [ + "sa" + ], + "en_answers": [ + "left" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-66": { + "question": "Menene wurin daurin aure mafi shahara a Arewacin Najeriya?", + "en_question": "What is the most popular wedding venue in your country?", + "annotations": [ + { + "answers": [ + "masallaci", + "masalaci" + ], + "en_answers": [ + "mosque" + ], + "count": 4 + }, + { + "answers": [ + "coci" + ], + "en_answers": [ + "church" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-in-01": { + "question": "Wane irin shagon kofi ne yafi shahara a Arewacin Najeriya?", + "en_question": "Which coffee shop brand is the most popular in your country?", + "annotations": [ + { + "answers": [ + "cafe" + ], + "en_answers": [ + "coffee shop" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-in-03": { + "question": "Wane irin abinci daga Arewacin Najeriya ake yawan siyar da shi a gidajen cin abinci na kasashen waje?", + "en_question": "What type of food from your country is typically served in restaurants overseas?", + "annotations": [ + { + "answers": [ + "zobo" + ], + "en_answers": [ + "hibiscus tea" + ], + "count": 1 + }, + { + "answers": [ + "tuwo da miya" + ], + "en_answers": [ + "mashed food with soup" + ], + "count": 1 + }, + { + "answers": [ + "sakwara" + ], + "en_answers": [ + "pounded yam" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-in-33": { + "question": "Wane yanki a Arewacin Najeriya ake alakantawa da hakar ma'adinai?", + "en_question": "What region in your country is usually associated with mining?", + "annotations": [ + { + "answers": [ + "sokoto" + ], + "en_answers": [ + "trousers" + ], + "count": 2 + }, + { + "answers": [ + "zamfara" + ], + "en_answers": [ + "zamfara" + ], + "count": 1 + }, + { + "answers": [ + "bauchi" + ], + "en_answers": [ + "bauchi" + ], + "count": 1 + }, + { + "answers": [ + "katsina" + ], + "en_answers": [ + "katsina" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-in-34": { + "question": "Wane yanki a Arewacin Najeriya ake alakantawa da mai?", + "en_question": "What region in your country is usually associated with oil?", + "annotations": [ + { + "answers": [ + "bauchi" + ], + "en_answers": [ + "bauchi" + ], + "count": 4 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-in-62": { + "question": "Wace jami'a a Arewacin Najeriya ta shahara saboda bangarenta na injiniyanci? (Bayar da sunan hukuma.)", + "en_question": "What university in your country is popular because of its engineering major? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "bayero university", + "bayero univesity kano", + "kano" + ], + "en_answers": [ + "bayero university", + "kano" + ], + "count": 1 + }, + { + "answers": [ + "ahmadu bello univesity", + "zaria" + ], + "en_answers": [ + "ahmadu bello university", + "zaria" + ], + "count": 1 + }, + { + "answers": [ + "wudil" + ], + "en_answers": [ + "wudil" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-in-63": { + "question": "Wace jami'a a Arewacin Najeriya ta shahara saboda makarantarta ta likitanci? (Bayar da sunan hukuma.)", + "en_question": "What university in your country is popular because of its school of medicine? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "ahmadu bello university", + "ahmadu bello univesity", + "zaria", + "abu zaria" + ], + "en_answers": [ + "ahmadu bello university", + "zaria", + "ahmadu bello university zaria" + ], + "count": 3 + }, + { + "answers": [ + "bayero university", + "kano" + ], + "en_answers": [ + "bayero university", + "kano" + ], + "count": 1 + }, + { + "answers": [ + "usman danfodio univesity", + "sokoto" + ], + "en_answers": [ + "usman danfodio university", + "trousers" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-in-78": { + "question": "Menene hanyar biyan kudi mafi shahara a Arewacin Najeriya?", + "en_question": "What is the most popular payment method in your country?", + "annotations": [ + { + "answers": [ + "banki", + "ta banki", + "turawa ta banki" + ], + "en_answers": [ + "bank", + "she went to the bank", + "bank transfer" + ], + "count": 5 + }, + { + "answers": [ + "pos" + ], + "en_answers": [ + "well" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-80": { + "question": "Menene wurin shakatawa mafi shahara a Arewacin Najeriya?", + "en_question": "What is the most famous theme park in your country?", + "annotations": [ + { + "answers": [ + "yankari" + ], + "en_answers": [ + "yankari (refers to yankari national park or yankari game reserve)" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ko-01": { + "question": "Menene shirin wasan kwaikwayo na yara da aka fi kallo a Arewacin Najeriya?", + "en_question": "What is the most popular children's animation that is commonly watched by kids in your country?", + "annotations": [ + { + "answers": [ + "akile and me" + ], + "en_answers": [ + "akile da ni" + ], + "count": 1 + }, + { + "answers": [ + "tom and jerry" + ], + "en_answers": [ + "tom da jerry" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ko-02": { + "question": "Menene aikin ilimin haihuwa da ya fi shahara ga mata masu juna biyu a Arewacin Najeriya?", + "en_question": "What is the most popular prenatal education activity for pregnant women in your country?", + "annotations": [ + { + "answers": [ + "unguwar zoma", + "unguzoma" + ], + "en_answers": [ + "nurse's quarters", + "midwife" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ko-03": { + "question": "Wacce wakar yara mafi shahara ce iyalan gida ke rerawa tare a Arewacin Najeriya?", + "en_question": "What is the most popular children's song in your country that families sing together?", + "annotations": [], + "idks": { + "idk": 4, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ko-04": { + "question": "Wadanne kayan wasannin yara ne suka fi shahara tsakanin yara maza a Arewacin Najeriya?", + "en_question": "Which toys are most popular among boys in your country?", + "annotations": [ + { + "answers": [ + "kwallo", + "kwallon kafa", + "bal" + ], + "en_answers": [ + "ball", + "husband", + "football" + ], + "count": 5 + }, + { + "answers": [ + "mota" + ], + "en_answers": [ + "car" + ], + "count": 1 + }, + { + "answers": [ + "tsere" + ], + "en_answers": [ + "race" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-05": { + "question": "Wadanne kayan wasannin yara ne suka fi shahara tsakanin 'yan mata a Arewacin Najeriya?", + "en_question": "Which toys are most popular among girls in your country?", + "annotations": [ + { + "answers": [ + "yar tsana", + "yar' tsana" + ], + "en_answers": [ + "little girl" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-06": { + "question": "Wane labari ne na gargajiya da aka fi sani a Arewacin Najeriya wanda ake bawa yara?", + "en_question": "What is the most popular folk tale in your country that is typically told to children?", + "annotations": [ + { + "answers": [ + "labarin gizo", + "gizo da koki", + "tatsuniyar gizo da ƙoƙi" + ], + "en_answers": [ + "spider's story", + "spider and scorpion", + "the tale of the spider and the cock" + ], + "count": 3 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ko-07": { + "question": "Menene alamar al'ada ta jaje da ake amfani da ita a jana'izai a Arewacin Najeriya?", + "en_question": "What is the customary symbol of condolence used at funerals in your country?", + "annotations": [ + { + "answers": [ + "rumfuna" + ], + "en_answers": [ + "rooms" + ], + "count": 1 + }, + { + "answers": [ + "ta'aziyya" + ], + "en_answers": [ + "condolence" + ], + "count": 1 + }, + { + "answers": [ + "tabarmi" + ], + "en_answers": [ + "mat" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ko-08": { + "question": "A ina daliban jami'a a Arewacin Najeriya suka fi yin aiki na wucin gadi?", + "en_question": "Where do university students in your country tend to work part-time the most?", + "annotations": [ + { + "answers": [ + "kamfanoni" + ], + "en_answers": [ + "companies" + ], + "count": 1 + }, + { + "answers": [ + "gidan abinci" + ], + "en_answers": [ + "restaurant" + ], + "count": 1 + }, + { + "answers": [ + "gurin dinki" + ], + "en_answers": [ + "tailoring spot" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ko-09": { + "question": "Menene ayyukan gina ƙungiya da aka fi yi a kamfanonin da ke Arewacin Najeriya?", + "en_question": "What are the most frequently practiced team-building activities in companies based in your country?", + "annotations": [ + { + "answers": [ + "taruka", + "taro" + ], + "en_answers": [ + "events", + "gathering" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ko-10": { + "question": "Menene ayyukan da mutane suka fi yi a matsayin kari akan aikin su na ainihi a Arewacin Najeriya?", + "en_question": "What are the most common activities people do as a side job in your country?", + "annotations": [ + { + "answers": [ + "kasuwanci" + ], + "en_answers": [ + "business" + ], + "count": 3 + }, + { + "answers": [ + "kiwo" + ], + "en_answers": [ + "herding" + ], + "count": 1 + }, + { + "answers": [ + "noma" + ], + "en_answers": [ + "farming" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-pe-02": { + "question": "Menene abin tunawa da ake ci da ya fi shahara ga masu yawon bude ido a Arewacin Najeriya?", + "en_question": "What is the most famous edible souvenir for tourists in your country?", + "annotations": [ + { + "answers": [ + "suya" + ], + "en_answers": [ + "spicy skewered meat" + ], + "count": 2 + }, + { + "answers": [ + "tsire" + ], + "en_answers": [ + "grilled meat" + ], + "count": 1 + }, + { + "answers": [ + "gurasa da nama" + ], + "en_answers": [ + "flatbread with meat" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-pe-06": { + "question": "Wacce miya ce aka fi shahara a Arewacin Najeriya?", + "en_question": "What is the most popular stew in your country?", + "annotations": [ + { + "answers": [ + "taushe", + "miyar taushe" + ], + "en_answers": [ + "sauce", + "vegetable soup" + ], + "count": 3 + }, + { + "answers": [ + "miyar kuku", + "kuka" + ], + "en_answers": [ + "chicken soup", + "cry" + ], + "count": 2 + }, + { + "answers": [ + "miyar kubewa", + "kuɓewa" + ], + "en_answers": [ + "okra soup", + "okra" + ], + "count": 2 + }, + { + "answers": [ + "jar miya" + ], + "en_answers": [ + "tomato sauce" + ], + "count": 1 + }, + { + "answers": [ + "agushi" + ], + "en_answers": [ + "melon seed" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-pe-11": { + "question": "Wanne ganyen yaji/gyada ne ake amfani da shi sosai a cikin abincin Arewacin Najeriya?", + "en_question": "What is the most common spice/herb used in dishes from your country?", + "annotations": [ + { + "answers": [ + "curry" + ], + "en_answers": [ + "kari" + ], + "count": 1 + }, + { + "answers": [ + "barkono" + ], + "en_answers": [ + "pepper" + ], + "count": 1 + }, + { + "answers": [ + "alayyahu" + ], + "en_answers": [ + "cucumber" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-16": { + "question": "Wanne wasan gargajiya ne mafi shahara a Arewacin Najeriya?", + "en_question": "What is the most famous traditional sport in your country?", + "annotations": [ + { + "answers": [ + "dambe" + ], + "en_answers": [ + "traditional wrestling" + ], + "count": 4 + }, + { + "answers": [ + "langa" + ], + "en_answers": [ + "to lick" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-pe-20": { + "question": "Wane wasa ne aka fi so a yi a bakin teku a Arewacin Najeriya?", + "en_question": "What sport is popular to play on the beach in your country?", + "annotations": [ + { + "answers": [ + "kwado" + ], + "en_answers": [ + "frog" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-45": { + "question": "Menene jadawalin aikin yau da kullun a lokacin watan Ramadan a Arewacin Najeriya?", + "en_question": "What is the usual work schedule during the month of Ramadan in your country?", + "annotations": [ + { + "answers": [ + "kamar yadda aka saba ne" + ], + "en_answers": [ + "as usual" + ], + "count": 1 + }, + { + "answers": [ + "buɗar baki" + ], + "en_answers": [ + "breaking the fast" + ], + "count": 1 + }, + { + "answers": [ + "sahoor" + ], + "en_answers": [ + "pre-dawn meal" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-pe-47": { + "question": "Yaushe ake bikin Ranar Dalibai a Arewacin Najeriya? (A bayar a tsarin MM/DD misali (e.g., 12/31).)", + "en_question": "When is Student's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-49": { + "question": "A ina ne iyalai sukan taru su yi addu'a tare a Arewacin Najeriya?", + "en_question": "Where do families gather to pray together in your country?", + "annotations": [ + { + "answers": [ + "masallaci" + ], + "en_answers": [ + "mosque" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 2, + "not-applicable": 0 + } + }, + "New-pe-53": { + "question": "Wane irin kyaututtuka ne iyaye maza suke samu a Ranar Uba (ko Ranar Iyaye) a Arewacin Najeriya?", + "en_question": "What gifts do fathers get on Father's Day (or Parents' Day) in your country?", + "annotations": [ + { + "answers": [ + "tufafi", + "kaya" + ], + "en_answers": [ + "clothes", + "goods" + ], + "count": 2 + }, + { + "answers": [ + "kayan yara" + ], + "en_answers": [ + "children's clothes" + ], + "count": 1 + }, + { + "answers": [ + "kuɗi" + ], + "en_answers": [ + "money" + ], + "count": 1 + }, + { + "answers": [ + "turare" + ], + "en_answers": [ + "perfume" + ], + "count": 1 + }, + { + "answers": [ + "takalmi" + ], + "en_answers": [ + "shoe" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-54": { + "question": "Wane irin kyaututtuka ne uwaye suke samu a ranar Uwa (ko ranar Iyaye) a Arewacin Najeriya?", + "en_question": "What gifts do mothers get on Mother's Day (or Parents' Day) in your country?", + "annotations": [ + { + "answers": [ + "kuɗi", + "kudi" + ], + "en_answers": [ + "money" + ], + "count": 2 + }, + { + "answers": [ + "kayan yara" + ], + "en_answers": [ + "children's clothes" + ], + "count": 1 + }, + { + "answers": [ + "atamfa" + ], + "en_answers": [ + "fabric" + ], + "count": 1 + }, + { + "answers": [ + "turare" + ], + "en_answers": [ + "perfume" + ], + "count": 1 + }, + { + "answers": [ + "yari da sarka" + ], + "en_answers": [ + "beads and necklace" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-59": { + "question": "Menene adadin zuri'ar gida ɗaya da suke zama tare a Arewacin Najeriya? (Ka bayar da lambobi na Larabci (misali, 12) kawai.)", + "en_question": "How many generations typically live together in a household in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-pe-65": { + "question": "Menene adadin darussan da ake koyarwa a makarantun sakandare a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 12) kawai.)", + "en_question": "How many subjects are taught in middle schools in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 3 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 2 + }, + { + "answers": [ + "13" + ], + "en_answers": [ + "13" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-pe-66": { + "question": "Menene shahararren ayyukan da ake yi bayan an tashi daga makarantun firamare a Arewacin Najeriya?", + "en_question": "What is the most popular after school curriculars in elementary schools in your country?", + "annotations": [ + { + "answers": [ + "zuwa islamiyya", + "tafiya islamiyya" + ], + "en_answers": [ + "going to islamic school", + "islamic trip" + ], + "count": 2 + }, + { + "answers": [ + "gyaran gida" + ], + "en_answers": [ + "house cleaning" + ], + "count": 1 + }, + { + "answers": [ + "shara" + ], + "en_answers": [ + "sweep" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-pe-74": { + "question": "Nawa ne matsakaicin kudin makaranta na shekara-shekara a jami'o'in gwamnati a Arewacin Najeriya?", + "en_question": "How much is the average annual tuition fee for public universities in your country?", + "annotations": [ + { + "answers": [ + "duba hamsin" + ], + "en_answers": [ + "check fifty" + ], + "count": 1 + }, + { + "answers": [ + "28000" + ], + "en_answers": [ + "28000" + ], + "count": 1 + }, + { + "answers": [ + "dubu arba'in" + ], + "en_answers": [ + "forty thousand" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-pe-76": { + "question": "Menene aikin da ya shahara ake yi a wuraren shakatawa a Arewacin Najeriya?", + "en_question": "What is a popular activity to do in parks in your country?", + "annotations": [ + { + "answers": [ + "hawa lilo", + "hawan lilo" + ], + "en_answers": [ + "riding a bicycle", + "horse riding" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-pe-78": { + "question": "Menene sunan bikin fina-finai mafi shahara da ake gudanarwa a Arewacin Najeriya?", + "en_question": "What is the name of the most famous film festival held in your country?", + "annotations": [], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-83": { + "question": "Menene wasan katin da ya shahara ana bugawa a lokutan taron jama'a a Arewacin Najeriya?", + "en_question": "What is the popular card game played during social gatherings in your country?", + "annotations": [ + { + "answers": [ + "whot", + "karta", + "wot" + ], + "en_answers": [ + "cards", + "wrestler", + "house" + ], + "count": 3 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-85": { + "question": "Ina ne wurin yawon bude ido da ya fi shahara a kasashen waje ga mutanen Arewacin Najeriya?", + "en_question": "Where is the most popular tourist destination abroad for people from your country?", + "annotations": [ + { + "answers": [ + "dubai marina" + ], + "en_answers": [ + "dubai marina" + ], + "count": 1 + }, + { + "answers": [ + "pyramid egypt" + ], + "en_answers": [ + "dala ta masar" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 2, + "not-applicable": 0 + } + }, + "New-pe-86": { + "question": "Menene sunan hasumiyar da tafi shahara a Arewacin Najeriya?", + "en_question": "What is the name of the most famous tower in your country?", + "annotations": [ + { + "answers": [ + "gidan ado bayero" + ], + "en_answers": [ + "ado bayero's house" + ], + "count": 1 + }, + { + "answers": [ + "dogon banki", + "skyline university" + ], + "en_answers": [ + "long bench", + "skyline university" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-spme-01": { + "question": "Wane irin kwari ne na ci ake fi ci sosai a Arewacin Najeriya?", + "en_question": "What edible insect is eaten most often in your country?", + "annotations": [ + { + "answers": [ + "fara" + ], + "en_answers": [ + "grasshopper" + ], + "count": 4 + }, + { + "answers": [ + "gina" + ], + "en_answers": [ + "build" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-04": { + "question": "Wane kayan gona ake fitarwa daga Arewacin Najeriya sau da yawa?", + "en_question": "Which agricultural product is exported most often in your country?", + "annotations": [ + { + "answers": [ + "gero" + ], + "en_answers": [ + "millet" + ], + "count": 2 + }, + { + "answers": [ + "agwaluma" + ], + "en_answers": [ + "soursop" + ], + "count": 1 + }, + { + "answers": [ + "mangwaro" + ], + "en_answers": [ + "mango" + ], + "count": 1 + }, + { + "answers": [ + "gyada" + ], + "en_answers": [ + "groundnut" + ], + "count": 1 + }, + { + "answers": [ + "shinkafa" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "masara" + ], + "en_answers": [ + "corn" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-spme-05": { + "question": "Wanne kayan zaki ne mafi shahara a Arewacin Najeriya?", + "en_question": "What are the most popular sweets in your country?", + "annotations": [ + { + "answers": [ + "lemon zaki", + "lemo", + "lemon ɓawo" + ], + "en_answers": [ + "lemon", + "lemon spoon" + ], + "count": 2 + }, + { + "answers": [ + "mazarƙwaila", + "mazarkwaila" + ], + "en_answers": [ + "lollipop", + "unwise person" + ], + "count": 2 + }, + { + "answers": [ + "alkaki" + ], + "en_answers": [ + "biscuit" + ], + "count": 1 + }, + { + "answers": [ + "hallaka kwabo" + ], + "en_answers": [ + "kill a mosquito" + ], + "count": 1 + }, + { + "answers": [ + "zobo" + ], + "en_answers": [ + "hibiscus tea" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-spme-15": { + "question": "Wanne ne abin sha na wasanni da aka fi so a Arewacin Najeriya?", + "en_question": "What is the most popular sports drink in your country?", + "annotations": [ + { + "answers": [ + "lucozade" + ], + "en_answers": [ + "energy drink" + ], + "count": 1 + }, + { + "answers": [ + "lemon kwakwa" + ], + "en_answers": [ + "coconut lemon" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-spme-27": { + "question": "Menene matsakaicin matakin ilimi ga mutanen Arewacin Najeriya?", + "en_question": "What is the average education level for people in your country?", + "annotations": [ + { + "answers": [ + "sakandare", + "sakandire", + "sakandiri" + ], + "en_answers": [ + "secondary school", + "secondary" + ], + "count": 4 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-spme-37": { + "question": "Wane sana'a ce daliban Arewacin Najeriya suka fi karantawa a kasashen waje?", + "en_question": "Which profession is most commonly studied abroad by students from your country?", + "annotations": [ + { + "answers": [ + "kasuwanci" + ], + "en_answers": [ + "business" + ], + "count": 2 + }, + { + "answers": [ + "likitanci" + ], + "en_answers": [ + "medicine" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-spme-60": { + "question": "Wane rana ne cikin sati yawancin iyalai a Arewacin Najeriya sukan gudanar da ayyukan addini? (misali Litinin, Talata)", + "en_question": "Which day of the week do most families in your country practice religious activities? (e.g. Monday, Tuesday)", + "annotations": [ + { + "answers": [ + "juma'a", + "jumma'a", + "juma'a da lahadi" + ], + "en_answers": [ + "friday" + ], + "count": 5 + }, + { + "answers": [ + "lahadi", + "juma'a da lahadi" + ], + "en_answers": [ + "sunday", + "friday and sunday" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-65": { + "question": "Menene hanya mafi shahara da ake bikin Ranar 'Yancin kai a Arewacin Najeriya?", + "en_question": "What is the most popular way to celebrate Independence Day in your country?", + "annotations": [ + { + "answers": [ + "hotona" + ], + "en_answers": [ + "my picture" + ], + "count": 1 + }, + { + "answers": [ + "1st october" + ], + "en_answers": [ + "1 ga oktoba" + ], + "count": 1 + }, + { + "answers": [ + "kiɗa" + ], + "en_answers": [ + "music" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-spme-68": { + "question": "Menene abin sha mafi shahara tsakanin yara a Arewacin Najeriya?", + "en_question": "What is the most popular beverage among children in your country?", + "annotations": [ + { + "answers": [ + "bobo" + ], + "en_answers": [ + "fool" + ], + "count": 2 + }, + { + "answers": [ + "fresh yo" + ], + "en_answers": [ + "fresh milk" + ], + "count": 1 + }, + { + "answers": [ + "chivita" + ], + "en_answers": [ + "chivita (brand name, not translated)" + ], + "count": 1 + }, + { + "answers": [ + "askirin", + "ice cream" + ], + "en_answers": [ + "fan milk" + ], + "count": 1 + }, + { + "answers": [ + "kafiri sun" + ], + "en_answers": [ + "caprisonne" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-spme-76": { + "question": "Wane wuri ne mafi shahara a Arewacin Najeriya don murnar Ranar 'Yancin Kai?", + "en_question": "What is the most popular place in your country to celebrate Independence Day?", + "annotations": [], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-78": { + "question": "Menene sunan waƙar da aka saba rerawa a lokacin bukukuwan ranar haihuwa a Arewacin Najeriya?", + "en_question": "What is the name of the song that is typically sung at birthday parties in your country?", + "annotations": [ + { + "answers": [ + "happy birthday to you" + ], + "en_answers": [ + "barka da ranar haihuwa" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 1, + "no-answer": 1 + } + }, + "New-su-01": { + "question": "Wadanne irin abincin motsa baki ake sayarwa a gaban makarantu a Arewacin Najeriya?", + "en_question": "What snacks are usually sold in front of schools in your country?", + "annotations": [ + { + "answers": [ + "awara" + ], + "en_answers": [ + "fried bean cake" + ], + "count": 4 + }, + { + "answers": [ + "wainar fulawa", + "waina", + "kalallaba" + ], + "en_answers": [ + "flour pancake" + ], + "count": 4 + }, + { + "answers": [ + "gurasa" + ], + "en_answers": [ + "flatbread" + ], + "count": 3 + }, + { + "answers": [ + "rake" + ], + "en_answers": [ + "sugar cane" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-09": { + "question": "Wane mai ake yawancin amfani da shi wajen girki a Arewacin Najeriya?", + "en_question": "What oil is usually used for cooking in your country?", + "annotations": [ + { + "answers": [ + "man kuli", + "man gyaɗa", + "man kuli kuli", + "farin mai", + "man ƙuli" + ], + "en_answers": [ + "groundnut oil", + "peanut oil", + "vegetable oil" + ], + "count": 5 + }, + { + "answers": [ + "man ja", + "manja" + ], + "en_answers": [ + "red oil", + "oil" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-10": { + "question": "Wane irin abinci mata masu ciki ke yawan ci a Arewacin Najeriya?", + "en_question": "What food is commonly consumed by pregnant women in your country?", + "annotations": [ + { + "answers": [ + "wainar fulawa", + "kalallaba" + ], + "en_answers": [ + "flour pancake" + ], + "count": 2 + }, + { + "answers": [ + "dan malele" + ], + "en_answers": [ + "cassava flour balls" + ], + "count": 1 + }, + { + "answers": [ + "masara" + ], + "en_answers": [ + "corn" + ], + "count": 1 + }, + { + "answers": [ + "gyaɗa" + ], + "en_answers": [ + "peanut" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "New-su-15": { + "question": "Wanene shahararren abin sha na gargajiya marar barasa a Arewacin Najeriya?", + "en_question": "What is the most popular traditional non-alcoholic drink in your country?", + "annotations": [ + { + "answers": [ + "zobo", + "zaɓo" + ], + "en_answers": [ + "hibiscus tea", + "choose" + ], + "count": 3 + }, + { + "answers": [ + "kunun gyada", + "kunun gyaɗa" + ], + "en_answers": [ + "peanut milk" + ], + "count": 2 + }, + { + "answers": [ + "kunun tsakiyar" + ], + "en_answers": [ + "central porridge" + ], + "count": 1 + }, + { + "answers": [ + "fura da nono" + ], + "en_answers": [ + "millet porridge with fermented milk" + ], + "count": 1 + }, + { + "answers": [ + "kunun zaƙi" + ], + "en_answers": [ + "sweet porridge" + ], + "count": 1 + }, + { + "answers": [ + "kunun aya" + ], + "en_answers": [ + "tiger nut milk" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-17": { + "question": "Wane irin kayan wasanni ake samu a wuraren shakatawa a Arewacin Najeriya?", + "en_question": "What sports facilities are generally available in parks in your country?", + "annotations": [ + { + "answers": [ + "lilo", + "hawan lilo" + ], + "en_answers": [ + "swimming", + "horse riding" + ], + "count": 4 + }, + { + "answers": [ + "hawan doki" + ], + "en_answers": [ + "horse riding" + ], + "count": 1 + }, + { + "answers": [ + "kwallo" + ], + "en_answers": [ + "ball" + ], + "count": 1 + }, + { + "answers": [ + "mota" + ], + "en_answers": [ + "car" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-21": { + "question": "Waɗan ne ayyukan ne da tsofaffi suka saba yi a wuraren shakatawa a Arewacin Najeriya?", + "en_question": "What are the common activities that seniors usually do in parks in your country?", + "annotations": [ + { + "answers": [ + "share share" + ], + "en_answers": [ + "sweepings" + ], + "count": 1 + }, + { + "answers": [ + "kula da waje" + ], + "en_answers": [ + "take care of the place" + ], + "count": 1 + }, + { + "answers": [ + "kula da yara" + ], + "en_answers": [ + "childcare" + ], + "count": 1 + }, + { + "answers": [ + "kulawa" + ], + "en_answers": [ + "care" + ], + "count": 1 + }, + { + "answers": [ + "gyarawa" + ], + "en_answers": [ + "repair" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-su-24": { + "question": "Wane irin wasanni ne iyaye da yara sukan yi tare a Arewacin Najeriya?", + "en_question": "What sports do parents and children commonly play together in your country?", + "annotations": [ + { + "answers": [ + "wasan kaka da jika" + ], + "en_answers": [ + "grandfather and grandchild play" + ], + "count": 1 + }, + { + "answers": [ + "wasan linkaya" + ], + "en_answers": [ + "swimming sport" + ], + "count": 1 + }, + { + "answers": [ + "rawa" + ], + "en_answers": [ + "dance" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-su-28": { + "question": "Wanne launi ne zaa alakantashi da kungiyar kwallon kafa na yankin ku?", + "en_question": "What color is associated with the regional soccer team of your country?", + "annotations": [ + { + "answers": [ + "kore", + "fari da kore" + ], + "en_answers": [ + "green" + ], + "count": 3 + }, + { + "answers": [ + "fari", + "fari da kore" + ], + "en_answers": [ + "white" + ], + "count": 2 + }, + { + "answers": [ + "kore da fari" + ], + "en_answers": [ + "green and white" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-33": { + "question": "Wanne ne tufafin da aka saba gani a cikin malaman makaranta ke sanyawa a Arewacin Najeriya?", + "en_question": "What is the common dress code for school teachers in your country?", + "annotations": [ + { + "answers": [ + "riga da hula" + ], + "en_answers": [ + "clothes and cap" + ], + "count": 1 + }, + { + "answers": [ + "jallabiyya" + ], + "en_answers": [ + "long, loose-fitting robe" + ], + "count": 1 + }, + { + "answers": [ + "kufta da wando" + ], + "en_answers": [ + "shirt and trousers" + ], + "count": 1 + }, + { + "answers": [ + "ƙananun kaya" + ], + "en_answers": [ + "english wears" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-34": { + "question": "Wanne aikin ne na wajen karatu da ya shafi kiɗa da ya fi shahara a makarantun Arewacin Najeriya?", + "en_question": "What is the most popular extracurricular activity related to music in schools in your country?", + "annotations": [], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-42": { + "question": "Wane addini ake koyarwa a makarantu a Arewacin Najeriya?", + "en_question": "What religion is mainly taught in schools in your country?", + "annotations": [ + { + "answers": [ + "musulunci", + "musulinci", + "musulunci da kiristanci" + ], + "en_answers": [ + "islam" + ], + "count": 5 + }, + { + "answers": [ + "kiristanci", + "kirista", + "musulunci da kiristanci" + ], + "en_answers": [ + "christianity", + "christian", + "islam and christianity" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-45": { + "question": "Wace rana ake bikin Ranar Ilimi a Arewacin Najeriya? (Bayar da ita a tsarin MM/DD misali, 12/31).", + "en_question": "What date is Education Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-50": { + "question": "Menene babban sana'ar mutanen da ke yankunan tudu a Arewacin Najeriya?", + "en_question": "What is the main occupation of people in mountainous areas in your country?", + "annotations": [ + { + "answers": [ + "noma" + ], + "en_answers": [ + "farming" + ], + "count": 2 + }, + { + "answers": [ + "kiwo" + ], + "en_answers": [ + "herding" + ], + "count": 1 + }, + { + "answers": [ + "fatauci" + ], + "en_answers": [ + "trade" + ], + "count": 1 + }, + { + "answers": [ + "ƙira" + ], + "en_answers": [ + "design" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-su-51": { + "question": "Menene babban sana'ar mutanen da ke yankunan gaɓar teku a Arewacin Najeriya?", + "en_question": "What is the main occupation of people in coastal areas in your country?", + "annotations": [ + { + "answers": [ + "kamun kifi" + ], + "en_answers": [ + "fishing" + ], + "count": 4 + }, + { + "answers": [ + "noma" + ], + "en_answers": [ + "farming" + ], + "count": 2 + }, + { + "answers": [ + "su" + ], + "en_answers": [ + "fishing" + ], + "count": 1 + }, + { + "answers": [ + "sufuri" + ], + "en_answers": [ + "transport" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-57": { + "question": "Wacce dabba aka fi kiwatawa a Arewacin Najeriya?", + "en_question": "What is the most common livestock raised in your country?", + "annotations": [ + { + "answers": [ + "rago", + "raguna" + ], + "en_answers": [ + "sheep" + ], + "count": 3 + }, + { + "answers": [ + "akuya" + ], + "en_answers": [ + "goat" + ], + "count": 1 + }, + { + "answers": [ + "sa" + ], + "en_answers": [ + "bull" + ], + "count": 1 + }, + { + "answers": [ + "mage" + ], + "en_answers": [ + "cat" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-58": { + "question": "Waɗanne dabbobi aka fi amfani da su wajen noma a Arewacin Najeriya?", + "en_question": "What animals are commonly used for agriculture in your country?", + "annotations": [ + { + "answers": [ + "sa" + ], + "en_answers": [ + "bull" + ], + "count": 2 + }, + { + "answers": [ + "shanu" + ], + "en_answers": [ + "cows" + ], + "count": 2 + }, + { + "answers": [ + "saniya" + ], + "en_answers": [ + "cow" + ], + "count": 1 + }, + { + "answers": [ + "jaki" + ], + "en_answers": [ + "donkey" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-59": { + "question": "Me manoma a Arewacin Najeriya ke sawa domin kare kansu daga zafin rana yayin noma?", + "en_question": "What do farmers in your country typically wear to protect themselves from the heat whilst farming?", + "annotations": [ + { + "answers": [ + "malafa" + ], + "en_answers": [ + "hat" + ], + "count": 2 + }, + { + "answers": [ + "hula" + ], + "en_answers": [ + "hat" + ], + "count": 1 + }, + { + "answers": [ + "hular kaba" + ], + "en_answers": [ + "traditional cap" + ], + "count": 1 + }, + { + "answers": [ + "gurinfa" + ], + "en_answers": [ + "place" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-60": { + "question": "Me manoma a Arewacin Najeriya sukan ci a matsayin abincin rana?", + "en_question": "What do farmers in your country usually eat for lunch?", + "annotations": [ + { + "answers": [ + "shinkafa" + ], + "en_answers": [ + "rice" + ], + "count": 2 + }, + { + "answers": [ + "tuwo" + ], + "en_answers": [ + "mashed food" + ], + "count": 1 + }, + { + "answers": [ + "rogo da gyada" + ], + "en_answers": [ + "cassava and groundnut" + ], + "count": 1 + }, + { + "answers": [ + "fura da nono" + ], + "en_answers": [ + "millet porridge with fermented milk" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-71": { + "question": "Wane irin kyaututtuka iyaye ke baiwa 'ya'yansu a lokacin bukukuwan zagayowar haihuwarsu a Arewacin Najeriya?", + "en_question": "What gifts do parents generally give to their children for their birthdays in your country?", + "annotations": [ + { + "answers": [ + "kayan wasa" + ], + "en_answers": [ + "toys" + ], + "count": 1 + }, + { + "answers": [ + "keke" + ], + "en_answers": [ + "bicycle" + ], + "count": 1 + }, + { + "answers": [ + "abinda suka fi so" + ], + "en_answers": [ + "what they like most" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-75": { + "question": "Wane irin ababen hawa ne yawancin iyalai a Arewacin Najeriya suka fi mallaka?", + "en_question": "What type of vehicle do most families in your country generally own?", + "annotations": [ + { + "answers": [ + "babur" + ], + "en_answers": [ + "motorcycle" + ], + "count": 4 + }, + { + "answers": [ + "mota" + ], + "en_answers": [ + "car" + ], + "count": 4 + }, + { + "answers": [ + "adaidaita sahu" + ], + "en_answers": [ + "tricycle taxi" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-77": { + "question": "Me ake baiwa yara a lokacin idi a Arewacin Najeriya?", + "en_question": "What is usually given to the children during Eid in your country?", + "annotations": [ + { + "answers": [ + "kudi", + "kuɗi" + ], + "en_answers": [ + "money" + ], + "count": 3 + }, + { + "answers": [ + "abinci" + ], + "en_answers": [ + "food" + ], + "count": 1 + }, + { + "answers": [ + "kayan zaƙi" + ], + "en_answers": [ + "sweet things" + ], + "count": 1 + }, + { + "answers": [ + "alawa" + ], + "en_answers": [ + "candy" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-81": { + "question": "Wane irin tufafi angwaye kan sa a bikin aure a Arewacin Najeriya?", + "en_question": "What clothes do grooms usually wear at weddings in your country?", + "annotations": [ + { + "answers": [ + "babbar riga", + "gari" + ], + "en_answers": [ + "large flowing gown" + ], + "count": 3 + }, + { + "answers": [ + "shadda fara" + ], + "en_answers": [ + "white shadda" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-82": { + "question": "Wane irin kayan ne amare suka saba sanyawa a bikin aure a Arewacin Najeriya?", + "en_question": "What clothes do brides usually wear at weddings in your country?", + "annotations": [ + { + "answers": [ + "atamfa" + ], + "en_answers": [ + "fabric" + ], + "count": 3 + }, + { + "answers": [ + "lesi" + ], + "en_answers": [ + "lace" + ], + "count": 2 + }, + { + "answers": [ + "shadda" + ], + "en_answers": [ + "richly embroidered fabric" + ], + "count": 2 + }, + { + "answers": [ + "doguwar riga" + ], + "en_answers": [ + "long dress" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-83": { + "question": "Wane irin abinci ake ci a wajan biki a Arewacin Najeriya?", + "en_question": "What food is usually served at weddings in your country?", + "annotations": [ + { + "answers": [ + "shinkafa" + ], + "en_answers": [ + "rice" + ], + "count": 2 + }, + { + "answers": [ + "shinkafa dafa duka" + ], + "en_answers": [ + "boiled rice" + ], + "count": 1 + }, + { + "answers": [ + "alala" + ], + "en_answers": [ + "pudding" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-86": { + "question": "Wanne ne ginin gwamnati mafi shahara a Arewacin Najeriya?", + "en_question": "What is the most famous government building in your country?", + "annotations": [ + { + "answers": [ + "gidan shugaban ƙasa" + ], + "en_answers": [ + "presidential villa" + ], + "count": 2 + }, + { + "answers": [ + "villa" + ], + "en_answers": [ + "government house" + ], + "count": 1 + }, + { + "answers": [ + "central bank" + ], + "en_answers": [ + "babban banki" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-88": { + "question": "Wane irin kiɗa ne matasan Arewacin Najeriya suka fi so tsakanin su?", + "en_question": "What is the most popular music genre among the younger population in your country?", + "annotations": [ + { + "answers": [ + "hip pop" + ], + "en_answers": [ + "hip hop" + ], + "count": 1 + }, + { + "answers": [ + "kidan ganga" + ], + "en_answers": [ + "drum music" + ], + "count": 1 + }, + { + "answers": [ + "amafiyano" + ], + "en_answers": [ + "piano" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Ni-en-02": { + "question": "Wane lokaci daliban makarantar sakandire a Arewacin Najeriya suke tashi daga makaranta kowace rana? (A bayar da shi a cikin tsarin HH:MM misali, 18:00, 09:00).", + "en_question": "What time do middle school students in your country typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "14:00", + "02:00" + ], + "en_answers": [ + "14:00" + ], + "count": 4 + }, + { + "answers": [ + "13:45", + "01:45" + ], + "en_answers": [ + "13:45" + ], + "count": 2 + }, + { + "answers": [ + "13:30", + "01:30" + ], + "en_answers": [ + "13:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-03": { + "question": "A wane shekaru ne mutane a Arewacin Najeriya sukan je jami'a? (Ka bayar da lambobin Larabci (misali, 12) kawai.)", + "en_question": "At what age do people in your country typically go to university? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 2 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + }, + { + "answers": [ + "21" + ], + "en_answers": [ + "21" + ], + "count": 1 + }, + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ni-en-06": { + "question": "Daga wace shekara ne mutane suke buƙatar halartar ilimin tilas a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 12) kawai.)", + "en_question": "From what age do people need to attend compulsory education in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 3 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-09": { + "question": "Kwanaki nawa yara ke zuwa makaranta a Arewacin Najeriya a sati? (Ka bayar da lambobin Larabci (0~7) kawai.)", + "en_question": "How many days a week do children attend school in your country? (Provide Arabic numerals (0~7) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-11": { + "question": "A Arewacin Najeriya, tsawon wane loakci (a shekaru) ake dauka kafin a kammala digirin digirgir? (Ka bayar da lambobin Larabci (misali, 12) kawai.)", + "en_question": "In your country, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "5", + "5 ko 6" + ], + "en_answers": [ + "5" + ], + "count": 4 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 3 + }, + { + "answers": [ + "6", + "5 ko 6" + ], + "en_answers": [ + "6" + ], + "count": 3 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-12": { + "question": "Wace jami'a ce ta ƙololuwa a Arewacin Najeriya? (Bayar da sunan hukuma.)", + "en_question": "What is the top university in your country? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "ahmadu bello university", + "ahmadu bello university (abu)", + "zaria", + "abu" + ], + "en_answers": [ + "ahmadu bello university", + "ahmadu bello university (abu)", + "zaria", + "thing" + ], + "count": 4 + }, + { + "answers": [ + "bayero university kano (buk)", + "bayero university", + "kano" + ], + "en_answers": [ + "bayero university kano (buk)", + "bayero university", + "kano" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-13": { + "question": "A wane shekaru ne yawancin mutane a Arewacin Najeriya suka kammala jami'a? (Ka bayar da lambobin Larabci (misali, 12) kawai.)", + "en_question": "At what age do most people in your country graduate from university? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 2 + }, + { + "answers": [ + "26" + ], + "en_answers": [ + "26" + ], + "count": 2 + }, + { + "answers": [ + "27" + ], + "en_answers": [ + "27" + ], + "count": 1 + }, + { + "answers": [ + "23" + ], + "en_answers": [ + "23" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ni-en-15": { + "question": "A wane shekaru yara a Arewacin Najeriya sukan fara zuwa makarantar sakandare? (Ka bayar da lambobi na Larabci (misali, 12) kawai.)", + "en_question": "At what age do children in your country generally start middle school? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "13" + ], + "en_answers": [ + "13" + ], + "count": 3 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ni-en-17": { + "question": "Awanni nawa cikakken ma'aikaci ke aiki a Arewacin Najeriya a sati? (Ka bayar da lambobin Larabci (misali, 12) kawai.)", + "en_question": "How many hours a week does a full-time worker in your country typically work? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 2 + }, + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Ni-en-19": { + "question": "Ranaku nawa a sati cikakken ma'aikaci yake aiki a Arewacin Najeriya a sati? (Ka bayar da lambobin Larabci (0~7) kawai.)", + "en_question": "How many days a week does a full-time worker work in your country? (Provide Arabic numerals (0~7) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-20": { + "question": "A wacce shekara ne yawancin mutane suke fara aiki a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 12) kawai.)", + "en_question": "At what age do most people start working in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 2 + }, + { + "answers": [ + "27" + ], + "en_answers": [ + "27" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ni-en-21": { + "question": "Daga shekara nawa ne mutum ya ke da izinin yin aiki a Arewacin Najeriya? (Ka bayar da lambobi na Larabci (misali, 12) kawai.)", + "en_question": "From what age is an individual allowed to work in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 1 + } + }, + "Ni-en-31": { + "question": "Me mutane a Arewacin Najeriya suke ci a al'ada a ranar Kirsimeti?", + "en_question": "What do people in your country traditionally eat on Christmas Day?", + "annotations": [ + { + "answers": [ + "kaza" + ], + "en_answers": [ + "chicken" + ], + "count": 3 + }, + { + "answers": [ + "nama" + ], + "en_answers": [ + "meat" + ], + "count": 2 + }, + { + "answers": [ + "shinkafa" + ], + "en_answers": [ + "rice" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 1, + "no-answer": 1, + "idk": 0 + } + }, + "Ni-en-37": { + "question": "Menene sunan ranar shekara da mutanen Arewacin Najeriya ke murnar soyayya da kauna?", + "en_question": "What is the name of the day of the year where people in your country celebrate love and romance?", + "annotations": [], + "idks": { + "not-applicable": 3, + "no-answer": 1, + "idk": 1 + } + }, + "Ni-en-40": { + "question": "Wane waka ce ta Kirsimeti tafi shahara a Arewacin Najeriya?", + "en_question": "What is the most popular Christmas song in your country?", + "annotations": [], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 1 + } + }, + "Nu-in-04": { + "question": "Zangon karatu nawa a ke da shi a kowace shekarar ilimi a makarantun sakandare a Arewacin Najeriya? (Ka bayar da amsa cikin lambobin Larabci (misali, 7, 8) kawai.)", + "en_question": "How many semesters are there each academic year at high schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-05": { + "question": "A wane wata ne sabon shekarar makaranta ke farawa a Arewacin Najeriya? (Ka bayar da lambobi na Larabci (1~12) kawai.)", + "en_question": "In which month does the new school year typically begin in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 3 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-06": { + "question": "Yaushe ake bikin Ranar Malamai ta Kasa a Arewacin Najeriya? (A bayar a tsarin MM/DD misali, 12/31).", + "en_question": "When is National Teacher's Day commemorated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "10/05" + ], + "en_answers": [ + "10/05" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-11": { + "question": "A wane lokaci ne makarantar firamare ke farawa a Arewacin Najeriya? (Ka bayar da shi a tsarin HH:MM misali, 18:00, 09:00).", + "en_question": "At what time does elementary school start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-20": { + "question": "Yaushe ake bikin Ranar Yara a Arewacin Najeriya? (A bayar a tsarin MM/DD misali, 12/31).", + "en_question": "When is Children's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "05/27" + ], + "en_answers": [ + "05/27" + ], + "count": 3 + }, + { + "answers": [ + "11/20" + ], + "en_answers": [ + "11/20" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-40": { + "question": "Wanne gari ne babban wurin zuwa ga masu neman aiki a Arewacin Najeriya?", + "en_question": "Which city is the main destination for job seekers in your country?", + "annotations": [ + { + "answers": [ + "abuja" + ], + "en_answers": [ + "abuja" + ], + "count": 4 + }, + { + "answers": [ + "kano" + ], + "en_answers": [ + "kano" + ], + "count": 1 + }, + { + "answers": [ + "kaduna" + ], + "en_answers": [ + "kaduna" + ], + "count": 1 + }, + { + "answers": [ + "lagos" + ], + "en_answers": [ + "lagos" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Sa-en-1": { + "question": "Wanne ne mafi shaharar gidan abinci na sauri a Arewacin Najeriya?", + "en_question": "What is your country's most popular fast food chain?", + "annotations": [ + { + "answers": [ + "gusto" + ], + "en_answers": [ + "interest" + ], + "count": 1 + }, + { + "answers": [ + "calido" + ], + "en_answers": [ + "hot" + ], + "count": 1 + }, + { + "answers": [ + "bristol" + ], + "en_answers": [ + "paper" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Sa-en-13": { + "question": "Wane irin abinci ne mutane suka fi so ko ki a Arewacin Najeriya?", + "en_question": "What is the food that is most divisive (either love or hate) in your country?", + "annotations": [ + { + "answers": [ + "shinkafa" + ], + "en_answers": [ + "rice" + ], + "count": 2 + }, + { + "answers": [ + "shinkafa da miya" + ], + "en_answers": [ + "rice and sauce" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Sa-en-16": { + "question": "Wacce kungiyar kwallon kafa ce tafi shahara a tsakanin mutanen Arewacin Najeriya?", + "en_question": "What is the most popular soccer team among the people from your country?", + "annotations": [ + { + "answers": [ + "madrid" + ], + "en_answers": [ + "madrid" + ], + "count": 2 + }, + { + "answers": [ + "barsalona" + ], + "en_answers": [ + "barcelona" + ], + "count": 1 + }, + { + "answers": [ + "manchester" + ], + "en_answers": [ + "manchester" + ], + "count": 1 + }, + { + "answers": [ + "kano pillars" + ], + "en_answers": [ + "kano pillars" + ], + "count": 1 + }, + { + "answers": [ + "real madrid" + ], + "en_answers": [ + "real madrid" + ], + "count": 1 + }, + { + "answers": [ + "manchasta" + ], + "en_answers": [ + "manchester" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Sa-en-22": { + "question": "Wace jami'a ce tafi shahara a Arewacin Najeriya saboda kungiyar wasanninta?", + "en_question": "What is the most famous university in your country known for its sports team?", + "annotations": [ + { + "answers": [ + "ahmadu bello university", + "zaria" + ], + "en_answers": [ + "ahmadu bello university", + "zaria" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Sa-en-31": { + "question": "Menene dabbobin gida suka fi shahara a Arewacin Najeriya?", + "en_question": "What is your country's most popular family pet?", + "annotations": [ + { + "answers": [ + "rago" + ], + "en_answers": [ + "sheep" + ], + "count": 3 + }, + { + "answers": [ + "akuya" + ], + "en_answers": [ + "goat" + ], + "count": 3 + }, + { + "answers": [ + "sa" + ], + "en_answers": [ + "bull" + ], + "count": 2 + }, + { + "answers": [ + "saniya" + ], + "en_answers": [ + "cow" + ], + "count": 1 + }, + { + "answers": [ + "kaza" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "agwagwa" + ], + "en_answers": [ + "duck" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Sa-en-32": { + "question": "Menene shirin talabijin na iyali da aka yafi shahara a Arewacin Najeriya?", + "en_question": "What is the most popular family TV show in your country?", + "annotations": [ + { + "answers": [ + "dadin kowa" + ], + "en_answers": [ + "everyone's enjoyment" + ], + "count": 1 + }, + { + "answers": [ + "kwana casain" + ], + "en_answers": [ + "forty days" + ], + "count": 1 + }, + { + "answers": [ + "gasar iyali" + ], + "en_answers": [ + "family competition" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Sa-en-37": { + "question": "Menene wasan allo na iyali yafi shahara a Arewacin Najeriya?", + "en_question": "What is the most popular family boardgame in your country?", + "annotations": [], + "idks": { + "idk": 4, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Sa-en-6": { + "question": "Wanne abinci aka yafi shahara a tafi da shi gida a Arewacin Najeriya?", + "en_question": "What is the most popular takeaway food in your country?", + "annotations": [ + { + "answers": [ + "shinkafa" + ], + "en_answers": [ + "rice" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Sa-en-7": { + "question": "Wanne abincin motsa baki aka fi so a Arewacin Najeriya?", + "en_question": "What are popular snacks in your country?", + "annotations": [ + { + "answers": [ + "awara" + ], + "en_answers": [ + "fried bean cake" + ], + "count": 2 + }, + { + "answers": [ + "wainar fulawa" + ], + "en_answers": [ + "flour cake" + ], + "count": 1 + }, + { + "answers": [ + "fankaso" + ], + "en_answers": [ + "malaria" + ], + "count": 1 + }, + { + "answers": [ + "cake" + ], + "en_answers": [ + "kek" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Sa-en-9": { + "question": "Me mutanen Arewacin Najeriya ke ci a bakin teku?", + "en_question": "What do people from your country eat at the beach?", + "annotations": [ + { + "answers": [ + "kifi" + ], + "en_answers": [ + "fish" + ], + "count": 1 + }, + { + "answers": [ + "kwakwa" + ], + "en_answers": [ + "coconut" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ta-pe-10": { + "question": "A wane shekaru ne yawancin maza kan yi aure a Arewacin Najeriya? (Ka bayar da lambobin Larabci kawai (misali, 20).)", + "en_question": "At what age do men usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 2 + }, + { + "answers": [ + "35" + ], + "en_answers": [ + "35" + ], + "count": 2 + }, + { + "answers": [ + "31" + ], + "en_answers": [ + "31" + ], + "count": 1 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + }, + { + "answers": [ + "27" + ], + "en_answers": [ + "27" + ], + "count": 1 + }, + { + "answers": [ + "29" + ], + "en_answers": [ + "29" + ], + "count": 1 + }, + { + "answers": [ + "32" + ], + "en_answers": [ + "32" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ta-pe-11": { + "question": "A wane shekaru ne yawancin mata kan yi aure a Arewacin Najeriya? (Ka bayar da lambobin Larabci kawai (misali, 20).)", + "en_question": "At what age do women usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 3 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 3 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 2 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ta-pe-13": { + "question": "A zamanin iyayenku, nawa ne matsakaicin adadin mutanen gidaje a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 20) kawai.)", + "en_question": "In your parents' generation, what was the average number of members in their family in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 2 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ta-pe-17": { + "question": "A wasannin Olympic, wane wasa ne ya fi shahara a Arewacin Najeriya?", + "en_question": "In the Olympic Games, which sport is the most popular in your country?", + "annotations": [ + { + "answers": [ + "ƙwallon ƙafa" + ], + "en_answers": [ + "football" + ], + "count": 1 + }, + { + "answers": [ + "tsere" + ], + "en_answers": [ + "race" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-21": { + "question": "A ina yara kan yi wasan kwallon kafa a Arewacin Najeriya?", + "en_question": "Where do children usually play soccer in your country?", + "annotations": [ + { + "answers": [ + "filin kwallo", + "filin bal" + ], + "en_answers": [ + "football field" + ], + "count": 3 + }, + { + "answers": [ + "a fili", + "fili" + ], + "en_answers": [ + "clearly", + "land" + ], + "count": 2 + }, + { + "answers": [ + "filin unguwa" + ], + "en_answers": [ + "neighborhood field" + ], + "count": 1 + }, + { + "answers": [ + "filin makaranta" + ], + "en_answers": [ + "school field" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-22": { + "question": "Wane irin motsa jiki na yau da kullum ne ya shahara tsakanin mata a Arewacin Najeriya?", + "en_question": "Which daily exercise is popular among women in your country?", + "annotations": [ + { + "answers": [ + "kwallo ƙafa" + ], + "en_answers": [ + "football" + ], + "count": 1 + }, + { + "answers": [ + "yar gala gala" + ], + "en_answers": [ + "tall girl" + ], + "count": 1 + }, + { + "answers": [ + "kwallo" + ], + "en_answers": [ + "ball" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Ta-pe-23": { + "question": "Wane irin motsa jiki na yau da kullum ne ya shahara tsakanin maza a Arewacin Najeriya?", + "en_question": "Which daily exercise is popular among men in your country?", + "annotations": [ + { + "answers": [ + "gudu" + ], + "en_answers": [ + "speed" + ], + "count": 2 + }, + { + "answers": [ + "kwallon kafa" + ], + "en_answers": [ + "football" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ta-pe-25": { + "question": "Wacce ce gagarumar hamayya a gasar wasanni ta kasa a Arewacin Najeriya? (misali, ___ da ___)", + "en_question": "What is the most famous rivalry in a national sports league in your country? (e.g., ___ vs ___)", + "annotations": [ + { + "answers": [ + "ghana" + ], + "en_answers": [ + "ghana" + ], + "count": 2 + }, + { + "answers": [ + "kano pillars da katsina united" + ], + "en_answers": [ + "kano pillars and katsina united" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-29": { + "question": "Wane wasan kwararru ne aka fi biyan kudi mafi yawa a Arewacin Najeriya?", + "en_question": "Which professional sport is the highest paying in your country?", + "annotations": [ + { + "answers": [ + "kwallon kafa" + ], + "en_answers": [ + "football" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ta-pe-30": { + "question": "Wane shiri ne na talabijin da ya shafi wasanni ya fi shahara a Arewacin Najeriya?", + "en_question": "What is/was the most popular sports-related TV program in your country?", + "annotations": [], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-32": { + "question": "Wacce rana cikin shekara aka ware don wasan wuta a Arewacin Najeriya?", + "en_question": "What day of the year is usually dedicated to fireworks in your country?", + "annotations": [], + "idks": { + "idk": 4, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Ta-pe-37": { + "question": "Menene alamar da aka fi sani ta daren sabuwar shekara wacce ake samu a Arewacin Najeriya?", + "en_question": "What is the common symbol of New Year's Eve that is usually found in your country?", + "annotations": [], + "idks": { + "idk": 4, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Ta-pe-42": { + "question": "Wane irin abinci ne mutanen Arewacin Najeriya suka saba ci a daren sabuwar shekara?", + "en_question": "What food do people from your country usually eat on New Year's Eve?", + "annotations": [ + { + "answers": [ + "tuwo" + ], + "en_answers": [ + "mashed food" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 2, + "not-applicable": 1, + "idk": 0 + } + }, + "Ta-pe-45": { + "question": "Me aka fi ci a lokacin bikin daren mafi tsawo na shekara a Arewacin Najeriya?", + "en_question": "What is usually eaten during the celebration of the longest night of the year in your country?", + "annotations": [ + { + "answers": [ + "shinkafa" + ], + "en_answers": [ + "rice" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 3, + "idk": 0, + "no-answer": 0 + } + }, + "Th-en-01": { + "question": "Wane wasan motsa jiki ne yafi shahara a lokacin bazara a Arewacin Najeriya?", + "en_question": "What is the most popular summer sport in your country?", + "annotations": [ + { + "answers": [ + "kwallo" + ], + "en_answers": [ + "ball" + ], + "count": 2 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-03": { + "question": "Wanne ne mafi shaharar gasar wasanni ta kwararru a Arewacin Najeriya?", + "en_question": "What is the most popular professional sports league in your country?", + "annotations": [ + { + "answers": [ + "kwallo", + "kwallon kafa" + ], + "en_answers": [ + "ball", + "football" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-05": { + "question": "Wacce kungiyar wasannin mata ce tafi shahara a Arewacin Najeriya?", + "en_question": "What is the most popular women's sports team in your country?", + "annotations": [ + { + "answers": [ + "women super eagles" + ], + "en_answers": [ + "super eagles mata" + ], + "count": 1 + }, + { + "answers": [ + "kano pillars" + ], + "en_answers": [ + "kano pillars" + ], + "count": 1 + }, + { + "answers": [ + "super falcons" + ], + "en_answers": [ + "super falcons" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-09": { + "question": "Wecce ce gasar da tafi shahara a Arewacin Najeriya?", + "en_question": "What is the most popular tournament in your country?", + "annotations": [ + { + "answers": [ + "gasar kwallon ƙafa", + "kwallon kafa", + "kwallon ƙafa" + ], + "en_answers": [ + "football competition", + "football" + ], + "count": 3 + }, + { + "answers": [ + "gasar zakarun nahiyar turai" + ], + "en_answers": [ + "european champions league" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-11": { + "question": "Wane dan wasan ne ya fi shahara a Arewacin Najeriya?", + "en_question": "Who is the most popular sportperson in your country?", + "annotations": [ + { + "answers": [ + "ahmad musa" + ], + "en_answers": [ + "ahmad musa" + ], + "count": 4 + }, + { + "answers": [ + "cristiano ronaldo" + ], + "en_answers": [ + "cristiano ronaldo" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-12": { + "question": "A wane wasa ne Arewacin Najeriya ta fi samun nasara a gasar kasa da kasa?", + "en_question": "In which sport has your country been most successful in international competitions?", + "annotations": [ + { + "answers": [ + "kwallon kafa" + ], + "en_answers": [ + "football" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Th-en-15": { + "question": "Wane wasan hunturu ne yafi shahara a Arewacin Najeriya?", + "en_question": "What is the most popular winter sport in your country?", + "annotations": [ + { + "answers": [ + "kwallon kafa" + ], + "en_answers": [ + "football" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-19": { + "question": "Wanne gari ko yanki a Arewacin Najeriya ne aka sani da masana'antu?", + "en_question": "What is a city or region in your country known for manufacturing industry?", + "annotations": [ + { + "answers": [ + "kano" + ], + "en_answers": [ + "kano" + ], + "count": 3 + }, + { + "answers": [ + "sokoto" + ], + "en_answers": [ + "sokoto" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-21": { + "question": "Menene ake dauka a matsayin mafi muhimmancin alawus da ake bayarwa ga ma'aikata a Arewacin Najeriya?", + "en_question": "What is regarded as the most important perk typically offered to employees in your country?", + "annotations": [ + { + "answers": [ + "kuɗi" + ], + "en_answers": [ + "money" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Th-en-22": { + "question": "Wane lokaci ne ya kasance mafi muni na tattalin arziki ga Arewacin Najeriya?", + "en_question": "What was the most catastrophic economic period for your country?", + "annotations": [ + { + "answers": [ + "lokacin mulkin buhari" + ], + "en_answers": [ + "during buhari's administration" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-24": { + "question": "Wane yanki a Arewacin Najeriya ne babban cibiyar ma'aikatan fasaha da kamfanonin farawa?", + "en_question": "What region in your country is a major hub for tech workers and start ups?", + "annotations": [ + { + "answers": [ + "kano" + ], + "en_answers": [ + "kano" + ], + "count": 3 + }, + { + "answers": [ + "abuja" + ], + "en_answers": [ + "abuja" + ], + "count": 1 + }, + { + "answers": [ + "kaduna" + ], + "en_answers": [ + "kaduna" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Th-en-27": { + "question": "Wacce masana'anta ce mafi muhimmanci a Arewacin Najeriya?", + "en_question": "What is the most important industry in your country?", + "annotations": [ + { + "answers": [ + "abinci" + ], + "en_answers": [ + "food" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Th-en-35": { + "question": "Wanne daga cikin abincin yau da kullum ake yawan ci tare da iyalai a Arewacin Najeriya? (misali, karin kumallo, rana, ko abincin dare)", + "en_question": "Which one of the daily meals is commonly shared with family members in your country? (e.g., breakfast, lunch, dinner)", + "annotations": [ + { + "answers": [ + "shinkafa" + ], + "en_answers": [ + "rice" + ], + "count": 2 + }, + { + "answers": [ + "abincin dare" + ], + "en_answers": [ + "dinner" + ], + "count": 2 + }, + { + "answers": [ + "karin kumallo" + ], + "en_answers": [ + "breakfast" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-36": { + "question": "Menene shahararren aikin gida da yara suka fi so suyi a karshen mako a Arewacin Najeriya?", + "en_question": "What is a popular family activity with a child to do on weekends in your country?", + "annotations": [ + { + "answers": [ + "shara" + ], + "en_answers": [ + "sweep" + ], + "count": 3 + }, + { + "answers": [ + "wanki" + ], + "en_answers": [ + "washing" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-37": { + "question": "A wane shekaru ne yara kan fara samun ƴancin zaman kansu a Arewacin Najeriya? (Ka bayar da lambobi na Larabci (misali, 12) kawai.)", + "en_question": "At what age do children typically become independent from their parents in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "21" + ], + "en_answers": [ + "21" + ], + "count": 1 + }, + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 1 + }, + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Th-en-38": { + "question": "Menene hutun iyali mafi muhimmanci a Arewacin Najeriya?", + "en_question": "What is the most important family holiday in your country?", + "annotations": [], + "idks": { + "idk": 4, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Th-en-39": { + "question": "Wane wasan iyali ne ya shahara so a Arewacin Najeriya?", + "en_question": "What is a popular family game in your country?", + "annotations": [], + "idks": { + "idk": 4, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Th-en-41": { + "question": "Menene matsakaicin shekaru ga ma'aurata su samu ɗansu na farko a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 20) kawai.)", + "en_question": "What is the average age for couples to have their first child in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-43": { + "question": "Kamar motoci nawa ne iyalai ke mallaka a Arewacin Najeriya a gidajen su? (Ka bayar da lambobin Larabci (misali, 12) kawai.)", + "en_question": "How many cars are owned by a typical family in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 3 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-44": { + "question": "Menene abin da yafi shahara a Arewacin Najeriya a matsayin abincin iyali a karshen mako?", + "en_question": "What is your country's most popular food for family meals on weekends?", + "annotations": [ + { + "answers": [ + "babu" + ], + "en_answers": [ + "none" + ], + "count": 1 + }, + { + "answers": [ + "shinkafa" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "tuwo" + ], + "en_answers": [ + "mashed food" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-45": { + "question": "Menene aikin da iyalai suka fi yi da maraice a mako a Arewacin Najeriya?", + "en_question": "What is the most popular weekday evening family activity in your country?", + "annotations": [ + { + "answers": [ + "girki" + ], + "en_answers": [ + "cooking" + ], + "count": 3 + }, + { + "answers": [ + "gyaran gida" + ], + "en_answers": [ + "house cleaning" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Th-en-48": { + "question": "Menene mafi girman daraja da ake baiwa daliban sakandare masu hazaka a kan ayyukan darsi na gida da jarabawar a Arewacin Najeriya?", + "en_question": "What is the highest grade given to top-achieving high school students on assignments and exams in your country?", + "annotations": [ + { + "answers": [ + "kyautar littatafai" + ], + "en_answers": [ + "book gift" + ], + "count": 1 + }, + { + "answers": [ + "shuganci" + ], + "en_answers": [ + "leadership" + ], + "count": 1 + }, + { + "answers": [ + "littafi" + ], + "en_answers": [ + "book" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-49": { + "question": "Wacce jarrabawa ce ake ɗauka a matsayin mafi muhimmanci ga daliban makarantar sakandare a Arewacin Najeriya?", + "en_question": "What is considered the most important exam for high school students in your country?", + "annotations": [ + { + "answers": [ + "jamb" + ], + "en_answers": [ + "entrance exam" + ], + "count": 2 + }, + { + "answers": [ + "neco" + ], + "en_answers": [ + "national examinations council" + ], + "count": 2 + }, + { + "answers": [ + "weac", + "waec" + ], + "en_answers": [ + "west african examinations council" + ], + "count": 2 + }, + { + "answers": [ + "ssce" + ], + "en_answers": [ + "secondary school certificate examination" + ], + "count": 1 + }, + { + "answers": [ + "kwalifayin" + ], + "en_answers": [ + "qualifying" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-51": { + "question": "Wane darasi ake ganin yafi muhimmanci ga dalibai a Arewacin Najeriya?", + "en_question": "Which subject is considered the most important for students in your country?", + "annotations": [ + { + "answers": [ + "turanci", + "english", + "turaci", + "ingilishi" + ], + "en_answers": [ + "english", + "tax" + ], + "count": 5 + }, + { + "answers": [ + "lissafi" + ], + "en_answers": [ + "arithmetic" + ], + "count": 3 + }, + { + "answers": [ + "kimiyya" + ], + "en_answers": [ + "science" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-53": { + "question": "Menene taron zamantakewa na waje da ake yi a makarantu a Arewacin Najeriya da ya fi shahara?", + "en_question": "What is the most popular extracurricular social event at schools in your country?", + "annotations": [], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-58": { + "question": "Menene mafi girman darasin lissafi da ake koya kafin a shiga jami'a a Arewacin Najeriya?", + "en_question": "What is the most advanced math subject learned before university in your country?", + "annotations": [ + { + "answers": [ + "tarawa", + "tarawa da ɗeɓewa" + ], + "en_answers": [ + "collection and separation", + "gathering" + ], + "count": 2 + }, + { + "answers": [ + "debewa", + "tarawa da ɗeɓewa", + "ɗeɓewa" + ], + "en_answers": [ + "separation" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Tmp-ar-01": { + "question": "Ina daliban jami'a a Arewacin Najeriya sukan je domin karatu don jarrabawar karshe?", + "en_question": "Where do university students in your country usually go to study for their final exams?", + "annotations": [ + { + "answers": [ + "dakin karatu", + "ɗakin karatu", + "laburare" + ], + "en_answers": [ + "library" + ], + "count": 4 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Tmp-ar-02": { + "question": "Menene abin sufurin jama'a da mutane ke amfani da shi wajen zuwa jami'a a Arewacin Najeriya?", + "en_question": "What is a common public transport that people use to go to university in your country?", + "annotations": [ + { + "answers": [ + "keke" + ], + "en_answers": [ + "bicycle" + ], + "count": 3 + }, + { + "answers": [ + "mota" + ], + "en_answers": [ + "car" + ], + "count": 2 + }, + { + "answers": [ + "babur" + ], + "en_answers": [ + "motorcycle" + ], + "count": 2 + }, + { + "answers": [ + "adaidaita sahu", + "adaidaita" + ], + "en_answers": [ + "tricycle taxi" + ], + "count": 2 + }, + { + "answers": [ + "motar dalibai" + ], + "en_answers": [ + "students' bus" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-04": { + "question": "Me daliban firamare a Arewacin Najeriya ke yi bayan sun tashi daga makaranta?", + "en_question": "What do elementary students in your country usually do after school?", + "annotations": [ + { + "answers": [ + "wasa", + "zuwa wajan wasa" + ], + "en_answers": [ + "play", + "going to the play area" + ], + "count": 3 + }, + { + "answers": [ + "zuwa islamiyya" + ], + "en_answers": [ + "going to islamic school" + ], + "count": 1 + }, + { + "answers": [ + "zuwa gida" + ], + "en_answers": [ + "going home" + ], + "count": 1 + }, + { + "answers": [ + "bacci" + ], + "en_answers": [ + "sleep" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + } +} \ No newline at end of file diff --git a/data/annotations/South_Korea_data.json b/data/annotations/South_Korea_data.json new file mode 100644 index 0000000000000000000000000000000000000000..e7d5eea4b5c10b55262fbb953917ec3561cc300c --- /dev/null +++ b/data/annotations/South_Korea_data.json @@ -0,0 +1,19359 @@ +{ + "Al-en-01": { + "question": "대한민국의 유치원생들이 흔히 먹는 간식은 무엇인가요?", + "en_question": "What is a common snack for preschool kids in your country?", + "annotations": [ + { + "answers": [ + "과자" + ], + "en_answers": [ + "snack", + "cookie", + "cracker", + "chip" + ], + "count": 3 + }, + { + "answers": [ + "과일" + ], + "en_answers": [ + "fruit" + ], + "count": 2 + }, + { + "answers": [ + "사탕" + ], + "en_answers": [ + "candy" + ], + "count": 1 + }, + { + "answers": [ + "빵" + ], + "en_answers": [ + "bread" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-02": { + "question": "대한민국에서 맥주와 함께 즐겨먹는 음식은 무엇인가요?", + "en_question": "What is a popular food to go with beer in your country?", + "annotations": [ + { + "answers": [ + "치킨" + ], + "en_answers": [ + "fried chicken" + ], + "count": 5 + }, + { + "answers": [ + "마른안주" + ], + "en_answers": [ + "dried snack", + "dry snack" + ], + "count": 1 + }, + { + "answers": [ + "땅콩" + ], + "en_answers": [ + "peanut" + ], + "count": 1 + }, + { + "answers": [ + "오징어" + ], + "en_answers": [ + "squid" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-04": { + "question": "대한민국에서 가장 인기 있는 과일은 무엇입니까?", + "en_question": "What is the most popular fruit in your country?", + "annotations": [ + { + "answers": [ + "사과" + ], + "en_answers": [ + "apple" + ], + "count": 2 + }, + { + "answers": [ + "수박" + ], + "en_answers": [ + "watermelon" + ], + "count": 2 + }, + { + "answers": [ + "귤" + ], + "en_answers": [ + "mandarin", + "tangerine" + ], + "count": 1 + }, + { + "answers": [ + "딸기" + ], + "en_answers": [ + "strawberry" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-06": { + "question": "대한민국 학교 급식에서 흔히 볼 수 있는 음식은 무엇인가요?", + "en_question": "What is a common school cafeteria food in your country?", + "annotations": [ + { + "answers": [ + "김치" + ], + "en_answers": [ + "kimchi" + ], + "count": 4 + }, + { + "answers": [ + "밥", + "쌀밥", + "쌀" + ], + "en_answers": [ + "rice" + ], + "count": 3 + }, + { + "answers": [ + "제육볶음" + ], + "en_answers": [ + "stir-fried pork" + ], + "count": 1 + }, + { + "answers": [ + "소세지" + ], + "en_answers": [ + "sausage" + ], + "count": 1 + }, + { + "answers": [ + "국" + ], + "en_answers": [ + "soup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-08": { + "question": "대한민국 쇼핑몰에서 사람들이 가장 흔히 먹는 간식은 무엇인가요?", + "en_question": "What are the most commonly eaten snacks at shopping malls in your country?", + "annotations": [ + { + "answers": [ + "아이스크림" + ], + "en_answers": [ + "ice cream" + ], + "count": 2 + }, + { + "answers": [ + "커피" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + }, + { + "answers": [ + "케이크", + "케잌", + "케익" + ], + "en_answers": [ + "cake" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "Al-en-09": { + "question": "대한민국의 놀이공원에서 인기 있는 간식은 무엇인가요?", + "en_question": "What is a popular snack at an amusement park in your country?", + "annotations": [ + { + "answers": [ + "츄러스", + "추러스" + ], + "en_answers": [ + "churros" + ], + "count": 4 + }, + { + "answers": [ + "콜팝" + ], + "en_answers": [ + "cola and popcorn chicken" + ], + "count": 1 + }, + { + "answers": [ + "핫도그" + ], + "en_answers": [ + "corn dog" + ], + "count": 1 + }, + { + "answers": [ + "소시지" + ], + "en_answers": [ + "sausage" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-16": { + "question": "대한민국에서 아이들은 보통 몇 살에 유치원에 다니기 시작하나요? (아라비아 숫자(예: 12)만 기재해 주세요. 만 나이가 아닌 한국식 나이(세는 나이)를 기준으로 답변해주세요.)", + "en_question": "At what age do kids start preschool in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 4 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-17": { + "question": "대한민국의 초등학교에서 방과 후에 하는 스포츠 중 인기 있는 스포츠는 무엇인가요?", + "en_question": "What is a popular afterschool sport for elementary schools in your country?", + "annotations": [ + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "피구" + ], + "en_answers": [ + "dodgeball" + ], + "count": 1 + }, + { + "answers": [ + "농구" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "태권도" + ], + "en_answers": [ + "taekwondo" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-18": { + "question": "대한민국에서 초등학생들이 받는 사교육에는 어떤 과목이 있나요?", + "en_question": "For which subject do elementary students get private education in your country?", + "annotations": [ + { + "answers": [ + "영어" + ], + "en_answers": [ + "english" + ], + "count": 5 + }, + { + "answers": [ + "수학" + ], + "en_answers": [ + "math", + "mathematics" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-19": { + "question": "대한민국 고등학생들 사이에서 인기 있는 외국어는 무엇인가요?", + "en_question": "What is a popular second language for high school students in your country?", + "annotations": [ + { + "answers": [ + "영어" + ], + "en_answers": [ + "english" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-21": { + "question": "대한민국의 영재 교육에서 가장 중요한 과목은 무엇인가요?", + "en_question": "Which subject is the most important for gifted education in your country?", + "annotations": [ + { + "answers": [ + "수학" + ], + "en_answers": [ + "math", + "mathematics" + ], + "count": 5 + }, + { + "answers": [ + "과학" + ], + "en_answers": [ + "science" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-32": { + "question": "대한민국에서는 추석에 주로 어떤 음식을 먹나요?", + "en_question": "What is the main dish for Thanksgiving in your country?", + "annotations": [ + { + "answers": [ + "송편" + ], + "en_answers": [ + "songpyeon" + ], + "count": 5 + }, + { + "answers": [ + "전" + ], + "en_answers": [ + "jeon", + "korean pancake" + ], + "count": 1 + }, + { + "answers": [ + "갈비" + ], + "en_answers": [ + "galbi" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-33": { + "question": "대한민국 사람들은 할로윈을 기념하기 위해 무엇을 하나요?", + "en_question": "What do people do to celebrate Halloween in your country?", + "annotations": [ + { + "answers": [ + "할로윈 분장", + "코스튬 플레이", + "커스튬 플레이", + "분장", + "코스프레" + ], + "en_answers": [ + "costume play", + "makeup" + ], + "count": 3 + } + ], + "idks": { + "not-applicable": 1, + "no-answer": 1, + "idk": 0 + } + }, + "Al-en-34": { + "question": "대한민국 사람들은 새해 첫날을 어떻게 기념하나요?", + "en_question": "What do people do to celebrate New Year's Day in your country?", + "annotations": [ + { + "answers": [ + "떡국 먹기", + "떡국먹기", + "떡국을 먹는다", + "떡국" + ], + "en_answers": [ + "eating rice cake soup", + "eating tteokguk", + "eating sliced rice cake soup", + "eating rice-cake soup", + "sliced rice cake soup", + "tteokguk", + "rice cake soup", + "rice-cake soup" + ], + "count": 2 + }, + { + "answers": [ + "해돋이 보기", + "해돋이보기", + "해돋이", + "일출 보기", + "일출" + ], + "en_answers": [ + "watching the sunrise" + ], + "count": 2 + }, + { + "answers": [ + "제야의 종", + "보신각", + "타종" + ], + "en_answers": [ + "watch-night bell" + ], + "count": 1 + }, + { + "answers": [ + "가족 식사", + "가족식사" + ], + "en_answers": [ + "family meal" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-35": { + "question": "대한민국에서 사람들은 크리스마스를 어떻게 기념하나요?", + "en_question": "What do people do to celebrate Christmas in your country?", + "annotations": [ + { + "answers": [ + "데이트" + ], + "en_answers": [ + "date" + ], + "count": 2 + }, + { + "answers": [ + "선물", + "선물 주기" + ], + "en_answers": [ + "gift giving" + ], + "count": 2 + }, + { + "answers": [ + "케이크" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "크리스마스 트리" + ], + "en_answers": [ + "christmas tree" + ], + "count": 1 + }, + { + "answers": [ + "모임" + ], + "en_answers": [ + "gathering", + "get-together" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-36": { + "question": "대한민국에서 할로윈 관련 음식은 무엇인가요?", + "en_question": "What food is associated with Halloween in your country?", + "annotations": [ + { + "answers": [ + "쿠키" + ], + "en_answers": [ + "cookie" + ], + "count": 1 + }, + { + "answers": [ + "사탕" + ], + "en_answers": [ + "candy", + "sweets" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "no-answer": 1, + "idk": 0 + } + }, + "Al-en-37": { + "question": "대한민국에서 크리스마스와 관련된 음식은 무엇인가요?", + "en_question": "What food is associated with Christmas in your country?", + "annotations": [ + { + "answers": [ + "케이크", + "케잌", + "케익" + ], + "en_answers": [ + "cake" + ], + "count": 4 + }, + { + "answers": [ + "쿠키" + ], + "en_answers": [ + "cookie" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Al-en-38": { + "question": "대한민국에서 발렌타인 데이와 관련된 식품은 무엇인가요?", + "en_question": "What food is associated with Valentine's day in your country?", + "annotations": [ + { + "answers": [ + "초콜릿", + "초콜렛", + "초코렛" + ], + "en_answers": [ + "chocolate" + ], + "count": 5 + }, + { + "answers": [ + "사탕" + ], + "en_answers": [ + "candy", + "sweets" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-39": { + "question": "대한민국 사람들은 생일에 무엇을 먹나요?", + "en_question": "What do people eat on their birthday in your country?", + "annotations": [ + { + "answers": [ + "미역국" + ], + "en_answers": [ + "seaweed soup" + ], + "count": 5 + }, + { + "answers": [ + "케이크" + ], + "en_answers": [ + "cake" + ], + "count": 2 + }, + { + "answers": [ + "갈비" + ], + "en_answers": [ + "galbi" + ], + "count": 1 + }, + { + "answers": [ + "밥" + ], + "en_answers": [ + "meal" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-40": { + "question": "대한민국에서 가족들이 어린 아이들과 함께 재밌는 시간을 보낼 수 있는 인기 있는 야외 장소는 어디인가요?", + "en_question": "What is a popular outdoor place for families to have fun with little kids in your country?", + "annotations": [ + { + "answers": [ + "공원" + ], + "en_answers": [ + "park" + ], + "count": 3 + }, + { + "answers": [ + "놀이공원", + "놀이동산" + ], + "en_answers": [ + "amusement park" + ], + "count": 3 + }, + { + "answers": [ + "동물원" + ], + "en_answers": [ + "zoo" + ], + "count": 1 + }, + { + "answers": [ + "어린이대공원" + ], + "en_answers": [ + "children's grand park" + ], + "count": 1 + }, + { + "answers": [ + "야구장" + ], + "en_answers": [ + "baseball stadium", + "baseball park" + ], + "count": 1 + }, + { + "answers": [ + "경기장" + ], + "en_answers": [ + "sports stadium" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-43": { + "question": "대한민국에서 가족들이 실내에서 주로 즐기는 활동은 무엇인가요?", + "en_question": "What is a popular indoor activity for families in your country?", + "annotations": [ + { + "answers": [ + "티비 시청", + "티비시청", + "텔레비전", + "티비" + ], + "en_answers": [ + "tv", + "watching tv" + ], + "count": 2 + }, + { + "answers": [ + "독서" + ], + "en_answers": [ + "reading" + ], + "count": 1 + }, + { + "answers": [ + "보드게임" + ], + "en_answers": [ + "board game" + ], + "count": 1 + }, + { + "answers": [ + "수다" + ], + "en_answers": [ + "chat" + ], + "count": 1 + }, + { + "answers": [ + "게임" + ], + "en_answers": [ + "game" + ], + "count": 1 + }, + { + "answers": [ + "식사" + ], + "en_answers": [ + "meal" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-02": { + "question": "대한민국의 대학생들은 어디에서 점심을 먹나요?", + "en_question": "Where do university students have lunch in your country?", + "annotations": [ + { + "answers": [ + "학생식당", + "교내식당", + "학식" + ], + "en_answers": [ + "cafeteria", + "school cafeteria", + "school meal" + ], + "count": 4 + }, + { + "answers": [ + "식당", + "근처 식당", + "대학가", + "음식점" + ], + "en_answers": [ + "restaurant", + "nearby restaurant", + "university district" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-03": { + "question": "대한민국의 고등학생들은 주로 몇 월에 기말고사를 보나요? (아라비아 숫자(1~12)만 기재해 주세요.)", + "en_question": "Which month is the final exam term usually scheduled at high schools in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 4 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 3 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-08": { + "question": "대한민국 고등학생들은 보통 하루에 몇 시간을 학교에서 보내나요? (아라비아 숫자 정수(0~24)로, 소수점 없이 제공해주세요.)", + "en_question": "How many hours a day do students in your country usually spend at high school? (Provide Arabic numerals in integers (0~24), without any decimal points.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "14" + ], + "en_answers": [ + "14" + ], + "count": 1 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-09": { + "question": "대한민국의 고등학생들은 학교에서 몇 가지 언어를 공부하나요? (아라비아 숫자(예: 5)만 기재해주세요.)", + "en_question": "How many languages do students study at high school in your country? (Provide Arabic numerals (e.g., 5) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 4 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-34": { + "question": "대한민국의 학교에서 가장 인기 있는 팀스포츠는 무엇입니까?", + "en_question": "What is the most popular sport played in a team at school in your country?", + "annotations": [ + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "피구" + ], + "en_answers": [ + "dodgeball" + ], + "count": 2 + }, + { + "answers": [ + "발야구" + ], + "en_answers": [ + "kickball" + ], + "count": 1 + }, + { + "answers": [ + "농구" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-35": { + "question": "대한민국에서 가장 인기 있는 스포츠 해설가는 누구인가요?", + "en_question": "Who is the most popular sport commentator in your country?", + "annotations": [ + { + "answers": [ + "배성재" + ], + "en_answers": [ + "bae sung-jae", + "bae sung jae" + ], + "count": 2 + }, + { + "answers": [ + "이영표" + ], + "en_answers": [ + "lee young-pyo", + "lee young pyo" + ], + "count": 2 + }, + { + "answers": [ + "김성주" + ], + "en_answers": [ + "kim sung joo", + "kim sung-joo" + ], + "count": 1 + }, + { + "answers": [ + "장지현" + ], + "en_answers": [ + "jang ji-hyun", + "jang ji hyun", + "jang jihyun" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-36": { + "question": "대한민국에서 가장 인기 있는 스포츠 팀은 어디인가요?", + "en_question": "What is the most popular sport team in your country?", + "annotations": [ + { + "answers": [ + "lg 트윈스", + "lg트윈스", + "엘지 트윈스" + ], + "en_answers": [ + "lg twins" + ], + "count": 2 + }, + { + "answers": [ + "기아 타이거즈", + "기아", + "kia 타이거즈" + ], + "en_answers": [ + "kia tigers" + ], + "count": 2 + }, + { + "answers": [ + "두산 베어스", + "두산" + ], + "en_answers": [ + "doosan bears" + ], + "count": 1 + }, + { + "answers": [ + "토트넘" + ], + "en_answers": [ + "tottenham hotspur", + "tottenham" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-43": { + "question": "대한민국 사람들이 보통 스포츠 방송을 보기 위해 모이는 장소는 어디인가요?", + "en_question": "What are the common places or venues where individuals in your country usually gather to watch sports broadcasts?", + "annotations": [ + { + "answers": [ + "주점", + "호프집", + "술집" + ], + "en_answers": [ + "bar", + "pub" + ], + "count": 2 + }, + { + "answers": [ + "광화문" + ], + "en_answers": [ + "gwanghwamun" + ], + "count": 1 + }, + { + "answers": [ + "치킨집" + ], + "en_answers": [ + "chicken restaurant", + "chicken place" + ], + "count": 1 + }, + { + "answers": [ + "영화관" + ], + "en_answers": [ + "theater" + ], + "count": 1 + }, + { + "answers": [ + "집" + ], + "en_answers": [ + "house", + "home" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-05": { + "question": "대한민국 사람들은 보통 하루에 몇 끼를 먹나요? (아라비아 숫자(예: 5)만 기재하세요.)", + "en_question": "How many meals per day do people from your country usually have? (Provide Arabic numerals (e.g., 5) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 5 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-06": { + "question": "대한민국 사람들에게 하루 중 가장 중요한 끼니는 무엇인가요?", + "en_question": "Which is the most important meal of the day to people from your country?", + "annotations": [ + { + "answers": [ + "저녁", + "저녁밥" + ], + "en_answers": [ + "dinner" + ], + "count": 4 + }, + { + "answers": [ + "점심" + ], + "en_answers": [ + "lunch" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-08": { + "question": "대한민국 음식에서 가장 흔히 사용되는 재료는 무엇입니까?", + "en_question": "What is the most common ingredient used in your country's diet?", + "annotations": [ + { + "answers": [ + "배추" + ], + "en_answers": [ + "cabbage" + ], + "count": 2 + }, + { + "answers": [ + "고춧가루" + ], + "en_answers": [ + "red pepper powder", + "chilli powder" + ], + "count": 1 + }, + { + "answers": [ + "소금" + ], + "en_answers": [ + "salt" + ], + "count": 1 + }, + { + "answers": [ + "쌀" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "달걀" + ], + "en_answers": [ + "egg" + ], + "count": 1 + }, + { + "answers": [ + "된장" + ], + "en_answers": [ + "soybean paste", + "doenjang" + ], + "count": 1 + }, + { + "answers": [ + "고추장" + ], + "en_answers": [ + "red chili paste", + "red pepper paste", + "gochujang" + ], + "count": 1 + }, + { + "answers": [ + "마늘" + ], + "en_answers": [ + "garlic" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-09": { + "question": "대한민국 사람들은 보통 디저트로 무엇을 먹나요?", + "en_question": "What do people from your country usually eat for dessert?", + "annotations": [ + { + "answers": [ + "과일" + ], + "en_answers": [ + "fruit" + ], + "count": 2 + }, + { + "answers": [ + "케이크", + "케익", + "케잌" + ], + "en_answers": [ + "cake" + ], + "count": 2 + }, + { + "answers": [ + "식혜" + ], + "en_answers": [ + "sweet rice drink", + "sikhye", + "shikhye", + "shikeh", + "rice punch", + "rice dessert drink" + ], + "count": 1 + }, + { + "answers": [ + "수정과" + ], + "en_answers": [ + "sujeonggwa", + "cinnamon-ginger punch", + "sweet cinnamon punch", + "soo jung gwa", + "cinnamon punch" + ], + "count": 1 + }, + { + "answers": [ + "커피" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-11": { + "question": "대한민국에서 사람들은 보통 어떤 요일에 가족식사를 하나요?", + "en_question": "Which day of the week do people usually organize a family meal in your country?", + "annotations": [ + { + "answers": [ + "토요일", + "토욜" + ], + "en_answers": [ + "saturday" + ], + "count": 5 + }, + { + "answers": [ + "일요일" + ], + "en_answers": [ + "sunday" + ], + "count": 2 + }, + { + "answers": [ + "금요일" + ], + "en_answers": [ + "friday" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-14": { + "question": "대한민국에서 가장 인기 있는 따뜻한 음료는 무엇입니까?", + "en_question": "Which is the most popular hot drink in your country?", + "annotations": [ + { + "answers": [ + "커피" + ], + "en_answers": [ + "coffee" + ], + "count": 3 + }, + { + "answers": [ + "녹차" + ], + "en_answers": [ + "green tea" + ], + "count": 1 + }, + { + "answers": [ + "둥굴레차" + ], + "en_answers": [ + "solomon's seal tea" + ], + "count": 1 + }, + { + "answers": [ + "핫초코" + ], + "en_answers": [ + "hot chocolate" + ], + "count": 1 + }, + { + "answers": [ + "아메리카노" + ], + "en_answers": [ + "americano" + ], + "count": 1 + }, + { + "answers": [ + "믹스커피" + ], + "en_answers": [ + "instant coffee" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-19": { + "question": "대한민국의 젊은이들은 클럽에서 보통 무엇을 마시나요?", + "en_question": "What do young people from your country usually drink at the night club?", + "annotations": [ + { + "answers": [ + "맥주" + ], + "en_answers": [ + "beer" + ], + "count": 2 + }, + { + "answers": [ + "술" + ], + "en_answers": [ + "alcohol" + ], + "count": 1 + }, + { + "answers": [ + "양주" + ], + "en_answers": [ + "liquor", + "spirits" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-21": { + "question": "대한민국에서 사람들이 보통 어느 달에 휴가를 가나요? (아라비아 숫자(1~12)만 기재해 주세요.)", + "en_question": "At which month do people usually take holidays in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 3 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-29": { + "question": "대한민국에는 새해 전날에 무엇을 하는 문화가 있나요?", + "en_question": "What tradition is there in your country for New Year's Eve?", + "annotations": [ + { + "answers": [ + "카운트다운" + ], + "en_answers": [ + "countdown" + ], + "count": 1 + }, + { + "answers": [ + "타종" + ], + "en_answers": [ + "ringing the bell" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 1 + } + }, + "Ca-sp-38": { + "question": "대한민국에서 가족이 전형적으로 거주하는 주거형태는 무엇인가요?", + "en_question": "Which is the typical type of house for a family in your country?", + "annotations": [ + { + "answers": [ + "아파트" + ], + "en_answers": [ + "apartment", + "flat" + ], + "count": 5 + }, + { + "answers": [ + "주택" + ], + "en_answers": [ + "detached house", + "attached house" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-41": { + "question": "대한민국에서 돌봄이 필요한 노인들은 대체로 어느 곳에 사나요?", + "en_question": "Where do the dependent elderly usually live in your country?", + "annotations": [ + { + "answers": [ + "주택", + "자가", + "자택" + ], + "en_answers": [ + "house", + "home" + ], + "count": 3 + }, + { + "answers": [ + "요양원" + ], + "en_answers": [ + "sanatorium", + "nursing home", + "care home" + ], + "count": 2 + }, + { + "answers": [ + "지방", + "시골" + ], + "en_answers": [ + "countryside" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-42": { + "question": "대한민국에서 여성의 출산 휴가는 몇 주인가요? (아라비아 숫자(예: 20)만 제공해 주세요.)", + "en_question": "How long (in weeks) is your country's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "13" + ], + "en_answers": [ + "13" + ], + "count": 2 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-43": { + "question": "대한민국에서 남성의 육아휴직 기간은 몇 주인가요? (아라비아 숫자(예: 20)만 기재해 주세요.)", + "en_question": "How long (in weeks) is your country's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "52" + ], + "en_answers": [ + "52" + ], + "count": 3 + }, + { + "answers": [ + "54" + ], + "en_answers": [ + "54" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-45": { + "question": "대한민국에서는 주로 어떤 종류의 여행지로 가족 휴가를 가나요?", + "en_question": "What type of destination is commonly chosen for a family vacation in your country?", + "annotations": [ + { + "answers": [ + "바다", + "해변" + ], + "en_answers": [ + "sea", + "ocean", + "beach" + ], + "count": 4 + }, + { + "answers": [ + "산" + ], + "en_answers": [ + "mountain" + ], + "count": 1 + }, + { + "answers": [ + "계곡" + ], + "en_answers": [ + "valley" + ], + "count": 1 + }, + { + "answers": [ + "동남아시아" + ], + "en_answers": [ + "southeast asia" + ], + "count": 1 + }, + { + "answers": [ + "유럽" + ], + "en_answers": [ + "europe" + ], + "count": 1 + }, + { + "answers": [ + "휴양지" + ], + "en_answers": [ + "vacation spot", + "resort" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-05": { + "question": "대한민국의 노인들이 가장 좋아하는 스포츠는 무엇인가요?", + "en_question": "What sports do seniors like the most in your country?", + "annotations": [ + { + "answers": [ + "장기" + ], + "en_answers": [ + "janggi", + "korean chess" + ], + "count": 2 + }, + { + "answers": [ + "골프" + ], + "en_answers": [ + "golf" + ], + "count": 1 + }, + { + "answers": [ + "게이트볼" + ], + "en_answers": [ + "gateball" + ], + "count": 1 + }, + { + "answers": [ + "파크골프" + ], + "en_answers": [ + "park golf" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-06": { + "question": "대한민국 남성들이 가장 좋아하는 스포츠는 무엇인가요?", + "en_question": "What sports do men like to play the most in your country?", + "annotations": [ + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "야구" + ], + "en_answers": [ + "baseball" + ], + "count": 2 + }, + { + "answers": [ + "농구" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "골프" + ], + "en_answers": [ + "golf" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-07": { + "question": "대한민국에서 가장 유명한 농구 선수는 누구인가요?", + "en_question": "Who is the most famous basketball player in your country?", + "annotations": [ + { + "answers": [ + "서장훈" + ], + "en_answers": [ + "seo jang-hoon", + "seo jang hoon" + ], + "count": 3 + }, + { + "answers": [ + "허재" + ], + "en_answers": [ + "hur jae" + ], + "count": 1 + }, + { + "answers": [ + "마이클 조던" + ], + "en_answers": [ + "michael jordan" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-08": { + "question": "대한민국의 아이들 사이에서 가장 인기 있는 스포츠는 무엇인가요?", + "en_question": "What is the most popular sports among children in your country?", + "annotations": [ + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "피구" + ], + "en_answers": [ + "dodgeball" + ], + "count": 1 + }, + { + "answers": [ + "야구" + ], + "en_answers": [ + "baseball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-09": { + "question": "대한민국 여성들이 가장 좋아하는 스포츠는 무엇인가요?", + "en_question": "What sports do women like to play the most in your country?", + "annotations": [ + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "배구" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "배드민턴" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "야구" + ], + "en_answers": [ + "baseball" + ], + "count": 1 + }, + { + "answers": [ + "피겨스케이팅", + "피겨 스케이팅" + ], + "en_answers": [ + "figure skating" + ], + "count": 1 + }, + { + "answers": [ + "크로스핏" + ], + "en_answers": [ + "crossfit" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-11": { + "question": "대한민국이 올림픽에서 가장 많은 금메달을 획득한 종목은 무엇인가요?", + "en_question": "What sports event has your country won the most gold medals at the Olympics?", + "annotations": [ + { + "answers": [ + "양궁" + ], + "en_answers": [ + "archery" + ], + "count": 5 + }, + { + "answers": [ + "태권도" + ], + "en_answers": [ + "taekwondo" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-15": { + "question": "대한민국의 대학교 남학생들이 가장 좋아하는 스포츠는 무엇인가요?", + "en_question": "What sports do male students in university like to play the most in your country?", + "annotations": [ + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "농구" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "야구" + ], + "en_answers": [ + "baseball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-16": { + "question": "대한민국의 평균 가족 구성원 수는 몇 명입니까? (아라비아 숫자(예: 12)만 기재해 주세요.)", + "en_question": "How many people are there in a family on average in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 4 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-18": { + "question": "대한민국의 부부는 보통 몇 명의 자녀를 가지고 있습니까? (아라비아 숫자(예: 12)만 기재해 주세요.)", + "en_question": "How many children do couples usually have in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 4 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-31": { + "question": "대한민국의 초등학교는 총 몇 년 다녀야 하나요? (아라비아 숫자(예: 12)만 기재해 주세요.)", + "en_question": "What is the duration of elementary school in years in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-32": { + "question": "대한민국의 의무교육 기간은 몇 년인가요? (아라비아 숫자 (예: 12)만 기재하십시오.)", + "en_question": "What is the duration of compulsory education in years in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 2 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 2 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-33": { + "question": "대한민국에서 학생들은 몇 살 때부터 외국어를 배우기 시작하나요? (아라비아 숫자(예: 12)만 기재해 주세요. 만 나이가 아닌 한국식 나이(세는 나이)를 기준으로 답변해주세요.)", + "en_question": "From which age do students start learning their second language in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 4 + }, + { + "answers": [ + "11" + ], + "en_answers": [ + "11" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-38": { + "question": "대한민국의 대학교 학부 교육 기간은 몇 년인가요? (아라비아 숫자(예: 12)만 기재해 주세요.)", + "en_question": "What is the duration of undergraduate education in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-40": { + "question": "대한민국의 초등학교 저학년 학생들은 주로 몇 시에 하교하나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)", + "en_question": "What time do younger elementary school students finish school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 2 + }, + { + "answers": [ + "15:00" + ], + "en_answers": [ + "15:00" + ], + "count": 2 + }, + { + "answers": [ + "12:00" + ], + "en_answers": [ + "12:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-41": { + "question": "대한민국의 초등학생들은 보통 몇 가지 악기를 다루나요? (아라비아 숫자(예: 12)만 기재해주세요.)", + "en_question": "How many musical instruments do elementary school students in your country typically play? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 4 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-02": { + "question": "대한민국 사람들은 주중 어느 요일에 회식을 하는 것을 가장 선호하나요?", + "en_question": "What day of the week do people in your country prefer to have company dinners?", + "annotations": [ + { + "answers": [ + "금요일", + "금" + ], + "en_answers": [ + "friday", + "gold" + ], + "count": 3 + }, + { + "answers": [ + "목요일" + ], + "en_answers": [ + "thursday" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-03": { + "question": "대한민국에서 금융 회사가 가장 많은 지역/도시는 어디인가요?", + "en_question": "Which region/city has the highest number of financial companies in your country?", + "annotations": [ + { + "answers": [ + "여의도" + ], + "en_answers": [ + "yeouido" + ], + "count": 4 + }, + { + "answers": [ + "서울" + ], + "en_answers": [ + "seoul" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-07": { + "question": "대한민국에서 가장 유명한 사기업은 어디입니까?", + "en_question": "What is the most famous private company in your country?", + "annotations": [ + { + "answers": [ + "삼성" + ], + "en_answers": [ + "samsung" + ], + "count": 5 + }, + { + "answers": [ + "lg", + "엘지" + ], + "en_answers": [ + "lg" + ], + "count": 1 + }, + { + "answers": [ + "sk" + ], + "en_answers": [ + "sk" + ], + "count": 1 + }, + { + "answers": [ + "sk하이닉스" + ], + "en_answers": [ + "sk hynix" + ], + "count": 1 + }, + { + "answers": [ + "네이버" + ], + "en_answers": [ + "naver" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-08": { + "question": "대한민국에서는 일주일에 최대 몇 시간 일할 수 있습니까? (아라비아 숫자(예: 12)만 기재해 주세요.)", + "en_question": "What is the maximum number of hours one can work per week in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "52" + ], + "en_answers": [ + "52" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-09": { + "question": "대한민국 사람들은 보통 회식할 때 무엇을 먹나요?", + "en_question": "What do people typically eat during company get-together in your country?", + "annotations": [ + { + "answers": [ + "삼겹살", + "삽겹살" + ], + "en_answers": [ + "pork belly" + ], + "count": 4 + }, + { + "answers": [ + "소주" + ], + "en_answers": [ + "soju" + ], + "count": 1 + }, + { + "answers": [ + "고기" + ], + "en_answers": [ + "meat" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-14": { + "question": "대한민국의 대표 수출 품목은 무엇입니까?", + "en_question": "What is the representative export item of your country?", + "annotations": [ + { + "answers": [ + "반도체" + ], + "en_answers": [ + "semiconductor" + ], + "count": 4 + }, + { + "answers": [ + "자동차" + ], + "en_answers": [ + "car", + "automobile" + ], + "count": 2 + }, + { + "answers": [ + "전자제품", + "전자기기" + ], + "en_answers": [ + "electronic devices" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-15": { + "question": "대한민국에서 점심 시간은 주로 몇 시간입니까? (아라비아 숫자로 소수점 한 자리까지(예: 2, 3.5)만 제공해 주세요.)", + "en_question": "How long (in hours) is the typical lunch break in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-16": { + "question": "대한민국에서 출산 후 어머니들이 회복을 위해 어디에 머무르나요?", + "en_question": "Where do mothers stay for a certain period after childbirth for recovery in your country?", + "annotations": [ + { + "answers": [ + "산후조리원" + ], + "en_answers": [ + "postnatal care center" + ], + "count": 5 + }, + { + "answers": [ + "집" + ], + "en_answers": [ + "house" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-19": { + "question": "대한민국에서 어버이날에 부모님께 드리는 가장 흔한 꽃은 무엇인가요?", + "en_question": "What is your country's most commonly given flower on Parents' Day?", + "annotations": [ + { + "answers": [ + "카네이션" + ], + "en_answers": [ + "carnation" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-22": { + "question": "대한민국 사회에서 사람들은 첫 월급을 특별히 어디에 쓰나요?", + "en_question": "What do people especially spend their first salary on in your country's society?", + "annotations": [ + { + "answers": [ + "부모님 선물", + "부모님선물" + ], + "en_answers": [ + "gift for parents" + ], + "count": 4 + }, + { + "answers": [ + "부모님 용돈" + ], + "en_answers": [ + "allowance for parents", + "parental allowance" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-24": { + "question": "대한민국 어린이들이 가장 선호하는 놀이 시설은 무엇인가요?", + "en_question": "What is the most preferred recreational facility among children in your country?", + "annotations": [ + { + "answers": [ + "놀이터" + ], + "en_answers": [ + "playground" + ], + "count": 2 + }, + { + "answers": [ + "키즈카페" + ], + "en_answers": [ + "kids cafe" + ], + "count": 1 + }, + { + "answers": [ + "미끄럼틀" + ], + "en_answers": [ + "slide" + ], + "count": 1 + }, + { + "answers": [ + "그네" + ], + "en_answers": [ + "swing" + ], + "count": 1 + }, + { + "answers": [ + "놀이동산", + "놀이공원" + ], + "en_answers": [ + "amusement park" + ], + "count": 1 + }, + { + "answers": [ + "에버랜드" + ], + "en_answers": [ + "everland" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-25": { + "question": "대한민국의 가족 관련 공휴일은 무엇이 있나요?", + "en_question": "What are the family-related holidays in your country?", + "annotations": [ + { + "answers": [ + "어린이날" + ], + "en_answers": [ + "children's day" + ], + "count": 4 + }, + { + "answers": [ + "어버이날" + ], + "en_answers": [ + "parents' day" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-26": { + "question": "대한민국 사회에서 사람들은 언제(무엇을 한 후에) 부모로부터 독립을 하나요?", + "en_question": "What are the key milestones associated with children's independence from their parents in your country's society?", + "annotations": [ + { + "answers": [ + "취업" + ], + "en_answers": [ + "employment" + ], + "count": 4 + }, + { + "answers": [ + "결혼" + ], + "en_answers": [ + "marriage" + ], + "count": 1 + }, + { + "answers": [ + "대학교 졸업" + ], + "en_answers": [ + "university graduation" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-27": { + "question": "대한민국에서 노부모님을 방문할 때 주로 드리는 선물은 무엇인가요?", + "en_question": "What is the common gift you give when visiting elderly parents in your country?", + "annotations": [ + { + "answers": [ + "건강식품", + "건강기능식품" + ], + "en_answers": [ + "health functional food", + "functional food" + ], + "count": 3 + }, + { + "answers": [ + "용돈" + ], + "en_answers": [ + "allowance", + "parental allowance" + ], + "count": 2 + }, + { + "answers": [ + "홍삼" + ], + "en_answers": [ + "red ginseng" + ], + "count": 1 + }, + { + "answers": [ + "과일 세트", + "과일" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + }, + { + "answers": [ + "고기 세트", + "고기" + ], + "en_answers": [ + "meat" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-28": { + "question": "대한민국에서 아기가 태어난 후 사람들이 처음으로 축하하는 날은 언제인가요?", + "en_question": "When is the first day that people celebrate after a child is born in your country?", + "annotations": [ + { + "answers": [ + "돌잔치", + "돌" + ], + "en_answers": [ + "first birthday party", + "first birthday" + ], + "count": 3 + }, + { + "answers": [ + "백일" + ], + "en_answers": [ + "one hundredth day", + "100th day" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-29": { + "question": "대한민국 사회에서 가장 크게 기념하는 생일은 몇 번째 생일인가요?", + "en_question": "Which age's birthday is celebrated the most grandly in your country's society?", + "annotations": [ + { + "answers": [ + "돌", + "1", + "첫 번째", + "첫번째" + ], + "en_answers": [ + "1", + "first", + "first birthday" + ], + "count": 4 + }, + { + "answers": [ + "70", + "일흔 번째", + "칠순" + ], + "en_answers": [ + "70th birthday", + "70th", + "seventieth" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-31": { + "question": "대한민국의 중고등학생들은 보통 어디에서 시험공부를 하나요?", + "en_question": "Where do middle and high school students in your country usually study for exams?", + "annotations": [ + { + "answers": [ + "스터디카페" + ], + "en_answers": [ + "study cafe" + ], + "count": 4 + }, + { + "answers": [ + "독서실" + ], + "en_answers": [ + "study room", + "reading room" + ], + "count": 2 + }, + { + "answers": [ + "도서관" + ], + "en_answers": [ + "library" + ], + "count": 2 + }, + { + "answers": [ + "학교" + ], + "en_answers": [ + "school" + ], + "count": 1 + }, + { + "answers": [ + "집" + ], + "en_answers": [ + "house", + "home" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-33": { + "question": "대한민국의 고등학생들은 보통 저녁 식사 후에 어디로 가나요?", + "en_question": "Where do high school students in your country usually go after dinner?", + "annotations": [ + { + "answers": [ + "학원" + ], + "en_answers": [ + "academy" + ], + "count": 4 + }, + { + "answers": [ + "집", + "자기방" + ], + "en_answers": [ + "house", + "home", + "own room" + ], + "count": 2 + }, + { + "answers": [ + "독서실" + ], + "en_answers": [ + "study room", + "reading room" + ], + "count": 1 + }, + { + "answers": [ + "피씨방" + ], + "en_answers": [ + "pc bang", + "pc room", + "internet cafe" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-34": { + "question": "대한민국의 초등학생들은 어떻게 등교하나요?", + "en_question": "How do elementary school students in your country go to school?", + "annotations": [ + { + "answers": [ + "도보", + "걸어서" + ], + "en_answers": [ + "walk", + "walking" + ], + "count": 5 + }, + { + "answers": [ + "자가용", + "자동차", + "차" + ], + "en_answers": [ + "car" + ], + "count": 1 + }, + { + "answers": [ + "버스" + ], + "en_answers": [ + "bus" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-35": { + "question": "대한민국에서 가장 흔한 사교육은 무엇인가요?", + "en_question": "What is the most common form of private education in your country?", + "annotations": [ + { + "answers": [ + "학원" + ], + "en_answers": [ + "academy" + ], + "count": 3 + }, + { + "answers": [ + "과외" + ], + "en_answers": [ + "private tutoring", + "private lesson" + ], + "count": 2 + }, + { + "answers": [ + "인터넷 강의" + ], + "en_answers": [ + "online lecture" + ], + "count": 1 + }, + { + "answers": [ + "수학 학원" + ], + "en_answers": [ + "math academy" + ], + "count": 1 + }, + { + "answers": [ + "영어 학원" + ], + "en_answers": [ + "english academy" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-36": { + "question": "대한민국의 중고등학생들이 어떤 과목을 가르치는 학원을 가장 많이 가나요?", + "en_question": "Which subject’s academy/private educational institute do middle or high students most frequently attend in your country?", + "annotations": [ + { + "answers": [ + "수학" + ], + "en_answers": [ + "math", + "mathematics" + ], + "count": 5 + }, + { + "answers": [ + "영어" + ], + "en_answers": [ + "english" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-37": { + "question": "대한민국의 중고등학생들은 학교에 어떤 종류의 옷을 입고 등교하나요?", + "en_question": "What type of clothing do middle and high school students wear to school in your country?", + "annotations": [ + { + "answers": [ + "교복" + ], + "en_answers": [ + "school uniform" + ], + "count": 5 + }, + { + "answers": [ + "체육복" + ], + "en_answers": [ + "gym clothes", + "pe clothes", + "pe uniform", + "p.e. clothes", + "p.e. uniform" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-38": { + "question": "대한민국의 대학 입시에서 가장 입학하기 어려운 전공은 무엇인가요?", + "en_question": "Which major is considered the most difficult to gain admission to in your country?", + "annotations": [ + { + "answers": [ + "의예과", + "의대" + ], + "en_answers": [ + "college of medicine", + "medicine", + "medical school" + ], + "count": 4 + }, + { + "answers": [ + "치의예과", + "치대" + ], + "en_answers": [ + "school of dentistry", + "dentistry" + ], + "count": 1 + }, + { + "answers": [ + "한의예과", + "한의대" + ], + "en_answers": [ + "department of korean medicine", + "korean medicine" + ], + "count": 1 + }, + { + "answers": [ + "음악", + "음대" + ], + "en_answers": [ + "music" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-39": { + "question": "대한민국 초등학생들이 가장 많이 배우는 악기는 무엇인가요?", + "en_question": "What is the most commonly learned musical instrument by elementary school students in your country?", + "annotations": [ + { + "answers": [ + "피아노" + ], + "en_answers": [ + "piano" + ], + "count": 5 + }, + { + "answers": [ + "리코더" + ], + "en_answers": [ + "recorder" + ], + "count": 1 + }, + { + "answers": [ + "바이올린" + ], + "en_answers": [ + "violin" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-40": { + "question": "대한민국의 고등학교 학생들은 보통 쉬는 시간에 무엇을 하나요?", + "en_question": "What do high school students typically do during break time in schools in your country?", + "annotations": [ + { + "answers": [ + "게임" + ], + "en_answers": [ + "game" + ], + "count": 2 + }, + { + "answers": [ + "낮잠", + "쪽잠", + "잠" + ], + "en_answers": [ + "nap" + ], + "count": 2 + }, + { + "answers": [ + "매점" + ], + "en_answers": [ + "snack bar", + "cafeteria", + "canteen" + ], + "count": 1 + }, + { + "answers": [ + "화장실" + ], + "en_answers": [ + "bathroom", + "toilet" + ], + "count": 1 + }, + { + "answers": [ + "휴식" + ], + "en_answers": [ + "rest" + ], + "count": 1 + }, + { + "answers": [ + "수다" + ], + "en_answers": [ + "chat" + ], + "count": 1 + }, + { + "answers": [ + "휴대폰", + "휴대전화" + ], + "en_answers": [ + "phone" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-41": { + "question": "대한민국의 학교 내에서 학생들은 어떤 종류의 신발을 신나요?", + "en_question": "What kind of shoes do students wear in schools in your country?", + "annotations": [ + { + "answers": [ + "실내화" + ], + "en_answers": [ + "indoor shoes" + ], + "count": 2 + }, + { + "answers": [ + "슬리퍼" + ], + "en_answers": [ + "slippers" + ], + "count": 2 + }, + { + "answers": [ + "운동화" + ], + "en_answers": [ + "sneakers" + ], + "count": 1 + }, + { + "answers": [ + "컨버스" + ], + "en_answers": [ + "converse" + ], + "count": 1 + }, + { + "answers": [ + "에어포스" + ], + "en_answers": [ + "nike air force" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-42": { + "question": "대한민국의 대학 입시에서 필수 과목은 무엇인가요?", + "en_question": "What are the required subjects in your country's university entrance exam?", + "annotations": [ + { + "answers": [ + "영어" + ], + "en_answers": [ + "english" + ], + "count": 5 + }, + { + "answers": [ + "국어" + ], + "en_answers": [ + "korean language" + ], + "count": 4 + }, + { + "answers": [ + "수학" + ], + "en_answers": [ + "math", + "mathematics" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-44": { + "question": "대한민국의 어느 지역(도시 내)에서 학구열이 가장 높나요?", + "en_question": "Which region (within a city) in your country has the highest academic fervor?", + "annotations": [ + { + "answers": [ + "강남" + ], + "en_answers": [ + "gangnam" + ], + "count": 2 + }, + { + "answers": [ + "대치동" + ], + "en_answers": [ + "daechi-dong" + ], + "count": 2 + }, + { + "answers": [ + "서울" + ], + "en_answers": [ + "seoul" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-45": { + "question": "대한민국의 대학 축제에서 사람들이 가장 기대하는 것은 무엇인가요?", + "en_question": "What do people look forward to the most at university festivals in your country?", + "annotations": [ + { + "answers": [ + "연예인 공연", + "가수", + "연예인", + "유명 연예인 섭외 여부", + "가수 공연", + "가수공연", + "공연" + ], + "en_answers": [ + "celebrity", + "concert", + "performance", + "singer" + ], + "count": 5 + }, + { + "answers": [ + "음식" + ], + "en_answers": [ + "food" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-01": { + "question": "대한민국에서 두 번째로 인기 있는 스포츠는 무엇인가요?", + "en_question": "What is the second most popular sport in your country?", + "annotations": [ + { + "answers": [ + "야구" + ], + "en_answers": [ + "baseball" + ], + "count": 4 + }, + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-02": { + "question": "대한민국에서 구기종목을 제외하고 가장 인기 있는 스포츠는 무엇인가요?", + "en_question": "What is the most popular sport played without a ball in your country?", + "annotations": [ + { + "answers": [ + "양궁" + ], + "en_answers": [ + "archery" + ], + "count": 2 + }, + { + "answers": [ + "e스포츠" + ], + "en_answers": [ + "e-sports", + "esports" + ], + "count": 1 + }, + { + "answers": [ + "스케이트" + ], + "en_answers": [ + "skate" + ], + "count": 1 + }, + { + "answers": [ + "수영" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + }, + { + "answers": [ + "스키" + ], + "en_answers": [ + "ski" + ], + "count": 1 + }, + { + "answers": [ + "격투기" + ], + "en_answers": [ + "martial arts" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-09": { + "question": "대한민국의 상류층과 가장 관련이 깊은 스포츠는 무엇인가요?", + "en_question": "What sports are most associated with the upper class in your country?", + "annotations": [ + { + "answers": [ + "골프" + ], + "en_answers": [ + "golf" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-13": { + "question": "대한민국에서 가장 인기 있는 수상 스포츠는 무엇인가요?", + "en_question": "What is the most popular water sport in your country?", + "annotations": [ + { + "answers": [ + "수영" + ], + "en_answers": [ + "swimming" + ], + "count": 4 + }, + { + "answers": [ + "서핑" + ], + "en_answers": [ + "surfing" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-14": { + "question": "대한민국에서 가장 인기 있는 두뇌 스포츠는 무엇인가요?", + "en_question": "What is the most popular mental sport in your country?", + "annotations": [ + { + "answers": [ + "바둑" + ], + "en_answers": [ + "go" + ], + "count": 4 + }, + { + "answers": [ + "온라인 게임", + "온라인게임", + "게임" + ], + "en_answers": [ + "online game", + "video game", + "e-sports", + "esports" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-18": { + "question": "대한민국의 표준 근로자가 일년에 받는 휴가 일수는 며칠인가요? (아라비아 숫자(예: 12)로만 제공해 주세요.)", + "en_question": "How many holiday days per year does a standard worker gets in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 4 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-19": { + "question": "대한민국의 어느 지역이 전통적으로 농업과 관련이 있습니까?", + "en_question": "What region in your country has been traditionally associated with agriculture?", + "annotations": [ + { + "answers": [ + "호남", + "전라도" + ], + "en_answers": [ + "honam", + "jeolla province" + ], + "count": 2 + }, + { + "answers": [ + "충청도" + ], + "en_answers": [ + "chungcheong province" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Jo-sp-21": { + "question": "대한민국의 직장인들은 보통 몇 시부터 점심 식사를 하나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공하세요.)", + "en_question": "What time, if any, do people usually leave work for lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "12:00" + ], + "en_answers": [ + "12:00" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-31": { + "question": "대한민국의 고등학생들은 보통 몇 시에 하교하나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)", + "en_question": "What time do high school students tend to leave school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "16:00" + ], + "en_answers": [ + "16:00" + ], + "count": 1 + }, + { + "answers": [ + "22:00" + ], + "en_answers": [ + "22:00" + ], + "count": 1 + }, + { + "answers": [ + "16:30" + ], + "en_answers": [ + "16:30" + ], + "count": 1 + }, + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jo-sp-32": { + "question": "대한민국의 초등학생들은 학교에서 주로 어떤 운동을 하나요?", + "en_question": "What sport do elementary school students tend to practice at school in your country?", + "annotations": [ + { + "answers": [ + "피구" + ], + "en_answers": [ + "dodgeball" + ], + "count": 3 + }, + { + "answers": [ + "국민체조" + ], + "en_answers": [ + "national physical exercise", + "national gymnastics" + ], + "count": 1 + }, + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "단체경기" + ], + "en_answers": [ + "team sports" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-36": { + "question": "대한민국 초등학교의 여름 방학은 주로 몇 주인가요? (아라비아 숫자(예: 7, 8)만 기재해 주세요.)", + "en_question": "How long (in weeks) are summer vacations at elementary schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 3 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-37": { + "question": "대한민국 대학교의 여름 방학은 몇주 인가요? (아라비아 숫자(예: 7, 8)만 제공해 주세요.)", + "en_question": "How long (in weeks) are summer vacations at universities in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 4 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-39": { + "question": "대한민국에서 초등학교는 몇 살에 입학하나요? (아라비아 숫자(예: 12)만 기재해주세요. 만 나이가 아닌 한국식 나이(세는 나이)를 기준으로 답변해주세요.)", + "en_question": "At what age does elementary education begin in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 4 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-43": { + "question": "대한민국의 초등학교에서 국어 외에 배우는 언어는 몇 개인가요? (아라비아 숫자(예: 7, 8)만 제공해 주세요.)", + "en_question": "How many languages are studied in elementary education besides your country's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-01": { + "question": "대한민국에서 사람들이 흔히 사용하는 식사 도구는 무엇인가요?", + "en_question": "What eating utensils do people commonly used in your country?", + "annotations": [ + { + "answers": [ + "젓가락" + ], + "en_answers": [ + "chopsticks" + ], + "count": 5 + }, + { + "answers": [ + "숟가락" + ], + "en_answers": [ + "spoon" + ], + "count": 4 + }, + { + "answers": [ + "수저" + ], + "en_answers": [ + "spoon and chopsticks" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-04": { + "question": "대한민국 사람들은 어떤 음료를 좋아하나요?", + "en_question": "What soft drink do people in your country like to have?", + "annotations": [ + { + "answers": [ + "커피" + ], + "en_answers": [ + "coffee" + ], + "count": 4 + }, + { + "answers": [ + "아메리카노" + ], + "en_answers": [ + "americano" + ], + "count": 1 + }, + { + "answers": [ + "콜라" + ], + "en_answers": [ + "coke", + "cola" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-06": { + "question": "대한민국에서 가장 인기 있는 전통술은 무엇입니까?", + "en_question": "What is the most popular traditional alcohol in your country?", + "annotations": [ + { + "answers": [ + "막걸리" + ], + "en_answers": [ + "rice wine", + "makgeolli" + ], + "count": 4 + }, + { + "answers": [ + "소주" + ], + "en_answers": [ + "soju" + ], + "count": 2 + }, + { + "answers": [ + "복분자주" + ], + "en_answers": [ + "bokbunjaju", + "black raspberry wine" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-07": { + "question": "대한민국 사람들이 식당에서 저녁을 먹는데 평균적으로 몇 시간이 걸리나요? (아라비아 숫자로 소수점 한 자리까지(예: 2, 3.5)만 제공해 주세요.)", + "en_question": "How long (in hours) on average does it take for people in your country to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 4 + }, + { + "answers": [ + "1.5" + ], + "en_answers": [ + "1.5" + ], + "count": 2 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-09": { + "question": "대한민국에서 사람들은 보통 몇 시에 저녁을 먹나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)", + "en_question": "What time do people usually have dinner in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "18:30" + ], + "en_answers": [ + "18:30" + ], + "count": 3 + }, + { + "answers": [ + "19:00" + ], + "en_answers": [ + "19:00" + ], + "count": 2 + }, + { + "answers": [ + "18:00", + "06:00" + ], + "en_answers": [ + "18:00" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-12": { + "question": "대한민국 사람들은 어떤 종류의 국을 좋아하나요?", + "en_question": "What kind of soup do people from your country like to have?", + "annotations": [ + { + "answers": [ + "된장국" + ], + "en_answers": [ + "doenjang soup", + "soybean paste soup" + ], + "count": 4 + }, + { + "answers": [ + "미역국" + ], + "en_answers": [ + "seaweed soup" + ], + "count": 2 + }, + { + "answers": [ + "김칫국" + ], + "en_answers": [ + "kimchi soup" + ], + "count": 1 + }, + { + "answers": [ + "김치찌개" + ], + "en_answers": [ + "kimchi jjigae", + "kimchi stew" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-13": { + "question": "대한민국 사람들은 어떤 길거리 음식을 좋아하나요?", + "en_question": "What street food do people from your country like to eat?", + "annotations": [ + { + "answers": [ + "떡볶이", + "떡복이" + ], + "en_answers": [ + "stir-fried rice cakes", + "tteokbokki", + "topokki", + "rice cakes in hot sauce" + ], + "count": 4 + }, + { + "answers": [ + "붕어빵" + ], + "en_answers": [ + "bungeoppang", + "fish-shaped bun" + ], + "count": 1 + }, + { + "answers": [ + "델리만쥬", + "만쥬" + ], + "en_answers": [ + "delimanjoo", + "manjoo" + ], + "count": 1 + }, + { + "answers": [ + "어묵" + ], + "en_answers": [ + "fish cake", + "eomuk", + "oden" + ], + "count": 1 + }, + { + "answers": [ + "탕후루" + ], + "en_answers": [ + "tanghulu" + ], + "count": 1 + }, + { + "answers": [ + "분식" + ], + "en_answers": [ + "bunsik" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-15": { + "question": "대한민국 사람들은 어떤 종류의 해산물을 좋아하나요?", + "en_question": "What kind of seafood do people from your country like to eat?", + "annotations": [ + { + "answers": [ + "생선" + ], + "en_answers": [ + "fish" + ], + "count": 3 + }, + { + "answers": [ + "조개" + ], + "en_answers": [ + "clam", + "shellfish" + ], + "count": 1 + }, + { + "answers": [ + "회" + ], + "en_answers": [ + "sashimi", + "sliced raw fish", + "slices of raw fish", + "raw fish" + ], + "count": 1 + }, + { + "answers": [ + "오징어" + ], + "en_answers": [ + "squid" + ], + "count": 1 + }, + { + "answers": [ + "새우" + ], + "en_answers": [ + "shrimp" + ], + "count": 1 + }, + { + "answers": [ + "꽃게" + ], + "en_answers": [ + "crab" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-16": { + "question": "대한민국에서 가장 큰 축제는 무엇인가요?", + "en_question": "What is the biggest festival in your country?", + "annotations": [ + { + "answers": [ + "벚꽃놀이", + "벚꽃축제" + ], + "en_answers": [ + "cherry-blossom viewing", + "cherry-blossom festival" + ], + "count": 1 + }, + { + "answers": [ + "서울세계불꽃축제", + "불꽃축제" + ], + "en_answers": [ + "seoul international fireworks festival" + ], + "count": 1 + }, + { + "answers": [ + "워터밤" + ], + "en_answers": [ + "waterbomb festival" + ], + "count": 1 + }, + { + "answers": [ + "설", + "설날" + ], + "en_answers": [ + "lunar new year" + ], + "count": 1 + }, + { + "answers": [ + "추석" + ], + "en_answers": [ + "chuseok", + "korean thanksgiving day" + ], + "count": 1 + }, + { + "answers": [ + "전국체전" + ], + "en_answers": [ + "national sports festival" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-28": { + "question": "대한민국에서 사람들이 도시 간 이동 시에 가장 많이 이용하는 대중교통 수단은 무엇입니까?", + "en_question": "What is the most commonly used public transport by people when travelling between cites in your country?", + "annotations": [ + { + "answers": [ + "기차" + ], + "en_answers": [ + "train" + ], + "count": 4 + }, + { + "answers": [ + "버스" + ], + "en_answers": [ + "bus" + ], + "count": 2 + }, + { + "answers": [ + "자가용", + "자동차" + ], + "en_answers": [ + "car", + "private car" + ], + "count": 1 + }, + { + "answers": [ + "ktx" + ], + "en_answers": [ + "ktx", + "korea train express" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-30": { + "question": "대한민국에서 가장 큰 축제와 관련된 특정 장식이나 상징은 무엇인가요?", + "en_question": "What are the specific decorations or symbols associated with the most biggest festival in your country?", + "annotations": [ + { + "answers": [ + "빛" + ], + "en_answers": [ + "light" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 1, + "no-answer": 1 + } + }, + "Jod-ch-37": { + "question": "대한민국에서 여성들이 가장 관람하길 좋아하는 스포츠는 무엇인가요?", + "en_question": "What sports do women like to watch the most in your country?", + "annotations": [ + { + "answers": [ + "야구" + ], + "en_answers": [ + "baseball" + ], + "count": 5 + }, + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "배구" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-38": { + "question": "대한민국에서 남성들이 가장 관람하길 좋아하는 스포츠는 무엇인가요?", + "en_question": "What sports do men like to watch the most in your country?", + "annotations": [ + { + "answers": [ + "야구" + ], + "en_answers": [ + "baseball" + ], + "count": 4 + }, + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "농구" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-41": { + "question": "대한민국의 20대 여성들이 주로 하는 여가 활동은 무엇인가요?", + "en_question": "What is the common leisure activity that females in their 20s in your country engage in?", + "annotations": [ + { + "answers": [ + "유튜브 보기", + "유튜브" + ], + "en_answers": [ + "watch youtube", + "youtube" + ], + "count": 2 + }, + { + "answers": [ + "연예인 덕질", + "덕질" + ], + "en_answers": [ + "fandom activities", + "fan activities" + ], + "count": 1 + }, + { + "answers": [ + "운동" + ], + "en_answers": [ + "exercise" + ], + "count": 1 + }, + { + "answers": [ + "여행" + ], + "en_answers": [ + "travel" + ], + "count": 1 + }, + { + "answers": [ + "수다" + ], + "en_answers": [ + "chat" + ], + "count": 1 + }, + { + "answers": [ + "친구들과의 만남", + "친구만남" + ], + "en_answers": [ + "meeting friends" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-42": { + "question": "대한민국의 20대 남성들이 주로 하는 여가 활동은 무엇인가요?", + "en_question": "What is the common leisure activity that males in their 20s in your country engage in?", + "annotations": [ + { + "answers": [ + "게임" + ], + "en_answers": [ + "game", + "video game", + "online game" + ], + "count": 3 + }, + { + "answers": [ + "유튜브 보기" + ], + "en_answers": [ + "watch youtube", + "youtube" + ], + "count": 1 + }, + { + "answers": [ + "운동" + ], + "en_answers": [ + "exercise" + ], + "count": 1 + }, + { + "answers": [ + "여행" + ], + "en_answers": [ + "travel" + ], + "count": 1 + }, + { + "answers": [ + "친구들과의 만남", + "친구만남" + ], + "en_answers": [ + "meeting friends" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-46": { + "question": "대한민국에서 평일에 점심 식사 후 보통 몇 시간 동안 휴식을 취하나요? (아라비아 숫자로 소수점 한 자리까지(예: 2, 3.5)만 제공해 주세요.)", + "en_question": "How long (in hours) do people usually take a break after lunch on a weekday in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "0.5" + ], + "en_answers": [ + "0.5" + ], + "count": 4 + }, + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 1 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-48": { + "question": "대한민국에서 사람들은 근무일에 점심으로 무엇을 먹나요?", + "en_question": "What do people eat for lunch during the working days in your country?", + "annotations": [ + { + "answers": [ + "밥", + "쌀" + ], + "en_answers": [ + "rice" + ], + "count": 2 + }, + { + "answers": [ + "국" + ], + "en_answers": [ + "soup" + ], + "count": 1 + }, + { + "answers": [ + "김치" + ], + "en_answers": [ + "kimchi" + ], + "count": 1 + }, + { + "answers": [ + "도시락" + ], + "en_answers": [ + "lunch box" + ], + "count": 1 + }, + { + "answers": [ + "간단한 식사류" + ], + "en_answers": [ + "simple meals" + ], + "count": 1 + }, + { + "answers": [ + "구내식당" + ], + "en_answers": [ + "cafeteria" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-50": { + "question": "대한민국 사람들의 평균 편도 통근 시간은 몇 분인가요? (아라비아 숫자(예: 1)만 기재해 주세요.)", + "en_question": "What is the average commute time (in minutes) for people in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "60", + "1" + ], + "en_answers": [ + "60" + ], + "count": 4 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-51": { + "question": "대한민국에서 사람들이 출근할 때 가장 많이 이용하는 교통수단은 무엇인가요?", + "en_question": "What is the most common transportation that people take to get to work in your country?", + "annotations": [ + { + "answers": [ + "지하철" + ], + "en_answers": [ + "subway" + ], + "count": 4 + }, + { + "answers": [ + "버스" + ], + "en_answers": [ + "bus" + ], + "count": 3 + }, + { + "answers": [ + "자동차", + "자가 자동차", + "자가용" + ], + "en_answers": [ + "car", + "automobile" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-54": { + "question": "대한민국의 결혼 휴가는 며칠입니까? (아라비아 숫자(예: 12)로만 기재해 주세요.)", + "en_question": "How long (in days) is the marriage leave in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 2 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Jod-ch-56": { + "question": "대한민국 여성들의 전형적인 은퇴 연령은 몇 살입니까? (아라비아 숫자(예: 12)만 기재해 주세요. 만 나이가 아닌 한국식 나이(세는 나이)를 기준으로 답변해주세요.)", + "en_question": "What is the typical retirement age for women in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 2 + }, + { + "answers": [ + "48" + ], + "en_answers": [ + "48" + ], + "count": 1 + }, + { + "answers": [ + "55" + ], + "en_answers": [ + "55" + ], + "count": 1 + }, + { + "answers": [ + "61" + ], + "en_answers": [ + "61" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-57": { + "question": "대한민국 남성의 전형적인 은퇴 연령은 몇 살입니까? (아라비아 숫자(예: 12)만 기재해 주세요. 만 나이가 아닌 한국식 나이(세는 나이)를 기준으로 답변해주세요.)", + "en_question": "What is the typical retirement age for men in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 2 + }, + { + "answers": [ + "65" + ], + "en_answers": [ + "65" + ], + "count": 1 + }, + { + "answers": [ + "61" + ], + "en_answers": [ + "61" + ], + "count": 1 + }, + { + "answers": [ + "55" + ], + "en_answers": [ + "55" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-58": { + "question": "대한민국에서 가장 존경받는 직업은 무엇입니까?", + "en_question": "Which profession is the most respected in your country?", + "annotations": [ + { + "answers": [ + "의사" + ], + "en_answers": [ + "doctor" + ], + "count": 3 + }, + { + "answers": [ + "소방관" + ], + "en_answers": [ + "firefighter" + ], + "count": 2 + }, + { + "answers": [ + "판사" + ], + "en_answers": [ + "judge", + "justice" + ], + "count": 1 + }, + { + "answers": [ + "경찰" + ], + "en_answers": [ + "police" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-60": { + "question": "대한민국 사람들의 일평균 근무시간은 몇 시간인가요?(아라비아 숫자(0~24)만 기재해 주세요.)", + "en_question": "What is the duration (in hours) of a typical workday in your country? (Provide Arabic numerals (0~24) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 5 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-61": { + "question": "대한민국 여성들이 가장 선호하는 직업은 무엇입니까?", + "en_question": "Which occupation is most preferred among females in your country?", + "annotations": [ + { + "answers": [ + "선생님", + "교사", + "선생" + ], + "en_answers": [ + "teacher" + ], + "count": 2 + }, + { + "answers": [ + "간호사" + ], + "en_answers": [ + "nurse" + ], + "count": 1 + }, + { + "answers": [ + "공무원" + ], + "en_answers": [ + "public official", + "public servant", + "civil servant", + "government official", + "government employee", + "public worker" + ], + "count": 1 + }, + { + "answers": [ + "의사" + ], + "en_answers": [ + "doctor" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-62": { + "question": "대한민국 남성들이 가장 선호하는 직업은 무엇입니까?", + "en_question": "Which occupation is most preferred among males in your country?", + "annotations": [ + { + "answers": [ + "의사" + ], + "en_answers": [ + "doctor" + ], + "count": 2 + }, + { + "answers": [ + "엔지니어", + "공학자" + ], + "en_answers": [ + "engineer" + ], + "count": 1 + }, + { + "answers": [ + "공무원" + ], + "en_answers": [ + "public official", + "public servant", + "civil servant", + "government official", + "government employee", + "public worker" + ], + "count": 1 + }, + { + "answers": [ + "건물주" + ], + "en_answers": [ + "real estate owner", + "building owner" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-17": { + "question": "평균적으로 대한민국 학생들은 보통 어느 정도까지 교육을 받나요? (예: 초등학교, 고등학교)", + "en_question": "On average, how far do students typically pursue their education in your country? (e.g., elementary, high school)", + "annotations": [ + { + "answers": [ + "대학교" + ], + "en_answers": [ + "university" + ], + "count": 5 + }, + { + "answers": [ + "고등학교" + ], + "en_answers": [ + "high school" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-24": { + "question": "대한민국의 학교에서 학생들은 영어 외에 어떤 언어를 배우나요?", + "en_question": "What language is taught in schools in your country besides English?", + "annotations": [ + { + "answers": [ + "일본어", + "일어" + ], + "en_answers": [ + "japanese" + ], + "count": 4 + }, + { + "answers": [ + "중국어" + ], + "en_answers": [ + "chinese" + ], + "count": 3 + }, + { + "answers": [ + "불어" + ], + "en_answers": [ + "french" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ki-pe-30": { + "question": "대한민국의 학교는 어느 요일에 닫혀있나요?", + "en_question": "What days of the week are schools closed in your country?", + "annotations": [ + { + "answers": [ + "일요일" + ], + "en_answers": [ + "sunday" + ], + "count": 5 + }, + { + "answers": [ + "토요일" + ], + "en_answers": [ + "saturday" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-32": { + "question": "대한민국에서 보통 손님들을 위해 어떤 음식을 준비하나요?", + "en_question": "What food do the hosts usually prepare for the guests in your country?", + "annotations": [ + { + "answers": [ + "고기", + "고기반찬" + ], + "en_answers": [ + "meat" + ], + "count": 2 + }, + { + "answers": [ + "과일" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + }, + { + "answers": [ + "커피" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + }, + { + "answers": [ + "잡채" + ], + "en_answers": [ + "japchae" + ], + "count": 1 + }, + { + "answers": [ + "갈비" + ], + "en_answers": [ + "galbi" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-34": { + "question": "대한민국의 아침 식사에서 보통 무엇을 마시나요?", + "en_question": "What is the usual drink in the breakfast in your country?", + "annotations": [ + { + "answers": [ + "물" + ], + "en_answers": [ + "water" + ], + "count": 3 + }, + { + "answers": [ + "커피" + ], + "en_answers": [ + "coffee" + ], + "count": 3 + }, + { + "answers": [ + "우유" + ], + "en_answers": [ + "milk" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-36": { + "question": "대한민국 음식을 제외하고, 대한민국에서 어느 나라 음식이 인기가 많나요?", + "en_question": "Except the food original from your country, which country's food is more popular in your country?", + "annotations": [ + { + "answers": [ + "일식", + "일본" + ], + "en_answers": [ + "japanese cuisine", + "japanese food", + "japan" + ], + "count": 4 + }, + { + "answers": [ + "중식", + "중국" + ], + "en_answers": [ + "chinese cuisine", + "chinese food", + "china" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-39": { + "question": "대한민국에서 가족 소풍에 보통 어떤 음식을 준비하나요?", + "en_question": "What food is usually prepared for a family picnic in your country?", + "annotations": [ + { + "answers": [ + "김밥" + ], + "en_answers": [ + "gimbap", + "kimbap" + ], + "count": 5 + }, + { + "answers": [ + "유부초밥" + ], + "en_answers": [ + "fried bean curd rice ball", + "fried tofu rice ball", + "inari sushi" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-40": { + "question": "대한민국의 어떤 음식이 다른 나라 사람들에게 혐오스럽게 여겨지나요?", + "en_question": "Which food from your country is considered disgusting by the rest of the world?", + "annotations": [ + { + "answers": [ + "번데기" + ], + "en_answers": [ + "pupa" + ], + "count": 2 + }, + { + "answers": [ + "산낙지" + ], + "en_answers": [ + "live octopus" + ], + "count": 2 + }, + { + "answers": [ + "보신탕" + ], + "en_answers": [ + "bosintang", + "dog meat soup" + ], + "count": 2 + }, + { + "answers": [ + "간장게장" + ], + "en_answers": [ + "soy sauce marinated crab", + "ganjang-gejang" + ], + "count": 1 + }, + { + "answers": [ + "내장탕" + ], + "en_answers": [ + "offal soup", + "intestine soup", + "giblet soup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-43": { + "question": "대한민국에서 어떤 빵이 인기가 많나요?", + "en_question": "What is the name of the popular bread in your country?", + "annotations": [ + { + "answers": [ + "피자빵" + ], + "en_answers": [ + "pizza bread" + ], + "count": 2 + }, + { + "answers": [ + "단팥빵" + ], + "en_answers": [ + "sweet red bean bread" + ], + "count": 2 + }, + { + "answers": [ + "소보로" + ], + "en_answers": [ + "streusel" + ], + "count": 1 + }, + { + "answers": [ + "소금빵" + ], + "en_answers": [ + "salted butter rolls" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-51": { + "question": "대한민국의 정부 기관은 주로 몇 시에 문을 닫나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공하세요.)", + "en_question": "What time of day are government offices closed in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 4 + }, + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-53": { + "question": "대한민국 정부 기관은 주로 몇 시에 문을 여나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)", + "en_question": "What is the normal start time of government offices in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-01": { + "question": "대한민국에서 가장 기간이 긴 국경일은 무엇인가요?", + "en_question": "What national holiday has the longest duration in your country?", + "annotations": [ + { + "answers": [ + "추석" + ], + "en_answers": [ + "chuseok", + "korean thanksgiving day" + ], + "count": 4 + }, + { + "answers": [ + "설날", + "설" + ], + "en_answers": [ + "lunar new year" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-02": { + "question": "대한민국의 독립기념일을 기념하기 위해 사람들이 흔히 하는 활동은 무엇인가요?", + "en_question": "What are the common activities people from your country do to celebrate Independence day?", + "annotations": [ + { + "answers": [ + "국기 게양", + "태극기 게양", + "태극기걸기", + "국기 배양", + "태극기게양" + ], + "en_answers": [ + "raising the national flag", + "hanging the national flag" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-04": { + "question": "대한민국에서는 가족 구성원이 사망했을 때 집 앞에 무엇을 설치하나요?", + "en_question": "What is installed in front of the house when a family member dies in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "idk": 1, + "no-answer": 0 + } + }, + "Kik-in-05": { + "question": "대한민국에서 임신 축하 행사/파티는 보통 언제 하나요?", + "en_question": "When is a pregnancy celebration or ceremony usually held in your country?", + "annotations": [ + { + "answers": [ + "4~6개월 후" + ], + "en_answers": [ + "after 4~6 months" + ], + "count": 1 + }, + { + "answers": [ + "처음 알았을 때", + "처음알았을때" + ], + "en_answers": [ + "when she first found out" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 1 + } + }, + "Kik-in-06": { + "question": "대한민국에서는 결혼식 전에 주로 하는 이벤트는 무엇인가요?", + "en_question": "What event is usually held before a wedding in your country?", + "annotations": [ + { + "answers": [ + "상견례" + ], + "en_answers": [ + "meeting between the families of the bride and groom" + ], + "count": 3 + }, + { + "answers": [ + "청첩장 돌리기", + "청첩장 전달", + "청첩장전달", + "청첩장" + ], + "en_answers": [ + "sending out wedding invitations", + "wedding invitations" + ], + "count": 2 + }, + { + "answers": [ + "프로포즈" + ], + "en_answers": [ + "propose" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-07": { + "question": "대한민국에서는 설날에 무엇을 아이들에게 주나요?", + "en_question": "What is usually shared to the children during (Lunar) New Year in your country?", + "annotations": [ + { + "answers": [ + "세뱃돈", + "용돈", + "새뱃돈" + ], + "en_answers": [ + "new year's money", + "new year's cash gift", + "pocket money" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-08": { + "question": "대한민국 사람들은 라마단이 시작되기 며칠 전부터 주로 어떤 걸 하나요?", + "en_question": "What activities are usually done days before Ramadan in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "no-answer": 1, + "idk": 0 + } + }, + "Kik-in-10": { + "question": "대한민국을 방문하는 외국인 관광객에게 가장 인기 있는 관광명소는 어디입니까?", + "en_question": "What is the most popular tourist attraction for foreign visitors in your country?", + "annotations": [ + { + "answers": [ + "경복궁" + ], + "en_answers": [ + "gyeongbokgung palace", + "gyeongbokgung" + ], + "count": 2 + }, + { + "answers": [ + "명동" + ], + "en_answers": [ + "myeong-dong" + ], + "count": 1 + }, + { + "answers": [ + "사대문" + ], + "en_answers": [ + "four main gates", + "four gates", + "sadaemun" + ], + "count": 1 + }, + { + "answers": [ + "서울" + ], + "en_answers": [ + "seoul" + ], + "count": 1 + }, + { + "answers": [ + "한강" + ], + "en_answers": [ + "han river" + ], + "count": 1 + }, + { + "answers": [ + "광화문광장", + "광화문" + ], + "en_answers": [ + "gwanghwamun plaza", + "gwanghwamun" + ], + "count": 1 + }, + { + "answers": [ + "고궁", + "궁" + ], + "en_answers": [ + "ancient palace", + "palace" + ], + "count": 1 + }, + { + "answers": [ + "맛집" + ], + "en_answers": [ + "popular restaurant", + "must-go restaurant" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-11": { + "question": "대한민국에서 종교적 장소(절, 교회 등) 중 관광지로 가장 유명한 곳은 어디인가요?", + "en_question": "What is the most popular religious sites (temple, church, etc.) for tourism in your country?", + "annotations": [ + { + "answers": [ + "불국사" + ], + "en_answers": [ + "bulguksa" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-15": { + "question": "대한민국에서 여성들은 보통 졸업식에 어떤 옷을 입나요?", + "en_question": "What clothes do women usually wear on graduation commencement ceremony in your country?", + "annotations": [ + { + "answers": [ + "학위복", + "졸업가운" + ], + "en_answers": [ + "gown", + "graduation gown", + "academic dress" + ], + "count": 3 + }, + { + "answers": [ + "교복" + ], + "en_answers": [ + "school uniform" + ], + "count": 1 + }, + { + "answers": [ + "블라우스" + ], + "en_answers": [ + "blouse" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-16": { + "question": "날씨가 추울 때 대한민국에서 주로 마시는 음료는 무엇인가요?", + "en_question": "What drink is commonly consumed in your country when the weather is cold?", + "annotations": [ + { + "answers": [ + "커피" + ], + "en_answers": [ + "coffee" + ], + "count": 2 + }, + { + "answers": [ + "핫초코" + ], + "en_answers": [ + "hot chocolate" + ], + "count": 2 + }, + { + "answers": [ + "생강차" + ], + "en_answers": [ + "ginger tea" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-17": { + "question": "대한민국에서 라마단 기간에 더 많이 팔리고 흔히 보이는 과일은 무엇인가요?", + "en_question": "What fruit is more commonly sold and found during Ramadan in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "no-answer": 1, + "idk": 0 + } + }, + "Kik-in-24": { + "question": "대한민국의 패스트푸드 레스토랑에서 치킨과 함께 주로 제공되는 탄수화물은 무엇인가요?", + "en_question": "What carbohydrate is usually served with chicken in a fast-food restaurant in your country?", + "annotations": [ + { + "answers": [ + "감자튀김", + "감자 튀김" + ], + "en_answers": [ + "french fries", + "fries" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-31": { + "question": "대한민국에서 가장 잘 알려진 무술은 무엇인가요?", + "en_question": "What is the most famous martial art sports in your country?", + "annotations": [ + { + "answers": [ + "태권도" + ], + "en_answers": [ + "taekwondo" + ], + "count": 5 + }, + { + "answers": [ + "검도" + ], + "en_answers": [ + "kendo" + ], + "count": 1 + }, + { + "answers": [ + "유도" + ], + "en_answers": [ + "judo" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-34": { + "question": "대한민국의 국영 방송에서 자주 중계되는 스포츠는 무엇인가요?", + "en_question": "What sports are often broadcasted on national television in your country?", + "annotations": [ + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "야구" + ], + "en_answers": [ + "baseball" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-35": { + "question": "코로나 기간 동안 대한민국 사람들 사이에서 인기 있었던 스포츠는 무엇이었나요?", + "en_question": "What sports were popular among people from your country during the COVID-19 pandemic?", + "annotations": [ + { + "answers": [ + "야구" + ], + "en_answers": [ + "baseball" + ], + "count": 2 + }, + { + "answers": [ + "온라인게임" + ], + "en_answers": [ + "online game", + "e-sports", + "esports" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Kik-in-36": { + "question": "대한민국에서 가장 인기 있는 축구 감독은 누구인가요?", + "en_question": "Who is the most popular soccer coach in your country?", + "annotations": [ + { + "answers": [ + "거스 히딩크", + "히딩크" + ], + "en_answers": [ + "hiddink", + "guus hiddink" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-37": { + "question": "대한민국에서 어떤 축구 팀들이 치열한 라이벌 관계로 유명한가요? (예: ___ 대 ___)", + "en_question": "What soccer teams in your country are famous for their intense rivalry? (e.g. ___ vs ___)", + "annotations": [ + { + "answers": [ + "수원 삼성 블루윙즈 대 fc서울", + "수원삼성 대 fc서울", + "수원 삼성 블루윙즈 대 fc 서울", + "수원 삼성 대 fc 서울", + "fc 서울 대 수원 삼성 블루윙즈", + "fc 서울 대 수원 삼성" + ], + "en_answers": [ + "suwon bluewings vs fc seoul", + "suwon samsung bluewings vs fc seoul" + ], + "count": 1 + }, + { + "answers": [ + "레알 마드리드 대 fc 바르셀로나", + "레알 마드리드 대 바르셀로나", + "fc 바르셀로나 대 레알 마드리드" + ], + "en_answers": [ + "real madrid vs barcelona", + "real madrid vs fc barcelona" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-38": { + "question": "대한민국에서 치열한 라이벌로 유명한 축구 팀들의 팬클럽 이름은 무엇인가요? (예: ___ 대 ___)", + "en_question": "What are the names of soccer supporters in your country who are famous for their intense rivalry? (e.g. ___ vs ___)", + "annotations": [], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-40": { + "question": "대한민국에서 가장 유명한 남자 배드민턴 선수는 누구인가요?", + "en_question": "Who is the most famous male badminton player in your country?", + "annotations": [ + { + "answers": [ + "이용대" + ], + "en_answers": [ + "lee yong-dae", + "lee yong dae" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-41": { + "question": "대한민국에서 가장 유명한 여자 배드민턴 선수는 누구인가요?", + "en_question": "Who is the most famous female badminton player in your country?", + "annotations": [ + { + "answers": [ + "안세영" + ], + "en_answers": [ + "an se-young", + "an se young" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-44": { + "question": "대한민국 정부로부터 가장 많은 지원을 받는 스포츠는 무엇인가요?", + "en_question": "What sport gets the most support from the government in your country?", + "annotations": [ + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "야구" + ], + "en_answers": [ + "baseball" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-45": { + "question": "대한민국의 학교에는 보통 어떤 스포츠의 경기장이 있나요?", + "en_question": "What sports field facilities are usually available at schools in your country?", + "annotations": [ + { + "answers": [ + "축구", + "축구장" + ], + "en_answers": [ + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "농구" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "테니스" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-02": { + "question": "대한민국 사람들이 가장 즐겨 마시는 카페 음료는 무엇인가요?", + "en_question": "What cafe beverage do people from your country most commonly enjoy?", + "annotations": [ + { + "answers": [ + "아메리카노", + "아이스 아메리카노" + ], + "en_answers": [ + "americano", + "iced americano" + ], + "count": 4 + }, + { + "answers": [ + "커피" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-04": { + "question": "대한민국 사람들이 선호하는 해장 음식은 무엇인가요?", + "en_question": "What is the preferred hangover cure food for people from your country?", + "annotations": [ + { + "answers": [ + "국밥" + ], + "en_answers": [ + "gukbap", + "rice soup" + ], + "count": 2 + }, + { + "answers": [ + "콩나물국" + ], + "en_answers": [ + "bean sprouts soup" + ], + "count": 2 + }, + { + "answers": [ + "해장국" + ], + "en_answers": [ + "haejangguk", + "hangover soup" + ], + "count": 1 + }, + { + "answers": [ + "라면" + ], + "en_answers": [ + "ramen", + "instant noodles" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-05": { + "question": "대한민국에서 주로 먹는 배달 음식은 무엇인가요?", + "en_question": "What is the typical delivery food in your country?", + "annotations": [ + { + "answers": [ + "치킨" + ], + "en_answers": [ + "chicken", + "fried chicken" + ], + "count": 5 + }, + { + "answers": [ + "짜장면" + ], + "en_answers": [ + "jajangmyeon", + "black bean noodles" + ], + "count": 1 + }, + { + "answers": [ + "피자" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-07": { + "question": "대한민국 사람들은 어떤 육류를 가장 많이 소비하나요?", + "en_question": "What type of meat is consumed most by people from your country?", + "annotations": [ + { + "answers": [ + "돼지고기", + "돼지" + ], + "en_answers": [ + "pork" + ], + "count": 4 + }, + { + "answers": [ + "닭고기", + "닭" + ], + "en_answers": [ + "chicken" + ], + "count": 2 + }, + { + "answers": [ + "소고기", + "소" + ], + "en_answers": [ + "beef" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-08": { + "question": "대한민국 사람들은 가을철에 주로 어떤 과일을 먹나요?", + "en_question": "What fruit do people from your country often eat in the autumn season?", + "annotations": [ + { + "answers": [ + "사과" + ], + "en_answers": [ + "apple" + ], + "count": 4 + }, + { + "answers": [ + "감" + ], + "en_answers": [ + "persimmon" + ], + "count": 1 + }, + { + "answers": [ + "배" + ], + "en_answers": [ + "pear" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-09": { + "question": "대한민국 식탁에서 가장 흔하게 볼 수 있는 반찬은 무엇인가요?", + "en_question": "What side dish is the most commonly served on a dining table in your country?", + "annotations": [ + { + "answers": [ + "김치" + ], + "en_answers": [ + "kimchi" + ], + "count": 5 + }, + { + "answers": [ + "김" + ], + "en_answers": [ + "seaweed", + "laver" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-11": { + "question": "대한민국 사람들은 축구 경기를 볼 때 무엇을 먹나요?", + "en_question": "What do people from your country eat while watching a soccer game?", + "annotations": [ + { + "answers": [ + "치킨" + ], + "en_answers": [ + "chicken", + "fried chicken" + ], + "count": 4 + }, + { + "answers": [ + "맥주" + ], + "en_answers": [ + "beer" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-15": { + "question": "대한민국의 대표적인 보양식은 무엇인가요?", + "en_question": "What is the representative nourishing food in your country?", + "annotations": [ + { + "answers": [ + "삼계탕" + ], + "en_answers": [ + "samgyetang" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-16": { + "question": "대한민국에서 가장 유명한 축구 선수는 누구인가요?", + "en_question": "Who is the most famous soccer player in your country?", + "annotations": [ + { + "answers": [ + "손흥민" + ], + "en_answers": [ + "son heung-min", + "son heung min", + "heung-min son" + ], + "count": 4 + }, + { + "answers": [ + "박지성" + ], + "en_answers": [ + "park ji-sung", + "park ji sung", + "ji-sung park" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-17": { + "question": "대한민국의 학교에서 남학생들은 점심시간에 어떤 스포츠를 즐겨 하나요?", + "en_question": "What sports do male students enjoy during lunch time at school in your country?", + "annotations": [ + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-18": { + "question": "대한민국의 체육 수업 시간에 여학생들이 가장 많이 하는 스포츠는 무엇인가요?", + "en_question": "What is the most common sport girls participate in during physical education classes in your country?", + "annotations": [ + { + "answers": [ + "피구" + ], + "en_answers": [ + "dodgeball" + ], + "count": 4 + }, + { + "answers": [ + "배드민턴" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-19": { + "question": "대한민국에서 가장 인기 있는 배구 선수는 누구인가요?", + "en_question": "Who is the most popular volleyball player in your country?", + "annotations": [ + { + "answers": [ + "김연경" + ], + "en_answers": [ + "kim yeon-koung", + "kim yeon koung", + "yeon koung kim", + "yeon-koung kim" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-20": { + "question": "대한민국 사람들이 국제 대회에서 가장 열정적으로 응원하는 스포츠 종목은 무엇인가요?", + "en_question": "What sports event do people from your country passionately support the most in international competitions?", + "annotations": [ + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-22": { + "question": "어느 나라가 대한민국의 가장 큰 축구 라이벌로 여겨지나요?", + "en_question": "Which country is considered the biggest rival in soccer matches for your country?", + "annotations": [ + { + "answers": [ + "일본" + ], + "en_answers": [ + "japan" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-23": { + "question": "대한민국에서 아이들이 가장 많이 다니는 스포츠 학원은 무엇인가요?", + "en_question": "What type of sports academies do children attend the most in your country?", + "annotations": [ + { + "answers": [ + "태권도", + "태권도도" + ], + "en_answers": [ + "taekwondo" + ], + "count": 4 + }, + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-24": { + "question": "대한민국의 스포츠 경기장에서 경기를 관람하며 먹는 음식 중 가장 많이 먹는 음식은 무엇인가요?", + "en_question": "What is the most commonly eaten food in sports stadiums while watching games in your country?", + "annotations": [ + { + "answers": [ + "치킨" + ], + "en_answers": [ + "chicken", + "fried chicken" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-25": { + "question": "대한민국의 학교 운동회에서 일반적으로 하는 스포츠는 무엇인가요?", + "en_question": "What are the typical sports played in your country's school sports day?", + "annotations": [ + { + "answers": [ + "달리기" + ], + "en_answers": [ + "running", + "race" + ], + "count": 2 + }, + { + "answers": [ + "이어달리기", + "계주", + "계주달리기" + ], + "en_answers": [ + "relay" + ], + "count": 2 + }, + { + "answers": [ + "줄다리기" + ], + "en_answers": [ + "tug-of-war" + ], + "count": 1 + }, + { + "answers": [ + "박 터트리기" + ], + "en_answers": [ + "bursting a gourd", + "breaking a gourd", + "breaking gourd" + ], + "count": 1 + }, + { + "answers": [ + "마라톤" + ], + "en_answers": [ + "marathon" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-26": { + "question": "대한민국의 중년층들에게 인기 있는 스포츠는 무엇입니까?", + "en_question": "What are the popular sports among the middle-aged population in your country?", + "annotations": [ + { + "answers": [ + "골프" + ], + "en_answers": [ + "golf" + ], + "count": 5 + }, + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-28": { + "question": "대한민국에서 가장 인기 있는 동계 스포츠 선수는 누구인가요?", + "en_question": "Who is the most popular winter sports player in your country?", + "annotations": [ + { + "answers": [ + "김연아" + ], + "en_answers": [ + "yuna kim", + "kim yuna" + ], + "count": 4 + }, + { + "answers": [ + "이상화" + ], + "en_answers": [ + "lee sang-hwa", + "sang hwa lee" + ], + "count": 1 + }, + { + "answers": [ + "윤성빈" + ], + "en_answers": [ + "yun sung-bin", + "yun sungbin" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-29": { + "question": "대한민국에서 가장 유명한 수영 선수는 누구인가요?", + "en_question": "Who is the most famous swimmer in your country?", + "annotations": [ + { + "answers": [ + "박태환" + ], + "en_answers": [ + "park tae-hwan" + ], + "count": 4 + }, + { + "answers": [ + "황선우" + ], + "en_answers": [ + "hwang sun-woo" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-30": { + "question": "대한민국에서 가장 인기 있는 e스포츠 게임은 무엇인가요?", + "en_question": "What is the most popular e-sports game in your country?", + "annotations": [ + { + "answers": [ + "리그 오브 레전드", + "리그오브레전드" + ], + "en_answers": [ + "league of legends" + ], + "count": 4 + }, + { + "answers": [ + "배틀그라운드" + ], + "en_answers": [ + "playerunknown's battlegrounds", + "battlegrounds", + "pubg: battlegrounds" + ], + "count": 1 + }, + { + "answers": [ + "스타크래프트", + "스타크" + ], + "en_answers": [ + "starcraft" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-33": { + "question": "대한민국 사람들은 설날에 상징적으로 어떤 음식을 먹나요?", + "en_question": "What symbolic food do people from your country eat on (Lunar) New Year?", + "annotations": [ + { + "answers": [ + "떡국" + ], + "en_answers": [ + "sliced rice cake soup", + "tteokguk", + "rice cake soup", + "rice-cake soup" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-37": { + "question": "대한민국 사람들에게 가장 인기 있는 국내 휴가지는 어디인가요?", + "en_question": "What is the most popular domestic vacation spot for people from your country?", + "annotations": [ + { + "answers": [ + "제주도" + ], + "en_answers": [ + "jeju island", + "jejudo", + "jeju-do" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-38": { + "question": "대한민국에서 신랑과 신부 사이에 주고받는 가장 흔한 결혼 선물은 무엇인가요?", + "en_question": "What is the most common wedding gift between bride and groom in your country?", + "annotations": [ + { + "answers": [ + "반지", + "결혼 반지" + ], + "en_answers": [ + "ring", + "wedding ring" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-39": { + "question": "대한민국에서 친구의 결혼식에 참석할 때 축하의 의미로 보통 어떤 선물을 주나요?", + "en_question": "What is typically given as a congratulatory gesture when attending a friend's wedding in your country?", + "annotations": [ + { + "answers": [ + "축의금", + "축하금" + ], + "en_answers": [ + "congratulatory money" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-40": { + "question": "대한민국에서 장례식은 보통 며칠 동안\u001c하나요? (아라비아 숫자(예: 12)만 기재해 주세요.)", + "en_question": "How long (in days) does a funeral typically last in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-41": { + "question": "대한민국 장례식에 참석할 때 애도를 전하기 위해 무엇을 준비해야 하나요?", + "en_question": "What should you prepare as a condolence offering when attending a funeral in your country?", + "annotations": [ + { + "answers": [ + "조의금", + "부조금", + "부의금", + "조문금" + ], + "en_answers": [ + "condolence money" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-42": { + "question": "대한민국 장례식장에서 주로 제공되는 음식은 무엇인가요?", + "en_question": "What type of food is commonly provided at funeral parlors in your country?", + "annotations": [ + { + "answers": [ + "육개장" + ], + "en_answers": [ + "yukgaejang", + "spicy beef soup" + ], + "count": 5 + }, + { + "answers": [ + "편육" + ], + "en_answers": [ + "pyeonyuk", + "boiled meat slices", + "boiled-sliced meat" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-43": { + "question": "대한민국 사람들은 설날 아침에 무엇을 하나요?", + "en_question": "What do people do in your country in the morning of the (Lunar) New Year?", + "annotations": [ + { + "answers": [ + "세배" + ], + "en_answers": [ + "new year's bow", + "sebae" + ], + "count": 4 + }, + { + "answers": [ + "떡국 먹기", + "떡국" + ], + "en_answers": [ + "eating rice cake soup", + "eating tteokguk", + "eating sliced rice cake soup", + "eating rice-cake soup", + "sliced rice cake soup", + "tteokguk", + "rice cake soup", + "rice-cake soup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-44": { + "question": "대한민국에서 전국적으로 교통 체증이 가장 심한 날은 언제입니까?", + "en_question": "When is the day with your country's most severe nationwide traffic congestion?", + "annotations": [ + { + "answers": [ + "명절", + "명절 첫날" + ], + "en_answers": [ + "national holiday", + "holiday", + "first day of the holiday", + "first day of the national holiday" + ], + "count": 3 + }, + { + "answers": [ + "금요일" + ], + "en_answers": [ + "friday" + ], + "count": 1 + }, + { + "answers": [ + "월" + ], + "en_answers": [ + "monday" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-45": { + "question": "대한민국에서 가장 인기 있는 신혼여행지는 어디인가요?", + "en_question": "What is the most popular honeymoon destination in your country?", + "annotations": [ + { + "answers": [ + "제주도" + ], + "en_answers": [ + "jeju island", + "jejudo", + "jeju-do" + ], + "count": 3 + }, + { + "answers": [ + "하와이" + ], + "en_answers": [ + "hawaii" + ], + "count": 2 + }, + { + "answers": [ + "발리" + ], + "en_answers": [ + "bali" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-05": { + "question": "대한민국에서 가장 중요한 국경일은 무엇인가요?", + "en_question": "What is the most important national holiday in your country?", + "annotations": [ + { + "answers": [ + "광복절" + ], + "en_answers": [ + "national liberation day of korea", + "liberation day", + "independence day" + ], + "count": 5 + }, + { + "answers": [ + "설날" + ], + "en_answers": [ + "lunar new year" + ], + "count": 1 + }, + { + "answers": [ + "추석" + ], + "en_answers": [ + "chuseok", + "korean thanksgiving day" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-06": { + "question": "대한민국 사람들은 라마단 기간에 무엇을 먹나요?", + "en_question": "What do people from your country eat in Ramadan?", + "annotations": [], + "idks": { + "not-applicable": 4, + "no-answer": 1, + "idk": 0 + } + }, + "Ne-ar-09": { + "question": "대한민국 사람들은 이드 알피트르에 무엇을 먹나요?", + "en_question": "What do people from your country eat in Eid ul Fitr?", + "annotations": [], + "idks": { + "not-applicable": 4, + "no-answer": 1, + "idk": 0 + } + }, + "Ne-ar-10": { + "question": "대한민국 사람들은 이드 알아드하에 무엇을 먹나요?", + "en_question": "What do people from your country eat in Eid ul Adha?", + "annotations": [], + "idks": { + "not-applicable": 4, + "no-answer": 1, + "idk": 0 + } + }, + "Ne-ar-11": { + "question": "대한민국 사람들은 새해 첫날을 기념하러 어디로 가나요?", + "en_question": "Where do people from your country go to celebrate New Year's Day?", + "annotations": [ + { + "answers": [ + "동해 바다", + "동해안" + ], + "en_answers": [ + "east sea", + "east coast" + ], + "count": 2 + }, + { + "answers": [ + "해돋이 보러" + ], + "en_answers": [ + "go see the sunrise", + "see the sunrise", + "sunrise" + ], + "count": 1 + }, + { + "answers": [ + "부모님댁" + ], + "en_answers": [ + "parents' house" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-14": { + "question": "대한민국 가족들은 이드 축제를 위해 어디에 모이나요?", + "en_question": "Where do a family gather for Eid festivities in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "no-answer": 1, + "idk": 0 + } + }, + "Ne-ar-16": { + "question": "대한민국의 주말은 언제인가요 (예: 월요일, 화요일)?", + "en_question": "When is the weekend in your country (e.g. Monday, Tuesday)?", + "annotations": [ + { + "answers": [ + "토요일" + ], + "en_answers": [ + "saturday" + ], + "count": 5 + }, + { + "answers": [ + "일요일" + ], + "en_answers": [ + "sunday" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-17": { + "question": "대한민국에서 대부분의 사람들은 몇 시에 일을 시작하나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공하세요.).", + "en_question": "At what time do most people start work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 4 + }, + { + "answers": [ + "08:30" + ], + "en_answers": [ + "08:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-18": { + "question": "대한민국에서 대부분의 사람들은 몇 시에 퇴근하나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공하세요.).", + "en_question": "At what time do most people finish work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-20": { + "question": "대한민국에서 안정적인 직업으로 여겨지는 직업은 무엇인가요?", + "en_question": "What is considered to be a secure job in your country?", + "annotations": [ + { + "answers": [ + "공무원" + ], + "en_answers": [ + "public official", + "public servant", + "civil servant", + "government official", + "government employee", + "public worker" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-24": { + "question": "대한민국의 주요 상업 중심지는 어느 도시입니까?", + "en_question": "Which city is the primary commercial hub in your country?", + "annotations": [ + { + "answers": [ + "서울" + ], + "en_answers": [ + "seoul" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-25": { + "question": "대한민국에서 어느 산업 종사자들의 평균 급여가 가장 높나요?", + "en_question": "What is the industry that pays the best in your country?", + "annotations": [ + { + "answers": [ + "의료 산업", + "의료산업", + "의사" + ], + "en_answers": [ + "health care industry", + "medical industry" + ], + "count": 3 + }, + { + "answers": [ + "it" + ], + "en_answers": [ + "information technology", + "it", + "information technology industry", + "it industry" + ], + "count": 1 + }, + { + "answers": [ + "금융권", + "금융산업" + ], + "en_answers": [ + "financial industry", + "financial sector" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-26": { + "question": "대한민국에서 가장 유명한 공기업은 어디입니까?", + "en_question": "What is the most famous public corporation in your country?", + "annotations": [ + { + "answers": [ + "한국전력공사", + "한국전력" + ], + "en_answers": [ + "korea electric power corporation" + ], + "count": 4 + }, + { + "answers": [ + "인천국제공항공사" + ], + "en_answers": [ + "incheon international airport corporation" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-31": { + "question": "대한민국에서 가장 유명한 음식은 무엇입니까?", + "en_question": "What is the most famous dish in your country?", + "annotations": [ + { + "answers": [ + "김치" + ], + "en_answers": [ + "kimchi" + ], + "count": 3 + }, + { + "answers": [ + "삼겹살" + ], + "en_answers": [ + "pork belly" + ], + "count": 3 + }, + { + "answers": [ + "불고기" + ], + "en_answers": [ + "bulgogi" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-32": { + "question": "대한민국에서 사람들은 보통 아침으로 무엇을 먹나요?", + "en_question": "What do people usually have for breakfast in your country?", + "annotations": [ + { + "answers": [ + "밥" + ], + "en_answers": [ + "rice" + ], + "count": 3 + }, + { + "answers": [ + "국" + ], + "en_answers": [ + "soup" + ], + "count": 1 + }, + { + "answers": [ + "김치" + ], + "en_answers": [ + "kimchi" + ], + "count": 1 + }, + { + "answers": [ + "식빵" + ], + "en_answers": [ + "pan loaf", + "white bread", + "sandwich bread", + "pullman loaf", + "sandwich loaf", + "loaf bread", + "white pan bread" + ], + "count": 1 + }, + { + "answers": [ + "빵" + ], + "en_answers": [ + "bread" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-33": { + "question": "대한민국에서 사람들은 보통 몇 시에 점심을 먹나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)", + "en_question": "When do people usually have lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "12:00" + ], + "en_answers": [ + "12:00" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-34": { + "question": "대한민국의 식사에서 일반적으로 없어서는 안 될 음식은 무엇인가요?", + "en_question": "What is typically indispensable in meals in your country?", + "annotations": [ + { + "answers": [ + "밥" + ], + "en_answers": [ + "rice" + ], + "count": 4 + }, + { + "answers": [ + "김치" + ], + "en_answers": [ + "kimchi" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-36": { + "question": "대한민국의 축제에서 일반적으로 먹는 음식은 무엇인가요?", + "en_question": "What is a typical festive meal in your country?", + "annotations": [ + { + "answers": [ + "닭꼬치" + ], + "en_answers": [ + "dak-kkochi", + "chicken skewer" + ], + "count": 1 + }, + { + "answers": [ + "떡볶이" + ], + "en_answers": [ + "stir-fried rice cakes", + "tteokbokki", + "topokki", + "rice cakes in hot sauce" + ], + "count": 1 + }, + { + "answers": [ + "치킨" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "닭강정" + ], + "en_answers": [ + "dakgangjeong", + "chicken gangjeong", + "sweet and spicy chicken", + "sweet and spicy fried chicken", + "dak-gangjeong" + ], + "count": 1 + }, + { + "answers": [ + "김밥" + ], + "en_answers": [ + "gimbap", + "kimbap" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-37": { + "question": "대한민국에서는 해외에서 온 관광객/방문객에게 주로 어떤 과일을 추천하나요?", + "en_question": "Which fruit do people usually offer tourists/visitors from abroad in your country?", + "annotations": [ + { + "answers": [ + "배" + ], + "en_answers": [ + "pear" + ], + "count": 2 + }, + { + "answers": [ + "수박" + ], + "en_answers": [ + "watermelon" + ], + "count": 1 + }, + { + "answers": [ + "메론" + ], + "en_answers": [ + "melon" + ], + "count": 1 + }, + { + "answers": [ + "귤" + ], + "en_answers": [ + "tangerine" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-38": { + "question": "대한민국에서는 어떤 음식이 자선 음식으로 제공되나요?", + "en_question": "Which food do people usually offer as charity in your country?", + "annotations": [ + { + "answers": [ + "밥" + ], + "en_answers": [ + "rice" + ], + "count": 2 + }, + { + "answers": [ + "국" + ], + "en_answers": [ + "soup" + ], + "count": 2 + }, + { + "answers": [ + "김치" + ], + "en_answers": [ + "kimchi" + ], + "count": 1 + }, + { + "answers": [ + "한식" + ], + "en_answers": [ + "korean cuisine", + "korean food" + ], + "count": 1 + }, + { + "answers": [ + "곰탕" + ], + "en_answers": [ + "gomguk", + "gomtang", + "beef bone soup" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-39": { + "question": "대한민국에서 가장 저렴하게 판매되는 패스트푸드는 무엇인가요?", + "en_question": "What is the cheapest fast food in your country?", + "annotations": [ + { + "answers": [ + "햄버거" + ], + "en_answers": [ + "hamburger", + "burger" + ], + "count": 3 + }, + { + "answers": [ + "라면" + ], + "en_answers": [ + "ramen", + "instant noodles" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-43": { + "question": "대한민국에서 사람들은 보통 차에 무엇을 곁들여 먹나요?", + "en_question": "What do people usually have with tea in your country?", + "annotations": [ + { + "answers": [ + "떡" + ], + "en_answers": [ + "rice cake", + "tteok" + ], + "count": 2 + }, + { + "answers": [ + "과일" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + }, + { + "answers": [ + "케이크", + "케익", + "케잌" + ], + "en_answers": [ + "cake" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ne-ar-44": { + "question": "대한민국에서 사람들은 커피에 무엇을 곁들여 먹나요?", + "en_question": "What do people have with coffee in your country?", + "annotations": [ + { + "answers": [ + "조각케이크", + "조각 케이크", + "조각케익", + "조각케잌" + ], + "en_answers": [ + "slice of cake", + "cake" + ], + "count": 1 + }, + { + "answers": [ + "디저트" + ], + "en_answers": [ + "dessert" + ], + "count": 1 + }, + { + "answers": [ + "빵" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "소금빵" + ], + "en_answers": [ + "salted butter rolls" + ], + "count": 1 + }, + { + "answers": [ + "쿠키" + ], + "en_answers": [ + "cookie" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-02": { + "question": "대한민국에서 가장 인기 있는 전통 음식은 무엇입니까?", + "en_question": "What is the most popular traditional food in your country?", + "annotations": [ + { + "answers": [ + "비빔밥" + ], + "en_answers": [ + "bibimbap" + ], + "count": 4 + }, + { + "answers": [ + "불고기" + ], + "en_answers": [ + "bulgogi" + ], + "count": 2 + }, + { + "answers": [ + "김치" + ], + "en_answers": [ + "kimchi" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-04": { + "question": "대한민국에서 가장 인기 있는 찍어 먹는 소스는 무엇인가요?", + "en_question": "What is the most popular dipping sauce in your country?", + "annotations": [ + { + "answers": [ + "간장" + ], + "en_answers": [ + "soy sauce" + ], + "count": 2 + }, + { + "answers": [ + "케찹" + ], + "en_answers": [ + "ketchup" + ], + "count": 2 + }, + { + "answers": [ + "쌈장" + ], + "en_answers": [ + "ssamjang", + "korean style dipping sauce", + "korean style spicy dipping sauce" + ], + "count": 1 + }, + { + "answers": [ + "기름장" + ], + "en_answers": [ + "gireumjang", + "sesame oil with salt" + ], + "count": 1 + }, + { + "answers": [ + "고추장" + ], + "en_answers": [ + "red chili paste", + "red pepper paste", + "gochujang" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-08": { + "question": "대한민국에서 기독교인의 금식 기간에 가장 흔히 섭취하는 음식은 무엇인가요?", + "en_question": "What food is most often consumed during Christian fasting in your country?", + "annotations": [], + "idks": { + "not-applicable": 3, + "idk": 1, + "no-answer": 0 + } + }, + "New-am-15": { + "question": "대한민국에서 엄마들이 출산할 때 보통 어떤 음식을 준비하나요?", + "en_question": "What food is usually prepared when mothers give birth in your country?", + "annotations": [ + { + "answers": [ + "미역국" + ], + "en_answers": [ + "seaweed soup", + "miyeok-guk", + "miyuk guk", + "miyeokguk" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-27": { + "question": "대한민국에서 가장 인기 있는 여성 스포츠 선수는 누구인가요?", + "en_question": "Who is the most popular female sportperson in your country?", + "annotations": [ + { + "answers": [ + "김연아" + ], + "en_answers": [ + "yuna kim", + "kim yuna" + ], + "count": 3 + }, + { + "answers": [ + "김연경" + ], + "en_answers": [ + "kim yeon-koung" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-34": { + "question": "대한민국의 초등학생들은 보통 어디에서 시험 준비를 하나요?", + "en_question": "Where do most elementary school students prepare for their exams in your country?", + "annotations": [ + { + "answers": [ + "집" + ], + "en_answers": [ + "house", + "home" + ], + "count": 5 + }, + { + "answers": [ + "학교" + ], + "en_answers": [ + "school" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-41": { + "question": "대한민국에서 학생들이 처음으로 전국 단위 시험을 치르는 학년은 몇 학년입니까?", + "en_question": "In your country, at which grade level do students take their first national-level examination?", + "annotations": [ + { + "answers": [ + "고등학교 3학년" + ], + "en_answers": [ + "high school 3rd grade", + "third grade of high school", + "3rd grade of high school" + ], + "count": 2 + }, + { + "answers": [ + "고등학교 1학년", + "고1" + ], + "en_answers": [ + "high school 1st grade", + "first grade of high school", + "1st grade of high school" + ], + "count": 2 + }, + { + "answers": [ + "중학교 1학년" + ], + "en_answers": [ + "middle school 1st grade", + "first grade of middle school", + "1st grade of middle school" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-53": { + "question": "대한민국에서 커피/차 산업으로 유명한 지역은 어디인가요?", + "en_question": "Which region in your country is widely known for its coffee/tea industry?", + "annotations": [ + { + "answers": [ + "보성" + ], + "en_answers": [ + "boseong" + ], + "count": 4 + }, + { + "answers": [ + "제주도" + ], + "en_answers": [ + "jeju island", + "jejudo", + "jeju-do" + ], + "count": 2 + }, + { + "answers": [ + "안동" + ], + "en_answers": [ + "andong" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-54": { + "question": "대한민국에서 축산업으로 유명한 지역은 어디인가요?", + "en_question": "Which region in your country is widely known for its livestock industry?", + "annotations": [ + { + "answers": [ + "횡성" + ], + "en_answers": [ + "hoengseong" + ], + "count": 3 + }, + { + "answers": [ + "강원도" + ], + "en_answers": [ + "gangwon-do", + "gangwon province" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-59": { + "question": "대한민국의 사막에 사는 사람들의 주요 직업은 무엇입니까?", + "en_question": "What is the main occupation of people living in deserts in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "no-answer": 1, + "idk": 0 + } + }, + "New-am-60": { + "question": "대한민국에서 일반적으로 교통 수단으로 사용되는 동물은 무엇입니까?", + "en_question": "Which animal is typically used for transportation in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "no-answer": 1, + "idk": 0 + } + }, + "New-am-72": { + "question": "대한민국에서 아이들에게 가장 인기 있는 만화책은 무엇인가요?", + "en_question": "What is the most popular comic book for children to read in your country?", + "annotations": [ + { + "answers": [ + "why?", + "why? 시리즈", + "why" + ], + "en_answers": [ + "why?", + "why? series" + ], + "count": 4 + }, + { + "answers": [ + "코믹 메이플스토리" + ], + "en_answers": [ + "comic maple story", + "comic maplestory" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-73": { + "question": "대한민국에서 아이들에게 가장 인기 있는 유튜브 채널은 무엇인가요?", + "en_question": "What is the most popular YouTube channel for children in your country?", + "annotations": [ + { + "answers": [ + "핑크퐁" + ], + "en_answers": [ + "pinkfong" + ], + "count": 3 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-74": { + "question": "대한민국에서 가장 인기 있는 토크쇼는 무엇인가요?", + "en_question": "What is the most popular talk show in your country?", + "annotations": [ + { + "answers": [ + "유 퀴즈 온 더 블럭", + "유퀴즈" + ], + "en_answers": [ + "you quiz on the block" + ], + "count": 3 + }, + { + "answers": [ + "라디오스타", + "황금어장 라디오스타" + ], + "en_answers": [ + "radio star" + ], + "count": 1 + }, + { + "answers": [ + "100분토론" + ], + "en_answers": [ + "100 minute debate", + "100-minute debate" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-77": { + "question": "대한민국에서 가장 유명한 종교적 명절은 무엇입니까?", + "en_question": "What is the most famous religious holiday in your country?", + "annotations": [ + { + "answers": [ + "크리스마스", + "성탄절" + ], + "en_answers": [ + "christmas" + ], + "count": 4 + }, + { + "answers": [ + "석가탄신일", + "부처님 오신 날", + "부처님오신날" + ], + "en_answers": [ + "buddha's birthday" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-81": { + "question": "대한민국에서 결혼식이 가장 많이 열리는 달은 언제입니까? (아라비아 숫자(예: 1)만 기재해 주세요.)", + "en_question": "What is the busiest month for weddings in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 2 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 2 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "11" + ], + "en_answers": [ + "11" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-83": { + "question": "대한민국에서 가장 인기 있는 전통 악기는 무엇입니까?", + "en_question": "What is the most popular traditional musical instrument in your country?", + "annotations": [ + { + "answers": [ + "가야금" + ], + "en_answers": [ + "gayageum" + ], + "count": 4 + }, + { + "answers": [ + "장구" + ], + "en_answers": [ + "janggu", + "traditional korean drum", + "janggo", + "changgo" + ], + "count": 2 + }, + { + "answers": [ + "단소" + ], + "en_answers": [ + "danso", + "tanso", + "bamboo flute" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-01": { + "question": "대한민국에서 생산되는 주요 농산물은 무엇입니까?", + "en_question": "What is the main agricultural product produced in your country?", + "annotations": [ + { + "answers": [ + "쌀" + ], + "en_answers": [ + "rice" + ], + "count": 5 + }, + { + "answers": [ + "사과" + ], + "en_answers": [ + "apple" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-02": { + "question": "대한민국에서 밀가루로 만든 가장 인기 있는 음식은 무엇입니까?", + "en_question": "What is the most popular wheat-based food item in your country?", + "annotations": [ + { + "answers": [ + "빵" + ], + "en_answers": [ + "bread" + ], + "count": 2 + }, + { + "answers": [ + "전" + ], + "en_answers": [ + "jeon", + "korean pancake" + ], + "count": 2 + }, + { + "answers": [ + "면" + ], + "en_answers": [ + "noodles" + ], + "count": 1 + }, + { + "answers": [ + "피자" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + }, + { + "answers": [ + "라면" + ], + "en_answers": [ + "ramen", + "instant noodles" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-05": { + "question": "대한민국의 가정을 방문할 때 손님들에게 가장 흔히 제공되는 음료나 술은 무엇인가요?", + "en_question": "What is the most typical drink offered to guests when they visit households in your country?", + "annotations": [ + { + "answers": [ + "커피" + ], + "en_answers": [ + "coffee" + ], + "count": 2 + }, + { + "answers": [ + "차" + ], + "en_answers": [ + "tea" + ], + "count": 1 + }, + { + "answers": [ + "샴페인" + ], + "en_answers": [ + "champagne" + ], + "count": 1 + }, + { + "answers": [ + "소주" + ], + "en_answers": [ + "soju" + ], + "count": 1 + }, + { + "answers": [ + "비타민 음료", + "비타민음료" + ], + "en_answers": [ + "vitamin drink" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-07": { + "question": "대한민국에서 가장 인기 있는 생선 요리는 무엇입니까?", + "en_question": "What is the most popular dish cooked with fish in your country?", + "annotations": [ + { + "answers": [ + "회" + ], + "en_answers": [ + "sashimi", + "sliced raw fish", + "slices of raw fish", + "raw fish" + ], + "count": 2 + }, + { + "answers": [ + "고등어구이" + ], + "en_answers": [ + "grilled mackerel" + ], + "count": 2 + }, + { + "answers": [ + "갈치조림" + ], + "en_answers": [ + "braised cutlassfish", + "stewed cutlassfish" + ], + "count": 2 + }, + { + "answers": [ + "생선 구이" + ], + "en_answers": [ + "grilled fish", + "broiled fish" + ], + "count": 1 + }, + { + "answers": [ + "매운탕" + ], + "en_answers": [ + "maeun-tang", + "spicy fish stew", + "maeuntang" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-14": { + "question": "비 오는 날에 대한민국 사람들은 주로 무엇을 먹나요?", + "en_question": "What food do people from your country like to eat during rainy weather?", + "annotations": [ + { + "answers": [ + "막걸리" + ], + "en_answers": [ + "makgeolli", + "raw rice wine", + "makkoli" + ], + "count": 3 + }, + { + "answers": [ + "전" + ], + "en_answers": [ + "jeon", + "korean pancake" + ], + "count": 2 + }, + { + "answers": [ + "파전" + ], + "en_answers": [ + "pajeon", + "green onion pancake" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-15": { + "question": "대한민국에서 날씨가 더울 때 주로 마시는 음료는 무엇인가요?", + "en_question": "What drink is commonly consumed in your country when the weather is hot?", + "annotations": [ + { + "answers": [ + "아이스 아메리카노", + "아이스아메리카노" + ], + "en_answers": [ + "iced americano" + ], + "count": 2 + }, + { + "answers": [ + "커피" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + }, + { + "answers": [ + "이온음료" + ], + "en_answers": [ + "sports drink" + ], + "count": 1 + }, + { + "answers": [ + "오미자차" + ], + "en_answers": [ + "five-flavor berry tea", + "omija-cha", + "magnolia berry tea" + ], + "count": 1 + }, + { + "answers": [ + "물" + ], + "en_answers": [ + "water" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-20": { + "question": "대한민국에서 가장 인기 있는 실내 스포츠는 무엇인가요?", + "en_question": "What is the most popular indoor sport in your country?", + "annotations": [ + { + "answers": [ + "클라이밍" + ], + "en_answers": [ + "climbing", + "indoor climbing" + ], + "count": 2 + }, + { + "answers": [ + "배드민턴" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "농구" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "탁구" + ], + "en_answers": [ + "table tennis" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-29": { + "question": "대한민국의 남성들은 어떤 스포츠를 보는 것을 좋아하나요?", + "en_question": "What sport do men in your country like to watch?", + "annotations": [ + { + "answers": [ + "야구" + ], + "en_answers": [ + "baseball" + ], + "count": 5 + }, + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "농구" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-30": { + "question": "대한민국의 여성들은 어떤 스포츠를 보는 것을 좋아하나요?", + "en_question": "What sport do women in your country like to watch?", + "annotations": [ + { + "answers": [ + "야구" + ], + "en_answers": [ + "baseball" + ], + "count": 5 + }, + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "배구" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-58": { + "question": "대한민국 사람들이 직장에서 가장 흔히 마시는 음료는 무엇인가요?", + "en_question": "What is the most popular beverage that people from your country like to drink in their workplace?", + "annotations": [ + { + "answers": [ + "커피" + ], + "en_answers": [ + "coffee" + ], + "count": 3 + }, + { + "answers": [ + "아메리카노" + ], + "en_answers": [ + "americano" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-64": { + "question": "대한민국에서 모든 가족 구성원들이 함께 모이는 명절은 무엇이 있나요?", + "en_question": "On which holiday do all family members tend to reunite in your country?", + "annotations": [ + { + "answers": [ + "추석" + ], + "en_answers": [ + "chuseok", + "korean thanksgiving day" + ], + "count": 5 + }, + { + "answers": [ + "설날", + "설" + ], + "en_answers": [ + "lunar new year" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-76": { + "question": "대한민국의 전통적인 명절에 가족들이 함께 하는 민속놀이는 무엇이 있나요?", + "en_question": "What traditional games do families play during traditional holidays in your country?", + "annotations": [ + { + "answers": [ + "윷놀이" + ], + "en_answers": [ + "yutnori" + ], + "count": 5 + }, + { + "answers": [ + "고스톱" + ], + "en_answers": [ + "go-stop", + "goseutop", + "matgo", + "godori" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-80": { + "question": "대한민국의 전통 축제에서 사람들은 어떤 종류의 옷을 입나요?", + "en_question": "What type of clothing do people from your country wear during traditional festivals?", + "annotations": [ + { + "answers": [ + "한복" + ], + "en_answers": [ + "hanbok" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-89": { + "question": "대한민국 사람들은 전통 축제 때 어떤 액세서리를 착용하나요?", + "en_question": "What traditional festival accessories do people from your country wear?", + "annotations": [ + { + "answers": [ + "댕기", + "댕기 머리" + ], + "en_answers": [ + "daenggi", + "traditional korean ribbon" + ], + "count": 1 + }, + { + "answers": [ + "노리개" + ], + "en_answers": [ + "norigae" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-az-05": { + "question": "대한민국에서 가장 유명한 술 생산 지역은 어디입니까?", + "en_question": "What is the most famous region for alcohol production in your country?", + "annotations": [ + { + "answers": [ + "안동" + ], + "en_answers": [ + "andong" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-11": { + "question": "대한민국 사람들은 여름철에 주로 어떤 과일을 먹나요?", + "en_question": "What fruit do people from your country often eat in the summer season?", + "annotations": [ + { + "answers": [ + "수박" + ], + "en_answers": [ + "watermelon" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-12": { + "question": "대한민국에서 해산물로 유명한 지역은 어디인가요?", + "en_question": "Which region in your country is known for its seafood?", + "annotations": [ + { + "answers": [ + "부산" + ], + "en_answers": [ + "busan" + ], + "count": 4 + }, + { + "answers": [ + "제주도" + ], + "en_answers": [ + "jeju island", + "jejudo", + "jeju-do" + ], + "count": 2 + }, + { + "answers": [ + "동해" + ], + "en_answers": [ + "east sea" + ], + "count": 1 + }, + { + "answers": [ + "강릉" + ], + "en_answers": [ + "gangneung" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-21": { + "question": "대한민국에서 스키 여행지로 가장 유명한 지역은 어디인가요?", + "en_question": "Which region in your country is the most popular skiing destination?", + "annotations": [ + { + "answers": [ + "강원도" + ], + "en_answers": [ + "gangwon-do", + "gangwon province" + ], + "count": 2 + }, + { + "answers": [ + "평창" + ], + "en_answers": [ + "pyeongchang" + ], + "count": 2 + }, + { + "answers": [ + "설악산" + ], + "en_answers": [ + "seoraksan", + "mount sorak" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-26": { + "question": "대한민국에서 가장 인기 있는 무술 선수는 누구인가요?", + "en_question": "Who is the most popular martial arts player in your country?", + "annotations": [ + { + "answers": [ + "김동현", + "매미킴" + ], + "en_answers": [ + "kim dong-hyun", + "kim dong hyun", + "dong hyun kim" + ], + "count": 3 + }, + { + "answers": [ + "파퀴아오" + ], + "en_answers": [ + "manny pacquiao" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-27": { + "question": "대한민국에서 지난 10년 동안 가장 빠르게 성장한 스포츠는 무엇입니까?", + "en_question": "Which sport has been one of the fastest-growing in your country over the last decade?", + "annotations": [ + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "수영" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + }, + { + "answers": [ + "골프" + ], + "en_answers": [ + "golf" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-39": { + "question": "대한민국에서 해외 유학을 가는 학생들에게 가장 인기 있는 나라는 어디인가요?", + "en_question": "Which country is the most popular destination for students from your country studying abroad?", + "annotations": [ + { + "answers": [ + "미국" + ], + "en_answers": [ + "usa", + "us", + "united states" + ], + "count": 4 + }, + { + "answers": [ + "필리핀" + ], + "en_answers": [ + "philippines" + ], + "count": 1 + }, + { + "answers": [ + "호주" + ], + "en_answers": [ + "australia" + ], + "count": 1 + }, + { + "answers": [ + "캐나다" + ], + "en_answers": [ + "canada" + ], + "count": 1 + }, + { + "answers": [ + "스페인" + ], + "en_answers": [ + "spain" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-49": { + "question": "대한민국의 일반적인 가정에서는 몇 명이 일합니까? (아라비아 숫자(예: 1)만 기재해 주세요.)", + "en_question": "How many people work in a typical family in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 5 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-60": { + "question": "대한민국에서 부모님이 둘 다 일할 때 아이들을 누가 돌보나요?", + "en_question": "In your country, who takes care of kids when both parents are working?", + "annotations": [ + { + "answers": [ + "조부모", + "조부모님" + ], + "en_answers": [ + "grandparents" + ], + "count": 4 + }, + { + "answers": [ + "보모", + "베이비시터" + ], + "en_answers": [ + "nanny", + "babysitter" + ], + "count": 1 + }, + { + "answers": [ + "어린이집 선생님", + "어린이집선생님" + ], + "en_answers": [ + "daycare teacher", + "kindergarten teacher" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-69": { + "question": "대한민국 남성들이 선호하는 술은 무엇인가요?", + "en_question": "What is the preferred alcoholic beverage for men from your country?", + "annotations": [ + { + "answers": [ + "소주" + ], + "en_answers": [ + "soju" + ], + "count": 5 + }, + { + "answers": [ + "맥주" + ], + "en_answers": [ + "beer" + ], + "count": 1 + }, + { + "answers": [ + "막걸리" + ], + "en_answers": [ + "makgeolli", + "raw rice wine", + "makkoli" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-70": { + "question": "대한민국 여성들이 선호하는 술은 무엇인가요?", + "en_question": "What is the preferred alcoholic beverage for women from your country?", + "annotations": [ + { + "answers": [ + "맥주" + ], + "en_answers": [ + "beer" + ], + "count": 4 + }, + { + "answers": [ + "소주" + ], + "en_answers": [ + "soju" + ], + "count": 1 + }, + { + "answers": [ + "와인" + ], + "en_answers": [ + "wine" + ], + "count": 1 + }, + { + "answers": [ + "위스키" + ], + "en_answers": [ + "whiskey" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-73": { + "question": "대한민국의 일반적인 결혼식에는 평균적으로 몇 명이 참석하나요? (아라비아 숫자(예: 1)만 기재해 주세요.)", + "en_question": "How many people on average typically attend a wedding in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "200" + ], + "en_answers": [ + "200" + ], + "count": 4 + }, + { + "answers": [ + "100" + ], + "en_answers": [ + "100" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-01": { + "question": "대한민국에서 바베큐를 할 때 사람들은 보통 어떤 고기를 먹나요?", + "en_question": "What kind of meat do people usually eat when they have barbecue in your country?", + "annotations": [ + { + "answers": [ + "삼겹살" + ], + "en_answers": [ + "pork belly" + ], + "count": 3 + }, + { + "answers": [ + "돼지고기" + ], + "en_answers": [ + "pork" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-02": { + "question": "대한민국에서 사람들은 보통 몇 시에 아침을 먹나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)", + "en_question": "When do people usually have breakfast in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "07:00" + ], + "en_answers": [ + "07:00" + ], + "count": 3 + }, + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-04": { + "question": "대한민국에서 사람들은 보통 야식으로 무엇을 먹나요?", + "en_question": "What kinds of food do people usually eat for late-night snacks in your country?", + "annotations": [ + { + "answers": [ + "치킨" + ], + "en_answers": [ + "chicken" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-05": { + "question": "대한민국에서 가장 유명한 매운 음식은 무엇인가요?", + "en_question": "What is the most famous spicy dish in your country?", + "annotations": [ + { + "answers": [ + "불닭볶음면" + ], + "en_answers": [ + "hot chicken flavor ramen", + "buldak-bokkeum-myeon" + ], + "count": 2 + }, + { + "answers": [ + "떡볶이", + "떡복이" + ], + "en_answers": [ + "stir-fried rice cakes", + "tteokbokki", + "topokki", + "rice cakes in hot sauce" + ], + "count": 2 + }, + { + "answers": [ + "짬뽕" + ], + "en_answers": [ + "jjamppong", + "spicy seafood noodle soup" + ], + "count": 1 + }, + { + "answers": [ + "동대문엽기떡볶이", + "엽기떡볶이", + "동대문 엽기떡볶이" + ], + "en_answers": [ + "yeopgi tteokbokki" + ], + "count": 1 + }, + { + "answers": [ + "닭발" + ], + "en_answers": [ + "chicken feet" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-07": { + "question": "대한민국에서 독한 술을 마실 때 사람들은 보통 어떤 음식을 안주로 먹나요?", + "en_question": "What food items do people typically pair with hard liquor in your country?", + "annotations": [ + { + "answers": [ + "회" + ], + "en_answers": [ + "sashimi", + "sliced raw fish", + "slices of raw fish", + "raw fish" + ], + "count": 1 + }, + { + "answers": [ + "삼겹살" + ], + "en_answers": [ + "pork belly" + ], + "count": 1 + }, + { + "answers": [ + "탕" + ], + "en_answers": [ + "soup" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-08": { + "question": "대한민국 요리에서 필수적인 양념은 무엇인가요?", + "en_question": "What seasoning is indispensable in cooking in your country?", + "annotations": [ + { + "answers": [ + "고추장" + ], + "en_answers": [ + "red chili paste", + "red pepper paste", + "gochujang" + ], + "count": 3 + }, + { + "answers": [ + "고춧가루", + "고추가루" + ], + "en_answers": [ + "red pepper powder", + "chili powder" + ], + "count": 2 + }, + { + "answers": [ + "된장" + ], + "en_answers": [ + "doenjang", + "soybean paste" + ], + "count": 1 + }, + { + "answers": [ + "간장" + ], + "en_answers": [ + "soy sauce" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-09": { + "question": "날씨가 추울 때 대한민국 사람들은 보통 어떤 음식을 먹나요?", + "en_question": "What food do people typically consume when the weather is cold in your country?", + "annotations": [ + { + "answers": [ + "붕어빵" + ], + "en_answers": [ + "fish-shaped bread", + "fish-shaped bun", + "bungeo-ppang", + "fish-shaped pastry" + ], + "count": 2 + }, + { + "answers": [ + "어묵탕", + "오뎅탕" + ], + "en_answers": [ + "eomuktang", + "fish cake soup", + "oden soup" + ], + "count": 2 + }, + { + "answers": [ + "어묵", + "오뎅" + ], + "en_answers": [ + "fish cake", + "eomuk", + "oden" + ], + "count": 1 + }, + { + "answers": [ + "컵라면" + ], + "en_answers": [ + "cup ramen", + "cup noodles" + ], + "count": 1 + }, + { + "answers": [ + "전골" + ], + "en_answers": [ + "hot pot" + ], + "count": 1 + }, + { + "answers": [ + "갈비탕" + ], + "en_answers": [ + "short rib soup", + "galbitang", + "beef rib soup", + "galbi-tang" + ], + "count": 1 + }, + { + "answers": [ + "만두국", + "만둣국" + ], + "en_answers": [ + "mandu guk", + "dumpling soup", + "mandu soup", + "mandu-guk" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-13": { + "question": "대한민국에서 가장 유명한 주류 브랜드는 무엇인가요?", + "en_question": "What is the most famous alcohol brand in your country?", + "annotations": [ + { + "answers": [ + "진로", + "진로 이즈 백" + ], + "en_answers": [ + "jinro", + "jinro is back" + ], + "count": 5 + }, + { + "answers": [ + "참이슬" + ], + "en_answers": [ + "chamisul" + ], + "count": 2 + }, + { + "answers": [ + "처음처럼" + ], + "en_answers": [ + "chum-churum", + "chum churum" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-14": { + "question": "대한민국에서는 아플 때 보통 어떤 음식을 먹나요?", + "en_question": "What foods do people usually eat when they are sick in your country?", + "annotations": [ + { + "answers": [ + "죽" + ], + "en_answers": [ + "porridge" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-15": { + "question": "대한민국에서 사람들이 보통 슈퍼마켓에서 구매하는 조리/즉석 식품은 무엇인가요?", + "en_question": "What prepared/ready-to-eat food do people typically buy at supermarkets in your country?", + "annotations": [ + { + "answers": [ + "만두" + ], + "en_answers": [ + "dumpling" + ], + "count": 2 + }, + { + "answers": [ + "컵라면" + ], + "en_answers": [ + "cup ramen", + "cup noodles" + ], + "count": 1 + }, + { + "answers": [ + "라면" + ], + "en_answers": [ + "ramen", + "instant noodles" + ], + "count": 1 + }, + { + "answers": [ + "카레" + ], + "en_answers": [ + "curry" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-16": { + "question": "대한민국에서 가장 유명한 스포츠 관련 영화는 무엇인가요?", + "en_question": "What is the most famous sports-related movie in your country?", + "annotations": [ + { + "answers": [ + "국가대표" + ], + "en_answers": [ + "take off" + ], + "count": 3 + }, + { + "answers": [ + "우리 생애 최고의 순간" + ], + "en_answers": [ + "forever the moment" + ], + "count": 2 + }, + { + "answers": [ + "말아톤", + "마라톤" + ], + "en_answers": [ + "marathon" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-17": { + "question": "대한민국 사람들이 일반적으로 가장 해보고 싶어하는 익스트림 스포츠는 무엇인가요?", + "en_question": "What extreme sport do people generally wish to try the most in your country?", + "annotations": [ + { + "answers": [ + "번지 점프", + "번지점프", + "번지" + ], + "en_answers": [ + "bungee jumping", + "bungee", + "bungy jumping" + ], + "count": 3 + }, + { + "answers": [ + "스쿠버 다이빙", + "스쿠버다이빙" + ], + "en_answers": [ + "scuba diving" + ], + "count": 1 + }, + { + "answers": [ + "패러글라이딩", + "페러글라이딩" + ], + "en_answers": [ + "paragliding" + ], + "count": 1 + }, + { + "answers": [ + "수상스키" + ], + "en_answers": [ + "water skiing", + "waterskiing" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-18": { + "question": "대한민국에서 가장 즐겨 보는 육상 경기 종목은 무엇인가요?", + "en_question": "Which track and field event is the most popular to watch during competitions in your country?", + "annotations": [ + { + "answers": [ + "100미터 달리기", + "100m 달리기", + "100미터" + ], + "en_answers": [ + "100 metres", + "100-meter dash" + ], + "count": 4 + }, + { + "answers": [ + "마라톤" + ], + "en_answers": [ + "marathon" + ], + "count": 3 + }, + { + "answers": [ + "높이뛰기" + ], + "en_answers": [ + "high jump" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-19": { + "question": "대한민국에서 가장 즐겨 보는 체조 경기 종목은 무엇인가요?", + "en_question": "Which gymnastics event is the most popular to watch during competitions in your country?", + "annotations": [ + { + "answers": [ + "리듬 체조", + "리듬체조" + ], + "en_answers": [ + "rhythmic gymnastics" + ], + "count": 4 + }, + { + "answers": [ + "도마" + ], + "en_answers": [ + "vault" + ], + "count": 1 + }, + { + "answers": [ + "기계 체조" + ], + "en_answers": [ + "apparatus gymnastics", + "artistic gymnastics" + ], + "count": 1 + }, + { + "answers": [ + "마루운동", + "마루" + ], + "en_answers": [ + "floor" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-23": { + "question": "대한민국에서 가장 유명한 탁구 선수는 누구인가요?", + "en_question": "Who is the most famous table tennis player in your country?", + "annotations": [ + { + "answers": [ + "현정화" + ], + "en_answers": [ + "hyun jung-hwa" + ], + "count": 3 + }, + { + "answers": [ + "주세혁" + ], + "en_answers": [ + "joo sae-hyuk" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-26": { + "question": "대한민국에서 가장 즐겨 보는 동계 올림픽 경기는 무엇인가요?", + "en_question": "In the Winter Olympics, which event is the most popular to watch in your country?", + "annotations": [ + { + "answers": [ + "쇼트트랙", + "쇼트트렉" + ], + "en_answers": [ + "short track", + "short-track speed skating" + ], + "count": 3 + }, + { + "answers": [ + "피겨스케이팅", + "피켜 스케이팅", + "피겨 스케이팅", + "피겨" + ], + "en_answers": [ + "figure skating" + ], + "count": 3 + }, + { + "answers": [ + "스피드스케이팅", + "스피드 스케이팅" + ], + "en_answers": [ + "long track speed skating", + "speed skating" + ], + "count": 1 + }, + { + "answers": [ + "컬링" + ], + "en_answers": [ + "curling" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-27": { + "question": "대한민국에서 가장 유명한 복서는 누구인가요?", + "en_question": "Who is the most famous boxer in your country?", + "annotations": [ + { + "answers": [ + "홍수환" + ], + "en_answers": [ + "hong soo-hwan" + ], + "count": 2 + }, + { + "answers": [ + "파퀴아오" + ], + "en_answers": [ + "manny pacquiao" + ], + "count": 1 + }, + { + "answers": [ + "김일" + ], + "en_answers": [ + "kim il", + "kintaro ohki", + "kintarō ōki", + "kim tae-sik" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-30": { + "question": "대한민국에서 가장 유명한 육상 선수는 누구인가요?", + "en_question": "Who is the most famous track and field athlete in your country?", + "annotations": [ + { + "answers": [ + "손기정" + ], + "en_answers": [ + "sohn kee-chung" + ], + "count": 2 + }, + { + "answers": [ + "우상혁" + ], + "en_answers": [ + "woo sang-hyeok" + ], + "count": 1 + }, + { + "answers": [ + "우사인 볼트" + ], + "en_answers": [ + "usain bolt" + ], + "count": 1 + }, + { + "answers": [ + "장재근" + ], + "en_answers": [ + "jang jae-keun" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-31": { + "question": "대한민국에서 부모님들은 자녀가 어떤 직업을 가지길 가장 희망하나요?", + "en_question": "What job do parents most hope their children will pursue in your country?", + "annotations": [ + { + "answers": [ + "의사" + ], + "en_answers": [ + "doctor" + ], + "count": 4 + }, + { + "answers": [ + "변호사" + ], + "en_answers": [ + "lawyer" + ], + "count": 1 + }, + { + "answers": [ + "판사" + ], + "en_answers": [ + "judge" + ], + "count": 1 + }, + { + "answers": [ + "대기업 직장인" + ], + "en_answers": [ + "employee at a large corporation", + "employee at a conglomerate", + "employee at a major company", + "employee at a large company" + ], + "count": 1 + }, + { + "answers": [ + "검사" + ], + "en_answers": [ + "prosecutor" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-32": { + "question": "대한민국의 직장에서 사람들은 일반적으로 어떤 사무용 소프트웨어를 사용하나요?", + "en_question": "What office software do people typically use in the workplace in your country?", + "annotations": [ + { + "answers": [ + "엑셀" + ], + "en_answers": [ + "excel" + ], + "count": 3 + }, + { + "answers": [ + "워드" + ], + "en_answers": [ + "word" + ], + "count": 1 + }, + { + "answers": [ + "한글" + ], + "en_answers": [ + "hangul" + ], + "count": 1 + }, + { + "answers": [ + "마이크로소프트 365", + "오피스", + "마이크로소프트 오피스" + ], + "en_answers": [ + "microsoft office", + "microsoft 365" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-38": { + "question": "대한민국에서 수출입으로 유명한 도시나 지역은 어디인가요?", + "en_question": "Which cities or regions are known for their import and export activities in your country?", + "annotations": [ + { + "answers": [ + "부산" + ], + "en_answers": [ + "busan" + ], + "count": 3 + }, + { + "answers": [ + "인천" + ], + "en_answers": [ + "incheon" + ], + "count": 2 + }, + { + "answers": [ + "울산" + ], + "en_answers": [ + "ulsan" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-39": { + "question": "대한민국에서 전자상거래에 주로 사용되는 플랫폼은 무엇인가요?", + "en_question": "What platform is commonly used in the e-commerce industry in your country?", + "annotations": [ + { + "answers": [ + "쿠팡" + ], + "en_answers": [ + "coupang" + ], + "count": 3 + }, + { + "answers": [ + "당근", + "당근마켓" + ], + "en_answers": [ + "danggeun", + "daangn market" + ], + "count": 1 + }, + { + "answers": [ + "네이버" + ], + "en_answers": [ + "naver" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-44": { + "question": "대한민국에서 정식 계약을 체결하기 전 새로운 직원들에게 일반적으로 적용되는 수습 기간은 얼마나 됩니까? (예: 1개월).", + "en_question": "How long is the typical probation period for new employees before signing a formal contract in your country? (e.g., 1 month).", + "annotations": [ + { + "answers": [ + "3개월", + "3" + ], + "en_answers": [ + "3 months", + "three months" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-45": { + "question": "대한민국에서 청년들은 창업을 할 때 주로 어떤 산업을 선택하나요?", + "en_question": "Which industries do young people typically choose to start businesses in your country?", + "annotations": [ + { + "answers": [ + "요식업" + ], + "en_answers": [ + "restaurant business" + ], + "count": 2 + }, + { + "answers": [ + "it" + ], + "en_answers": [ + "information technology", + "it" + ], + "count": 2 + }, + { + "answers": [ + "서비스업" + ], + "en_answers": [ + "service industry" + ], + "count": 1 + }, + { + "answers": [ + "패스트푸드" + ], + "en_answers": [ + "fast food" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-49": { + "question": "대한민국에서 가족 구성원들끼리 원격으로 소통할 때 사용하는 가장 일반적인 방법은 무엇인가요?", + "en_question": "What is the most common way for family members to communicate remotely in your country?", + "annotations": [ + { + "answers": [ + "카카오톡", + "카톡" + ], + "en_answers": [ + "kakaotalk" + ], + "count": 4 + }, + { + "answers": [ + "전화", + "통화", + "전화통화" + ], + "en_answers": [ + "phone call", + "call" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-51": { + "question": "대한민국에서 가족 여행 시 보통 어떤 형태의 숙박시설을 예약하나요?", + "en_question": "What form of accommodation is typically booked for family trips in your country?", + "annotations": [ + { + "answers": [ + "펜션" + ], + "en_answers": [ + "pension", + "vacation cottage", + "lodge" + ], + "count": 3 + }, + { + "answers": [ + "호텔" + ], + "en_answers": [ + "hotel" + ], + "count": 3 + }, + { + "answers": [ + "리조트" + ], + "en_answers": [ + "resort" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-54": { + "question": "대한민국의 가족 저녁식사에 가장 흔히 등장히는 과일은 무엇인가요?", + "en_question": "Which fruit is usually prepared the most for family dinners in your country?", + "annotations": [ + { + "answers": [ + "사과" + ], + "en_answers": [ + "apple" + ], + "count": 3 + }, + { + "answers": [ + "딸기" + ], + "en_answers": [ + "strawberry" + ], + "count": 1 + }, + { + "answers": [ + "수박" + ], + "en_answers": [ + "watermelon" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-64": { + "question": "대힌민국의 대학생들은 일주일에 보통 수업을 몇 시간 듣나요? (아라비아 숫자(예: 1)만 기재해 주세요.)", + "en_question": "How many hours of classes do university students typically have per week in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 3 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + }, + { + "answers": [ + "16" + ], + "en_answers": [ + "16" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-66": { + "question": "대한민국 공립 고등학교의 한 학기당 평균 수업료는 얼마입니까? (아라비아 숫자(예: 1)만 기재해 주세요.)", + "en_question": "What is the typical tuition fee per semester for public high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 4 + }, + { + "answers": [ + "35만원", + "35", + "350,000", + "350000" + ], + "en_answers": [ + "350,000", + "350000", + "350 thousand won" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-70": { + "question": "대한민국 대학생들이 공통적으로 듣는 필수 과목은 무엇인가요?", + "en_question": "What compulsory courses do university students have in common in your country?", + "annotations": [ + { + "answers": [ + "영어", + "대학 영어" + ], + "en_answers": [ + "english", + "college english" + ], + "count": 3 + }, + { + "answers": [ + "글쓰기" + ], + "en_answers": [ + "writing" + ], + "count": 1 + }, + { + "answers": [ + "졸업 논문", + "학위논문" + ], + "en_answers": [ + "thesis", + "graduation thesis" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-71": { + "question": "대한민국 고등학교의 한 학급당 평균 학생 수는 몇 명인가요? (아라비아 숫자(예: 1)만 기재해 주세요.)", + "en_question": "What is the average class size in high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 2 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + }, + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-72": { + "question": "대한민국에서 어떤 전공이 취업에 가장 유리하다고 여겨지나요?", + "en_question": "Which major is considered most conducive to employment in your country?", + "annotations": [ + { + "answers": [ + "의예과", + "의대" + ], + "en_answers": [ + "medical school", + "college of medicine" + ], + "count": 3 + }, + { + "answers": [ + "컴퓨터공학과", + "컴퓨터 공학과" + ], + "en_answers": [ + "computer engineering", + "computer science and engineering" + ], + "count": 2 + }, + { + "answers": [ + "치의학과", + "치과대학", + "치의예과" + ], + "en_answers": [ + "dentistry", + "college of dentistry" + ], + "count": 1 + }, + { + "answers": [ + "한의학과" + ], + "en_answers": [ + "korean medicine", + "college of korean medicine" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-73": { + "question": "대한민국 대학생들 사이에서 어떤 동아리가 가장 인기 있나요?", + "en_question": "What type of clubs are most popular among university students in your country?", + "annotations": [ + { + "answers": [ + "밴드 동아리", + "밴드" + ], + "en_answers": [ + "band club", + "band" + ], + "count": 2 + }, + { + "answers": [ + "스포츠" + ], + "en_answers": [ + "sports" + ], + "count": 1 + }, + { + "answers": [ + "음악" + ], + "en_answers": [ + "music" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ch-74": { + "question": "대한민국 대학생들은 주로 어떤 유형의 거주지에 거주하나요?", + "en_question": "What types of accommodation do university students in your country typically live in?", + "annotations": [ + { + "answers": [ + "원룸" + ], + "en_answers": [ + "studio", + "studio apartment" + ], + "count": 3 + }, + { + "answers": [ + "부모님 집" + ], + "en_answers": [ + "parents' house" + ], + "count": 1 + }, + { + "answers": [ + "기숙사" + ], + "en_answers": [ + "dormitory" + ], + "count": 1 + }, + { + "answers": [ + "오피스텔" + ], + "en_answers": [ + "officetel", + "studio apartment" + ], + "count": 1 + }, + { + "answers": [ + "아파트" + ], + "en_answers": [ + "apartment" + ], + "count": 1 + }, + { + "answers": [ + "자가" + ], + "en_answers": [ + "own house" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-75": { + "question": "대한민국의 중학교 수업 한 교시는 총 몇 분인가요? (아라비아 숫자(예: 1)만 기재해 주세요.)", + "en_question": "How long is each class period for middle school students in your country (minutes)? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "45" + ], + "en_answers": [ + "45" + ], + "count": 3 + }, + { + "answers": [ + "50" + ], + "en_answers": [ + "50" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-78": { + "question": "대한민국에서 은퇴한 여성들이 일반적으로 즐겨하는 여가 활동은 무엇인가요?", + "en_question": "What leisure activities do retired women typically like in your country?", + "annotations": [ + { + "answers": [ + "등산" + ], + "en_answers": [ + "mountain climbing" + ], + "count": 2 + }, + { + "answers": [ + "요리" + ], + "en_answers": [ + "cooking" + ], + "count": 1 + }, + { + "answers": [ + "화투", + "고스톱", + "맞고", + "고도리" + ], + "en_answers": [ + "hwatu", + "go-stop", + "goseutop", + "matgo", + "godori" + ], + "count": 1 + }, + { + "answers": [ + "운동" + ], + "en_answers": [ + "exercise" + ], + "count": 1 + }, + { + "answers": [ + "요가" + ], + "en_answers": [ + "yoga" + ], + "count": 1 + }, + { + "answers": [ + "산책" + ], + "en_answers": [ + "walk" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-79": { + "question": "대한민국에서 은퇴한 남성들이 일반적으로 즐겨하는 여가 활동은 무엇인가요?", + "en_question": "What leisure activities do retired men typically like in your country?", + "annotations": [ + { + "answers": [ + "등산" + ], + "en_answers": [ + "mountain climbing" + ], + "count": 2 + }, + { + "answers": [ + "골프" + ], + "en_answers": [ + "golf" + ], + "count": 2 + }, + { + "answers": [ + "낚시" + ], + "en_answers": [ + "fishing" + ], + "count": 1 + }, + { + "answers": [ + "운동" + ], + "en_answers": [ + "exercise" + ], + "count": 1 + }, + { + "answers": [ + "티비보기" + ], + "en_answers": [ + "watching tv", + "watch tv" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-80": { + "question": "대한민국에선 대체로 어느 명절에 종교적인 장소(사찰, 교회 등)를 방문하나요?", + "en_question": "During which holidays do people typically visit religious sites (temples, churches, etc.) in your country?", + "annotations": [ + { + "answers": [ + "석가탄신일" + ], + "en_answers": [ + "buddha's birthday" + ], + "count": 3 + }, + { + "answers": [ + "설날" + ], + "en_answers": [ + "lunar new year" + ], + "count": 1 + }, + { + "answers": [ + "성탄절" + ], + "en_answers": [ + "christmas" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-ch-81": { + "question": "대한민국의 일반적인 집들이 선물은 무엇인가요?", + "en_question": "What are the typical housewarming gifts in your country?", + "annotations": [ + { + "answers": [ + "휴지", + "화장지", + "두루마리", + "티슈" + ], + "en_answers": [ + "toilet paper", + "tissue" + ], + "count": 5 + }, + { + "answers": [ + "디퓨저" + ], + "en_answers": [ + "diffuser" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-82": { + "question": "대한민국에서 결혼식은 보통 몇 시에 시작하나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)", + "en_question": "At what time do weddings typically start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 1 + }, + { + "answers": [ + "11:00" + ], + "en_answers": [ + "11:00" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 3, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-83": { + "question": "대한민국의 어느 도시에서 축제가 가장 많이 열리나요?", + "en_question": "Which city in your country hosts festivals the most?", + "annotations": [ + { + "answers": [ + "서울" + ], + "en_answers": [ + "seoul" + ], + "count": 5 + }, + { + "answers": [ + "제주도" + ], + "en_answers": [ + "jeju island", + "jejudo", + "jeju-do" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-84": { + "question": "대한민국 사람들은 결혼식에 참석할 때 보통 어떤 색깔의 옷을 입나요?", + "en_question": "What color of clothing do people typically wear when attending weddings in your country?", + "annotations": [ + { + "answers": [ + "검은색", + "검정색", + "검은" + ], + "en_answers": [ + "black" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 3, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-85": { + "question": "대한민국 사람들은 장례식에 참석할 때 보통 어떤 색깔의 옷을 입나요?", + "en_question": "What color of clothing do people typically wear when attending funerals in your country?", + "annotations": [ + { + "answers": [ + "검정", + "검은색", + "검정색", + "검은" + ], + "en_answers": [ + "black" + ], + "count": 5 + }, + { + "answers": [ + "하얀색", + "흰" + ], + "en_answers": [ + "white" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-01": { + "question": "대한민국 영화관에선 어떤 간식을 먹나요?", + "en_question": "Which snack is eaten in the cinema in your country?", + "annotations": [ + { + "answers": [ + "팝콘" + ], + "en_answers": [ + "popcorn" + ], + "count": 5 + }, + { + "answers": [ + "오징어" + ], + "en_answers": [ + "squid", + "grilled squid" + ], + "count": 1 + }, + { + "answers": [ + "핫도그" + ], + "en_answers": [ + "hot dog" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-02": { + "question": "대한민국에서 가장 인기 있는 감자칩 맛은 무엇인가요?", + "en_question": "What is the most popular chip/crisp flavour in your country?", + "annotations": [ + { + "answers": [ + "소금", + "오리지널" + ], + "en_answers": [ + "salt", + "original" + ], + "count": 3 + }, + { + "answers": [ + "어니언", + "양파" + ], + "en_answers": [ + "onion" + ], + "count": 2 + }, + { + "answers": [ + "허니버터", + "어니언맛", + "프링글스 어니언맛" + ], + "en_answers": [ + "honey butter", + "onion" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-04": { + "question": "대한민국에서 인기 있는 셀러브리티 셰프는 누구인가요?", + "en_question": "Who is a popular celebrity chef in your country?", + "annotations": [ + { + "answers": [ + "백종원" + ], + "en_answers": [ + "baek jong-won", + "paik jong-won" + ], + "count": 3 + }, + { + "answers": [ + "이연복" + ], + "en_answers": [ + "lee yeon-bok" + ], + "count": 2 + }, + { + "answers": [ + "최현석" + ], + "en_answers": [ + "choi hyun-seok" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-05": { + "question": "대한민국에서 가성비가 좋으며 빨리 먹을 수 있는 음식은 무엇인가요?", + "en_question": "Which food is a cost-effective and quick meal option in your country?", + "annotations": [ + { + "answers": [ + "라면" + ], + "en_answers": [ + "ramen", + "instant noodles" + ], + "count": 3 + }, + { + "answers": [ + "삼각김밥" + ], + "en_answers": [ + "triangular gimbap", + "triangular kimbap" + ], + "count": 1 + }, + { + "answers": [ + "햄버거" + ], + "en_answers": [ + "hamburger", + "burger" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-07": { + "question": "대한민국에서 가장 인기 있는 요리 프로그램은 무엇인가요?", + "en_question": "What are the most popular cooking shows in your country?", + "annotations": [ + { + "answers": [ + "냉장고를 부탁해" + ], + "en_answers": [ + "please take care of my refrigerator" + ], + "count": 2 + }, + { + "answers": [ + "백종원의 골목식당", + "골목식당" + ], + "en_answers": [ + "baek jong-won's alley restaurant", + "alley restaurant" + ], + "count": 1 + }, + { + "answers": [ + "신상출시 편스토랑", + "편스토랑" + ], + "en_answers": [ + "stars' top recipe at fun-staurant", + "fun-staurant" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-08": { + "question": "대한민국에서 가장 인기 있는 초콜릿 브랜드는 무엇인가요?", + "en_question": "What is the most popular chocolate brand in your country?", + "annotations": [ + { + "answers": [ + "가나" + ], + "en_answers": [ + "ghana" + ], + "count": 3 + }, + { + "answers": [ + "롯데" + ], + "en_answers": [ + "lotte" + ], + "count": 1 + }, + { + "answers": [ + "허쉬" + ], + "en_answers": [ + "hershey's" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-10": { + "question": "대한민국에선 어떤 치즈를 가장 많이 먹나요?", + "en_question": "What is the most eaten cheese in your country?", + "annotations": [ + { + "answers": [ + "모짜렐라", + "모짜렐라 치즈" + ], + "en_answers": [ + "mozzarella", + "mozzarella cheese" + ], + "count": 4 + }, + { + "answers": [ + "체다치즈" + ], + "en_answers": [ + "cheddar cheese", + "cheddar" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-11": { + "question": "대한민국에서 가장 인기 없는 채소는 무엇인가요?", + "en_question": "What is the most disliked vegetable in your country?", + "annotations": [ + { + "answers": [ + "고수" + ], + "en_answers": [ + "cilantro" + ], + "count": 2 + }, + { + "answers": [ + "당근" + ], + "en_answers": [ + "carrot" + ], + "count": 1 + }, + { + "answers": [ + "브로콜리" + ], + "en_answers": [ + "broccoli" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-12": { + "question": "대한민국의 푸드코트에서 가장 흔히 볼 수 있는 음식은 무엇인가요?", + "en_question": "What food is most commonly found in food courts in your country?", + "annotations": [ + { + "answers": [ + "돈까스" + ], + "en_answers": [ + "pork cutlet" + ], + "count": 2 + }, + { + "answers": [ + "햄버거" + ], + "en_answers": [ + "hamburger", + "burger" + ], + "count": 2 + }, + { + "answers": [ + "김밥" + ], + "en_answers": [ + "gimbap", + "kimbap" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-17": { + "question": "대한민국 스포츠 팬들이 가장 많이 사용하는 응원 도구는 무엇인가요?", + "en_question": "What are the most common cheering tools used by sports fans in your country?", + "annotations": [ + { + "answers": [ + "막대풍선" + ], + "en_answers": [ + "thundersticks", + "bambams" + ], + "count": 3 + }, + { + "answers": [ + "슬로건" + ], + "en_answers": [ + "slogan" + ], + "count": 1 + }, + { + "answers": [ + "클래퍼" + ], + "en_answers": [ + "clapper" + ], + "count": 1 + }, + { + "answers": [ + "핸드폰", + "폰", + "스마트폰" + ], + "en_answers": [ + "cell phone", + "phone", + "smart phone" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-18": { + "question": "대한민국에서 팬들이 경기를 보러 갈 때 무엇을 가지고 가나요?", + "en_question": "What do fans bring with them when attending a live game in your country?", + "annotations": [ + { + "answers": [ + "유니폼" + ], + "en_answers": [ + "uniform" + ], + "count": 2 + }, + { + "answers": [ + "태극기" + ], + "en_answers": [ + "taegeukgi", + "national flag" + ], + "count": 1 + }, + { + "answers": [ + "슬로건" + ], + "en_answers": [ + "slogan" + ], + "count": 1 + }, + { + "answers": [ + "간식" + ], + "en_answers": [ + "snack" + ], + "count": 1 + }, + { + "answers": [ + "응원봉" + ], + "en_answers": [ + "light stick" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-19": { + "question": "대한민국에서 가장 유명한 스포츠 경기장은 어디인가요?", + "en_question": "What is the most well known sporting stadium in your country?", + "annotations": [ + { + "answers": [ + "서울월드컵경기장", + "상암월드컵경기장", + "서울 월드컵 경기장", + "상암구장" + ], + "en_answers": [ + "seoul world cup stadium", + "sangam stadium" + ], + "count": 3 + }, + { + "answers": [ + "서울올림픽주경기장", + "서울 올림픽주경기장", + "잠실올림픽주경기장" + ], + "en_answers": [ + "seoul olympic stadium", + "jamsil olympic stadium" + ], + "count": 1 + }, + { + "answers": [ + "잠실야구장" + ], + "en_answers": [ + "jamsil baseball stadium" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-23": { + "question": "대한민국에서 가장 유명한 패럴림픽 선수는 누구인가요?", + "en_question": "Who is the most famous Paralympian in your country?", + "annotations": [], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-26": { + "question": "대한민국에서 가장 잘 알려진 스포츠 응원 구호는 무엇인가요?", + "en_question": "What is the best recognized sporting chant in your country?", + "annotations": [ + { + "answers": [ + "대~한민국 짝짝짝짝짝", + "대한민국", + "붉은악마 응원구호" + ], + "en_answers": [ + "dae han min guk", + "the great republic of korea" + ], + "count": 5 + }, + { + "answers": [ + "오 필승 코리아" + ], + "en_answers": [ + "oh, win at any cost, korea", + "oh, pilseung korea", + "oh! pilsung korea" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-38": { + "question": "대한민국에서 근무 시간이 유연한 것으로 알려진 산업은 어떤 것들이 있나요?", + "en_question": "Which industries are known for more flexible working hours in your country?", + "annotations": [ + { + "answers": [ + "it 기업", + "it", + "it기업" + ], + "en_answers": [ + "it company", + "information technology", + "it" + ], + "count": 3 + }, + { + "answers": [ + "프리랜서" + ], + "en_answers": [ + "freelancer" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-41": { + "question": "대한민국에서 가장 유명하고 성공적인 기업가는 누구인가요?", + "en_question": "Who is the most well known and successful entrepreneur in your country?", + "annotations": [ + { + "answers": [ + "이재용" + ], + "en_answers": [ + "lee jae-yong" + ], + "count": 4 + }, + { + "answers": [ + "정주영" + ], + "en_answers": [ + "chung ju-yung", + "jung joo-young" + ], + "count": 2 + }, + { + "answers": [ + "이건희" + ], + "en_answers": [ + "lee kun-hee" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-47": { + "question": "대한민국의 주택 뒷마당에서 흔히 발견되는 것은 무엇인가요?", + "en_question": "What can typically be found in the back garden of houses in your country?", + "annotations": [ + { + "answers": [ + "장독대", + "항아리" + ], + "en_answers": [ + "jangdokdae", + "jangttokttae", + "traditional earthen jars", + "hang-ari", + "traditional korean jar" + ], + "count": 2 + }, + { + "answers": [ + "화단" + ], + "en_answers": [ + "flower bed" + ], + "count": 1 + }, + { + "answers": [ + "주차장" + ], + "en_answers": [ + "parking lot" + ], + "count": 1 + }, + { + "answers": [ + "나무" + ], + "en_answers": [ + "tree" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-49": { + "question": "대한민국에서 가장 유명한 가문은 어디인가요?", + "en_question": "What is the name of the most famous family in your country?", + "annotations": [ + { + "answers": [ + "전주 이씨", + "전주이씨" + ], + "en_answers": [ + "jeonju yi clan" + ], + "count": 2 + }, + { + "answers": [ + "경주 이씨" + ], + "en_answers": [ + "gyoungju lee clan" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "New-en-50": { + "question": "대한민국에서 가장 흔한 성씨는 무엇인가요?", + "en_question": "What is the most common family name in your country?", + "annotations": [ + { + "answers": [ + "이", + "이씨" + ], + "en_answers": [ + "lee", + "yi" + ], + "count": 4 + }, + { + "answers": [ + "김", + "김씨", + "김 씨" + ], + "en_answers": [ + "kim", + "gim" + ], + "count": 3 + }, + { + "answers": [ + "박", + "박씨" + ], + "en_answers": [ + "park", + "bak" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-55": { + "question": "대한민국의 가정에서 가장 흔히 믿는 종교는 무엇인가요?", + "en_question": "Which religion is most commonly practiced by families in your country?", + "annotations": [ + { + "answers": [ + "기독교" + ], + "en_answers": [ + "christianity", + "christian" + ], + "count": 3 + }, + { + "answers": [ + "불교" + ], + "en_answers": [ + "buddhism", + "buddhist" + ], + "count": 3 + }, + { + "answers": [ + "천주교" + ], + "en_answers": [ + "catholicism", + "catholic" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-56": { + "question": "대한민국의 가정에서 어떤 외국어가 가장 많이 사용되나요?", + "en_question": "What is the most popular foreign language spoken by families in your country?", + "annotations": [ + { + "answers": [ + "영어" + ], + "en_answers": [ + "english" + ], + "count": 3 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "New-en-59": { + "question": "대한민국에서 가족 단위로 이민 가기에 가장 인기 있는 나라는 어디인가요?", + "en_question": "Which country is the most popular destination for families from your country to emigrate to?", + "annotations": [ + { + "answers": [ + "캐나다" + ], + "en_answers": [ + "canada" + ], + "count": 4 + }, + { + "answers": [ + "미국" + ], + "en_answers": [ + "usa", + "us", + "united states" + ], + "count": 2 + }, + { + "answers": [ + "호주" + ], + "en_answers": [ + "australia" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-68": { + "question": "대한민국 학교에서 부적절한 행동을 할 경우 어떤 조치가 취해지나요?", + "en_question": "What repercussions are there for bad behavior in schools in your country?", + "annotations": [ + { + "answers": [ + "정학" + ], + "en_answers": [ + "school suspension" + ], + "count": 2 + }, + { + "answers": [ + "강제 전학", + "전학" + ], + "en_answers": [ + "forced transfer", + "forceful transfer of schools", + "school transfer" + ], + "count": 2 + }, + { + "answers": [ + "학부모 면담", + "부모님면담", + "학부모 상담", + "부모 상담" + ], + "en_answers": [ + "parent-teacher conference", + "parent-teacher meeting" + ], + "count": 2 + }, + { + "answers": [ + "퇴학" + ], + "en_answers": [ + "expulsion" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-69": { + "question": "대한민국의 문학 수업에서 주로 배우는 작가는 누구인가요?", + "en_question": "Which writers are commonly studied in literature class in your country?", + "annotations": [ + { + "answers": [ + "윤동주" + ], + "en_answers": [ + "yun dong-ju", + "yoon dong-ju" + ], + "count": 2 + }, + { + "answers": [ + "이육사" + ], + "en_answers": [ + "yi yuksa", + "yi won-rok", + "lee yuk-sa" + ], + "count": 1 + }, + { + "answers": [ + "김유정" + ], + "en_answers": [ + "gim yujeong", + "kim yu-jŏng", + "kim yujeong", + "kim you-jeong", + "gim you-jeong" + ], + "count": 1 + }, + { + "answers": [ + "박경리" + ], + "en_answers": [ + "pak kyongni", + "bak kyoungli", + "pak kyong-ni" + ], + "count": 1 + }, + { + "answers": [ + "김소월" + ], + "en_answers": [ + "kim sowol", + "kim so-wol" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-70": { + "question": "대한민국의 고등학교에는 1년에 방학이 총 몇 번 있나요? (아라비아 숫자(예: 1)만 기재해 주세요.)", + "en_question": "How many school breaks are there in a year for high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 3 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-72": { + "question": "대한민국 학생들이 공부할 때 주로 사용하는 온라인 웹사이트는 무엇인가요?", + "en_question": "Which online resource do students usually use to study in your country?", + "annotations": [ + { + "answers": [ + "ebs" + ], + "en_answers": [ + "ebs", + "educational broadcasting system" + ], + "count": 3 + }, + { + "answers": [ + "메가스터디" + ], + "en_answers": [ + "megastudy" + ], + "count": 2 + }, + { + "answers": [ + "인강 사이트" + ], + "en_answers": [ + "online lecture site", + "online class site" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-75": { + "question": "대한민국 대학교는 한 학기에 몇 주 동안 수업하나요? (아라비아 숫자(예: 1)만 기재해 주세요.)", + "en_question": "What is the average length of a semester in terms of weeks of teaching at universities in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "16" + ], + "en_answers": [ + "16" + ], + "count": 4 + }, + { + "answers": [ + "14" + ], + "en_answers": [ + "14" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-76": { + "question": "대한민국 명절 시즌에 가장 붐비는 공항은 어디인가요?", + "en_question": "Which airport in your country is the busiest during the holiday season?", + "annotations": [ + { + "answers": [ + "인천국제공항", + "인천공항", + "인천 공항", + "인천" + ], + "en_answers": [ + "incheon international airport" + ], + "count": 5 + }, + { + "answers": [ + "김포국제공항", + "김포공항" + ], + "en_answers": [ + "gimpo international airport" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-79": { + "question": "대한민국 어느 지역이 연극으로 잘 알려져 있습니까?", + "en_question": "Which region of your country is well known for its theatrical performances?", + "annotations": [ + { + "answers": [ + "혜화", + "혜화동" + ], + "en_answers": [ + "hyehwa", + "hyehwa-dong" + ], + "count": 4 + }, + { + "answers": [ + "서울" + ], + "en_answers": [ + "seoul" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-87": { + "question": "대한민국에서 어떤 역사적 명소가 가장 유명한가요?", + "en_question": "What is the most famous historic landmark in your country?", + "annotations": [ + { + "answers": [ + "경복궁" + ], + "en_answers": [ + "gyeongbokgung palace" + ], + "count": 4 + }, + { + "answers": [ + "경주역사유적지구", + "경주" + ], + "en_answers": [ + "gyeongju historic areas", + "gyeongju" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-90": { + "question": "대한민국에서 어떤 호텔 브랜드가 가장 유명한가요?", + "en_question": "What is the most famous hotel brand in your country?", + "annotations": [ + { + "answers": [ + "서울신라호텔", + "신라호텔", + "신라", + "더 신라" + ], + "en_answers": [ + "the shilla seoul", + "the shilla" + ], + "count": 5 + }, + { + "answers": [ + "웨스틴 조선 서울", + "조선호텔", + "조선 호텔" + ], + "en_answers": [ + "the westin josun seoul" + ], + "count": 1 + }, + { + "answers": [ + "롯데호텔" + ], + "en_answers": [ + "lotte hotel" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-05": { + "question": "대한민국에서 아침에 간편하게 포장해서 먹을 수 있는 것 중 가장 인기 있는 것은?", + "en_question": "What is the most popular grab-and-go breakfast option in your country?", + "annotations": [ + { + "answers": [ + "샌드위치" + ], + "en_answers": [ + "sandwich" + ], + "count": 3 + }, + { + "answers": [ + "김밥" + ], + "en_answers": [ + "gimbap", + "kimbap" + ], + "count": 2 + }, + { + "answers": [ + "삼각김밥" + ], + "en_answers": [ + "triangular gimbap", + "triangular kimbap" + ], + "count": 1 + }, + { + "answers": [ + "토스트" + ], + "en_answers": [ + "toast" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-06": { + "question": "대한민국의 젊은 층에게 가장 인기 있는 음식은 무엇인가요?", + "en_question": "What is the most popular food in your country among young people?", + "annotations": [ + { + "answers": [ + "마라탕" + ], + "en_answers": [ + "spicy hot pot", + "malatang" + ], + "count": 2 + }, + { + "answers": [ + "떡볶이", + "떡복이" + ], + "en_answers": [ + "stir-fried rice cakes", + "tteokbokki", + "topokki", + "rice cakes in hot sauce" + ], + "count": 2 + }, + { + "answers": [ + "탕후루" + ], + "en_answers": [ + "tanghulu" + ], + "count": 1 + }, + { + "answers": [ + "치킨" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-08": { + "question": "대한민국의 축제에서 가장 흔히 마시는 술은 무엇인가요?", + "en_question": "What type of alcoholic drink is most commonly consumed at festivals in your country?", + "annotations": [ + { + "answers": [ + "소주" + ], + "en_answers": [ + "soju" + ], + "count": 3 + }, + { + "answers": [ + "맥주" + ], + "en_answers": [ + "beer" + ], + "count": 3 + }, + { + "answers": [ + "막걸리" + ], + "en_answers": [ + "makgeolli", + "raw rice wine", + "makkoli" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-13": { + "question": "대한민국에서 아침에 가장 흔히 마시는 음료는 무엇인가요?", + "en_question": "What is the most common morning drink in your country?", + "annotations": [ + { + "answers": [ + "커피" + ], + "en_answers": [ + "coffee" + ], + "count": 4 + }, + { + "answers": [ + "우유" + ], + "en_answers": [ + "milk" + ], + "count": 1 + }, + { + "answers": [ + "주스" + ], + "en_answers": [ + "juice" + ], + "count": 1 + }, + { + "answers": [ + "물" + ], + "en_answers": [ + "water" + ], + "count": 1 + }, + { + "answers": [ + "아메리카노" + ], + "en_answers": [ + "americano" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-15": { + "question": "대한민국에서 가장 인기 있는 전통 디저트는 무엇입니까?", + "en_question": "What is the most popular traditional dessert in your country?", + "annotations": [ + { + "answers": [ + "약과" + ], + "en_answers": [ + "yakgwa", + "gwajul", + "honey cookie" + ], + "count": 3 + }, + { + "answers": [ + "떡" + ], + "en_answers": [ + "rice cake", + "tteok" + ], + "count": 2 + }, + { + "answers": [ + "유과" + ], + "en_answers": [ + "yugwa" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-21": { + "question": "대한민국에서 가장 인기 있는 라켓 스포츠는 무엇입니까?", + "en_question": "What is the most popular racket sport in your country?", + "annotations": [ + { + "answers": [ + "배드민턴" + ], + "en_answers": [ + "badminton" + ], + "count": 4 + }, + { + "answers": [ + "테니스" + ], + "en_answers": [ + "tennis" + ], + "count": 2 + }, + { + "answers": [ + "탁구" + ], + "en_answers": [ + "table tennis" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-24": { + "question": "대한민국에서 가장 인기 있는 육상 경기 종목은 무엇입니까?", + "en_question": "What is the most popular track and field sport in your country?", + "annotations": [ + { + "answers": [ + "마라톤" + ], + "en_answers": [ + "marathon" + ], + "count": 3 + }, + { + "answers": [ + "100미터 달리기", + "100m 달리기" + ], + "en_answers": [ + "100 metres", + "100-meter dash" + ], + "count": 3 + }, + { + "answers": [ + "장대높이뛰기" + ], + "en_answers": [ + "pole vault" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-29": { + "question": "대한민국에서 가장 인기 있는 국제 스포츠 대회는 무엇인가요?", + "en_question": "Which international sporting event is the most popular in your country?", + "annotations": [ + { + "answers": [ + "fifa 월드컵", + "월드컵", + "월드컵축구" + ], + "en_answers": [ + "fifa world cup", + "world cup" + ], + "count": 4 + }, + { + "answers": [ + "올림픽" + ], + "en_answers": [ + "olympic games", + "olympics" + ], + "count": 2 + }, + { + "answers": [ + "아시안 게임", + "아시안게임" + ], + "en_answers": [ + "asian games" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-47": { + "question": "대한민국의 직장에서 점심과 저녁 시간을 제외한 일반적인 휴식 시간은 몇 분인가요? (아라비아 숫자(예: 1)만 기재해 주세요.)", + "en_question": "How long (in minutes) are typical work breaks in your country, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 2 + }, + { + "answers": [ + "0.5" + ], + "en_answers": [ + "0.5" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 0 + } + }, + "New-gr-58": { + "question": "대한민국에서는 어떤 직업이 하는 일에 비해 제대로 된 보수를 받지 못한다고 여겨지나요?", + "en_question": "Which job is considered underpaid in your country?", + "annotations": [ + { + "answers": [ + "소방관" + ], + "en_answers": [ + "firefighter" + ], + "count": 2 + }, + { + "answers": [ + "경찰" + ], + "en_answers": [ + "police" + ], + "count": 1 + }, + { + "answers": [ + "군인" + ], + "en_answers": [ + "soldier" + ], + "count": 1 + }, + { + "answers": [ + "서비스직" + ], + "en_answers": [ + "customer service" + ], + "count": 1 + }, + { + "answers": [ + "청소노동자", + "청소용역노동자", + "청소부", + "환경미화원" + ], + "en_answers": [ + "cleaner", + "cleaning operative" + ], + "count": 1 + }, + { + "answers": [ + "공무원" + ], + "en_answers": [ + "public official", + "public servant", + "civil servant", + "government official", + "government employee", + "public worker" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-gr-76": { + "question": "대한민국에서 부활절에 가장 흔히 제공되는 음식은 무엇인가요?", + "en_question": "What is the most common food served during Easter in your country?", + "annotations": [ + { + "answers": [ + "달걀", + "삶은 계란", + "삶은계란" + ], + "en_answers": [ + "egg", + "boiled egg" + ], + "count": 4 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-gr-82": { + "question": "대한민국의 노년층에게 가장 인기 있는 음악 장르는 무엇인가요?", + "en_question": "What is the most popular music genre among the elderly population in your country?", + "annotations": [ + { + "answers": [ + "트로트" + ], + "en_answers": [ + "trot" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-88": { + "question": "대한민국의 장례식에서 흔히 제공되는 음료나 술은 무엇인가요?", + "en_question": "What drink is usually offered at funerals in your country?", + "annotations": [ + { + "answers": [ + "소주" + ], + "en_answers": [ + "soju" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-89": { + "question": "대한민국의 결혼식에서 흔히 제공되는 음료나 술은 무엇인가요?", + "en_question": "What drink is usually offered at weddings in your country?", + "annotations": [ + { + "answers": [ + "맥주" + ], + "en_answers": [ + "beer" + ], + "count": 2 + }, + { + "answers": [ + "샴페인" + ], + "en_answers": [ + "champagne" + ], + "count": 1 + }, + { + "answers": [ + "콜라" + ], + "en_answers": [ + "cola", + "coke" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ha-07": { + "question": "전 세계에서 찾을 수 있는 대한민국의 음식은 무엇이 있나요?", + "en_question": "What food originated from your country and can be found all over the world?", + "annotations": [ + { + "answers": [ + "삼겹살" + ], + "en_answers": [ + "pork belly" + ], + "count": 3 + }, + { + "answers": [ + "치킨" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "김치" + ], + "en_answers": [ + "kimchi" + ], + "count": 1 + }, + { + "answers": [ + "김밥" + ], + "en_answers": [ + "gimbap", + "kimbap" + ], + "count": 1 + }, + { + "answers": [ + "불고기" + ], + "en_answers": [ + "bulgogi" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-08": { + "question": "대한민국에서 어린이들이 대체로 싫어하지만 노인들이 즐기는 음식은 무엇이 있나요?", + "en_question": "What food is typically disliked by children but enjoyed by the elderly in your country?", + "annotations": [ + { + "answers": [ + "나물" + ], + "en_answers": [ + "seasoned vegetable", + "stir-fried vegetables", + "sautéed vegetables" + ], + "count": 2 + }, + { + "answers": [ + "삼계탕" + ], + "en_answers": [ + "samgyetang", + "samgye-tang", + "ginseng chicken soup" + ], + "count": 1 + }, + { + "answers": [ + "해장국" + ], + "en_answers": [ + "hangover soup", + "haejang-guk", + "haejangguk" + ], + "count": 1 + }, + { + "answers": [ + "도토리묵" + ], + "en_answers": [ + "acorn jelly", + "dotori-muk", + "dotorimuk" + ], + "count": 1 + }, + { + "answers": [ + "곰탕", + "곰국" + ], + "en_answers": [ + "gomguk", + "gomtang", + "beef bone soup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-09": { + "question": "대한민국에서 가장 흔히 사용되는 조리 도구는 무엇입니까?", + "en_question": "What cooking utensil is most commonly used in your country?", + "annotations": [ + { + "answers": [ + "주걱" + ], + "en_answers": [ + "spatula" + ], + "count": 2 + }, + { + "answers": [ + "젓가락" + ], + "en_answers": [ + "chopsticks" + ], + "count": 1 + }, + { + "answers": [ + "뒤집개" + ], + "en_answers": [ + "spatula", + "flipper" + ], + "count": 1 + }, + { + "answers": [ + "냄비" + ], + "en_answers": [ + "pot" + ], + "count": 1 + }, + { + "answers": [ + "밥솥" + ], + "en_answers": [ + "rice cooker" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-13": { + "question": "대한민국에서 가장 인기 있는 채소는 무엇입니까?", + "en_question": "Which is the most popular vegetable in your country?", + "annotations": [ + { + "answers": [ + "배추" + ], + "en_answers": [ + "cabbage" + ], + "count": 4 + }, + { + "answers": [ + "상추" + ], + "en_answers": [ + "lettuce" + ], + "count": 1 + }, + { + "answers": [ + "깻잎" + ], + "en_answers": [ + "perilla leaves", + "korean perilla" + ], + "count": 1 + }, + { + "answers": [ + "시금치" + ], + "en_answers": [ + "spinach" + ], + "count": 1 + }, + { + "answers": [ + "무" + ], + "en_answers": [ + "radish" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-19": { + "question": "대한민국에서 스포츠에 사용되는 동물은 무엇인가요?", + "en_question": "Which animal is used for sports in your country?", + "annotations": [ + { + "answers": [ + "말" + ], + "en_answers": [ + "horse" + ], + "count": 4 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-ha-66": { + "question": "대한민국에서 가장 인기 있는 결혼식 장소는 어디인가요?", + "en_question": "What is the most popular wedding venue in your country?", + "annotations": [ + { + "answers": [ + "예식장" + ], + "en_answers": [ + "wedding hall" + ], + "count": 3 + }, + { + "answers": [ + "호텔" + ], + "en_answers": [ + "hotel" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-01": { + "question": "대한민국에서 가장 인기 있는 커피전문점 브랜드는 무엇입니까?", + "en_question": "Which coffee shop brand is the most popular in your country?", + "annotations": [ + { + "answers": [ + "스타벅스" + ], + "en_answers": [ + "starbucks" + ], + "count": 5 + }, + { + "answers": [ + "메가커피" + ], + "en_answers": [ + "mega coffee" + ], + "count": 2 + }, + { + "answers": [ + "투썸플레이스" + ], + "en_answers": [ + "a twosome place" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-03": { + "question": "해외 식당에서 주로 판매되는 대한민국 음식은 무엇인가요?", + "en_question": "What type of food from your country is typically served in restaurants overseas?", + "annotations": [ + { + "answers": [ + "삼겹살" + ], + "en_answers": [ + "pork belly" + ], + "count": 2 + }, + { + "answers": [ + "불고기" + ], + "en_answers": [ + "bulgogi" + ], + "count": 2 + }, + { + "answers": [ + "치킨" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "비빔밥" + ], + "en_answers": [ + "bibimbap" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-33": { + "question": "대한민국에서 광업과 관련된 지역은 보통 어디인가요?", + "en_question": "What region in your country is usually associated with mining?", + "annotations": [ + { + "answers": [ + "강원도" + ], + "en_answers": [ + "gangwon-do", + "gangwon province" + ], + "count": 2 + }, + { + "answers": [ + "포항" + ], + "en_answers": [ + "pohang" + ], + "count": 1 + }, + { + "answers": [ + "태백" + ], + "en_answers": [ + "taebaek" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-34": { + "question": "대한민국에서 석유와 관련된 지역은 보통 어디인가요?", + "en_question": "What region in your country is usually associated with oil?", + "annotations": [ + { + "answers": [ + "인천" + ], + "en_answers": [ + "incheon" + ], + "count": 1 + }, + { + "answers": [ + "창원" + ], + "en_answers": [ + "changwon" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 0, + "no-answer": 0 + } + }, + "New-in-62": { + "question": "대한민국에서 어느 대학이 공학 전공으로 인기 있나요? (공식 명칭을 제공해 주세요.)", + "en_question": "What university in your country is popular because of its engineering major? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "카이스트", + "kaist", + "한국과학기술원" + ], + "en_answers": [ + "kaist", + "korea advanced institute of science and technology" + ], + "count": 5 + }, + { + "answers": [ + "서울대학교" + ], + "en_answers": [ + "seoul national university" + ], + "count": 1 + }, + { + "answers": [ + "포항공과대학교", + "포스텍" + ], + "en_answers": [ + "pohang university of science and technology", + "postech" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-63": { + "question": "대한민국에서 어느 대학이 의학 전공으로 인기 있나요? (공식 명칭을 제공해 주세요.)", + "en_question": "What university in your country is popular because of its school of medicine? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "서울대학교", + "서울대" + ], + "en_answers": [ + "seoul national university", + "snu" + ], + "count": 5 + }, + { + "answers": [ + "연세대학교" + ], + "en_answers": [ + "yonsei university" + ], + "count": 1 + }, + { + "answers": [ + "성균관대학교" + ], + "en_answers": [ + "sungkyunkwan university" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-78": { + "question": "대한민국에서 가장 흔히 쓰이는 결제 방법은 무엇인가요?", + "en_question": "What is the most popular payment method in your country?", + "annotations": [ + { + "answers": [ + "카드" + ], + "en_answers": [ + "card" + ], + "count": 4 + }, + { + "answers": [ + "신용카드" + ], + "en_answers": [ + "credit card" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-80": { + "question": "대한민국에서 어느 놀이공원이 가장 유명한가요?", + "en_question": "What is the most famous theme park in your country?", + "annotations": [ + { + "answers": [ + "에버랜드" + ], + "en_answers": [ + "everland" + ], + "count": 4 + }, + { + "answers": [ + "롯데월드" + ], + "en_answers": [ + "lotte world" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-01": { + "question": "대한민국의 어린이들이 가장 많이 보는 인기 어린이 애니메이션은 무엇인가요?", + "en_question": "What is the most popular children's animation that is commonly watched by kids in your country?", + "annotations": [ + { + "answers": [ + "뽀로로" + ], + "en_answers": [ + "pororo" + ], + "count": 3 + }, + { + "answers": [ + "캐치! 티니핑" + ], + "en_answers": [ + "catch! teenieping" + ], + "count": 1 + }, + { + "answers": [ + "신비아파트" + ], + "en_answers": [ + "the haunted house", + "shinbi's haunted house" + ], + "count": 1 + }, + { + "answers": [ + "안녕 자두야", + "안녕자두야" + ], + "en_answers": [ + "hello jadoo" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-02": { + "question": "대한민국에서 임산부들이 가장 많이 하는 태교 활동은 무엇인가요?", + "en_question": "What is the most popular prenatal education activity for pregnant women in your country?", + "annotations": [ + { + "answers": [ + "음악 감상", + "노래 태교", + "음악듣기", + "음악" + ], + "en_answers": [ + "listening to music", + "prenatal education through music", + "music" + ], + "count": 4 + }, + { + "answers": [ + "동요 듣기" + ], + "en_answers": [ + "listen to children's songs" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-03": { + "question": "대한민국에서 가족 모두가 함께 부를 수 있는 가장 인기 있는 동요는 무엇인가요?", + "en_question": "What is the most popular children's song in your country that families sing together?", + "annotations": [ + { + "answers": [ + "곰 세 마리", + "곰세마리" + ], + "en_answers": [ + "three bears" + ], + "count": 3 + }, + { + "answers": [ + "학교 종이 땡떙땡" + ], + "en_answers": [ + "school bell's ringing ding ding dong", + "the school bell rings ding dong ding" + ], + "count": 1 + }, + { + "answers": [ + "아빠 힘내세요" + ], + "en_answers": [ + "cheer up, dad", + "daddy, cheer up", + "daddy cheer up" + ], + "count": 1 + }, + { + "answers": [ + "아기상어" + ], + "en_answers": [ + "baby shark" + ], + "count": 1 + }, + { + "answers": [ + "짝짜꿍", + "짝짝궁", + "짝짝꿍" + ], + "en_answers": [ + "clap clap" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-04": { + "question": "대한민국 남자아이들 사이에서 가장 인기 있는 장난감은 무엇인가요?", + "en_question": "Which toys are most popular among boys in your country?", + "annotations": [ + { + "answers": [ + "로봇", + "로보트" + ], + "en_answers": [ + "robot" + ], + "count": 3 + }, + { + "answers": [ + "레고" + ], + "en_answers": [ + "lego" + ], + "count": 2 + }, + { + "answers": [ + "공룡" + ], + "en_answers": [ + "dinosaur" + ], + "count": 1 + }, + { + "answers": [ + "자동차" + ], + "en_answers": [ + "car" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-05": { + "question": "대한민국 여자아이들 사이에서 가장 인기 있는 장난감은 무엇인가요?", + "en_question": "Which toys are most popular among girls in your country?", + "annotations": [ + { + "answers": [ + "인형" + ], + "en_answers": [ + "doll" + ], + "count": 3 + }, + { + "answers": [ + "소꿉놀이 세트", + "소꿉놀이" + ], + "en_answers": [ + "playing house set", + "play grown up set", + "play house set", + "playing house", + "play grown up", + "play house" + ], + "count": 2 + }, + { + "answers": [ + "레고" + ], + "en_answers": [ + "lego" + ], + "count": 1 + }, + { + "answers": [ + "바비 인형", + "바비" + ], + "en_answers": [ + "barbie doll", + "barbie" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-06": { + "question": "대한민국에서 아이들에게 가장 많이 들려주는 유명한 전래동화는 무엇인가요?", + "en_question": "What is the most popular folk tale in your country that is typically told to children?", + "annotations": [ + { + "answers": [ + "흥부와 놀부", + "흥부놀부", + "흥부와놀부" + ], + "en_answers": [ + "heungbu and nolbu" + ], + "count": 2 + }, + { + "answers": [ + "해와 달이 된 오누이" + ], + "en_answers": [ + "the brother and the sister who became the sun and the moon", + "the sun and the moon" + ], + "count": 1 + }, + { + "answers": [ + "혹부리 영감" + ], + "en_answers": [ + "a man with a huge lump on his face", + "the wenny old man", + "the old bumpy men" + ], + "count": 1 + }, + { + "answers": [ + "선녀와 나무꾼" + ], + "en_answers": [ + "the fairy and the woodcutter" + ], + "count": 1 + }, + { + "answers": [ + "콩쥐팥쥐" + ], + "en_answers": [ + "kongjwi and patjwi", + "kongji and patzzi", + "kong-jwi pat-jwi", + "kongji patji", + "kongjwi patjwi" + ], + "count": 1 + }, + { + "answers": [ + "토끼와거북이" + ], + "en_answers": [ + "the hare and the tortoise", + "the tortoise and the hare" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-07": { + "question": "대한민국 장례식에서 애도를 상징하는 것은 무엇인가요?", + "en_question": "What is the customary symbol of condolence used at funerals in your country?", + "annotations": [ + { + "answers": [ + "국화꽃", + "국화" + ], + "en_answers": [ + "chrysanthemum" + ], + "count": 4 + }, + { + "answers": [ + "향" + ], + "en_answers": [ + "incense", + "burn incense" + ], + "count": 1 + }, + { + "answers": [ + "백합" + ], + "en_answers": [ + "lily" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-08": { + "question": "대한민국 대학생들은 주로 어디에서 아르바이트를 가장 많이 하나요?", + "en_question": "Where do university students in your country tend to work part-time the most?", + "annotations": [ + { + "answers": [ + "카페" + ], + "en_answers": [ + "cafe" + ], + "count": 4 + }, + { + "answers": [ + "편의점" + ], + "en_answers": [ + "convenience store" + ], + "count": 1 + }, + { + "answers": [ + "요식업장" + ], + "en_answers": [ + "restaurant" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-09": { + "question": "대한민국 회사에서 가장 많이 하는 팀 빌딩 활동은 무엇인가요?", + "en_question": "What are the most frequently practiced team-building activities in companies based in your country?", + "annotations": [ + { + "answers": [ + "야유회" + ], + "en_answers": [ + "picnic", + "outing" + ], + "count": 2 + }, + { + "answers": [ + "회식" + ], + "en_answers": [ + "company dinner" + ], + "count": 2 + }, + { + "answers": [ + "아이스 브레이킹" + ], + "en_answers": [ + "ice breaking" + ], + "count": 1 + }, + { + "answers": [ + "워크샵" + ], + "en_answers": [ + "workshop" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ko-10": { + "question": "대한민국에서 사람들이 가장 많이 하는 부업은 무엇인가요?", + "en_question": "What are the most common activities people do as a side job in your country?", + "annotations": [ + { + "answers": [ + "대리운전" + ], + "en_answers": [ + "designated driver" + ], + "count": 3 + }, + { + "answers": [ + "주식" + ], + "en_answers": [ + "stock" + ], + "count": 2 + }, + { + "answers": [ + "알바" + ], + "en_answers": [ + "part-time job" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-02": { + "question": "대한민국에서 관광객들에게 가장 유명한 먹거리 기념품은 무엇인가요?", + "en_question": "What is the most famous edible souvenir for tourists in your country?", + "annotations": [ + { + "answers": [ + "약과", + "과줄" + ], + "en_answers": [ + "yakgwa", + "gwajul", + "honey cookie" + ], + "count": 2 + }, + { + "answers": [ + "hbaf 아몬드" + ], + "en_answers": [ + "hbaf almond", + "hbaf" + ], + "count": 1 + }, + { + "answers": [ + "십원빵" + ], + "en_answers": [ + "coin bread", + "10-won bread", + "sibwonppang", + "ten-won bread" + ], + "count": 1 + }, + { + "answers": [ + "김" + ], + "en_answers": [ + "gim", + "dried seaweed" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-06": { + "question": "대한민국에서 가장 인기 있는 찌개 종류는 무엇인가요?", + "en_question": "What is the most popular stew in your country?", + "annotations": [ + { + "answers": [ + "김치찌개" + ], + "en_answers": [ + "kimchi stew", + "kimchi-jjigae", + "kimchijjigae" + ], + "count": 5 + }, + { + "answers": [ + "된장찌개" + ], + "en_answers": [ + "soybean paste stew", + "doenjang-jjigae", + "doenjangjjigae" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-11": { + "question": "대한민국 요리에서 가장 많이 사용되는 향신료/허브는 무엇인가요?", + "en_question": "What is the most common spice/herb used in dishes from your country?", + "annotations": [ + { + "answers": [ + "마늘" + ], + "en_answers": [ + "garlic" + ], + "count": 3 + }, + { + "answers": [ + "고추" + ], + "en_answers": [ + "chili pepper", + "red pepper", + "hot pepper", + "chili" + ], + "count": 2 + }, + { + "answers": [ + "깻잎" + ], + "en_answers": [ + "perilla leaves", + "korean perilla" + ], + "count": 1 + }, + { + "answers": [ + "후추" + ], + "en_answers": [ + "black pepper" + ], + "count": 1 + }, + { + "answers": [ + "고춧가루", + "고추가루" + ], + "en_answers": [ + "red pepper powder", + "chili powder" + ], + "count": 1 + }, + { + "answers": [ + "후추가루" + ], + "en_answers": [ + "ground black pepper" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-16": { + "question": "대한민국에서 가장 유명한 전통 스포츠는 무엇인가요?", + "en_question": "What is the most famous traditional sport in your country?", + "annotations": [ + { + "answers": [ + "씨름" + ], + "en_answers": [ + "ssireum", + "traditional korean wrestling", + "ssirum" + ], + "count": 3 + }, + { + "answers": [ + "태권도" + ], + "en_answers": [ + "taekwondo" + ], + "count": 2 + }, + { + "answers": [ + "양궁" + ], + "en_answers": [ + "archery" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-20": { + "question": "대한민국에서 해변에서 할 수 있는 스포츠 중 가장 인기 있는 것은 무엇인가요?", + "en_question": "What sport is popular to play on the beach in your country?", + "annotations": [ + { + "answers": [ + "서핑", + "써핑" + ], + "en_answers": [ + "surfing" + ], + "count": 4 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-pe-45": { + "question": "일반적으로 라마단 기간 동안 대한민국에서의 근무 시간은 어떻게 되나요?", + "en_question": "What is the usual work schedule during the month of Ramadan in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "no-answer": 1, + "idk": 0 + } + }, + "New-pe-47": { + "question": "대한민국에서의 학생의 날은 언제인가요? (MM/DD 형식(예: 12/31)으로 제공하세요.)", + "en_question": "When is Student's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [], + "idks": { + "not-applicable": 3, + "no-answer": 1, + "idk": 1 + } + }, + "New-pe-49": { + "question": "대한민국에서 가족들이 함께 모여 기도하는 곳은 어디인가요?", + "en_question": "Where do families gather to pray together in your country?", + "annotations": [ + { + "answers": [ + "종교시설" + ], + "en_answers": [ + "religious facilities" + ], + "count": 1 + }, + { + "answers": [ + "교회" + ], + "en_answers": [ + "church" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 0, + "no-answer": 0 + } + }, + "New-pe-53": { + "question": "대한민국에서 아버지의 날(혹은 어버이날)에 아버지들은 어떤 선물을 받나요?", + "en_question": "What gifts do fathers get on Father's Day (or Parents' Day) in your country?", + "annotations": [ + { + "answers": [ + "용돈", + "돈" + ], + "en_answers": [ + "allowance", + "money" + ], + "count": 4 + }, + { + "answers": [ + "카네이션" + ], + "en_answers": [ + "carnation" + ], + "count": 2 + }, + { + "answers": [ + "편지" + ], + "en_answers": [ + "letter" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-54": { + "question": "대한민국에서 어머니의 날(혹은 어버이날)에 어머니들은 어떤 선물을 받나요?", + "en_question": "What gifts do mothers get on Mother's Day (or Parents' Day) in your country?", + "annotations": [ + { + "answers": [ + "용돈", + "돈" + ], + "en_answers": [ + "allowance", + "money" + ], + "count": 4 + }, + { + "answers": [ + "카네이션" + ], + "en_answers": [ + "carnation" + ], + "count": 2 + }, + { + "answers": [ + "편지" + ], + "en_answers": [ + "letter" + ], + "count": 1 + }, + { + "answers": [ + "케이크" + ], + "en_answers": [ + "cake" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-59": { + "question": "일반적으로 대한민국 가정에는 몇 세대가 함께 거주하고 있나요? (아라비아 숫자(예: 12)만 기재해 주세요.)", + "en_question": "How many generations typically live together in a household in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 4 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-65": { + "question": "대한민국의 중학교에서는 몇 개의 과목을 배우나요? (아라비아 숫자(예: 12)만 기재해주세요.)", + "en_question": "How many subjects are taught in middle schools in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 3 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-66": { + "question": "대한민국의 초등학교에서 가장 인기 있는 방과 후 활동은 무엇인가요?", + "en_question": "What is the most popular after school curricular in elementary schools in your country?", + "annotations": [ + { + "answers": [ + "스포츠", + "스포츠 클럽" + ], + "en_answers": [ + "sports", + "sports club" + ], + "count": 2 + }, + { + "answers": [ + "음악" + ], + "en_answers": [ + "music" + ], + "count": 1 + }, + { + "answers": [ + "음악줄넘기" + ], + "en_answers": [ + "music jump rope" + ], + "count": 1 + }, + { + "answers": [ + "요리교실" + ], + "en_answers": [ + "cooking class", + "cooking" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-74": { + "question": "대한민국 공립대학의 평균 연간 등록금은 얼마입니까?", + "en_question": "How much is the average annual tuition fee for public universities in your country?", + "annotations": [ + { + "answers": [ + "500만원", + "500", + "5백만원", + "5,000,000", + "5000000" + ], + "en_answers": [ + "5 million won", + "5 million", + "5,000,000", + "5000000" + ], + "count": 2 + }, + { + "answers": [ + "700만원", + "7,000,000", + "7000000", + "7백만원" + ], + "en_answers": [ + "7 million won", + "7 million", + "7,000,000", + "7000000" + ], + "count": 1 + }, + { + "answers": [ + "600만원", + "6,000,000", + "6000000", + "6백만원" + ], + "en_answers": [ + "6 million won", + "6 million", + "6,000,000", + "6000000" + ], + "count": 1 + }, + { + "answers": [ + "423만원", + "4,230,000", + "4230000" + ], + "en_answers": [ + "4.23 million won", + "4.23 million", + "4,230,000", + "4230000" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-76": { + "question": "대한민국의 공원에서 할 수 있는 활동 중 인기 있는 것은 무엇인가요?", + "en_question": "What is a popular activity to do in parks in your country?", + "annotations": [ + { + "answers": [ + "배드민턴" + ], + "en_answers": [ + "badminton" + ], + "count": 2 + }, + { + "answers": [ + "피크닉" + ], + "en_answers": [ + "picnic" + ], + "count": 2 + }, + { + "answers": [ + "조깅" + ], + "en_answers": [ + "jogging" + ], + "count": 1 + }, + { + "answers": [ + "캐치볼" + ], + "en_answers": [ + "catch ball" + ], + "count": 1 + }, + { + "answers": [ + "산책" + ], + "en_answers": [ + "walk" + ], + "count": 1 + }, + { + "answers": [ + "자전거타기" + ], + "en_answers": [ + "bicycle riding", + "bicycle", + "cycling" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-78": { + "question": "대한민국에서 개최되는 가장 유명한 영화제의 이름은 무엇인가요?", + "en_question": "What is the name of the most famous film festival held in your country?", + "annotations": [ + { + "answers": [ + "부산국제영화제", + "부산 영화제" + ], + "en_answers": [ + "busan international film festival" + ], + "count": 4 + }, + { + "answers": [ + "청룡영화상", + "청룡영화제" + ], + "en_answers": [ + "blue dragon film awards" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-83": { + "question": "대한민국에서 사람들이 함께 모여 주로 즐기는 카드 게임 중 인기 있는 것은 무엇인가요?", + "en_question": "What is the popular card game played during social gatherings in your country?", + "annotations": [ + { + "answers": [ + "화투", + "고스톱", + "고도리", + "맞고" + ], + "en_answers": [ + "hwatu", + "go-stop", + "goseutop", + "matgo", + "godori" + ], + "count": 4 + }, + { + "answers": [ + "원카드" + ], + "en_answers": [ + "one card" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-85": { + "question": "대한민국 사람들에게 가장 인기 있는 해외 관광지는 어디인가요?", + "en_question": "Where is the most popular tourist destination abroad for people from your country?", + "annotations": [ + { + "answers": [ + "일본" + ], + "en_answers": [ + "japan" + ], + "count": 4 + }, + { + "answers": [ + "베트남" + ], + "en_answers": [ + "vietnam" + ], + "count": 1 + }, + { + "answers": [ + "중국" + ], + "en_answers": [ + "china" + ], + "count": 1 + }, + { + "answers": [ + "나트랑" + ], + "en_answers": [ + "nha trang" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-86": { + "question": "대한민국에서 가장 유명한 타워의 이름은 무엇인가요?", + "en_question": "What is the name of the most famous tower in your country?", + "annotations": [ + { + "answers": [ + "n서울타워", + "남산타워", + "서울타워", + "남산서울타워" + ], + "en_answers": [ + "n seoul tower", + "namsan tower", + "namsan seoul tower", + "seoul tower" + ], + "count": 4 + }, + { + "answers": [ + "롯데월드타워", + "롯데타워" + ], + "en_answers": [ + "lotte world tower", + "lotte tower" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-01": { + "question": "대한민국에서 가장 많이 먹는 식용 곤충은 무엇인가요?", + "en_question": "What edible insect is eaten most often in your country?", + "annotations": [ + { + "answers": [ + "번데기" + ], + "en_answers": [ + "pupa", + "beondegi" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-04": { + "question": "대한민국에서 가장 많이 수출되는 농산물은 무엇입니까?", + "en_question": "Which agricultural product is exported most often in your country?", + "annotations": [ + { + "answers": [ + "쌀" + ], + "en_answers": [ + "rice" + ], + "count": 2 + }, + { + "answers": [ + "인삼" + ], + "en_answers": [ + "ginseng" + ], + "count": 2 + }, + { + "answers": [ + "사과" + ], + "en_answers": [ + "apple" + ], + "count": 1 + }, + { + "answers": [ + "배" + ], + "en_answers": [ + "pear" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-05": { + "question": "대한민국에서 가장 인기 있는 달콤한 간식거리(사탕, 초콜릿 등)은 무엇인가요?", + "en_question": "What are the most popular sweets in your country?", + "annotations": [ + { + "answers": [ + "초콜릿", + "초콜렛", + "초코렛" + ], + "en_answers": [ + "chocolate" + ], + "count": 3 + }, + { + "answers": [ + "솜사탕" + ], + "en_answers": [ + "cotton candy" + ], + "count": 1 + }, + { + "answers": [ + "달고나" + ], + "en_answers": [ + "honeycomb toffee", + "dalgona", + "sugar honeycomb" + ], + "count": 1 + }, + { + "answers": [ + "젤리" + ], + "en_answers": [ + "jelly" + ], + "count": 1 + }, + { + "answers": [ + "탕후루" + ], + "en_answers": [ + "tanghulu" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-15": { + "question": "대한민국에서 가장 인기 있는 스포츠 음료는 무엇입니까?", + "en_question": "What is the most popular sports drink in your country?", + "annotations": [ + { + "answers": [ + "포카리스웨트", + "포카리스위트" + ], + "en_answers": [ + "pocari sweat" + ], + "count": 4 + }, + { + "answers": [ + "파워에이드" + ], + "en_answers": [ + "powerade" + ], + "count": 3 + }, + { + "answers": [ + "게토레이" + ], + "en_answers": [ + "gatorade" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-27": { + "question": "대한민국 사람들의 평균 학력은 무엇입니까?", + "en_question": "What is the average education level for people in your country?", + "annotations": [ + { + "answers": [ + "대학교", + "대학교 졸업" + ], + "en_answers": [ + "university", + "university graduation", + "university graduate" + ], + "count": 3 + }, + { + "answers": [ + "고졸", + "고등학교" + ], + "en_answers": [ + "high school graduate", + "high school graduation", + "high school" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-37": { + "question": "대한민국 학생들이 해외에서 가장 많이 공부하는 분야는 무엇입니까?", + "en_question": "Which profession is most commonly studied abroad by students from your country?", + "annotations": [ + { + "answers": [ + "영어" + ], + "en_answers": [ + "english" + ], + "count": 1 + }, + { + "answers": [ + "영상학" + ], + "en_answers": [ + "film", + "multimedia" + ], + "count": 1 + }, + { + "answers": [ + "경영" + ], + "en_answers": [ + "management", + "business administration", + "business management" + ], + "count": 1 + }, + { + "answers": [ + "어학 분야" + ], + "en_answers": [ + "language" + ], + "count": 1 + }, + { + "answers": [ + "경제" + ], + "en_answers": [ + "economy", + "economics" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-60": { + "question": "대한민국의 일반적인 가정이 종교 활동을 하는 요일은 언제인가요? (예: 월요일, 화요일)", + "en_question": "Which day of the week do most families in your country practice religious activities? (e.g. Monday, Tuesday)", + "annotations": [ + { + "answers": [ + "일요일" + ], + "en_answers": [ + "sunday" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-65": { + "question": "대한민국의 광복절을 기념하기 위해 사람들이 가장 많이 하는 행동은 무엇인가요?", + "en_question": "What is the most popular way to celebrate Independence Day in your country?", + "annotations": [ + { + "answers": [ + "국기 게양", + "태극기 달기", + "국기 계양", + "태극기 게양", + "국기게양" + ], + "en_answers": [ + "raising the national flag", + "hanging the national flag", + "flag hoisting", + "raising the taegeukgi", + "hanging the taegeukgi", + "taegeukgi hoisting" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-68": { + "question": "대한민국 어린이들 사이에서 가장 인기 있는 음료는 무엇입니까?", + "en_question": "What is the most popular beverage among children in your country?", + "annotations": [ + { + "answers": [ + "뽀로로", + "뽀로로 음료수", + "뽀로로 음료" + ], + "en_answers": [ + "pororo drink", + "pororo fruit drink", + "pororo tropical fruits flavor drink" + ], + "count": 4 + }, + { + "answers": [ + "오렌지쥬스" + ], + "en_answers": [ + "orange juice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-76": { + "question": "대한민국의 광복절을 축하하기 위해 사람들이 많이 찾는 장소는 어디인가요?", + "en_question": "What is the most popular place in your country to celebrate Independence Day?", + "annotations": [ + { + "answers": [ + "광화문", + "광화문광장" + ], + "en_answers": [ + "gwanghwamun", + "gwanghwamun plaza", + "gwanghwamun square" + ], + "count": 2 + }, + { + "answers": [ + "경복궁" + ], + "en_answers": [ + "gyeongbokgung palace", + "gyeongbokgung" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-spme-78": { + "question": "대한민국의 생일 파티에서 일반적으로 부르는 노래의 제목은 무엇인가요?", + "en_question": "What is the name of the song that is typically sung at birthday parties in your country?", + "annotations": [ + { + "answers": [ + "생일 축하합니다", + "생일축하노래", + "생일축하송" + ], + "en_answers": [ + "happy birthday", + "happy birthday song" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-01": { + "question": "대한민국의 학교 앞에서는 주로 어떤 간식들을 파나요?", + "en_question": "What snacks are usually sold in front of schools in your country?", + "annotations": [ + { + "answers": [ + "떡볶이", + "컵떡볶이", + "컵볶이", + "떡복이" + ], + "en_answers": [ + "stir-fried rice cakes", + "tteokbokki", + "topokki", + "rice cakes in hot sauce", + "stir-fried rice cakes in a cup", + "cup tteokbokki", + "cup topokki", + "rice cakes in hot sauce in a cup" + ], + "count": 4 + }, + { + "answers": [ + "달고나" + ], + "en_answers": [ + "honeycomb toffee", + "dalgona", + "sugar honeycomb" + ], + "count": 2 + }, + { + "answers": [ + "솜사탕" + ], + "en_answers": [ + "cotton candy" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-09": { + "question": "대한민국에서 요리할 때 보통 어떤 기름을 사용하나요?", + "en_question": "What oil is usually used for cooking in your country?", + "annotations": [ + { + "answers": [ + "카놀라유" + ], + "en_answers": [ + "canola oil" + ], + "count": 2 + }, + { + "answers": [ + "올리브유" + ], + "en_answers": [ + "olive oil" + ], + "count": 2 + }, + { + "answers": [ + "참기름" + ], + "en_answers": [ + "sesame oil" + ], + "count": 2 + }, + { + "answers": [ + "해바라기씨유" + ], + "en_answers": [ + "sunflower seed oil", + "sunflower oil" + ], + "count": 1 + }, + { + "answers": [ + "포도씨유" + ], + "en_answers": [ + "grapeseed oil", + "grape seed oil" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-10": { + "question": "대한민국에서 임산부들이 주로 먹는 음식은 무엇인가요?", + "en_question": "What food is commonly consumed by pregnant women in your country?", + "annotations": [ + { + "answers": [ + "고기" + ], + "en_answers": [ + "meat" + ], + "count": 1 + }, + { + "answers": [ + "생선" + ], + "en_answers": [ + "fish" + ], + "count": 1 + }, + { + "answers": [ + "신과일" + ], + "en_answers": [ + "fruit", + "sour fruit" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 3, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-15": { + "question": "대한민국에서 가장 인기 있는 전통음료는 무엇입니까?", + "en_question": "What is the most popular traditional non-alcoholic drink in your country?", + "annotations": [ + { + "answers": [ + "식혜" + ], + "en_answers": [ + "sweet rice drink", + "sikhye", + "shikhye", + "shikeh", + "rice punch", + "rice dessert drink" + ], + "count": 5 + }, + { + "answers": [ + "수정과" + ], + "en_answers": [ + "sujeonggwa", + "cinnamon-ginger punch", + "sweet cinnamon punch", + "soo jung gwa", + "cinnamon punch" + ], + "count": 1 + }, + { + "answers": [ + "유자차" + ], + "en_answers": [ + "citron tea", + "korea citron tea", + "yuja-cha", + "yuja tea" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-17": { + "question": "대한민국의 공원에는 일반적으로 어떤 스포츠 시설이 있나요?", + "en_question": "What sports facilities are generally available in parks in your country?", + "annotations": [ + { + "answers": [ + "배드민턴" + ], + "en_answers": [ + "badminton" + ], + "count": 2 + }, + { + "answers": [ + "농구" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "야외 운동기구", + "운동기구" + ], + "en_answers": [ + "exercise equipment" + ], + "count": 2 + }, + { + "answers": [ + "트랙" + ], + "en_answers": [ + "track" + ], + "count": 1 + }, + { + "answers": [ + "철봉" + ], + "en_answers": [ + "bar", + "high bar", + "horizontal bar" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-21": { + "question": "대한민국의 공원에서 노인들이 하는 일반적인 활동은 무엇인가요?", + "en_question": "What are the common activities that seniors usually do in parks in your country?", + "annotations": [ + { + "answers": [ + "걷기", + "산책" + ], + "en_answers": [ + "walking", + "walk" + ], + "count": 3 + }, + { + "answers": [ + "운동기구 이용" + ], + "en_answers": [ + "use of exercise equipment", + "exercise equipment" + ], + "count": 1 + }, + { + "answers": [ + "조깅" + ], + "en_answers": [ + "jogging" + ], + "count": 1 + }, + { + "answers": [ + "운동" + ], + "en_answers": [ + "exercise" + ], + "count": 1 + }, + { + "answers": [ + "명상" + ], + "en_answers": [ + "meditation" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-24": { + "question": "대한민국에서 부모와 자녀가 함께 자주 하는 스포츠는 무엇인가요?", + "en_question": "What sports do parents and children commonly play together in your country?", + "annotations": [ + { + "answers": [ + "축구", + "공차기" + ], + "en_answers": [ + "soccer", + "kicking" + ], + "count": 2 + }, + { + "answers": [ + "자전거 타기" + ], + "en_answers": [ + "bicycle riding", + "bicycle", + "cycling" + ], + "count": 1 + }, + { + "answers": [ + "볼링" + ], + "en_answers": [ + "bowling" + ], + "count": 1 + }, + { + "answers": [ + "산책" + ], + "en_answers": [ + "walk" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-28": { + "question": "대한민국 국가대표 축구팀과 연관된 색깔은 무엇인가요?", + "en_question": "What color is associated with the national soccer team of your country?", + "annotations": [ + { + "answers": [ + "빨간색", + "빨강", + "빨강색" + ], + "en_answers": [ + "red" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-33": { + "question": "대한민국 학교 선생님들의 일반적인 복장 규정은 무엇인가요?", + "en_question": "What is the common dress code for school teachers in your country?", + "annotations": [ + { + "answers": [ + "세미포멀" + ], + "en_answers": [ + "semi-formal" + ], + "count": 1 + }, + { + "answers": [ + "단정한 옷" + ], + "en_answers": [ + "neat clothes" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 3, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-34": { + "question": "대한민국의 학교에서 가장 인기 있는 음악 관련 방과 후 활동은 무엇입니까?", + "en_question": "What is the most popular extracurricular activity related to music in schools in your country?", + "annotations": [ + { + "answers": [ + "밴드", + "밴드 동아리" + ], + "en_answers": [ + "band", + "band club" + ], + "count": 4 + }, + { + "answers": [ + "관현악부" + ], + "en_answers": [ + "orchestra" + ], + "count": 1 + }, + { + "answers": [ + "합창단" + ], + "en_answers": [ + "choir" + ], + "count": 1 + }, + { + "answers": [ + "피아노" + ], + "en_answers": [ + "piano" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-42": { + "question": "대한민국의 학교에서 주로 가르치는 종교는 무엇입니까?", + "en_question": "What religion is mainly taught in schools in your country?", + "annotations": [ + { + "answers": [ + "기독교" + ], + "en_answers": [ + "christianity", + "christian" + ], + "count": 1 + }, + { + "answers": [ + "불교" + ], + "en_answers": [ + "buddhism", + "buddhist" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 0, + "no-answer": 0 + } + }, + "New-su-45": { + "question": "대한민국의 교육의 날은 언제인가요? (MM/DD 형식(예: 12/31)으로 제공하세요.)", + "en_question": "What date is Education Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "05/17" + ], + "en_answers": [ + "05/17" + ], + "count": 1 + }, + { + "answers": [ + "05/15" + ], + "en_answers": [ + "05/15" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 1, + "no-answer": 0 + } + }, + "New-su-50": { + "question": "대한민국의 산간 지역 사람들의 주요 직업은 무엇입니까?", + "en_question": "What is the main occupation of people in mountainous areas in your country?", + "annotations": [ + { + "answers": [ + "농부", + "농업" + ], + "en_answers": [ + "farmer", + "agriculture" + ], + "count": 4 + }, + { + "answers": [ + "관광업" + ], + "en_answers": [ + "tourism" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-51": { + "question": "대한민국의 연안 지역 사람들의 주요 직업은 무엇입니까?", + "en_question": "What is the main occupation of people in coastal areas in your country?", + "annotations": [ + { + "answers": [ + "어부", + "어업" + ], + "en_answers": [ + "fisherman", + "fishing" + ], + "count": 5 + }, + { + "answers": [ + "관광업" + ], + "en_answers": [ + "tourism" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-57": { + "question": "대한민국에서 가장 많이 기르는 가축은 무엇입니까?", + "en_question": "What is the most common livestock raised in your country?", + "annotations": [ + { + "answers": [ + "소" + ], + "en_answers": [ + "cow" + ], + "count": 4 + }, + { + "answers": [ + "돼지" + ], + "en_answers": [ + "pig" + ], + "count": 2 + }, + { + "answers": [ + "닭" + ], + "en_answers": [ + "chicken" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-58": { + "question": "대한민국에서 농업에 주로 사용되는 동물은 무엇인가요?", + "en_question": "What animals are commonly used for agriculture in your country?", + "annotations": [ + { + "answers": [ + "소" + ], + "en_answers": [ + "cow" + ], + "count": 2 + }, + { + "answers": [ + "닭" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "New-su-59": { + "question": "대한민국의 농부들이 농사를 지을 때 더위로부터 자신을 보호하기 위해 입는 것은 무엇입니까?", + "en_question": "What do farmers in your country typically wear to protect themselves from the heat whilst farming?", + "annotations": [ + { + "answers": [ + "모자" + ], + "en_answers": [ + "hat" + ], + "count": 3 + }, + { + "answers": [ + "팔토시", + "팔 토시" + ], + "en_answers": [ + "arm sleeve" + ], + "count": 2 + }, + { + "answers": [ + "밀짚모자" + ], + "en_answers": [ + "straw hat", + "boater" + ], + "count": 1 + }, + { + "answers": [ + "모시옷" + ], + "en_answers": [ + "ramie clothes" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-60": { + "question": "대한민국의 농부들은 보통 점심으로 무엇을 먹나요?", + "en_question": "What do farmers in your country usually eat for lunch?", + "annotations": [ + { + "answers": [ + "밥" + ], + "en_answers": [ + "rice" + ], + "count": 3 + }, + { + "answers": [ + "국" + ], + "en_answers": [ + "soup" + ], + "count": 2 + }, + { + "answers": [ + "김치" + ], + "en_answers": [ + "kimchi" + ], + "count": 1 + }, + { + "answers": [ + "일반식" + ], + "en_answers": [ + "regular meal", + "meal" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-71": { + "question": "대한민국의 부모님들은 일반적으로 자녀들의 생일에 어떤 선물을 주나요?", + "en_question": "What gifts do parents generally give to their children for their birthdays in your country?", + "annotations": [ + { + "answers": [ + "전자기기" + ], + "en_answers": [ + "electronic device" + ], + "count": 2 + }, + { + "answers": [ + "용돈" + ], + "en_answers": [ + "allowance" + ], + "count": 2 + }, + { + "answers": [ + "장난감" + ], + "en_answers": [ + "toy" + ], + "count": 1 + }, + { + "answers": [ + "옷" + ], + "en_answers": [ + "clothes" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-75": { + "question": "대한민국의 일반적인 가정은 주로 어떤 교통수단을 소유하고 있나요?", + "en_question": "What type of vehicle do most families in your country generally own?", + "annotations": [ + { + "answers": [ + "자동차", + "자가용" + ], + "en_answers": [ + "car", + "private car" + ], + "count": 5 + }, + { + "answers": [ + "자전거" + ], + "en_answers": [ + "bicycle" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-77": { + "question": "대한민국에서는 이드 축제 때 어린이들에게 주로 무엇을 주나요?", + "en_question": "What is usually given to the children during Eid in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "idk": 1, + "no-answer": 0 + } + }, + "New-su-81": { + "question": "대한민국에서 신랑들은 결혼식에 보통 어떤 옷을 입나요?", + "en_question": "What clothes do grooms usually wear at weddings in your country?", + "annotations": [ + { + "answers": [ + "정장", + "양복", + "턱시도" + ], + "en_answers": [ + "suit", + "tuxedo" + ], + "count": 5 + }, + { + "answers": [ + "한복" + ], + "en_answers": [ + "hanbok" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-82": { + "question": "대한민국에서 신부들은 결혼식에 보통 어떤 옷을 입나요?", + "en_question": "What clothes do brides usually wear at weddings in your country?", + "annotations": [ + { + "answers": [ + "웨딩드레스" + ], + "en_answers": [ + "wedding dress" + ], + "count": 3 + }, + { + "answers": [ + "드레스" + ], + "en_answers": [ + "dress" + ], + "count": 2 + }, + { + "answers": [ + "한복" + ], + "en_answers": [ + "hanbok" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-83": { + "question": "대한민국의 결혼식에서는 보통 어떤 음식이 제공되나요?", + "en_question": "What food is usually served at weddings in your country?", + "annotations": [ + { + "answers": [ + "뷔페", + "뷔폐", + "부페" + ], + "en_answers": [ + "buffet" + ], + "count": 3 + }, + { + "answers": [ + "육회" + ], + "en_answers": [ + "beef tartare" + ], + "count": 1 + }, + { + "answers": [ + "갈비탕" + ], + "en_answers": [ + "short rib soup", + "galbitang", + "beef rib soup", + "galbi-tang" + ], + "count": 1 + }, + { + "answers": [ + "고기" + ], + "en_answers": [ + "meat" + ], + "count": 1 + }, + { + "answers": [ + "초밥" + ], + "en_answers": [ + "sushi" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-86": { + "question": "대한민국에서 가장 유명한 정부 건물은 무엇입니까?", + "en_question": "What is the most famous government building in your country?", + "annotations": [ + { + "answers": [ + "청와대" + ], + "en_answers": [ + "blue house", + "cheongwadae", + "cheong wa dae" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-88": { + "question": "대한민국의 젊은 층에게 가장 인기 있는 음악 장르는 무엇인가요?", + "en_question": "What is the most popular music genre among the younger population in your country?", + "annotations": [ + { + "answers": [ + "발라드" + ], + "en_answers": [ + "ballad" + ], + "count": 2 + }, + { + "answers": [ + "팝", + "팝송" + ], + "en_answers": [ + "pop", + "pop song" + ], + "count": 2 + }, + { + "answers": [ + "k 팝", + "k-pop" + ], + "en_answers": [ + "k-pop" + ], + "count": 2 + }, + { + "answers": [ + "힙합", + "히팝" + ], + "en_answers": [ + "hip-hop" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-02": { + "question": "대한민국의 중학생들은 주로 몇 시에 하교하나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)", + "en_question": "What time do middle school students in your country typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "15:00" + ], + "en_answers": [ + "15:00" + ], + "count": 3 + }, + { + "answers": [ + "16:00" + ], + "en_answers": [ + "16:00" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-03": { + "question": "대한민국 사람들은 보통 몇 살에 대학교에 가나요? (아라비아 숫자(예: 12)만 기재해주세요. 만 나이가 아닌 한국식 나이(세는 나이)를 기준으로 답변해주세요.)", + "en_question": "At what age do people in your country typically go to university? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-06": { + "question": "대한민국에서 의무교육을 받아야 하는 나이는 몇 살부터인가요? (아라비아 숫자(예: 12)만 기재해 주세요. 만 나이가 아닌 한국식 나이(세는 나이)를 기준으로 답변해주세요.)", + "en_question": "From what age do people need to attend compulsory education in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 4 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-09": { + "question": "대한민국에서 아이들은 일주일에 며칠 동안 학교에 가나요? (아라비아 숫자(0~7)만 기재해 주세요.)", + "en_question": "How many days a week do children attend school in your country? (Provide Arabic numerals (0~7) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-11": { + "question": "대한민국에서 석사 학위를 취득하는 데 보통 몇 년이 걸리나요? (아라비아 숫자(예: 12)만 기재해 주세요.)", + "en_question": "In your country, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-12": { + "question": "대한민국에서 가장 좋은 대학교는 어디인가요? (공식 명칭을 제공해 주세요.)", + "en_question": "What is the top university in your country? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "서울대학교", + "서울대" + ], + "en_answers": [ + "seoul national university", + "snu" + ], + "count": 5 + }, + { + "answers": [ + "kaist", + "한국과학기술원" + ], + "en_answers": [ + "korea advanced institute of science and technology", + "kaist" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-13": { + "question": "대부분의 대한민국 사람들은 보통 몇 살에 대학교(학부)를 졸업하나요? (아라비아 숫자(예: 12)만 기재해주세요. 만 나이가 아닌 한국식 나이(세는 나이)를 기준으로 답변해주세요.)", + "en_question": "At what age do most people in your country graduate from university? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 3 + }, + { + "answers": [ + "26" + ], + "en_answers": [ + "26" + ], + "count": 2 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-15": { + "question": "대한민국의 아이들은 보통 몇 살에 중학교에 입학하나요? (아라비아 숫자(예: 12)만 기재해 주세요. 만 나이가 아닌 한국식 나이(세는 나이)를 기준으로 답변해주세요.)", + "en_question": "At what age do children in your country generally start middle school? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "14" + ], + "en_answers": [ + "14" + ], + "count": 4 + }, + { + "answers": [ + "13" + ], + "en_answers": [ + "13" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-17": { + "question": "대한민국의 전일제 근로자는 일주일에 보통 몇 시간을 일합니까? (아라비아 숫자(예: 12)만 기재해 주세요.)", + "en_question": "How many hours a week does a full-time worker in your country typically work? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 3 + }, + { + "answers": [ + "52" + ], + "en_answers": [ + "52" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-19": { + "question": "대한민국에서 전일제 근로자는 일주일에 며칠을 일합니까? (아라비아 숫자 (0~7)만 기재하세요.)", + "en_question": "How many days a week does a full-time worker work in your country? (Provide Arabic numerals (0~7) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-20": { + "question": "대한민국에서 대부분의 사람들은 몇 살에 일을 시작하나요? (아라비아 숫자(예: 12)만 기재해 주세요. 만 나이가 아닌 한국식 나이(세는 나이)를 기준으로 답변해주세요.)", + "en_question": "At what age do most people start working in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 4 + }, + { + "answers": [ + "27" + ], + "en_answers": [ + "27" + ], + "count": 2 + }, + { + "answers": [ + "26" + ], + "en_answers": [ + "26" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-21": { + "question": "대한민국에서는 몇 살부터 일을 할 수 있나요? (만 나이를 기준으로 답변해주세요. 아라비아 숫자(예: 12)만 기재해 주세요.)", + "en_question": "From what age is an individual allowed to work in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 3 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-31": { + "question": "대한민국 사람들은 크리스마스 날에 전통적으로 무엇을 먹나요?", + "en_question": "What do people in your country traditionally eat on Christmas Day?", + "annotations": [ + { + "answers": [ + "케이크", + "케잌", + "케익" + ], + "en_answers": [ + "cake" + ], + "count": 2 + }, + { + "answers": [ + "스테이크" + ], + "en_answers": [ + "steak" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "no-answer": 1, + "idk": 0 + } + }, + "Ni-en-37": { + "question": "대한민국에서 사랑과 로맨스에 관련된 기념일의 이름은 무엇인가요?", + "en_question": "What is the name of the day of the year where people in your country celebrate love and romance?", + "annotations": [ + { + "answers": [ + "발렌타인데이", + "발렌타인 데이" + ], + "en_answers": [ + "valentine's day" + ], + "count": 5 + }, + { + "answers": [ + "빼빼로 데이" + ], + "en_answers": [ + "pepero day" + ], + "count": 1 + }, + { + "answers": [ + "크리스마스" + ], + "en_answers": [ + "christmas" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-40": { + "question": "대한민국에서 가장 인기 있는 크리스마스 노래는 무엇인가요?", + "en_question": "What is the most popular Christmas song in your country?", + "annotations": [ + { + "answers": [ + "징글 벨", + "징글벨" + ], + "en_answers": [ + "jingle bells" + ], + "count": 2 + }, + { + "answers": [ + "울면 안돼", + "울면안돼" + ], + "en_answers": [ + "santa claus is coming to town" + ], + "count": 2 + }, + { + "answers": [ + "루돌프 사슴코", + "루돌프사슴코" + ], + "en_answers": [ + "rudolph the red-nosed reindeer" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-04": { + "question": "대한민국 고등학교에는 1년에 몇 학기가 있나요? (아라비아 숫자(예: 7, 8)만 기재하십시오.)", + "en_question": "How many semesters are there each academic year at high schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-05": { + "question": "대한민국에서 새 학년은 보통 몇 월에 시작하나요? (아라비아 숫자(1~12)만 기재해 주세요.)", + "en_question": "In which month does the new school year typically begin in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-06": { + "question": "대한민국의 스승의 날은 언제인가요? (MM/DD 형식(예: 12/31)으로 제공하세요.)", + "en_question": "When is National Teacher's Day commemorated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "05/15", + "05월 15일" + ], + "en_answers": [ + "05/15" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-11": { + "question": "대한민국의 초등학교는 주로 몇 시에 시작하나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)", + "en_question": "At what time does elementary school start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 4 + }, + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-20": { + "question": "대한민국의 어린이날은 언제인가요? (MM/DD 형식(예: 12/31)으로 제공하세요.)", + "en_question": "When is Children's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "05/05", + "05월 05일" + ], + "en_answers": [ + "05/05" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-40": { + "question": "대한민국에서 사람들은 취업을 위해 주로 어느 도시로 가나요?", + "en_question": "Which city is the main destination for job seekers in your country?", + "annotations": [ + { + "answers": [ + "서울" + ], + "en_answers": [ + "seoul" + ], + "count": 5 + }, + { + "answers": [ + "경기도" + ], + "en_answers": [ + "gyeonggi province", + "gyeonggi-do" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-1": { + "question": "대한민국에서 가장 인기 있는 패스트푸드 체인점은 무엇입니까?", + "en_question": "What is your country's most popular fast food chain?", + "annotations": [ + { + "answers": [ + "롯데리아" + ], + "en_answers": [ + "lotteria" + ], + "count": 4 + }, + { + "answers": [ + "맥도날드" + ], + "en_answers": [ + "mcdonald's" + ], + "count": 2 + }, + { + "answers": [ + "bbq" + ], + "en_answers": [ + "bbq" + ], + "count": 1 + }, + { + "answers": [ + "버거킹" + ], + "en_answers": [ + "burger king" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-13": { + "question": "대한민국에서 가장 호불호가 갈리는 음식은 무엇인가요?", + "en_question": "What is the food that is most divisive (either love or hate) in your country?", + "annotations": [ + { + "answers": [ + "민트초코" + ], + "en_answers": [ + "mint chocolate" + ], + "count": 2 + }, + { + "answers": [ + "미역줄기볶음" + ], + "en_answers": [ + "stir-fried seaweed stems" + ], + "count": 1 + }, + { + "answers": [ + "가지나물" + ], + "en_answers": [ + "seasoned eggplant" + ], + "count": 1 + }, + { + "answers": [ + "홍어" + ], + "en_answers": [ + "fermented skate", + "skate" + ], + "count": 1 + }, + { + "answers": [ + "닭발" + ], + "en_answers": [ + "chicken feet" + ], + "count": 1 + }, + { + "answers": [ + "청국장" + ], + "en_answers": [ + "cheonggukjang" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-16": { + "question": "대한민국 사람들 사이에서 가장 인기 있는 축구 팀은 어디인가요?", + "en_question": "What is the most popular soccer team among the people from your country?", + "annotations": [ + { + "answers": [ + "토트넘" + ], + "en_answers": [ + "tottenham" + ], + "count": 4 + }, + { + "answers": [ + "맨체스터 유나이티드" + ], + "en_answers": [ + "manchester united" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-22": { + "question": "스포츠팀으로 가장 유명한 대한민국의 대학은 어디인가요?", + "en_question": "What is the most famous university in your country known for its sports team?", + "annotations": [ + { + "answers": [ + "연세대학교", + "연세대", + "연대" + ], + "en_answers": [ + "yonsei university" + ], + "count": 2 + }, + { + "answers": [ + "고려대학교", + "고려대", + "고대" + ], + "en_answers": [ + "korea university" + ], + "count": 2 + }, + { + "answers": [ + "한국체육대학교", + "한국체육대학", + "한체대" + ], + "en_answers": [ + "korea national sport university" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-31": { + "question": "대한민국에서 가장 인기 있는 반려동물은 무엇인가요?", + "en_question": "What is your country's most popular family pet?", + "annotations": [ + { + "answers": [ + "강아지" + ], + "en_answers": [ + "puppy", + "dog" + ], + "count": 5 + }, + { + "answers": [ + "고양이" + ], + "en_answers": [ + "cat" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-32": { + "question": "대한민국의 가정에서 가장 인기 있는 TV 프로그램은 무엇인가요?", + "en_question": "What is the most popular family TV show in your country?", + "annotations": [ + { + "answers": [ + "런닝맨" + ], + "en_answers": [ + "running man" + ], + "count": 2 + }, + { + "answers": [ + "무한도전" + ], + "en_answers": [ + "infinite challenge" + ], + "count": 1 + }, + { + "answers": [ + "1박2일" + ], + "en_answers": [ + "1 night 2 days", + "one night two days" + ], + "count": 1 + }, + { + "answers": [ + "전국 노래자랑" + ], + "en_answers": [ + "national singing contest" + ], + "count": 1 + }, + { + "answers": [ + "유 퀴즈 온 더 블럭", + "유퀴즈온더블럭", + "유퀴즈" + ], + "en_answers": [ + "you quiz on the block" + ], + "count": 1 + }, + { + "answers": [ + "나 혼자 산다", + "나혼자산다", + "나혼산" + ], + "en_answers": [ + "i live alone" + ], + "count": 1 + }, + { + "answers": [ + "주말 드라마", + "주말드라마" + ], + "en_answers": [ + "weekend drama" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Sa-en-37": { + "question": "대한민국의 가정에서 가장 인기 있는 보드게임은 무엇인가요?", + "en_question": "What is the most popular family boardgame in your country?", + "annotations": [ + { + "answers": [ + "부루마불", + "부루마블" + ], + "en_answers": [ + "blue marble" + ], + "count": 2 + }, + { + "answers": [ + "할리갈리" + ], + "en_answers": [ + "halli galli" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Sa-en-6": { + "question": "대한민국에서 가장 인기 있는 테이크아웃 음식은 무엇입니까?", + "en_question": "What is the most popular takeaway food in your country?", + "annotations": [ + { + "answers": [ + "치킨" + ], + "en_answers": [ + "chicken" + ], + "count": 4 + }, + { + "answers": [ + "김밥" + ], + "en_answers": [ + "gimbap", + "kimbap" + ], + "count": 1 + }, + { + "answers": [ + "피자" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-7": { + "question": "대한민국에서 인기 있는 간식은 무엇인가요?", + "en_question": "What are popular snacks in your country?", + "annotations": [ + { + "answers": [ + "치킨" + ], + "en_answers": [ + "chicken" + ], + "count": 2 + }, + { + "answers": [ + "호떡" + ], + "en_answers": [ + "hotteok" + ], + "count": 1 + }, + { + "answers": [ + "붕어빵" + ], + "en_answers": [ + "fish-shaped bread", + "fish-shaped bun", + "bungeo-ppang", + "fish-shaped pastry" + ], + "count": 1 + }, + { + "answers": [ + "떡볶이" + ], + "en_answers": [ + "stir-fried rice cakes", + "tteokbokki", + "topokki", + "rice cakes in hot sauce" + ], + "count": 1 + }, + { + "answers": [ + "과자" + ], + "en_answers": [ + "snack" + ], + "count": 1 + }, + { + "answers": [ + "빵" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "만두" + ], + "en_answers": [ + "dumpling" + ], + "count": 1 + }, + { + "answers": [ + "피자" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-9": { + "question": "대한민국 사람들은 해변에서 무엇을 먹나요?", + "en_question": "What do people from your country eat at the beach?", + "annotations": [ + { + "answers": [ + "회" + ], + "en_answers": [ + "sashimi", + "sliced raw fish", + "slices of raw fish", + "raw fish" + ], + "count": 4 + }, + { + "answers": [ + "치킨" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "매운탕" + ], + "en_answers": [ + "spicy fish stew" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-10": { + "question": "대한민국의 남성들은 보통 몇 살에 결혼하나요? (아라비아 숫자(예: 20)만 기재해주세요. 만 나이가 아닌 한국식 나이(세는 나이)를 기준으로 답변해주세요.)", + "en_question": "At what age do men usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 2 + }, + { + "answers": [ + "32" + ], + "en_answers": [ + "32" + ], + "count": 2 + }, + { + "answers": [ + "33" + ], + "en_answers": [ + "33" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-11": { + "question": "대한민국의 여성들은 보통 몇 살에 결혼하나요? (아라비아 숫자(예: 20)만 기재해주세요. 만 나이가 아닌 한국식 나이(세는 나이)를 기준으로 답변해주세요.)", + "en_question": "At what age do women usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 2 + }, + { + "answers": [ + "28" + ], + "en_answers": [ + "28" + ], + "count": 1 + }, + { + "answers": [ + "32" + ], + "en_answers": [ + "32" + ], + "count": 1 + }, + { + "answers": [ + "31" + ], + "en_answers": [ + "31" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-13": { + "question": "당신의 부모님 세대에서, 대한민국의 평균적인 가족 구성원의 수는 얼마였나요? (아라비아 숫자(예: 20)만 제공해 주세요.)", + "en_question": "In your parents' generation, what was the average number of members in their family in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 4 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-17": { + "question": "올림픽 종목 중에서 대한민국에서 가장 인기 있는 스포츠는 무엇인가요?", + "en_question": "In the Olympic Games, which sport is the most popular in your country?", + "annotations": [ + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "양궁" + ], + "en_answers": [ + "archery" + ], + "count": 2 + }, + { + "answers": [ + "야구" + ], + "en_answers": [ + "baseball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-21": { + "question": "대한민국에서 아이들은 보통 어디에서 축구를 하나요?", + "en_question": "Where do children usually play soccer in your country?", + "annotations": [ + { + "answers": [ + "학교 운동장", + "학교운동장", + "운동장" + ], + "en_answers": [ + "school playground", + "school sports field", + "schoolyard", + "sports field", + "playground" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-22": { + "question": "대한민국 여성들이 일상적으로 많이 하는 운동은 무엇인가요?", + "en_question": "Which daily exercise is popular among women in your country?", + "annotations": [ + { + "answers": [ + "필라테스" + ], + "en_answers": [ + "pilates" + ], + "count": 4 + }, + { + "answers": [ + "요가" + ], + "en_answers": [ + "yoga" + ], + "count": 2 + }, + { + "answers": [ + "러닝" + ], + "en_answers": [ + "running", + "run" + ], + "count": 1 + }, + { + "answers": [ + "걷기" + ], + "en_answers": [ + "walking", + "walk" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-23": { + "question": "대한민국 남성들이 일상적으로 많이 하는 운동은 무엇인가요?", + "en_question": "Which daily exercise is popular among men in your country?", + "annotations": [ + { + "answers": [ + "헬스" + ], + "en_answers": [ + "weight training", + "go to the gym", + "hit the gym", + "gym" + ], + "count": 4 + }, + { + "answers": [ + "러닝" + ], + "en_answers": [ + "running" + ], + "count": 1 + }, + { + "answers": [ + "자전거 타기", + "자전거타기", + "자전거" + ], + "en_answers": [ + "bicycle riding", + "bicycle" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-25": { + "question": "대한민국 국내 스포츠 리그에서 가장 유명한 라이벌 관계는 무엇인가요? (예: ___ 대 ___)", + "en_question": "What is the most famous rivalry in a national sports league in your country? (e.g., ___ vs ___)", + "annotations": [ + { + "answers": [ + "fc서울 대 수원삼성", + "수원삼성 대 fc서울" + ], + "en_answers": [ + "fc seoul vs suwon samsung", + "suwon samsung vs fc seoul" + ], + "count": 2 + }, + { + "answers": [ + "lg 트윈스 대 두산 베어스", + "lg대두산", + "두산 베어스 대 lg 트윈스" + ], + "en_answers": [ + "lg twins vs doosan bears", + "doosan bears vs lg twins", + "lg daedusan" + ], + "count": 2 + }, + { + "answers": [ + "연세대 대 고려대", + "고려대 대 연세대" + ], + "en_answers": [ + "yonsei university vs korea university", + "korea university vs yonsei university" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-29": { + "question": "대한민국에서 가장 수입이 높은 프로 스포츠는 무엇인가요?", + "en_question": "Which professional sport is the highest paying in your country?", + "annotations": [ + { + "answers": [ + "야구" + ], + "en_answers": [ + "baseball" + ], + "count": 3 + }, + { + "answers": [ + "e스포츠" + ], + "en_answers": [ + "esports", + "e-sports" + ], + "count": 1 + }, + { + "answers": [ + "골프" + ], + "en_answers": [ + "golf" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-30": { + "question": "대한민국에서 가장 인기 있는/있었던 스포츠 관련 TV 프로그램은 무엇인가요?", + "en_question": "What is/was the most popular sports-related TV program in your country?", + "annotations": [ + { + "answers": [ + "골 때리는 그녀들", + "골떄리는 그녀", + "골때녀" + ], + "en_answers": [ + "kick a goal" + ], + "count": 3 + }, + { + "answers": [ + "날아라 슛돌이", + "슛돌이" + ], + "en_answers": [ + "fly shoot dori" + ], + "count": 2 + }, + { + "answers": [ + "최강야구" + ], + "en_answers": [ + "a clean sweep" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-32": { + "question": "대한민국에서 보통 어떤 날에 불꽃놀이를 하나요?", + "en_question": "What day of the year is usually dedicated to fireworks in your country?", + "annotations": [ + { + "answers": [ + "새해 첫날", + "새해 첫 날", + "양력 설", + "신정", + "1/1", + "1월 1일" + ], + "en_answers": [ + "new year's day" + ], + "count": 1 + }, + { + "answers": [ + "불꽃축제" + ], + "en_answers": [ + "fireworks festival" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 1, + "no-answer": 0 + } + }, + "Ta-pe-37": { + "question": "대한민국에서 새해 전날(12/31) 하면 떠오르는 상징물은 무엇인가요?", + "en_question": "What is the common symbol of New Year's Eve that is usually found in your country?", + "annotations": [ + { + "answers": [ + "제야의 종", + "보신각 종" + ], + "en_answers": [ + "new year's eve bell", + "midnight bell", + "joya no kane", + "bosingak bell" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 1 + } + }, + "Ta-pe-42": { + "question": "대한민국 사람들은 보통 새해 전날에 무슨 음식을 먹나요?", + "en_question": "What food do people from your country usually eat on New Year's Eve?", + "annotations": [], + "idks": { + "not-applicable": 3, + "idk": 1, + "no-answer": 1 + } + }, + "Ta-pe-45": { + "question": "대한민국에서는 동지에 주로 어떤 음식을 먹나요?", + "en_question": "What is usually eaten during the celebration of the longest night of the year in your country?", + "annotations": [ + { + "answers": [ + "팥죽" + ], + "en_answers": [ + "red bean porridge", + "pat-jug", + "red bean soup" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-01": { + "question": "대한민국에서 가장 인기 있는 여름 스포츠는 무엇인가요?", + "en_question": "What is the most popular summer sport in your country?", + "annotations": [ + { + "answers": [ + "수영" + ], + "en_answers": [ + "swimming", + "swim" + ], + "count": 3 + }, + { + "answers": [ + "야구" + ], + "en_answers": [ + "baseball" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-03": { + "question": "대한민국에서 가장 인기 있는 프로 스포츠 리그는 무엇인가요?", + "en_question": "What is the most popular professional sports league in your country?", + "annotations": [ + { + "answers": [ + "kbo", + "야구", + "kbo 리그" + ], + "en_answers": [ + "korea baseball organization", + "kbo", + "baseball", + "kbo league" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-05": { + "question": "대한민국에서 가장 인기 있는 여자 스포츠 팀은 어디인가요?", + "en_question": "What is the most popular women's sports team in your country?", + "annotations": [ + { + "answers": [ + "흥국생명", + "흥국생명 핑크스파이더스", + "흥국생명 배구팀", + "핑크 스파이더스" + ], + "en_answers": [ + "heungkuk life", + "heungkuk life pink spiders", + "heungkuk life volleyball team" + ], + "count": 4 + }, + { + "answers": [ + "팀킴", + "강릉시청 컬링팀", + "컬링팀", + "팀 킴" + ], + "en_answers": [ + "team kim" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-09": { + "question": "대한민국에서 가장 인기 있는 스포츠 토너먼트는 무엇인가요?", + "en_question": "What is the most popular tournament in your country?", + "annotations": [ + { + "answers": [ + "월드컵" + ], + "en_answers": [ + "world cup" + ], + "count": 2 + }, + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "챔피언스리그", + "챔스" + ], + "en_answers": [ + "champions league", + "uefa" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-11": { + "question": "대한민국에서 가장 인기 있는 스포츠 선수는 누구인가요?", + "en_question": "Who is the most popular sportperson in your country?", + "annotations": [ + { + "answers": [ + "손흥민" + ], + "en_answers": [ + "son heung-min", + "heung-min son", + "son heung min", + "heung min son" + ], + "count": 5 + }, + { + "answers": [ + "박지성" + ], + "en_answers": [ + "park ji-sung", + "ji-sung park", + "park ji sung", + "ji sung park" + ], + "count": 1 + }, + { + "answers": [ + "김연아" + ], + "en_answers": [ + "yuna kim", + "kim yuna" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-12": { + "question": "대한민국이 국제 대회에서 가장 성공적인 결과를 내는 스포츠는 무엇인가요?", + "en_question": "In which sport has your country been most successful in international competitions?", + "annotations": [ + { + "answers": [ + "양궁" + ], + "en_answers": [ + "archery" + ], + "count": 4 + }, + { + "answers": [ + "축구" + ], + "en_answers": [ + "soccer" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-15": { + "question": "대한민국에서 가장 인기 있는 겨울 스포츠는 무엇인가요?", + "en_question": "What is the most popular winter sport in your country?", + "annotations": [ + { + "answers": [ + "스키" + ], + "en_answers": [ + "ski" + ], + "count": 3 + }, + { + "answers": [ + "쇼트트랙" + ], + "en_answers": [ + "short track", + "short-track speed skating" + ], + "count": 2 + }, + { + "answers": [ + "스노보드" + ], + "en_answers": [ + "snowboard" + ], + "count": 1 + }, + { + "answers": [ + "스케이트", + "아이스 스케이트" + ], + "en_answers": [ + "skate", + "ice-skating", + "ice-skate", + "ice skate" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-19": { + "question": "제조업으로 유명한 대한민국의 도시나 지역은 어디인가요?", + "en_question": "What is a city or region in your country known for manufacturing industry?", + "annotations": [ + { + "answers": [ + "울산" + ], + "en_answers": [ + "ulsan" + ], + "count": 3 + }, + { + "answers": [ + "포항" + ], + "en_answers": [ + "pohang" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-21": { + "question": "대한민국에서 일반적으로 직원들에게 제공되는 혜택 중 가장 중요하게 여겨지는 것은 무엇인가요?", + "en_question": "What is regarded as the most important perk typically offered to employees in your country?", + "annotations": [ + { + "answers": [ + "보너스" + ], + "en_answers": [ + "bonus", + "incentive" + ], + "count": 2 + }, + { + "answers": [ + "직원가 할인", + "직원 할인" + ], + "en_answers": [ + "employee discount" + ], + "count": 2 + }, + { + "answers": [ + "휴가" + ], + "en_answers": [ + "vacation", + "holiday", + "leave" + ], + "count": 1 + }, + { + "answers": [ + "4대 보험", + "4대보험", + "4대사회보험", + "4대 사회보험" + ], + "en_answers": [ + "4 major sis", + "sis", + "4 major social insurance schemes", + "social insurance schemes" + ], + "count": 1 + }, + { + "answers": [ + "건강검진", + "건강 검진" + ], + "en_answers": [ + "health checkup", + "physical examination", + "health check-up", + "medical check-up", + "medical checkup", + "health screening" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-22": { + "question": "대한민국 역사상 최악의 경제 위기는 언제였나요?", + "en_question": "What was the most catastrophic economic period for your country?", + "annotations": [ + { + "answers": [ + "imf", + "1997", + "1997년", + "외환 위기", + "외환위기", + "구제금융 요청", + "국가부도 위기" + ], + "en_answers": [ + "imf", + "international monetary fund", + "currency crisis", + "year 1997", + "1997" + ], + "count": 4 + }, + { + "answers": [ + "2024년" + ], + "en_answers": [ + "year 2024" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-24": { + "question": "대한민국에서 개발자와 스타트업이 많은 지역은 어디입니까?", + "en_question": "What region in your country is a major hub for tech workers and start ups?", + "annotations": [ + { + "answers": [ + "판교" + ], + "en_answers": [ + "pangyo" + ], + "count": 3 + }, + { + "answers": [ + "서울" + ], + "en_answers": [ + "seoul" + ], + "count": 1 + }, + { + "answers": [ + "강남구" + ], + "en_answers": [ + "gangnam district" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-27": { + "question": "대한민국에서 가장 중요한 산업은 무엇입니까?", + "en_question": "What is the most important industry in your country?", + "annotations": [ + { + "answers": [ + "반도체" + ], + "en_answers": [ + "semiconductor" + ], + "count": 4 + }, + { + "answers": [ + "제조업" + ], + "en_answers": [ + "manufacturing", + "manufacture" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-35": { + "question": "대한민국에서 가족 구성원들과 함께하는 일상적인 식사는 주로 언제 이뤄지나요? (예: 아침, 점심, 저녁)", + "en_question": "Which one of the daily meals is commonly shared with family members in your country? (e.g., breakfast, lunch, dinner)", + "annotations": [ + { + "answers": [ + "저녁" + ], + "en_answers": [ + "dinner", + "evening" + ], + "count": 5 + }, + { + "answers": [ + "아침" + ], + "en_answers": [ + "morning", + "breakfast" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-36": { + "question": "대한민국에서 주말에 아이와 함께하는 인기 있는 가족 활동은 무엇인가요?", + "en_question": "What is a popular family activity with a child to do on weekends in your country?", + "annotations": [ + { + "answers": [ + "여행", + "여행가기" + ], + "en_answers": [ + "travel" + ], + "count": 2 + }, + { + "answers": [ + "스포츠", + "운동", + "운동하기" + ], + "en_answers": [ + "sports", + "exercise" + ], + "count": 1 + }, + { + "answers": [ + "보드 게임", + "보드게임", + "보드 게임하기" + ], + "en_answers": [ + "board game" + ], + "count": 1 + }, + { + "answers": [ + "캠핑", + "캠핑하기", + "캠핑가기" + ], + "en_answers": [ + "camping" + ], + "count": 1 + }, + { + "answers": [ + "공원 산책", + "공원산책", + "공원에서 산책", + "공원에서 산책하기" + ], + "en_answers": [ + "park walk" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-37": { + "question": "대한민국에서 사람들이 보통 부모로부터 독립하는 나이는 몇 살인가요? (아라비아 숫자(예: 12)만 기재해주세요. 만 나이가 아닌 한국식 나이(세는 나이)를 기준으로 답변해주세요.)", + "en_question": "At what age do children typically become independent from their parents in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 2 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + }, + { + "answers": [ + "28" + ], + "en_answers": [ + "28" + ], + "count": 1 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-38": { + "question": "대한민국에서 가장 중요한 가족 공휴일은 무엇인가요?", + "en_question": "What is the most important family holiday in your country?", + "annotations": [ + { + "answers": [ + "어린이날" + ], + "en_answers": [ + "children's day" + ], + "count": 3 + }, + { + "answers": [ + "어버이날" + ], + "en_answers": [ + "parent's day" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-39": { + "question": "대한민국에서 가족과 함께 하는 게임 중 가장 인기 있는 게임은 무엇인가요?", + "en_question": "What is a popular family game in your country?", + "annotations": [ + { + "answers": [ + "윷놀이" + ], + "en_answers": [ + "yutnori" + ], + "count": 3 + }, + { + "answers": [ + "부루마불", + "부루마블", + "블루마블" + ], + "en_answers": [ + "blue marble" + ], + "count": 2 + }, + { + "answers": [ + "젠가" + ], + "en_answers": [ + "jenga" + ], + "count": 1 + }, + { + "answers": [ + "할리갈리" + ], + "en_answers": [ + "halli galli" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-41": { + "question": "대한민국에서 부부가 첫 아이를 갖는 평균 연령은 몇 살인가요? (아라비아 숫자(예: 20)만 기재해 주세요. 만 나이가 아닌 한국식 나이(세는 나이)를 기준으로 답변해주세요.)", + "en_question": "What is the average age for couples to have their first child in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 2 + }, + { + "answers": [ + "31" + ], + "en_answers": [ + "31" + ], + "count": 2 + }, + { + "answers": [ + "35" + ], + "en_answers": [ + "35" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-43": { + "question": "대한민국의 전형적인 가정이 소유한 자동차는 몇 대인가요? (아라비아 숫자(예: 12)만 기재해주세요.)", + "en_question": "How many cars are owned by a typical family in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-44": { + "question": "대한민국에서 주말 가족 식사로 주로 먹는 음식은 무엇인가요?", + "en_question": "What is your country's most popular food for family meals on weekends?", + "annotations": [ + { + "answers": [ + "고기" + ], + "en_answers": [ + "meat" + ], + "count": 2 + }, + { + "answers": [ + "돼지고기" + ], + "en_answers": [ + "pork" + ], + "count": 1 + }, + { + "answers": [ + "삼겹살" + ], + "en_answers": [ + "pork belly" + ], + "count": 1 + }, + { + "answers": [ + "스테이크" + ], + "en_answers": [ + "steak" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-45": { + "question": "대한민국에서 평일 저녁에 가족끼리 주로 무엇을 하나요?", + "en_question": "What is the most popular weekday evening family activity in your country?", + "annotations": [ + { + "answers": [ + "식사" + ], + "en_answers": [ + "meal", + "family meal", + "family dinner", + "dinner" + ], + "count": 2 + }, + { + "answers": [ + "산책" + ], + "en_answers": [ + "walk", + "take a walk" + ], + "count": 1 + }, + { + "answers": [ + "tv 시청", + "티비시청", + "tv 보기", + "티비 보기", + "티비 시청" + ], + "en_answers": [ + "watching tv" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Th-en-48": { + "question": "대한민국 고등학교에서 과제와 시험의 성적이 우수한 학생들에게 주어지는 최고 등급은 무엇인가요?", + "en_question": "What is the highest grade given to top-achieving high school students on assignments and exams in your country?", + "annotations": [ + { + "answers": [ + "1", + "1등급" + ], + "en_answers": [ + "1", + "1st grade" + ], + "count": 5 + }, + { + "answers": [ + "a" + ], + "en_answers": [ + "a" + ], + "count": 1 + }, + { + "answers": [ + "수" + ], + "en_answers": [ + "su" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-49": { + "question": "대한민국의 고등학생들에게 어떤 시험이 가장 중요하게 여겨지나요?", + "en_question": "What is considered the most important exam for high school students in your country?", + "annotations": [ + { + "answers": [ + "수능", + "수학능력검정시험" + ], + "en_answers": [ + "college scholastic ability test", + "national university entrance exam" + ], + "count": 3 + }, + { + "answers": [ + "수학", + "국영수" + ], + "en_answers": [ + "math" + ], + "count": 2 + }, + { + "answers": [ + "국어", + "국영수" + ], + "en_answers": [ + "korean" + ], + "count": 1 + }, + { + "answers": [ + "영어", + "국영수" + ], + "en_answers": [ + "english" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-51": { + "question": "대한민국에서 학생들에게 어떤 과목이 가장 중요하게 여겨지나요?", + "en_question": "Which subject is considered the most important for students in your country?", + "annotations": [ + { + "answers": [ + "수학", + "국영수" + ], + "en_answers": [ + "math" + ], + "count": 5 + }, + { + "answers": [ + "국어", + "국영수" + ], + "en_answers": [ + "korean" + ], + "count": 1 + }, + { + "answers": [ + "영어", + "국영수" + ], + "en_answers": [ + "english" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-53": { + "question": "대한민국의 학교에서 가장 인기 있는 학교 행사는 무엇인가요?", + "en_question": "What is the most popular extracurricular social event at schools in your country?", + "annotations": [ + { + "answers": [ + "운동회" + ], + "en_answers": [ + "sports day" + ], + "count": 2 + }, + { + "answers": [ + "수학여행" + ], + "en_answers": [ + "school trip", + "field trip" + ], + "count": 2 + }, + { + "answers": [ + "축제" + ], + "en_answers": [ + "festival" + ], + "count": 1 + }, + { + "answers": [ + "대학교 축제" + ], + "en_answers": [ + "university festival" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-58": { + "question": "대한민국에서 대학교에 진학하기 전 학생들이 배우는 수학 과목 중 가장 어려운 과목은 무엇인가요?", + "en_question": "What is the most advanced math subject learned before university in your country?", + "annotations": [ + { + "answers": [ + "미적분", + "미적분2", + "미적", + "미적분학", + "미적2", + "미적분학2" + ], + "en_answers": [ + "calculus", + "calculus 2" + ], + "count": 2 + }, + { + "answers": [ + "기하와 벡터", + "기하와벡터", + "기벡" + ], + "en_answers": [ + "geometry and vector" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-01": { + "question": "대한민국의 대학생들은 보통 기말고사 공부를 어디에서 하나요?", + "en_question": "Where do university students in your country usually go to study for their final exams?", + "annotations": [ + { + "answers": [ + "도서관" + ], + "en_answers": [ + "library" + ], + "count": 3 + }, + { + "answers": [ + "카페" + ], + "en_answers": [ + "cafe" + ], + "count": 2 + }, + { + "answers": [ + "집" + ], + "en_answers": [ + "house", + "home" + ], + "count": 2 + }, + { + "answers": [ + "대학교 도서관" + ], + "en_answers": [ + "university library" + ], + "count": 1 + }, + { + "answers": [ + "스터디카페", + "스터디 카페" + ], + "en_answers": [ + "study cafe" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-02": { + "question": "대한민국에서 대학교에 통학할 때 사람들이 자주 이용하는 대중교통 수단은 무엇인가요?", + "en_question": "What is a common public transport that people use to go to university in your country?", + "annotations": [ + { + "answers": [ + "지하철" + ], + "en_answers": [ + "subway" + ], + "count": 3 + }, + { + "answers": [ + "버스" + ], + "en_answers": [ + "bus" + ], + "count": 3 + }, + { + "answers": [ + "자가용" + ], + "en_answers": [ + "private car", + "car" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-04": { + "question": "대한민국의 초등학생들은 방과 후에 보통 무엇을 하나요?", + "en_question": "What do elementary students in your country usually do after school?", + "annotations": [ + { + "answers": [ + "학원", + "학원가기", + "학원 가기" + ], + "en_answers": [ + "academy", + "going to academy", + "go to academy" + ], + "count": 5 + }, + { + "answers": [ + "스포츠", + "운동하기" + ], + "en_answers": [ + "sports", + "exercise", + "play sports" + ], + "count": 1 + }, + { + "answers": [ + "놀이터에서 놀기", + "놀이터 가기" + ], + "en_answers": [ + "playing at the playground", + "play at the playground", + "playground" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + } +} \ No newline at end of file diff --git a/data/annotations/Spain_data.json b/data/annotations/Spain_data.json new file mode 100644 index 0000000000000000000000000000000000000000..6d0edd8f555036dae4e4b7ad8150b18863d691e9 --- /dev/null +++ b/data/annotations/Spain_data.json @@ -0,0 +1,24068 @@ +{ + "Al-en-01": { + "question": "¿Cuál es un tentempié común para niños de preescolar en España?", + "en_question": "What is a common snack for preschool kids in your country?", + "annotations": [ + { + "answers": [ + "fruta", + "una pieza fruta" + ], + "en_answers": [ + "fruit", + "a piece of fruit" + ], + "count": 3 + }, + { + "answers": [ + "sandwich" + ], + "en_answers": [ + "sandwich" + ], + "count": 1 + }, + { + "answers": [ + "galletas" + ], + "en_answers": [ + "biscuits" + ], + "count": 1 + }, + { + "answers": [ + "zumo" + ], + "en_answers": [ + "juice" + ], + "count": 1 + }, + { + "answers": [ + "bocadillo de jamón y queso" + ], + "en_answers": [ + "ham and cheese sandwich" + ], + "count": 1 + }, + { + "answers": [ + "pan de pipas" + ], + "en_answers": [ + "bread sticks" + ], + "count": 1 + }, + { + "answers": [ + "tortas de maíz" + ], + "en_answers": [ + "corn cakes" + ], + "count": 1 + }, + { + "answers": [ + "barritas de cereales" + ], + "en_answers": [ + "cereal bars" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-02": { + "question": "¿Cuál es una comida popular para acompañar la cerveza en España?", + "en_question": "What is a popular food to go with beer in your country?", + "annotations": [ + { + "answers": [ + "tapas", + "tapa", + "tapas" + ], + "en_answers": [ + "tapas" + ], + "count": 2 + }, + { + "answers": [ + "patatas bravas", + "papas bravas", + "patatas bravas, bravas" + ], + "en_answers": [ + "spicy potatoes" + ], + "count": 2 + }, + { + "answers": [ + "patatas fritas de bolsa" + ], + "en_answers": [ + "bag of crisps" + ], + "count": 1 + }, + { + "answers": [ + "cacahuetes" + ], + "en_answers": [ + "peanuts" + ], + "count": 1 + }, + { + "answers": [ + "pincho de tortilla", + "pincho tortilla" + ], + "en_answers": [ + "slice of spanish omelette", + "spanish omelette" + ], + "count": 1 + }, + { + "answers": [ + "boquerones en vinagre" + ], + "en_answers": [ + "anchovies in vinegar" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Al-en-04": { + "question": "¿Cuál es la fruta más popular en España?", + "en_question": "What is the most popular fruit in your country?", + "annotations": [ + { + "answers": [ + "naranja" + ], + "en_answers": [ + "orange" + ], + "count": 2 + }, + { + "answers": [ + "melon" + ], + "en_answers": [ + "melon" + ], + "count": 2 + }, + { + "answers": [ + "plátano", + "platano" + ], + "en_answers": [ + "banana" + ], + "count": 2 + }, + { + "answers": [ + "sandia" + ], + "en_answers": [ + "watermelon" + ], + "count": 1 + }, + { + "answers": [ + "manzana" + ], + "en_answers": [ + "apple" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Al-en-06": { + "question": "¿Cuál es una comida común en las cafeterías escolares de España?", + "en_question": "What is a common school cafeteria food in your country?", + "annotations": [ + { + "answers": [ + "tortilla", + "tortilla de patatas" + ], + "en_answers": [ + "spanish omelette" + ], + "count": 2 + }, + { + "answers": [ + "croquetas" + ], + "en_answers": [ + "croquettes" + ], + "count": 1 + }, + { + "answers": [ + "pollo" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "macarrones con chorizo" + ], + "en_answers": [ + "macaroni with chorizo" + ], + "count": 1 + }, + { + "answers": [ + "galletas" + ], + "en_answers": [ + "cookies" + ], + "count": 1 + }, + { + "answers": [ + "bolleria" + ], + "en_answers": [ + "pastries" + ], + "count": 1 + }, + { + "answers": [ + "chocolate y churros" + ], + "en_answers": [ + "chocolate and churros" + ], + "count": 1 + }, + { + "answers": [ + "bocadillo de tortilla" + ], + "en_answers": [ + "omelette sandwich" + ], + "count": 1 + }, + { + "answers": [ + "sandwich mixto" + ], + "en_answers": [ + "ham and cheese sandwich" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-08": { + "question": "¿Cuáles son los aperitivos más consumidos en los centros comerciales de España?", + "en_question": "What are the most commonly eaten snacks at shopping malls in your country?", + "annotations": [ + { + "answers": [ + "patatas fritas" + ], + "en_answers": [ + "fries" + ], + "count": 3 + }, + { + "answers": [ + "yogurt helado", + "helado", + "helados" + ], + "en_answers": [ + "frozen yogurt", + "ice cream", + "ice creams" + ], + "count": 2 + }, + { + "answers": [ + "tapas" + ], + "en_answers": [ + "tapas" + ], + "count": 1 + }, + { + "answers": [ + "algodón de azucar" + ], + "en_answers": [ + "cotton candy", + "candy floss" + ], + "count": 1 + }, + { + "answers": [ + "aceitunas" + ], + "en_answers": [ + "olives" + ], + "count": 1 + }, + { + "answers": [ + "otros snacks" + ], + "en_answers": [ + "other snacks" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-09": { + "question": "¿Cuál es un aperitivo popular en un parque de atracciones en España?", + "en_question": "What is a popular snack at an amusement park in your country?", + "annotations": [ + { + "answers": [ + "patatas fritas" + ], + "en_answers": [ + "french fries" + ], + "count": 2 + }, + { + "answers": [ + "churros" + ], + "en_answers": [ + "churros" + ], + "count": 1 + }, + { + "answers": [ + "perritos" + ], + "en_answers": [ + "hot dogs" + ], + "count": 1 + }, + { + "answers": [ + "hamburguesas" + ], + "en_answers": [ + "burgers" + ], + "count": 1 + }, + { + "answers": [ + "palomitas" + ], + "en_answers": [ + "popcorn" + ], + "count": 1 + }, + { + "answers": [ + "algodón de azúcar" + ], + "en_answers": [ + "cotton candy", + "candy floss" + ], + "count": 1 + }, + { + "answers": [ + "chuches" + ], + "en_answers": [ + "candies" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Al-en-16": { + "question": "¿A qué edad comienzan los niños el preescolar en España? (Proporciona la respuesta en números (por ejemplo, 12).)", + "en_question": "At what age do kids start preschool in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 3 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 2 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-17": { + "question": "¿Cuál es un deporte extraescolar popular en la escuela primaria en España?", + "en_question": "What is a popular afterschool sport for elementary schools in your country?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 5 + }, + { + "answers": [ + "natación", + "natacion" + ], + "en_answers": [ + "swimming" + ], + "count": 2 + }, + { + "answers": [ + "baloncesto" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-18": { + "question": "¿Para qué asignatura reciben educación privada los estudiantes de primaria en España?", + "en_question": "For which subject do elementary students get private education in your country?", + "annotations": [ + { + "answers": [ + "inglés" + ], + "en_answers": [ + "english" + ], + "count": 3 + }, + { + "answers": [ + "matemáticas" + ], + "en_answers": [ + "mathematics", + "math" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-19": { + "question": "¿Cuál es un segundo idioma popular para los estudiantes de secundaria en España?", + "en_question": "What is a popular second language for high school students in your country?", + "annotations": [ + { + "answers": [ + "inglés", + "ingles" + ], + "en_answers": [ + "english" + ], + "count": 5 + }, + { + "answers": [ + "catalan" + ], + "en_answers": [ + "catalan" + ], + "count": 1 + }, + { + "answers": [ + "vasco", + "euskera" + ], + "en_answers": [ + "basque" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-21": { + "question": "¿Qué asignatura es la más importante para la educación de los superdotados en España?", + "en_question": "Which subject is the most important for gifted education in your country?", + "annotations": [ + { + "answers": [ + "fisica" + ], + "en_answers": [ + "physics" + ], + "count": 2 + }, + { + "answers": [ + "matemáticas", + "matematicas" + ], + "en_answers": [ + "mathematics", + "math" + ], + "count": 2 + }, + { + "answers": [ + "quimica" + ], + "en_answers": [ + "chemistry" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 2, + "not-applicable": 0 + } + }, + "Al-en-32": { + "question": "¿Cuál es el plato principal para el Día de Acción de Gracias en España?", + "en_question": "What is the main dish for Thanksgiving in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-33": { + "question": "¿Qué hacen las personas para celebrar Halloween en España?", + "en_question": "What do people do to celebrate Halloween in your country?", + "annotations": [ + { + "answers": [ + "disfrazarse", + "fiestas de disfraces" + ], + "en_answers": [ + "to dress up", + "costume parties" + ], + "count": 4 + }, + { + "answers": [ + "truco o trato" + ], + "en_answers": [ + "trick or treat" + ], + "count": 1 + }, + { + "answers": [ + "fiestas con amigos" + ], + "en_answers": [ + "parties with friends", + "parties" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-34": { + "question": "¿Qué hacen las personas para celebrar el Año Nuevo en España?", + "en_question": "What do people do to celebrate New Year's Day in your country?", + "annotations": [ + { + "answers": [ + "toman uvas", + "tomar uvas", + "comer uvas a las 12" + ], + "en_answers": [ + "eat grapes", + "eat grapes at 12" + ], + "count": 3 + }, + { + "answers": [ + "cotillón" + ], + "en_answers": [ + "party favors" + ], + "count": 1 + }, + { + "answers": [ + "cena con familia y luego salir a algún pub/discoteca" + ], + "en_answers": [ + "dinner with family and then go out to a pub/nightclub" + ], + "count": 1 + }, + { + "answers": [ + "comer con la familia" + ], + "en_answers": [ + "eat with the family" + ], + "count": 1 + }, + { + "answers": [ + "tomar el aperitivo con los amigos" + ], + "en_answers": [ + "have appetizers with friends" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-35": { + "question": "¿Qué hacen las personas para celebrar la Navidad en España?", + "en_question": "What do people do to celebrate Christmas in your country?", + "annotations": [ + { + "answers": [ + "se reúnen para comer los días específicos", + "una comida de navidad", + "reunirse para cenar en noche buena y comer en navidad con la familia sobretodo", + "comer con la familia", + "cena familiar" + ], + "en_answers": [ + "they meet to eat on specific days", + "a christmas meal", + "gather for dinner on christmas eve and eat on christmas with the family especially", + "eat with the family", + "family dinner" + ], + "count": 5 + }, + { + "answers": [ + "van a ver las luces", + "comer con los amigos", + "a veces amigos" + ], + "en_answers": [ + "they are going to see the lights", + "to eat with friends" + ], + "count": 2 + }, + { + "answers": [ + "visitar belenes" + ], + "en_answers": [ + "visit nativity scenes" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-36": { + "question": "¿Qué comida se asocia con Halloween en España?", + "en_question": "What food is associated with Halloween in your country?", + "annotations": [ + { + "answers": [ + "buñuelos" + ], + "en_answers": [ + "fritters" + ], + "count": 1 + }, + { + "answers": [ + "castañas" + ], + "en_answers": [ + "chestnuts" + ], + "count": 1 + }, + { + "answers": [ + "gachas", + "gachas (pero está asociada a la noche de los santos no haloween" + ], + "en_answers": [ + "porridge" + ], + "count": 1 + }, + { + "answers": [ + "bizcocho de calabaza" + ], + "en_answers": [ + "pumpkin sponge cake" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Al-en-37": { + "question": "¿Qué comida se asocia con la Navidad en España?", + "en_question": "What food is associated with Christmas in your country?", + "annotations": [ + { + "answers": [ + "cochinillo", + "lechona" + ], + "en_answers": [ + "suckling pig" + ], + "count": 2 + }, + { + "answers": [ + "cocido" + ], + "en_answers": [ + "stew" + ], + "count": 1 + }, + { + "answers": [ + "pavo" + ], + "en_answers": [ + "turkey" + ], + "count": 1 + }, + { + "answers": [ + "turrón" + ], + "en_answers": [ + "nougat" + ], + "count": 1 + }, + { + "answers": [ + "gambas" + ], + "en_answers": [ + "prawns", + "shrimp" + ], + "count": 1 + }, + { + "answers": [ + "marisco" + ], + "en_answers": [ + "seafood" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Al-en-38": { + "question": "¿Qué comida se asocia con el día de San Valentín en España?", + "en_question": "What food is associated with Valentine's day in your country?", + "annotations": [ + { + "answers": [ + "bombones", + "chocolate" + ], + "en_answers": [ + "chocolates", + "chocolate" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Al-en-39": { + "question": "¿Qué comen las personas en su cumpleaños en España?", + "en_question": "What do people eat on their birthday in your country?", + "annotations": [ + { + "answers": [ + "tarta", + "pastel" + ], + "en_answers": [ + "cake" + ], + "count": 5 + }, + { + "answers": [ + "golosinas", + "chuches, chucherias" + ], + "en_answers": [ + "sweets", + "candies" + ], + "count": 1 + }, + { + "answers": [ + "coca-cola", + "coca cola" + ], + "en_answers": [ + "coca cola", + "coke" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-40": { + "question": "¿Cuál es un lugar al aire libre popular para que las familias se diviertan con niños pequeños en España?", + "en_question": "What is a popular outdoor place for families to have fun with little kids in your country?", + "annotations": [ + { + "answers": [ + "parque", + "plazas", + "plaza", + "parques" + ], + "en_answers": [ + "park", + "squares", + "square", + "parks" + ], + "count": 5 + }, + { + "answers": [ + "campo", + "parques naturales" + ], + "en_answers": [ + "field", + "natural parks" + ], + "count": 2 + }, + { + "answers": [ + "playa" + ], + "en_answers": [ + "beach" + ], + "count": 1 + }, + { + "answers": [ + "parque de atracciones" + ], + "en_answers": [ + "amusement park" + ], + "count": 1 + }, + { + "answers": [ + "zoo" + ], + "en_answers": [ + "zoo" + ], + "count": 1 + }, + { + "answers": [ + "playa", + "río / playa" + ], + "en_answers": [ + "beach" + ], + "count": 1 + }, + { + "answers": [ + "río", + "río / playa" + ], + "en_answers": [ + "river" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-43": { + "question": "¿Cuál es una actividad de interior popular para las familias en España?", + "en_question": "What is a popular indoor activity for families in your country?", + "annotations": [ + { + "answers": [ + "fiestas" + ], + "en_answers": [ + "parties", + "party" + ], + "count": 1 + }, + { + "answers": [ + "ir al parque por la tarde" + ], + "en_answers": [ + "go to the park in the afternoon", + "go to the park" + ], + "count": 1 + }, + { + "answers": [ + "fallas" + ], + "en_answers": [ + "failures" + ], + "count": 1 + }, + { + "answers": [ + "pilares" + ], + "en_answers": [ + "pillars" + ], + "count": 1 + }, + { + "answers": [ + "jugar a las cartas" + ], + "en_answers": [ + "play cards" + ], + "count": 1 + }, + { + "answers": [ + "juegos de mesa" + ], + "en_answers": [ + "board games" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-02": { + "question": "¿Dónde almuerzan los estudiantes universitarios en España?", + "en_question": "Where do university students have lunch in your country?", + "annotations": [ + { + "answers": [ + "cafetería", + "en la cafetería", + "en bares cercanos a la universidad", + "cafetería universidad" + ], + "en_answers": [ + "cafeteria", + "in the cafeteria", + "in bars close to the university", + "university cafeteria" + ], + "count": 5 + }, + { + "answers": [ + "en casa", + "casa" + ], + "en_answers": [ + "at home", + "home", + "house" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-03": { + "question": "¿En qué mes se suele programar el período de exámenes finales en los institutos de España? (Indica solo con números del 1 al 12).", + "en_question": "Which month is the final exam term usually scheduled at high schools in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 4 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-08": { + "question": "¿Cuántas horas al día suelen pasar los estudiantes en el instituto en España? (Indica el número en números enteros (0~24), sin ningún decimal.)", + "en_question": "How many hours a day do students in your country usually spend at high school? (Provide Arabic numerals in integers (0~24), without any decimal points.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 2 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 2 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-09": { + "question": "¿Cuántos idiomas estudian los alumnos en el instituto en España? (Indica solo en números, por ejemplo, 5.)", + "en_question": "How many languages do students study at high school in your country? (Provide Arabic numerals (e.g., 5) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 4 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-34": { + "question": "¿Cuál es el deporte de equipo más popular que se juega en las escuelas en España?", + "en_question": "What is the most popular sport played in a team at school in your country?", + "annotations": [ + { + "answers": [ + "futbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 5 + }, + { + "answers": [ + "baloncesto" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "fornite" + ], + "en_answers": [ + "fornite" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-35": { + "question": "¿Quién es el comentarista deportivo más popular en España?", + "en_question": "Who is the most popular sport commentator in your country?", + "annotations": [ + { + "answers": [ + "josé maría garcía", + "jose maria garcia" + ], + "en_answers": [ + "josé maría garcía", + "jose maria garcia" + ], + "count": 2 + }, + { + "answers": [ + "andres montes" + ], + "en_answers": [ + "andres montes" + ], + "count": 1 + }, + { + "answers": [ + "pedrerol" + ], + "en_answers": [ + "pedrerol", + "josep pedrerol" + ], + "count": 1 + }, + { + "answers": [ + "sergio knekro garcia" + ], + "en_answers": [ + "sergio knekro garcia" + ], + "count": 1 + }, + { + "answers": [ + "manolo lama" + ], + "en_answers": [ + "manolo lama" + ], + "count": 1 + }, + { + "answers": [ + "ibai" + ], + "en_answers": [ + "ibai llanos", + "ibai" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-36": { + "question": "¿Cuál es el equipo deportivo más popular en España?", + "en_question": "What is the most popular sport team in your country?", + "annotations": [ + { + "answers": [ + "real madrid", + "real madrid fútbol" + ], + "en_answers": [ + "real madrid", + "real madrid soccer", + "real madrid football" + ], + "count": 5 + }, + { + "answers": [ + "fc barcelona", + "barcelona fútbol" + ], + "en_answers": [ + "fc barcelona", + "barcelona football", + "barcelona soccer" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-43": { + "question": "¿Cuáles son los lugares o establecimientos habituales donde la gente en España suele reunirse para ver las retransmisiones deportivas?", + "en_question": "What are the common places or venues where individuals in your country usually gather to watch sports broadcasts?", + "annotations": [ + { + "answers": [ + "bares", + "bar" + ], + "en_answers": [ + "bars", + "pub", + "bar" + ], + "count": 5 + }, + { + "answers": [ + "en casa" + ], + "en_answers": [ + "at home" + ], + "count": 1 + }, + { + "answers": [ + "restaurante" + ], + "en_answers": [ + "restaurant" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-05": { + "question": "¿Cuántas comidas al día suelen tener las personas de España? (Porporciona la respuesta en números (por ejemplo, 5).)", + "en_question": "How many meals per day do people from your country usually have? (Provide Arabic numerals (e.g., 5) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 4 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-06": { + "question": "¿Cuál es la comida más importante del día para la gente de España?", + "en_question": "Which is the most important meal of the day to people from your country?", + "annotations": [ + { + "answers": [ + "comida", + "la comida del mediodía", + "el almuerzo" + ], + "en_answers": [ + "lunch", + "the midday meal" + ], + "count": 4 + }, + { + "answers": [ + "desayuno" + ], + "en_answers": [ + "breakfast" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-08": { + "question": "¿Cuál es el ingrediente más común utilizado en la dieta española?", + "en_question": "What is the most common ingredient used in your country's diet?", + "annotations": [ + { + "answers": [ + "aceite de oliva" + ], + "en_answers": [ + "olive oil" + ], + "count": 4 + }, + { + "answers": [ + "arroz" + ], + "en_answers": [ + "rice" + ], + "count": 2 + }, + { + "answers": [ + "patata" + ], + "en_answers": [ + "potato" + ], + "count": 1 + }, + { + "answers": [ + "sal" + ], + "en_answers": [ + "salt" + ], + "count": 1 + }, + { + "answers": [ + "garbanzos" + ], + "en_answers": [ + "chickpeas" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-09": { + "question": "¿Qué suelen comer los españoles de postre?", + "en_question": "What do people from your country usually eat for dessert?", + "annotations": [ + { + "answers": [ + "fruta" + ], + "en_answers": [ + "fruit" + ], + "count": 3 + }, + { + "answers": [ + "natillas" + ], + "en_answers": [ + "natillas", + "spanish custard" + ], + "count": 2 + }, + { + "answers": [ + "arroz con leche" + ], + "en_answers": [ + "rice pudding" + ], + "count": 2 + }, + { + "answers": [ + "flan" + ], + "en_answers": [ + "custard" + ], + "count": 2 + }, + { + "answers": [ + "yogur" + ], + "en_answers": [ + "yogurt" + ], + "count": 1 + }, + { + "answers": [ + "tarta de santiago" + ], + "en_answers": [ + "santiago cake" + ], + "count": 1 + }, + { + "answers": [ + "churros con chocolate" + ], + "en_answers": [ + "churros with chocolate" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-11": { + "question": "¿Qué día de la semana suelen organizar una comida familiar en España?", + "en_question": "Which day of the week do people usually organize a family meal in your country?", + "annotations": [ + { + "answers": [ + "domingo", + "domingo.-" + ], + "en_answers": [ + "sunday" + ], + "count": 5 + }, + { + "answers": [ + "sábado" + ], + "en_answers": [ + "saturday" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-14": { + "question": "¿Cuál es la bebida caliente más popular en España?", + "en_question": "Which is the most popular hot drink in your country?", + "annotations": [ + { + "answers": [ + "café", + "cafe" + ], + "en_answers": [ + "coffee" + ], + "count": 5 + }, + { + "answers": [ + "chocolate" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + }, + { + "answers": [ + "infusión" + ], + "en_answers": [ + "infusion" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-19": { + "question": "¿Qué suelen beber los jóvenes de España en la discoteca?", + "en_question": "What do young people from your country usually drink at the night club?", + "annotations": [ + { + "answers": [ + "ron cola", + "ron", + "ron whisky" + ], + "en_answers": [ + "rum and coke", + "rum", + "rum whiskey" + ], + "count": 3 + }, + { + "answers": [ + "gin tonic", + "ginebra con refresco", + "ginebra tonica" + ], + "en_answers": [ + "gin and tonic", + "gin with soda" + ], + "count": 3 + }, + { + "answers": [ + "vodka", + "vodka con refresco" + ], + "en_answers": [ + "vodka", + "vodka with soda" + ], + "count": 2 + }, + { + "answers": [ + "cubatas" + ], + "en_answers": [ + "mixed drinks" + ], + "count": 1 + }, + { + "answers": [ + "cerveza" + ], + "en_answers": [ + "beer" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-21": { + "question": "¿En qué mes suelen las personas tomar vacaciones en España? (Proporciona la respuesta en números del 1 al 12).", + "en_question": "At which month do people usually take holidays in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "8", + "agosto" + ], + "en_answers": [ + "8" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-29": { + "question": "¿Qué tradición hay en España para Nochevieja?", + "en_question": "What tradition is there in your country for New Year's Eve?", + "annotations": [ + { + "answers": [ + "tomar uvas", + "campanadas", + "tomar las uvas", + "comer 12 uvas con las campanadas", + "comer las uvas al ritmo del reloj de la plaza", + "comer uvas" + ], + "en_answers": [ + "eat grapes", + "chimes", + "eat the grapes", + "eat 12 grapes with the chimes", + "eat the grapes to the rhythm of the clock in the square" + ], + "count": 5 + }, + { + "answers": [ + "celebración en familia" + ], + "en_answers": [ + "family celebration" + ], + "count": 1 + }, + { + "answers": [ + "comer" + ], + "en_answers": [ + "to eat" + ], + "count": 1 + }, + { + "answers": [ + "usar ropa interior roja" + ], + "en_answers": [ + "wear red underwear" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-38": { + "question": "¿Cuál es el tipo de casa típico para una familia en España?", + "en_question": "Which is the typical type of house for a family in your country?", + "annotations": [ + { + "answers": [ + "piso", + "piso en edificio de viviendas" + ], + "en_answers": [ + "flat", + "apartment", + "apartment in a residential building" + ], + "count": 4 + }, + { + "answers": [ + "unifamiliar" + ], + "en_answers": [ + "single-family" + ], + "count": 1 + }, + { + "answers": [ + "chalet" + ], + "en_answers": [ + "detached house" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-41": { + "question": "¿Dónde suelen vivir las personas mayores dependientes en España?", + "en_question": "Where do the dependent elderly usually live in your country?", + "annotations": [ + { + "answers": [ + "en asilos", + "residencia", + "residencia de ancianos", + "residencias", + "en una residencia" + ], + "en_answers": [ + "in nursing homes", + "residence", + "nursing home", + "residences", + "in a residence" + ], + "count": 5 + }, + { + "answers": [ + "en su casa con un cuidador", + "en casa con personas que ayudan", + "en su casa" + ], + "en_answers": [ + "at home with a caregiver", + "at home with people who help", + "at your home" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-42": { + "question": "¿Cuántas semanas dura la baja por maternidad en España para las madres? (Proporciona la respuesta en números, por ejemplo, 20).", + "en_question": "How long (in weeks) is your country's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "16", + "4 meses" + ], + "en_answers": [ + "16" + ], + "count": 4 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-43": { + "question": "¿Cuántas semanas dura la baja por paternidad en España para los padres? (Proporciona la respuesta en números, por ejemplo, 20).", + "en_question": "How long (in weeks) is your country's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "16" + ], + "en_answers": [ + "16" + ], + "count": 3 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-45": { + "question": "¿Qué tipo de destino se elige comúnmente para unas vacaciones familiares en España?", + "en_question": "What type of destination is commonly chosen for a family vacation in your country?", + "annotations": [ + { + "answers": [ + "canarias" + ], + "en_answers": [ + "canary islands" + ], + "count": 2 + }, + { + "answers": [ + "playa" + ], + "en_answers": [ + "beach" + ], + "count": 1 + }, + { + "answers": [ + "andalucía" + ], + "en_answers": [ + "andalusia" + ], + "count": 1 + }, + { + "answers": [ + "santander" + ], + "en_answers": [ + "santander" + ], + "count": 1 + }, + { + "answers": [ + "pais vasco" + ], + "en_answers": [ + "basque country" + ], + "count": 1 + }, + { + "answers": [ + "mallorca" + ], + "en_answers": [ + "majorca" + ], + "count": 1 + }, + { + "answers": [ + "málaga" + ], + "en_answers": [ + "malaga" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Gu-ch-05": { + "question": "¿Qué deportes prefieren los mayores en España?", + "en_question": "What sports do seniors like the most in your country?", + "annotations": [ + { + "answers": [ + "futbol", + "fútbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 4 + }, + { + "answers": [ + "bolos" + ], + "en_answers": [ + "skittles" + ], + "count": 1 + }, + { + "answers": [ + "pilates" + ], + "en_answers": [ + "pilates" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-06": { + "question": "¿Qué deportes prefieren practicar los hombres en España?", + "en_question": "What sports do men like to play the most in your country?", + "annotations": [ + { + "answers": [ + "futbol", + "fútbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 5 + }, + { + "answers": [ + "baloncesto" + ], + "en_answers": [ + "basketball" + ], + "count": 3 + }, + { + "answers": [ + "tenis" + ], + "en_answers": [ + "tennis" + ], + "count": 3 + }, + { + "answers": [ + "padel" + ], + "en_answers": [ + "padel" + ], + "count": 1 + }, + { + "answers": [ + "fitness" + ], + "en_answers": [ + "physical fitness" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-07": { + "question": "¿Quién es el jugador de baloncesto más famoso de España?", + "en_question": "Who is the most famous basketball player in your country?", + "annotations": [ + { + "answers": [ + "pau gasol" + ], + "en_answers": [ + "pau gasol" + ], + "count": 5 + }, + { + "answers": [ + "ricky rubio" + ], + "en_answers": [ + "ricky rubio" + ], + "count": 1 + }, + { + "answers": [ + "chicho terremoto lopez", + "chicho terremoto" + ], + "en_answers": [ + "chicho terremoto lopez", + "chicho terremoto" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-08": { + "question": "¿Cuál es el deporte más popular entre los niños en España?", + "en_question": "What is the most popular sports among children in your country?", + "annotations": [ + { + "answers": [ + "fútbol" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-09": { + "question": "¿Qué deportes les gusta practicar más a las mujeres en España?", + "en_question": "What sports do women like to play the most in your country?", + "annotations": [ + { + "answers": [ + "padel", + "pádel" + ], + "en_answers": [ + "padel" + ], + "count": 3 + }, + { + "answers": [ + "tenis" + ], + "en_answers": [ + "tennis" + ], + "count": 2 + }, + { + "answers": [ + "running" + ], + "en_answers": [ + "corriendo" + ], + "count": 1 + }, + { + "answers": [ + "entrenamiento en el gym", + "gimnasio" + ], + "en_answers": [ + "workout at the gym", + "workout", + "gym" + ], + "count": 1 + }, + { + "answers": [ + "natacion" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + }, + { + "answers": [ + "atletismo" + ], + "en_answers": [ + "athletics" + ], + "count": 1 + }, + { + "answers": [ + "baloncesto" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Gu-ch-11": { + "question": "¿En qué evento deportivo ha ganado España más medallas de oro en los Juegos Olímpicos?", + "en_question": "What sports event has your country won the most gold medals at the Olympics?", + "annotations": [ + { + "answers": [ + "vela" + ], + "en_answers": [ + "candle" + ], + "count": 2 + }, + { + "answers": [ + "olimpiadas barcelona", + "barcelona 92" + ], + "en_answers": [ + "barcelona olympics", + "barcelona 92" + ], + "count": 2 + }, + { + "answers": [ + "piragüismo", + "baloncesto" + ], + "en_answers": [ + "canoeing", + "basketball" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-15": { + "question": "¿Qué deportes prefieren practicar los estudiantes universitarios en España?", + "en_question": "What sports do male students in university like to play the most in your country?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 3 + }, + { + "answers": [ + "baloncesto" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "atletismo" + ], + "en_answers": [ + "athletics" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Gu-ch-16": { + "question": "¿Cuántas personas hay en una familia de media en España? (Proporciona la respuesta en números (por ejemplo, 12).)", + "en_question": "How many people are there in a family on average in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 4 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 2 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-18": { + "question": "¿Cuántos hijos suelen tener las parejas en España? (Proporciona la respuesta en números)", + "en_question": "How many children do couples usually have in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 5 + }, + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 2 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-31": { + "question": "¿Cuál es la duración en años de la educación primaria en España? (Proporciona la respuesta en números (por ejemplo, 12).)", + "en_question": "What is the duration of elementary school in years in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 4 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-32": { + "question": "¿Cuál es la duración en años de la educación obligatoria en España? (Proporciona la respuesta en números (por ejemplo, 12).)", + "en_question": "What is the duration of compulsory education in years in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 3 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-33": { + "question": "¿A partir de qué edad comienzan los estudiantes a aprender su segundo idioma en España? (Proporciona la respuesta en números (por ejemplo, 12).)", + "en_question": "From which age do students start learning their second language in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + }, + { + "answers": [ + "14" + ], + "en_answers": [ + "14" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "11" + ], + "en_answers": [ + "11" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-38": { + "question": "¿Cuál es la duración de la educación universitaria de grado en España? (Proporciona la respuesta en números (por ejemplo, 12).)", + "en_question": "What is the duration of undergraduate education in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "4", + "4 años" + ], + "en_answers": [ + "4" + ], + "count": 4 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 2 + }, + { + "answers": [ + "3", + "3 - 7" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "7", + "3 - 7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-40": { + "question": "¿A qué hora salen los alumnos de primaria más pequeños del colegio en España? (Indica en formato HH:MM (por ejemplo, 18:00, 09:00).)", + "en_question": "What time do younger elementary school students finish school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 2 + }, + { + "answers": [ + "13:30" + ], + "en_answers": [ + "13:30" + ], + "count": 1 + }, + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 1 + }, + { + "answers": [ + "12:00", + "12-13 medioadía y 16-17 tarde" + ], + "en_answers": [ + "12:00" + ], + "count": 1 + }, + { + "answers": [ + "13:00", + "12-13 medioadía y 16-17 tarde" + ], + "en_answers": [ + "13:00" + ], + "count": 1 + }, + { + "answers": [ + "16:00", + "12-13 medioadía y 16-17 tarde" + ], + "en_answers": [ + "16:00" + ], + "count": 1 + }, + { + "answers": [ + "17:00", + "12-13 medioadía y 16-17 tarde" + ], + "en_answers": [ + "17:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-41": { + "question": "¿Cuántos instrumentos musicales suelen tocar los alumnos de primaria en España? (Proporciona la respuesta en números (por ejemplo, 12).)", + "en_question": "How many musical instruments do elementary school students in your country typically play? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 4 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-02": { + "question": "¿Qué día de la semana prefieren las personas en España para tener cenas de empresa?", + "en_question": "What day of the week do people in your country prefer to have company dinners?", + "annotations": [ + { + "answers": [ + "viernes" + ], + "en_answers": [ + "friday" + ], + "count": 3 + }, + { + "answers": [ + "jueves", + "los jueves" + ], + "en_answers": [ + "thursday", + "on thursdays" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-03": { + "question": "¿Qué región/ciudad tiene el mayor número de empresas financieras en España?", + "en_question": "Which region/city has the highest number of financial companies in your country?", + "annotations": [ + { + "answers": [ + "madrid" + ], + "en_answers": [ + "madrid" + ], + "count": 5 + }, + { + "answers": [ + "barcelona" + ], + "en_answers": [ + "barcelona" + ], + "count": 3 + }, + { + "answers": [ + "valencia" + ], + "en_answers": [ + "valencia" + ], + "count": 1 + }, + { + "answers": [ + "malaga" + ], + "en_answers": [ + "malaga" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-07": { + "question": "¿Cuál es la empresa privada más famosa de España?", + "en_question": "What is the most famous private company in your country?", + "annotations": [ + { + "answers": [ + "zara" + ], + "en_answers": [ + "zara" + ], + "count": 3 + }, + { + "answers": [ + "inditex" + ], + "en_answers": [ + "inditex" + ], + "count": 2 + }, + { + "answers": [ + "mercadona" + ], + "en_answers": [ + "mercadona" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-08": { + "question": "¿Cuál es el número máximo de horas que se pueden trabajar por semana en España? (Porporciona la respuesta en números (por ejemplo, 12).)", + "en_question": "What is the maximum number of hours one can work per week in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 3 + }, + { + "answers": [ + "45" + ], + "en_answers": [ + "45" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-09": { + "question": "¿Qué suelen comer las personas durante una reunión de empresa en España?", + "en_question": "What do people typically eat during company get-together in your country?", + "annotations": [ + { + "answers": [ + "menu" + ], + "en_answers": [ + "menu" + ], + "count": 1 + }, + { + "answers": [ + "jamón" + ], + "en_answers": [ + "ham" + ], + "count": 1 + }, + { + "answers": [ + "pinchos" + ], + "en_answers": [ + "spikes" + ], + "count": 1 + }, + { + "answers": [ + "canapés" + ], + "en_answers": [ + "appetizers" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 3, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-14": { + "question": "¿Cuál es el producto de exportación representativo de España?", + "en_question": "What is the representative export item of your country?", + "annotations": [ + { + "answers": [ + "jamón", + "jamón serrano", + "el jamón ibérico" + ], + "en_answers": [ + "ham", + "serrano ham", + "the iberian ham" + ], + "count": 3 + }, + { + "answers": [ + "aceite de oliva", + "el aceite de oliva" + ], + "en_answers": [ + "olive oil" + ], + "count": 2 + }, + { + "answers": [ + "la tortilla de patata" + ], + "en_answers": [ + "the potato omelette" + ], + "count": 1 + }, + { + "answers": [ + "la paella" + ], + "en_answers": [ + "the paella" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-15": { + "question": "¿Cuánto dura (en horas) la pausa para el almuerzo típica en España? (Porporciona la respuesta en números (p. ej., 2, 3.5).)", + "en_question": "How long (in hours) is the typical lunch break in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 3 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 2 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-16": { + "question": "¿Dónde se quedan las madres durante un cierto período después del parto para recuperarse en España?", + "en_question": "Where do mothers stay for a certain period after childbirth for recovery in your country?", + "annotations": [ + { + "answers": [ + "en el hospital", + "materno", + "hospital" + ], + "en_answers": [ + "in the hospital", + "maternal", + "hospital" + ], + "count": 5 + }, + { + "answers": [ + "casa", + "en casa" + ], + "en_answers": [ + "house", + "at home" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-19": { + "question": "¿Cuál es la flor que se regala más comúnmente en España en el Día de los Padres?", + "en_question": "What is your country's most commonly given flower on Parents' Day?", + "annotations": [ + { + "answers": [ + "rosa", + "rosas", + "rosa roja" + ], + "en_answers": [ + "rose", + "roses", + "red rose" + ], + "count": 3 + }, + { + "answers": [ + "margarita" + ], + "en_answers": [ + "daisy" + ], + "count": 1 + }, + { + "answers": [ + "lirio" + ], + "en_answers": [ + "lily" + ], + "count": 1 + }, + { + "answers": [ + "a los padres ninguna", + "ninguna" + ], + "en_answers": [ + "to the parents, none", + "no to the parents, none" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Ji-ko-22": { + "question": "¿En qué gastan especialmente las personas su primer sueldo en la sociedad española?", + "en_question": "What do people especially spend their first salary on in your country's society?", + "annotations": [ + { + "answers": [ + "ropa" + ], + "en_answers": [ + "clothes" + ], + "count": 2 + }, + { + "answers": [ + "alquiler", + "pagar vivienda" + ], + "en_answers": [ + "rent", + "pay housing" + ], + "count": 2 + }, + { + "answers": [ + "pequeño viaje" + ], + "en_answers": [ + "short trip" + ], + "count": 1 + }, + { + "answers": [ + "algún regalo a un familiar" + ], + "en_answers": [ + "some gift to a relative" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ji-ko-24": { + "question": "¿Cuál es la instalación recreativa preferida por los niños en España?", + "en_question": "What is the most preferred recreational facility among children in your country?", + "annotations": [ + { + "answers": [ + "parque de bolas", + "parques de bolas" + ], + "en_answers": [ + "ball pit", + "ball pits" + ], + "count": 2 + }, + { + "answers": [ + "parque convencional", + "parque infantil" + ], + "en_answers": [ + "conventional park", + "playground" + ], + "count": 2 + }, + { + "answers": [ + "parque de atracciones", + "parques de atracciones" + ], + "en_answers": [ + "amusement park", + "amusement parks" + ], + "count": 2 + }, + { + "answers": [ + "parque warner madrid" + ], + "en_answers": [ + "warner park madrid" + ], + "count": 1 + }, + { + "answers": [ + "los recreativos" + ], + "en_answers": [ + "the arcades" + ], + "count": 1 + }, + { + "answers": [ + "camas elásticas" + ], + "en_answers": [ + "trampolines" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-25": { + "question": "¿Cuáles son las festividades relacionadas con la familia en España?", + "en_question": "What are the family-related holidays in your country?", + "annotations": [ + { + "answers": [ + "navidad", + "navidades" + ], + "en_answers": [ + "christmas" + ], + "count": 4 + }, + { + "answers": [ + "bautizo" + ], + "en_answers": [ + "baptism" + ], + "count": 2 + }, + { + "answers": [ + "dia de reyes" + ], + "en_answers": [ + "three kings' day" + ], + "count": 1 + }, + { + "answers": [ + "fin de año" + ], + "en_answers": [ + "end of year" + ], + "count": 1 + }, + { + "answers": [ + "cumpleaños" + ], + "en_answers": [ + "birthday" + ], + "count": 1 + }, + { + "answers": [ + "comunión" + ], + "en_answers": [ + "communion" + ], + "count": 1 + }, + { + "answers": [ + "boda" + ], + "en_answers": [ + "wedding" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-26": { + "question": "¿Cuáles son los hitos clave asociados con la independencia de los niños de sus padres en la sociedad española?", + "en_question": "What are the key milestones associated with children's independence from their parents in your country's society?", + "annotations": [ + { + "answers": [ + "pagar alquiler propio" + ], + "en_answers": [ + "pay own rent" + ], + "count": 1 + }, + { + "answers": [ + "inicio de la educación formal" + ], + "en_answers": [ + "start of formal education" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 1 + } + }, + "Ji-ko-27": { + "question": "¿Cuál es el regalo habitual que se da al visitar a los padres ancianos en España?", + "en_question": "What is the common gift you give when visiting elderly parents in your country?", + "annotations": [ + { + "answers": [ + "chocolate", + "bombones" + ], + "en_answers": [ + "chocolate", + "chocolates" + ], + "count": 2 + }, + { + "answers": [ + "flores" + ], + "en_answers": [ + "flowers" + ], + "count": 1 + }, + { + "answers": [ + "fotos" + ], + "en_answers": [ + "photos" + ], + "count": 1 + }, + { + "answers": [ + "vino" + ], + "en_answers": [ + "wine" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-28": { + "question": "¿Cuál es el primer día que se celebra después de que nace un niño en España?", + "en_question": "When is the first day that people celebrate after a child is born in your country?", + "annotations": [ + { + "answers": [ + "cumpleaños" + ], + "en_answers": [ + "birthday" + ], + "count": 2 + }, + { + "answers": [ + "bautizo", + "día del bautizo", + "día del nacimiento o el día del bautizo" + ], + "en_answers": [ + "baptism", + "baptism day" + ], + "count": 2 + }, + { + "answers": [ + "día del nacimiento", + "día del nacimiento o el día del bautizo" + ], + "en_answers": [ + "day of birth" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 1 + } + }, + "Ji-ko-29": { + "question": "¿Qué cumpleaños se celebra con mayor pompa en la sociedad española?", + "en_question": "Which age's birthday is celebrated the most grandly in your country's society?", + "annotations": [ + { + "answers": [ + "18 años", + "18", + "el 18 cumpleaños" + ], + "en_answers": [ + "18 years old", + "18", + "the 18th birthday" + ], + "count": 3 + }, + { + "answers": [ + "aniversario" + ], + "en_answers": [ + "anniversary" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Ji-ko-31": { + "question": "¿Dónde suelen estudiar para los exámenes los alumnos de secundaria y bachillerato en España?", + "en_question": "Where do middle and high school students in your country usually study for exams?", + "annotations": [ + { + "answers": [ + "biblioteca" + ], + "en_answers": [ + "library" + ], + "count": 4 + }, + { + "answers": [ + "casa", + "en casa" + ], + "en_answers": [ + "house", + "at home" + ], + "count": 2 + }, + { + "answers": [ + "instituto" + ], + "en_answers": [ + "institute" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-33": { + "question": "¿Adónde suelen ir los estudiantes de secundaria en España después de cenar?", + "en_question": "Where do high school students in your country usually go after dinner?", + "annotations": [ + { + "answers": [ + "se quedan en casa", + "a su casa", + "a casa" + ], + "en_answers": [ + "they stay at home", + "to your house", + "house", + "home" + ], + "count": 3 + }, + { + "answers": [ + "a una discoteca" + ], + "en_answers": [ + "to a nightclub", + "nightclub" + ], + "count": 1 + }, + { + "answers": [ + "a un parque" + ], + "en_answers": [ + "to a park", + "park" + ], + "count": 1 + }, + { + "answers": [ + "a ver la tv" + ], + "en_answers": [ + "to watch tv" + ], + "count": 1 + }, + { + "answers": [ + "a la cama" + ], + "en_answers": [ + "to bed" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-34": { + "question": "¿Cómo van al colegio los alumnos de primaria en España?", + "en_question": "How do elementary school students in your country go to school?", + "annotations": [ + { + "answers": [ + "autobus escolar", + "autocar", + "en autobús", + "autobús" + ], + "en_answers": [ + "school bus", + "coach", + "by bus", + "bus" + ], + "count": 4 + }, + { + "answers": [ + "coche", + "en coche" + ], + "en_answers": [ + "car", + "by car" + ], + "count": 3 + }, + { + "answers": [ + "andando", + "a pie" + ], + "en_answers": [ + "walking", + "on foot" + ], + "count": 3 + }, + { + "answers": [ + "con sus padres" + ], + "en_answers": [ + "with his/her/their parents" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-35": { + "question": "¿Cuál es la forma más común de educación privada en España?", + "en_question": "What is the most common form of private education in your country?", + "annotations": [ + { + "answers": [ + "colegio privado", + "colegios privados", + "colegios privados/concertados" + ], + "en_answers": [ + "private school", + "private schools" + ], + "count": 3 + }, + { + "answers": [ + "concertada", + "colegios concertados", + "colegios privados/concertados", + "colegio concertado" + ], + "en_answers": [ + "semi-private", + "charter school" + ], + "count": 2 + }, + { + "answers": [ + "colegio mayor" + ], + "en_answers": [ + "hall of residence" + ], + "count": 1 + }, + { + "answers": [ + "universidad privada" + ], + "en_answers": [ + "private university" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-36": { + "question": "¿A qué academia o instituto educativo privado de qué asignatura asisten más frecuentemente los estudiantes de secundaria o bachillerato en España?", + "en_question": "Which subject’s academy/private educational institute do middle or high students most frequently attend in your country?", + "annotations": [ + { + "answers": [ + "academia de ingles", + "ingles" + ], + "en_answers": [ + "english academy", + "english" + ], + "count": 2 + }, + { + "answers": [ + "academia de preparación para la selectividad" + ], + "en_answers": [ + "college entrance exam preparation academy" + ], + "count": 1 + }, + { + "answers": [ + "empresariales" + ], + "en_answers": [ + "business" + ], + "count": 1 + }, + { + "answers": [ + "matemáticas" + ], + "en_answers": [ + "mathematics", + "math" + ], + "count": 1 + }, + { + "answers": [ + "química" + ], + "en_answers": [ + "chemistry" + ], + "count": 1 + }, + { + "answers": [ + "colegio del pilar" + ], + "en_answers": [ + "pilar school" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-37": { + "question": "¿Qué tipo de ropa llevan los estudiantes de secundaria y bachillerato al colegio en España?", + "en_question": "What type of clothing do middle and high school students wear to school in your country?", + "annotations": [ + { + "answers": [ + "informal" + ], + "en_answers": [ + "informal" + ], + "count": 1 + }, + { + "answers": [ + "ropa de diario" + ], + "en_answers": [ + "everyday clothes", + "daily clothes" + ], + "count": 1 + }, + { + "answers": [ + "chándal de uniforme" + ], + "en_answers": [ + "uniform tracksuit" + ], + "count": 1 + }, + { + "answers": [ + "chándal deportivo" + ], + "en_answers": [ + "sports tracksuit" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "Ji-ko-38": { + "question": "¿Qué carrera se considera la más difícil para ser admitido en España?", + "en_question": "Which major is considered the most difficult to gain admission to in your country?", + "annotations": [ + { + "answers": [ + "medicina" + ], + "en_answers": [ + "medicine" + ], + "count": 3 + }, + { + "answers": [ + "telecomunicaciones" + ], + "en_answers": [ + "telecommunications" + ], + "count": 1 + }, + { + "answers": [ + "ingeniería civil" + ], + "en_answers": [ + "civil engineering" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-39": { + "question": "¿Cuál es el instrumento musical más comúnmente aprendido por los estudiantes de primaria en España?", + "en_question": "What is the most commonly learned musical instrument by elementary school students in your country?", + "annotations": [ + { + "answers": [ + "flauta" + ], + "en_answers": [ + "flute" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-40": { + "question": "¿Qué suelen hacer los estudiantes de secundaria durante el recreo en los colegios de España?", + "en_question": "What do high school students typically do during break time in schools in your country?", + "annotations": [ + { + "answers": [ + "almorzar", + "comer bocadillo", + "comer" + ], + "en_answers": [ + "to have lunch", + "eat sandwich", + "to eat" + ], + "count": 4 + }, + { + "answers": [ + "jugar", + "jugar al fútbol" + ], + "en_answers": [ + "play", + "play soccer", + "play football" + ], + "count": 3 + }, + { + "answers": [ + "hablar", + "charlar" + ], + "en_answers": [ + "to speak", + "chat" + ], + "count": 2 + }, + { + "answers": [ + "fumar" + ], + "en_answers": [ + "to smoke" + ], + "count": 1 + }, + { + "answers": [ + "ir aseo" + ], + "en_answers": [ + "go to toilet" + ], + "count": 1 + }, + { + "answers": [ + "jugar a fútbol" + ], + "en_answers": [ + "play soccer", + "play football" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-41": { + "question": "¿Qué tipo de zapatos usan los estudiantes en las escuelas en España?", + "en_question": "What kind of shoes do students wear in schools in your country?", + "annotations": [ + { + "answers": [ + "zapatillas deportivas", + "deportivas", + "zapatillas deporte" + ], + "en_answers": [ + "sports shoes", + "sports" + ], + "count": 5 + }, + { + "answers": [ + "zapatos para el colegio", + "mocasines" + ], + "en_answers": [ + "school shoes", + "moccasins" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-42": { + "question": "¿Cuáles son las asignaturas obligatorias en la prueba de acceso a la universidad en España?", + "en_question": "What are the required subjects in your country's university entrance exam?", + "annotations": [ + { + "answers": [ + "historia" + ], + "en_answers": [ + "history" + ], + "count": 4 + }, + { + "answers": [ + "lengua y literatura", + "lengua", + "castellano" + ], + "en_answers": [ + "language and literature", + "language", + "spanish", + "castilian" + ], + "count": 4 + }, + { + "answers": [ + "matematicas" + ], + "en_answers": [ + "mathematics" + ], + "count": 2 + }, + { + "answers": [ + "inglés" + ], + "en_answers": [ + "english" + ], + "count": 2 + }, + { + "answers": [ + "historia de la filosofía" + ], + "en_answers": [ + "history of philosophy" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ji-ko-44": { + "question": "¿Qué zona (dentro de una ciudad) en España tiene el mayor fervor académico?", + "en_question": "Which region (within a city) in your country has the highest academic fervor?", + "annotations": [ + { + "answers": [ + "campus universitario.", + "universidad", + "donde se encuentra la universidad" + ], + "en_answers": [ + "university campus", + "university", + "where is the university located" + ], + "count": 3 + }, + { + "answers": [ + "la zona donde están los centros educativos" + ], + "en_answers": [ + "the area where the educational centers are" + ], + "count": 1 + } + ], + "idks": { + "no entiendo la pregunta": 1, + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-45": { + "question": "¿Qué es lo que más esperan las personas de los festivales universitarios en España?", + "en_question": "What do people look forward to the most at university festivals in your country?", + "annotations": [ + { + "answers": [ + "alcohol barato", + "emborracharse", + "alcohol" + ], + "en_answers": [ + "cheap alcohol", + "to get drunk", + "alcohol" + ], + "count": 3 + }, + { + "answers": [ + "mucha fiesta", + "la fiesta" + ], + "en_answers": [ + "a lot of partying", + "the party", + "party" + ], + "count": 2 + }, + { + "answers": [ + "los artistas" + ], + "en_answers": [ + "the artists" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-01": { + "question": "¿Cuál es el segundo deporte más popular en España?", + "en_question": "What is the second most popular sport in your country?", + "annotations": [ + { + "answers": [ + "baloncesto" + ], + "en_answers": [ + "basketball" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-02": { + "question": "¿Cuál es el deporte más popular jugado sin pelota en España?", + "en_question": "What is the most popular sport played without a ball in your country?", + "annotations": [ + { + "answers": [ + "ajedrez" + ], + "en_answers": [ + "chess" + ], + "count": 2 + }, + { + "answers": [ + "natación" + ], + "en_answers": [ + "swimming" + ], + "count": 2 + }, + { + "answers": [ + "atletismo" + ], + "en_answers": [ + "athletics" + ], + "count": 2 + }, + { + "answers": [ + "formula 1" + ], + "en_answers": [ + "formula 1" + ], + "count": 1 + }, + { + "answers": [ + "ciclismo" + ], + "en_answers": [ + "cycling" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-09": { + "question": "¿Qué deportes están más asociados con la clase alta en España?", + "en_question": "What sports are most associated with the upper class in your country?", + "annotations": [ + { + "answers": [ + "golf" + ], + "en_answers": [ + "golf" + ], + "count": 3 + }, + { + "answers": [ + "padel" + ], + "en_answers": [ + "padel" + ], + "count": 2 + }, + { + "answers": [ + "vela" + ], + "en_answers": [ + "candle" + ], + "count": 1 + }, + { + "answers": [ + "casino" + ], + "en_answers": [ + "casino" + ], + "count": 1 + }, + { + "answers": [ + "aviacion" + ], + "en_answers": [ + "aviation" + ], + "count": 1 + }, + { + "answers": [ + "tenis" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + }, + { + "answers": [ + "polo" + ], + "en_answers": [ + "polo" + ], + "count": 1 + }, + { + "answers": [ + "hipica" + ], + "en_answers": [ + "equestrian" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-13": { + "question": "¿Cuál es el deporte acuático más popular en España?", + "en_question": "What is the most popular water sport in your country?", + "annotations": [ + { + "answers": [ + "natación", + "nadar" + ], + "en_answers": [ + "swimming", + "swim" + ], + "count": 5 + }, + { + "answers": [ + "waterpolo" + ], + "en_answers": [ + "water polo" + ], + "count": 1 + }, + { + "answers": [ + "surf" + ], + "en_answers": [ + "surf" + ], + "count": 1 + }, + { + "answers": [ + "buceo" + ], + "en_answers": [ + "diving" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-14": { + "question": "¿Cuál es el deporte mental más popular en España?", + "en_question": "What is the most popular mental sport in your country?", + "annotations": [ + { + "answers": [ + "ajedrez" + ], + "en_answers": [ + "chess" + ], + "count": 4 + }, + { + "answers": [ + "futbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-18": { + "question": "¿Cuántos días de vacaciones al año recibe un trabajador estándar en España? (Porporciona la respuesta en números (por ejemplo, 12).)", + "en_question": "How many holiday days per year does a standard worker gets in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 4 + }, + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-19": { + "question": "¿Qué región de España ha estado tradicionalmente asociada con la agricultura?", + "en_question": "What region in your country has been traditionally associated with agriculture?", + "annotations": [ + { + "answers": [ + "andalucía" + ], + "en_answers": [ + "andalusia" + ], + "count": 4 + }, + { + "answers": [ + "extremadura" + ], + "en_answers": [ + "extremadura" + ], + "count": 2 + }, + { + "answers": [ + "galicia" + ], + "en_answers": [ + "galicia" + ], + "count": 1 + }, + { + "answers": [ + "castilla y leon" + ], + "en_answers": [ + "castile and león" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-21": { + "question": "¿A qué hora, si la hay, suele la gente salir del trabajo para comer en España? (Indicar en formato HH:MM (por ejemplo, 18:00, 09:00).)", + "en_question": "What time, if any, do people usually leave work for lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 4 + }, + { + "answers": [ + "13:30" + ], + "en_answers": [ + "13:30" + ], + "count": 2 + }, + { + "answers": [ + "15:00" + ], + "en_answers": [ + "15:00" + ], + "count": 1 + }, + { + "answers": [ + "16:00" + ], + "en_answers": [ + "16:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-31": { + "question": "¿A qué hora suelen salir los estudiantes de secundaria del colegio en España? (Indica en formato HH:MM (por ejemplo, 18:00, 09:00).)", + "en_question": "What time do high school students tend to leave school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "14:30" + ], + "en_answers": [ + "14:30" + ], + "count": 2 + }, + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 2 + }, + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 2 + }, + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 1 + }, + { + "answers": [ + "16:00" + ], + "en_answers": [ + "16:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-32": { + "question": "¿Qué deporte suelen practicar los alumnos de primaria en los colegios de España?", + "en_question": "What sport do elementary school students tend to practice at school in your country?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 4 + }, + { + "answers": [ + "baloncesto", + "básquet" + ], + "en_answers": [ + "basketball" + ], + "count": 3 + }, + { + "answers": [ + "voleibol", + "volleyball" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "gimnasia" + ], + "en_answers": [ + "gymnastics" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-36": { + "question": "¿Cuántas semanas duran las vacaciones de verano en las escuelas primarias de España? (Proporciona la respuesta en números (por ejemplo, 7, 8).)", + "en_question": "How long (in weeks) are summer vacations at elementary schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "12", + "3 meses" + ], + "en_answers": [ + "12", + "3 months" + ], + "count": 3 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-37": { + "question": "¿Cuántas semanas duran las vacaciones de verano en las universidades de España? (Proporciona la respuesta en números (por ejemplo, 7, 8)).", + "en_question": "How long (in weeks) are summer vacations at universities in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 2 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 2 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-39": { + "question": "¿A qué edad comienza la educación primaria en España? (Proporciona la respuesta en números (por ejemplo, 7, 8)).", + "en_question": "At what age does elementary education begin in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 3 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-43": { + "question": "¿Cuántos idiomas se estudian en la educación primaria además del idioma oficial de España? (Proporciona la respuesta en números (por ejemplo, 7, 8))", + "en_question": "How many languages are studied in elementary education besides your country's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-01": { + "question": "¿Qué utensilios de comida se utilizan comúnmente en España?", + "en_question": "What eating utensils do people commonly used in your country?", + "annotations": [ + { + "answers": [ + "tenedor" + ], + "en_answers": [ + "fork" + ], + "count": 4 + }, + { + "answers": [ + "cuchara", + "cuchillo y cuchara" + ], + "en_answers": [ + "spoon" + ], + "count": 4 + }, + { + "answers": [ + "cuchillo", + "chucillo", + "cuchillo y cuchara" + ], + "en_answers": [ + "knife" + ], + "count": 4 + }, + { + "answers": [ + "platos" + ], + "en_answers": [ + "dishes" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-04": { + "question": "¿Qué bebida no-alcohólica le suele gustar a la gente en España?", + "en_question": "What soft drink do people in your country like to have?", + "annotations": [ + { + "answers": [ + "coca cola" + ], + "en_answers": [ + "coca cola", + "coke" + ], + "count": 4 + }, + { + "answers": [ + "aquarius" + ], + "en_answers": [ + "aquarius" + ], + "count": 1 + }, + { + "answers": [ + "café" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-06": { + "question": "¿Cuál es el alcohol tradicional más popular en España?", + "en_question": "What is the most popular traditional alcohol in your country?", + "annotations": [ + { + "answers": [ + "vino" + ], + "en_answers": [ + "wine" + ], + "count": 4 + }, + { + "answers": [ + "sidra" + ], + "en_answers": [ + "cider" + ], + "count": 1 + }, + { + "answers": [ + "ron" + ], + "en_answers": [ + "rum" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-07": { + "question": "¿Cuánto tiempo (en horas) tardan las personas en España en promedio para cenar en un restaurante? (Porporciona la respuesta en números (p. ej., 2, 3.5).)", + "en_question": "How long (in hours) on average does it take for people in your country to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-09": { + "question": "¿A qué hora suelen cenar las personas en España? (Indica en formato HH:MM (por ejemplo, 18:00, 09:00).)", + "en_question": "What time do people usually have dinner in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "21:00" + ], + "en_answers": [ + "21:00" + ], + "count": 3 + }, + { + "answers": [ + "20:00" + ], + "en_answers": [ + "20:00" + ], + "count": 2 + }, + { + "answers": [ + "22:00" + ], + "en_answers": [ + "22:00" + ], + "count": 2 + }, + { + "answers": [ + "22:30" + ], + "en_answers": [ + "22:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-12": { + "question": "¿Qué tipo de sopa les gusta tomar a las personas de España?", + "en_question": "What kind of soup do people from your country like to have?", + "annotations": [ + { + "answers": [ + "sopa de cocido" + ], + "en_answers": [ + "stew soup" + ], + "count": 3 + }, + { + "answers": [ + "fideos", + "sopa de fideos", + "sopa de fídeos" + ], + "en_answers": [ + "noodles", + "noodle soup" + ], + "count": 3 + }, + { + "answers": [ + "pollo", + "sopa de pollo" + ], + "en_answers": [ + "chicken", + "chicken soup" + ], + "count": 2 + }, + { + "answers": [ + "gazpacho" + ], + "en_answers": [ + "cold tomato soup" + ], + "count": 1 + }, + { + "answers": [ + "verduras" + ], + "en_answers": [ + "vegetables" + ], + "count": 1 + }, + { + "answers": [ + "sopa de letras" + ], + "en_answers": [ + "alphabet soup" + ], + "count": 1 + }, + { + "answers": [ + "sopa de jamón" + ], + "en_answers": [ + "ham soup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-13": { + "question": "¿Qué comida callejera les gusta comer a las personas de España?", + "en_question": "What street food do people from your country like to eat?", + "annotations": [ + { + "answers": [ + "churros" + ], + "en_answers": [ + "churros" + ], + "count": 2 + }, + { + "answers": [ + "patatas fritas" + ], + "en_answers": [ + "french fries", + "fries", + "chips" + ], + "count": 1 + }, + { + "answers": [ + "pipas" + ], + "en_answers": [ + "sunflower seeds" + ], + "count": 1 + }, + { + "answers": [ + "bocadillo" + ], + "en_answers": [ + "sandwich" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-15": { + "question": "¿Qué tipo de mariscos les gusta comer a las personas de España?", + "en_question": "What kind of seafood do people from your country like to eat?", + "annotations": [ + { + "answers": [ + "gambas" + ], + "en_answers": [ + "prawns", + "shrimp" + ], + "count": 3 + }, + { + "answers": [ + "langostinos" + ], + "en_answers": [ + "prawns", + "shrimp" + ], + "count": 2 + }, + { + "answers": [ + "mejillones" + ], + "en_answers": [ + "mussels" + ], + "count": 2 + }, + { + "answers": [ + "langosta" + ], + "en_answers": [ + "lobster" + ], + "count": 1 + }, + { + "answers": [ + "bogavante" + ], + "en_answers": [ + "lobster" + ], + "count": 1 + }, + { + "answers": [ + "calamares" + ], + "en_answers": [ + "squid" + ], + "count": 1 + }, + { + "answers": [ + "pulpo" + ], + "en_answers": [ + "octopus" + ], + "count": 1 + }, + { + "answers": [ + "percebes" + ], + "en_answers": [ + "goose barnacles" + ], + "count": 1 + }, + { + "answers": [ + "nécoras" + ], + "en_answers": [ + "velvet crabs" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-16": { + "question": "¿Cuál es el festival más grande de España?", + "en_question": "What is the biggest festival in your country?", + "annotations": [ + { + "answers": [ + "las fallas" + ], + "en_answers": [ + "the fallas" + ], + "count": 2 + }, + { + "answers": [ + "benicassim" + ], + "en_answers": [ + "benicàssim" + ], + "count": 1 + }, + { + "answers": [ + "primavera sound" + ], + "en_answers": [ + "spring sound" + ], + "count": 1 + }, + { + "answers": [ + "la feria de abril" + ], + "en_answers": [ + "the april fair" + ], + "count": 1 + }, + { + "answers": [ + "el carnaval de canarias" + ], + "en_answers": [ + "the carnival of the canary islands" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Jod-ch-28": { + "question": "¿Cuál es el medio de transporte público más utilizado por las personas para viajar entre ciudades en España?", + "en_question": "What is the most commonly used public transport by people when travelling between cites in your country?", + "annotations": [ + { + "answers": [ + "tren", + "ave", + "alta velocidad española" + ], + "en_answers": [ + "train", + "high-speed train" + ], + "count": 5 + }, + { + "answers": [ + "autobús", + "bus" + ], + "en_answers": [ + "bus" + ], + "count": 3 + }, + { + "answers": [ + "coche" + ], + "en_answers": [ + "car" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-30": { + "question": "¿Cuáles son las decoraciones o símbolos específicos asociados con el festival más grande de España?", + "en_question": "What are the specific decorations or symbols associated with the most biggest festival in your country?", + "annotations": [ + { + "answers": [ + "banderas", + "bandera" + ], + "en_answers": [ + "flags", + "flag" + ], + "count": 3 + }, + { + "answers": [ + "vino" + ], + "en_answers": [ + "wine" + ], + "count": 1 + }, + { + "answers": [ + "pinchos" + ], + "en_answers": [ + "spikes" + ], + "count": 1 + }, + { + "answers": [ + "vírgenes" + ], + "en_answers": [ + "virgins" + ], + "count": 1 + }, + { + "answers": [ + "cruces cristianas" + ], + "en_answers": [ + "christian crosses" + ], + "count": 1 + }, + { + "answers": [ + "figuras religiosas" + ], + "en_answers": [ + "religious figures" + ], + "count": 1 + }, + { + "answers": [ + "palmas" + ], + "en_answers": [ + "palm trees", + "palms" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Jod-ch-37": { + "question": "¿Qué deportes les gusta ver más a las mujeres en España?", + "en_question": "What sports do women like to watch the most in your country?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 3 + }, + { + "answers": [ + "baloncesto" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "tenis" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-38": { + "question": "¿Qué deportes prefieren ver más los hombres en España?", + "en_question": "What sports do men like to watch the most in your country?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 5 + }, + { + "answers": [ + "baloncesto" + ], + "en_answers": [ + "basketball" + ], + "count": 3 + }, + { + "answers": [ + "fórmula 1", + "formula 1" + ], + "en_answers": [ + "formula 1" + ], + "count": 2 + }, + { + "answers": [ + "carreras motor", + "motociclismo" + ], + "en_answers": [ + "motor racing", + "motorcycling" + ], + "count": 2 + }, + { + "answers": [ + "ciclismo" + ], + "en_answers": [ + "cycling" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-41": { + "question": "¿Cuál es la actividad de ocio común en la que participan las mujeres de unos 20 años en España?", + "en_question": "What is the common leisure activity that females in their 20s in your country engage in?", + "annotations": [ + { + "answers": [ + "ir a comprar", + "compras", + "ir de compras" + ], + "en_answers": [ + "go shopping", + "shopping" + ], + "count": 3 + }, + { + "answers": [ + "discoteca", + "salir de marcha" + ], + "en_answers": [ + "nightclub", + "go out partying" + ], + "count": 2 + }, + { + "answers": [ + "cine" + ], + "en_answers": [ + "cinema" + ], + "count": 1 + }, + { + "answers": [ + "ir a comer" + ], + "en_answers": [ + "go to eat" + ], + "count": 1 + }, + { + "answers": [ + "ir a cenar" + ], + "en_answers": [ + "go to dinner" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-42": { + "question": "¿Cuál es la actividad de ocio común en la que participan los hombres de unos 20 años en España?", + "en_question": "What is the common leisure activity that males in their 20s in your country engage in?", + "annotations": [ + { + "answers": [ + "jugar al fútbol", + "futbol" + ], + "en_answers": [ + "play soccer", + "play football", + "soccer", + "football" + ], + "count": 2 + }, + { + "answers": [ + "salir de fiesta por las noches" + ], + "en_answers": [ + "going out partying at night" + ], + "count": 1 + }, + { + "answers": [ + "videoconsolas" + ], + "en_answers": [ + "game consoles" + ], + "count": 1 + }, + { + "answers": [ + "escuchar musica" + ], + "en_answers": [ + "listen to music" + ], + "count": 1 + }, + { + "answers": [ + "dar un paseo" + ], + "en_answers": [ + "take a walk" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-46": { + "question": "¿Cuánto tiempo (en horas) suele durar la pausa que la gente hace después de comer entre semana en España? (Proporciona la respuesta en números con hasta un decimal (p. ej., 2, 3.5).)", + "en_question": "How long (in hours) do people usually take a break after lunch on a weekday in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-48": { + "question": "¿Qué comen las personas para almorzar durante los días laborables en España?", + "en_question": "What do people eat for lunch during the working days in your country?", + "annotations": [ + { + "answers": [ + "bocadillo", + "café y bocadillo" + ], + "en_answers": [ + "sandwich", + "coffee and sandwich" + ], + "count": 2 + }, + { + "answers": [ + "café y tostadas" + ], + "en_answers": [ + "coffee and toast" + ], + "count": 1 + }, + { + "answers": [ + "comida mediterránea" + ], + "en_answers": [ + "mediterranean food" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-50": { + "question": "¿Cuál es el tiempo medio de desplazamiento (en minutos) para ir a trabajar en España? (indicar sólo con un número (por ejemplo, 1).)", + "en_question": "What is the average commute time (in minutes) for people in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 5 + }, + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-51": { + "question": "¿Cuál es el medio de transporte más común que la gente utiliza para ir al trabajo en España?", + "en_question": "What is the most common transportation that people take to get to work in your country?", + "annotations": [ + { + "answers": [ + "coche", + "coche particular" + ], + "en_answers": [ + "car", + "private car" + ], + "count": 5 + }, + { + "answers": [ + "autobús" + ], + "en_answers": [ + "bus" + ], + "count": 3 + }, + { + "answers": [ + "cercanías" + ], + "en_answers": [ + "commuter train" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-54": { + "question": "¿Cuántos días dura el permiso por matrimonio en España? (Proporciona la respuesta en números, por ejemplo, 12.)", + "en_question": "How long (in days) is the marriage leave in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 5 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-56": { + "question": "¿Cuál es la edad de jubilación típica para las mujeres en España? (Porporciona la respuesta en números (por ejemplo, 12).)", + "en_question": "What is the typical retirement age for women in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "65" + ], + "en_answers": [ + "65" + ], + "count": 4 + }, + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 1 + }, + { + "answers": [ + "67" + ], + "en_answers": [ + "67" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-57": { + "question": "¿Cuál es la edad de jubilación típica para los hombres en España? (Porporciona la respuesta en números (por ejemplo, 12).)", + "en_question": "What is the typical retirement age for men in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "65" + ], + "en_answers": [ + "65" + ], + "count": 3 + }, + { + "answers": [ + "67" + ], + "en_answers": [ + "67" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-58": { + "question": "¿Cuál es la profesión más respetada en España?", + "en_question": "Which profession is the most respected in your country?", + "annotations": [ + { + "answers": [ + "médico", + "medico" + ], + "en_answers": [ + "doctor" + ], + "count": 3 + }, + { + "answers": [ + "ingeniero" + ], + "en_answers": [ + "engineer" + ], + "count": 1 + }, + { + "answers": [ + "abogado" + ], + "en_answers": [ + "lawyer" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-60": { + "question": "¿Cuál es la duración (en horas) de una jornada laboral típica en España? (Porporciona la respuesta en números (0~24).)", + "en_question": "What is the duration (in hours) of a typical workday in your country? (Provide Arabic numerals (0~24) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-61": { + "question": "¿Cuál es la ocupación más preferida entre las mujeres en España?", + "en_question": "Which occupation is most preferred among females in your country?", + "annotations": [ + { + "answers": [ + "ropa" + ], + "en_answers": [ + "clothing", + "clothes" + ], + "count": 1 + }, + { + "answers": [ + "ligar" + ], + "en_answers": [ + "to flirt" + ], + "count": 1 + }, + { + "answers": [ + "redes sociales" + ], + "en_answers": [ + "social networks" + ], + "count": 1 + }, + { + "answers": [ + "abogada" + ], + "en_answers": [ + "lawyer" + ], + "count": 1 + }, + { + "answers": [ + "enfermería" + ], + "en_answers": [ + "nursing", + "nurse" + ], + "count": 1 + }, + { + "answers": [ + "maestra" + ], + "en_answers": [ + "teacher" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-62": { + "question": "¿Cuál es la ocupación más preferida entre los hombres en España?", + "en_question": "Which occupation is most preferred among males in your country?", + "annotations": [ + { + "answers": [ + "comercial" + ], + "en_answers": [ + "commercial" + ], + "count": 1 + }, + { + "answers": [ + "médico" + ], + "en_answers": [ + "doctor" + ], + "count": 1 + }, + { + "answers": [ + "profesor" + ], + "en_answers": [ + "teacher" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "Ki-pe-17": { + "question": "¿Hasta qué nivel suelen estudiar los estudiantes en España de media? (por ejemplo, primaria, secundaria)", + "en_question": "On average, how far do students typically pursue their education in your country? (e.g., elementary, high school)", + "annotations": [ + { + "answers": [ + "secundaria", + "eso" + ], + "en_answers": [ + "secondary", + "compulsory secondary education", + "eso" + ], + "count": 4 + }, + { + "answers": [ + "bachillerato" + ], + "en_answers": [ + "high school diploma", + "high school" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-24": { + "question": "¿Qué idioma se enseña en las escuelas de España además del inglés?", + "en_question": "What language is taught in schools in your country besides English?", + "annotations": [ + { + "answers": [ + "francés" + ], + "en_answers": [ + "french" + ], + "count": 5 + }, + { + "answers": [ + "latin", + "latín" + ], + "en_answers": [ + "latin" + ], + "count": 2 + }, + { + "answers": [ + "aleman" + ], + "en_answers": [ + "german" + ], + "count": 1 + }, + { + "answers": [ + "chino" + ], + "en_answers": [ + "chinese" + ], + "count": 1 + }, + { + "answers": [ + "griego" + ], + "en_answers": [ + "greek" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-30": { + "question": "¿Qué días de la semana están cerradas las escuelas en España?", + "en_question": "What days of the week are schools closed in your country?", + "annotations": [ + { + "answers": [ + "sabado y domingo", + "sábado y domingo" + ], + "en_answers": [ + "saturday and sunday" + ], + "count": 3 + }, + { + "answers": [ + "semana blanca" + ], + "en_answers": [ + "white week" + ], + "count": 1 + }, + { + "answers": [ + "sábado" + ], + "en_answers": [ + "saturday" + ], + "count": 1 + }, + { + "answers": [ + "domingo" + ], + "en_answers": [ + "sunday" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-32": { + "question": "¿Qué comida suelen preparar los anfitriones para los invitados en España?", + "en_question": "What food do the hosts usually prepare for the guests in your country?", + "annotations": [ + { + "answers": [ + "paella" + ], + "en_answers": [ + "paella" + ], + "count": 1 + }, + { + "answers": [ + "lechazo asado" + ], + "en_answers": [ + "roast suckling lamb" + ], + "count": 1 + }, + { + "answers": [ + "carne al horno" + ], + "en_answers": [ + "roast meat" + ], + "count": 1 + }, + { + "answers": [ + "pescado al horno" + ], + "en_answers": [ + "baked fish" + ], + "count": 1 + }, + { + "answers": [ + "marisco" + ], + "en_answers": [ + "seafood" + ], + "count": 1 + }, + { + "answers": [ + "tapas" + ], + "en_answers": [ + "appetizers" + ], + "count": 1 + }, + { + "answers": [ + "tortilla de patata" + ], + "en_answers": [ + "potato omelette" + ], + "count": 1 + }, + { + "answers": [ + "asados" + ], + "en_answers": [ + "roasts" + ], + "count": 1 + }, + { + "answers": [ + "guisos" + ], + "en_answers": [ + "stews" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ki-pe-34": { + "question": "¿Cuál es la bebida habitual en el desayuno en España?", + "en_question": "What is the usual drink in the breakfast in your country?", + "annotations": [ + { + "answers": [ + "café", + "cafe" + ], + "en_answers": [ + "coffee" + ], + "count": 5 + }, + { + "answers": [ + "leche" + ], + "en_answers": [ + "milk" + ], + "count": 3 + }, + { + "answers": [ + "zumo" + ], + "en_answers": [ + "juice" + ], + "count": 3 + }, + { + "answers": [ + "colacao", + "leche con cacao" + ], + "en_answers": [ + "cocoa drink", + "colacao", + "milk with cocoa" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-36": { + "question": "Exceptuando la comida originaria de España, ¿qué cocina (de qué país) es más popular en España?", + "en_question": "Except the food original from your country, which country's food is more popular in your country?", + "annotations": [ + { + "answers": [ + "italiana", + "italia" + ], + "en_answers": [ + "italian", + "italy" + ], + "count": 4 + }, + { + "answers": [ + "china" + ], + "en_answers": [ + "china" + ], + "count": 2 + }, + { + "answers": [ + "francia" + ], + "en_answers": [ + "france" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-39": { + "question": "¿Qué comida se suele preparar para un picnic familiar en España?", + "en_question": "What food is usually prepared for a family picnic in your country?", + "annotations": [ + { + "answers": [ + "ensaladilla rusa", + "ensaladilla" + ], + "en_answers": [ + "russian salad" + ], + "count": 3 + }, + { + "answers": [ + "filetes empanados", + "filete empanado" + ], + "en_answers": [ + "breaded fillets", + "breaded fillet" + ], + "count": 3 + }, + { + "answers": [ + "tortillas de patatas", + "tortilla", + "tortilla de patata" + ], + "en_answers": [ + "potato omelettes", + "omelette", + "potato omelette" + ], + "count": 3 + }, + { + "answers": [ + "sandwich" + ], + "en_answers": [ + "sandwich" + ], + "count": 1 + }, + { + "answers": [ + "empanada" + ], + "en_answers": [ + "stuffed bread", + "pastry" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-40": { + "question": "¿Qué comida de España se considera asquerosa por el resto del mundo?", + "en_question": "Which food from your country is considered disgusting by the rest of the world?", + "annotations": [ + { + "answers": [ + "caracoles" + ], + "en_answers": [ + "snails" + ], + "count": 2 + }, + { + "answers": [ + "conejo" + ], + "en_answers": [ + "rabbit" + ], + "count": 2 + }, + { + "answers": [ + "pulpo" + ], + "en_answers": [ + "octopus" + ], + "count": 1 + }, + { + "answers": [ + "ninguna" + ], + "en_answers": [ + "none" + ], + "count": 1 + }, + { + "answers": [ + "callos" + ], + "en_answers": [ + "tripe", + "tripes" + ], + "count": 1 + }, + { + "answers": [ + "el rabo de toro" + ], + "en_answers": [ + "oxtail" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-43": { + "question": "¿Cómo se llama el pan popular en España?", + "en_question": "What is the name of the popular bread in your country?", + "annotations": [ + { + "answers": [ + "barra", + "barra de cuarto", + "barra de pan" + ], + "en_answers": [ + "baguette" + ], + "count": 4 + }, + { + "answers": [ + "pan blanco" + ], + "en_answers": [ + "white bread" + ], + "count": 1 + }, + { + "answers": [ + "hogaza" + ], + "en_answers": [ + "loaf" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-51": { + "question": "¿A qué hora cierran las oficinas gubernamentales en España? (Indicar en formato HH:MM, por ejemplo, 18:00, 09:00).", + "en_question": "What time of day are government offices closed in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "15:00" + ], + "en_answers": [ + "15:00" + ], + "count": 2 + }, + { + "answers": [ + "20:00" + ], + "en_answers": [ + "20:00" + ], + "count": 2 + }, + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 1 + }, + { + "answers": [ + "21:00" + ], + "en_answers": [ + "21:00" + ], + "count": 1 + }, + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-53": { + "question": "¿Cuál es la hora de inicio habitual de las oficinas gubernamentales en España? (Indicar en formato HH:MM, por ejemplo, 18:00, 09:00).", + "en_question": "What is the normal start time of government offices in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 3 + }, + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 2 + }, + { + "answers": [ + "08:30" + ], + "en_answers": [ + "08:30" + ], + "count": 1 + }, + { + "answers": [ + "15:00" + ], + "en_answers": [ + "15:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-01": { + "question": "¿Qué festivo nacional tiene la mayor duración en España?", + "en_question": "What national holiday has the longest duration in your country?", + "annotations": [ + { + "answers": [ + "semana santa" + ], + "en_answers": [ + "holy week" + ], + "count": 2 + }, + { + "answers": [ + "las fiestas navideñas" + ], + "en_answers": [ + "the christmas holidays" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Kik-in-02": { + "question": "¿Cuáles son las actividades comunes que la gente de España realiza para celebrar el día de la Independencia?", + "en_question": "What are the common activities people from your country do to celebrate Independence day?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Kik-in-04": { + "question": "¿Qué se instala frente a la casa cuando muere un miembro de la familia en España?", + "en_question": "What is installed in front of the house when a family member dies in your country?", + "annotations": [ + { + "answers": [ + "cruz" + ], + "en_answers": [ + "cross" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "no-answer": 1, + "idk": 1 + } + }, + "Kik-in-05": { + "question": "¿Cuándo se suele celebrar una fiesta o ceremonia de embarazo en España?", + "en_question": "When is a pregnancy celebration or ceremony usually held in your country?", + "annotations": [ + { + "answers": [ + "baby shower" + ], + "en_answers": [ + "baby shower" + ], + "count": 1 + }, + { + "answers": [ + "pocos meses antes de que nazca el bebé" + ], + "en_answers": [ + "a few months before the baby is born" + ], + "count": 1 + }, + { + "answers": [ + "hacia el final del embarazo" + ], + "en_answers": [ + "towards the end of pregnancy" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 0, + "no-answer": 0 + } + }, + "Kik-in-06": { + "question": "¿Qué evento se suele celebrar antes de una boda en España?", + "en_question": "What event is usually held before a wedding in your country?", + "annotations": [ + { + "answers": [ + "despedida de soltero", + "despedida de soltero/a" + ], + "en_answers": [ + "bachelor party", + "bachelorette" + ], + "count": 4 + }, + { + "answers": [ + "cena de ensayo", + "preboda" + ], + "en_answers": [ + "rehearsal dinner", + "pre-wedding" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-07": { + "question": "¿Qué se suele compartir con los niños durante el Año Nuevo Lunar en España?", + "en_question": "What is usually shared to the children during (Lunar) New Year in your country?", + "annotations": [ + { + "answers": [ + "regalos" + ], + "en_answers": [ + "gifts", + "presents" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 2, + "no-answer": 0 + } + }, + "Kik-in-08": { + "question": "¿Qué actividades se suelen realizar en España los días previos al Ramadán?", + "en_question": "What activities are usually done days before Ramadan in your country?", + "annotations": [ + { + "answers": [ + "ver las tertulias" + ], + "en_answers": [ + "watch the talk shows" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 0 + } + }, + "Kik-in-10": { + "question": "¿Cuál es la atracción turística más popular para los visitantes extranjeros en España?", + "en_question": "What is the most popular tourist attraction for foreign visitors in your country?", + "annotations": [ + { + "answers": [ + "la sagrada familia", + "sagrada familia", + "tablaos flamencos", + "la sagrada família" + ], + "en_answers": [ + "sagrada família", + "flamenco venues" + ], + "count": 4 + }, + { + "answers": [ + "el museo del prado", + "museo prado" + ], + "en_answers": [ + "the prado museum", + "prado museum" + ], + "count": 2 + }, + { + "answers": [ + "la alhambra de granada", + "la alhambra" + ], + "en_answers": [ + "the alhambra of granada", + "the alhambra" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-11": { + "question": "¿Cuáles son los lugares religiosos (templo, iglesia, etc.) más populares para el turismo en España?", + "en_question": "What is the most popular religious sites (temple, church, etc.) for tourism in your country?", + "annotations": [ + { + "answers": [ + "sagrada familia", + "la sagrada familia" + ], + "en_answers": [ + "sagrada família" + ], + "count": 2 + }, + { + "answers": [ + "catedral burgos", + "catedral de burgos" + ], + "en_answers": [ + "burgos cathedral" + ], + "count": 2 + }, + { + "answers": [ + "iglesias" + ], + "en_answers": [ + "churches" + ], + "count": 1 + }, + { + "answers": [ + "catedrales" + ], + "en_answers": [ + "cathedrals" + ], + "count": 1 + }, + { + "answers": [ + "catedral de barcelona" + ], + "en_answers": [ + "barcelona cathedral" + ], + "count": 1 + }, + { + "answers": [ + "catedral de león" + ], + "en_answers": [ + "leon cathedral" + ], + "count": 1 + }, + { + "answers": [ + "catedral de sevilla" + ], + "en_answers": [ + "seville cathedral" + ], + "count": 1 + }, + { + "answers": [ + "catedral de santiago de compostela" + ], + "en_answers": [ + "cathedral of santiago de compostela" + ], + "count": 1 + }, + { + "answers": [ + "la giralda" + ], + "en_answers": [ + "the giralda" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-15": { + "question": "¿Qué ropa suelen llevar las mujeres en la ceremonia de graduación en España?", + "en_question": "What clothes do women usually wear on graduation commencement ceremony in your country?", + "annotations": [ + { + "answers": [ + "vestido", + "vestido de fiesta", + "vestido semiformal" + ], + "en_answers": [ + "dress", + "party dress", + "semi-formal dress" + ], + "count": 4 + }, + { + "answers": [ + "mono" + ], + "en_answers": [ + "jumpsuit" + ], + "count": 1 + }, + { + "answers": [ + "falda" + ], + "en_answers": [ + "skirt" + ], + "count": 1 + }, + { + "answers": [ + "toga" + ], + "en_answers": [ + "gown" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-16": { + "question": "¿Qué bebida se consume comúnmente en España cuando hace frío?", + "en_question": "What drink is commonly consumed in your country when the weather is cold?", + "annotations": [ + { + "answers": [ + "café", + "cafe" + ], + "en_answers": [ + "coffee" + ], + "count": 4 + }, + { + "answers": [ + "chocolate caliente", + "chocolate" + ], + "en_answers": [ + "hot chocolate", + "chocolate" + ], + "count": 3 + }, + { + "answers": [ + "chocolate con churros" + ], + "en_answers": [ + "chocolate with churros" + ], + "count": 1 + }, + { + "answers": [ + "sopa de pollo" + ], + "en_answers": [ + "chicken soup" + ], + "count": 1 + }, + { + "answers": [ + "caldo" + ], + "en_answers": [ + "broth" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-17": { + "question": "¿Qué fruta se vende y se encuentra más comúnmente durante el Ramadán en España?", + "en_question": "What fruit is more commonly sold and found during Ramadan in your country?", + "annotations": [ + { + "answers": [ + "dátiles", + "dátil" + ], + "en_answers": [ + "dates", + "date" + ], + "count": 2 + }, + { + "answers": [ + "manzanas" + ], + "en_answers": [ + "apples" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 1, + "no-answer": 0 + } + }, + "Kik-in-24": { + "question": "¿Qué carbohidrato se suele servir con el pollo en un restaurante de comida rápida en España?", + "en_question": "What carbohydrate is usually served with chicken in a fast-food restaurant in your country?", + "annotations": [ + { + "answers": [ + "patatas", + "patatas fritas" + ], + "en_answers": [ + "potatoes", + "french fries", + "fries", + "chips" + ], + "count": 3 + }, + { + "answers": [ + "pan" + ], + "en_answers": [ + "bread" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Kik-in-31": { + "question": "¿Cuál es el deporte de artes marciales más famoso en España?", + "en_question": "What is the most famous martial art sports in your country?", + "annotations": [ + { + "answers": [ + "kárate", + "karate" + ], + "en_answers": [ + "karate" + ], + "count": 5 + }, + { + "answers": [ + "judo" + ], + "en_answers": [ + "judo" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-34": { + "question": "¿Qué deportes se emiten a menudo en la televisión nacional en España?", + "en_question": "What sports are often broadcasted on national television in your country?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 5 + }, + { + "answers": [ + "tenis" + ], + "en_answers": [ + "tennis" + ], + "count": 2 + }, + { + "answers": [ + "baloncesto" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "ciclismo" + ], + "en_answers": [ + "cycling" + ], + "count": 2 + }, + { + "answers": [ + "fórmula 1" + ], + "en_answers": [ + "formula 1" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-35": { + "question": "¿Qué deportes fueron populares entre la gente de España durante la pandemia de COVID-19?", + "en_question": "What sports were popular among people from your country during the COVID-19 pandemic?", + "annotations": [ + { + "answers": [ + "ea sports" + ], + "en_answers": [ + "ea sports" + ], + "count": 1 + }, + { + "answers": [ + "fútbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 1 + }, + { + "answers": [ + "e-sports" + ], + "en_answers": [ + "e-sports" + ], + "count": 1 + }, + { + "answers": [ + "yoga en casa" + ], + "en_answers": [ + "yoga at home" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Kik-in-36": { + "question": "¿Quién es el entrenador de fútbol más popular en España?", + "en_question": "Who is the most popular soccer coach in your country?", + "annotations": [ + { + "answers": [ + "ancelotti" + ], + "en_answers": [ + "ancelotti" + ], + "count": 2 + }, + { + "answers": [ + "xavi" + ], + "en_answers": [ + "xavi" + ], + "count": 2 + }, + { + "answers": [ + "pep guardiola" + ], + "en_answers": [ + "pep guardiola" + ], + "count": 1 + }, + { + "answers": [ + "camacho" + ], + "en_answers": [ + "vigorous" + ], + "count": 1 + }, + { + "answers": [ + "simeone" + ], + "en_answers": [ + "simeone" + ], + "count": 1 + }, + { + "answers": [ + "del bosque" + ], + "en_answers": [ + "del bosque" + ], + "count": 1 + }, + { + "answers": [ + "clemente" + ], + "en_answers": [ + "clement" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-37": { + "question": "¿Qué equipos de fútbol en España son famosos por su intensa rivalidad? (p. ej. ___ vs ___)", + "en_question": "What soccer teams in your country are famous for their intense rivalry? (e.g. ___ vs ___)", + "annotations": [ + { + "answers": [ + "real madrid vs barcelona", + "barça vs madrid", + "real madrid vs fútbol club barcelona", + "real madrid vs fc barcelona" + ], + "en_answers": [ + "real madrid vs barcelona", + "barcelona vs madrid", + "real madrid vs football club barcelona", + "real madrid vs fc barcelona" + ], + "count": 5 + }, + { + "answers": [ + "atletico de madrid vs real madrid", + "real madrid vs atlético de madrid" + ], + "en_answers": [ + "atletico madrid vs real madrid", + "real madrid vs atlético de madrid" + ], + "count": 2 + }, + { + "answers": [ + "barcelona vs espanyol" + ], + "en_answers": [ + "barcelona vs espanyol" + ], + "count": 1 + }, + { + "answers": [ + "sevilla fc vs real betis balompié" + ], + "en_answers": [ + "sevilla fc vs real betis balompié" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-38": { + "question": "¿Cómo se llaman los aficionados al fútbol en España que son famosos por su intensa rivalidad? (p. ej. ___ contra ___)", + "en_question": "What are the names of soccer supporters in your country who are famous for their intense rivalry? (e.g. ___ vs ___)", + "annotations": [ + { + "answers": [ + "merengues" + ], + "en_answers": [ + "real madrid cf", + "real madrid", + "merengues", + "meringues" + ], + "count": 1 + }, + { + "answers": [ + "cules vs vikingos" + ], + "en_answers": [ + "cules vs vikingos" + ], + "count": 1 + }, + { + "answers": [ + "sevillistas contra béticos" + ], + "en_answers": [ + "sevilla vs. betis" + ], + "count": 1 + }, + { + "answers": [ + "madridistas contra barcelonistas" + ], + "en_answers": [ + "madrid vs. barcelona" + ], + "count": 1 + }, + { + "answers": [ + "madridistas contra atléticos" + ], + "en_answers": [ + "madrid vs. atletico" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-40": { + "question": "¿Quién es el jugador de bádminton masculino más famoso de España?", + "en_question": "Who is the most famous male badminton player in your country?", + "annotations": [ + { + "answers": [ + "pablo abián" + ], + "en_answers": [ + "pablo abián" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 1, + "No hay nadie famoso en ese deporte": 1 + } + }, + "Kik-in-41": { + "question": "¿Quién es la jugadora de bádminton más famosa de España?", + "en_question": "Who is the most famous female badminton player in your country?", + "annotations": [ + { + "answers": [ + "carolina marín", + "carolina martin", + "carolina marin" + ], + "en_answers": [ + "carolina marín" + ], + "count": 3 + } + ], + "idks": { + "not-applicable": 1, + "no-answer": 1, + "idk": 0 + } + }, + "Kik-in-44": { + "question": "¿Qué deporte recibe más apoyo del gobierno en España?", + "en_question": "What sport gets the most support from the government in your country?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-45": { + "question": "¿Qué instalaciones deportivas suelen estar disponibles en los colegios de España?", + "en_question": "What sports field facilities are usually available at schools in your country?", + "annotations": [ + { + "answers": [ + "campos de futbol", + "campo de futbol", + "campo de fútbol" + ], + "en_answers": [ + "football fields", + "football field" + ], + "count": 3 + }, + { + "answers": [ + "baloncesto", + "pista de basquet", + "campo de baloncesto" + ], + "en_answers": [ + "basketball", + "basketball court" + ], + "count": 3 + }, + { + "answers": [ + "patio", + "sólo un patio grande en el se puede jugar" + ], + "en_answers": [ + "courtyard" + ], + "count": 2 + }, + { + "answers": [ + "gimnasios", + "pabellón" + ], + "en_answers": [ + "gyms", + "pavilion" + ], + "count": 2 + }, + { + "answers": [ + "no hay", + "ninguna" + ], + "en_answers": [ + "none" + ], + "count": 1 + }, + { + "answers": [ + "balonmano" + ], + "en_answers": [ + "handball" + ], + "count": 1 + }, + { + "answers": [ + "tatami" + ], + "en_answers": [ + "tatami" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-02": { + "question": "¿Qué bebida de café disfrutan más comúnmente las personas en España?", + "en_question": "What cafe beverage do people from your country most commonly enjoy?", + "annotations": [ + { + "answers": [ + "cafe con leche", + "cortado o con leche", + "café con leche", + "cortado" + ], + "en_answers": [ + "coffee with milk", + "cortado or with milk", + "cortado" + ], + "count": 4 + }, + { + "answers": [ + "café solo", + "cafe solo" + ], + "en_answers": [ + "black coffee" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-04": { + "question": "¿Cuál es la comida preferida para curar la resaca de la gente de España?", + "en_question": "What is the preferred hangover cure food for people from your country?", + "annotations": [ + { + "answers": [ + "kebab" + ], + "en_answers": [ + "kebab" + ], + "count": 1 + }, + { + "answers": [ + "pasta" + ], + "en_answers": [ + "pasta" + ], + "count": 1 + }, + { + "answers": [ + "tortilla" + ], + "en_answers": [ + "omelette" + ], + "count": 1 + }, + { + "answers": [ + "hamburguesa" + ], + "en_answers": [ + "burger" + ], + "count": 1 + }, + { + "answers": [ + "macarrones con tomate" + ], + "en_answers": [ + "macaroni with tomato" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-05": { + "question": "¿Cuál es la comida a domicilio típica en España?", + "en_question": "What is the typical delivery food in your country?", + "annotations": [ + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 3 + }, + { + "answers": [ + "hamburguesas", + "hamburguesa" + ], + "en_answers": [ + "burgers", + "burger" + ], + "count": 2 + }, + { + "answers": [ + "pollo asado" + ], + "en_answers": [ + "roast chicken" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-07": { + "question": "¿Qué tipo de carne es la más consumida por la gente de España?", + "en_question": "What type of meat is consumed most by people from your country?", + "annotations": [ + { + "answers": [ + "cerdo" + ], + "en_answers": [ + "pig", + "pork" + ], + "count": 5 + }, + { + "answers": [ + "ternera" + ], + "en_answers": [ + "veal", + "beef" + ], + "count": 4 + }, + { + "answers": [ + "pollo" + ], + "en_answers": [ + "chicken" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-08": { + "question": "¿Qué fruta comen a menudo las personas de España en la temporada de otoño?", + "en_question": "What fruit do people from your country often eat in the autumn season?", + "annotations": [ + { + "answers": [ + "platano" + ], + "en_answers": [ + "banana" + ], + "count": 1 + }, + { + "answers": [ + "naranjas" + ], + "en_answers": [ + "oranges" + ], + "count": 1 + }, + { + "answers": [ + "manzanas" + ], + "en_answers": [ + "apples" + ], + "count": 1 + }, + { + "answers": [ + "granada" + ], + "en_answers": [ + "pomegranate" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Na-ko-09": { + "question": "¿Qué guarnición se sirve más comúnmente en una mesa de comedor en España?", + "en_question": "What side dish is the most commonly served on a dining table in your country?", + "annotations": [ + { + "answers": [ + "patatas" + ], + "en_answers": [ + "potatoes" + ], + "count": 4 + }, + { + "answers": [ + "patatas fritas" + ], + "en_answers": [ + "french fries" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-11": { + "question": "¿Qué comen las personas de España mientras ven un partido de fútbol?", + "en_question": "What do people from your country eat while watching a soccer game?", + "annotations": [ + { + "answers": [ + "tapas" + ], + "en_answers": [ + "tapas" + ], + "count": 3 + }, + { + "answers": [ + "hambuguersas" + ], + "en_answers": [ + "hamburgers" + ], + "count": 1 + }, + { + "answers": [ + "bocadillos calamares" + ], + "en_answers": [ + "squid sandwiches" + ], + "count": 1 + }, + { + "answers": [ + "pizzas" + ], + "en_answers": [ + "pizzas" + ], + "count": 1 + }, + { + "answers": [ + "pipas" + ], + "en_answers": [ + "sunflower seeds" + ], + "count": 1 + }, + { + "answers": [ + "pinchos" + ], + "en_answers": [ + "pinchos" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-15": { + "question": "¿Cuál es el alimento nutritivo representativo de España?", + "en_question": "What is the representative nourishing food in your country?", + "annotations": [ + { + "answers": [ + "aceite de oliva" + ], + "en_answers": [ + "olive oil" + ], + "count": 2 + }, + { + "answers": [ + "tortilla española" + ], + "en_answers": [ + "spanish omelette" + ], + "count": 1 + }, + { + "answers": [ + "naranja" + ], + "en_answers": [ + "orange" + ], + "count": 1 + }, + { + "answers": [ + "gazpacho" + ], + "en_answers": [ + "cold tomato soup" + ], + "count": 1 + }, + { + "answers": [ + "paella" + ], + "en_answers": [ + "paella" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-16": { + "question": "¿Quién es el futbolista más famoso de España?", + "en_question": "Who is the most famous soccer player in your country?", + "annotations": [ + { + "answers": [ + "iniesta" + ], + "en_answers": [ + "iniesta" + ], + "count": 3 + }, + { + "answers": [ + "david villa" + ], + "en_answers": [ + "david villa" + ], + "count": 1 + }, + { + "answers": [ + "morata" + ], + "en_answers": [ + "blackberry" + ], + "count": 1 + }, + { + "answers": [ + "xavi" + ], + "en_answers": [ + "xavi" + ], + "count": 1 + }, + { + "answers": [ + "sergio ramos" + ], + "en_answers": [ + "sergio ramos" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-17": { + "question": "¿Qué deportes disfrutan los estudiantes varones durante la hora del almuerzo en el colegio en España?", + "en_question": "What sports do male students enjoy during lunch time at school in your country?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 5 + }, + { + "answers": [ + "baloncesto" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-18": { + "question": "¿Cuál es el deporte más común en el que participan las chicas durante las clases de educación física en España?", + "en_question": "What is the most common sport girls participate in during physical education classes in your country?", + "annotations": [ + { + "answers": [ + "baloncesto" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "voleibol", + "volleyball" + ], + "en_answers": [ + "volleyball" + ], + "count": 2 + }, + { + "answers": [ + "correr" + ], + "en_answers": [ + "run", + "running" + ], + "count": 1 + }, + { + "answers": [ + "perreo" + ], + "en_answers": [ + "grinding" + ], + "count": 1 + }, + { + "answers": [ + "baile" + ], + "en_answers": [ + "dance" + ], + "count": 1 + }, + { + "answers": [ + "atletismo" + ], + "en_answers": [ + "athletics" + ], + "count": 1 + }, + { + "answers": [ + "fútbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-19": { + "question": "¿Quién es el jugador de voleibol más popular en España?", + "en_question": "Who is the most popular volleyball player in your country?", + "annotations": [ + { + "answers": [ + "rafael pascual" + ], + "en_answers": [ + "rafael pascual" + ], + "count": 1 + } + ], + "idks": { + "idk": 6, + "not-applicable": 2, + "no-answer": 0 + } + }, + "Na-ko-20": { + "question": "¿Qué evento deportivo apoyan con más pasión las personas de España en las competiciones internacionales?", + "en_question": "What sports event do people from your country passionately support the most in international competitions?", + "annotations": [ + { + "answers": [ + "futbol", + "champions league", + "fútbol", + "mundial de futbol" + ], + "en_answers": [ + "soccer", + "football", + "champions league", + "world cup of soccer" + ], + "count": 5 + }, + { + "answers": [ + "tenis" + ], + "en_answers": [ + "tennis" + ], + "count": 2 + }, + { + "answers": [ + "baloncesto" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-22": { + "question": "¿Qué país se considera el mayor rival de España en los partidos de fútbol?", + "en_question": "Which country is considered the biggest rival in soccer matches for your country?", + "annotations": [ + { + "answers": [ + "francia" + ], + "en_answers": [ + "france" + ], + "count": 4 + }, + { + "answers": [ + "italia" + ], + "en_answers": [ + "italy" + ], + "count": 2 + }, + { + "answers": [ + "brasil" + ], + "en_answers": [ + "brazil" + ], + "count": 1 + }, + { + "answers": [ + "inglaterra" + ], + "en_answers": [ + "england" + ], + "count": 1 + }, + { + "answers": [ + "alemania" + ], + "en_answers": [ + "germany" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-23": { + "question": "¿A qué tipo de academias deportivas asisten más los niños en España?", + "en_question": "What type of sports academies do children attend the most in your country?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol", + "escuelas de futbol" + ], + "en_answers": [ + "soccer", + "football", + "football schools" + ], + "count": 4 + }, + { + "answers": [ + "artes marciales" + ], + "en_answers": [ + "martial arts" + ], + "count": 1 + }, + { + "answers": [ + "baloncesto" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "clubes" + ], + "en_answers": [ + "clubs" + ], + "count": 1 + }, + { + "answers": [ + "campus" + ], + "en_answers": [ + "campus" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-24": { + "question": "¿Cuál es la comida más consumida en los estadios deportivos mientras se ven partidos en España?", + "en_question": "What is the most commonly eaten food in sports stadiums while watching games in your country?", + "annotations": [ + { + "answers": [ + "pipas" + ], + "en_answers": [ + "sunflower seeds" + ], + "count": 2 + }, + { + "answers": [ + "frankfurt" + ], + "en_answers": [ + "frankfurt" + ], + "count": 1 + }, + { + "answers": [ + "palomitas" + ], + "en_answers": [ + "popcorn" + ], + "count": 1 + }, + { + "answers": [ + "patatas fritas" + ], + "en_answers": [ + "french fries" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-25": { + "question": "¿Cuáles son los deportes típicos que se juegan en el día del deporte escolar en España?", + "en_question": "What are the typical sports played in your country's school sports day?", + "annotations": [ + { + "answers": [ + "futbol", + "fútbol", + "futbol y baloncesto" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 4 + }, + { + "answers": [ + "baloncesto", + "futbol y baloncesto" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Na-ko-26": { + "question": "¿Cuáles son los deportes populares entre la población de mediana edad en España?", + "en_question": "What are the popular sports among the middle-aged population in your country?", + "annotations": [ + { + "answers": [ + "futbol", + "fútbol" + ], + "en_answers": [ + "soccer", + "football" + ], + "count": 4 + }, + { + "answers": [ + "padel", + "pádel" + ], + "en_answers": [ + "padel" + ], + "count": 2 + }, + { + "answers": [ + "balonesto", + "baloncesto" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "tenis" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-28": { + "question": "¿Quién es el deportista de deportes de invierno más popular en España?", + "en_question": "Who is the most popular winter sports player in your country?", + "annotations": [ + { + "answers": [ + "javier rodriguez", + "javier fernández" + ], + "en_answers": [ + "javier rodriguez", + "javier fernández" + ], + "count": 2 + }, + { + "answers": [ + "paco fernández ochoa" + ], + "en_answers": [ + "paco fernández ochoa" + ], + "count": 1 + }, + { + "answers": [ + "blanca fernández ochoa" + ], + "en_answers": [ + "blanca fernández ochoa" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Na-ko-29": { + "question": "¿Quién es el nadador más famoso de España?", + "en_question": "Who is the most famous swimmer in your country?", + "annotations": [ + { + "answers": [ + "david meca" + ], + "en_answers": [ + "david meca" + ], + "count": 4 + }, + { + "answers": [ + "mireia belmonte" + ], + "en_answers": [ + "mireia belmonte" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-30": { + "question": "¿Cuál es el juego de e-sports más popular en España?", + "en_question": "What is the most popular e-sports game in your country?", + "annotations": [ + { + "answers": [ + "league of legends", + "lol" + ], + "en_answers": [ + "league of legends" + ], + "count": 3 + }, + { + "answers": [ + "fortnite" + ], + "en_answers": [ + "fortnite" + ], + "count": 2 + }, + { + "answers": [ + "counter strike" + ], + "en_answers": [ + "counter strike" + ], + "count": 1 + }, + { + "answers": [ + "fifa" + ], + "en_answers": [ + "fifa" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Na-ko-33": { + "question": "¿Qué comida simbólica comen las personas de España en el Año Nuevo (Lunar)?", + "en_question": "What symbolic food do people from your country eat on (Lunar) New Year?", + "annotations": [ + { + "answers": [ + "uvas" + ], + "en_answers": [ + "grapes" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 2, + "no-answer": 1, + "idk": 0 + } + }, + "Na-ko-37": { + "question": "¿Cuál es el destino de vacaciones nacional más popular entre los españoles?", + "en_question": "What is the most popular domestic vacation spot for people from your country?", + "annotations": [ + { + "answers": [ + "malaga" + ], + "en_answers": [ + "malaga" + ], + "count": 1 + }, + { + "answers": [ + "valencia" + ], + "en_answers": [ + "valencia" + ], + "count": 1 + }, + { + "answers": [ + "playa" + ], + "en_answers": [ + "beach" + ], + "count": 1 + }, + { + "answers": [ + "costa mediterránea" + ], + "en_answers": [ + "mediterranean coast" + ], + "count": 1 + }, + { + "answers": [ + "costa atlántica" + ], + "en_answers": [ + "atlantic coast" + ], + "count": 1 + }, + { + "answers": [ + "canarias" + ], + "en_answers": [ + "canary islands" + ], + "count": 1 + }, + { + "answers": [ + "baleares" + ], + "en_answers": [ + "balearic islands" + ], + "count": 1 + }, + { + "answers": [ + "benidorm" + ], + "en_answers": [ + "benidorm" + ], + "count": 1 + }, + { + "answers": [ + "costa levantina" + ], + "en_answers": [ + "levantine coast" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-38": { + "question": "¿Cuál es el regalo de boda más común entre novios en España?", + "en_question": "What is the most common wedding gift between bride and groom in your country?", + "annotations": [ + { + "answers": [ + "dinero", + "un sobre con dinero" + ], + "en_answers": [ + "money", + "an envelope with money" + ], + "count": 2 + }, + { + "answers": [ + "a la novia un anillo" + ], + "en_answers": [ + "to the bride a ring", + "ring" + ], + "count": 1 + }, + { + "answers": [ + "al novio un reloj" + ], + "en_answers": [ + "to the groom a watch", + "watch" + ], + "count": 1 + }, + { + "answers": [ + "viaje" + ], + "en_answers": [ + "trip" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Na-ko-39": { + "question": "¿Qué se suele dar como gesto de felicitación al asistir a la boda de un amigo en España?", + "en_question": "What is typically given as a congratulatory gesture when attending a friend's wedding in your country?", + "annotations": [ + { + "answers": [ + "dinero", + "sobre con dinero", + "regalar dinero" + ], + "en_answers": [ + "money", + "envelope with money", + "give money" + ], + "count": 5 + }, + { + "answers": [ + "un regalo de la lista de bodas" + ], + "en_answers": [ + "a gift from the wedding list" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-40": { + "question": "¿Cuánto dura (en días) un funeral típicamente en España? (Proporciona la respuesta en números (por ejemplo, 12).)", + "en_question": "How long (in days) does a funeral typically last in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-41": { + "question": "¿Qué deberías preparar como ofrenda de condolencia al asistir a un funeral en España?", + "en_question": "What should you prepare as a condolence offering when attending a funeral in your country?", + "annotations": [ + { + "answers": [ + "flores" + ], + "en_answers": [ + "flowers" + ], + "count": 3 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 0 + } + }, + "Na-ko-42": { + "question": "¿Qué tipo de comida se ofrece comúnmente en las funerarias en España?", + "en_question": "What type of food is commonly provided at funeral parlors in your country?", + "annotations": [ + { + "answers": [ + "tapeo" + ], + "en_answers": [ + "tapas" + ], + "count": 1 + }, + { + "answers": [ + "sandwiches" + ], + "en_answers": [ + "sandwiches" + ], + "count": 1 + }, + { + "answers": [ + "bocadillos" + ], + "en_answers": [ + "bocadillo", + "bocata" + ], + "count": 1 + }, + { + "answers": [ + "bebidas" + ], + "en_answers": [ + "drinks" + ], + "count": 1 + }, + { + "answers": [ + "merienda" + ], + "en_answers": [ + "afternoon snack" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 1, + "no-answer": 0 + } + }, + "Na-ko-43": { + "question": "¿Qué hacen las personas en España en la mañana del Año Nuevo (Lunar)?", + "en_question": "What do people do in your country in the morning of the (Lunar) New Year?", + "annotations": [ + { + "answers": [ + "celebramos el año nuevo el 1 de enero" + ], + "en_answers": [ + "we celebrate the new year on january 1" + ], + "count": 1 + }, + { + "answers": [ + "nada especial" + ], + "en_answers": [ + "nothing special" + ], + "count": 1 + }, + { + "answers": [ + "comer churros" + ], + "en_answers": [ + "eat churros" + ], + "count": 1 + }, + { + "answers": [ + "comer los restos que quedó de la cena" + ], + "en_answers": [ + "eat the leftovers that remained from dinner" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Na-ko-44": { + "question": "¿Cuál es el día con la congestión de tráfico más severa a nivel nacional en España?", + "en_question": "When is the day with your country's most severe nationwide traffic congestion?", + "annotations": [ + { + "answers": [ + "viernes" + ], + "en_answers": [ + "friday" + ], + "count": 1 + }, + { + "answers": [ + "lunes" + ], + "en_answers": [ + "monday" + ], + "count": 1 + }, + { + "answers": [ + "puente de la constitución" + ], + "en_answers": [ + "constitution bridge" + ], + "count": 1 + }, + { + "answers": [ + "imnaculada" + ], + "en_answers": [ + "immaculate" + ], + "count": 1 + }, + { + "answers": [ + "11 marzo" + ], + "en_answers": [ + "march 11" + ], + "count": 1 + }, + { + "answers": [ + "salida vacaciones agosto" + ], + "en_answers": [ + "august vacation departure" + ], + "count": 1 + }, + { + "answers": [ + "vuelta vacaciones septiembre" + ], + "en_answers": [ + "return from september vacation" + ], + "count": 1 + }, + { + "answers": [ + "salidas vacacionales" + ], + "en_answers": [ + "holiday departures" + ], + "count": 1 + }, + { + "answers": [ + "puentes" + ], + "en_answers": [ + "bridges" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-45": { + "question": "¿Cuál es el destino de luna de miel más popular en España?", + "en_question": "What is the most popular honeymoon destination in your country?", + "annotations": [ + { + "answers": [ + "caribe" + ], + "en_answers": [ + "caribbean" + ], + "count": 2 + }, + { + "answers": [ + "canarias" + ], + "en_answers": [ + "canary islands" + ], + "count": 1 + }, + { + "answers": [ + "benidorm" + ], + "en_answers": [ + "benidorm" + ], + "count": 1 + }, + { + "answers": [ + "mallorca" + ], + "en_answers": [ + "majorca, mallorca" + ], + "count": 1 + }, + { + "answers": [ + "denia" + ], + "en_answers": [ + "denial" + ], + "count": 1 + }, + { + "answers": [ + "islas paradisiacas" + ], + "en_answers": [ + "paradisiacal islands" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-05": { + "question": "¿Cuál es el día festivo a nivel nacional más importante de España?", + "en_question": "What is the most important national holiday in your country?", + "annotations": [ + { + "answers": [ + "12 de octubre", + "12 de octubre dia de la hispanidad" + ], + "en_answers": [ + "october 12", + "october 12 hispanic day" + ], + "count": 2 + }, + { + "answers": [ + "nochebuena - 24 diciembre" + ], + "en_answers": [ + "christmas eve - december 24" + ], + "count": 1 + }, + { + "answers": [ + "navidad" + ], + "en_answers": [ + "christmas" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-06": { + "question": "¿Qué comen las personas de España en Ramadán?", + "en_question": "What do people from your country eat in Ramadan?", + "annotations": [ + { + "answers": [ + "los españoles no musulmanes no hacen ramadán." + ], + "en_answers": [ + "non-muslim spaniards do not observe ramadan." + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 1, + "no-answer": 0 + } + }, + "Ne-ar-09": { + "question": "¿Qué comen las personas de España en Eid ul Fitr?", + "en_question": "What do people from your country eat in Eid ul Fitr?", + "annotations": [ + { + "answers": [ + "cus cus" + ], + "en_answers": [ + "couscous" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 0 + } + }, + "Ne-ar-10": { + "question": "¿Qué comen las personas de España en Eid ul Adha?", + "en_question": "What do people from your country eat in Eid ul Adha?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Ne-ar-11": { + "question": "¿A dónde va la gente de España para celebrar el Día de Año Nuevo?", + "en_question": "Where do people from your country go to celebrate New Year's Day?", + "annotations": [ + { + "answers": [ + "casa de familiar", + "a casa de un familiar" + ], + "en_answers": [ + "family member's house", + "to a relative's house" + ], + "count": 2 + }, + { + "answers": [ + "casa", + "en su casa" + ], + "en_answers": [ + "house", + "at your home" + ], + "count": 2 + }, + { + "answers": [ + "discoteca" + ], + "en_answers": [ + "nightclub" + ], + "count": 1 + }, + { + "answers": [ + "bar" + ], + "en_answers": [ + "pub/bar" + ], + "count": 1 + }, + { + "answers": [ + "plaza del sol" + ], + "en_answers": [ + "sun square" + ], + "count": 1 + }, + { + "answers": [ + "madrid" + ], + "en_answers": [ + "madrid" + ], + "count": 1 + }, + { + "answers": [ + "cotillones" + ], + "en_answers": [ + "party favor packs" + ], + "count": 1 + }, + { + "answers": [ + "a segunda vivienda" + ], + "en_answers": [ + "to a second home" + ], + "count": 1 + }, + { + "answers": [ + "plazas especificas" + ], + "en_answers": [ + "specific places" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-14": { + "question": "¿Dónde se reúne una familia para las festividades del Eid en España?", + "en_question": "Where do a family gather for Eid festivities in your country?", + "annotations": [ + { + "answers": [ + "en casa" + ], + "en_answers": [ + "at home" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 2, + "no-answer": 0 + } + }, + "Ne-ar-16": { + "question": "¿Cuándo es el fin de semana en España (por ejemplo, lunes, martes)?", + "en_question": "When is the weekend in your country (e.g. Monday, Tuesday)?", + "annotations": [ + { + "answers": [ + "domingo" + ], + "en_answers": [ + "sunday" + ], + "count": 5 + }, + { + "answers": [ + "sábado", + "sabado" + ], + "en_answers": [ + "saturday" + ], + "count": 5 + }, + { + "answers": [ + "viernes" + ], + "en_answers": [ + "friday" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-17": { + "question": "¿A qué hora comienza la mayoría de la gente a trabajar en España? (Indica en formato HH:MM (por ejemplo, 18:00, 09:00).)", + "en_question": "At what time do most people start work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 4 + }, + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 3 + }, + { + "answers": [ + "07:00" + ], + "en_answers": [ + "07:00" + ], + "count": 1 + }, + { + "answers": [ + "08:30" + ], + "en_answers": [ + "08:30" + ], + "count": 1 + }, + { + "answers": [ + "09:30" + ], + "en_answers": [ + "09:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-18": { + "question": "¿A qué hora termina la mayoría de la gente de trabajar en España? (Indica en formato HH:MM (por ejemplo, 18:00, 09:00).)", + "en_question": "At what time do most people finish work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "19:00" + ], + "en_answers": [ + "19:00" + ], + "count": 3 + }, + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 2 + }, + { + "answers": [ + "20:00" + ], + "en_answers": [ + "20:00" + ], + "count": 2 + }, + { + "answers": [ + "15:00" + ], + "en_answers": [ + "15:00" + ], + "count": 1 + }, + { + "answers": [ + "18:30" + ], + "en_answers": [ + "18:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-20": { + "question": "¿Qué se considera un trabajo seguro en España?", + "en_question": "What is considered to be a secure job in your country?", + "annotations": [ + { + "answers": [ + "funcionariado", + "funcionario", + "empleo sector público", + "funcionario/a" + ], + "en_answers": [ + "civil service", + "civil servant", + "public sector employment", + "civil servant/official" + ], + "count": 4 + }, + { + "answers": [ + "empresario" + ], + "en_answers": [ + "businessman" + ], + "count": 1 + }, + { + "answers": [ + "abogado" + ], + "en_answers": [ + "lawyer" + ], + "count": 1 + }, + { + "answers": [ + "tecnologia de la informacion" + ], + "en_answers": [ + "information technology" + ], + "count": 1 + }, + { + "answers": [ + "político/a" + ], + "en_answers": [ + "politician" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-24": { + "question": "¿Cuál es la principal ciudad comercial de España?", + "en_question": "Which city is the primary commercial hub in your country?", + "annotations": [ + { + "answers": [ + "barcelona" + ], + "en_answers": [ + "barcelona" + ], + "count": 4 + }, + { + "answers": [ + "madrid" + ], + "en_answers": [ + "madrid" + ], + "count": 3 + }, + { + "answers": [ + "bilbao" + ], + "en_answers": [ + "bilbao" + ], + "count": 1 + }, + { + "answers": [ + "valencia" + ], + "en_answers": [ + "valencia" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-25": { + "question": "¿Cuál es la industria que mejor paga en España?", + "en_question": "What is the industry that pays the best in your country?", + "annotations": [ + { + "answers": [ + "tecnología" + ], + "en_answers": [ + "technology" + ], + "count": 2 + }, + { + "answers": [ + "finanzas y seguros", + "finanzas" + ], + "en_answers": [ + "finance and insurance", + "finances" + ], + "count": 2 + }, + { + "answers": [ + "bbva" + ], + "en_answers": [ + "bilbao vizcaya argentaria" + ], + "count": 1 + }, + { + "answers": [ + "aeronáutica" + ], + "en_answers": [ + "aeronautics" + ], + "count": 1 + }, + { + "answers": [ + "software" + ], + "en_answers": [ + "software" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-26": { + "question": "¿Cuál es la corporación pública más famosa de España?", + "en_question": "What is the most famous public corporation in your country?", + "annotations": [ + { + "answers": [ + "correos" + ], + "en_answers": [ + "mails" + ], + "count": 2 + }, + { + "answers": [ + "rtve" + ], + "en_answers": [ + "spanish radio and television corporation" + ], + "count": 1 + }, + { + "answers": [ + "agencia tributaria" + ], + "en_answers": [ + "tax agency" + ], + "count": 1 + }, + { + "answers": [ + "telefónica" + ], + "en_answers": [ + "telephone" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-31": { + "question": "¿Cuál es el plato más famoso de España?", + "en_question": "What is the most famous dish in your country?", + "annotations": [ + { + "answers": [ + "paella", + "tortilla" + ], + "en_answers": [ + "paella", + "omelette" + ], + "count": 3 + }, + { + "answers": [ + "tortilla de patatas" + ], + "en_answers": [ + "spanish omelette" + ], + "count": 3 + }, + { + "answers": [ + "jamón ibérico" + ], + "en_answers": [ + "iberian ham" + ], + "count": 1 + }, + { + "answers": [ + "ensaladilla rusa" + ], + "en_answers": [ + "russian salad" + ], + "count": 1 + }, + { + "answers": [ + "puchero" + ], + "en_answers": [ + "stew" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-32": { + "question": "¿Qué suelen desayunar las personas en España?", + "en_question": "What do people usually have for breakfast in your country?", + "annotations": [ + { + "answers": [ + "café" + ], + "en_answers": [ + "coffee" + ], + "count": 5 + }, + { + "answers": [ + "colacao", + "leche con cacao" + ], + "en_answers": [ + "cocoa drink", + "milk with cocoa" + ], + "count": 2 + }, + { + "answers": [ + "cereales" + ], + "en_answers": [ + "cereals" + ], + "count": 1 + }, + { + "answers": [ + "tostadas con tomate" + ], + "en_answers": [ + "toast with tomato" + ], + "count": 1 + }, + { + "answers": [ + "colacao y galletas" + ], + "en_answers": [ + "cocoa and cookies" + ], + "count": 1 + }, + { + "answers": [ + "churros" + ], + "en_answers": [ + "churros" + ], + "count": 1 + }, + { + "answers": [ + "dulces" + ], + "en_answers": [ + "sweets" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-33": { + "question": "¿A qué hora suelen almorzar las personas en España? (Indica en formato HH:MM (por ejemplo, 18:00, 09:00).)", + "en_question": "When do people usually have lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 2 + }, + { + "answers": [ + "14:30" + ], + "en_answers": [ + "14:30" + ], + "count": 1 + }, + { + "answers": [ + "11:30" + ], + "en_answers": [ + "11:30" + ], + "count": 1 + }, + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 1 + }, + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-34": { + "question": "¿Qué es típicamente indispensable en las comidas en España?", + "en_question": "What is typically indispensable in meals in your country?", + "annotations": [ + { + "answers": [ + "pan" + ], + "en_answers": [ + "bread" + ], + "count": 3 + }, + { + "answers": [ + "vino" + ], + "en_answers": [ + "wine" + ], + "count": 1 + }, + { + "answers": [ + "sal" + ], + "en_answers": [ + "salt" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-36": { + "question": "¿Cuál es una comida festiva típica en España?", + "en_question": "What is a typical festive meal in your country?", + "annotations": [ + { + "answers": [ + "paella" + ], + "en_answers": [ + "paella" + ], + "count": 4 + }, + { + "answers": [ + "roscón de reyes" + ], + "en_answers": [ + "king's cake" + ], + "count": 1 + }, + { + "answers": [ + "tortilla de patata" + ], + "en_answers": [ + "potato omelette" + ], + "count": 1 + }, + { + "answers": [ + "croquetas" + ], + "en_answers": [ + "croquettes" + ], + "count": 1 + }, + { + "answers": [ + "carne al horno" + ], + "en_answers": [ + "roast meat" + ], + "count": 1 + }, + { + "answers": [ + "pescado al horno" + ], + "en_answers": [ + "baked fish" + ], + "count": 1 + }, + { + "answers": [ + "torrijas" + ], + "en_answers": [ + "french toasts" + ], + "count": 1 + }, + { + "answers": [ + "turrón" + ], + "en_answers": [ + "nougat" + ], + "count": 1 + }, + { + "answers": [ + "chocolate" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-37": { + "question": "¿Qué fruta suelen ofrecer a los turistas/visitantes extranjeros en España?", + "en_question": "Which fruit do people usually offer tourists/visitors from abroad in your country?", + "annotations": [ + { + "answers": [ + "fresas" + ], + "en_answers": [ + "strawberries" + ], + "count": 2 + }, + { + "answers": [ + "sandia", + "mango" + ], + "en_answers": [ + "watermelon", + "mango" + ], + "count": 2 + }, + { + "answers": [ + "platano", + "plátano" + ], + "en_answers": [ + "banana" + ], + "count": 2 + }, + { + "answers": [ + "en los hoteles como bienvenida no es habitual" + ], + "en_answers": [ + "in hotels as a welcome it is not usual" + ], + "count": 1 + }, + { + "answers": [ + "quiza uvas" + ], + "en_answers": [ + "maybe grapes" + ], + "count": 1 + }, + { + "answers": [ + "melón" + ], + "en_answers": [ + "melon" + ], + "count": 1 + }, + { + "answers": [ + "naranjas" + ], + "en_answers": [ + "oranges" + ], + "count": 1 + }, + { + "answers": [ + "mandarinas" + ], + "en_answers": [ + "tangerines" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-38": { + "question": "¿Qué alimentos suelen ofrecer como caridad las personas en España?", + "en_question": "Which food do people usually offer as charity in your country?", + "annotations": [ + { + "answers": [ + "arroz" + ], + "en_answers": [ + "rice" + ], + "count": 3 + }, + { + "answers": [ + "conservas" + ], + "en_answers": [ + "canned goods" + ], + "count": 2 + }, + { + "answers": [ + "leche" + ], + "en_answers": [ + "milk" + ], + "count": 2 + }, + { + "answers": [ + "productos no perecederos" + ], + "en_answers": [ + "non-perishable products" + ], + "count": 1 + }, + { + "answers": [ + "legumbres" + ], + "en_answers": [ + "legumes" + ], + "count": 1 + }, + { + "answers": [ + "pasta" + ], + "en_answers": [ + "money" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ne-ar-39": { + "question": "¿Cuál es la comida rápida más barata en España?", + "en_question": "What is the cheapest fast food in your country?", + "annotations": [ + { + "answers": [ + "kebab" + ], + "en_answers": [ + "kebab" + ], + "count": 2 + }, + { + "answers": [ + "hamburguesa", + "mc donalds" + ], + "en_answers": [ + "burger", + "mcdonald's" + ], + "count": 2 + }, + { + "answers": [ + "bocadillos", + "bocadillo" + ], + "en_answers": [ + "sandwiches", + "sandwich" + ], + "count": 2 + }, + { + "answers": [ + "tapas" + ], + "en_answers": [ + "appetizers" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-43": { + "question": "¿Qué suelen tomar las personas con té en España?", + "en_question": "What do people usually have with tea in your country?", + "annotations": [ + { + "answers": [ + "galletas" + ], + "en_answers": [ + "cookies" + ], + "count": 2 + }, + { + "answers": [ + "pastas" + ], + "en_answers": [ + "pasta" + ], + "count": 2 + }, + { + "answers": [ + "azucar" + ], + "en_answers": [ + "sugar" + ], + "count": 1 + }, + { + "answers": [ + "leche" + ], + "en_answers": [ + "milk" + ], + "count": 1 + }, + { + "answers": [ + "dulces" + ], + "en_answers": [ + "sweets" + ], + "count": 1 + }, + { + "answers": [ + "galleta de canela" + ], + "en_answers": [ + "cinnamon cookie" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ne-ar-44": { + "question": "¿Qué toman las personas con el café en España?", + "en_question": "What do people have with coffee in your country?", + "annotations": [ + { + "answers": [ + "leche" + ], + "en_answers": [ + "milk" + ], + "count": 3 + }, + { + "answers": [ + "tostadas" + ], + "en_answers": [ + "toasts" + ], + "count": 2 + }, + { + "answers": [ + "churros" + ], + "en_answers": [ + "churros" + ], + "count": 2 + }, + { + "answers": [ + "bolleria", + "bollería" + ], + "en_answers": [ + "pastries" + ], + "count": 2 + }, + { + "answers": [ + "cigarro" + ], + "en_answers": [ + "cigarette" + ], + "count": 1 + }, + { + "answers": [ + "bebidas vegetales" + ], + "en_answers": [ + "plant-based drinks" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-02": { + "question": "¿Cuál es la comida tradicional más popular en España?", + "en_question": "What is the most popular traditional food in your country?", + "annotations": [ + { + "answers": [ + "paella" + ], + "en_answers": [ + "paella" + ], + "count": 4 + }, + { + "answers": [ + "tortilla de patatas", + "tortilla de patata" + ], + "en_answers": [ + "spanish omelette", + "potato omelette" + ], + "count": 3 + }, + { + "answers": [ + "cocido" + ], + "en_answers": [ + "stew" + ], + "count": 2 + }, + { + "answers": [ + "salmorejo" + ], + "en_answers": [ + "cold tomato soup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-04": { + "question": "¿Cuál es la salsa para mojar más popular en España?", + "en_question": "What is the most popular dipping sauce in your country?", + "annotations": [ + { + "answers": [ + "alioli" + ], + "en_answers": [ + "garlic mayonnaise" + ], + "count": 2 + }, + { + "answers": [ + "salsa brava" + ], + "en_answers": [ + "spicy sauce" + ], + "count": 2 + }, + { + "answers": [ + "mayonesa" + ], + "en_answers": [ + "mayonnaise" + ], + "count": 1 + }, + { + "answers": [ + "aceite de oliva" + ], + "en_answers": [ + "olive oil" + ], + "count": 1 + }, + { + "answers": [ + "salmorejo" + ], + "en_answers": [ + "cold tomato soup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-08": { + "question": "¿Cuál es la comida más consumida durante el ayuno cristiano en España?", + "en_question": "What food is most often consumed during Christian fasting in your country?", + "annotations": [ + { + "answers": [ + "pescado" + ], + "en_answers": [ + "fish" + ], + "count": 1 + }, + { + "answers": [ + "verdura" + ], + "en_answers": [ + "vegetable" + ], + "count": 1 + }, + { + "answers": [ + "tortillitas de bacalao" + ], + "en_answers": [ + "cod fritters" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 1 + } + }, + "New-am-15": { + "question": "¿Qué comida se suele preparar cuando las madres dan a luz en España?", + "en_question": "What food is usually prepared when mothers give birth in your country?", + "annotations": [], + "idks": { + "not-applicable": 3, + "no-answer": 2, + "idk": 1 + } + }, + "New-am-27": { + "question": "¿Quién es la deportista femenina más popular en España?", + "en_question": "Who is the most popular female sportperson in your country?", + "annotations": [ + { + "answers": [ + "jenni hermoso", + "jenny hermoso" + ], + "en_answers": [ + "jenni beautiful", + "jenny beautiful" + ], + "count": 2 + }, + { + "answers": [ + "alexia putellas" + ], + "en_answers": [ + "alexia putellas" + ], + "count": 1 + }, + { + "answers": [ + "ana peleteiro" + ], + "en_answers": [ + "ana peleteiro" + ], + "count": 1 + }, + { + "answers": [ + "mireia belmonte" + ], + "en_answers": [ + "mireia belmonte" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-am-34": { + "question": "¿Dónde se preparan para sus exámenes la mayoría de los estudiantes de primaria en España?", + "en_question": "Where do most elementary school students prepare for their exams in your country?", + "annotations": [ + { + "answers": [ + "en casa", + "en sus casas" + ], + "en_answers": [ + "at home", + "in their homes" + ], + "count": 4 + }, + { + "answers": [ + "en clases particulares" + ], + "en_answers": [ + "in private lessons" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-am-41": { + "question": "En España, ¿en qué curso los estudiantes hacen su primer examen de ámbito nacional?", + "en_question": "In your country, at which grade level do students take their first national-level examination?", + "annotations": [ + { + "answers": [ + "2º de bachiller", + "2", + "17", + "18", + "2º bachiller" + ], + "en_answers": [ + "2", + "17", + "18", + "2nd year of high school" + ], + "count": 3 + }, + { + "answers": [ + "4º de eso", + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-am-53": { + "question": "¿Qué región de España es ampliamente conocida por su industria del café/té?", + "en_question": "Which region in your country is widely known for its coffee/tea industry?", + "annotations": [ + { + "answers": [ + "canarias" + ], + "en_answers": [ + "canary islands" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 3, + "idk": 1, + "no-answer": 0 + } + }, + "New-am-54": { + "question": "¿Qué región de España es ampliamente conocida por su industria ganadera?", + "en_question": "Which region in your country is widely known for its livestock industry?", + "annotations": [ + { + "answers": [ + "galicia" + ], + "en_answers": [ + "galicia" + ], + "count": 2 + }, + { + "answers": [ + "asturias", + "castilla leon" + ], + "en_answers": [ + "asturias", + "castile and león" + ], + "count": 2 + }, + { + "answers": [ + "castilla la mancha" + ], + "en_answers": [ + "castile-la mancha" + ], + "count": 1 + }, + { + "answers": [ + "extremadura" + ], + "en_answers": [ + "extremadura" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-59": { + "question": "¿Cuál es el principal trabajo de las personas que viven en los desiertos de España?", + "en_question": "What is the main occupation of people living in deserts in your country?", + "annotations": [ + { + "answers": [ + "el campo", + "cosechas", + "agricultores" + ], + "en_answers": [ + "the countryside", + "harvests", + "farmers" + ], + "count": 3 + }, + { + "answers": [ + "transportistas" + ], + "en_answers": [ + "carriers" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 2, + "no-answer": 0 + } + }, + "New-am-60": { + "question": "¿Qué animal se utiliza típicamente para el transporte en España?", + "en_question": "Which animal is typically used for transportation in your country?", + "annotations": [ + { + "answers": [ + "caballo" + ], + "en_answers": [ + "horse" + ], + "count": 3 + }, + { + "answers": [ + "burro" + ], + "en_answers": [ + "donkey" + ], + "count": 1 + }, + { + "answers": [ + "mulo" + ], + "en_answers": [ + "mule" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "New-am-72": { + "question": "¿Cuál es el cómic más popular para niños en España?", + "en_question": "What is the most popular comic book for children to read in your country?", + "annotations": [ + { + "answers": [ + "mortadelo y filemón" + ], + "en_answers": [ + "mort & phil" + ], + "count": 5 + }, + { + "answers": [ + "manolo to gafotas" + ], + "en_answers": [ + "manolo to four-eyes" + ], + "count": 1 + }, + { + "answers": [ + "asterix y obelix" + ], + "en_answers": [ + "asterix and obelix" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-73": { + "question": "¿Cuál es el canal de YouTube más popular para niños en España?", + "en_question": "What is the most popular YouTube channel for children in your country?", + "annotations": [ + { + "answers": [ + "mikecrack" + ], + "en_answers": [ + "mikecrack" + ], + "count": 1 + }, + { + "answers": [ + "aula 365" + ], + "en_answers": [ + "classroom 365" + ], + "count": 1 + }, + { + "answers": [ + "cantajuegos" + ], + "en_answers": [ + "sing and play games" + ], + "count": 1 + }, + { + "answers": [ + "elrubiusomg" + ], + "en_answers": [ + "elrubiusomg" + ], + "count": 1 + }, + { + "answers": [ + "vegetta777" + ], + "en_answers": [ + "vegetta777" + ], + "count": 1 + }, + { + "answers": [ + "auronplay" + ], + "en_answers": [ + "auronplay" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-am-74": { + "question": "¿Cuál es el programa de entrevistas más popular en España?", + "en_question": "What is the most popular talk show in your country?", + "annotations": [ + { + "answers": [ + "el hormiguero" + ], + "en_answers": [ + "the anthill" + ], + "count": 3 + }, + { + "answers": [ + "espejo público" + ], + "en_answers": [ + "public mirror" + ], + "count": 1 + }, + { + "answers": [ + "el programa de ana rosa" + ], + "en_answers": [ + "ana rosa's program" + ], + "count": 1 + }, + { + "answers": [ + "salvados" + ], + "en_answers": [ + "saved" + ], + "count": 1 + }, + { + "answers": [ + "the wild project" + ], + "en_answers": [ + "the wild project" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-77": { + "question": "¿Cuál es la festividad religiosa más famosa de España?", + "en_question": "What is the most famous religious holiday in your country?", + "annotations": [ + { + "answers": [ + "semana santa" + ], + "en_answers": [ + "holy week" + ], + "count": 4 + }, + { + "answers": [ + "navidad" + ], + "en_answers": [ + "christmas" + ], + "count": 2 + }, + { + "answers": [ + "el puente de la inmaculada" + ], + "en_answers": [ + "the immaculate conception bridge" + ], + "count": 1 + }, + { + "answers": [ + "la virgen del pilar" + ], + "en_answers": [ + "the virgin of the pillar" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-81": { + "question": "¿Cuál es el mes más con más bodas en España? (Indica solo con números arábigos, por ejemplo, 1.)", + "en_question": "What is the busiest month for weddings in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 3 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 3 + }, + { + "answers": [ + "julio", + "7" + ], + "en_answers": [ + "july", + "7" + ], + "count": 2 + }, + { + "answers": [ + "agosto" + ], + "en_answers": [ + "august" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-83": { + "question": "¿Cuál es el instrumento musical tradicional más popular en España?", + "en_question": "What is the most popular traditional musical instrument in your country?", + "annotations": [ + { + "answers": [ + "guitarra", + "guitarra clasica", + "guitarra acustica" + ], + "en_answers": [ + "guitar", + "classical guitar", + "acoustic guitar" + ], + "count": 4 + }, + { + "answers": [ + "castañuelas" + ], + "en_answers": [ + "castanets" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-01": { + "question": "¿Cuál es el principal producto agrícola producido en España?", + "en_question": "What is the main agricultural product produced in your country?", + "annotations": [ + { + "answers": [ + "fruta", + "frutas" + ], + "en_answers": [ + "fruit", + "fruits" + ], + "count": 2 + }, + { + "answers": [ + "aceite de oliva" + ], + "en_answers": [ + "olive oil" + ], + "count": 1 + }, + { + "answers": [ + "naranja" + ], + "en_answers": [ + "orange" + ], + "count": 1 + }, + { + "answers": [ + "cítricos" + ], + "en_answers": [ + "citrus fruits" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-02": { + "question": "¿Cuál es el alimento con trigo más popular en España?", + "en_question": "What is the most popular wheat-based food item in your country?", + "annotations": [ + { + "answers": [ + "pan" + ], + "en_answers": [ + "bread" + ], + "count": 5 + }, + { + "answers": [ + "pasta" + ], + "en_answers": [ + "money" + ], + "count": 2 + }, + { + "answers": [ + "picos" + ], + "en_answers": [ + "peaks" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-05": { + "question": "¿Cuál es la bebida más típica que se ofrece a los invitados cuando visitan las casas en España?", + "en_question": "What is the most typical drink offered to guests when they visit households in your country?", + "annotations": [ + { + "answers": [ + "cerveza" + ], + "en_answers": [ + "beer" + ], + "count": 4 + }, + { + "answers": [ + "vino" + ], + "en_answers": [ + "wine" + ], + "count": 1 + }, + { + "answers": [ + "gazpacho" + ], + "en_answers": [ + "cold tomato soup" + ], + "count": 1 + }, + { + "answers": [ + "tinto de verano" + ], + "en_answers": [ + "summer red wine" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-07": { + "question": "¿Cuál es el plato más popular cocinado con pescado en España?", + "en_question": "What is the most popular dish cooked with fish in your country?", + "annotations": [ + { + "answers": [ + "bacalao al pil-pil.", + "bacalao al pil-pil" + ], + "en_answers": [ + "cod pil-pil style.", + "cod pil-pil style" + ], + "count": 2 + }, + { + "answers": [ + "fritura de pescado" + ], + "en_answers": [ + "fried fish" + ], + "count": 1 + }, + { + "answers": [ + "pulpo a la gallega" + ], + "en_answers": [ + "galician-style octopus" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-as-14": { + "question": "¿Qué comida les gusta comer a las personas de España durante el tiempo lluvioso?", + "en_question": "What food do people from your country like to eat during rainy weather?", + "annotations": [ + { + "answers": [ + "puchero" + ], + "en_answers": [ + "stew" + ], + "count": 2 + }, + { + "answers": [ + "chocolate con churros" + ], + "en_answers": [ + "chocolate with churros" + ], + "count": 1 + }, + { + "answers": [ + "cocido" + ], + "en_answers": [ + "stew" + ], + "count": 1 + }, + { + "answers": [ + "lentejas" + ], + "en_answers": [ + "lentils" + ], + "count": 1 + }, + { + "answers": [ + "potaje" + ], + "en_answers": [ + "stew" + ], + "count": 1 + }, + { + "answers": [ + "sopa" + ], + "en_answers": [ + "soup" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-as-15": { + "question": "¿Qué bebida se consume comúnmente en España cuando hace calor?", + "en_question": "What drink is commonly consumed in your country when the weather is hot?", + "annotations": [ + { + "answers": [ + "cerveza" + ], + "en_answers": [ + "beer" + ], + "count": 3 + }, + { + "answers": [ + "agua" + ], + "en_answers": [ + "water" + ], + "count": 2 + }, + { + "answers": [ + "refrescos" + ], + "en_answers": [ + "soft drinks" + ], + "count": 1 + }, + { + "answers": [ + "sangría" + ], + "en_answers": [ + "indentation" + ], + "count": 1 + }, + { + "answers": [ + "vino tinto" + ], + "en_answers": [ + "red wine" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-as-20": { + "question": "¿Cuál es el deporte de interior más popular en España?", + "en_question": "What is the most popular indoor sport in your country?", + "annotations": [ + { + "answers": [ + "baloncesto" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "futbol sala", + "fútbol sala" + ], + "en_answers": [ + "indoor football" + ], + "count": 2 + }, + { + "answers": [ + "fútbol 7" + ], + "en_answers": [ + "7-a-side football" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-as-29": { + "question": "¿Qué deporte les gusta ver a los hombres en España?", + "en_question": "What sport do men in your country like to watch?", + "annotations": [ + { + "answers": [ + "futbol", + "fútbol" + ], + "en_answers": [ + "football, soccer", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "baloncesto" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-30": { + "question": "¿Qué deporte les gusta ver a las mujeres en España?", + "en_question": "What sport do women in your country like to watch?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol" + ], + "en_answers": [ + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "baloncesto" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "balonmano" + ], + "en_answers": [ + "handball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-58": { + "question": "¿Cuál es la bebida más popular que a la gente de España le gusta beber en su lugar de trabajo?", + "en_question": "What is the most popular beverage that people from your country like to drink in their workplace?", + "annotations": [ + { + "answers": [ + "café", + "cafe" + ], + "en_answers": [ + "coffee" + ], + "count": 3 + }, + { + "answers": [ + "agua" + ], + "en_answers": [ + "water" + ], + "count": 1 + }, + { + "answers": [ + "té" + ], + "en_answers": [ + "tea" + ], + "count": 1 + }, + { + "answers": [ + "cocacola" + ], + "en_answers": [ + "coca-cola" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-as-64": { + "question": "¿En qué festivo suelen reunirse todos los miembros de la familia en España?", + "en_question": "On which holiday do all family members tend to reunite in your country?", + "annotations": [ + { + "answers": [ + "navidad" + ], + "en_answers": [ + "christmas" + ], + "count": 3 + }, + { + "answers": [ + "nochebuena", + "nochebuena (24 de diciembre)" + ], + "en_answers": [ + "christmas eve", + "christmas eve (december 24)" + ], + "count": 2 + }, + { + "answers": [ + "nochevieja", + "nochevieja (31 de diciembre)" + ], + "en_answers": [ + "new year's eve", + "new year's eve (december 31)" + ], + "count": 2 + }, + { + "answers": [ + "domingo" + ], + "en_answers": [ + "sunday" + ], + "count": 1 + }, + { + "answers": [ + "año nuevo" + ], + "en_answers": [ + "new year" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-76": { + "question": "¿Qué juegos tradicionales juegan las familias durante las fiestas tradicionales en España?", + "en_question": "What traditional games do families play during traditional holidays in your country?", + "annotations": [ + { + "answers": [ + "la oca" + ], + "en_answers": [ + "the goose" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 3, + "not-applicable": 1, + "idk": 1 + } + }, + "New-as-80": { + "question": "¿Qué tipo de ropa visten las personas de España durante los festivales tradicionales?", + "en_question": "What type of clothing do people from your country wear during traditional festivals?", + "annotations": [ + { + "answers": [ + "vestidos" + ], + "en_answers": [ + "dresses" + ], + "count": 1 + }, + { + "answers": [ + "trajes" + ], + "en_answers": [ + "suits" + ], + "count": 1 + }, + { + "answers": [ + "traje flamenca" + ], + "en_answers": [ + "flamenco dress" + ], + "count": 1 + }, + { + "answers": [ + "traje rociero" + ], + "en_answers": [ + "rociero dress" + ], + "count": 1 + }, + { + "answers": [ + "trajes regionales" + ], + "en_answers": [ + "regional costumes" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "New-as-89": { + "question": "¿Qué accesorios tradicionales de fiesta lleva la gente de España?", + "en_question": "What traditional festival accessories do people from your country wear?", + "annotations": [ + { + "answers": [ + "peineta", + "peinetas" + ], + "en_answers": [ + "comb", + "hair combs" + ], + "count": 3 + }, + { + "answers": [ + "flor" + ], + "en_answers": [ + "flower" + ], + "count": 2 + }, + { + "answers": [ + "mantilla" + ], + "en_answers": [ + "lace or silk scarf worn by women over the hair and shoulders, especially in spain" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-az-05": { + "question": "¿Cuál es la región más famosa por la producción de alcohol en España?", + "en_question": "What is the most famous region for alcohol production in your country?", + "annotations": [ + { + "answers": [ + "la rioja", + "rioja" + ], + "en_answers": [ + "la rioja", + "rioja" + ], + "count": 3 + }, + { + "answers": [ + "castilla la mancha", + "castilla-la mancha" + ], + "en_answers": [ + "castile-la mancha" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-11": { + "question": "¿Qué fruta comen a menudo las personas de España en la temporada de verano?", + "en_question": "What fruit do people from your country often eat in the summer season?", + "annotations": [ + { + "answers": [ + "sandía", + "sandia" + ], + "en_answers": [ + "watermelon" + ], + "count": 5 + }, + { + "answers": [ + "melón", + "melon" + ], + "en_answers": [ + "melon" + ], + "count": 5 + }, + { + "answers": [ + "cerezas" + ], + "en_answers": [ + "cherries" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-12": { + "question": "¿Qué región de España es conocida por su marisco?", + "en_question": "Which region in your country is known for its seafood?", + "annotations": [ + { + "answers": [ + "galicia" + ], + "en_answers": [ + "galicia" + ], + "count": 4 + }, + { + "answers": [ + "murcia" + ], + "en_answers": [ + "murcia" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-21": { + "question": "¿Cuál es la región más popular para esquiar en España?", + "en_question": "Which region in your country is the most popular skiing destination?", + "annotations": [ + { + "answers": [ + "sierra nevada", + "granada" + ], + "en_answers": [ + "snowy mountain range", + "pomegranate" + ], + "count": 2 + }, + { + "answers": [ + "huesca" + ], + "en_answers": [ + "huesca" + ], + "count": 1 + }, + { + "answers": [ + "cristianismo" + ], + "en_answers": [ + "christianity" + ], + "count": 1 + }, + { + "answers": [ + "pirineos" + ], + "en_answers": [ + "pyrenees" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-az-26": { + "question": "¿Quién es el deportista de artes marciales más popular en España?", + "en_question": "Who is the most popular martial arts player in your country?", + "annotations": [], + "idks": { + "idk": 5, + "no-answer": 1, + "not-applicable": 1 + } + }, + "New-az-27": { + "question": "¿Cuál ha sido uno de los deportes de más rápido crecimiento en España durante la última década?", + "en_question": "Which sport has been one of the fastest-growing in your country over the last decade?", + "annotations": [ + { + "answers": [ + "fútbol femenino", + "futbol femenino" + ], + "en_answers": [ + "women's soccer" + ], + "count": 3 + }, + { + "answers": [ + "pádel" + ], + "en_answers": [ + "padel" + ], + "count": 1 + }, + { + "answers": [ + "baloncesto" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-az-39": { + "question": "¿Qué país es el destino más popular para los estudiantes de España que estudian en el extranjero?", + "en_question": "Which country is the most popular destination for students from your country studying abroad?", + "annotations": [ + { + "answers": [ + "italia" + ], + "en_answers": [ + "italy" + ], + "count": 4 + }, + { + "answers": [ + "reino unido" + ], + "en_answers": [ + "united kingdom" + ], + "count": 2 + }, + { + "answers": [ + "europa del este" + ], + "en_answers": [ + "eastern europe" + ], + "count": 1 + }, + { + "answers": [ + "irlanda" + ], + "en_answers": [ + "ireland" + ], + "count": 1 + }, + { + "answers": [ + "polonia" + ], + "en_answers": [ + "poland" + ], + "count": 1 + }, + { + "answers": [ + "francia" + ], + "en_answers": [ + "france" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-49": { + "question": "¿Cuántas personas trabajan en una familia típica en España? (Indica solo números arábigos (p. ej., 1).)", + "en_question": "How many people work in a typical family in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 5 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-60": { + "question": "¿En España, quién se encarga de los niños cuando ambos padres están trabajando?", + "en_question": "In your country, who takes care of kids when both parents are working?", + "annotations": [ + { + "answers": [ + "abuelos", + "los abuelos" + ], + "en_answers": [ + "grandparents", + "the grandparents" + ], + "count": 4 + }, + { + "answers": [ + "niñera" + ], + "en_answers": [ + "babysitter" + ], + "count": 1 + }, + { + "answers": [ + "abuela" + ], + "en_answers": [ + "grandmother" + ], + "count": 1 + }, + { + "answers": [ + "guardería", + "guarderia" + ], + "en_answers": [ + "nursery" + ], + "count": 1 + }, + { + "answers": [ + "niñera", + "ninera" + ], + "en_answers": [ + "babysitter" + ], + "count": 1 + }, + { + "answers": [ + "hermanos mayores" + ], + "en_answers": [ + "older siblings" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-69": { + "question": "¿Cuál es la bebida alcohólica preferida por los hombres de España?", + "en_question": "What is the preferred alcoholic beverage for men from your country?", + "annotations": [ + { + "answers": [ + "cerveza" + ], + "en_answers": [ + "beer" + ], + "count": 4 + }, + { + "answers": [ + "vino" + ], + "en_answers": [ + "wine" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-az-70": { + "question": "¿Cuál es la bebida alcohólica preferida por las mujeres de España?", + "en_question": "What is the preferred alcoholic beverage for women from your country?", + "annotations": [ + { + "answers": [ + "cerveza" + ], + "en_answers": [ + "beer" + ], + "count": 3 + }, + { + "answers": [ + "tinto de verano" + ], + "en_answers": [ + "summer red wine" + ], + "count": 1 + }, + { + "answers": [ + "vino" + ], + "en_answers": [ + "wine" + ], + "count": 1 + }, + { + "answers": [ + "puerto de indias", + "ginebra, gin" + ], + "en_answers": [ + "port of indies, gin" + ], + "count": 1 + }, + { + "answers": [ + "vino tinto" + ], + "en_answers": [ + "red wine" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-73": { + "question": "¿Cuántas personas asisten de media a una boda en España? (Indica solo números arábigos (p. ej., 1).)", + "en_question": "How many people on average typically attend a wedding in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + }, + { + "answers": [ + "35" + ], + "en_answers": [ + "35" + ], + "count": 1 + }, + { + "answers": [ + "125" + ], + "en_answers": [ + "125" + ], + "count": 1 + }, + { + "answers": [ + "80" + ], + "en_answers": [ + "80" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-01": { + "question": "¿Qué tipo de carne suele comer la gente cuando hacen barbacoa en España?", + "en_question": "What kind of meat do people usually eat when they have barbecue in your country?", + "annotations": [ + { + "answers": [ + "chuletas" + ], + "en_answers": [ + "cheat sheets" + ], + "count": 2 + }, + { + "answers": [ + "cerdo" + ], + "en_answers": [ + "pig" + ], + "count": 2 + }, + { + "answers": [ + "embutido" + ], + "en_answers": [ + "cold cut" + ], + "count": 1 + }, + { + "answers": [ + "costillas de ternera" + ], + "en_answers": [ + "veal ribs" + ], + "count": 1 + }, + { + "answers": [ + "panceta" + ], + "en_answers": [ + "bacon" + ], + "count": 1 + }, + { + "answers": [ + "salchichas" + ], + "en_answers": [ + "sausages" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-02": { + "question": "¿A qué hora suelen desayunar las personas en España? (Indica en formato HH:MM, por ejemplo, 18:00, 09:00).", + "en_question": "When do people usually have breakfast in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:00", + "8h" + ], + "en_answers": [ + "08:00" + ], + "count": 2 + }, + { + "answers": [ + "09:00", + "9h" + ], + "en_answers": [ + "09:00" + ], + "count": 2 + }, + { + "answers": [ + "11:00", + "11h" + ], + "en_answers": [ + "11:00" + ], + "count": 1 + }, + { + "answers": [ + "10:00", + "10h" + ], + "en_answers": [ + "10:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-04": { + "question": "¿Qué tipos de comida suelen comer las personas para los tentempiés nocturnos en España?", + "en_question": "What kinds of food do people usually eat for late-night snacks in your country?", + "annotations": [ + { + "answers": [ + "lacteos" + ], + "en_answers": [ + "dairy products" + ], + "count": 1 + }, + { + "answers": [ + "verdura" + ], + "en_answers": [ + "vegetable" + ], + "count": 1 + }, + { + "answers": [ + "pescado" + ], + "en_answers": [ + "fish" + ], + "count": 1 + }, + { + "answers": [ + "tapas", + "aperitivos, canapés" + ], + "en_answers": [ + "appetizers" + ], + "count": 1 + }, + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + }, + { + "answers": [ + "parrilla" + ], + "en_answers": [ + "grill" + ], + "count": 1 + }, + { + "answers": [ + "patatas fritas" + ], + "en_answers": [ + "french fries" + ], + "count": 1 + }, + { + "answers": [ + "tortilla de patatas" + ], + "en_answers": [ + "spanish omelette" + ], + "count": 1 + }, + { + "answers": [ + "patatas bravas" + ], + "en_answers": [ + "spicy potatoes" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-05": { + "question": "¿Cuál es el plato picante más famoso de España?", + "en_question": "What is the most famous spicy dish in your country?", + "annotations": [ + { + "answers": [ + "patatas bravas" + ], + "en_answers": [ + "spicy potatoes" + ], + "count": 3 + }, + { + "answers": [ + "pimientos de padrón" + ], + "en_answers": [ + "padrón peppers" + ], + "count": 1 + }, + { + "answers": [ + "chorizo picante" + ], + "en_answers": [ + "spicy sausage" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-07": { + "question": "¿Con qué alimentos suelen acompañar las bebidas alcohólicas fuertes en España?", + "en_question": "What food items do people typically pair with hard liquor in your country?", + "annotations": [ + { + "answers": [ + "frutos secos" + ], + "en_answers": [ + "dried fruits/nuts" + ], + "count": 4 + }, + { + "answers": [ + "cacahuetes" + ], + "en_answers": [ + "peanuts" + ], + "count": 1 + }, + { + "answers": [ + "aceitunas" + ], + "en_answers": [ + "olives" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-08": { + "question": "¿Qué condimento es indispensable para cocinar en España?", + "en_question": "What seasoning is indispensable in cooking in your country?", + "annotations": [ + { + "answers": [ + "sal" + ], + "en_answers": [ + "salt" + ], + "count": 3 + }, + { + "answers": [ + "aceite de oliva", + "aceite" + ], + "en_answers": [ + "olive oil", + "oil" + ], + "count": 2 + }, + { + "answers": [ + "ninguno" + ], + "en_answers": [ + "none" + ], + "count": 1 + }, + { + "answers": [ + "pimentón", + "pimenton" + ], + "en_answers": [ + "paprika" + ], + "count": 1 + }, + { + "answers": [ + "tomillo" + ], + "en_answers": [ + "thyme" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-09": { + "question": "¿Qué comida consumen típicamente las personas cuando hace frío en España?", + "en_question": "What food do people typically consume when the weather is cold in your country?", + "annotations": [ + { + "answers": [ + "sopa" + ], + "en_answers": [ + "soup" + ], + "count": 4 + }, + { + "answers": [ + "potaje", + "guiso" + ], + "en_answers": [ + "stew" + ], + "count": 2 + }, + { + "answers": [ + "cocido", + "cocidos" + ], + "en_answers": [ + "stew", + "stews" + ], + "count": 2 + }, + { + "answers": [ + "chocolate caliente" + ], + "en_answers": [ + "hot chocolate" + ], + "count": 1 + }, + { + "answers": [ + "lentejas" + ], + "en_answers": [ + "lentils" + ], + "count": 1 + }, + { + "answers": [ + "caldo cocido" + ], + "en_answers": [ + "cooked broth" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-13": { + "question": "¿Cuál es la marca de alcohol más famosa en España?", + "en_question": "What is the most famous alcohol brand in your country?", + "annotations": [ + { + "answers": [ + "mahou" + ], + "en_answers": [ + "mahou" + ], + "count": 2 + }, + { + "answers": [ + "dyc" + ], + "en_answers": [ + "dyc" + ], + "count": 1 + }, + { + "answers": [ + "san miguel" + ], + "en_answers": [ + "saint michael" + ], + "count": 1 + }, + { + "answers": [ + "rioja" + ], + "en_answers": [ + "rioja" + ], + "count": 1 + }, + { + "answers": [ + "freixenet" + ], + "en_answers": [ + "freixenet" + ], + "count": 1 + }, + { + "answers": [ + "gin mare" + ], + "en_answers": [ + "gin mare" + ], + "count": 1 + }, + { + "answers": [ + "brugal" + ], + "en_answers": [ + "brugal" + ], + "count": 1 + }, + { + "answers": [ + "damm" + ], + "en_answers": [ + "give" + ], + "count": 1 + }, + { + "answers": [ + "jb" + ], + "en_answers": [ + "job" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-14": { + "question": "¿Qué alimentos suelen comer las personas cuando están enfermas en España?", + "en_question": "What foods do people usually eat when they are sick in your country?", + "annotations": [ + { + "answers": [ + "caldo" + ], + "en_answers": [ + "broth" + ], + "count": 1 + }, + { + "answers": [ + "sopa" + ], + "en_answers": [ + "soup" + ], + "count": 1 + }, + { + "answers": [ + "dieta blanda" + ], + "en_answers": [ + "soft diet" + ], + "count": 1 + }, + { + "answers": [ + "tortilla" + ], + "en_answers": [ + "omelette" + ], + "count": 1 + }, + { + "answers": [ + "pescado a la plancha" + ], + "en_answers": [ + "grilled fish" + ], + "count": 1 + }, + { + "answers": [ + "sopa de fideos" + ], + "en_answers": [ + "noodle soup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-15": { + "question": "¿Qué comida preparada/lista para comer suelen comprar las personas en los supermercados de España?", + "en_question": "What prepared/ready-to-eat food do people typically buy at supermarkets in your country?", + "annotations": [ + { + "answers": [ + "canelones" + ], + "en_answers": [ + "cannelloni" + ], + "count": 1 + }, + { + "answers": [ + "tortilla de patata" + ], + "en_answers": [ + "potato omelette" + ], + "count": 1 + }, + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + }, + { + "answers": [ + "pasta" + ], + "en_answers": [ + "money" + ], + "count": 1 + }, + { + "answers": [ + "ensalada" + ], + "en_answers": [ + "salad" + ], + "count": 1 + }, + { + "answers": [ + "lentejas" + ], + "en_answers": [ + "lentils" + ], + "count": 1 + }, + { + "answers": [ + "fabada" + ], + "en_answers": [ + "bean stew" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-16": { + "question": "¿Cuál es la película relacionada con el deporte más famosa en España?", + "en_question": "What is the most famous sports-related movie in your country?", + "annotations": [ + { + "answers": [ + "campeones" + ], + "en_answers": [ + "champions" + ], + "count": 5 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-17": { + "question": "¿Qué deporte extremo desean probar más las personas en general en España?", + "en_question": "What extreme sport do people generally wish to try the most in your country?", + "annotations": [ + { + "answers": [ + "paracaidismo", + "paracaídismo", + "paracaidas" + ], + "en_answers": [ + "skydiving", + "parachute" + ], + "count": 4 + }, + { + "answers": [ + "puenting" + ], + "en_answers": [ + "bungee jumping" + ], + "count": 2 + }, + { + "answers": [ + "surf" + ], + "en_answers": [ + "surf" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-18": { + "question": "¿Cuál es la prueba de atletismo más popular para ver durante las competiciones en España?", + "en_question": "Which track and field event is the most popular to watch during competitions in your country?", + "annotations": [ + { + "answers": [ + "100 metros" + ], + "en_answers": [ + "100 meters" + ], + "count": 2 + }, + { + "answers": [ + "salto de altura" + ], + "en_answers": [ + "high jump" + ], + "count": 1 + }, + { + "answers": [ + "salto de longitud" + ], + "en_answers": [ + "long jump" + ], + "count": 1 + }, + { + "answers": [ + "maratón", + "maraton" + ], + "en_answers": [ + "marathon" + ], + "count": 1 + }, + { + "answers": [ + "vallas" + ], + "en_answers": [ + "fences" + ], + "count": 1 + }, + { + "answers": [ + "carreras" + ], + "en_answers": [ + "races" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-19": { + "question": "¿Cuál es la prueba de gimnasia más popular para ver durante las competiciones en España?", + "en_question": "Which gymnastics event is the most popular to watch during competitions in your country?", + "annotations": [ + { + "answers": [ + "100m valla" + ], + "en_answers": [ + "100m hurdles" + ], + "count": 1 + }, + { + "answers": [ + "gimnasia artistica" + ], + "en_answers": [ + "artistic gymnastics" + ], + "count": 1 + }, + { + "answers": [ + "rítmica" + ], + "en_answers": [ + "rhythmic" + ], + "count": 1 + }, + { + "answers": [ + "las barras" + ], + "en_answers": [ + "the bars" + ], + "count": 1 + }, + { + "answers": [ + "gimnasia rítmica" + ], + "en_answers": [ + "rhythmic gymnastics" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-23": { + "question": "¿Quién es el jugador de tenis de mesa más famoso de España?", + "en_question": "Who is the most famous table tennis player in your country?", + "annotations": [ + { + "answers": [ + "he zhi wen (juanito)", + "he zhi wen", + "juanito" + ], + "en_answers": [ + "juanito", + "he zhi wen" + ], + "count": 2 + } + ], + "idks": { + "idk": 6, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-ch-26": { + "question": "En los Juegos Olímpicos de Invierno, ¿cuál es el evento más popular para ver en España?", + "en_question": "In the Winter Olympics, which event is the most popular to watch in your country?", + "annotations": [ + { + "answers": [ + "ski" + ], + "en_answers": [ + "ski" + ], + "count": 1 + }, + { + "answers": [ + "salto de trampolin" + ], + "en_answers": [ + "diving" + ], + "count": 1 + }, + { + "answers": [ + "esquí alpino" + ], + "en_answers": [ + "alpine skiing" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "Los JJOO (Invierno incluidos) no son populares en España": 1, + "no-answer": 0 + } + }, + "New-ch-27": { + "question": "¿Quién es el boxeador más famoso de España?", + "en_question": "Who is the most famous boxer in your country?", + "annotations": [ + { + "answers": [ + "poli díaz", + "poli diaz", + "el poli" + ], + "en_answers": [ + "poli diaz", + "the cop" + ], + "count": 2 + }, + { + "answers": [ + "ilia topuria", + "topuria", + "tupuria" + ], + "en_answers": [ + "ilia topuria", + "your joke" + ], + "count": 2 + }, + { + "answers": [ + "perico fernández", + "perico fernandez" + ], + "en_answers": [ + "perico fernandez" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-30": { + "question": "¿Quién es el atleta de atletismo más famoso de España?", + "en_question": "Who is the most famous track and field athlete in your country?", + "annotations": [ + { + "answers": [ + "ana peleteiro", + "peleteiro" + ], + "en_answers": [ + "ana peleteiro", + "pellet maker" + ], + "count": 3 + }, + { + "answers": [ + "martín fiz", + "martin fiz", + "fermín cacho" + ], + "en_answers": [ + "martin fiz", + "fermín cacho" + ], + "count": 2 + }, + { + "answers": [ + "fermín cacho", + "fermin cacho" + ], + "en_answers": [ + "fermin cacho" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-31": { + "question": "¿Qué profesión esperan los padres que sus hijos persigan más en España?", + "en_question": "What job do parents most hope their children will pursue in your country?", + "annotations": [ + { + "answers": [ + "médico", + "médicos", + "medicos", + "medicina" + ], + "en_answers": [ + "doctor", + "doctors", + "medicine" + ], + "count": 4 + }, + { + "answers": [ + "ingeniero", + "ingenieros" + ], + "en_answers": [ + "engineer", + "engineers" + ], + "count": 3 + }, + { + "answers": [ + "abogados", + "abogacía", + "abogacia", + "juristas", + "derecho" + ], + "en_answers": [ + "lawyers", + "law" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-32": { + "question": "¿Qué software de oficina suelen utilizar las personas en el lugar de trabajo en España?", + "en_question": "What office software do people typically use in the workplace in your country?", + "annotations": [ + { + "answers": [ + "excel" + ], + "en_answers": [ + "spreadsheet" + ], + "count": 3 + }, + { + "answers": [ + "microsoft office" + ], + "en_answers": [ + "microsoft office" + ], + "count": 2 + }, + { + "answers": [ + "word" + ], + "en_answers": [ + "word" + ], + "count": 2 + }, + { + "answers": [ + "microsoft 365" + ], + "en_answers": [ + "microsoft 365" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-38": { + "question": "¿Qué ciudades o regiones son conocidas por sus actividades de importación y exportación en España?", + "en_question": "Which cities or regions are known for their import and export activities in your country?", + "annotations": [ + { + "answers": [ + "barcelona" + ], + "en_answers": [ + "barcelona" + ], + "count": 3 + }, + { + "answers": [ + "valencia" + ], + "en_answers": [ + "valencia" + ], + "count": 2 + }, + { + "answers": [ + "bilbao" + ], + "en_answers": [ + "bilbao" + ], + "count": 2 + }, + { + "answers": [ + "andalucía", + "andalucia" + ], + "en_answers": [ + "andalusia" + ], + "count": 1 + }, + { + "answers": [ + "canarias", + "islas canarias, archipiélago canario" + ], + "en_answers": [ + "canary islands" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-39": { + "question": "¿Qué plataforma se utiliza comúnmente en la industria del comercio electrónico en España?", + "en_question": "What platform is commonly used in the e-commerce industry in your country?", + "annotations": [ + { + "answers": [ + "amazon", + "amazón" + ], + "en_answers": [ + "amazon" + ], + "count": 4 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ch-44": { + "question": "¿Cuál es el período de prueba típico para los nuevos empleados antes de firmar un contrato formal en España? (por ejemplo, 1 mes).", + "en_question": "How long is the typical probation period for new employees before signing a formal contract in your country? (e.g., 1 month).", + "annotations": [ + { + "answers": [ + "6 meses" + ], + "en_answers": [ + "6 months" + ], + "count": 1 + }, + { + "answers": [ + "2 meses", + "2" + ], + "en_answers": [ + "2 months" + ], + "count": 1 + }, + { + "answers": [ + "3 meses" + ], + "en_answers": [ + "3 months" + ], + "count": 1 + }, + { + "answers": [ + "1-6 meses" + ], + "en_answers": [ + "1-6 months" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-ch-45": { + "question": "¿En qué industrias suelen elegir los jóvenes empezar negocios en España?", + "en_question": "Which industries do young people typically choose to start businesses in your country?", + "annotations": [ + { + "answers": [ + "turismo" + ], + "en_answers": [ + "tourism" + ], + "count": 1 + }, + { + "answers": [ + "textil" + ], + "en_answers": [ + "textile" + ], + "count": 1 + }, + { + "answers": [ + "audiovisual" + ], + "en_answers": [ + "audiovisual" + ], + "count": 1 + }, + { + "answers": [ + "retail", + "venta al por menor" + ], + "en_answers": [ + "retail" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 1 + } + }, + "New-ch-49": { + "question": "¿Cuál es la forma más común en que los miembros de una familia se comunican a distancia en España?", + "en_question": "What is the most common way for family members to communicate remotely in your country?", + "annotations": [ + { + "answers": [ + "whatsapp", + "whatsup" + ], + "en_answers": [ + "whatsapp" + ], + "count": 4 + }, + { + "answers": [ + "móvil" + ], + "en_answers": [ + "mobile" + ], + "count": 1 + }, + { + "answers": [ + "teléfono" + ], + "en_answers": [ + "phone" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-51": { + "question": "¿Qué tipo de alojamiento se reserva habitualmente para viajes familiares en España?", + "en_question": "What form of accommodation is typically booked for family trips in your country?", + "annotations": [ + { + "answers": [ + "apartamento", + "apartamentos" + ], + "en_answers": [ + "apartment", + "apartments" + ], + "count": 2 + }, + { + "answers": [ + "hotel o apartamento" + ], + "en_answers": [ + "hotel or apartment" + ], + "count": 1 + }, + { + "answers": [ + "hostal" + ], + "en_answers": [ + "hostel" + ], + "count": 1 + }, + { + "answers": [ + "hotel" + ], + "en_answers": [ + "hotel" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-54": { + "question": "¿Qué fruta se suele preparar más para las cenas familiares en España?", + "en_question": "Which fruit is usually prepared the most for family dinners in your country?", + "annotations": [ + { + "answers": [ + "melón", + "melon" + ], + "en_answers": [ + "melon" + ], + "count": 1 + }, + { + "answers": [ + "tomate" + ], + "en_answers": [ + "tomato" + ], + "count": 1 + }, + { + "answers": [ + "macedonia" + ], + "en_answers": [ + "fruit salad" + ], + "count": 1 + }, + { + "answers": [ + "fresas" + ], + "en_answers": [ + "strawberries" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ch-64": { + "question": "¿Cuántas horas de clases suelen tener los estudiantes universitarios por semana en España? (Proporciona solo números arábigos (por ejemplo, 1).)", + "en_question": "How many hours of classes do university students typically have per week in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 2 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 2 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-66": { + "question": "¿Cuál es la tasa de matrícula típica por semestre para los institutos públicos en España? (Proporciona solo números arábigos (p. ej., 1).)", + "en_question": "What is the typical tuition fee per semester for public high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "0", + "no hay", + "gratuito" + ], + "en_answers": [ + "0", + "there is no" + ], + "count": 3 + }, + { + "answers": [ + "0-50" + ], + "en_answers": [ + "0-50" + ], + "count": 1 + } + ], + "idks": { + "idk": 5, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-ch-70": { + "question": "¿Qué asignaturas obligatorias tienen en común los estudiantes universitarios en España?", + "en_question": "What compulsory courses do university students have in common in your country?", + "annotations": [ + { + "answers": [ + "matemáticas", + "matematicas" + ], + "en_answers": [ + "mathematics" + ], + "count": 2 + }, + { + "answers": [ + "idiomas" + ], + "en_answers": [ + "languages" + ], + "count": 1 + }, + { + "answers": [ + "física", + "fisica" + ], + "en_answers": [ + "physics" + ], + "count": 1 + }, + { + "answers": [ + "estadística", + "estadistica" + ], + "en_answers": [ + "statistics" + ], + "count": 1 + }, + { + "answers": [ + "inglés" + ], + "en_answers": [ + "english" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ch-71": { + "question": "¿Cuál es el tamaño medio de las clases en los institutos de secundaria en España? (Proporcione solo números arábigos (p. ej., 1).)", + "en_question": "What is the average class size in high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 2 + }, + { + "answers": [ + "35" + ], + "en_answers": [ + "35" + ], + "count": 1 + }, + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-72": { + "question": "¿Qué carrera se considera que conduce más al empleo en España?", + "en_question": "Which major is considered most conducive to employment in your country?", + "annotations": [ + { + "answers": [ + "computación", + "coputacion", + "ingeniería informática", + "ingenieria informatica", + "informática", + "ciencias de la computación, informática" + ], + "en_answers": [ + "coputacion", + "computer engineering", + "computing" + ], + "count": 2 + }, + { + "answers": [ + "ingeniería", + "ingenieria" + ], + "en_answers": [ + "engineering" + ], + "count": 1 + }, + { + "answers": [ + "administración de empresas" + ], + "en_answers": [ + "business administration" + ], + "count": 1 + }, + { + "answers": [ + "ingeniería industrial" + ], + "en_answers": [ + "industrial engineering" + ], + "count": 1 + }, + { + "answers": [ + "funcionario" + ], + "en_answers": [ + "civil servant" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-73": { + "question": "¿Qué tipo de clubes son los más populares entre los estudiantes universitarios en España?", + "en_question": "What type of clubs are most popular among university students in your country?", + "annotations": [ + { + "answers": [ + "discotecas" + ], + "en_answers": [ + "nightclubs" + ], + "count": 1 + }, + { + "answers": [ + "pubs gratuitos" + ], + "en_answers": [ + "free pubs" + ], + "count": 1 + }, + { + "answers": [ + "bares" + ], + "en_answers": [ + "bars" + ], + "count": 1 + }, + { + "answers": [ + "deportivos" + ], + "en_answers": [ + "sports" + ], + "count": 1 + }, + { + "answers": [ + "discotecas de reggeaton" + ], + "en_answers": [ + "reggaeton nightclubs" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-74": { + "question": "¿Dónde viven principalmente los estudiantes universitarios en España?", + "en_question": "What types of accommodation do university students in your country typically live in?", + "annotations": [ + { + "answers": [ + "residencias universitarias", + "residencias" + ], + "en_answers": [ + "university residences", + "residences" + ], + "count": 3 + }, + { + "answers": [ + "pisos compartidos" + ], + "en_answers": [ + "shared apartments" + ], + "count": 2 + }, + { + "answers": [ + "madrid" + ], + "en_answers": [ + "madrid" + ], + "count": 1 + }, + { + "answers": [ + "cerca de la universidad" + ], + "en_answers": [ + "near the university" + ], + "count": 1 + }, + { + "answers": [ + "casa familiar" + ], + "en_answers": [ + "family home" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-75": { + "question": "¿Cuánto dura cada período de clase para los estudiantes de secundaria en España (minutos)? (Proporcione solo números arábigos (por ejemplo, 1).)", + "en_question": "How long is each class period for middle school students in your country (minutes)? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "55" + ], + "en_answers": [ + "55" + ], + "count": 3 + }, + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 2 + }, + { + "answers": [ + "90" + ], + "en_answers": [ + "90" + ], + "count": 1 + }, + { + "answers": [ + "45" + ], + "en_answers": [ + "45" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-78": { + "question": "¿Qué actividades de ocio suelen gustar a las mujeres jubiladas en España?", + "en_question": "What leisure activities do retired women typically like in your country?", + "annotations": [ + { + "answers": [ + "jugar a las cartas", + "jugar cartas", + "cartas" + ], + "en_answers": [ + "play cards, cards" + ], + "count": 1 + }, + { + "answers": [ + "viajes" + ], + "en_answers": [ + "trips" + ], + "count": 1 + }, + { + "answers": [ + "reunirse" + ], + "en_answers": [ + "to meet" + ], + "count": 1 + }, + { + "answers": [ + "bingo" + ], + "en_answers": [ + "bingo" + ], + "count": 1 + }, + { + "answers": [ + "pasear" + ], + "en_answers": [ + "to walk" + ], + "count": 1 + }, + { + "answers": [ + "ir de terrazas" + ], + "en_answers": [ + "go to terraces" + ], + "count": 1 + }, + { + "answers": [ + "charlar con las amigas" + ], + "en_answers": [ + "chat with friends" + ], + "count": 1 + }, + { + "answers": [ + "cursos", + "cursos (jabones" + ], + "en_answers": [ + "courses" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-79": { + "question": "¿Qué actividades de ocio suelen gustar a los hombres jubilados en España?", + "en_question": "What leisure activities do retired men typically like in your country?", + "annotations": [ + { + "answers": [ + "petanca" + ], + "en_answers": [ + "boules" + ], + "count": 3 + }, + { + "answers": [ + "baile" + ], + "en_answers": [ + "dance" + ], + "count": 1 + }, + { + "answers": [ + "ajedrez" + ], + "en_answers": [ + "chess" + ], + "count": 1 + }, + { + "answers": [ + "charlar en un banco" + ], + "en_answers": [ + "chat on a bench" + ], + "count": 1 + }, + { + "answers": [ + "hacer viajes" + ], + "en_answers": [ + "make trips" + ], + "count": 1 + }, + { + "answers": [ + "pasear" + ], + "en_answers": [ + "to walk" + ], + "count": 1 + }, + { + "answers": [ + "jugar al dominó" + ], + "en_answers": [ + "play dominoes" + ], + "count": 1 + }, + { + "answers": [ + "la televisión", + "ver la televisión" + ], + "en_answers": [ + "the television" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-80": { + "question": "¿En qué festividades suelen las personas visitar lugares religiosos (templos, iglesias, etc.) en España?", + "en_question": "During which holidays do people typically visit religious sites (temples, churches, etc.) in your country?", + "annotations": [ + { + "answers": [ + "semana santa" + ], + "en_answers": [ + "holy week" + ], + "count": 5 + }, + { + "answers": [ + "navidades" + ], + "en_answers": [ + "christmas" + ], + "count": 1 + }, + { + "answers": [ + "romerias" + ], + "en_answers": [ + "pilgrimages" + ], + "count": 1 + }, + { + "answers": [ + "navidad" + ], + "en_answers": [ + "christmas" + ], + "count": 1 + }, + { + "answers": [ + "santos patronales" + ], + "en_answers": [ + "patron saints" + ], + "count": 1 + }, + { + "answers": [ + "el pilar" + ], + "en_answers": [ + "the pillar" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-81": { + "question": "¿Cuáles son los regalos típicos para una inauguración de casa en España?", + "en_question": "What are the typical housewarming gifts in your country?", + "annotations": [ + { + "answers": [ + "planta" + ], + "en_answers": [ + "plant/floor" + ], + "count": 2 + }, + { + "answers": [ + "vino" + ], + "en_answers": [ + "wine" + ], + "count": 1 + }, + { + "answers": [ + "felpudo" + ], + "en_answers": [ + "doormat" + ], + "count": 1 + }, + { + "answers": [ + "llavero" + ], + "en_answers": [ + "keychain" + ], + "count": 1 + }, + { + "answers": [ + "vajilla" + ], + "en_answers": [ + "dishware" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ch-82": { + "question": "¿A qué hora suelen empezar las bodas en España? (Indica en formato HH:MM (por ejemplo, 18:00, 09:00).)", + "en_question": "At what time do weddings typically start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "12:00", + "12h" + ], + "en_answers": [ + "12:00" + ], + "count": 4 + }, + { + "answers": [ + "11:00", + "11h" + ], + "en_answers": [ + "11:00" + ], + "count": 1 + }, + { + "answers": [ + "17:00", + "17h" + ], + "en_answers": [ + "17:00" + ], + "count": 1 + }, + { + "answers": [ + "13:00", + "13h" + ], + "en_answers": [ + "13:00" + ], + "count": 1 + }, + { + "answers": [ + "15:00", + "15h" + ], + "en_answers": [ + "15:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-83": { + "question": "¿Qué ciudad de España acoge más festivales?", + "en_question": "Which city in your country hosts festivals the most?", + "annotations": [ + { + "answers": [ + "madrid" + ], + "en_answers": [ + "madrid" + ], + "count": 3 + }, + { + "answers": [ + "barcelona" + ], + "en_answers": [ + "barcelona" + ], + "count": 2 + }, + { + "answers": [ + "ibiza" + ], + "en_answers": [ + "ibiza" + ], + "count": 1 + }, + { + "answers": [ + "valencia" + ], + "en_answers": [ + "valencia" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-84": { + "question": "¿De qué color suelen vestir las personas cuando asisten a bodas en España?", + "en_question": "What color of clothing do people typically wear when attending weddings in your country?", + "annotations": [ + { + "answers": [ + "negro" + ], + "en_answers": [ + "black" + ], + "count": 2 + }, + { + "answers": [ + "rosa" + ], + "en_answers": [ + "pink" + ], + "count": 2 + }, + { + "answers": [ + "azul marino" + ], + "en_answers": [ + "navy blue" + ], + "count": 1 + }, + { + "answers": [ + "azul" + ], + "en_answers": [ + "blue" + ], + "count": 1 + }, + { + "answers": [ + "rojo" + ], + "en_answers": [ + "red" + ], + "count": 1 + }, + { + "answers": [ + "verde" + ], + "en_answers": [ + "green" + ], + "count": 1 + }, + { + "answers": [ + "blanco" + ], + "en_answers": [ + "white" + ], + "count": 1 + }, + { + "answers": [ + "colorido" + ], + "en_answers": [ + "colorful" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-85": { + "question": "¿De qué color de ropa suelen vestir las personas cuando asisten a funerales en España?", + "en_question": "What color of clothing do people typically wear when attending funerals in your country?", + "annotations": [ + { + "answers": [ + "negro" + ], + "en_answers": [ + "black" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-01": { + "question": "¿Qué aperitivo se come en el cine en España?", + "en_question": "Which snack is eaten in the cinema in your country?", + "annotations": [ + { + "answers": [ + "palomitas" + ], + "en_answers": [ + "popcorn" + ], + "count": 5 + }, + { + "answers": [ + "pipas" + ], + "en_answers": [ + "sunflower seeds" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-02": { + "question": "¿Cuál es el sabor de patatas fritas más popular en España?", + "en_question": "What is the most popular chip/crisp flavour in your country?", + "annotations": [ + { + "answers": [ + "jamon serrano" + ], + "en_answers": [ + "serrano ham" + ], + "count": 1 + }, + { + "answers": [ + "con queso" + ], + "en_answers": [ + "with cheese" + ], + "count": 1 + }, + { + "answers": [ + "clásicas" + ], + "en_answers": [ + "classics" + ], + "count": 1 + }, + { + "answers": [ + "campesinas" + ], + "en_answers": [ + "campesinas vegetables" + ], + "count": 1 + }, + { + "answers": [ + "sal" + ], + "en_answers": [ + "salt" + ], + "count": 1 + }, + { + "answers": [ + "lays" + ], + "en_answers": [ + "lays" + ], + "count": 1 + }, + { + "answers": [ + "matutano" + ], + "en_answers": [ + "matutano" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-04": { + "question": "¿Quién es un chef famoso y popular en España?", + "en_question": "Who is a popular celebrity chef in your country?", + "annotations": [ + { + "answers": [ + "daviz muñoz", + "dabid muñoz", + "ferran adrià", + "ferrán adrià" + ], + "en_answers": [ + "dabiz muñoz", + "ferran adrià" + ], + "count": 2 + }, + { + "answers": [ + "chicote", + "alberto chicote" + ], + "en_answers": [ + "chicote", + "alberto chicote" + ], + "count": 2 + }, + { + "answers": [ + "daviz muñoz", + "dabiz muñoz" + ], + "en_answers": [ + "dabiz muñoz" + ], + "count": 1 + }, + { + "answers": [ + "jordi cruz" + ], + "en_answers": [ + "jordi cruz" + ], + "count": 1 + }, + { + "answers": [ + "arguiñano" + ], + "en_answers": [ + "arguiñano (referring to karlos arguiñano, a famous spanish chef)" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-05": { + "question": "¿Qué comida es una opción de comida rápida y económica en España?", + "en_question": "Which food is a cost-effective and quick meal option in your country?", + "annotations": [ + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 2 + }, + { + "answers": [ + "bocadillo", + "el bocadillo" + ], + "en_answers": [ + "sandwich", + "the sandwich" + ], + "count": 2 + }, + { + "answers": [ + "hamburguesa" + ], + "en_answers": [ + "burger" + ], + "count": 1 + }, + { + "answers": [ + "hamburguesa del mcdonal's" + ], + "en_answers": [ + "mcdonald's burger" + ], + "count": 1 + }, + { + "answers": [ + "tapas", + "aperitivos, canapés" + ], + "en_answers": [ + "appetizers" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-07": { + "question": "¿Cuáles son los programas de cocina más populares en España?", + "en_question": "What are the most popular cooking shows in your country?", + "annotations": [ + { + "answers": [ + "masterchef", + "master chef" + ], + "en_answers": [ + "master chef", + "masterchef" + ], + "count": 2 + }, + { + "answers": [ + "karlos arguiñano" + ], + "en_answers": [ + "karlos arguiñano" + ], + "count": 1 + }, + { + "answers": [ + "arguiñano en tu cocina" + ], + "en_answers": [ + "arguiñano in your kitchen" + ], + "count": 1 + }, + { + "answers": [ + "cocina abierta de karlos arguiñano" + ], + "en_answers": [ + "karlos arguiñano's open kitchen" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-08": { + "question": "¿Cuál es la marca de chocolate más popular en España?", + "en_question": "What is the most popular chocolate brand in your country?", + "annotations": [ + { + "answers": [ + "nestlé", + "nestle" + ], + "en_answers": [ + "nestle", + "nestlé" + ], + "count": 4 + }, + { + "answers": [ + "milka" + ], + "en_answers": [ + "milka" + ], + "count": 1 + }, + { + "answers": [ + "valor" + ], + "en_answers": [ + "valor" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-10": { + "question": "¿Cuál es el queso más consumido en España?", + "en_question": "What is the most eaten cheese in your country?", + "annotations": [ + { + "answers": [ + "curado", + "queso de la mancha" + ], + "en_answers": [ + "cured", + "cheese from la mancha" + ], + "count": 3 + }, + { + "answers": [ + "manchego" + ], + "en_answers": [ + "from la mancha" + ], + "count": 2 + }, + { + "answers": [ + "cabra" + ], + "en_answers": [ + "goat" + ], + "count": 1 + }, + { + "answers": [ + "zamorano" + ], + "en_answers": [ + "from zamora" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-11": { + "question": "¿Cuál es la verdura más odiada en España?", + "en_question": "What is the most disliked vegetable in your country?", + "annotations": [ + { + "answers": [ + "coles de bruselas" + ], + "en_answers": [ + "brussels sprouts" + ], + "count": 2 + }, + { + "answers": [ + "coliflor" + ], + "en_answers": [ + "cauliflower" + ], + "count": 2 + }, + { + "answers": [ + "brócoli", + "brocoli" + ], + "en_answers": [ + "broccoli" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-12": { + "question": "¿Qué comida se encuentra más comúnmente en las zonas de comidas de España?", + "en_question": "What food is most commonly found in food courts in your country?", + "annotations": [ + { + "answers": [ + "paella" + ], + "en_answers": [ + "paella" + ], + "count": 3 + }, + { + "answers": [ + "tortilla de patata", + "tortilla de patatas" + ], + "en_answers": [ + "potato omelette", + "spanish omelette" + ], + "count": 2 + }, + { + "answers": [ + "sandwiches" + ], + "en_answers": [ + "sandwiches" + ], + "count": 1 + }, + { + "answers": [ + "bocadillos" + ], + "en_answers": [ + "sandwiches" + ], + "count": 1 + }, + { + "answers": [ + "snacks" + ], + "en_answers": [ + "snacks" + ], + "count": 1 + }, + { + "answers": [ + "patatas bravas" + ], + "en_answers": [ + "spicy potatoes" + ], + "count": 1 + }, + { + "answers": [ + "calamares" + ], + "en_answers": [ + "squid" + ], + "count": 1 + }, + { + "answers": [ + "tapas", + "aperitivos, canapés" + ], + "en_answers": [ + "appetizers" + ], + "count": 1 + }, + { + "answers": [ + "tapas de jamón serrano y queso" + ], + "en_answers": [ + "serrano ham and cheese tapas" + ], + "count": 1 + }, + { + "answers": [ + "empanadas" + ], + "en_answers": [ + "turnovers" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-17": { + "question": "¿Cuáles son los instrumentos de animación más comunes utilizados por los aficionados al deporte en España?", + "en_question": "What are the most common cheering tools used by sports fans in your country?", + "annotations": [ + { + "answers": [ + "bombo", + "tambor" + ], + "en_answers": [ + "drum" + ], + "count": 2 + }, + { + "answers": [ + "banderas" + ], + "en_answers": [ + "flags" + ], + "count": 1 + }, + { + "answers": [ + "bufandas" + ], + "en_answers": [ + "scarves" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "New-en-18": { + "question": "¿Qué llevan los aficionados consigo cuando asisten a un partido en directo en España?", + "en_question": "What do fans bring with them when attending a live game in your country?", + "annotations": [ + { + "answers": [ + "banderas", + "bandera" + ], + "en_answers": [ + "flags", + "flag" + ], + "count": 3 + }, + { + "answers": [ + "bufanda", + "bufandas" + ], + "en_answers": [ + "scarf", + "scarves" + ], + "count": 3 + }, + { + "answers": [ + "bocadillo" + ], + "en_answers": [ + "sandwich" + ], + "count": 1 + }, + { + "answers": [ + "camiseta de futbol" + ], + "en_answers": [ + "football shirt" + ], + "count": 1 + }, + { + "answers": [ + "camiseta" + ], + "en_answers": [ + "t-shirt" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-19": { + "question": "¿Cuál es el estadio deportivo más conocido de España?", + "en_question": "What is the most well known sporting stadium in your country?", + "annotations": [ + { + "answers": [ + "bernabeu", + "estadio santiago bernabeu", + "estadio santiago bernabéu", + "santiago bernabeu", + "santiago bernabéu" + ], + "en_answers": [ + "bernabéu", + "santiago bernabéu stadium", + "santiago bernabeu", + "santiago bernabéu" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-23": { + "question": "¿Quién es el paralímpico más famoso de España?", + "en_question": "Who is the most famous Paralympian in your country?", + "annotations": [ + { + "answers": [ + "teresa perales" + ], + "en_answers": [ + "teresa perales" + ], + "count": 2 + } + ], + "idks": { + "idk": 5, + "No se": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-en-26": { + "question": "¿Cuál es el cántico deportivo más reconocido en España?", + "en_question": "What is the best recognized sporting chant in your country?", + "annotations": [ + { + "answers": [ + "oe" + ], + "en_answers": [ + "oe" + ], + "count": 1 + }, + { + "answers": [ + "himno betis" + ], + "en_answers": [ + "betis anthem" + ], + "count": 1 + }, + { + "answers": [ + "himno nacional" + ], + "en_answers": [ + "national anthem" + ], + "count": 1 + }, + { + "answers": [ + "hala" + ], + "en_answers": [ + "come on" + ], + "count": 1 + }, + { + "answers": [ + "madrid" + ], + "en_answers": [ + "madrid" + ], + "count": 1 + }, + { + "answers": [ + "el himno del madrid" + ], + "en_answers": [ + "the anthem of madrid" + ], + "count": 1 + }, + { + "answers": [ + "el himno del barça", + "el himno del barsa", + "el himno del barcelona" + ], + "en_answers": [ + "the barça anthem" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-38": { + "question": "¿Qué industrias son conocidas por tener horarios de trabajo más flexibles en España?", + "en_question": "Which industries are known for more flexible working hours in your country?", + "annotations": [ + { + "answers": [ + "energéticas", + "energeticas" + ], + "en_answers": [ + "energy" + ], + "count": 1 + }, + { + "answers": [ + "artistas" + ], + "en_answers": [ + "artists" + ], + "count": 1 + }, + { + "answers": [ + "tecnología y startups", + "tecnologia y startups" + ], + "en_answers": [ + "technology and startups" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "New-en-41": { + "question": "¿Quién es el empresario más conocido y exitoso de España?", + "en_question": "Who is the most well known and successful entrepreneur in your country?", + "annotations": [ + { + "answers": [ + "amancio ortega" + ], + "en_answers": [ + "amancio ortega" + ], + "count": 4 + }, + { + "answers": [ + "florentino pérez" + ], + "en_answers": [ + "florentino pérez" + ], + "count": 1 + }, + { + "answers": [ + "juan roig" + ], + "en_answers": [ + "juan roig" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-47": { + "question": "¿Qué se puede encontrar típicamente en el jardín trasero de las casas en España?", + "en_question": "What can typically be found in the back garden of houses in your country?", + "annotations": [ + { + "answers": [ + "balones" + ], + "en_answers": [ + "balls" + ], + "count": 1 + }, + { + "answers": [ + "flores" + ], + "en_answers": [ + "flowers" + ], + "count": 1 + }, + { + "answers": [ + "arbustos" + ], + "en_answers": [ + "bushes" + ], + "count": 1 + }, + { + "answers": [ + "árboles frutales" + ], + "en_answers": [ + "fruit trees" + ], + "count": 1 + }, + { + "answers": [ + "setos" + ], + "en_answers": [ + "hedges" + ], + "count": 1 + }, + { + "answers": [ + "plantas" + ], + "en_answers": [ + "plants" + ], + "count": 1 + }, + { + "answers": [ + "barbacoa" + ], + "en_answers": [ + "barbecue" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-49": { + "question": "¿Cuál es el nombre de la familia más famosa de España?", + "en_question": "What is the name of the most famous family in your country?", + "annotations": [ + { + "answers": [ + "borbón" + ], + "en_answers": [ + "bourbon" + ], + "count": 2 + }, + { + "answers": [ + "familia real", + "la familia real" + ], + "en_answers": [ + "royal family", + "the royal family" + ], + "count": 2 + }, + { + "answers": [ + "garcía", + "garcia" + ], + "en_answers": [ + "garcia" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-50": { + "question": "¿Cuál es el apellido más común en España?", + "en_question": "What is the most common family name in your country?", + "annotations": [ + { + "answers": [ + "pérez", + "perez" + ], + "en_answers": [ + "pérez", + "perez" + ], + "count": 3 + }, + { + "answers": [ + "lópez" + ], + "en_answers": [ + "lópez" + ], + "count": 2 + }, + { + "answers": [ + "garcía" + ], + "en_answers": [ + "garcía" + ], + "count": 2 + }, + { + "answers": [ + "sánchez", + "sanchez" + ], + "en_answers": [ + "sanchez" + ], + "count": 2 + }, + { + "answers": [ + "fernández" + ], + "en_answers": [ + "fernandez" + ], + "count": 1 + }, + { + "answers": [ + "martínez" + ], + "en_answers": [ + "martínez" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-55": { + "question": "¿Qué religión practican más comúnmente las familias en España?", + "en_question": "Which religion is most commonly practiced by families in your country?", + "annotations": [ + { + "answers": [ + "catolicismo" + ], + "en_answers": [ + "catholicism" + ], + "count": 4 + }, + { + "answers": [ + "católica" + ], + "en_answers": [ + "catholic" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-56": { + "question": "¿Cuál es el idioma extranjero más hablado por las familias en España?", + "en_question": "What is the most popular foreign language spoken by families in your country?", + "annotations": [ + { + "answers": [ + "inglés" + ], + "en_answers": [ + "english" + ], + "count": 3 + }, + { + "answers": [ + "árabe" + ], + "en_answers": [ + "arabic" + ], + "count": 1 + }, + { + "answers": [ + "francés" + ], + "en_answers": [ + "french" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-59": { + "question": "¿Cuál es el destino más popular para las familias de España para emigrar?", + "en_question": "Which country is the most popular destination for families from your country to emigrate to?", + "annotations": [ + { + "answers": [ + "reino unido" + ], + "en_answers": [ + "united kingdom" + ], + "count": 1 + }, + { + "answers": [ + "dublín", + "dublin" + ], + "en_answers": [ + "dublin" + ], + "count": 1 + }, + { + "answers": [ + "francia" + ], + "en_answers": [ + "france" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 0 + } + }, + "New-en-68": { + "question": "¿Qué repercusiones hay para el mal comportamiento en las escuelas en España?", + "en_question": "What repercussions are there for bad behavior in schools in your country?", + "annotations": [ + { + "answers": [ + "expulsión del centro", + "expulsion del centro", + "expulsiones", + "expulsión" + ], + "en_answers": [ + "expulsion from the center", + "expulsions", + "expulsion" + ], + "count": 3 + }, + { + "answers": [ + "castigos" + ], + "en_answers": [ + "punishments" + ], + "count": 2 + }, + { + "answers": [ + "malas notas" + ], + "en_answers": [ + "bad grades" + ], + "count": 1 + }, + { + "answers": [ + "aula de conivivencia" + ], + "en_answers": [ + "coexistence classroom" + ], + "count": 1 + }, + { + "answers": [ + "castigado por el director", + "castigado al director", + "castigos del director" + ], + "en_answers": [ + "punished the principal" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-69": { + "question": "¿Qué escritores se estudian comúnmente en la clase de literatura en España?", + "en_question": "Which writers are commonly studied in literature class in your country?", + "annotations": [ + { + "answers": [ + "cervantes", + "miguel de cervantes" + ], + "en_answers": [ + "cervantes", + "miguel de cervantes" + ], + "count": 4 + }, + { + "answers": [ + "quevedo" + ], + "en_answers": [ + "quevedo" + ], + "count": 2 + }, + { + "answers": [ + "unamuno", + "miguel de unamuno" + ], + "en_answers": [ + "unamuno (referring to miguel de unamuno, a spanish essayist, novelist, poet, playwright, and philosopher)", + "miguel de unamuno" + ], + "count": 2 + }, + { + "answers": [ + "lorca", + "lope de vega" + ], + "en_answers": [ + "lorca", + "lope de vega" + ], + "count": 2 + }, + { + "answers": [ + "la generación del 27" + ], + "en_answers": [ + "the generation of '27" + ], + "count": 1 + }, + { + "answers": [ + "valle inclán", + "valle-inclán" + ], + "en_answers": [ + "valle-inclán" + ], + "count": 1 + }, + { + "answers": [ + "pío baroja", + "pio baroja" + ], + "en_answers": [ + "pío baroja" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-70": { + "question": "¿Cuántas vacaciones escolares hay en un año para los institutos de secundaria en España? (Proporciona solo números arábigos (p. ej., 1).)", + "en_question": "How many school breaks are there in a year for high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 2 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-72": { + "question": "¿Qué recurso en línea suelen utilizar los estudiantes para estudiar en España?", + "en_question": "Which online resource do students usually use to study in your country?", + "annotations": [ + { + "answers": [ + "chatgpt", + "chat gpt" + ], + "en_answers": [ + "chatgpt", + "chat gpt" + ], + "count": 2 + }, + { + "answers": [ + "google" + ], + "en_answers": [ + "google" + ], + "count": 1 + }, + { + "answers": [ + "moodle" + ], + "en_answers": [ + "moodle" + ], + "count": 1 + }, + { + "answers": [ + "classroom" + ], + "en_answers": [ + "classroom" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-75": { + "question": "¿Cuál es la duración media de un semestre en términos de semanas de docencia en las universidades de España? (Proporcione solo números arábigos (p. ej., 1).)", + "en_question": "What is the average length of a semester in terms of weeks of teaching at universities in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 2 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 2 + }, + { + "answers": [ + "13" + ], + "en_answers": [ + "13" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-76": { + "question": "¿Cuál es el aeropuerto más concurrido de España durante la temporada de vacaciones?", + "en_question": "Which airport in your country is the busiest during the holiday season?", + "annotations": [ + { + "answers": [ + "madrid", + "madrid-barajas", + "barajas", + "adolfo suárez madrid-barajas" + ], + "en_answers": [ + "madrid", + "madrid-barajas", + "decks" + ], + "count": 3 + }, + { + "answers": [ + "barcelona" + ], + "en_answers": [ + "barcelona" + ], + "count": 2 + }, + { + "answers": [ + "málaga" + ], + "en_answers": [ + "malaga" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-79": { + "question": "¿Qué región de España es bien conocida por sus representaciones teatrales?", + "en_question": "Which region of your country is well known for its theatrical performances?", + "annotations": [ + { + "answers": [ + "madrid" + ], + "en_answers": [ + "madrid" + ], + "count": 4 + }, + { + "answers": [ + "catalunya", + "cataluña" + ], + "en_answers": [ + "catalonia" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-87": { + "question": "¿Cuál es el monumento histórico más famoso de España?", + "en_question": "What is the most famous historic landmark in your country?", + "annotations": [ + { + "answers": [ + "la alhambra", + "alhambra" + ], + "en_answers": [ + "the alhambra", + "alhambra" + ], + "count": 4 + }, + { + "answers": [ + "sagrada familia" + ], + "en_answers": [ + "holy family" + ], + "count": 2 + }, + { + "answers": [ + "alcázar de sevilla" + ], + "en_answers": [ + "alcazar of seville" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-90": { + "question": "¿Cuál es la cadena hotelera más famosa de España?", + "en_question": "What is the most famous hotel brand in your country?", + "annotations": [ + { + "answers": [ + "nh", + "nh hoteles", + "nh hotels" + ], + "en_answers": [ + "nh", + "nh hotels" + ], + "count": 2 + }, + { + "answers": [ + "meliá", + "melia" + ], + "en_answers": [ + "meliá", + "melia" + ], + "count": 2 + }, + { + "answers": [ + "servigroup" + ], + "en_answers": [ + "servigroup" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-05": { + "question": "¿Cuál es la opción de desayuno para llevar más popular en España?", + "en_question": "What is the most popular grab-and-go breakfast option in your country?", + "annotations": [ + { + "answers": [ + "bocadillo" + ], + "en_answers": [ + "sandwich" + ], + "count": 2 + }, + { + "answers": [ + "café", + "cafe" + ], + "en_answers": [ + "coffee" + ], + "count": 2 + }, + { + "answers": [ + "churros" + ], + "en_answers": [ + "churros" + ], + "count": 1 + }, + { + "answers": [ + "fruta" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + }, + { + "answers": [ + "tostada" + ], + "en_answers": [ + "toast" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-06": { + "question": "¿Cuál es la comida más popular en España entre los jóvenes?", + "en_question": "What is the most popular food in your country among young people?", + "annotations": [ + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + }, + { + "answers": [ + "pasta" + ], + "en_answers": [ + "money" + ], + "count": 1 + }, + { + "answers": [ + "tortilla de patatas" + ], + "en_answers": [ + "spanish omelette" + ], + "count": 1 + }, + { + "answers": [ + "barbacoas", + "parrillas" + ], + "en_answers": [ + "barbecues" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-gr-08": { + "question": "¿Qué tipo de bebida alcohólica se consume más comúnmente en los festivales en España?", + "en_question": "What type of alcoholic drink is most commonly consumed at festivals in your country?", + "annotations": [ + { + "answers": [ + "cerveza" + ], + "en_answers": [ + "beer" + ], + "count": 5 + }, + { + "answers": [ + "cuba libre", + "cubata", + "cubatas (ron", + "cubatas", + "cubata con ron" + ], + "en_answers": [ + "free cuba", + "rum-based mixed drinks", + "mixed drinks" + ], + "count": 3 + }, + { + "answers": [ + "ginebra", + "vodka" + ], + "en_answers": [ + "gin", + "vodka" + ], + "count": 2 + }, + { + "answers": [ + "vino con coca cola" + ], + "en_answers": [ + "wine with coca cola" + ], + "count": 1 + }, + { + "answers": [ + "mezclado con refresco", + "etc. mezclado con refresco)" + ], + "en_answers": [ + "mixed with soda" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-13": { + "question": "¿Cuál es la bebida matutina más común en España?", + "en_question": "What is the most common morning drink in your country?", + "annotations": [ + { + "answers": [ + "café", + "cafe" + ], + "en_answers": [ + "coffee" + ], + "count": 5 + }, + { + "answers": [ + "leche" + ], + "en_answers": [ + "milk" + ], + "count": 3 + }, + { + "answers": [ + "zumo" + ], + "en_answers": [ + "juice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-15": { + "question": "¿Cuál es el postre tradicional más popular en España?", + "en_question": "What is the most popular traditional dessert in your country?", + "annotations": [ + { + "answers": [ + "arroz con leche" + ], + "en_answers": [ + "rice pudding" + ], + "count": 4 + }, + { + "answers": [ + "torrijas" + ], + "en_answers": [ + "french toasts" + ], + "count": 3 + }, + { + "answers": [ + "natillas" + ], + "en_answers": [ + "natillas" + ], + "count": 2 + }, + { + "answers": [ + "miguelitos" + ], + "en_answers": [ + "cream-filled pastries" + ], + "count": 1 + }, + { + "answers": [ + "churros" + ], + "en_answers": [ + "churros" + ], + "count": 1 + }, + { + "answers": [ + "pestiños" + ], + "en_answers": [ + "honey-coated fritters" + ], + "count": 1 + }, + { + "answers": [ + "flan" + ], + "en_answers": [ + "custard" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-21": { + "question": "¿Cuál es el deporte de raqueta más popular en España?", + "en_question": "What is the most popular racket sport in your country?", + "annotations": [ + { + "answers": [ + "pádel", + "padel" + ], + "en_answers": [ + "padel" + ], + "count": 4 + }, + { + "answers": [ + "tenis" + ], + "en_answers": [ + "tennis" + ], + "count": 2 + }, + { + "answers": [ + "frontón", + "fronton" + ], + "en_answers": [ + "pelota court" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-24": { + "question": "¿Cuál es el deporte de atletismo más popular en España?", + "en_question": "What is the most popular track and field sport in your country?", + "annotations": [ + { + "answers": [ + "marcha" + ], + "en_answers": [ + "gear/march" + ], + "count": 1 + }, + { + "answers": [ + "atletismo" + ], + "en_answers": [ + "athletics" + ], + "count": 1 + }, + { + "answers": [ + "maratón" + ], + "en_answers": [ + "marathon" + ], + "count": 1 + }, + { + "answers": [ + "carrera de relevos" + ], + "en_answers": [ + "relay race" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 1 + } + }, + "New-gr-29": { + "question": "¿Cuál es el evento deportivo internacional más popular en España?", + "en_question": "Which international sporting event is the most popular in your country?", + "annotations": [ + { + "answers": [ + "mundial de fútbo", + "mundial de fútbol", + "el mundial de fútbol", + "mundial de futbol" + ], + "en_answers": [ + "world cup", + "the football world cup", + "world cup of soccer" + ], + "count": 4 + }, + { + "answers": [ + "olimpiadas", + "juegos olímpicos" + ], + "en_answers": [ + "olympics", + "olympic games" + ], + "count": 2 + }, + { + "answers": [ + "champions league" + ], + "en_answers": [ + "champions league" + ], + "count": 1 + }, + { + "answers": [ + "fútbol" + ], + "en_answers": [ + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "basket", + "baloncesto" + ], + "en_answers": [ + "basket" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-47": { + "question": "¿Cuánto duran (en minutos) los descansos laborales típicos en España, excluyendo las pausas para almorzar y cenar? (Indica solo números arábigos (p. ej., 1).)", + "en_question": "How long (in minutes) are typical work breaks in your country, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 3 + }, + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 2 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-58": { + "question": "¿Qué trabajo se considera mal pagado en España?", + "en_question": "Which job is considered underpaid in your country?", + "annotations": [ + { + "answers": [ + "camarero", + "camareros" + ], + "en_answers": [ + "waiter", + "waiters" + ], + "count": 3 + }, + { + "answers": [ + "limpiadores", + "limpiadora" + ], + "en_answers": [ + "cleaners", + "cleaner" + ], + "count": 2 + }, + { + "answers": [ + "profesor" + ], + "en_answers": [ + "teacher" + ], + "count": 1 + }, + { + "answers": [ + "médico", + "medico" + ], + "en_answers": [ + "doctor" + ], + "count": 1 + }, + { + "answers": [ + "dependientes" + ], + "en_answers": [ + "dependents" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-76": { + "question": "¿Cuál es la comida más común servida durante la Semana Santa en España?", + "en_question": "What is the most common food served during Easter in your country?", + "annotations": [ + { + "answers": [ + "torrijas" + ], + "en_answers": [ + "french toasts" + ], + "count": 2 + }, + { + "answers": [ + "bacalao" + ], + "en_answers": [ + "cod" + ], + "count": 1 + }, + { + "answers": [ + "bacalao con tomate" + ], + "en_answers": [ + "cod with tomato" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-gr-82": { + "question": "¿Cuál es el género musical más popular entre la población anciana en España?", + "en_question": "What is the most popular music genre among the elderly population in your country?", + "annotations": [ + { + "answers": [ + "copla" + ], + "en_answers": [ + "stanza" + ], + "count": 3 + }, + { + "answers": [ + "baladas" + ], + "en_answers": [ + "ballads" + ], + "count": 1 + }, + { + "answers": [ + "rock" + ], + "en_answers": [ + "rock" + ], + "count": 1 + }, + { + "answers": [ + "flamenco" + ], + "en_answers": [ + "flamenco" + ], + "count": 1 + }, + { + "answers": [ + "pop" + ], + "en_answers": [ + "popular music" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-88": { + "question": "¿Qué bebida se suele ofrecer en los funerales en España?", + "en_question": "What drink is usually offered at funerals in your country?", + "annotations": [ + { + "answers": [ + "agua" + ], + "en_answers": [ + "water" + ], + "count": 3 + } + ], + "idks": { + "idk": 3, + "no-answer": 2, + "not-applicable": 0 + } + }, + "New-gr-89": { + "question": "¿Qué bebida se suele ofrecer en las bodas en España?", + "en_question": "What drink is usually offered at weddings in your country?", + "annotations": [ + { + "answers": [ + "vino" + ], + "en_answers": [ + "wine" + ], + "count": 4 + }, + { + "answers": [ + "champán", + "champan", + "champagne" + ], + "en_answers": [ + "champagne" + ], + "count": 4 + }, + { + "answers": [ + "cerveza" + ], + "en_answers": [ + "beer" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-07": { + "question": "¿Qué comida originaria de España se puede encontrar en todo el mundo?", + "en_question": "What food originated from your country and can be found all over the world?", + "annotations": [ + { + "answers": [ + "tortilla de patatas" + ], + "en_answers": [ + "spanish omelette" + ], + "count": 2 + }, + { + "answers": [ + "paella" + ], + "en_answers": [ + "paella" + ], + "count": 2 + }, + { + "answers": [ + "churros" + ], + "en_answers": [ + "churros" + ], + "count": 1 + }, + { + "answers": [ + "jamón" + ], + "en_answers": [ + "ham" + ], + "count": 1 + }, + { + "answers": [ + "tapas", + "canapés, aperitivos" + ], + "en_answers": [ + "appetizers" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ha-08": { + "question": "¿Qué comida suele no gustarle a los niños pero sí a los mayores en España?", + "en_question": "What food is typically disliked by children but enjoyed by the elderly in your country?", + "annotations": [ + { + "answers": [ + "coliflor" + ], + "en_answers": [ + "cauliflower" + ], + "count": 1 + }, + { + "answers": [ + "pescado" + ], + "en_answers": [ + "fish" + ], + "count": 1 + }, + { + "answers": [ + "espinacas" + ], + "en_answers": [ + "spinach" + ], + "count": 1 + }, + { + "answers": [ + "lentejas" + ], + "en_answers": [ + "lentils" + ], + "count": 1 + }, + { + "answers": [ + "verduras" + ], + "en_answers": [ + "vegetables" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-09": { + "question": "¿Qué utensilio de cocina se utiliza más comúnmente en España?", + "en_question": "What cooking utensil is most commonly used in your country?", + "annotations": [ + { + "answers": [ + "cuchara" + ], + "en_answers": [ + "spoon" + ], + "count": 4 + }, + { + "answers": [ + "tenedor" + ], + "en_answers": [ + "fork" + ], + "count": 3 + }, + { + "answers": [ + "cuchillo" + ], + "en_answers": [ + "knife" + ], + "count": 2 + }, + { + "answers": [ + "cubiertos" + ], + "en_answers": [ + "cutlery" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-13": { + "question": "¿Cuál es la verdura más popular en España?", + "en_question": "Which is the most popular vegetable in your country?", + "annotations": [ + { + "answers": [ + "tomate" + ], + "en_answers": [ + "tomato" + ], + "count": 3 + }, + { + "answers": [ + "cebolla" + ], + "en_answers": [ + "onion" + ], + "count": 2 + }, + { + "answers": [ + "pimientos", + "pimiento" + ], + "en_answers": [ + "peppers", + "pepper" + ], + "count": 2 + }, + { + "answers": [ + "lechuga" + ], + "en_answers": [ + "lettuce" + ], + "count": 1 + }, + { + "answers": [ + "ajo" + ], + "en_answers": [ + "garlic" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-19": { + "question": "¿Qué animal se utiliza para los deportes en España?", + "en_question": "Which animal is used for sports in your country?", + "annotations": [ + { + "answers": [ + "caballos", + "caballo" + ], + "en_answers": [ + "horses", + "horse" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 3, + "idk": 0, + "no-answer": 0 + } + }, + "New-ha-66": { + "question": "¿Cuál es el lugar de bodas más popular en España?", + "en_question": "What is the most popular wedding venue in your country?", + "annotations": [ + { + "answers": [ + "iglesias" + ], + "en_answers": [ + "churches" + ], + "count": 1 + }, + { + "answers": [ + "sevilla" + ], + "en_answers": [ + "seville" + ], + "count": 1 + }, + { + "answers": [ + "chalets rurales", + "casas rurales" + ], + "en_answers": [ + "rural chalets" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 2, + "not-applicable": 0 + } + }, + "New-in-01": { + "question": "¿Cuál es la marca de cafeterías más popular en España?", + "en_question": "Which coffee shop brand is the most popular in your country?", + "annotations": [ + { + "answers": [ + "starbucks" + ], + "en_answers": [ + "starbucks" + ], + "count": 3 + }, + { + "answers": [ + "nespresso" + ], + "en_answers": [ + "nespresso" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-in-03": { + "question": "¿Qué tipo de comida de España se sirve típicamente en restaurantes en el extranjero?", + "en_question": "What type of food from your country is typically served in restaurants overseas?", + "annotations": [ + { + "answers": [ + "paella" + ], + "en_answers": [ + "paella" + ], + "count": 3 + }, + { + "answers": [ + "tapas" + ], + "en_answers": [ + "appetizers" + ], + "count": 1 + }, + { + "answers": [ + "tortilla de patatas" + ], + "en_answers": [ + "spanish omelette" + ], + "count": 1 + }, + { + "answers": [ + "jamón ibérico" + ], + "en_answers": [ + "iberian ham" + ], + "count": 1 + }, + { + "answers": [ + "ensaladilla rusa" + ], + "en_answers": [ + "russian salad" + ], + "count": 1 + }, + { + "answers": [ + "tortilla" + ], + "en_answers": [ + "omelette" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-33": { + "question": "¿Qué región de España se asocia normalmente con la minería?", + "en_question": "What region in your country is usually associated with mining?", + "annotations": [ + { + "answers": [ + "asturias" + ], + "en_answers": [ + "asturias" + ], + "count": 2 + }, + { + "answers": [ + "andalucía", + "andalucia" + ], + "en_answers": [ + "andalusia" + ], + "count": 1 + }, + { + "answers": [ + "almería" + ], + "en_answers": [ + "almeria" + ], + "count": 1 + }, + { + "answers": [ + "país vasco" + ], + "en_answers": [ + "basque country" + ], + "count": 1 + }, + { + "answers": [ + "huelva" + ], + "en_answers": [ + "huelva" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-34": { + "question": "¿Qué región de España se asocia normalmente con el aceite?", + "en_question": "What region in your country is usually associated with oil?", + "annotations": [ + { + "answers": [ + "andalucía", + "andalucia" + ], + "en_answers": [ + "andalusia" + ], + "count": 4 + }, + { + "answers": [ + "catalunya", + "cataluña" + ], + "en_answers": [ + "catalonia" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-62": { + "question": "¿Qué universidad en España es popular por su carrera de ingeniería? (Proporciona el nombre oficial.)", + "en_question": "What university in your country is popular because of its engineering major? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "universidad politécnica de madrid", + "politécnica de madrid", + "politecnica de madrid" + ], + "en_answers": [ + "polytechnic university of madrid" + ], + "count": 3 + }, + { + "answers": [ + "icade" + ], + "en_answers": [ + "comillas pontifical university or icade" + ], + "count": 1 + }, + { + "answers": [ + "upv" + ], + "en_answers": [ + "upv" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-63": { + "question": "¿Qué universidad en España es popular por su facultad de medicina? (Proporciona el nombre oficial.)", + "en_question": "What university in your country is popular because of its school of medicine? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "universidad de barcelona" + ], + "en_answers": [ + "university of barcelona" + ], + "count": 1 + }, + { + "answers": [ + "santander" + ], + "en_answers": [ + "santander" + ], + "count": 1 + }, + { + "answers": [ + "universidad miguel hernández" + ], + "en_answers": [ + "miguel hernández university" + ], + "count": 1 + }, + { + "answers": [ + "universidad de sevilla" + ], + "en_answers": [ + "university of seville" + ], + "count": 1 + }, + { + "answers": [ + "universidad complutense" + ], + "en_answers": [ + "complutense university" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-78": { + "question": "¿Cuál es el método de pago más popular en España?", + "en_question": "What is the most popular payment method in your country?", + "annotations": [ + { + "answers": [ + "efectivo", + "metálico" + ], + "en_answers": [ + "cash" + ], + "count": 3 + }, + { + "answers": [ + "tarjeta de crédito" + ], + "en_answers": [ + "credit card" + ], + "count": 2 + }, + { + "answers": [ + "bizum" + ], + "en_answers": [ + "mobile payment service" + ], + "count": 2 + }, + { + "answers": [ + "tarjeta" + ], + "en_answers": [ + "card" + ], + "count": 1 + }, + { + "answers": [ + "tarjeta débito" + ], + "en_answers": [ + "debit card" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-80": { + "question": "¿Cuál es el parque temático más famoso de España?", + "en_question": "What is the most famous theme park in your country?", + "annotations": [ + { + "answers": [ + "portaventura", + "port aventura" + ], + "en_answers": [ + "portaventura" + ], + "count": 4 + }, + { + "answers": [ + "parque warner", + "warner bros" + ], + "en_answers": [ + "warner park", + "warner bros." + ], + "count": 2 + }, + { + "answers": [ + "warner en madrid" + ], + "en_answers": [ + "warner in madrid" + ], + "count": 1 + }, + { + "answers": [ + "marina d'or" + ], + "en_answers": [ + "marina d'or" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-01": { + "question": "¿Cuál es la serie de animación infantil más popular que suelen ver los niños en España?", + "en_question": "What is the most popular children's animation that is commonly watched by kids in your country?", + "annotations": [ + { + "answers": [ + "la patrulla canina", + "patrulla canina" + ], + "en_answers": [ + "paw patrol" + ], + "count": 4 + }, + { + "answers": [ + "peppa pig" + ], + "en_answers": [ + "peppa pig" + ], + "count": 3 + }, + { + "answers": [ + "bluey" + ], + "en_answers": [ + "blue" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-02": { + "question": "¿Cuál es la actividad de educación prenatal más popular para las mujeres embarazadas en España?", + "en_question": "What is the most popular prenatal education activity for pregnant women in your country?", + "annotations": [ + { + "answers": [ + "pilates" + ], + "en_answers": [ + "pilates" + ], + "count": 3 + }, + { + "answers": [ + "yoga", + "hacer yoga y practicarla" + ], + "en_answers": [ + "yoga", + "do yoga and practice it" + ], + "count": 3 + }, + { + "answers": [ + "preparación al parto" + ], + "en_answers": [ + "childbirth preparation" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-03": { + "question": "¿Cuál es la canción infantil más popular en España que las familias cantan juntas?", + "en_question": "What is the most popular children's song in your country that families sing together?", + "annotations": [ + { + "answers": [ + "corro de la patata", + "el corro de la patata" + ], + "en_answers": [ + "potato dance", + "the potato dance" + ], + "count": 2 + }, + { + "answers": [ + "el patio de mi casa" + ], + "en_answers": [ + "the courtyard of my house" + ], + "count": 1 + }, + { + "answers": [ + "el cochecito leré" + ], + "en_answers": [ + "the little car lere" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ko-04": { + "question": "¿Cuáles son los juguetes más populares entre los niños en España?", + "en_question": "Which toys are most popular among boys in your country?", + "annotations": [ + { + "answers": [ + "bicicleta", + "bicicletas", + "barbie" + ], + "en_answers": [ + "bicycle", + "bicycles", + "barbecue" + ], + "count": 3 + }, + { + "answers": [ + "balón", + "balon", + "pelota" + ], + "en_answers": [ + "ball" + ], + "count": 2 + }, + { + "answers": [ + "balón de fútbol", + "tamagotchis" + ], + "en_answers": [ + "soccer ball", + "tamagotchis" + ], + "count": 2 + }, + { + "answers": [ + "muñecos articulados", + "pelota" + ], + "en_answers": [ + "articulated dolls", + "ball" + ], + "count": 2 + }, + { + "answers": [ + "muñecas", + "patinete" + ], + "en_answers": [ + "dolls", + "scooter" + ], + "count": 2 + }, + { + "answers": [ + "hot wheels" + ], + "en_answers": [ + "coches de juguete" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-05": { + "question": "¿Cuáles son los juguetes más populares entre las niñas en España?", + "en_question": "Which toys are most popular among girls in your country?", + "annotations": [ + { + "answers": [ + "muñecas", + "las muñecas" + ], + "en_answers": [ + "dolls", + "the dolls" + ], + "count": 3 + }, + { + "answers": [ + "barbie" + ], + "en_answers": [ + "barbecue" + ], + "count": 1 + }, + { + "answers": [ + "las muñecas de famosa", + "muñecas de famosa" + ], + "en_answers": [ + "famous dolls" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-06": { + "question": "¿Cuál es el cuento popular más famoso en España que se suele contar a los niños?", + "en_question": "What is the most popular folk tale in your country that is typically told to children?", + "annotations": [ + { + "answers": [ + "caperucita roja" + ], + "en_answers": [ + "little red riding hood" + ], + "count": 2 + }, + { + "answers": [ + "los 3 cerditos", + "los tres cerditos" + ], + "en_answers": [ + "the 3 little pigs", + "the three little pigs" + ], + "count": 2 + }, + { + "answers": [ + "el hombre del saco" + ], + "en_answers": [ + "the bogeyman" + ], + "count": 1 + }, + { + "answers": [ + "el coco" + ], + "en_answers": [ + "the bogeyman" + ], + "count": 1 + }, + { + "answers": [ + "blancanieves" + ], + "en_answers": [ + "snow white" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ko-07": { + "question": "¿Cuál es el símbolo habitual de condolencia utilizado en los funerales en España?", + "en_question": "What is the customary symbol of condolence used at funerals in your country?", + "annotations": [ + { + "answers": [ + "dar el pésame", + "dar el pesame", + "pésame", + "pesame", + "expresar condolencias", + "condolencia" + ], + "en_answers": [ + "offer condolences", + "condolence" + ], + "count": 2 + }, + { + "answers": [ + "dar la mano" + ], + "en_answers": [ + "shake hands" + ], + "count": 1 + }, + { + "answers": [ + "flores blancas" + ], + "en_answers": [ + "white flowers" + ], + "count": 1 + }, + { + "answers": [ + "lo siento" + ], + "en_answers": [ + "i'm sorry" + ], + "count": 1 + }, + { + "answers": [ + "lazo negro" + ], + "en_answers": [ + "black ribbon" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-08": { + "question": "¿Dónde suelen trabajar a tiempo parcial los estudiantes universitarios en España?", + "en_question": "Where do university students in your country tend to work part-time the most?", + "annotations": [ + { + "answers": [ + "consultorías", + "consultorias" + ], + "en_answers": [ + "consultancies" + ], + "count": 1 + }, + { + "answers": [ + "bares" + ], + "en_answers": [ + "bars" + ], + "count": 1 + }, + { + "answers": [ + "mcdonald's", + "macdonalds" + ], + "en_answers": [ + "mcdonald's" + ], + "count": 1 + }, + { + "answers": [ + "tiendas de ropa" + ], + "en_answers": [ + "clothing stores" + ], + "count": 1 + }, + { + "answers": [ + "no hay trabajo" + ], + "en_answers": [ + "there is no work" + ], + "count": 1 + }, + { + "answers": [ + "restauración", + "gastronomía" + ], + "en_answers": [ + "restoration" + ], + "count": 1 + }, + { + "answers": [ + "burger king" + ], + "en_answers": [ + "burger king" + ], + "count": 1 + }, + { + "answers": [ + "mcdonald's", + "mcdonalds" + ], + "en_answers": [ + "mcdonald's" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-09": { + "question": "¿Cuáles son las actividades de team-building más practicadas en las empresas con sede en España?", + "en_question": "What are the most frequently practiced team-building activities in companies based in your country?", + "annotations": [ + { + "answers": [ + "paint ball" + ], + "en_answers": [ + "paintball" + ], + "count": 1 + }, + { + "answers": [ + "scape rooms" + ], + "en_answers": [ + "escape rooms" + ], + "count": 1 + }, + { + "answers": [ + "fin de semana en casas rurales" + ], + "en_answers": [ + "weekend in country houses" + ], + "count": 1 + }, + { + "answers": [ + "viajes al exterior" + ], + "en_answers": [ + "trips abroad" + ], + "count": 1 + }, + { + "answers": [ + "comidas" + ], + "en_answers": [ + "meals" + ], + "count": 1 + }, + { + "answers": [ + "juegos", + "juegos (paintball" + ], + "en_answers": [ + "games" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 2, + "not-applicable": 0 + } + }, + "New-ko-10": { + "question": "¿Cuáles son las actividades más comunes que la gente hace como trabajo secundario en España?", + "en_question": "What are the most common activities people do as a side job in your country?", + "annotations": [ + { + "answers": [ + "teleoperador" + ], + "en_answers": [ + "call center agent" + ], + "count": 1 + }, + { + "answers": [ + "repartos" + ], + "en_answers": [ + "deliveries" + ], + "count": 1 + }, + { + "answers": [ + "encuestas" + ], + "en_answers": [ + "surveys" + ], + "count": 1 + }, + { + "answers": [ + "jugar" + ], + "en_answers": [ + "play" + ], + "count": 1 + }, + { + "answers": [ + "camarero" + ], + "en_answers": [ + "waiter" + ], + "count": 1 + }, + { + "answers": [ + "enseñanza de idiomas" + ], + "en_answers": [ + "language teaching" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-02": { + "question": "¿Cuál es el recuerdo comestible más famoso para los turistas en España?", + "en_question": "What is the most famous edible souvenir for tourists in your country?", + "annotations": [ + { + "answers": [ + "paella" + ], + "en_answers": [ + "paella" + ], + "count": 3 + }, + { + "answers": [ + "jamón serrano", + "jamón" + ], + "en_answers": [ + "serrano ham", + "ham" + ], + "count": 3 + }, + { + "answers": [ + "chorizo" + ], + "en_answers": [ + "sausage" + ], + "count": 1 + }, + { + "answers": [ + "queso manchego" + ], + "en_answers": [ + "manchego cheese" + ], + "count": 1 + }, + { + "answers": [ + "tortilla" + ], + "en_answers": [ + "omelette" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-06": { + "question": "¿Cuál es el guiso más popular en España?", + "en_question": "What is the most popular stew in your country?", + "annotations": [ + { + "answers": [ + "puchero", + "cocido" + ], + "en_answers": [ + "stew" + ], + "count": 3 + }, + { + "answers": [ + "pisto", + "patatas con carne" + ], + "en_answers": [ + "ratatouille", + "potatoes with meat" + ], + "count": 1 + }, + { + "answers": [ + "albóndigas" + ], + "en_answers": [ + "meatballs" + ], + "count": 1 + }, + { + "answers": [ + "ternera" + ], + "en_answers": [ + "veal" + ], + "count": 1 + }, + { + "answers": [ + "fabada" + ], + "en_answers": [ + "bean stew" + ], + "count": 1 + }, + { + "answers": [ + "callos" + ], + "en_answers": [ + "tripe" + ], + "count": 1 + }, + { + "answers": [ + "lentejas" + ], + "en_answers": [ + "lentils" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-11": { + "question": "¿Cuál es la especia más común utilizada en los platos de España?", + "en_question": "What is the most common spice/herb used in dishes from your country?", + "annotations": [ + { + "answers": [ + "perejil" + ], + "en_answers": [ + "parsley" + ], + "count": 2 + }, + { + "answers": [ + "romero" + ], + "en_answers": [ + "rosemary" + ], + "count": 1 + }, + { + "answers": [ + "tomillo" + ], + "en_answers": [ + "thyme" + ], + "count": 1 + }, + { + "answers": [ + "pimienta roja" + ], + "en_answers": [ + "red pepper" + ], + "count": 1 + }, + { + "answers": [ + "sal" + ], + "en_answers": [ + "salt" + ], + "count": 1 + }, + { + "answers": [ + "pimienta" + ], + "en_answers": [ + "pepper" + ], + "count": 1 + }, + { + "answers": [ + "ajo en polvo" + ], + "en_answers": [ + "garlic powder" + ], + "count": 1 + }, + { + "answers": [ + "hierbabuena" + ], + "en_answers": [ + "spearmint" + ], + "count": 1 + }, + { + "answers": [ + "pimentón", + "pimenton" + ], + "en_answers": [ + "paprika" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-16": { + "question": "¿Cuál es el deporte tradicional más famoso de España?", + "en_question": "What is the most famous traditional sport in your country?", + "annotations": [ + { + "answers": [ + "pelota vasca" + ], + "en_answers": [ + "basque ball" + ], + "count": 2 + }, + { + "answers": [ + "fútbol", + "futbol", + "balonpié" + ], + "en_answers": [ + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "petanca" + ], + "en_answers": [ + "boules" + ], + "count": 1 + }, + { + "answers": [ + "lucha canaria" + ], + "en_answers": [ + "canarian wrestling" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-20": { + "question": "¿Qué deporte es popular para jugar en la playa en España?", + "en_question": "What sport is popular to play on the beach in your country?", + "annotations": [ + { + "answers": [ + "volleyball", + "voleibol", + "voley" + ], + "en_answers": [ + "voleibol", + "volleyball" + ], + "count": 4 + }, + { + "answers": [ + "palas" + ], + "en_answers": [ + "shovels" + ], + "count": 3 + }, + { + "answers": [ + "fútbol" + ], + "en_answers": [ + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "petanca" + ], + "en_answers": [ + "boules" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-45": { + "question": "¿Cuál suele ser el horario laboral durante el mes de Ramadán en España?", + "en_question": "What is the usual work schedule during the month of Ramadan in your country?", + "annotations": [ + { + "answers": [ + "8-15" + ], + "en_answers": [ + "8-15" + ], + "count": 1 + }, + { + "answers": [ + "9-19" + ], + "en_answers": [ + "9-19" + ], + "count": 1 + } + ], + "idks": { + "idk": 5, + "not-applicable": 3, + "no-answer": 0 + } + }, + "New-pe-47": { + "question": "¿Cuándo se celebra el Día del Estudiante en España? (Indica en formato MM/DD (por ejemplo, 12/31).)", + "en_question": "When is Student's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "04/21" + ], + "en_answers": [ + "04/21" + ], + "count": 1 + }, + { + "answers": [ + "11/17" + ], + "en_answers": [ + "11/17" + ], + "count": 1 + } + ], + "idks": { + "idk": 6, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-pe-49": { + "question": "¿Dónde se reúnen las familias para rezar juntas en España?", + "en_question": "Where do families gather to pray together in your country?", + "annotations": [ + { + "answers": [ + "iglesia", + "iglesias", + "en la iglesia" + ], + "en_answers": [ + "church", + "churches", + "in the church" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-53": { + "question": "¿Qué regalos reciben los padres en el Día del Padre (o Día de los Padres) en España?", + "en_question": "What gifts do fathers get on Father's Day (or Parents' Day) in your country?", + "annotations": [ + { + "answers": [ + "un dibujo", + "dibujos" + ], + "en_answers": [ + "a drawing", + "drawings" + ], + "count": 2 + }, + { + "answers": [ + "corbatas" + ], + "en_answers": [ + "ties" + ], + "count": 1 + }, + { + "answers": [ + "plumas" + ], + "en_answers": [ + "feathers" + ], + "count": 1 + }, + { + "answers": [ + "algo de ropa" + ], + "en_answers": [ + "some clothes" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-pe-54": { + "question": "¿Qué regalos reciben las madres en el Día de la Madre (o Día de los Padres) en España?", + "en_question": "What gifts do mothers get on Mother's Day (or Parents' Day) in your country?", + "annotations": [ + { + "answers": [ + "flores" + ], + "en_answers": [ + "flowers" + ], + "count": 4 + }, + { + "answers": [ + "tarjetas de felicitacion" + ], + "en_answers": [ + "greeting cards" + ], + "count": 1 + }, + { + "answers": [ + "bombones" + ], + "en_answers": [ + "chocolates" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-pe-59": { + "question": "¿Cuántas generaciones suelen vivir juntas en un hogar en España? (Indica solo números enteros (por ejemplo, 12).)", + "en_question": "How many generations typically live together in a household in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 4 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-65": { + "question": "¿Cuántas asignaturas se imparten en los institutos de secundaria en España? (Proporciona solo números arábigos (por ejemplo, 12).)", + "en_question": "How many subjects are taught in middle schools in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 2 + }, + { + "answers": [ + "14" + ], + "en_answers": [ + "14" + ], + "count": 2 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-66": { + "question": "¿Cuál es la actividad extraescolar más popular en las escuelas primarias de España?", + "en_question": "What is the most popular after school curricular in elementary schools in your country?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol", + "balonpié" + ], + "en_answers": [ + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "inglés" + ], + "en_answers": [ + "english" + ], + "count": 1 + }, + { + "answers": [ + "atletismo" + ], + "en_answers": [ + "athletics" + ], + "count": 1 + }, + { + "answers": [ + "ballet" + ], + "en_answers": [ + "ballet" + ], + "count": 1 + }, + { + "answers": [ + "karate", + "kárate" + ], + "en_answers": [ + "karate" + ], + "count": 1 + }, + { + "answers": [ + "actividades deportivas" + ], + "en_answers": [ + "sports activities" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-74": { + "question": "¿Cuál es la cuota de matrícula anual promedio para las universidades públicas en España?", + "en_question": "How much is the average annual tuition fee for public universities in your country?", + "annotations": [ + { + "answers": [ + "800" + ], + "en_answers": [ + "800" + ], + "count": 2 + }, + { + "answers": [ + "2000-3500" + ], + "en_answers": [ + "2000-3500" + ], + "count": 1 + }, + { + "answers": [ + "1000" + ], + "en_answers": [ + "1000" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no lo sé": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-76": { + "question": "¿Cuál es una actividad popular para hacer en los parques en España?", + "en_question": "What is a popular activity to do in parks in your country?", + "annotations": [ + { + "answers": [ + "correr", + "running" + ], + "en_answers": [ + "to run", + "corriendo" + ], + "count": 3 + }, + { + "answers": [ + "pasear", + "dar un paseo" + ], + "en_answers": [ + "to walk", + "take a walk" + ], + "count": 3 + }, + { + "answers": [ + "descansar" + ], + "en_answers": [ + "rest" + ], + "count": 1 + }, + { + "answers": [ + "tomar aperitivos" + ], + "en_answers": [ + "to have snacks" + ], + "count": 1 + }, + { + "answers": [ + "tomar el sol" + ], + "en_answers": [ + "sunbathe" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-78": { + "question": "¿Cuál es el nombre del festival de cine más famoso celebrado en España?", + "en_question": "What is the name of the most famous film festival held in your country?", + "annotations": [ + { + "answers": [ + "san sebastián", + "san sebastian", + "cine de san sebastián", + "cine de san sebastian" + ], + "en_answers": [ + "san sebastián", + "san sebastian", + "san sebastian cinema" + ], + "count": 5 + }, + { + "answers": [ + "sitges" + ], + "en_answers": [ + "sitges" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-83": { + "question": "¿Cuál es el juego de cartas popular que se juega durante las reuniones sociales en España?", + "en_question": "What is the popular card game played during social gatherings in your country?", + "annotations": [ + { + "answers": [ + "la brisca" + ], + "en_answers": [ + "brisca (a traditional spanish card game)" + ], + "count": 2 + }, + { + "answers": [ + "mus", + "el mus" + ], + "en_answers": [ + "mus", + "the mus" + ], + "count": 2 + }, + { + "answers": [ + "culo" + ], + "en_answers": [ + "butt" + ], + "count": 1 + }, + { + "answers": [ + "uno" + ], + "en_answers": [ + "one" + ], + "count": 1 + }, + { + "answers": [ + "el tute" + ], + "en_answers": [ + "the hard work" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-85": { + "question": "¿Cuál es el destino turístico más popular en el extranjero para la gente de España?", + "en_question": "Where is the most popular tourist destination abroad for people from your country?", + "annotations": [ + { + "answers": [ + "londres" + ], + "en_answers": [ + "london" + ], + "count": 3 + }, + { + "answers": [ + "francia" + ], + "en_answers": [ + "france" + ], + "count": 2 + }, + { + "answers": [ + "república dominicana" + ], + "en_answers": [ + "dominican republic" + ], + "count": 1 + }, + { + "answers": [ + "sudeste asiático" + ], + "en_answers": [ + "southeast asia" + ], + "count": 1 + }, + { + "answers": [ + "italia" + ], + "en_answers": [ + "italy" + ], + "count": 1 + }, + { + "answers": [ + "sudamérica", + "sudamerica" + ], + "en_answers": [ + "south america" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-86": { + "question": "¿Cómo se llama la torre más famosa de España?", + "en_question": "What is the name of the most famous tower in your country?", + "annotations": [ + { + "answers": [ + "giralda" + ], + "en_answers": [ + "bell tower" + ], + "count": 2 + }, + { + "answers": [ + "torre picasso" + ], + "en_answers": [ + "picasso tower" + ], + "count": 1 + }, + { + "answers": [ + "torre del oro" + ], + "en_answers": [ + "tower of gold" + ], + "count": 1 + }, + { + "answers": [ + "torre de hércules" + ], + "en_answers": [ + "tower of hercules" + ], + "count": 1 + }, + { + "answers": [ + "torres kio" + ], + "en_answers": [ + "kio towers" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-01": { + "question": "¿Qué insecto comestible se consume más a menudo en España?", + "en_question": "What edible insect is eaten most often in your country?", + "annotations": [ + { + "answers": [ + "ninguno" + ], + "en_answers": [ + "none" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 3, + "idk": 0, + "no-answer": 0 + } + }, + "New-spme-04": { + "question": "¿Cuál es el producto agrícola que más se exporta en España?", + "en_question": "Which agricultural product is exported most often in your country?", + "annotations": [ + { + "answers": [ + "naranjas", + "naranja" + ], + "en_answers": [ + "oranges", + "orange" + ], + "count": 4 + }, + { + "answers": [ + "fresas" + ], + "en_answers": [ + "strawberries" + ], + "count": 1 + }, + { + "answers": [ + "oliva" + ], + "en_answers": [ + "olive" + ], + "count": 1 + }, + { + "answers": [ + "aceite de oliva" + ], + "en_answers": [ + "olive oil" + ], + "count": 1 + }, + { + "answers": [ + "tomates" + ], + "en_answers": [ + "tomatoes" + ], + "count": 1 + }, + { + "answers": [ + "pepino" + ], + "en_answers": [ + "cucumber" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-05": { + "question": "¿Cuáles son los dulces más populares en España?", + "en_question": "What are the most popular sweets in your country?", + "annotations": [ + { + "answers": [ + "torrijas" + ], + "en_answers": [ + "french toasts" + ], + "count": 1 + }, + { + "answers": [ + "tarta de queso" + ], + "en_answers": [ + "cheesecake" + ], + "count": 1 + }, + { + "answers": [ + "magdalenas" + ], + "en_answers": [ + "muffins" + ], + "count": 1 + }, + { + "answers": [ + "flan" + ], + "en_answers": [ + "custard" + ], + "count": 1 + }, + { + "answers": [ + "natillas" + ], + "en_answers": [ + "natillas" + ], + "count": 1 + }, + { + "answers": [ + "churros" + ], + "en_answers": [ + "churros" + ], + "count": 1 + }, + { + "answers": [ + "tarta de santiago" + ], + "en_answers": [ + "santiago cake" + ], + "count": 1 + }, + { + "answers": [ + "buñuelos" + ], + "en_answers": [ + "fritters" + ], + "count": 1 + }, + { + "answers": [ + "almendras garrapiñadas" + ], + "en_answers": [ + "candied almonds" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-spme-15": { + "question": "¿Cuál es la bebida deportiva más popular en España?", + "en_question": "What is the most popular sports drink in your country?", + "annotations": [ + { + "answers": [ + "gatorade" + ], + "en_answers": [ + "gatorade" + ], + "count": 2 + }, + { + "answers": [ + "powerade" + ], + "en_answers": [ + "powerade" + ], + "count": 2 + }, + { + "answers": [ + "aquarius" + ], + "en_answers": [ + "aquarius" + ], + "count": 1 + }, + { + "answers": [ + "red bull" + ], + "en_answers": [ + "red bull" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-spme-27": { + "question": "¿Cuál es el nivel de educación promedio de las personas en España?", + "en_question": "What is the average education level for people in your country?", + "annotations": [ + { + "answers": [ + "bachillerato", + "educacion secundaria", + "secundaria" + ], + "en_answers": [ + "high school diploma", + "secondary education", + "secondary" + ], + "count": 4 + }, + { + "answers": [ + "educación secundaria obligatoria", + "educacion secundaria obligatoria", + "educación secundaria obligatoria (eso)", + "eso" + ], + "en_answers": [ + "compulsory secondary education" + ], + "count": 2 + }, + { + "answers": [ + "formación profesional", + "fp" + ], + "en_answers": [ + "vocational training" + ], + "count": 1 + }, + { + "answers": [ + "grado universitario" + ], + "en_answers": [ + "university degree" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-37": { + "question": "¿Cuál es la profesión que más estudian en el extranjero los estudiantes de España?", + "en_question": "Which profession is most commonly studied abroad by students from your country?", + "annotations": [ + { + "answers": [ + "medicina" + ], + "en_answers": [ + "medicine" + ], + "count": 1 + }, + { + "answers": [ + "enfermería" + ], + "en_answers": [ + "nursing" + ], + "count": 1 + }, + { + "answers": [ + "profesores de español" + ], + "en_answers": [ + "spanish teachers" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 2, + "not-applicable": 1 + } + }, + "New-spme-60": { + "question": "¿Qué día de la semana realizan la mayoría de las familias en España actividades religiosas? (p. ej., lunes, martes)", + "en_question": "Which day of the week do most families in your country practice religious activities? (e.g. Monday, Tuesday)", + "annotations": [ + { + "answers": [ + "domingo" + ], + "en_answers": [ + "sunday" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-65": { + "question": "¿Cuál es la forma más popular de celebrar el Día de la Independencia en España?", + "en_question": "What is the most popular way to celebrate Independence Day in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "no-answer": 1, + "idk": 1 + } + }, + "New-spme-68": { + "question": "¿Cuál es la bebida más popular entre los niños en España?", + "en_question": "What is the most popular beverage among children in your country?", + "annotations": [ + { + "answers": [ + "coca-cola" + ], + "en_answers": [ + "coca-cola" + ], + "count": 2 + }, + { + "answers": [ + "bifrutas" + ], + "en_answers": [ + "two fruits" + ], + "count": 1 + }, + { + "answers": [ + "batidos" + ], + "en_answers": [ + "milkshakes" + ], + "count": 1 + }, + { + "answers": [ + "colacao" + ], + "en_answers": [ + "cocoa drink" + ], + "count": 1 + }, + { + "answers": [ + "zumo" + ], + "en_answers": [ + "juice" + ], + "count": 1 + }, + { + "answers": [ + "fanta" + ], + "en_answers": [ + "fanta" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-76": { + "question": "¿Cuál es el lugar más popular en España para celebrar el Día de la Independencia?", + "en_question": "What is the most popular place in your country to celebrate Independence Day?", + "annotations": [ + { + "answers": [ + "sevilla" + ], + "en_answers": [ + "seville" + ], + "count": 1 + }, + { + "answers": [ + "madrid" + ], + "en_answers": [ + "madrid" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 0 + } + }, + "New-spme-78": { + "question": "¿Cómo se llama la canción que se suele cantar en las fiestas de cumpleaños en España?", + "en_question": "What is the name of the song that is typically sung at birthday parties in your country?", + "annotations": [ + { + "answers": [ + "cumpleaños feliz", + "cumpleanos feliz" + ], + "en_answers": [ + "happy birthday" + ], + "count": 5 + }, + { + "answers": [ + "feliz en tu dia" + ], + "en_answers": [ + "happy on your day" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-01": { + "question": "¿Qué aperitivos se venden habitualmente frente a las escuelas en España?", + "en_question": "What snacks are usually sold in front of schools in your country?", + "annotations": [ + { + "answers": [ + "gusanitos" + ], + "en_answers": [ + "little worms" + ], + "count": 1 + }, + { + "answers": [ + "palomitas" + ], + "en_answers": [ + "popcorn" + ], + "count": 1 + }, + { + "answers": [ + "bolleria" + ], + "en_answers": [ + "pastries" + ], + "count": 1 + }, + { + "answers": [ + "bocadillos" + ], + "en_answers": [ + "sandwiches" + ], + "count": 1 + }, + { + "answers": [ + "patatas fritas" + ], + "en_answers": [ + "french fries" + ], + "count": 1 + }, + { + "answers": [ + "pipas" + ], + "en_answers": [ + "sunflower seeds" + ], + "count": 1 + }, + { + "answers": [ + "golosinas" + ], + "en_answers": [ + "sweets" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-09": { + "question": "¿Qué aceite se utiliza habitualmente para cocinar en España?", + "en_question": "What oil is usually used for cooking in your country?", + "annotations": [ + { + "answers": [ + "oliva", + "aceite de oliva" + ], + "en_answers": [ + "olive", + "olive oil" + ], + "count": 4 + }, + { + "answers": [ + "aceite de girasol", + "girasol" + ], + "en_answers": [ + "sunflower oil", + "sunflower" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-10": { + "question": "¿Qué alimentos consumen habitualmente las mujeres embarazadas en España?", + "en_question": "What food is commonly consumed by pregnant women in your country?", + "annotations": [ + { + "answers": [ + "leche" + ], + "en_answers": [ + "milk" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 4, + "idk": 3, + "not-applicable": 0 + } + }, + "New-su-15": { + "question": "¿Cuál es la bebida tradicional sin alcohol más popular en España?", + "en_question": "What is the most popular traditional non-alcoholic drink in your country?", + "annotations": [ + { + "answers": [ + "gazpacho" + ], + "en_answers": [ + "cold tomato soup" + ], + "count": 2 + }, + { + "answers": [ + "coca-cola" + ], + "en_answers": [ + "coca-cola" + ], + "count": 1 + }, + { + "answers": [ + "agua" + ], + "en_answers": [ + "water" + ], + "count": 1 + }, + { + "answers": [ + "horchata" + ], + "en_answers": [ + "tiger nut milk" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-17": { + "question": "¿Qué instalaciones deportivas suele haber en los parques de España?", + "en_question": "What sports facilities are generally available in parks in your country?", + "annotations": [ + { + "answers": [ + "carril de bicicleta" + ], + "en_answers": [ + "bicycle lane" + ], + "count": 1 + }, + { + "answers": [ + "aparatos de gimnasia", + "carril bici" + ], + "en_answers": [ + "gym equipment" + ], + "count": 1 + }, + { + "answers": [ + "cancha de fútbol/baloncesto" + ], + "en_answers": [ + "soccer/basketball court" + ], + "count": 1 + }, + { + "answers": [ + "gimnasia" + ], + "en_answers": [ + "gymnastics" + ], + "count": 1 + }, + { + "answers": [ + "pistas de fútbol", + "pistas de futbol", + "campos de fútbol" + ], + "en_answers": [ + "soccer fields" + ], + "count": 1 + }, + { + "answers": [ + "estadios" + ], + "en_answers": [ + "stadiums" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-su-21": { + "question": "¿Cuáles son las actividades que los mayores suelen hacer en los parques en España?", + "en_question": "What are the common activities that seniors usually do in parks in your country?", + "annotations": [ + { + "answers": [ + "jugar petanca", + "petanca" + ], + "en_answers": [ + "play pétanque", + "boules" + ], + "count": 2 + }, + { + "answers": [ + "deporte" + ], + "en_answers": [ + "sport" + ], + "count": 1 + }, + { + "answers": [ + "tomar el sol" + ], + "en_answers": [ + "sunbathe" + ], + "count": 1 + }, + { + "answers": [ + "leer" + ], + "en_answers": [ + "read" + ], + "count": 1 + }, + { + "answers": [ + "descansar" + ], + "en_answers": [ + "rest" + ], + "count": 1 + }, + { + "answers": [ + "pasear" + ], + "en_answers": [ + "to walk" + ], + "count": 1 + }, + { + "answers": [ + "charlar" + ], + "en_answers": [ + "chat" + ], + "count": 1 + }, + { + "answers": [ + "gimnasios al aire libre" + ], + "en_answers": [ + "outdoor gyms" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-24": { + "question": "¿Qué deportes suelen practicar juntos padres e hijos en España?", + "en_question": "What sports do parents and children commonly play together in your country?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol", + "balonpié (balompié)" + ], + "en_answers": [ + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "pádel" + ], + "en_answers": [ + "padel" + ], + "count": 1 + }, + { + "answers": [ + "tenis" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-28": { + "question": "¿Qué color se asocia con la selección nacional de fútbol de España?", + "en_question": "What color is associated with the national soccer team of your country?", + "annotations": [ + { + "answers": [ + "rojo" + ], + "en_answers": [ + "red" + ], + "count": 5 + }, + { + "answers": [ + "amarillo" + ], + "en_answers": [ + "yellow" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-33": { + "question": "¿Cuál es el código de vestimenta común para los profesores de escuela en España?", + "en_question": "What is the common dress code for school teachers in your country?", + "annotations": [ + { + "answers": [ + "casual", + "informal", + "visten ropa casual", + "visten ropa casual.", + "ropa casual" + ], + "en_answers": [ + "casual", + "informal", + "wear casual clothes.", + "casual clothes" + ], + "count": 3 + }, + { + "answers": [ + "ropa formal cómoda", + "ropa formal comoda" + ], + "en_answers": [ + "comfortable formal wear" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-34": { + "question": "¿Cuál es la actividad extracurricular relacionada con la música más popular en las escuelas de España?", + "en_question": "What is the most popular extracurricular activity related to music in schools in your country?", + "annotations": [ + { + "answers": [ + "piano" + ], + "en_answers": [ + "piano" + ], + "count": 2 + }, + { + "answers": [ + "baile", + "danza" + ], + "en_answers": [ + "dance" + ], + "count": 2 + }, + { + "answers": [ + "banda" + ], + "en_answers": [ + "band" + ], + "count": 1 + }, + { + "answers": [ + "coro" + ], + "en_answers": [ + "choir" + ], + "count": 1 + }, + { + "answers": [ + "violin" + ], + "en_answers": [ + "violin" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-su-42": { + "question": "¿Qué religión se enseña principalmente en las escuelas en España?", + "en_question": "What religion is mainly taught in schools in your country?", + "annotations": [ + { + "answers": [ + "católica", + "catolicismo", + "católicismo" + ], + "en_answers": [ + "catholic", + "catholicism" + ], + "count": 3 + }, + { + "answers": [ + "cristianismo" + ], + "en_answers": [ + "christianity" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-45": { + "question": "¿En qué fecha se celebra el Día de la Educación en España? (Indica en formato MM/DD (por ejemplo, 12/31).)", + "en_question": "What date is Education Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "01/24", + "enero de 2024" + ], + "en_answers": [ + "01/24" + ], + "count": 4 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-su-50": { + "question": "¿Cuál es el principal trabajo de las personas en las zonas montañosas de España?", + "en_question": "What is the main occupation of people in mountainous areas in your country?", + "annotations": [ + { + "answers": [ + "ganadero", + "ganadería", + "ganaderia" + ], + "en_answers": [ + "cattle farmer", + "livestock farming" + ], + "count": 2 + }, + { + "answers": [ + "la madera" + ], + "en_answers": [ + "the wood" + ], + "count": 1 + }, + { + "answers": [ + "pastoreo" + ], + "en_answers": [ + "grazing" + ], + "count": 1 + }, + { + "answers": [ + "agricultura" + ], + "en_answers": [ + "agriculture" + ], + "count": 1 + }, + { + "answers": [ + "vigilante forestal", + "agente forestal" + ], + "en_answers": [ + "forest ranger" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-su-51": { + "question": "¿Cuál es el principal trabajo de las personas en las zonas costeras de España?", + "en_question": "What is the main occupation of people in coastal areas in your country?", + "annotations": [ + { + "answers": [ + "camareros", + "camarero" + ], + "en_answers": [ + "waiters", + "waiter" + ], + "count": 2 + }, + { + "answers": [ + "hostelería", + "hosteleria" + ], + "en_answers": [ + "hospitality" + ], + "count": 2 + }, + { + "answers": [ + "turismo / hostelería", + "turismo / hosteleria" + ], + "en_answers": [ + "tourism / hospitality" + ], + "count": 1 + }, + { + "answers": [ + "camareras de piso" + ], + "en_answers": [ + "housekeepers" + ], + "count": 1 + }, + { + "answers": [ + "turismo" + ], + "en_answers": [ + "tourism" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-57": { + "question": "¿Cuál es el ganado más criado en España?", + "en_question": "What is the most common livestock raised in your country?", + "annotations": [ + { + "answers": [ + "cerdos", + "ganado porcino" + ], + "en_answers": [ + "pigs", + "pig livestock" + ], + "count": 2 + }, + { + "answers": [ + "bovino" + ], + "en_answers": [ + "bovine" + ], + "count": 1 + }, + { + "answers": [ + "toro" + ], + "en_answers": [ + "bull" + ], + "count": 1 + }, + { + "answers": [ + "vacas" + ], + "en_answers": [ + "cows" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-58": { + "question": "¿Qué animales se utilizan comúnmente para la agricultura en España?", + "en_question": "What animals are commonly used for agriculture in your country?", + "annotations": [ + { + "answers": [ + "cerdo" + ], + "en_answers": [ + "pig" + ], + "count": 2 + }, + { + "answers": [ + "oveja", + "ovejas", + "borrego", + "borregos, ganado bovino" + ], + "en_answers": [ + "sheep" + ], + "count": 2 + }, + { + "answers": [ + "vaca", + "vacas" + ], + "en_answers": [ + "cow", + "cows" + ], + "count": 2 + }, + { + "answers": [ + "bueyes" + ], + "en_answers": [ + "oxen" + ], + "count": 1 + }, + { + "answers": [ + "asnos" + ], + "en_answers": [ + "donkeys" + ], + "count": 1 + }, + { + "answers": [ + "burras" + ], + "en_answers": [ + "female donkeys" + ], + "count": 1 + }, + { + "answers": [ + "ninguno" + ], + "en_answers": [ + "none" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-59": { + "question": "¿Qué suelen llevar los agricultores en España para protegerse del calor mientras trabajan en el campo?", + "en_question": "What do farmers in your country typically wear to protect themselves from the heat whilst farming?", + "annotations": [ + { + "answers": [ + "sombrero" + ], + "en_answers": [ + "hat" + ], + "count": 3 + }, + { + "answers": [ + "gorra" + ], + "en_answers": [ + "cap" + ], + "count": 1 + }, + { + "answers": [ + "mono de trabajo" + ], + "en_answers": [ + "work jumpsuit" + ], + "count": 1 + }, + { + "answers": [ + "sombrero de paja" + ], + "en_answers": [ + "straw hat" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-60": { + "question": "¿Qué suelen comer los granjeros en España para almorzar?", + "en_question": "What do farmers in your country usually eat for lunch?", + "annotations": [ + { + "answers": [ + "bocadillo", + "bocadillos" + ], + "en_answers": [ + "sandwich", + "sandwiches" + ], + "count": 2 + }, + { + "answers": [ + "cocido de habas" + ], + "en_answers": [ + "broad bean stew" + ], + "count": 1 + }, + { + "answers": [ + "cocido de lentejas" + ], + "en_answers": [ + "lentil stew" + ], + "count": 1 + }, + { + "answers": [ + "cocido" + ], + "en_answers": [ + "stew" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-71": { + "question": "¿Qué regalos suelen dar los padres a sus hijos por sus cumpleaños en España?", + "en_question": "What gifts do parents generally give to their children for their birthdays in your country?", + "annotations": [ + { + "answers": [ + "juguetes" + ], + "en_answers": [ + "toys" + ], + "count": 4 + }, + { + "answers": [ + "tablet" + ], + "en_answers": [ + "tablet" + ], + "count": 1 + }, + { + "answers": [ + "videoconsolas" + ], + "en_answers": [ + "game consoles" + ], + "count": 1 + }, + { + "answers": [ + "videojuegos" + ], + "en_answers": [ + "video games" + ], + "count": 1 + }, + { + "answers": [ + "ropa" + ], + "en_answers": [ + "clothes" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-75": { + "question": "¿Qué vehículos suelen tener la mayoría de las familias en España?", + "en_question": "What type of vehicle do most families in your country generally own?", + "annotations": [ + { + "answers": [ + "coche", + "coches", + "auto", + "autos" + ], + "en_answers": [ + "car", + "cars" + ], + "count": 3 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-77": { + "question": "¿Qué se suele dar a los niños durante el Eid en España?", + "en_question": "What is usually given to the children during Eid in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "no-answer": 1, + "idk": 0 + } + }, + "New-su-81": { + "question": "¿Qué ropa suelen llevar los novios en las bodas en España?", + "en_question": "What clothes do grooms usually wear at weddings in your country?", + "annotations": [ + { + "answers": [ + "traje", + "traje de chaqueta" + ], + "en_answers": [ + "suit" + ], + "count": 4 + }, + { + "answers": [ + "traje negro" + ], + "en_answers": [ + "black suit" + ], + "count": 1 + }, + { + "answers": [ + "esmoquin" + ], + "en_answers": [ + "tuxedo" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-82": { + "question": "¿Qué ropa suelen llevar las novias en las bodas en España?", + "en_question": "What clothes do brides usually wear at weddings in your country?", + "annotations": [ + { + "answers": [ + "vestidos blancos", + "vestido blanco", + "un vestido blanco" + ], + "en_answers": [ + "white dresses", + "white dress", + "a white dress" + ], + "count": 4 + }, + { + "answers": [ + "vestido" + ], + "en_answers": [ + "dress" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-83": { + "question": "¿Qué comida se suele servir en las bodas en España?", + "en_question": "What food is usually served at weddings in your country?", + "annotations": [ + { + "answers": [ + "carne" + ], + "en_answers": [ + "meat" + ], + "count": 2 + }, + { + "answers": [ + "marisco" + ], + "en_answers": [ + "seafood" + ], + "count": 2 + }, + { + "answers": [ + "pescado" + ], + "en_answers": [ + "fish" + ], + "count": 1 + }, + { + "answers": [ + "jamón ibérico" + ], + "en_answers": [ + "iberian ham" + ], + "count": 1 + }, + { + "answers": [ + "tarta" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "ensaladas" + ], + "en_answers": [ + "salads" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-86": { + "question": "¿Cuál es el edificio gubernamental más famoso de España?", + "en_question": "What is the most famous government building in your country?", + "annotations": [ + { + "answers": [ + "la moncloa", + "moncloa" + ], + "en_answers": [ + "the moncloa", + "moncloa" + ], + "count": 3 + }, + { + "answers": [ + "el congreso de los diputados", + "congreso de los diputados" + ], + "en_answers": [ + "the congress of deputies", + "congress of deputies" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-88": { + "question": "¿Cuál es el género musical más popular entre la población joven en España?", + "en_question": "What is the most popular music genre among the younger population in your country?", + "annotations": [ + { + "answers": [ + "pop" + ], + "en_answers": [ + "popular music" + ], + "count": 4 + }, + { + "answers": [ + "reggaeton", + "reggeton", + "reguetón" + ], + "en_answers": [ + "reggaeton" + ], + "count": 3 + }, + { + "answers": [ + "rumba" + ], + "en_answers": [ + "party" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-02": { + "question": "¿A qué hora suelen salir los estudiantes de secundaria en España cada día? (Indicar en formato HH:MM, por ejemplo, 18:00, 09:00).", + "en_question": "What time do middle school students in your country typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "14:00", + "14h" + ], + "en_answers": [ + "14:00" + ], + "count": 5 + }, + { + "answers": [ + "15:00", + "15h" + ], + "en_answers": [ + "15:00" + ], + "count": 3 + }, + { + "answers": [ + "17:30", + "17.30h" + ], + "en_answers": [ + "17:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-03": { + "question": "¿A qué edad suelen ir las personas a la universidad en España? (Proporciona la respuesta en números (por ejemplo, 12).)", + "en_question": "At what age do people in your country typically go to university? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 5 + }, + { + "answers": [ + "19" + ], + "en_answers": [ + "19" + ], + "count": 1 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-06": { + "question": "¿A partir de qué edad es obligatoria la educación en España? (Proporciona la respuesta en números (por ejemplo, 12).)", + "en_question": "From what age do people need to attend compulsory education in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-09": { + "question": "¿Cuántos días a la semana asisten los niños al colegio en España? (Proporciona la respuesta en números del 0 al 7).", + "en_question": "How many days a week do children attend school in your country? (Provide Arabic numerals (0~7) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 4 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-11": { + "question": "En España, ¿cuánto tiempo (en años) se tarda normalmente en completar un máster? (Proporciona la respuesta en números (por ejemplo, 12).)", + "en_question": "In your country, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 4 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-12": { + "question": "¿Cuál es la mejor universidad de España? (Proporciona el nombre oficial.)", + "en_question": "What is the top university in your country? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "universidad de salamanca" + ], + "en_answers": [ + "university of salamanca" + ], + "count": 2 + }, + { + "answers": [ + "universidad de barcelona", + "universidad barcelona" + ], + "en_answers": [ + "university of barcelona" + ], + "count": 2 + }, + { + "answers": [ + "complutense de madrid", + "universidad complutense de madrid" + ], + "en_answers": [ + "complutense of madrid", + "complutense university of madrid" + ], + "count": 2 + }, + { + "answers": [ + "universidad autónoma de madrid" + ], + "en_answers": [ + "autonomous university of madrid" + ], + "count": 1 + }, + { + "answers": [ + "universidad pompeu fabra" + ], + "en_answers": [ + "pompeu fabra university" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-13": { + "question": "¿A qué edad se gradúa la mayoría de la gente en España de la universidad? (Proporciona la respuesta en números (por ejemplo, 12).)", + "en_question": "At what age do most people in your country graduate from university? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "23" + ], + "en_answers": [ + "23" + ], + "count": 3 + }, + { + "answers": [ + "20 - 23" + ], + "en_answers": [ + "20 - 23" + ], + "count": 1 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + }, + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-15": { + "question": "¿A qué edad suelen empezar los niños en España la educación secundaria? (indica la respuesta con un número (por ejemplo, 12).)", + "en_question": "At what age do children in your country generally start middle school? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 4 + }, + { + "answers": [ + "11" + ], + "en_answers": [ + "11" + ], + "count": 3 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-17": { + "question": "¿Cuántas horas a la semana trabaja normalmente un trabajador a tiempo completo en España? (Porporciona la respuesta en números, por ejemplo, 12).", + "en_question": "How many hours a week does a full-time worker in your country typically work? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-19": { + "question": "¿Cuántos días a la semana trabaja un trabajador a tiempo completo en España? (Proporcione solo números arábigos (0~7).)", + "en_question": "How many days a week does a full-time worker work in your country? (Provide Arabic numerals (0~7) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 3 + }, + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + }, + { + "answers": [ + "5-6" + ], + "en_answers": [ + "5-6" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-20": { + "question": "¿A qué edad comienza a trabajar la mayoría de la gente en España? (Proporciona la respuesta en números, por ejemplo, 12.)", + "en_question": "At what age do most people start working in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 2 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + }, + { + "answers": [ + "16" + ], + "en_answers": [ + "16" + ], + "count": 1 + }, + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ni-en-21": { + "question": "¿A partir de qué edad se permite trabajar a una persona en España? (Porporciona la respuesta en números, por ejemplo, 12).", + "en_question": "From what age is an individual allowed to work in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "16" + ], + "en_answers": [ + "16" + ], + "count": 5 + }, + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-31": { + "question": "¿Qué comen tradicionalmente las personas en España el día de Navidad?", + "en_question": "What do people in your country traditionally eat on Christmas Day?", + "annotations": [ + { + "answers": [ + "marisco" + ], + "en_answers": [ + "seafood" + ], + "count": 2 + }, + { + "answers": [ + "gambas" + ], + "en_answers": [ + "prawns" + ], + "count": 2 + }, + { + "answers": [ + "turrones", + "turrón" + ], + "en_answers": [ + "nougats", + "nougat" + ], + "count": 2 + }, + { + "answers": [ + "pescado al horno" + ], + "en_answers": [ + "baked fish" + ], + "count": 1 + }, + { + "answers": [ + "asados de carnes" + ], + "en_answers": [ + "roasted meats" + ], + "count": 1 + }, + { + "answers": [ + "carnes" + ], + "en_answers": [ + "meats" + ], + "count": 1 + }, + { + "answers": [ + "pescado" + ], + "en_answers": [ + "fish" + ], + "count": 1 + }, + { + "answers": [ + "jamón" + ], + "en_answers": [ + "ham" + ], + "count": 1 + }, + { + "answers": [ + "carne mechada" + ], + "en_answers": [ + "shredded meat" + ], + "count": 1 + }, + { + "answers": [ + "jamón ibérico" + ], + "en_answers": [ + "iberian ham" + ], + "count": 1 + }, + { + "answers": [ + "bogabante" + ], + "en_answers": [ + "lobster" + ], + "count": 1 + }, + { + "answers": [ + "mazapanes" + ], + "en_answers": [ + "marzipans" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-37": { + "question": "¿Cómo se llama el día del año en el que la gente en España celebra el amor y el romanticismo?", + "en_question": "What is the name of the day of the year where people in your country celebrate love and romance?", + "annotations": [ + { + "answers": [ + "san valentín", + "14 de febrero", + "san valentin" + ], + "en_answers": [ + "valentine's day", + "february 14" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-40": { + "question": "¿Cuál es la canción de Navidad más popular en España?", + "en_question": "What is the most popular Christmas song in your country?", + "annotations": [ + { + "answers": [ + "beben y beben y vuelven a beber", + "los peces en el río", + "los peces en el rio" + ], + "en_answers": [ + "they drink and drink and drink again", + "the fish in the river" + ], + "count": 2 + }, + { + "answers": [ + "el tamborilero" + ], + "en_answers": [ + "the little drummer" + ], + "count": 1 + }, + { + "answers": [ + "el burrito sabanero" + ], + "en_answers": [ + "the little donkey from the savannah" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Nu-in-04": { + "question": "¿Cuántos semestres hay en cada año académico en los institutos de secundaria en España? (Proporciona la respuesta en números (p. ej., 7, 8).)", + "en_question": "How many semesters are there each academic year at high schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 3 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-05": { + "question": "¿En qué mes suele comenzar el nuevo año escolar en España? (Proporciona la respuesta en números(1~12).)", + "en_question": "In which month does the new school year typically begin in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "9", + "septiembre" + ], + "en_answers": [ + "9", + "september" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-06": { + "question": "¿Cuándo se conmemora el Día Nacional del Docente en España? (Indicar en formato MM/DD, por ejemplo, 12/31).", + "en_question": "When is National Teacher's Day commemorated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "11/27", + "27 de noviembre" + ], + "en_answers": [ + "11/27" + ], + "count": 3 + }, + { + "answers": [ + "10/03", + "tres de octubre" + ], + "en_answers": [ + "10/03" + ], + "count": 1 + }, + { + "answers": [ + "11/05", + "cinco de noviembre" + ], + "en_answers": [ + "11/05" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-11": { + "question": "¿A qué hora comienza la escuela primaria en España? (Proporcionar en formato HH:MM (por ejemplo, 18:00, 09:00).)", + "en_question": "At what time does elementary school start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "09:00", + "9h" + ], + "en_answers": [ + "09:00" + ], + "count": 2 + }, + { + "answers": [ + "08:30", + "8.30h" + ], + "en_answers": [ + "08:30" + ], + "count": 2 + }, + { + "answers": [ + "08:00", + "8h" + ], + "en_answers": [ + "08:00" + ], + "count": 1 + }, + { + "answers": [ + "10:00", + "10h" + ], + "en_answers": [ + "10:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-20": { + "question": "¿Cuándo se celebra el Día del Niño en España? (Indica en formato MM/DD, por ejemplo, 12/31).", + "en_question": "When is Children's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "01/06" + ], + "en_answers": [ + "01/06" + ], + "count": 2 + }, + { + "answers": [ + "julio" + ], + "en_answers": [ + "july" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "No recuerdo el día :(": 1, + "not-applicable": 0 + } + }, + "Nu-in-40": { + "question": "¿Cuál es la ciudad principal destino de los buscadores de empleo en España?", + "en_question": "Which city is the main destination for job seekers in your country?", + "annotations": [ + { + "answers": [ + "madrid" + ], + "en_answers": [ + "madrid" + ], + "count": 5 + }, + { + "answers": [ + "barcelona" + ], + "en_answers": [ + "barcelona" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-1": { + "question": "¿Cuál es la cadena de comida rápida más popular de España?", + "en_question": "What is your country's most popular fast food chain?", + "annotations": [ + { + "answers": [ + "mcdonalds", + "macdonals", + "mcdonald's" + ], + "en_answers": [ + "mcdonald's" + ], + "count": 5 + }, + { + "answers": [ + "burger king" + ], + "en_answers": [ + "burger king" + ], + "count": 2 + }, + { + "answers": [ + "kfc" + ], + "en_answers": [ + "kentucky fried chicken" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-13": { + "question": "¿Cuál es la comida que más divide (o se ama o se odia) en España?", + "en_question": "What is the food that is most divisive (either love or hate) in your country?", + "annotations": [ + { + "answers": [ + "tortilla con cebolla", + "tortilla de patatas con cebolla", + "tortilla de patata con cebolla", + "tortilla de patatas", + "tortilla con/sin cebolla" + ], + "en_answers": [ + "omelette with onion", + "potato omelette with onion", + "spanish omelette", + "omelette with/without onion" + ], + "count": 5 + }, + { + "answers": [ + "paella" + ], + "en_answers": [ + "paella" + ], + "count": 2 + }, + { + "answers": [ + "jamón serrano" + ], + "en_answers": [ + "serrano ham" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-16": { + "question": "¿Cuál es el equipo de fútbol más popular entre la gente de España?", + "en_question": "What is the most popular soccer team among the people from your country?", + "annotations": [ + { + "answers": [ + "real madrid", + "madrid" + ], + "en_answers": [ + "real madrid", + "madrid" + ], + "count": 5 + }, + { + "answers": [ + "barcelona", + "barcelona f.c.", + "barcelona f. c", + "fc barcelona", + "fcbarcelona", + "fútbol club barcelona" + ], + "en_answers": [ + "barcelona", + "barcelona football club", + "fc barcelona", + "football club barcelona" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-22": { + "question": "¿Cuál es la universidad más famosa de España conocida por su equipo deportivo?", + "en_question": "What is the most famous university in your country known for its sports team?", + "annotations": [ + { + "answers": [ + "ucam", + "ucam murcia" + ], + "en_answers": [ + "ucam", + "ucam murcia" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 2, + "no-answer": 1, + "idk": 0 + } + }, + "Sa-en-31": { + "question": "¿Cuál es la mascota familiar más popular de España?", + "en_question": "What is your country's most popular family pet?", + "annotations": [ + { + "answers": [ + "perro" + ], + "en_answers": [ + "dog" + ], + "count": 5 + }, + { + "answers": [ + "gato" + ], + "en_answers": [ + "cat" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-32": { + "question": "¿Cuál es el programa de televisión familiar más popular en España?", + "en_question": "What is the most popular family TV show in your country?", + "annotations": [ + { + "answers": [ + "el hormiguero" + ], + "en_answers": [ + "the anthill" + ], + "count": 3 + }, + { + "answers": [ + "gran prix", + "grand prix" + ], + "en_answers": [ + "grand prix" + ], + "count": 1 + }, + { + "answers": [ + "un, dos, tres...", + "un dos tres", + "un, dos, tres... responda otra vez" + ], + "en_answers": [ + "one two three" + ], + "count": 1 + }, + { + "answers": [ + "ot", + "operación triunfo" + ], + "en_answers": [ + "overtime" + ], + "count": 1 + }, + { + "answers": [ + "cuéntame" + ], + "en_answers": [ + "tell me" + ], + "count": 1 + }, + { + "answers": [ + "pasapalabra" + ], + "en_answers": [ + "pass the word" + ], + "count": 1 + }, + { + "answers": [ + "los simpson", + "los simpsons" + ], + "en_answers": [ + "the simpsons" + ], + "count": 1 + }, + { + "answers": [ + "tu cara me suena" + ], + "en_answers": [ + "your face looks familiar" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-37": { + "question": "¿Cuál es el juego de mesa familiar más popular en España?", + "en_question": "What is the most popular family boardgame in your country?", + "annotations": [ + { + "answers": [ + "parchís", + "parchis", + "el parchís" + ], + "en_answers": [ + "parcheesi" + ], + "count": 5 + }, + { + "answers": [ + "oca", + "juego de la oca" + ], + "en_answers": [ + "goose", + "game of the goose" + ], + "count": 3 + }, + { + "answers": [ + "cartas" + ], + "en_answers": [ + "letters" + ], + "count": 2 + }, + { + "answers": [ + "monopoly" + ], + "en_answers": [ + "monopoly" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-6": { + "question": "¿Cuál es la comida para llevar más popular en España?", + "en_question": "What is the most popular takeaway food in your country?", + "annotations": [ + { + "answers": [ + "bocadillo" + ], + "en_answers": [ + "sandwich" + ], + "count": 2 + }, + { + "answers": [ + "tortilla", + "tortilla de patata", + "tortilla de patatas" + ], + "en_answers": [ + "omelette", + "potato omelette" + ], + "count": 2 + }, + { + "answers": [ + "arroz" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + }, + { + "answers": [ + "hamburguesas" + ], + "en_answers": [ + "burgers" + ], + "count": 1 + }, + { + "answers": [ + "bocadillo de tortilla de patata" + ], + "en_answers": [ + "potato omelette sandwich" + ], + "count": 1 + }, + { + "answers": [ + "chivito" + ], + "en_answers": [ + "chivito" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-7": { + "question": "¿Cuáles son los aperitivos populares en España?", + "en_question": "What are popular snacks in your country?", + "annotations": [ + { + "answers": [ + "tapas", + "canapés, aperitivos" + ], + "en_answers": [ + "appetizers" + ], + "count": 2 + }, + { + "answers": [ + "patatas bravas", + "bravas" + ], + "en_answers": [ + "spicy potatoes" + ], + "count": 2 + }, + { + "answers": [ + "tortilla de patata", + "tortilla", + "tortilla de patatas" + ], + "en_answers": [ + "potato omelette", + "omelette" + ], + "count": 2 + }, + { + "answers": [ + "aceitunas" + ], + "en_answers": [ + "olives" + ], + "count": 1 + }, + { + "answers": [ + "cervezas" + ], + "en_answers": [ + "beers" + ], + "count": 1 + }, + { + "answers": [ + "aceitunas-rabas" + ], + "en_answers": [ + "olives-squid rings" + ], + "count": 1 + }, + { + "answers": [ + "calamares" + ], + "en_answers": [ + "squid" + ], + "count": 1 + }, + { + "answers": [ + "pulpo" + ], + "en_answers": [ + "octopus" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-9": { + "question": "¿Qué comen las personas de España en la playa?", + "en_question": "What do people from your country eat at the beach?", + "annotations": [ + { + "answers": [ + "bocadillo", + "bocadillos" + ], + "en_answers": [ + "sandwich", + "sandwiches" + ], + "count": 3 + }, + { + "answers": [ + "ensaladilla", + "ensaladilla rusa" + ], + "en_answers": [ + "russian salad" + ], + "count": 2 + }, + { + "answers": [ + "tortilla de patata", + "tortilla de patatas" + ], + "en_answers": [ + "potato omelette", + "spanish omelette" + ], + "count": 2 + }, + { + "answers": [ + "helado" + ], + "en_answers": [ + "ice cream" + ], + "count": 1 + }, + { + "answers": [ + "nocilla" + ], + "en_answers": [ + "chocolate spread" + ], + "count": 1 + }, + { + "answers": [ + "patatas de bolsa" + ], + "en_answers": [ + "bagged potatoes" + ], + "count": 1 + }, + { + "answers": [ + "filete empanado" + ], + "en_answers": [ + "breaded fillet" + ], + "count": 1 + }, + { + "answers": [ + "tortilla" + ], + "en_answers": [ + "omelette" + ], + "count": 1 + }, + { + "answers": [ + "sándwich" + ], + "en_answers": [ + "sandwich" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-10": { + "question": "¿A qué edad suelen casarse los hombres en España? (Proporciona la respuesta en números, por ejemplo, 20).", + "en_question": "At what age do men usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 3 + }, + { + "answers": [ + "28" + ], + "en_answers": [ + "28" + ], + "count": 1 + }, + { + "answers": [ + "35" + ], + "en_answers": [ + "35" + ], + "count": 1 + }, + { + "answers": [ + "32" + ], + "en_answers": [ + "32" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-11": { + "question": "¿A qué edad suelen casarse las mujeres en España? (Proporciona la respuesta en números, por ejemplo, 20).", + "en_question": "At what age do women usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 3 + }, + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 1 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + }, + { + "answers": [ + "32" + ], + "en_answers": [ + "32" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-13": { + "question": "En la generación de tus padres, ¿cuál era el número medio de miembros en sus familias en España? (Proporciona la respuesta en números, por ejemplo, 20.)", + "en_question": "In your parents' generation, what was the average number of members in their family in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 3 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 2 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-17": { + "question": "En los Juegos Olímpicos, ¿cuál es el deporte más popular en España?", + "en_question": "In the Olympic Games, which sport is the most popular in your country?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "salto de longitud" + ], + "en_answers": [ + "long jump" + ], + "count": 1 + }, + { + "answers": [ + "baloncesto" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "tenis" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + }, + { + "answers": [ + "marcha" + ], + "en_answers": [ + "gear/march" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-21": { + "question": "¿Dónde suelen jugar al fútbol los niños en España?", + "en_question": "Where do children usually play soccer in your country?", + "annotations": [ + { + "answers": [ + "plaza", + "en la plaza" + ], + "en_answers": [ + "square", + "in the square" + ], + "count": 3 + }, + { + "answers": [ + "en parques", + "en el parque" + ], + "en_answers": [ + "in parks", + "in the park" + ], + "count": 2 + }, + { + "answers": [ + "en el campo de fútbol", + "en el campo de futbol", + "campos de fútbol" + ], + "en_answers": [ + "on the soccer field", + "football fields" + ], + "count": 2 + }, + { + "answers": [ + "calle" + ], + "en_answers": [ + "street" + ], + "count": 1 + }, + { + "answers": [ + "colegio" + ], + "en_answers": [ + "school" + ], + "count": 1 + }, + { + "answers": [ + "club" + ], + "en_answers": [ + "club" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-22": { + "question": "¿Qué ejercicio diario es popular entre las mujeres en España?", + "en_question": "Which daily exercise is popular among women in your country?", + "annotations": [ + { + "answers": [ + "andar", + "caminar", + "caminata" + ], + "en_answers": [ + "to walk", + "walk" + ], + "count": 4 + }, + { + "answers": [ + "yoga" + ], + "en_answers": [ + "yoga" + ], + "count": 3 + }, + { + "answers": [ + "fútbol" + ], + "en_answers": [ + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "running" + ], + "en_answers": [ + "corriendo" + ], + "count": 1 + }, + { + "answers": [ + "pilates" + ], + "en_answers": [ + "pilates" + ], + "count": 1 + }, + { + "answers": [ + "gimnasio" + ], + "en_answers": [ + "gym" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-23": { + "question": "¿Qué ejercicio diario es popular entre los hombres en España?", + "en_question": "Which daily exercise is popular among men in your country?", + "annotations": [ + { + "answers": [ + "correr", + "running", + "footing" + ], + "en_answers": [ + "to run", + "corriendo" + ], + "count": 4 + }, + { + "answers": [ + "gimnasio", + "fitness / gimnasio" + ], + "en_answers": [ + "gym", + "fitness / gym" + ], + "count": 3 + }, + { + "answers": [ + "caminar" + ], + "en_answers": [ + "walk" + ], + "count": 2 + }, + { + "answers": [ + "pádel", + "padel" + ], + "en_answers": [ + "padel" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-25": { + "question": "¿Cuál es la rivalidad más famosa en una liga deportiva nacional en España? (p. ej., ___ contra ___)", + "en_question": "What is the most famous rivalry in a national sports league in your country? (e.g., ___ vs ___)", + "annotations": [ + { + "answers": [ + "barça contra madrid", + "madrid contra barcelona", + "real madrid contra fcb", + "real madrid contra barcelona", + "barcelona contra madrid", + "barça-madrid", + "madrid-barcelona", + "real madri-fcb", + "real madrid-barcelona", + "el barcelona-madrid" + ], + "en_answers": [ + "barça against madrid", + "madrid against barcelona", + "real madrid against fcb", + "real madrid vs barcelona", + "barcelona against madrid" + ], + "count": 5 + }, + { + "answers": [ + "real madrid contra atlético de madrid", + "real madrid contra atletico de madrid", + "real madrid-atlético de madrid." + ], + "en_answers": [ + "real madrid vs atletico de madrid" + ], + "count": 1 + }, + { + "answers": [ + "sevilla contra betis", + "el sevilla-betis. derbi sevillano" + ], + "en_answers": [ + "seville against betis" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-29": { + "question": "¿Cuál es el deporte profesional mejor pagado en España?", + "en_question": "Which professional sport is the highest paying in your country?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol", + "balonpié" + ], + "en_answers": [ + "soccer" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-30": { + "question": "¿Cuál es/era el programa de televisión relacionado con el deporte más popular en España?", + "en_question": "What is/was the most popular sports-related TV program in your country?", + "annotations": [ + { + "answers": [ + "el chiringuito" + ], + "en_answers": [ + "the beach bar" + ], + "count": 3 + }, + { + "answers": [ + "antena 3 deportes" + ], + "en_answers": [ + "antena 3 sports" + ], + "count": 1 + }, + { + "answers": [ + "jugones" + ], + "en_answers": [ + "big gamers" + ], + "count": 1 + }, + { + "answers": [ + "información deportiva" + ], + "en_answers": [ + "sports information" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-32": { + "question": "¿Qué día del año se suele dedicar a los fuegos artificiales en España?", + "en_question": "What day of the year is usually dedicated to fireworks in your country?", + "annotations": [ + { + "answers": [ + "fin de año", + "24 junio", + "24 de junio" + ], + "en_answers": [ + "end of year", + "june 24" + ], + "count": 2 + }, + { + "answers": [ + "san juan" + ], + "en_answers": [ + "saint john" + ], + "count": 1 + }, + { + "answers": [ + "el 14 de marzo", + "14 de marzo" + ], + "en_answers": [ + "march 14th" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ta-pe-37": { + "question": "¿Cuál es el símbolo común de Nochevieja que suele encontrarse en España?", + "en_question": "What is the common symbol of New Year's Eve that is usually found in your country?", + "annotations": [ + { + "answers": [ + "uvas", + "las doce uvas", + "las uvas" + ], + "en_answers": [ + "grapes", + "the twelve grapes", + "the grapes" + ], + "count": 4 + }, + { + "answers": [ + "cotillón" + ], + "en_answers": [ + "party favors" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-42": { + "question": "¿Qué comida suelen comer las personas de España en Nochevieja?", + "en_question": "What food do people from your country usually eat on New Year's Eve?", + "annotations": [ + { + "answers": [ + "marisco" + ], + "en_answers": [ + "seafood" + ], + "count": 2 + }, + { + "answers": [ + "carne asada" + ], + "en_answers": [ + "grilled meat" + ], + "count": 1 + }, + { + "answers": [ + "canapés", + "canapes", + "tapas, aperitivos" + ], + "en_answers": [ + "appetizers" + ], + "count": 1 + }, + { + "answers": [ + "pescado al horno" + ], + "en_answers": [ + "baked fish" + ], + "count": 1 + }, + { + "answers": [ + "picoteo y uvas" + ], + "en_answers": [ + "snacks and grapes" + ], + "count": 1 + }, + { + "answers": [ + "turrón" + ], + "en_answers": [ + "nougat" + ], + "count": 1 + }, + { + "answers": [ + "uvas" + ], + "en_answers": [ + "grapes" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ta-pe-45": { + "question": "¿Qué se suele comer durante la celebración de la noche más larga del año en España?", + "en_question": "What is usually eaten during the celebration of the longest night of the year in your country?", + "annotations": [ + { + "answers": [ + "marisco" + ], + "en_answers": [ + "seafood" + ], + "count": 2 + }, + { + "answers": [ + "cordero" + ], + "en_answers": [ + "lamb" + ], + "count": 1 + }, + { + "answers": [ + "dorada" + ], + "en_answers": [ + "gilt-head bream" + ], + "count": 1 + }, + { + "answers": [ + "solomillo" + ], + "en_answers": [ + "sirloin" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 1 + } + }, + "Th-en-01": { + "question": "¿Cuál es el deporte de verano más popular en España?", + "en_question": "What is the most popular summer sport in your country?", + "annotations": [ + { + "answers": [ + "volleyball", + "volleybol" + ], + "en_answers": [ + "voleibol", + "volleyball" + ], + "count": 2 + }, + { + "answers": [ + "natación" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + }, + { + "answers": [ + "fútbol" + ], + "en_answers": [ + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "palas de playa" + ], + "en_answers": [ + "beach paddles" + ], + "count": 1 + }, + { + "answers": [ + "surf" + ], + "en_answers": [ + "surf" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-03": { + "question": "¿Cuál es la liga profesional de deportes más popular en España?", + "en_question": "What is the most popular professional sports league in your country?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol", + "la liga de fútbol", + "la liga de futbol", + "lfp", + "primera división de fútbol", + "primera división de futbol", + "la liga", + "laliga" + ], + "en_answers": [ + "soccer", + "the football league", + "professional football league", + "first division of football", + "the league" + ], + "count": 5 + }, + { + "answers": [ + "acb" + ], + "en_answers": [ + "basketball club association" + ], + "count": 1 + }, + { + "answers": [ + "champions league", + "la champions" + ], + "en_answers": [ + "champions league" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-05": { + "question": "¿Cuál es el equipo de deporte femenino más popular en España?", + "en_question": "What is the most popular women's sports team in your country?", + "annotations": [ + { + "answers": [ + "selección fútbol", + "selección española de fútbol" + ], + "en_answers": [ + "football team", + "spanish national football team" + ], + "count": 2 + }, + { + "answers": [ + "barça", + "barcelona" + ], + "en_answers": [ + "barça (short for fc barcelona, a football club)", + "barcelona" + ], + "count": 2 + }, + { + "answers": [ + "equipo baloncesto selección española" + ], + "en_answers": [ + "spanish national basketball team" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-09": { + "question": "¿Cuál es el torneo más popular en España?", + "en_question": "What is the most popular tournament in your country?", + "annotations": [ + { + "answers": [ + "la liga", + "la liga de fútbol", + "la liga de futbol", + "laliga" + ], + "en_answers": [ + "la liga", + "the football league" + ], + "count": 3 + }, + { + "answers": [ + "el mundial", + "mundial" + ], + "en_answers": [ + "world cup" + ], + "count": 1 + }, + { + "answers": [ + "la champions" + ], + "en_answers": [ + "the champions" + ], + "count": 1 + }, + { + "answers": [ + "la copa del rey" + ], + "en_answers": [ + "the king's cup" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-11": { + "question": "¿Quién es el deportista más popular en España?", + "en_question": "Who is the most popular sportperson in your country?", + "annotations": [ + { + "answers": [ + "rafa nadal", + "rafael nadal", + "nadal" + ], + "en_answers": [ + "rafa nadal", + "rafael nadal" + ], + "count": 3 + }, + { + "answers": [ + "pau gasol" + ], + "en_answers": [ + "pau gasol" + ], + "count": 2 + }, + { + "answers": [ + "fernando alonso" + ], + "en_answers": [ + "fernando alonso" + ], + "count": 2 + }, + { + "answers": [ + "iniesta" + ], + "en_answers": [ + "iniesta" + ], + "count": 1 + }, + { + "answers": [ + "iker casillas" + ], + "en_answers": [ + "iker casillas" + ], + "count": 1 + }, + { + "answers": [ + "cristiano ronaldo" + ], + "en_answers": [ + "cristiano ronaldo" + ], + "count": 1 + }, + { + "answers": [ + "messi" + ], + "en_answers": [ + "messi" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-12": { + "question": "¿En qué deporte ha tenido España más éxito en competiciones internacionales?", + "en_question": "In which sport has your country been most successful in international competitions?", + "annotations": [ + { + "answers": [ + "fútbol", + "futbol", + "balonpié" + ], + "en_answers": [ + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "motos gp" + ], + "en_answers": [ + "motorcycles gp" + ], + "count": 1 + }, + { + "answers": [ + "tenis" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + }, + { + "answers": [ + "atletismo" + ], + "en_answers": [ + "athletics" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-15": { + "question": "¿Cuál es el deporte de invierno más popular en España?", + "en_question": "What is the most popular winter sport in your country?", + "annotations": [ + { + "answers": [ + "esquí", + "ski", + "esqui" + ], + "en_answers": [ + "ski" + ], + "count": 4 + }, + { + "answers": [ + "fútbol" + ], + "en_answers": [ + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "snowboard" + ], + "en_answers": [ + "snowboard" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-19": { + "question": "¿Cuál es una ciudad o región en España conocida por la industria manufacturera?", + "en_question": "What is a city or region in your country known for manufacturing industry?", + "annotations": [ + { + "answers": [ + "cataluña" + ], + "en_answers": [ + "catalonia" + ], + "count": 2 + }, + { + "answers": [ + "elche" + ], + "en_answers": [ + "elche" + ], + "count": 1 + }, + { + "answers": [ + "alicante" + ], + "en_answers": [ + "alicante" + ], + "count": 1 + }, + { + "answers": [ + "andalucía" + ], + "en_answers": [ + "andalusia" + ], + "count": 1 + }, + { + "answers": [ + "país vasco" + ], + "en_answers": [ + "basque country" + ], + "count": 1 + }, + { + "answers": [ + "vigo" + ], + "en_answers": [ + "vigo" + ], + "count": 1 + }, + { + "answers": [ + "a coruña", + "la coruña" + ], + "en_answers": [ + "a coruña" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-21": { + "question": "¿Cuál se considera el beneficio más importante que se ofrece típicamente a los empleados en España?", + "en_question": "What is regarded as the most important perk typically offered to employees in your country?", + "annotations": [ + { + "answers": [ + "la seguridad social" + ], + "en_answers": [ + "social security" + ], + "count": 2 + }, + { + "answers": [ + "salario" + ], + "en_answers": [ + "salary" + ], + "count": 1 + }, + { + "answers": [ + "tiempo libre" + ], + "en_answers": [ + "free time" + ], + "count": 1 + }, + { + "answers": [ + "flexibilidad" + ], + "en_answers": [ + "flexibility" + ], + "count": 1 + }, + { + "answers": [ + "días extra de vacaciones" + ], + "en_answers": [ + "extra days of vacation" + ], + "count": 1 + }, + { + "answers": [ + "vacaciones" + ], + "en_answers": [ + "holidays" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-22": { + "question": "¿Cuál fue el período económico más catastrófico para España?", + "en_question": "What was the most catastrophic economic period for your country?", + "annotations": [ + { + "answers": [ + "periodo de post guerra civil", + "la posguerra (tras la guerra civil)" + ], + "en_answers": [ + "post-civil war period", + "the postwar period (after the civil war)" + ], + "count": 2 + }, + { + "answers": [ + "crisis económica 2008", + "crisis del 2008" + ], + "en_answers": [ + "economic crisis 2008", + "2008 crisis" + ], + "count": 2 + }, + { + "answers": [ + "2018" + ], + "en_answers": [ + "2018" + ], + "count": 1 + }, + { + "answers": [ + "la crisis de los 80" + ], + "en_answers": [ + "the crisis of the 80s" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-24": { + "question": "¿Qué región de España es un importante centro para trabajadores tecnológicos y start-ups?", + "en_question": "What region in your country is a major hub for tech workers and start ups?", + "annotations": [ + { + "answers": [ + "madrid" + ], + "en_answers": [ + "madrid" + ], + "count": 3 + }, + { + "answers": [ + "barcelona" + ], + "en_answers": [ + "barcelona" + ], + "count": 3 + }, + { + "answers": [ + "andalucía" + ], + "en_answers": [ + "andalusia" + ], + "count": 1 + }, + { + "answers": [ + "málaga", + "malaga" + ], + "en_answers": [ + "malaga" + ], + "count": 1 + }, + { + "answers": [ + "sevilla" + ], + "en_answers": [ + "seville" + ], + "count": 1 + }, + { + "answers": [ + "país vasco" + ], + "en_answers": [ + "basque country" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-27": { + "question": "¿Cuál es la industria más importante de España?", + "en_question": "What is the most important industry in your country?", + "annotations": [ + { + "answers": [ + "automoción", + "automocion", + "automotríz", + "automotriz" + ], + "en_answers": [ + "automotive" + ], + "count": 2 + }, + { + "answers": [ + "turismo", + "turística", + "turistica" + ], + "en_answers": [ + "tourism", + "tourist" + ], + "count": 2 + }, + { + "answers": [ + "restauración", + "alimentación", + "gastronomía" + ], + "en_answers": [ + "restoration", + "feeding" + ], + "count": 2 + }, + { + "answers": [ + "metalúrgica", + "metalurgica" + ], + "en_answers": [ + "metallurgical" + ], + "count": 1 + }, + { + "answers": [ + "energética" + ], + "en_answers": [ + "energy" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-35": { + "question": "¿Cuál de las comidas diarias se comparte habitualmente con los miembros de la familia en España? (p. ej., desayuno, almuerzo, cena)", + "en_question": "Which one of the daily meals is commonly shared with family members in your country? (e.g., breakfast, lunch, dinner)", + "annotations": [ + { + "answers": [ + "cena" + ], + "en_answers": [ + "dinner" + ], + "count": 5 + }, + { + "answers": [ + "desayuno" + ], + "en_answers": [ + "breakfast" + ], + "count": 4 + }, + { + "answers": [ + "almuerzo", + "comida" + ], + "en_answers": [ + "lunch", + "food" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-36": { + "question": "¿Cuál es una actividad familiar popular para hacer con un niño los fines de semana en España?", + "en_question": "What is a popular family activity with a child to do on weekends in your country?", + "annotations": [ + { + "answers": [ + "ir al parque" + ], + "en_answers": [ + "go to the park" + ], + "count": 2 + }, + { + "answers": [ + "pasear", + "dar un paseo" + ], + "en_answers": [ + "to walk", + "take a walk" + ], + "count": 2 + }, + { + "answers": [ + "jugar" + ], + "en_answers": [ + "play" + ], + "count": 1 + }, + { + "answers": [ + "cine" + ], + "en_answers": [ + "cinema" + ], + "count": 1 + }, + { + "answers": [ + "jugar a videojuegos" + ], + "en_answers": [ + "play video games" + ], + "count": 1 + }, + { + "answers": [ + "ir al parque a jugar" + ], + "en_answers": [ + "go to the park to play" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-37": { + "question": "¿A qué edad suelen los niños independizarse de sus padres en España? (Proporciona la respuesta en números, por ejemplo, 12).", + "en_question": "At what age do children typically become independent from their parents in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 2 + }, + { + "answers": [ + "35" + ], + "en_answers": [ + "35" + ], + "count": 1 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-38": { + "question": "¿Cuál es la festividad familiar más importante en España?", + "en_question": "What is the most important family holiday in your country?", + "annotations": [ + { + "answers": [ + "navidad", + "navidades" + ], + "en_answers": [ + "christmas" + ], + "count": 4 + }, + { + "answers": [ + "boda" + ], + "en_answers": [ + "wedding" + ], + "count": 2 + }, + { + "answers": [ + "fin de año", + "nochevieja" + ], + "en_answers": [ + "end of year" + ], + "count": 1 + }, + { + "answers": [ + "día de reyes", + "dia de reyes" + ], + "en_answers": [ + "three kings' day" + ], + "count": 1 + }, + { + "answers": [ + "cumpleaños" + ], + "en_answers": [ + "birthday" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-39": { + "question": "¿Cuál es un juego de familia popular en España?", + "en_question": "What is a popular family game in your country?", + "annotations": [ + { + "answers": [ + "parchís", + "parchis" + ], + "en_answers": [ + "parcheesi" + ], + "count": 4 + }, + { + "answers": [ + "monopoly" + ], + "en_answers": [ + "monopoly" + ], + "count": 2 + }, + { + "answers": [ + "la oca" + ], + "en_answers": [ + "the goose" + ], + "count": 2 + }, + { + "answers": [ + "etc", + "etcétera" + ], + "en_answers": [ + "etcetera" + ], + "count": 1 + }, + { + "answers": [ + "cartas" + ], + "en_answers": [ + "letters" + ], + "count": 1 + }, + { + "answers": [ + "uno" + ], + "en_answers": [ + "one" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-41": { + "question": "¿Cuál es la edad media para que las parejas tengan su primer hijo en España? (Proporciona la respuesta en números (por ejemplo, 20).)", + "en_question": "What is the average age for couples to have their first child in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "32" + ], + "en_answers": [ + "32" + ], + "count": 2 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + }, + { + "answers": [ + "35" + ], + "en_answers": [ + "35" + ], + "count": 1 + }, + { + "answers": [ + "33" + ], + "en_answers": [ + "33" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-43": { + "question": "¿Cuántos coches posee una familia típica en España? (Proporciona la respuesta en números, por ejemplo, 12.)", + "en_question": "How many cars are owned by a typical family in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 4 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 3 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-44": { + "question": "¿Cuál es la comida más popular en España para las comidas familiares de los fines de semana?", + "en_question": "What is your country's most popular food for family meals on weekends?", + "annotations": [ + { + "answers": [ + "cocido" + ], + "en_answers": [ + "stew" + ], + "count": 2 + }, + { + "answers": [ + "paella" + ], + "en_answers": [ + "paella" + ], + "count": 2 + }, + { + "answers": [ + "parilla", + "barbacoa", + "plancha" + ], + "en_answers": [ + "grill", + "barbecue" + ], + "count": 2 + }, + { + "answers": [ + "tortilla" + ], + "en_answers": [ + "omelette" + ], + "count": 1 + }, + { + "answers": [ + "vino" + ], + "en_answers": [ + "wine" + ], + "count": 1 + }, + { + "answers": [ + "tortilla de patatas" + ], + "en_answers": [ + "spanish omelette" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-45": { + "question": "¿Cuál es la actividad familiar de tarde entre semana más popular en España?", + "en_question": "What is the most popular weekday evening family activity in your country?", + "annotations": [ + { + "answers": [ + "ver la tele", + "television", + "ver la televisión" + ], + "en_answers": [ + "watch tv", + "television", + "watch television" + ], + "count": 3 + }, + { + "answers": [ + "ir a hacer la compra", + "centro comercial" + ], + "en_answers": [ + "go grocery shopping", + "shopping center" + ], + "count": 2 + }, + { + "answers": [ + "actividades extraescolares" + ], + "en_answers": [ + "extracurricular activities" + ], + "count": 1 + }, + { + "answers": [ + "parque infantil" + ], + "en_answers": [ + "playground" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-48": { + "question": "¿Cuál es la nota más alta que se otorga a los estudiantes de secundaria con mejores resultados en trabajos y exámenes en España?", + "en_question": "What is the highest grade given to top-achieving high school students on assignments and exams in your country?", + "annotations": [ + { + "answers": [ + "10", + "10 (colegio y universidad)" + ], + "en_answers": [ + "10" + ], + "count": 5 + }, + { + "answers": [ + "matricula de honor", + "matricula de honor (alternativa al 10)" + ], + "en_answers": [ + "honors degree", + "honors registration (alternative to 10)" + ], + "count": 2 + }, + { + "answers": [ + "14 (selectividad)", + "14" + ], + "en_answers": [ + "14" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-49": { + "question": "¿Cuál se considera el examen más importante para los estudiantes de secundaria en España?", + "en_question": "What is considered the most important exam for high school students in your country?", + "annotations": [ + { + "answers": [ + "ebau", + "selectividad" + ], + "en_answers": [ + "university entrance exam" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 2, + "not-applicable": 1, + "idk": 0 + } + }, + "Th-en-51": { + "question": "¿Qué asignatura se considera la más importante para los estudiantes en España?", + "en_question": "Which subject is considered the most important for students in your country?", + "annotations": [ + { + "answers": [ + "matemáticas" + ], + "en_answers": [ + "mathematics" + ], + "count": 3 + }, + { + "answers": [ + "lengua", + "lenguaje" + ], + "en_answers": [ + "language" + ], + "count": 2 + }, + { + "answers": [ + "ciencias naturales" + ], + "en_answers": [ + "natural sciences" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "No se considera ninguna mas importante, como estudiante, no te gusta estudiar y solo consideras importantes las que te gustan a ti como persona.": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-53": { + "question": "¿Cuál es el evento social extracurricular más popular en los colegios de España?", + "en_question": "What is the most popular extracurricular social event at schools in your country?", + "annotations": [ + { + "answers": [ + "fútbol" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "baile" + ], + "en_answers": [ + "dance" + ], + "count": 1 + }, + { + "answers": [ + "fin de año escolar", + "graduación" + ], + "en_answers": [ + "end of the school year", + "graduation" + ], + "count": 1 + }, + { + "answers": [ + "baloncesto" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Th-en-58": { + "question": "¿Cuál es la tema de matemáticas más avanzado que se aprende antes de la universidad en España?", + "en_question": "What is the most advanced math subject learned before university in your country?", + "annotations": [ + { + "answers": [ + "álgebra", + "algebra" + ], + "en_answers": [ + "algebra" + ], + "count": 2 + }, + { + "answers": [ + "integrales" + ], + "en_answers": [ + "integrals" + ], + "count": 2 + }, + { + "answers": [ + "fracciones", + "fraciones" + ], + "en_answers": [ + "fractions" + ], + "count": 1 + }, + { + "answers": [ + "raíz cuadrada", + "raiz cuadrada" + ], + "en_answers": [ + "square root" + ], + "count": 1 + }, + { + "answers": [ + "estadística", + "estadistica" + ], + "en_answers": [ + "statistics" + ], + "count": 1 + }, + { + "answers": [ + "cálculo", + "calculo diferencial" + ], + "en_answers": [ + "differential calculus" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-01": { + "question": "¿Dónde suelen ir los estudiantes universitarios en España para estudiar para sus exámenes finales?", + "en_question": "Where do university students in your country usually go to study for their final exams?", + "annotations": [ + { + "answers": [ + "biblioteca", + "bibliotecas", + "biblioteca universidad" + ], + "en_answers": [ + "library", + "libraries", + "university library" + ], + "count": 4 + }, + { + "answers": [ + "a casa", + "en casa", + "hogar" + ], + "en_answers": [ + "at home", + "home" + ], + "count": 2 + }, + { + "answers": [ + "cafetería" + ], + "en_answers": [ + "cafeteria" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Tmp-ar-02": { + "question": "¿Cuál es un transporte público común que la gente utiliza para ir a la universidad en España?", + "en_question": "What is a common public transport that people use to go to university in your country?", + "annotations": [ + { + "answers": [ + "autobús", + "autobus", + "bus" + ], + "en_answers": [ + "bus" + ], + "count": 4 + }, + { + "answers": [ + "metro", + "el metro" + ], + "en_answers": [ + "subway", + "the subway" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-04": { + "question": "¿Qué suelen hacer los estudiantes de primaria en España después del colegio?", + "en_question": "What do elementary students in your country usually do after school?", + "annotations": [ + { + "answers": [ + "actividades extraescolares", + "asignaturas extraescolares" + ], + "en_answers": [ + "extracurricular activities", + "extracurricular subjects" + ], + "count": 3 + }, + { + "answers": [ + "jugar en la calle", + "jugar en un parque" + ], + "en_answers": [ + "play in the street", + "play in a park" + ], + "count": 2 + }, + { + "answers": [ + "ir a casa a hacer deberes", + "sus deberes diarios", + "hacer los deberes" + ], + "en_answers": [ + "go home to do homework", + "their daily duties" + ], + "count": 2 + }, + { + "answers": [ + "jugar con los amigos" + ], + "en_answers": [ + "play with friends" + ], + "count": 1 + }, + { + "answers": [ + "deporte" + ], + "en_answers": [ + "sport" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + } +} \ No newline at end of file diff --git a/data/annotations/UK_data.json b/data/annotations/UK_data.json new file mode 100644 index 0000000000000000000000000000000000000000..fba5401de57bd5263201e7521b76b8a5ee69dde8 --- /dev/null +++ b/data/annotations/UK_data.json @@ -0,0 +1,23631 @@ +{ + "Al-en-01": { + "question": "What is a common snack for nursery kids in the UK?", + "en_question": "What is a common snack for preschool kids in your country?", + "annotations": [ + { + "answers": [ + "fruit" + ], + "en_answers": [ + "fruit" + ], + "count": 2 + }, + { + "answers": [ + "apple" + ], + "en_answers": [ + "apple" + ], + "count": 2 + }, + { + "answers": [ + "breadsticks" + ], + "en_answers": [ + "breadsticks" + ], + "count": 1 + }, + { + "answers": [ + "banana" + ], + "en_answers": [ + "banana" + ], + "count": 1 + }, + { + "answers": [ + "cheese" + ], + "en_answers": [ + "cheese" + ], + "count": 1 + }, + { + "answers": [ + "toast" + ], + "en_answers": [ + "toast" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-02": { + "question": "What is a popular food to go with beer in the UK?", + "en_question": "What is a popular food to go with beer in your country?", + "annotations": [ + { + "answers": [ + "crisps", + "potato crisps" + ], + "en_answers": [ + "crisps", + "potato crisps" + ], + "count": 3 + }, + { + "answers": [ + "nuts" + ], + "en_answers": [ + "nuts" + ], + "count": 2 + }, + { + "answers": [ + "chips" + ], + "en_answers": [ + "chips" + ], + "count": 1 + }, + { + "answers": [ + "pork scratchings" + ], + "en_answers": [ + "pork scratchings" + ], + "count": 1 + }, + { + "answers": [ + "curry" + ], + "en_answers": [ + "curry" + ], + "count": 1 + }, + { + "answers": [ + "burger" + ], + "en_answers": [ + "burger" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-04": { + "question": "What is the most popular fruit in the UK?", + "en_question": "What is the most popular fruit in your country?", + "annotations": [ + { + "answers": [ + "apple", + "apples" + ], + "en_answers": [ + "apple", + "apples" + ], + "count": 5 + }, + { + "answers": [ + "banana" + ], + "en_answers": [ + "banana" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-06": { + "question": "What is a common school cafeteria food in the UK?", + "en_question": "What is a common school cafeteria food in your country?", + "annotations": [ + { + "answers": [ + "chips", + "fries" + ], + "en_answers": [ + "chips", + "fries" + ], + "count": 2 + }, + { + "answers": [ + "mash" + ], + "en_answers": [ + "mash" + ], + "count": 1 + }, + { + "answers": [ + "burger" + ], + "en_answers": [ + "burger" + ], + "count": 1 + }, + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Al-en-08": { + "question": "What are the most commonly eaten snacks at shopping malls in the UK?", + "en_question": "What are the most commonly eaten snacks at shopping malls in your country?", + "annotations": [ + { + "answers": [ + "burgers" + ], + "en_answers": [ + "burgers" + ], + "count": 2 + }, + { + "answers": [ + "chocolate" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + }, + { + "answers": [ + "nandos" + ], + "en_answers": [ + "nandos" + ], + "count": 1 + }, + { + "answers": [ + "mcdonalds", + "mcdonald's" + ], + "en_answers": [ + "mcdonalds", + "mcdonald's" + ], + "count": 1 + }, + { + "answers": [ + "burger king" + ], + "en_answers": [ + "burger king" + ], + "count": 1 + }, + { + "answers": [ + "greggs" + ], + "en_answers": [ + "greggs" + ], + "count": 1 + }, + { + "answers": [ + "hot dogs", + "hotdogs" + ], + "en_answers": [ + "hot dogs", + "hotdogs" + ], + "count": 1 + }, + { + "answers": [ + "sandwiches" + ], + "en_answers": [ + "sandwiches" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-09": { + "question": "What is a popular snack at an amusement park in the UK?", + "en_question": "What is a popular snack at an amusement park in your country?", + "annotations": [ + { + "answers": [ + "candy floss" + ], + "en_answers": [ + "candy floss" + ], + "count": 2 + }, + { + "answers": [ + "chips", + "chips/fries", + "fries" + ], + "en_answers": [ + "chips", + "chips/fries", + "fries" + ], + "count": 2 + }, + { + "answers": [ + "doughnuts" + ], + "en_answers": [ + "doughnuts" + ], + "count": 1 + }, + { + "answers": [ + "ice cream" + ], + "en_answers": [ + "ice cream" + ], + "count": 1 + }, + { + "answers": [ + "burger" + ], + "en_answers": [ + "burger" + ], + "count": 1 + }, + { + "answers": [ + "crisps" + ], + "en_answers": [ + "crisps" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-16": { + "question": "At what age do kids start nursery in the UK? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "At what age do kids start preschool in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 4 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-17": { + "question": "What is a popular afterschool sport for primary schools in the UK?", + "en_question": "What is a popular afterschool sport for elementary schools in your country?", + "annotations": [ + { + "answers": [ + "football", + "soccer" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Al-en-18": { + "question": "For which subject do primary school students get private education in the UK?", + "en_question": "For which subject do elementary students get private education in your country?", + "annotations": [ + { + "answers": [ + "music" + ], + "en_answers": [ + "music" + ], + "count": 1 + }, + { + "answers": [ + "english" + ], + "en_answers": [ + "english" + ], + "count": 1 + }, + { + "answers": [ + "maths", + "math", + "mathematics" + ], + "en_answers": [ + "maths", + "math", + "mathematics" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 3, + "idk": 1, + "not-applicable": 0 + } + }, + "Al-en-19": { + "question": "What is a popular second language for secondary school students in the UK?", + "en_question": "What is a popular second language for high school students in your country?", + "annotations": [ + { + "answers": [ + "french" + ], + "en_answers": [ + "french" + ], + "count": 5 + }, + { + "answers": [ + "spanish" + ], + "en_answers": [ + "spanish" + ], + "count": 1 + }, + { + "answers": [ + "german" + ], + "en_answers": [ + "german" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-21": { + "question": "Which subject is the most important for gifted education in the UK?", + "en_question": "Which subject is the most important for gifted education in your country?", + "annotations": [ + { + "answers": [ + "maths", + "mathematics", + "math" + ], + "en_answers": [ + "maths", + "mathematics", + "math" + ], + "count": 3 + }, + { + "answers": [ + "english" + ], + "en_answers": [ + "english" + ], + "count": 2 + }, + { + "answers": [ + "science" + ], + "en_answers": [ + "science" + ], + "count": 1 + }, + { + "answers": [ + "music" + ], + "en_answers": [ + "music" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Al-en-32": { + "question": "What is the main dish for Thanksgiving in the UK?", + "en_question": "What is the main dish for Thanksgiving in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-33": { + "question": "What do people do to celebrate Halloween in the UK?", + "en_question": "What do people do to celebrate Halloween in your country?", + "annotations": [ + { + "answers": [ + "trick or treat", + "go trick or treating", + "children trick or treat", + "trick or treating", + "trick or treat", + "trick or treating" + ], + "en_answers": [ + "trick or treat", + "go trick or treating", + "children trick or treat", + "trick or treating", + "trick or treat", + "trick or treating" + ], + "count": 5 + }, + { + "answers": [ + "carve pumpkins" + ], + "en_answers": [ + "carve pumpkins" + ], + "count": 1 + }, + { + "answers": [ + "dress up in costumes" + ], + "en_answers": [ + "dress up in costumes" + ], + "count": 1 + }, + { + "answers": [ + "scary films" + ], + "en_answers": [ + "scary films" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-34": { + "question": "What do people do to celebrate New Year's Day in the UK?", + "en_question": "What do people do to celebrate New Year's Day in your country?", + "annotations": [ + { + "answers": [ + "stay home", + "home or pubs" + ], + "en_answers": [ + "stay home", + "home or pubs" + ], + "count": 1 + }, + { + "answers": [ + "go to the pub", + "home or pubs" + ], + "en_answers": [ + "go to the pub", + "home or pubs" + ], + "count": 1 + }, + { + "answers": [ + "watch fireworks", + "fireworks" + ], + "en_answers": [ + "watch fireworks", + "fireworks" + ], + "count": 1 + }, + { + "answers": [ + "have a roast dinner family meal" + ], + "en_answers": [ + "have a roast dinner family meal" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Al-en-35": { + "question": "What do people do to celebrate Christmas in the UK?", + "en_question": "What do people do to celebrate Christmas in your country?", + "annotations": [ + { + "answers": [ + "have christmas dinner together", + "have lunch/dinner", + "eat" + ], + "en_answers": [ + "have christmas dinner together", + "have lunch/dinner", + "eat" + ], + "count": 3 + }, + { + "answers": [ + "give presents", + "give gifts" + ], + "en_answers": [ + "give presents", + "give gifts" + ], + "count": 2 + }, + { + "answers": [ + "decorate their properties", + "decorations" + ], + "en_answers": [ + "decorate their properties", + "decorations" + ], + "count": 2 + }, + { + "answers": [ + "buy gifts", + "buy presents" + ], + "en_answers": [ + "buy gifts", + "buy presents" + ], + "count": 1 + }, + { + "answers": [ + "eat turkey and christmas pudding" + ], + "en_answers": [ + "eat turkey and christmas pudding" + ], + "count": 1 + }, + { + "answers": [ + "drink" + ], + "en_answers": [ + "drink" + ], + "count": 1 + }, + { + "answers": [ + "gather with friends" + ], + "en_answers": [ + "gather with friends" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-36": { + "question": "What food is associated with Halloween in the UK?", + "en_question": "What food is associated with Halloween in your country?", + "annotations": [ + { + "answers": [ + "pumpkin", + "pumpkins" + ], + "en_answers": [ + "pumpkin", + "pumpkins" + ], + "count": 5 + }, + { + "answers": [ + "sweets" + ], + "en_answers": [ + "sweets" + ], + "count": 1 + }, + { + "answers": [ + "chocolate", + "chcoolate" + ], + "en_answers": [ + "chocolate", + "chcoolate" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-37": { + "question": "What food is associated with Christmas in the UK?", + "en_question": "What food is associated with Christmas in your country?", + "annotations": [ + { + "answers": [ + "turkey" + ], + "en_answers": [ + "turkey" + ], + "count": 5 + }, + { + "answers": [ + "christmas pudding" + ], + "en_answers": [ + "christmas pudding" + ], + "count": 2 + }, + { + "answers": [ + "mince pie" + ], + "en_answers": [ + "mince pie" + ], + "count": 1 + }, + { + "answers": [ + "fruit cake" + ], + "en_answers": [ + "fruit cake" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-38": { + "question": "What food is associated with Valentine's day in the UK?", + "en_question": "What food is associated with Valentine's day in your country?", + "annotations": [ + { + "answers": [ + "steak" + ], + "en_answers": [ + "steak" + ], + "count": 3 + }, + { + "answers": [ + "chocolate" + ], + "en_answers": [ + "chocolate" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-39": { + "question": "What do people eat on their birthday in the UK?", + "en_question": "What do people eat on their birthday in your country?", + "annotations": [ + { + "answers": [ + "cake", + "birthday cake" + ], + "en_answers": [ + "cake", + "birthday cake" + ], + "count": 4 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Al-en-40": { + "question": "What is a popular outdoor place for families to have fun with little kids in the UK?", + "en_question": "What is a popular outdoor place for families to have fun with little kids in your country?", + "annotations": [ + { + "answers": [ + "local parks", + "park" + ], + "en_answers": [ + "local parks", + "park" + ], + "count": 4 + }, + { + "answers": [ + "zoo" + ], + "en_answers": [ + "zoo" + ], + "count": 1 + }, + { + "answers": [ + "the beach" + ], + "en_answers": [ + "the beach" + ], + "count": 1 + }, + { + "answers": [ + "adventure parks" + ], + "en_answers": [ + "adventure parks" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-43": { + "question": "What is a popular indoor activity for families in the UK?", + "en_question": "What is a popular indoor activity for families in your country?", + "annotations": [ + { + "answers": [ + "watching tv", + "tv", + "watching television", + "watching tv" + ], + "en_answers": [ + "watching tv", + "tv", + "watching television", + "watching tv" + ], + "count": 4 + }, + { + "answers": [ + "xbox", + "xbox or ps" + ], + "en_answers": [ + "xbox", + "xbox or ps" + ], + "count": 1 + }, + { + "answers": [ + "playstation", + "xbox or ps" + ], + "en_answers": [ + "playstation", + "xbox or ps" + ], + "count": 1 + }, + { + "answers": [ + "boardgames" + ], + "en_answers": [ + "boardgames" + ], + "count": 1 + }, + { + "answers": [ + "cinema" + ], + "en_answers": [ + "cinema" + ], + "count": 1 + }, + { + "answers": [ + "swimming" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + }, + { + "answers": [ + "bowling" + ], + "en_answers": [ + "bowling" + ], + "count": 1 + }, + { + "answers": [ + "board games" + ], + "en_answers": [ + "board games" + ], + "count": 1 + }, + { + "answers": [ + "jigsaws" + ], + "en_answers": [ + "jigsaws" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-02": { + "question": "Where do university students have lunch in the UK?", + "en_question": "Where do university students have lunch in your country?", + "annotations": [ + { + "answers": [ + "canteen", + "refectory", + "cafeteria" + ], + "en_answers": [ + "canteen", + "refectory", + "cafeteria" + ], + "count": 3 + }, + { + "answers": [ + "accommodation", + "accomodation", + "at home", + "at halls" + ], + "en_answers": [ + "accommodation", + "accomodation", + "at home", + "at halls" + ], + "count": 1 + }, + { + "answers": [ + "on campus" + ], + "en_answers": [ + "on campus" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "An-ar-03": { + "question": "Which month is the final exam term usually scheduled at secondary schools in the UK? (Provide Arabic numerals (1~12) only.)", + "en_question": "Which month is the final exam term usually scheduled at high schools in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "5", + "may" + ], + "en_answers": [ + "5", + "may" + ], + "count": 4 + }, + { + "answers": [ + "6", + "june" + ], + "en_answers": [ + "6", + "june" + ], + "count": 3 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-08": { + "question": "How many hours a day do students in the UK usually spend at secondary school? (Provide Arabic numerals in integers (0~24), without any decimal points.)", + "en_question": "How many hours a day do students in your country usually spend at high school? (Provide Arabic numerals in integers (0~24), without any decimal points.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 3 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-09": { + "question": "How many languages do students study at secondary school in the UK? (Provide Arabic numerals (e.g., 5) only.)", + "en_question": "How many languages do students study at high school in your country? (Provide Arabic numerals (e.g., 5) only.)", + "annotations": [ + { + "answers": [ + "2", + "2 or 3" + ], + "en_answers": [ + "2", + "2 or 3" + ], + "count": 4 + }, + { + "answers": [ + "3", + "2 or 3" + ], + "en_answers": [ + "3", + "2 or 3" + ], + "count": 2 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-34": { + "question": "What is the most popular sport played in a team at school in the UK?", + "en_question": "What is the most popular sport played in a team at school in your country?", + "annotations": [ + { + "answers": [ + "football", + "soccer" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "rugby" + ], + "en_answers": [ + "rugby" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-35": { + "question": "Who is the most popular sport commentator in the UK?", + "en_question": "Who is the most popular sport commentator in your country?", + "annotations": [ + { + "answers": [ + "clive tildsley" + ], + "en_answers": [ + "clive tildsley" + ], + "count": 1 + }, + { + "answers": [ + "gary lineker", + "gary lineka" + ], + "en_answers": [ + "gary lineker", + "gary lineka" + ], + "count": 1 + }, + { + "answers": [ + "chris kamara" + ], + "en_answers": [ + "chris kamara" + ], + "count": 1 + }, + { + "answers": [ + "peter drury" + ], + "en_answers": [ + "peter drury" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 1, + "not-applicable": 0 + } + }, + "An-ar-36": { + "question": "What is the most popular sport team in the UK?", + "en_question": "What is the most popular sport team in your country?", + "annotations": [ + { + "answers": [ + "manchester united", + "manchester utd", + "manchester united" + ], + "en_answers": [ + "manchester united", + "manchester utd", + "manchester united" + ], + "count": 3 + }, + { + "answers": [ + "manchester city" + ], + "en_answers": [ + "manchester city" + ], + "count": 1 + }, + { + "answers": [ + "liverpool" + ], + "en_answers": [ + "liverpool" + ], + "count": 1 + }, + { + "answers": [ + "tottenham spurs" + ], + "en_answers": [ + "tottenham spurs" + ], + "count": 1 + }, + { + "answers": [ + "england football team" + ], + "en_answers": [ + "england football team" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-43": { + "question": "What are the common places or venues where individuals in the UK usually gather to watch sports broadcasts?", + "en_question": "What are the common places or venues where individuals in your country usually gather to watch sports broadcasts?", + "annotations": [ + { + "answers": [ + "pubs", + "pub" + ], + "en_answers": [ + "pubs", + "pub" + ], + "count": 4 + }, + { + "answers": [ + "houses", + "house" + ], + "en_answers": [ + "houses", + "house" + ], + "count": 2 + }, + { + "answers": [ + "stadium", + "arena" + ], + "en_answers": [ + "stadium", + "arena" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-05": { + "question": "How many meals per day do people from the UK usually have? (Provide Arabic numerals (e.g., 5) only.)", + "en_question": "How many meals per day do people from your country usually have? (Provide Arabic numerals (e.g., 5) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-06": { + "question": "Which is the most important meal of the day to people from the UK?", + "en_question": "Which is the most important meal of the day to people from your country?", + "annotations": [ + { + "answers": [ + "breakfast" + ], + "en_answers": [ + "breakfast" + ], + "count": 3 + }, + { + "answers": [ + "dinner", + "supper", + "evening meal", + "evening meal" + ], + "en_answers": [ + "dinner", + "supper", + "evening meal", + "evening meal" + ], + "count": 3 + }, + { + "answers": [ + "lunch" + ], + "en_answers": [ + "lunch" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-08": { + "question": "What is the most common ingredient used in the UK's diet?", + "en_question": "What is the most common ingredient used in your country's diet?", + "annotations": [ + { + "answers": [ + "salt" + ], + "en_answers": [ + "salt" + ], + "count": 3 + }, + { + "answers": [ + "potatoes", + "potato" + ], + "en_answers": [ + "potatoes", + "potato" + ], + "count": 2 + }, + { + "answers": [ + "meat" + ], + "en_answers": [ + "meat" + ], + "count": 1 + }, + { + "answers": [ + "sugar" + ], + "en_answers": [ + "sugar" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-09": { + "question": "What do people from the UK usually eat for dessert?", + "en_question": "What do people from your country usually eat for dessert?", + "annotations": [ + { + "answers": [ + "apple crumble" + ], + "en_answers": [ + "apple crumble" + ], + "count": 1 + }, + { + "answers": [ + "cake" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "yoghurt" + ], + "en_answers": [ + "yoghurt" + ], + "count": 1 + }, + { + "answers": [ + "hot pudding" + ], + "en_answers": [ + "hot pudding" + ], + "count": 1 + }, + { + "answers": [ + "ice cream" + ], + "en_answers": [ + "ice cream" + ], + "count": 1 + }, + { + "answers": [ + "apple pie" + ], + "en_answers": [ + "apple pie" + ], + "count": 1 + }, + { + "answers": [ + "cheesecake" + ], + "en_answers": [ + "cheesecake" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ca-sp-11": { + "question": "Which day of the week do people usually organize a family meal in the UK?", + "en_question": "Which day of the week do people usually organize a family meal in your country?", + "annotations": [ + { + "answers": [ + "sunday" + ], + "en_answers": [ + "sunday" + ], + "count": 5 + }, + { + "answers": [ + "saturday" + ], + "en_answers": [ + "saturday" + ], + "count": 1 + }, + { + "answers": [ + "friday" + ], + "en_answers": [ + "friday" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-14": { + "question": "Which is the most popular hot drink in the UK?", + "en_question": "Which is the most popular hot drink in your country?", + "annotations": [ + { + "answers": [ + "tea" + ], + "en_answers": [ + "tea" + ], + "count": 4 + }, + { + "answers": [ + "coffee" + ], + "en_answers": [ + "coffee" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-19": { + "question": "What do young people from the UK usually drink at the night club?", + "en_question": "What do young people from your country usually drink at the night club?", + "annotations": [ + { + "answers": [ + "beer" + ], + "en_answers": [ + "beer" + ], + "count": 4 + }, + { + "answers": [ + "vodka" + ], + "en_answers": [ + "vodka" + ], + "count": 2 + }, + { + "answers": [ + "wkd" + ], + "en_answers": [ + "wkd" + ], + "count": 1 + }, + { + "answers": [ + "shots" + ], + "en_answers": [ + "shots" + ], + "count": 1 + }, + { + "answers": [ + "wine" + ], + "en_answers": [ + "wine" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-21": { + "question": "At which month do people usually take holidays in the UK? (Provide Arabic numerals (1~12) only.)", + "en_question": "At which month do people usually take holidays in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "7", + "july" + ], + "en_answers": [ + "7", + "july" + ], + "count": 5 + }, + { + "answers": [ + "8", + "august" + ], + "en_answers": [ + "8", + "august" + ], + "count": 3 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-29": { + "question": "What tradition is there in the UK for New Year's Eve?", + "en_question": "What tradition is there in your country for New Year's Eve?", + "annotations": [ + { + "answers": [ + "fireworks", + "fire works" + ], + "en_answers": [ + "fireworks", + "fire works" + ], + "count": 4 + }, + { + "answers": [ + "auld lang syne", + "auld langs ein" + ], + "en_answers": [ + "auld lang syne", + "auld langs ein" + ], + "count": 2 + }, + { + "answers": [ + "big ben countdown" + ], + "en_answers": [ + "big ben countdown" + ], + "count": 1 + }, + { + "answers": [ + "countdown" + ], + "en_answers": [ + "countdown" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ca-sp-38": { + "question": "Which is the typical type of house for a family in the UK?", + "en_question": "Which is the typical type of house for a family in your country?", + "annotations": [ + { + "answers": [ + "semi-detached", + "semi detached" + ], + "en_answers": [ + "semi-detached", + "semi detached" + ], + "count": 3 + }, + { + "answers": [ + "terraced" + ], + "en_answers": [ + "terraced" + ], + "count": 2 + }, + { + "answers": [ + "3 bedroom semi" + ], + "en_answers": [ + "3 bedroom semi" + ], + "count": 1 + }, + { + "answers": [ + "brick built" + ], + "en_answers": [ + "brick built" + ], + "count": 1 + }, + { + "answers": [ + "flat" + ], + "en_answers": [ + "flat" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-41": { + "question": "Where do the dependent elderly usually live in the UK?", + "en_question": "Where do the dependent elderly usually live in your country?", + "annotations": [ + { + "answers": [ + "retirement homes", + "care homes" + ], + "en_answers": [ + "retirement homes", + "care homes" + ], + "count": 5 + }, + { + "answers": [ + "sheltered accomodation" + ], + "en_answers": [ + "sheltered accomodation" + ], + "count": 1 + }, + { + "answers": [ + "with relatives" + ], + "en_answers": [ + "with relatives" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-42": { + "question": "How long (in weeks) is the UK's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)", + "en_question": "How long (in weeks) is your country's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "52", + "up to 52 weeks" + ], + "en_answers": [ + "52", + "up to 52 weeks" + ], + "count": 4 + }, + { + "answers": [ + "36" + ], + "en_answers": [ + "36" + ], + "count": 1 + }, + { + "answers": [ + "26" + ], + "en_answers": [ + "26" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-43": { + "question": "How long (in weeks) is the UK's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)", + "en_question": "How long (in weeks) is your country's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 4 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-45": { + "question": "What type of destination is commonly chosen for a family holiday in the UK?", + "en_question": "What type of destination is commonly chosen for a family vacation in your country?", + "annotations": [ + { + "answers": [ + "lake district" + ], + "en_answers": [ + "lake district" + ], + "count": 1 + }, + { + "answers": [ + "spain" + ], + "en_answers": [ + "spain" + ], + "count": 1 + }, + { + "answers": [ + "beach" + ], + "en_answers": [ + "beach" + ], + "count": 1 + }, + { + "answers": [ + "countryside", + "country side" + ], + "en_answers": [ + "countryside", + "country side" + ], + "count": 1 + }, + { + "answers": [ + "seaside" + ], + "en_answers": [ + "seaside" + ], + "count": 1 + }, + { + "answers": [ + "cornwall" + ], + "en_answers": [ + "cornwall" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-05": { + "question": "What sports do seniors like the most in the UK?", + "en_question": "What sports do seniors like the most in your country?", + "annotations": [ + { + "answers": [ + "bowls", + "crown green bowls" + ], + "en_answers": [ + "bowls", + "crown green bowls" + ], + "count": 3 + }, + { + "answers": [ + "bowling" + ], + "en_answers": [ + "bowling" + ], + "count": 2 + }, + { + "answers": [ + "golf" + ], + "en_answers": [ + "golf" + ], + "count": 1 + }, + { + "answers": [ + "darts" + ], + "en_answers": [ + "darts" + ], + "count": 1 + }, + { + "answers": [ + "snooker" + ], + "en_answers": [ + "snooker" + ], + "count": 1 + }, + { + "answers": [ + "angling" + ], + "en_answers": [ + "angling" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-06": { + "question": "What sports do men like to play the most in the UK?", + "en_question": "What sports do men like to play the most in your country?", + "annotations": [ + { + "answers": [ + "football", + "soccer" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "rugby" + ], + "en_answers": [ + "rugby" + ], + "count": 2 + }, + { + "answers": [ + "darts" + ], + "en_answers": [ + "darts" + ], + "count": 1 + }, + { + "answers": [ + "cricket" + ], + "en_answers": [ + "cricket" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-07": { + "question": "Who is the most famous basketball player in the UK?", + "en_question": "Who is the most famous basketball player in your country?", + "annotations": [], + "idks": { + "idk": 6, + "not-applicable": 2, + "Not interested ": 1, + "no-answer": 1 + } + }, + "Gu-ch-08": { + "question": "What is the most popular sports among children in the UK?", + "en_question": "What is the most popular sports among children in your country?", + "annotations": [ + { + "answers": [ + "football", + "soccer", + "football" + ], + "en_answers": [ + "football", + "soccer", + "football" + ], + "count": 4 + }, + { + "answers": [ + "rugby" + ], + "en_answers": [ + "rugby" + ], + "count": 2 + }, + { + "answers": [ + "egg and spoon" + ], + "en_answers": [ + "egg and spoon" + ], + "count": 1 + }, + { + "answers": [ + "netball" + ], + "en_answers": [ + "netball" + ], + "count": 1 + }, + { + "answers": [ + "cricket" + ], + "en_answers": [ + "cricket" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-09": { + "question": "What sports do women like to play the most in the UK?", + "en_question": "What sports do women like to play the most in your country?", + "annotations": [ + { + "answers": [ + "football", + "soccer" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "netball" + ], + "en_answers": [ + "netball" + ], + "count": 3 + }, + { + "answers": [ + "tennis" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + }, + { + "answers": [ + "hockey" + ], + "en_answers": [ + "hockey" + ], + "count": 1 + }, + { + "answers": [ + "cricket" + ], + "en_answers": [ + "cricket" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-11": { + "question": "What sports event has the UK won the most gold medals at the Olympics?", + "en_question": "What sports event has your country won the most gold medals at the Olympics?", + "annotations": [ + { + "answers": [ + "athletics" + ], + "en_answers": [ + "athletics" + ], + "count": 2 + }, + { + "answers": [ + "cycling" + ], + "en_answers": [ + "cycling" + ], + "count": 2 + }, + { + "answers": [ + "relay" + ], + "en_answers": [ + "relay" + ], + "count": 1 + }, + { + "answers": [ + "rowing" + ], + "en_answers": [ + "rowing" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-15": { + "question": "What sports do male students in university like to play the most in the UK?", + "en_question": "What sports do male students in university like to play the most in your country?", + "annotations": [ + { + "answers": [ + "rugby", + "rugby league", + "rugby union" + ], + "en_answers": [ + "rugby", + "rugby league", + "rugby union" + ], + "count": 3 + }, + { + "answers": [ + "football", + "soccer" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "rowing" + ], + "en_answers": [ + "rowing" + ], + "count": 1 + }, + { + "answers": [ + "squash" + ], + "en_answers": [ + "squash" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-16": { + "question": "How many people are there in a family on average in the UK? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "How many people are there in a family on average in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 4 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-18": { + "question": "How many children do couples usually have in the UK? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "How many children do couples usually have in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 4 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Gu-ch-31": { + "question": "What is the duration of primary school in years in the UK? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "What is the duration of elementary school in years in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 3 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-32": { + "question": "What is the duration of compulsory education in years in the UK? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "What is the duration of compulsory education in years in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "13", + "4-16" + ], + "en_answers": [ + "13", + "4-16" + ], + "count": 2 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 1 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + }, + { + "answers": [ + "11" + ], + "en_answers": [ + "11" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-33": { + "question": "From which age do students start learning their second language in the UK? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "From which age do students start learning their second language in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "11" + ], + "en_answers": [ + "11" + ], + "count": 1 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-38": { + "question": "What is the duration of undergraduate education in the UK? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "What is the duration of undergraduate education in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-40": { + "question": "What time do younger primary school students finish school in the UK? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "en_question": "What time do younger elementary school students finish school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "15:00" + ], + "en_answers": [ + "15:00" + ], + "count": 2 + }, + { + "answers": [ + "15:30" + ], + "en_answers": [ + "15:30" + ], + "count": 2 + }, + { + "answers": [ + "15:15", + "1515" + ], + "en_answers": [ + "15:15", + "1515" + ], + "count": 1 + }, + { + "answers": [ + "16:00" + ], + "en_answers": [ + "16:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-41": { + "question": "How many musical instruments do primary school students in the UK typically play? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "How many musical instruments do elementary school students in your country typically play? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 4 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-02": { + "question": "What day of the week do people in the UK prefer to have company dinners?", + "en_question": "What day of the week do people in your country prefer to have company dinners?", + "annotations": [ + { + "answers": [ + "friday" + ], + "en_answers": [ + "friday" + ], + "count": 2 + }, + { + "answers": [ + "wednesday" + ], + "en_answers": [ + "wednesday" + ], + "count": 2 + }, + { + "answers": [ + "thursday" + ], + "en_answers": [ + "thursday" + ], + "count": 1 + }, + { + "answers": [ + "tuesday" + ], + "en_answers": [ + "tuesday" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-03": { + "question": "Which region/city has the highest number of financial companies in the UK?", + "en_question": "Which region/city has the highest number of financial companies in your country?", + "annotations": [ + { + "answers": [ + "london" + ], + "en_answers": [ + "london" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-07": { + "question": "What is the most famous private company in the UK?", + "en_question": "What is the most famous private company in your country?", + "annotations": [ + { + "answers": [ + "cadbury's", + "cadburys" + ], + "en_answers": [ + "cadbury's", + "cadburys" + ], + "count": 1 + }, + { + "answers": [ + "tesco" + ], + "en_answers": [ + "tesco" + ], + "count": 1 + }, + { + "answers": [ + "john lewis" + ], + "en_answers": [ + "john lewis" + ], + "count": 1 + }, + { + "answers": [ + "aston martin" + ], + "en_answers": [ + "aston martin" + ], + "count": 1 + }, + { + "answers": [ + "johnson and johnson", + "johnson & johnson" + ], + "en_answers": [ + "johnson and johnson", + "johnson & johnson" + ], + "count": 1 + } + ], + "idks": { + "idk": 5, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ji-ko-08": { + "question": "What is the maximum number of hours one can work per week in the UK? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "What is the maximum number of hours one can work per week in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "48" + ], + "en_answers": [ + "48" + ], + "count": 2 + }, + { + "answers": [ + "50" + ], + "en_answers": [ + "50" + ], + "count": 1 + }, + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-09": { + "question": "What do people typically eat during company get-together in the UK?", + "en_question": "What do people typically eat during company get-together in your country?", + "annotations": [ + { + "answers": [ + "buffet", + "buffet food" + ], + "en_answers": [ + "buffet", + "buffet food" + ], + "count": 3 + }, + { + "answers": [ + "meals" + ], + "en_answers": [ + "meals" + ], + "count": 1 + }, + { + "answers": [ + "cakes" + ], + "en_answers": [ + "cakes" + ], + "count": 1 + }, + { + "answers": [ + "pastries" + ], + "en_answers": [ + "pastries" + ], + "count": 1 + }, + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-14": { + "question": "What is the representative export item of the UK?", + "en_question": "What is the representative export item of your country?", + "annotations": [ + { + "answers": [ + "cars" + ], + "en_answers": [ + "cars" + ], + "count": 2 + }, + { + "answers": [ + "chemicals" + ], + "en_answers": [ + "chemicals" + ], + "count": 1 + }, + { + "answers": [ + "pharmaceuticals" + ], + "en_answers": [ + "pharmaceuticals" + ], + "count": 1 + } + ], + "idks": { + "idk": 5, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ji-ko-15": { + "question": "How long (in hours) is the typical lunch break in the UK? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "en_question": "How long (in hours) is the typical lunch break in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + }, + { + "answers": [ + "0.5" + ], + "en_answers": [ + "0.5" + ], + "count": 2 + }, + { + "answers": [ + "0.3" + ], + "en_answers": [ + "0.3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-16": { + "question": "Where do mothers stay for a certain period after childbirth for recovery in the UK?", + "en_question": "Where do mothers stay for a certain period after childbirth for recovery in your country?", + "annotations": [ + { + "answers": [ + "hospital" + ], + "en_answers": [ + "hospital" + ], + "count": 4 + }, + { + "answers": [ + "paediatric ward" + ], + "en_answers": [ + "paediatric ward" + ], + "count": 1 + }, + { + "answers": [ + "maternity ward" + ], + "en_answers": [ + "maternity ward" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-19": { + "question": "What is the UK's most commonly given flower on Parents' Day?", + "en_question": "What is your country's most commonly given flower on Parents' Day?", + "annotations": [ + { + "answers": [ + "rose", + "roses" + ], + "en_answers": [ + "rose", + "roses" + ], + "count": 3 + }, + { + "answers": [ + "lillies" + ], + "en_answers": [ + "lillies" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "Ji-ko-22": { + "question": "What do people especially spend their first salary on in the UK's society?", + "en_question": "What do people especially spend their first salary on in your country's society?", + "annotations": [ + { + "answers": [ + "groceries" + ], + "en_answers": [ + "groceries" + ], + "count": 1 + }, + { + "answers": [ + "bills" + ], + "en_answers": [ + "bills" + ], + "count": 1 + }, + { + "answers": [ + "car" + ], + "en_answers": [ + "car" + ], + "count": 1 + }, + { + "answers": [ + "rent" + ], + "en_answers": [ + "rent" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-24": { + "question": "What is the most preferred recreational facility among children in the UK?", + "en_question": "What is the most preferred recreational facility among children in your country?", + "annotations": [ + { + "answers": [ + "park" + ], + "en_answers": [ + "park" + ], + "count": 2 + }, + { + "answers": [ + "soft play" + ], + "en_answers": [ + "soft play" + ], + "count": 1 + }, + { + "answers": [ + "playground" + ], + "en_answers": [ + "playground" + ], + "count": 1 + }, + { + "answers": [ + "indoor play gym" + ], + "en_answers": [ + "indoor play gym" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-25": { + "question": "What are the family-related holidays in the UK?", + "en_question": "What are the family-related holidays in your country?", + "annotations": [ + { + "answers": [ + "christmas" + ], + "en_answers": [ + "christmas" + ], + "count": 3 + }, + { + "answers": [ + "easter" + ], + "en_answers": [ + "easter" + ], + "count": 3 + }, + { + "answers": [ + "new year" + ], + "en_answers": [ + "new year" + ], + "count": 2 + }, + { + "answers": [ + "caravan holidays" + ], + "en_answers": [ + "caravan holidays" + ], + "count": 1 + }, + { + "answers": [ + "mother's day", + "mothers day" + ], + "en_answers": [ + "mother's day", + "mothers day" + ], + "count": 1 + }, + { + "answers": [ + "father's day", + "fathers day" + ], + "en_answers": [ + "father's day", + "fathers day" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-26": { + "question": "What are the key milestones associated with children's independence from their parents in the UK's society?", + "en_question": "What are the key milestones associated with children's independence from their parents in your country's society?", + "annotations": [ + { + "answers": [ + "driving", + "driving test at 17", + "passing driving test" + ], + "en_answers": [ + "driving", + "driving test at 17", + "passing driving test" + ], + "count": 3 + }, + { + "answers": [ + "going to university", + "going to uni", + "leaving school for university" + ], + "en_answers": [ + "going to university", + "going to uni", + "leaving school for university" + ], + "count": 2 + }, + { + "answers": [ + "leaving home" + ], + "en_answers": [ + "leaving home" + ], + "count": 1 + }, + { + "answers": [ + "school" + ], + "en_answers": [ + "school" + ], + "count": 1 + }, + { + "answers": [ + "job" + ], + "en_answers": [ + "job" + ], + "count": 1 + }, + { + "answers": [ + "becoming an adult", + "becoming an adult at 18" + ], + "en_answers": [ + "becoming an adult", + "becoming an adult at 18" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ji-ko-27": { + "question": "What is the common gift you give when visiting elderly parents in the UK?", + "en_question": "What is the common gift you give when visiting elderly parents in your country?", + "annotations": [ + { + "answers": [ + "flowers" + ], + "en_answers": [ + "flowers" + ], + "count": 5 + }, + { + "answers": [ + "chocolate", + "chocolates" + ], + "en_answers": [ + "chocolate", + "chocolates" + ], + "count": 2 + }, + { + "answers": [ + "wine" + ], + "en_answers": [ + "wine" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-28": { + "question": "When is the first day that people celebrate after a child is born in the UK?", + "en_question": "When is the first day that people celebrate after a child is born in your country?", + "annotations": [ + { + "answers": [ + "birthday", + "first birthday" + ], + "en_answers": [ + "birthday", + "first birthday" + ], + "count": 3 + }, + { + "answers": [ + "christening" + ], + "en_answers": [ + "christening" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Ji-ko-29": { + "question": "Which age's birthday is celebrated the most grandly in the UK's society?", + "en_question": "Which age's birthday is celebrated the most grandly in your country's society?", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + }, + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 1 + }, + { + "answers": [ + "21" + ], + "en_answers": [ + "21" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-31": { + "question": "Where do secondary school students in the UK usually study for exams?", + "en_question": "Where do middle and high school students in your country usually study for exams?", + "annotations": [ + { + "answers": [ + "school", + "in school", + "at school" + ], + "en_answers": [ + "school", + "in school", + "at school" + ], + "count": 3 + }, + { + "answers": [ + "at home" + ], + "en_answers": [ + "at home" + ], + "count": 2 + }, + { + "answers": [ + "study room" + ], + "en_answers": [ + "study room" + ], + "count": 1 + }, + { + "answers": [ + "library" + ], + "en_answers": [ + "library" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-33": { + "question": "Where do secondary school students in the UK usually go after dinner?", + "en_question": "Where do high school students in your country usually go after dinner?", + "annotations": [ + { + "answers": [ + "canteen" + ], + "en_answers": [ + "canteen" + ], + "count": 2 + }, + { + "answers": [ + "back to school" + ], + "en_answers": [ + "back to school" + ], + "count": 1 + }, + { + "answers": [ + "home" + ], + "en_answers": [ + "home" + ], + "count": 1 + }, + { + "answers": [ + "form time" + ], + "en_answers": [ + "form time" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-34": { + "question": "How do primary school students in the UK go to school?", + "en_question": "How do elementary school students in your country go to school?", + "annotations": [ + { + "answers": [ + "walk" + ], + "en_answers": [ + "walk" + ], + "count": 3 + }, + { + "answers": [ + "car" + ], + "en_answers": [ + "car" + ], + "count": 3 + }, + { + "answers": [ + "bus" + ], + "en_answers": [ + "bus" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-35": { + "question": "What is the most common form of private education in the UK?", + "en_question": "What is the most common form of private education in your country?", + "annotations": [ + { + "answers": [ + "boarding schools", + "boarding school" + ], + "en_answers": [ + "boarding schools", + "boarding school" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "Ji-ko-36": { + "question": "Which subject’s academy/private educational institute do secondary school students most frequently attend in the UK?", + "en_question": "Which subject’s academy/private educational institute do middle or high students most frequently attend in your country?", + "annotations": [ + { + "answers": [ + "english" + ], + "en_answers": [ + "english" + ], + "count": 1 + }, + { + "answers": [ + "maths", + "math" + ], + "en_answers": [ + "maths", + "math" + ], + "count": 1 + }, + { + "answers": [ + "science" + ], + "en_answers": [ + "science" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "Question unclear": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-37": { + "question": "What type of clothing do secondary school students wear to school in the UK?", + "en_question": "What type of clothing do middle and high school students wear to school in your country?", + "annotations": [ + { + "answers": [ + "uniform" + ], + "en_answers": [ + "uniform" + ], + "count": 3 + }, + { + "answers": [ + "blazer" + ], + "en_answers": [ + "blazer" + ], + "count": 2 + }, + { + "answers": [ + "tie", + "shirt and tie" + ], + "en_answers": [ + "tie", + "shirt and tie" + ], + "count": 2 + }, + { + "answers": [ + "jacket", + "jacket and trousers" + ], + "en_answers": [ + "jacket", + "jacket and trousers" + ], + "count": 1 + }, + { + "answers": [ + "trousers", + "jacket and trousers" + ], + "en_answers": [ + "trousers", + "jacket and trousers" + ], + "count": 1 + }, + { + "answers": [ + "skirt" + ], + "en_answers": [ + "skirt" + ], + "count": 1 + }, + { + "answers": [ + "shirt", + "shirt and tie" + ], + "en_answers": [ + "shirt", + "shirt and tie" + ], + "count": 1 + }, + { + "answers": [ + "black trousers" + ], + "en_answers": [ + "black trousers" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-38": { + "question": "Which degree is considered the most difficult to gain admission to in the UK?", + "en_question": "Which major is considered the most difficult to gain admission to in your country?", + "annotations": [ + { + "answers": [ + "medicine", + "doctor" + ], + "en_answers": [ + "medicine", + "doctor" + ], + "count": 4 + }, + { + "answers": [ + "veterinary" + ], + "en_answers": [ + "veterinary" + ], + "count": 1 + }, + { + "answers": [ + "law" + ], + "en_answers": [ + "law" + ], + "count": 1 + }, + { + "answers": [ + "dentistry" + ], + "en_answers": [ + "dentistry" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-39": { + "question": "What is the most commonly learned musical instrument by primary school students in the UK?", + "en_question": "What is the most commonly learned musical instrument by elementary school students in your country?", + "annotations": [ + { + "answers": [ + "recorder" + ], + "en_answers": [ + "recorder" + ], + "count": 5 + }, + { + "answers": [ + "violin" + ], + "en_answers": [ + "violin" + ], + "count": 1 + }, + { + "answers": [ + "piano" + ], + "en_answers": [ + "piano" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-40": { + "question": "What do secondary school students typically do during break time in schools in the UK?", + "en_question": "What do high school students typically do during break time in schools in your country?", + "annotations": [ + { + "answers": [ + "eat lunch" + ], + "en_answers": [ + "eat lunch" + ], + "count": 1 + }, + { + "answers": [ + "work part-time" + ], + "en_answers": [ + "work part-time" + ], + "count": 1 + }, + { + "answers": [ + "go outside" + ], + "en_answers": [ + "go outside" + ], + "count": 1 + }, + { + "answers": [ + "talk with friends from different classes.", + "talk", + "chat" + ], + "en_answers": [ + "talk with friends from different classes.", + "talk", + "chat" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-41": { + "question": "What kind of shoes do students wear in schools in the UK?", + "en_question": "What kind of shoes do students wear in schools in your country?", + "annotations": [ + { + "answers": [ + "black", + "black shoes" + ], + "en_answers": [ + "black", + "black shoes" + ], + "count": 3 + }, + { + "answers": [ + "trainers" + ], + "en_answers": [ + "trainers" + ], + "count": 1 + }, + { + "answers": [ + "formal" + ], + "en_answers": [ + "formal" + ], + "count": 1 + }, + { + "answers": [ + "ballet flats" + ], + "en_answers": [ + "ballet flats" + ], + "count": 1 + }, + { + "answers": [ + "black leather" + ], + "en_answers": [ + "black leather" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-42": { + "question": "What are the required subjects in the UK's university entrance exam?", + "en_question": "What are the required subjects in your country's university entrance exam?", + "annotations": [ + { + "answers": [ + "english" + ], + "en_answers": [ + "english" + ], + "count": 2 + }, + { + "answers": [ + "math", + "maths", + "mathematics", + "mathematics" + ], + "en_answers": [ + "math", + "maths", + "mathematics", + "mathematics" + ], + "count": 2 + }, + { + "answers": [ + "critical thinking" + ], + "en_answers": [ + "critical thinking" + ], + "count": 1 + }, + { + "answers": [ + "science" + ], + "en_answers": [ + "science" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "no-answer": 1, + "idk": 0 + } + }, + "Ji-ko-44": { + "question": "Which region (within a city) in the UK has the highest academic fervor?", + "en_question": "Which region (within a city) in your country has the highest academic fervor?", + "annotations": [ + { + "answers": [ + "oxford" + ], + "en_answers": [ + "oxford" + ], + "count": 3 + }, + { + "answers": [ + "cambridge" + ], + "en_answers": [ + "cambridge" + ], + "count": 3 + }, + { + "answers": [ + "st andrews" + ], + "en_answers": [ + "st andrews" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-45": { + "question": "What do people look forward to the most at university festivals in the UK?", + "en_question": "What do people look forward to the most at university festivals in your country?", + "annotations": [ + { + "answers": [ + "alcohol", + "drinking" + ], + "en_answers": [ + "alcohol", + "drinking" + ], + "count": 2 + }, + { + "answers": [ + "pub crawl" + ], + "en_answers": [ + "pub crawl" + ], + "count": 1 + }, + { + "answers": [ + "music" + ], + "en_answers": [ + "music" + ], + "count": 1 + }, + { + "answers": [ + "beer" + ], + "en_answers": [ + "beer" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jo-sp-01": { + "question": "What is the second most popular sport in the UK?", + "en_question": "What is the second most popular sport in your country?", + "annotations": [ + { + "answers": [ + "rugby" + ], + "en_answers": [ + "rugby" + ], + "count": 3 + }, + { + "answers": [ + "cricket" + ], + "en_answers": [ + "cricket" + ], + "count": 2 + }, + { + "answers": [ + "golf" + ], + "en_answers": [ + "golf" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-02": { + "question": "What is the most popular sport played without a ball in the UK?", + "en_question": "What is the most popular sport played without a ball in your country?", + "annotations": [ + { + "answers": [ + "frisby" + ], + "en_answers": [ + "frisby" + ], + "count": 1 + }, + { + "answers": [ + "darts" + ], + "en_answers": [ + "darts" + ], + "count": 1 + }, + { + "answers": [ + "chess" + ], + "en_answers": [ + "chess" + ], + "count": 1 + }, + { + "answers": [ + "martial arts" + ], + "en_answers": [ + "martial arts" + ], + "count": 1 + }, + { + "answers": [ + "gymnastics" + ], + "en_answers": [ + "gymnastics" + ], + "count": 1 + }, + { + "answers": [ + "fishing" + ], + "en_answers": [ + "fishing" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-09": { + "question": "What sports are most associated with the upper class in the UK?", + "en_question": "What sports are most associated with the upper class in your country?", + "annotations": [ + { + "answers": [ + "polo" + ], + "en_answers": [ + "polo" + ], + "count": 2 + }, + { + "answers": [ + "cricket" + ], + "en_answers": [ + "cricket" + ], + "count": 2 + }, + { + "answers": [ + "lacrosse" + ], + "en_answers": [ + "lacrosse" + ], + "count": 2 + }, + { + "answers": [ + "football", + "soccer" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "golf" + ], + "en_answers": [ + "golf" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-13": { + "question": "What is the most popular water sport in the UK?", + "en_question": "What is the most popular water sport in your country?", + "annotations": [ + { + "answers": [ + "swimming" + ], + "en_answers": [ + "swimming" + ], + "count": 2 + }, + { + "answers": [ + "rowing" + ], + "en_answers": [ + "rowing" + ], + "count": 1 + }, + { + "answers": [ + "sailing" + ], + "en_answers": [ + "sailing" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Jo-sp-14": { + "question": "What is the most popular mental sport in the UK?", + "en_question": "What is the most popular mental sport in your country?", + "annotations": [ + { + "answers": [ + "chess" + ], + "en_answers": [ + "chess" + ], + "count": 2 + }, + { + "answers": [ + "cards" + ], + "en_answers": [ + "cards" + ], + "count": 1 + }, + { + "answers": [ + "tennis" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + }, + { + "answers": [ + "crosswords" + ], + "en_answers": [ + "crosswords" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Jo-sp-18": { + "question": "How many holiday days per year does a standard worker gets in the UK? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "How many holiday days per year does a standard worker gets in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "28" + ], + "en_answers": [ + "28" + ], + "count": 4 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-19": { + "question": "What region in the UK has been traditionally associated with agriculture?", + "en_question": "What region in your country has been traditionally associated with agriculture?", + "annotations": [ + { + "answers": [ + "yorkshire" + ], + "en_answers": [ + "yorkshire" + ], + "count": 2 + }, + { + "answers": [ + "oxfordshire" + ], + "en_answers": [ + "oxfordshire" + ], + "count": 1 + }, + { + "answers": [ + "wales" + ], + "en_answers": [ + "wales" + ], + "count": 1 + }, + { + "answers": [ + "west country" + ], + "en_answers": [ + "west country" + ], + "count": 1 + }, + { + "answers": [ + "sussex" + ], + "en_answers": [ + "sussex" + ], + "count": 1 + }, + { + "answers": [ + "gloucestershire" + ], + "en_answers": [ + "gloucestershire" + ], + "count": 1 + }, + { + "answers": [ + "scotland" + ], + "en_answers": [ + "scotland" + ], + "count": 1 + }, + { + "answers": [ + "south west" + ], + "en_answers": [ + "south west" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-21": { + "question": "What time, if any, do people usually leave work for lunch in the UK? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "en_question": "What time, if any, do people usually leave work for lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "13:00", + "1300" + ], + "en_answers": [ + "13:00", + "1300" + ], + "count": 4 + }, + { + "answers": [ + "12:00" + ], + "en_answers": [ + "12:00" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-31": { + "question": "What time do secondary school students tend to leave school in the UK? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "en_question": "What time do high school students tend to leave school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "15:30" + ], + "en_answers": [ + "15:30" + ], + "count": 4 + }, + { + "answers": [ + "15:00" + ], + "en_answers": [ + "15:00" + ], + "count": 2 + }, + { + "answers": [ + "16:30" + ], + "en_answers": [ + "16:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-32": { + "question": "What sport do primary school students tend to practice at school in the UK?", + "en_question": "What sport do elementary school students tend to practice at school in your country?", + "annotations": [ + { + "answers": [ + "football", + "soccer" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "athletics" + ], + "en_answers": [ + "athletics" + ], + "count": 2 + }, + { + "answers": [ + "running" + ], + "en_answers": [ + "running" + ], + "count": 1 + }, + { + "answers": [ + "badminton" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "tennis" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + }, + { + "answers": [ + "netball" + ], + "en_answers": [ + "netball" + ], + "count": 1 + }, + { + "answers": [ + "rugby" + ], + "en_answers": [ + "rugby" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jo-sp-36": { + "question": "How long (in weeks) are summer holidays at primary schools in the UK? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "en_question": "How long (in weeks) are summer vacations at elementary schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "6", + "6 weeks" + ], + "en_answers": [ + "6", + "6 weeks" + ], + "count": 4 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-37": { + "question": "How long (in weeks) are summer holidays at universities in the UK? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "en_question": "How long (in weeks) are summer vacations at universities in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 2 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + }, + { + "answers": [ + "16" + ], + "en_answers": [ + "16" + ], + "count": 1 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-39": { + "question": "At what age does primary education begin in the UK? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "en_question": "At what age does elementary education begin in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 3 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 2 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-43": { + "question": "How many languages are studied in primary education besides the UK's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "en_question": "How many languages are studied in elementary education besides your country's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 3 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-01": { + "question": "What eating utensils do people commonly used in the UK?", + "en_question": "What eating utensils do people commonly used in your country?", + "annotations": [ + { + "answers": [ + "knife", + "knives and forks", + "knife & fork", + "fork and knife", + "knife and fork" + ], + "en_answers": [ + "knife", + "knives and forks", + "knife & fork", + "fork and knife", + "knife and fork" + ], + "count": 5 + }, + { + "answers": [ + "fork", + "knives and forks", + "knife & fork", + "fork and knife", + "fork", + "knife and fork" + ], + "en_answers": [ + "fork", + "knives and forks", + "knife & fork", + "fork and knife", + "fork", + "knife and fork" + ], + "count": 5 + }, + { + "answers": [ + "spoon" + ], + "en_answers": [ + "spoon" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-04": { + "question": "What soft drink do people in the UK like to have?", + "en_question": "What soft drink do people in your country like to have?", + "annotations": [ + { + "answers": [ + "coca cola", + "coke" + ], + "en_answers": [ + "coca cola", + "coke" + ], + "count": 5 + }, + { + "answers": [ + "lemonade" + ], + "en_answers": [ + "lemonade" + ], + "count": 1 + }, + { + "answers": [ + "squash" + ], + "en_answers": [ + "squash" + ], + "count": 1 + }, + { + "answers": [ + "pepsi" + ], + "en_answers": [ + "pepsi" + ], + "count": 1 + }, + { + "answers": [ + "iron bru" + ], + "en_answers": [ + "iron bru" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-06": { + "question": "What is the most popular traditional alcohol in the UK?", + "en_question": "What is the most popular traditional alcohol in your country?", + "annotations": [ + { + "answers": [ + "beer" + ], + "en_answers": [ + "beer" + ], + "count": 4 + }, + { + "answers": [ + "ale" + ], + "en_answers": [ + "ale" + ], + "count": 1 + }, + { + "answers": [ + "gin" + ], + "en_answers": [ + "gin" + ], + "count": 1 + }, + { + "answers": [ + "wine" + ], + "en_answers": [ + "wine" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-07": { + "question": "How long (in hours) on average does it take for people in the UK to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "en_question": "How long (in hours) on average does it take for people in your country to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 4 + }, + { + "answers": [ + "1.5" + ], + "en_answers": [ + "1.5" + ], + "count": 2 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + }, + { + "answers": [ + "2.5" + ], + "en_answers": [ + "2.5" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-09": { + "question": "What time do people usually have dinner in the UK? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "en_question": "What time do people usually have dinner in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 4 + }, + { + "answers": [ + "19:00" + ], + "en_answers": [ + "19:00" + ], + "count": 1 + }, + { + "answers": [ + "18:30" + ], + "en_answers": [ + "18:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-12": { + "question": "What kind of soup do people from the UK like to have?", + "en_question": "What kind of soup do people from your country like to have?", + "annotations": [ + { + "answers": [ + "tomato" + ], + "en_answers": [ + "tomato" + ], + "count": 3 + }, + { + "answers": [ + "chicken" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "cream of tomato" + ], + "en_answers": [ + "cream of tomato" + ], + "count": 1 + }, + { + "answers": [ + "lentil" + ], + "en_answers": [ + "lentil" + ], + "count": 1 + }, + { + "answers": [ + "pumpkin" + ], + "en_answers": [ + "pumpkin" + ], + "count": 1 + }, + { + "answers": [ + "mushroom" + ], + "en_answers": [ + "mushroom" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-13": { + "question": "What street food do people from the UK like to eat?", + "en_question": "What street food do people from your country like to eat?", + "annotations": [ + { + "answers": [ + "kebabs" + ], + "en_answers": [ + "kebabs" + ], + "count": 2 + }, + { + "answers": [ + "burgers" + ], + "en_answers": [ + "burgers" + ], + "count": 2 + }, + { + "answers": [ + "fish and chips", + "fish & chips" + ], + "en_answers": [ + "fish and chips", + "fish & chips" + ], + "count": 2 + }, + { + "answers": [ + "hot dogs", + "hotdogs" + ], + "en_answers": [ + "hot dogs", + "hotdogs" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-15": { + "question": "What kind of seafood do people from the UK like to eat?", + "en_question": "What kind of seafood do people from your country like to eat?", + "annotations": [ + { + "answers": [ + "cod", + "battered cod" + ], + "en_answers": [ + "cod", + "battered cod" + ], + "count": 3 + }, + { + "answers": [ + "battered white fish" + ], + "en_answers": [ + "battered white fish" + ], + "count": 1 + }, + { + "answers": [ + "fish and chips", + "(fish & chips)" + ], + "en_answers": [ + "fish and chips", + "(fish & chips)" + ], + "count": 1 + }, + { + "answers": [ + "sardines" + ], + "en_answers": [ + "sardines" + ], + "count": 1 + }, + { + "answers": [ + "tuna" + ], + "en_answers": [ + "tuna" + ], + "count": 1 + }, + { + "answers": [ + "cockles" + ], + "en_answers": [ + "cockles" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-16": { + "question": "What is the biggest festival in the UK?", + "en_question": "What is the biggest festival in your country?", + "annotations": [ + { + "answers": [ + "glastonbury" + ], + "en_answers": [ + "glastonbury" + ], + "count": 4 + }, + { + "answers": [ + "christmas" + ], + "en_answers": [ + "christmas" + ], + "count": 1 + }, + { + "answers": [ + "edinburgh" + ], + "en_answers": [ + "edinburgh" + ], + "count": 1 + }, + { + "answers": [ + "may day" + ], + "en_answers": [ + "may day" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-28": { + "question": "What is the most commonly used public transport by people when travelling between cites in the UK?", + "en_question": "What is the most commonly used public transport by people when travelling between cites in your country?", + "annotations": [ + { + "answers": [ + "train" + ], + "en_answers": [ + "train" + ], + "count": 4 + }, + { + "answers": [ + "bus" + ], + "en_answers": [ + "bus" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-30": { + "question": "What are the specific decorations or symbols associated with the biggest festival in the UK?", + "en_question": "What are the specific decorations or symbols associated with the biggest festival in your country?", + "annotations": [ + { + "answers": [ + "christmas tree" + ], + "en_answers": [ + "christmas tree" + ], + "count": 3 + }, + { + "answers": [ + "christmas decorations" + ], + "en_answers": [ + "christmas decorations" + ], + "count": 1 + }, + { + "answers": [ + "advent calendars" + ], + "en_answers": [ + "advent calendars" + ], + "count": 1 + }, + { + "answers": [ + "christmas lights" + ], + "en_answers": [ + "christmas lights" + ], + "count": 1 + }, + { + "answers": [ + "daffodils" + ], + "en_answers": [ + "daffodils" + ], + "count": 1 + }, + { + "answers": [ + "leeks" + ], + "en_answers": [ + "leeks" + ], + "count": 1 + }, + { + "answers": [ + "santa" + ], + "en_answers": [ + "santa" + ], + "count": 1 + }, + { + "answers": [ + "star" + ], + "en_answers": [ + "star" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-37": { + "question": "What sports do women like to watch the most in the UK?", + "en_question": "What sports do women like to watch the most in your country?", + "annotations": [ + { + "answers": [ + "football", + "soccer" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "tennis" + ], + "en_answers": [ + "tennis" + ], + "count": 3 + }, + { + "answers": [ + "rowing" + ], + "en_answers": [ + "rowing" + ], + "count": 1 + }, + { + "answers": [ + "hockey" + ], + "en_answers": [ + "hockey" + ], + "count": 1 + }, + { + "answers": [ + "formula 1" + ], + "en_answers": [ + "formula 1" + ], + "count": 1 + }, + { + "answers": [ + "badminton" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-38": { + "question": "What sports do men like to watch the most in the UK?", + "en_question": "What sports do men like to watch the most in your country?", + "annotations": [ + { + "answers": [ + "football", + "soccer" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "cricket" + ], + "en_answers": [ + "cricket" + ], + "count": 2 + }, + { + "answers": [ + "rugby", + "rygby" + ], + "en_answers": [ + "rugby", + "rygby" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-41": { + "question": "What is the common leisure activity that females in their 20s in the UK engage in?", + "en_question": "What is the common leisure activity that females in their 20s in your country engage in?", + "annotations": [ + { + "answers": [ + "jogging" + ], + "en_answers": [ + "jogging" + ], + "count": 1 + }, + { + "answers": [ + "shopping" + ], + "en_answers": [ + "shopping" + ], + "count": 1 + }, + { + "answers": [ + "gym" + ], + "en_answers": [ + "gym" + ], + "count": 1 + }, + { + "answers": [ + "hot yoga" + ], + "en_answers": [ + "hot yoga" + ], + "count": 1 + }, + { + "answers": [ + "binge drinking" + ], + "en_answers": [ + "binge drinking" + ], + "count": 1 + }, + { + "answers": [ + "running" + ], + "en_answers": [ + "running" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-42": { + "question": "What is the common leisure activity that males in their 20s in the UK engage in?", + "en_question": "What is the common leisure activity that males in their 20s in your country engage in?", + "annotations": [ + { + "answers": [ + "drinking" + ], + "en_answers": [ + "drinking" + ], + "count": 2 + }, + { + "answers": [ + "drinking beer" + ], + "en_answers": [ + "drinking beer" + ], + "count": 1 + }, + { + "answers": [ + "computer games" + ], + "en_answers": [ + "computer games" + ], + "count": 1 + }, + { + "answers": [ + "biking" + ], + "en_answers": [ + "biking" + ], + "count": 1 + }, + { + "answers": [ + "cinema" + ], + "en_answers": [ + "cinema" + ], + "count": 1 + }, + { + "answers": [ + "gym" + ], + "en_answers": [ + "gym" + ], + "count": 1 + }, + { + "answers": [ + "music festival" + ], + "en_answers": [ + "music festival" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-46": { + "question": "How long (in hours) do people usually take a break after lunch on a weekday in the UK? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "en_question": "How long (in hours) do people usually take a break after lunch on a weekday in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "0.5" + ], + "en_answers": [ + "0.5" + ], + "count": 4 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Jod-ch-48": { + "question": "What do people eat for lunch during the working days in the UK?", + "en_question": "What do people eat for lunch during the working days in your country?", + "annotations": [ + { + "answers": [ + "sandwich", + "sandwiches" + ], + "en_answers": [ + "sandwich", + "sandwiches" + ], + "count": 5 + }, + { + "answers": [ + "fruit" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + }, + { + "answers": [ + "crisps" + ], + "en_answers": [ + "crisps" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-50": { + "question": "What is the average commute time (in minutes) for people in the UK? (Provide Arabic numerals (e.g., 1) only.)", + "en_question": "What is the average commute time (in minutes) for people in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 2 + }, + { + "answers": [ + "45" + ], + "en_answers": [ + "45" + ], + "count": 1 + }, + { + "answers": [ + "60", + "60-90" + ], + "en_answers": [ + "60", + "60-90" + ], + "count": 1 + }, + { + "answers": [ + "90", + "60-90" + ], + "en_answers": [ + "90", + "60-90" + ], + "count": 1 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-51": { + "question": "What is the most common transportation that people take to get to work in the UK?", + "en_question": "What is the most common transportation that people take to get to work in your country?", + "annotations": [ + { + "answers": [ + "car" + ], + "en_answers": [ + "car" + ], + "count": 4 + }, + { + "answers": [ + "bus" + ], + "en_answers": [ + "bus" + ], + "count": 3 + }, + { + "answers": [ + "train" + ], + "en_answers": [ + "train" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-54": { + "question": "How long (in days) is the marriage leave in the UK? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "How long (in days) is the marriage leave in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 1 + }, + { + "answers": [ + "14" + ], + "en_answers": [ + "14" + ], + "count": 1 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "no-answer": 1, + "idk": 0 + } + }, + "Jod-ch-56": { + "question": "What is the typical retirement age for women in the UK? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "What is the typical retirement age for women in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "67" + ], + "en_answers": [ + "67" + ], + "count": 3 + }, + { + "answers": [ + "65" + ], + "en_answers": [ + "65" + ], + "count": 1 + }, + { + "answers": [ + "63" + ], + "en_answers": [ + "63" + ], + "count": 1 + }, + { + "answers": [ + "66" + ], + "en_answers": [ + "66" + ], + "count": 1 + }, + { + "answers": [ + "55" + ], + "en_answers": [ + "55" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-57": { + "question": "What is the typical retirement age for men in the UK? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "What is the typical retirement age for men in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "65" + ], + "en_answers": [ + "65" + ], + "count": 4 + }, + { + "answers": [ + "67" + ], + "en_answers": [ + "67" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-58": { + "question": "Which profession is the most respected in the UK?", + "en_question": "Which profession is the most respected in your country?", + "annotations": [ + { + "answers": [ + "doctor", + "doctors" + ], + "en_answers": [ + "doctor", + "doctors" + ], + "count": 3 + }, + { + "answers": [ + "lawyer" + ], + "en_answers": [ + "lawyer" + ], + "count": 2 + }, + { + "answers": [ + "police" + ], + "en_answers": [ + "police" + ], + "count": 2 + }, + { + "answers": [ + "paramedic" + ], + "en_answers": [ + "paramedic" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-60": { + "question": "What is the duration (in hours) of a typical workday in the UK? (Provide Arabic numerals (0~24) only.)", + "en_question": "What is the duration (in hours) of a typical workday in your country? (Provide Arabic numerals (0~24) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 4 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-61": { + "question": "Which occupation is most preferred among females in the UK?", + "en_question": "Which occupation is most preferred among females in your country?", + "annotations": [ + { + "answers": [ + "teacher", + "teaching" + ], + "en_answers": [ + "teacher", + "teaching" + ], + "count": 2 + }, + { + "answers": [ + "pr" + ], + "en_answers": [ + "pr" + ], + "count": 1 + }, + { + "answers": [ + "marketing" + ], + "en_answers": [ + "marketing" + ], + "count": 1 + }, + { + "answers": [ + "hr" + ], + "en_answers": [ + "hr" + ], + "count": 1 + }, + { + "answers": [ + "admin" + ], + "en_answers": [ + "admin" + ], + "count": 1 + }, + { + "answers": [ + "nursery nurse" + ], + "en_answers": [ + "nursery nurse" + ], + "count": 1 + }, + { + "answers": [ + "teaching assistant" + ], + "en_answers": [ + "teaching assistant" + ], + "count": 1 + }, + { + "answers": [ + "clerical work" + ], + "en_answers": [ + "clerical work" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-62": { + "question": "Which occupation is most preferred among males in the UK?", + "en_question": "Which occupation is most preferred among males in your country?", + "annotations": [ + { + "answers": [ + "lawyer" + ], + "en_answers": [ + "lawyer" + ], + "count": 1 + }, + { + "answers": [ + "engineering" + ], + "en_answers": [ + "engineering" + ], + "count": 1 + }, + { + "answers": [ + "information technology" + ], + "en_answers": [ + "information technology" + ], + "count": 1 + }, + { + "answers": [ + "electrician" + ], + "en_answers": [ + "electrician" + ], + "count": 1 + }, + { + "answers": [ + "construction" + ], + "en_answers": [ + "construction" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-17": { + "question": "On average, how far do students typically pursue their education in the UK? (e.g., primary, secondary school)", + "en_question": "On average, how far do students typically pursue their education in your country? (e.g., elementary, high school)", + "annotations": [ + { + "answers": [ + "secondary school", + "secondary" + ], + "en_answers": [ + "secondary school", + "secondary" + ], + "count": 3 + }, + { + "answers": [ + "university" + ], + "en_answers": [ + "university" + ], + "count": 2 + }, + { + "answers": [ + "college" + ], + "en_answers": [ + "college" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-24": { + "question": "What language is taught in schools in the UK besides English?", + "en_question": "What language is taught in schools in your country besides English?", + "annotations": [ + { + "answers": [ + "french" + ], + "en_answers": [ + "french" + ], + "count": 5 + }, + { + "answers": [ + "spanish" + ], + "en_answers": [ + "spanish" + ], + "count": 3 + }, + { + "answers": [ + "german" + ], + "en_answers": [ + "german" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-30": { + "question": "What days of the week are schools closed in the UK?", + "en_question": "What days of the week are schools closed in your country?", + "annotations": [ + { + "answers": [ + "saturday", + "saturday and sunday" + ], + "en_answers": [ + "saturday", + "saturday and sunday" + ], + "count": 5 + }, + { + "answers": [ + "sunday", + "saturday and sunday" + ], + "en_answers": [ + "sunday", + "saturday and sunday" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-32": { + "question": "What food do the hosts usually prepare for the guests in the UK?", + "en_question": "What food do the hosts usually prepare for the guests in your country?", + "annotations": [ + { + "answers": [ + "buffet" + ], + "en_answers": [ + "buffet" + ], + "count": 1 + }, + { + "answers": [ + "cake" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "roast dinner" + ], + "en_answers": [ + "roast dinner" + ], + "count": 1 + }, + { + "answers": [ + "curry" + ], + "en_answers": [ + "curry" + ], + "count": 1 + }, + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ki-pe-34": { + "question": "What is the usual drink in the breakfast in the UK?", + "en_question": "What is the usual drink in the breakfast in your country?", + "annotations": [ + { + "answers": [ + "coffee" + ], + "en_answers": [ + "coffee" + ], + "count": 5 + }, + { + "answers": [ + "tea" + ], + "en_answers": [ + "tea" + ], + "count": 3 + }, + { + "answers": [ + "fruit juice" + ], + "en_answers": [ + "fruit juice" + ], + "count": 1 + }, + { + "answers": [ + "juice" + ], + "en_answers": [ + "juice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-36": { + "question": "Except the food original from the UK, which country's food is more popular in the UK?", + "en_question": "Except the food original from your country, which country's food is more popular in your country?", + "annotations": [ + { + "answers": [ + "indian" + ], + "en_answers": [ + "indian" + ], + "count": 3 + }, + { + "answers": [ + "chinese" + ], + "en_answers": [ + "chinese" + ], + "count": 2 + }, + { + "answers": [ + "curry" + ], + "en_answers": [ + "curry" + ], + "count": 1 + }, + { + "answers": [ + "italian" + ], + "en_answers": [ + "italian" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-39": { + "question": "What food is usually prepared for a family picnic in the UK?", + "en_question": "What food is usually prepared for a family picnic in your country?", + "annotations": [ + { + "answers": [ + "sandwiches" + ], + "en_answers": [ + "sandwiches" + ], + "count": 4 + }, + { + "answers": [ + "fruit" + ], + "en_answers": [ + "fruit" + ], + "count": 2 + }, + { + "answers": [ + "cake" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "pork pie" + ], + "en_answers": [ + "pork pie" + ], + "count": 1 + }, + { + "answers": [ + "salad" + ], + "en_answers": [ + "salad" + ], + "count": 1 + }, + { + "answers": [ + "cold meat" + ], + "en_answers": [ + "cold meat" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-40": { + "question": "Which food from the UK is considered disgusting by the rest of the world?", + "en_question": "Which food from your country is considered disgusting by the rest of the world?", + "annotations": [ + { + "answers": [ + "haggis" + ], + "en_answers": [ + "haggis" + ], + "count": 2 + }, + { + "answers": [ + "black pudding" + ], + "en_answers": [ + "black pudding" + ], + "count": 1 + }, + { + "answers": [ + "stargazer pie" + ], + "en_answers": [ + "stargazer pie" + ], + "count": 1 + }, + { + "answers": [ + "jellied eels" + ], + "en_answers": [ + "jellied eels" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "Ki-pe-43": { + "question": "What is the name of the popular bread in the UK?", + "en_question": "What is the name of the popular bread in your country?", + "annotations": [ + { + "answers": [ + "hovis" + ], + "en_answers": [ + "hovis" + ], + "count": 4 + }, + { + "answers": [ + "warburton" + ], + "en_answers": [ + "warburton" + ], + "count": 3 + }, + { + "answers": [ + "kingsmill" + ], + "en_answers": [ + "kingsmill" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-51": { + "question": "What time of day are government offices closed in the UK? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "en_question": "What time of day are government offices closed in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 5 + }, + { + "answers": [ + "16:00" + ], + "en_answers": [ + "16:00" + ], + "count": 1 + }, + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 1 + }, + { + "answers": [ + "17:30" + ], + "en_answers": [ + "17:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-53": { + "question": "What is the normal start time of government offices in the UK? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "en_question": "What is the normal start time of government offices in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 3 + }, + { + "answers": [ + "07:00" + ], + "en_answers": [ + "07:00" + ], + "count": 1 + }, + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-01": { + "question": "What national holiday has the longest duration in the UK?", + "en_question": "What national holiday has the longest duration in your country?", + "annotations": [ + { + "answers": [ + "easter" + ], + "en_answers": [ + "easter" + ], + "count": 3 + }, + { + "answers": [ + "christmas" + ], + "en_answers": [ + "christmas" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-02": { + "question": "What are the common activities people from the UK do to celebrate Independence day?", + "en_question": "What are the common activities people from your country do to celebrate Independence day?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Kik-in-04": { + "question": "What is installed in front of the house when a family member dies in the UK?", + "en_question": "What is installed in front of the house when a family member dies in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "no-answer": 1, + "idk": 0 + } + }, + "Kik-in-05": { + "question": "When is a pregnancy celebration or ceremony usually held in the UK?", + "en_question": "When is a pregnancy celebration or ceremony usually held in your country?", + "annotations": [ + { + "answers": [ + "baby shower" + ], + "en_answers": [ + "baby shower" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "no-answer": 2, + "idk": 1 + } + }, + "Kik-in-06": { + "question": "What event is usually held before a wedding in the UK?", + "en_question": "What event is usually held before a wedding in your country?", + "annotations": [ + { + "answers": [ + "stag do", + "stag night", + "stag party" + ], + "en_answers": [ + "stag do", + "stag night", + "stag party" + ], + "count": 4 + }, + { + "answers": [ + "hen night", + "hen's do" + ], + "en_answers": [ + "hen night", + "hen's do" + ], + "count": 3 + }, + { + "answers": [ + "engagement party" + ], + "en_answers": [ + "engagement party" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-07": { + "question": "What is usually shared to the children during (Lunar) New Year in the UK?", + "en_question": "What is usually shared to the children during (Lunar) New Year in your country?", + "annotations": [ + { + "answers": [ + "easter eggs" + ], + "en_answers": [ + "easter eggs" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 1, + "no-answer": 0 + } + }, + "Kik-in-08": { + "question": "What activities are usually done days before Ramadan in the UK?", + "en_question": "What activities are usually done days before Ramadan in your country?", + "annotations": [ + { + "answers": [ + "fasting" + ], + "en_answers": [ + "fasting" + ], + "count": 3 + }, + { + "answers": [ + "prayer" + ], + "en_answers": [ + "prayer" + ], + "count": 1 + }, + { + "answers": [ + "feasting" + ], + "en_answers": [ + "feasting" + ], + "count": 1 + } + ], + "idks": { + "idk": 6, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Kik-in-10": { + "question": "What is the most popular tourist attraction for foreign visitors in the UK?", + "en_question": "What is the most popular tourist attraction for foreign visitors in your country?", + "annotations": [ + { + "answers": [ + "buckingham palace" + ], + "en_answers": [ + "buckingham palace" + ], + "count": 5 + }, + { + "answers": [ + "the london eye", + "london eye" + ], + "en_answers": [ + "the london eye", + "london eye" + ], + "count": 2 + }, + { + "answers": [ + "big ben" + ], + "en_answers": [ + "big ben" + ], + "count": 1 + }, + { + "answers": [ + "covent garden" + ], + "en_answers": [ + "covent garden" + ], + "count": 1 + }, + { + "answers": [ + "london" + ], + "en_answers": [ + "london" + ], + "count": 1 + }, + { + "answers": [ + "stonehenge" + ], + "en_answers": [ + "stonehenge" + ], + "count": 1 + }, + { + "answers": [ + "houses of parliament" + ], + "en_answers": [ + "houses of parliament" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-11": { + "question": "What is the most popular religious sites (temple, church, etc.) for tourism in the UK?", + "en_question": "What is the most popular religious sites (temple, church, etc.) for tourism in your country?", + "annotations": [ + { + "answers": [ + "westminster abbey" + ], + "en_answers": [ + "westminster abbey" + ], + "count": 2 + }, + { + "answers": [ + "cathedrals" + ], + "en_answers": [ + "cathedrals" + ], + "count": 2 + }, + { + "answers": [ + "st pauls" + ], + "en_answers": [ + "st pauls" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-15": { + "question": "What clothes do women usually wear on graduation commencement ceremony in the UK?", + "en_question": "What clothes do women usually wear on graduation commencement ceremony in your country?", + "annotations": [ + { + "answers": [ + "gown", + "cap and gown", + "graduation gown", + "gowns" + ], + "en_answers": [ + "gown", + "cap and gown", + "graduation gown", + "gowns" + ], + "count": 5 + }, + { + "answers": [ + "cap", + "cap and gown" + ], + "en_answers": [ + "cap", + "cap and gown" + ], + "count": 1 + }, + { + "answers": [ + "dress" + ], + "en_answers": [ + "dress" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-16": { + "question": "What drink is commonly consumed in the UK when the weather is cold?", + "en_question": "What drink is commonly consumed in your country when the weather is cold?", + "annotations": [ + { + "answers": [ + "tea" + ], + "en_answers": [ + "tea" + ], + "count": 4 + }, + { + "answers": [ + "hot chocolate" + ], + "en_answers": [ + "hot chocolate" + ], + "count": 1 + }, + { + "answers": [ + "coffee" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + }, + { + "answers": [ + "bovril" + ], + "en_answers": [ + "bovril" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-17": { + "question": "What fruit is more commonly sold and found during Ramadan in the UK?", + "en_question": "What fruit is more commonly sold and found during Ramadan in your country?", + "annotations": [ + { + "answers": [ + "dates" + ], + "en_answers": [ + "dates" + ], + "count": 3 + }, + { + "answers": [ + "banana" + ], + "en_answers": [ + "banana" + ], + "count": 1 + }, + { + "answers": [ + "watermelon" + ], + "en_answers": [ + "watermelon" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "Kik-in-24": { + "question": "What carbohydrate is usually served with chicken in a fast-food restaurant in the UK?", + "en_question": "What carbohydrate is usually served with chicken in a fast-food restaurant in your country?", + "annotations": [ + { + "answers": [ + "chips" + ], + "en_answers": [ + "chips" + ], + "count": 4 + }, + { + "answers": [ + "fries", + "french fries" + ], + "en_answers": [ + "fries", + "french fries" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-31": { + "question": "What is the most famous martial art sports in the UK?", + "en_question": "What is the most famous martial art sports in your country?", + "annotations": [ + { + "answers": [ + "karate" + ], + "en_answers": [ + "karate" + ], + "count": 2 + }, + { + "answers": [ + "jiu jitsu" + ], + "en_answers": [ + "jiu jitsu" + ], + "count": 1 + }, + { + "answers": [ + "kick boxing" + ], + "en_answers": [ + "kick boxing" + ], + "count": 1 + }, + { + "answers": [ + "boxing" + ], + "en_answers": [ + "boxing" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "Kik-in-34": { + "question": "What sports are often broadcasted on national television in the UK?", + "en_question": "What sports are often broadcasted on national television in your country?", + "annotations": [ + { + "answers": [ + "football", + "soccer" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "rugby" + ], + "en_answers": [ + "rugby" + ], + "count": 2 + }, + { + "answers": [ + "olympics" + ], + "en_answers": [ + "olympics" + ], + "count": 2 + }, + { + "answers": [ + "tennis" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + }, + { + "answers": [ + "cricket" + ], + "en_answers": [ + "cricket" + ], + "count": 1 + }, + { + "answers": [ + "darts" + ], + "en_answers": [ + "darts" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-35": { + "question": "What sports were popular among people from the UK during the COVID-19 pandemic?", + "en_question": "What sports were popular among people from your country during the COVID-19 pandemic?", + "annotations": [ + { + "answers": [ + "cycling" + ], + "en_answers": [ + "cycling" + ], + "count": 1 + }, + { + "answers": [ + "indoor exercise" + ], + "en_answers": [ + "indoor exercise" + ], + "count": 1 + }, + { + "answers": [ + "running" + ], + "en_answers": [ + "running" + ], + "count": 1 + }, + { + "answers": [ + "tennis" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + }, + { + "answers": [ + "golf" + ], + "en_answers": [ + "golf" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Kik-in-36": { + "question": "Who is the most popular football coach in the UK?", + "en_question": "Who is the most popular soccer coach in your country?", + "annotations": [ + { + "answers": [ + "pep guardiola" + ], + "en_answers": [ + "pep guardiola" + ], + "count": 1 + }, + { + "answers": [ + "brendan rodgers" + ], + "en_answers": [ + "brendan rodgers" + ], + "count": 1 + }, + { + "answers": [ + "gareth southgate", + "southgate" + ], + "en_answers": [ + "gareth southgate", + "southgate" + ], + "count": 1 + }, + { + "answers": [ + "alex ferguson", + "alex fergusun sorry dont know how to spell" + ], + "en_answers": [ + "alex ferguson", + "alex fergusun sorry dont know how to spell" + ], + "count": 1 + } + ], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-37": { + "question": "What football teams in the UK are famous for their intense rivalry? (e.g. ___ vs ___)", + "en_question": "What soccer teams in your country are famous for their intense rivalry? (e.g. ___ vs ___)", + "annotations": [ + { + "answers": [ + "celtic vs rangers" + ], + "en_answers": [ + "celtic vs rangers" + ], + "count": 2 + }, + { + "answers": [ + "liverpool vs everton" + ], + "en_answers": [ + "liverpool vs everton" + ], + "count": 2 + }, + { + "answers": [ + "newcastle vs sunderland" + ], + "en_answers": [ + "newcastle vs sunderland" + ], + "count": 1 + }, + { + "answers": [ + "spurs vs arsenal" + ], + "en_answers": [ + "spurs vs arsenal" + ], + "count": 1 + }, + { + "answers": [ + "man utd vs man city" + ], + "en_answers": [ + "man utd vs man city" + ], + "count": 1 + }, + { + "answers": [ + "tottenham vs arsenal" + ], + "en_answers": [ + "tottenham vs arsenal" + ], + "count": 1 + }, + { + "answers": [ + "liverpool vs manchester united" + ], + "en_answers": [ + "liverpool vs manchester united" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-38": { + "question": "What are the names of football supporters in the UK who are famous for their intense rivalry? (e.g. ___ vs ___)", + "en_question": "What are the names of soccer supporters in your country who are famous for their intense rivalry? (e.g. ___ vs ___)", + "annotations": [], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Kik-in-40": { + "question": "Who is the most famous male badminton player in the UK?", + "en_question": "Who is the most famous male badminton player in your country?", + "annotations": [ + { + "answers": [ + "marcus ellis" + ], + "en_answers": [ + "marcus ellis" + ], + "count": 1 + } + ], + "idks": { + "idk": 9, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Kik-in-41": { + "question": "Who is the most famous female badminton player in the UK?", + "en_question": "Who is the most famous female badminton player in your country?", + "annotations": [], + "idks": { + "idk": 7, + "Not interested": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Kik-in-44": { + "question": "What sport gets the most support from the government in the UK?", + "en_question": "What sport gets the most support from the government in your country?", + "annotations": [ + { + "answers": [ + "football", + "soccer" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "rugby" + ], + "en_answers": [ + "rugby" + ], + "count": 2 + }, + { + "answers": [ + "cricket" + ], + "en_answers": [ + "cricket" + ], + "count": 1 + }, + { + "answers": [ + "athletics", + "atheltics" + ], + "en_answers": [ + "athletics", + "atheltics" + ], + "count": 1 + }, + { + "answers": [ + "tennis" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-45": { + "question": "What sports field facilities are usually available at schools in the UK?", + "en_question": "What sports field facilities are usually available at schools in your country?", + "annotations": [ + { + "answers": [ + "football pitch", + "football field", + "football", + "soccer" + ], + "en_answers": [ + "football pitch", + "football field", + "football", + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "track", + "100 metres race" + ], + "en_answers": [ + "track", + "100 metres race" + ], + "count": 1 + }, + { + "answers": [ + "cricket pitch" + ], + "en_answers": [ + "cricket pitch" + ], + "count": 1 + }, + { + "answers": [ + "tennis court" + ], + "en_answers": [ + "tennis court" + ], + "count": 1 + }, + { + "answers": [ + "basketball court" + ], + "en_answers": [ + "basketball court" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-02": { + "question": "What cafe beverage do people from the UK most commonly enjoy?", + "en_question": "What cafe beverage do people from your country most commonly enjoy?", + "annotations": [ + { + "answers": [ + "tea", + "teas" + ], + "en_answers": [ + "tea", + "teas" + ], + "count": 3 + }, + { + "answers": [ + "coffees", + "coffee" + ], + "en_answers": [ + "coffees", + "coffee" + ], + "count": 2 + }, + { + "answers": [ + "hot chocolates" + ], + "en_answers": [ + "hot chocolates" + ], + "count": 1 + }, + { + "answers": [ + "white coffee" + ], + "en_answers": [ + "white coffee" + ], + "count": 1 + }, + { + "answers": [ + "latte" + ], + "en_answers": [ + "latte" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-04": { + "question": "What is the preferred hangover cure food for people from the UK?", + "en_question": "What is the preferred hangover cure food for people from your country?", + "annotations": [ + { + "answers": [ + "bacon sandwich" + ], + "en_answers": [ + "bacon sandwich" + ], + "count": 2 + }, + { + "answers": [ + "mcdonalds muffin" + ], + "en_answers": [ + "mcdonalds muffin" + ], + "count": 1 + }, + { + "answers": [ + "hair of the dog" + ], + "en_answers": [ + "hair of the dog" + ], + "count": 1 + }, + { + "answers": [ + "alkerseltzer" + ], + "en_answers": [ + "alkerseltzer" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-05": { + "question": "What is the typical delivery food in the UK?", + "en_question": "What is the typical delivery food in your country?", + "annotations": [ + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 3 + }, + { + "answers": [ + "chinese" + ], + "en_answers": [ + "chinese" + ], + "count": 1 + }, + { + "answers": [ + "indian" + ], + "en_answers": [ + "indian" + ], + "count": 1 + }, + { + "answers": [ + "fish and chips", + "fish & chips" + ], + "en_answers": [ + "fish and chips", + "fish & chips" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-07": { + "question": "What type of meat is consumed most by people from the UK?", + "en_question": "What type of meat is consumed most by people from your country?", + "annotations": [ + { + "answers": [ + "chicken" + ], + "en_answers": [ + "chicken" + ], + "count": 4 + }, + { + "answers": [ + "beef" + ], + "en_answers": [ + "beef" + ], + "count": 3 + }, + { + "answers": [ + "lamb" + ], + "en_answers": [ + "lamb" + ], + "count": 1 + }, + { + "answers": [ + "pork" + ], + "en_answers": [ + "pork" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-08": { + "question": "What fruit do people from the UK often eat in the autumn season?", + "en_question": "What fruit do people from your country often eat in the autumn season?", + "annotations": [ + { + "answers": [ + "apples", + "apple" + ], + "en_answers": [ + "apples", + "apple" + ], + "count": 5 + }, + { + "answers": [ + "banana" + ], + "en_answers": [ + "banana" + ], + "count": 2 + }, + { + "answers": [ + "orange" + ], + "en_answers": [ + "orange" + ], + "count": 1 + }, + { + "answers": [ + "tangerines" + ], + "en_answers": [ + "tangerines" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-09": { + "question": "What side dish is the most commonly served on a dining table in the UK?", + "en_question": "What side dish is the most commonly served on a dining table in your country?", + "annotations": [ + { + "answers": [ + "fish and chips", + "fish & chips" + ], + "en_answers": [ + "fish and chips", + "fish & chips" + ], + "count": 1 + }, + { + "answers": [ + "potatoes", + "potatos" + ], + "en_answers": [ + "potatoes", + "potatos" + ], + "count": 1 + }, + { + "answers": [ + "sprouts" + ], + "en_answers": [ + "sprouts" + ], + "count": 1 + }, + { + "answers": [ + "peas" + ], + "en_answers": [ + "peas" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Na-ko-11": { + "question": "What do people from the UK eat while watching a football game?", + "en_question": "What do people from your country eat while watching a soccer game?", + "annotations": [ + { + "answers": [ + "burgers" + ], + "en_answers": [ + "burgers" + ], + "count": 1 + }, + { + "answers": [ + "chips" + ], + "en_answers": [ + "chips" + ], + "count": 1 + }, + { + "answers": [ + "pie" + ], + "en_answers": [ + "pie" + ], + "count": 1 + }, + { + "answers": [ + "hot dogs", + "hotdogs" + ], + "en_answers": [ + "hot dogs", + "hotdogs" + ], + "count": 1 + }, + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + }, + { + "answers": [ + "crisps" + ], + "en_answers": [ + "crisps" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Na-ko-15": { + "question": "What is the representative nourishing food in the UK?", + "en_question": "What is the representative nourishing food in your country?", + "annotations": [ + { + "answers": [ + "roast", + "sunday roast" + ], + "en_answers": [ + "roast", + "sunday roast" + ], + "count": 2 + }, + { + "answers": [ + "stew" + ], + "en_answers": [ + "stew" + ], + "count": 1 + }, + { + "answers": [ + "vegetables" + ], + "en_answers": [ + "vegetables" + ], + "count": 1 + }, + { + "answers": [ + "soup" + ], + "en_answers": [ + "soup" + ], + "count": 1 + }, + { + "answers": [ + "salad" + ], + "en_answers": [ + "salad" + ], + "count": 1 + }, + { + "answers": [ + "apple" + ], + "en_answers": [ + "apple" + ], + "count": 1 + }, + { + "answers": [ + "fruit" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-16": { + "question": "Who is the most famous football player in the UK?", + "en_question": "Who is the most famous soccer player in your country?", + "annotations": [ + { + "answers": [ + "david beckham" + ], + "en_answers": [ + "david beckham" + ], + "count": 2 + }, + { + "answers": [ + "marcus rashford" + ], + "en_answers": [ + "marcus rashford" + ], + "count": 1 + }, + { + "answers": [ + "bobby moore" + ], + "en_answers": [ + "bobby moore" + ], + "count": 1 + }, + { + "answers": [ + "wayne rooney" + ], + "en_answers": [ + "wayne rooney" + ], + "count": 1 + }, + { + "answers": [ + "harry kane" + ], + "en_answers": [ + "harry kane" + ], + "count": 1 + }, + { + "answers": [ + "bukayo saka" + ], + "en_answers": [ + "bukayo saka" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-17": { + "question": "What sports do male students enjoy during lunch time at school in the UK?", + "en_question": "What sports do male students enjoy during lunch time at school in your country?", + "annotations": [ + { + "answers": [ + "football", + "soccer" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "rugby" + ], + "en_answers": [ + "rugby" + ], + "count": 1 + }, + { + "answers": [ + "tag" + ], + "en_answers": [ + "tag" + ], + "count": 1 + }, + { + "answers": [ + "basketball" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-18": { + "question": "What is the most common sport girls participate in during physical education classes in the UK?", + "en_question": "What is the most common sport girls participate in during physical education classes in your country?", + "annotations": [ + { + "answers": [ + "netball" + ], + "en_answers": [ + "netball" + ], + "count": 3 + }, + { + "answers": [ + "swimming" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + }, + { + "answers": [ + "football", + "soccer" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "rugby" + ], + "en_answers": [ + "rugby" + ], + "count": 1 + }, + { + "answers": [ + "athletics" + ], + "en_answers": [ + "athletics" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-19": { + "question": "Who is the most popular volleyball player in the UK?", + "en_question": "Who is the most popular volleyball player in your country?", + "annotations": [], + "idks": { + "idk": 5, + "not-applicable": 3, + "no-answer": 1 + } + }, + "Na-ko-20": { + "question": "What sports event do people from the UK passionately support the most in international competitions?", + "en_question": "What sports event do people from your country passionately support the most in international competitions?", + "annotations": [ + { + "answers": [ + "football", + "soccer" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "cricket" + ], + "en_answers": [ + "cricket" + ], + "count": 1 + }, + { + "answers": [ + "swimming" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + }, + { + "answers": [ + "world cup football", + "fifa club world club", + "world club", + "fifa" + ], + "en_answers": [ + "world cup football", + "fifa club world club", + "world club", + "fifa" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-22": { + "question": "Which country is considered the biggest rival in football matches for the UK?", + "en_question": "Which country is considered the biggest rival in soccer matches for your country?", + "annotations": [ + { + "answers": [ + "spain" + ], + "en_answers": [ + "spain" + ], + "count": 2 + }, + { + "answers": [ + "france" + ], + "en_answers": [ + "france" + ], + "count": 2 + }, + { + "answers": [ + "germany" + ], + "en_answers": [ + "germany" + ], + "count": 1 + }, + { + "answers": [ + "usa", + "america", + "north america", + "u.s.", + "united states", + "us" + ], + "en_answers": [ + "usa", + "america", + "north america", + "u.s.", + "united states", + "us" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-23": { + "question": "What type of sports academies do children attend the most in the UK?", + "en_question": "What type of sports academies do children attend the most in your country?", + "annotations": [ + { + "answers": [ + "football", + "football academies", + "soccer", + "elite uk football academy" + ], + "en_answers": [ + "football", + "football academies", + "soccer", + "elite uk football academy" + ], + "count": 4 + }, + { + "answers": [ + "tennis" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + }, + { + "answers": [ + "gymnastics" + ], + "en_answers": [ + "gymnastics" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-24": { + "question": "What is the most commonly eaten food in sports stadiums while watching games in the UK?", + "en_question": "What is the most commonly eaten food in sports stadiums while watching games in your country?", + "annotations": [ + { + "answers": [ + "pie", + "pork pie and peas", + "pies", + "for football it would be pies" + ], + "en_answers": [ + "pie", + "pork pie and peas", + "pies", + "for football it would be pies" + ], + "count": 4 + }, + { + "answers": [ + "chips" + ], + "en_answers": [ + "chips" + ], + "count": 1 + }, + { + "answers": [ + "pork", + "pork pie and peas" + ], + "en_answers": [ + "pork", + "pork pie and peas" + ], + "count": 1 + }, + { + "answers": [ + "peas", + "pork pie and peas" + ], + "en_answers": [ + "peas", + "pork pie and peas" + ], + "count": 1 + }, + { + "answers": [ + "burger" + ], + "en_answers": [ + "burger" + ], + "count": 1 + }, + { + "answers": [ + "hot dog" + ], + "en_answers": [ + "hot dog" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-25": { + "question": "What are the typical sports played in the UK's school sports day?", + "en_question": "What are the typical sports played in your country's school sports day?", + "annotations": [ + { + "answers": [ + "running" + ], + "en_answers": [ + "running" + ], + "count": 2 + }, + { + "answers": [ + "sack race", + "sack race and obstacle race." + ], + "en_answers": [ + "sack race", + "sack race and obstacle race." + ], + "count": 2 + }, + { + "answers": [ + "football", + "soccer" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "netball" + ], + "en_answers": [ + "netball" + ], + "count": 1 + }, + { + "answers": [ + "hockey" + ], + "en_answers": [ + "hockey" + ], + "count": 1 + }, + { + "answers": [ + "jumping" + ], + "en_answers": [ + "jumping" + ], + "count": 1 + }, + { + "answers": [ + "egg and spoon race", + "in my childhood one popular game was the egg and spoon race" + ], + "en_answers": [ + "egg and spoon race", + "in my childhood one popular game was the egg and spoon race" + ], + "count": 1 + }, + { + "answers": [ + "obstacle race", + "sack race and obstacle race." + ], + "en_answers": [ + "obstacle race", + "sack race and obstacle race." + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-26": { + "question": "What are the popular sports among the middle-aged population in the UK?", + "en_question": "What are the popular sports among the middle-aged population in your country?", + "annotations": [ + { + "answers": [ + "football", + "soccer" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "rugby" + ], + "en_answers": [ + "rugby" + ], + "count": 2 + }, + { + "answers": [ + "lawn bowling", + "bowls" + ], + "en_answers": [ + "lawn bowling", + "bowls" + ], + "count": 2 + }, + { + "answers": [ + "walking" + ], + "en_answers": [ + "walking" + ], + "count": 1 + }, + { + "answers": [ + "hiking" + ], + "en_answers": [ + "hiking" + ], + "count": 1 + }, + { + "answers": [ + "darts" + ], + "en_answers": [ + "darts" + ], + "count": 1 + }, + { + "answers": [ + "cricket" + ], + "en_answers": [ + "cricket" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-28": { + "question": "Who is the most popular winter sports player in the UK?", + "en_question": "Who is the most popular winter sports player in your country?", + "annotations": [ + { + "answers": [ + "eddie the eagle", + "michael david edwards" + ], + "en_answers": [ + "eddie the eagle", + "michael david edwards" + ], + "count": 1 + }, + { + "answers": [ + "eve muirhead" + ], + "en_answers": [ + "eve muirhead" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "not-applicable": 1, + "no-answer": 1 + } + }, + "Na-ko-29": { + "question": "Who is the most famous swimmer in the UK?", + "en_question": "Who is the most famous swimmer in your country?", + "annotations": [ + { + "answers": [ + "duncan goodhew" + ], + "en_answers": [ + "duncan goodhew" + ], + "count": 2 + }, + { + "answers": [ + "sharron davies", + "sharon davis" + ], + "en_answers": [ + "sharron davies", + "sharon davis" + ], + "count": 2 + }, + { + "answers": [ + "tom daley", + "tom daily" + ], + "en_answers": [ + "tom daley", + "tom daily" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-30": { + "question": "What is the most popular e-sports game in the UK?", + "en_question": "What is the most popular e-sports game in your country?", + "annotations": [ + { + "answers": [ + "fortnite", + "fortnight" + ], + "en_answers": [ + "fortnite", + "fortnight" + ], + "count": 1 + }, + { + "answers": [ + "fifa", + "fifa the football game" + ], + "en_answers": [ + "fifa", + "fifa the football game" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Na-ko-33": { + "question": "What symbolic food do people from the UK eat on (Lunar) New Year?", + "en_question": "What symbolic food do people from your country eat on (Lunar) New Year?", + "annotations": [ + { + "answers": [ + "chinese cuisine" + ], + "en_answers": [ + "chinese cuisine" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 2, + "not-applicable": 2 + } + }, + "Na-ko-37": { + "question": "What is the most popular domestic vacation spot for people from the UK?", + "en_question": "What is the most popular domestic vacation spot for people from your country?", + "annotations": [ + { + "answers": [ + "cornwall" + ], + "en_answers": [ + "cornwall" + ], + "count": 1 + }, + { + "answers": [ + "blackpool" + ], + "en_answers": [ + "blackpool" + ], + "count": 1 + }, + { + "answers": [ + "butlins" + ], + "en_answers": [ + "butlins" + ], + "count": 1 + }, + { + "answers": [ + "the lake district" + ], + "en_answers": [ + "the lake district" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-38": { + "question": "What is the most common wedding gift between bride and groom in the UK?", + "en_question": "What is the most common wedding gift between bride and groom in your country?", + "annotations": [ + { + "answers": [ + "wedding ring", + "ring", + "a wedding ring" + ], + "en_answers": [ + "wedding ring", + "ring", + "a wedding ring" + ], + "count": 3 + }, + { + "answers": [ + "cash" + ], + "en_answers": [ + "cash" + ], + "count": 1 + }, + { + "answers": [ + "watch" + ], + "en_answers": [ + "watch" + ], + "count": 1 + }, + { + "answers": [ + "necklace" + ], + "en_answers": [ + "necklace" + ], + "count": 1 + }, + { + "answers": [ + "cufflinks" + ], + "en_answers": [ + "cufflinks" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Na-ko-39": { + "question": "What is typically given as a congratulatory gesture when attending a friend's wedding in the UK?", + "en_question": "What is typically given as a congratulatory gesture when attending a friend's wedding in your country?", + "annotations": [ + { + "answers": [ + "gifts", + "wedding gift", + "gift from the wedding list" + ], + "en_answers": [ + "gifts", + "wedding gift", + "gift from the wedding list" + ], + "count": 3 + }, + { + "answers": [ + "money" + ], + "en_answers": [ + "money" + ], + "count": 1 + }, + { + "answers": [ + "cards" + ], + "en_answers": [ + "cards" + ], + "count": 1 + }, + { + "answers": [ + "homeware" + ], + "en_answers": [ + "homeware" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-40": { + "question": "How long (in days) does a funeral typically last in the UK? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "How long (in days) does a funeral typically last in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 3 + }, + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-41": { + "question": "What should you prepare as a condolence offering when attending a funeral in the UK?", + "en_question": "What should you prepare as a condolence offering when attending a funeral in your country?", + "annotations": [ + { + "answers": [ + "flowers" + ], + "en_answers": [ + "flowers" + ], + "count": 5 + }, + { + "answers": [ + "condolence card" + ], + "en_answers": [ + "condolence card" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-42": { + "question": "What type of food is commonly provided at funeral parlors in the UK?", + "en_question": "What type of food is commonly provided at funeral parlors in your country?", + "annotations": [ + { + "answers": [ + "sandwiches" + ], + "en_answers": [ + "sandwiches" + ], + "count": 2 + }, + { + "answers": [ + "chicken" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "steak pie" + ], + "en_answers": [ + "steak pie" + ], + "count": 1 + }, + { + "answers": [ + "cakes" + ], + "en_answers": [ + "cakes" + ], + "count": 1 + }, + { + "answers": [ + "pastries" + ], + "en_answers": [ + "pastries" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Na-ko-43": { + "question": "What do people do in the UK in the morning of the (Lunar) New Year?", + "en_question": "What do people do in your country in the morning of the (Lunar) New Year?", + "annotations": [ + { + "answers": [ + "sleep" + ], + "en_answers": [ + "sleep" + ], + "count": 1 + }, + { + "answers": [ + "enjoy a quiet morning" + ], + "en_answers": [ + "enjoy a quiet morning" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 1 + } + }, + "Na-ko-44": { + "question": "When is the day with the UK's most severe nationwide traffic congestion?", + "en_question": "When is the day with your country's most severe nationwide traffic congestion?", + "annotations": [ + { + "answers": [ + "monday" + ], + "en_answers": [ + "monday" + ], + "count": 1 + }, + { + "answers": [ + "easter" + ], + "en_answers": [ + "easter" + ], + "count": 1 + }, + { + "answers": [ + "christmas eve" + ], + "en_answers": [ + "christmas eve" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Na-ko-45": { + "question": "What is the most popular honeymoon destination in the UK?", + "en_question": "What is the most popular honeymoon destination in your country?", + "annotations": [ + { + "answers": [ + "london" + ], + "en_answers": [ + "london" + ], + "count": 3 + }, + { + "answers": [ + "scotland" + ], + "en_answers": [ + "scotland" + ], + "count": 1 + }, + { + "answers": [ + "the cotswolds" + ], + "en_answers": [ + "the cotswolds" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-05": { + "question": "What is the most important national holiday in the UK?", + "en_question": "What is the most important national holiday in your country?", + "annotations": [ + { + "answers": [ + "christmas day", + "xmas day", + "christmas", + "25th december", + "25th december" + ], + "en_answers": [ + "christmas day", + "xmas day", + "christmas", + "25th december", + "25th december" + ], + "count": 4 + }, + { + "answers": [ + "remembrance day" + ], + "en_answers": [ + "remembrance day" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-06": { + "question": "What do people from the UK eat in Ramadan?", + "en_question": "What do people from your country eat in Ramadan?", + "annotations": [ + { + "answers": [ + "sweets" + ], + "en_answers": [ + "sweets" + ], + "count": 1 + }, + { + "answers": [ + "nuts" + ], + "en_answers": [ + "nuts" + ], + "count": 1 + }, + { + "answers": [ + "crisps" + ], + "en_answers": [ + "crisps" + ], + "count": 1 + }, + { + "answers": [ + "kebabs" + ], + "en_answers": [ + "kebabs" + ], + "count": 1 + }, + { + "answers": [ + "briyani" + ], + "en_answers": [ + "briyani" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 2, + "no-answer": 1 + } + }, + "Ne-ar-09": { + "question": "What do people from the UK eat in Eid ul Fitr?", + "en_question": "What do people from your country eat in Eid ul Fitr?", + "annotations": [ + { + "answers": [ + "rice" + ], + "en_answers": [ + "rice" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "I don't know": 1, + "idk": 1, + "no-answer": 0 + } + }, + "Ne-ar-10": { + "question": "What do people from the UK eat in Eid ul Adha?", + "en_question": "What do people from your country eat in Eid ul Adha?", + "annotations": [ + { + "answers": [ + "arabic food" + ], + "en_answers": [ + "arabic food" + ], + "count": 1 + }, + { + "answers": [ + "dates" + ], + "en_answers": [ + "dates" + ], + "count": 1 + }, + { + "answers": [ + "lamb" + ], + "en_answers": [ + "lamb" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 1 + } + }, + "Ne-ar-11": { + "question": "Where do people from the UK go to celebrate New Year's Day?", + "en_question": "Where do people from your country go to celebrate New Year's Day?", + "annotations": [ + { + "answers": [ + "relatives' houses", + "relatives houses", + "a relative's house", + "family houses", + "friends or family houses", + "family's house", + "relative's house" + ], + "en_answers": [ + "relatives' houses", + "relatives houses", + "a relative's house", + "family houses", + "friends or family houses", + "family's house", + "relative's house" + ], + "count": 3 + }, + { + "answers": [ + "a friend's house", + "friends' houses", + "friends or family houses" + ], + "en_answers": [ + "a friend's house", + "friends' houses", + "friends or family houses" + ], + "count": 2 + }, + { + "answers": [ + "nightclub" + ], + "en_answers": [ + "nightclub" + ], + "count": 1 + }, + { + "answers": [ + "pub" + ], + "en_answers": [ + "pub" + ], + "count": 1 + }, + { + "answers": [ + "public event" + ], + "en_answers": [ + "public event" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-14": { + "question": "Where do a family gather for Eid festivities in the UK?", + "en_question": "Where do a family gather for Eid festivities in your country?", + "annotations": [ + { + "answers": [ + "home" + ], + "en_answers": [ + "home" + ], + "count": 3 + }, + { + "answers": [ + "local festivals" + ], + "en_answers": [ + "local festivals" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 2, + "no-answer": 0 + } + }, + "Ne-ar-16": { + "question": "When is the weekend in the UK (e.g. Monday, Tuesday)?", + "en_question": "When is the weekend in your country (e.g. Monday, Tuesday)?", + "annotations": [ + { + "answers": [ + "saturday", + "saturday and sunday", + "saturday sunday" + ], + "en_answers": [ + "saturday", + "saturday and sunday", + "saturday sunday" + ], + "count": 5 + }, + { + "answers": [ + "sunday", + "saturday and sunday", + "saturday sunday" + ], + "en_answers": [ + "sunday", + "saturday and sunday", + "saturday sunday" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-17": { + "question": "At what time do most people start work in the UK? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "en_question": "At what time do most people start work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "09:00", + "0900" + ], + "en_answers": [ + "09:00", + "0900" + ], + "count": 5 + }, + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-18": { + "question": "At what time do most people finish work in the UK? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "en_question": "At what time do most people finish work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "17:00", + "05:00" + ], + "en_answers": [ + "17:00", + "05:00" + ], + "count": 5 + }, + { + "answers": [ + "17:30" + ], + "en_answers": [ + "17:30" + ], + "count": 1 + }, + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-20": { + "question": "What is considered to be a secure job in the UK?", + "en_question": "What is considered to be a secure job in your country?", + "annotations": [ + { + "answers": [ + "teacher", + "teaching" + ], + "en_answers": [ + "teacher", + "teaching" + ], + "count": 3 + }, + { + "answers": [ + "it technician" + ], + "en_answers": [ + "it technician" + ], + "count": 1 + }, + { + "answers": [ + "office work" + ], + "en_answers": [ + "office work" + ], + "count": 1 + }, + { + "answers": [ + "lawyer" + ], + "en_answers": [ + "lawyer" + ], + "count": 1 + }, + { + "answers": [ + "police" + ], + "en_answers": [ + "police" + ], + "count": 1 + }, + { + "answers": [ + "civil servant" + ], + "en_answers": [ + "civil servant" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ne-ar-24": { + "question": "Which city is the primary commercial hub in the UK?", + "en_question": "Which city is the primary commercial hub in your country?", + "annotations": [ + { + "answers": [ + "london" + ], + "en_answers": [ + "london" + ], + "count": 5 + }, + { + "answers": [ + "birmingham" + ], + "en_answers": [ + "birmingham" + ], + "count": 1 + }, + { + "answers": [ + "manchester" + ], + "en_answers": [ + "manchester" + ], + "count": 1 + }, + { + "answers": [ + "leeds" + ], + "en_answers": [ + "leeds" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-25": { + "question": "What is the industry that pays the best in the UK?", + "en_question": "What is the industry that pays the best in your country?", + "annotations": [ + { + "answers": [ + "banking" + ], + "en_answers": [ + "banking" + ], + "count": 1 + }, + { + "answers": [ + "accounting" + ], + "en_answers": [ + "accounting" + ], + "count": 1 + }, + { + "answers": [ + "law" + ], + "en_answers": [ + "law" + ], + "count": 1 + }, + { + "answers": [ + "medicine" + ], + "en_answers": [ + "medicine" + ], + "count": 1 + }, + { + "answers": [ + "football", + "soccer" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "builder" + ], + "en_answers": [ + "builder" + ], + "count": 1 + }, + { + "answers": [ + "finance" + ], + "en_answers": [ + "finance" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-26": { + "question": "What is the most famous public corporation in the UK?", + "en_question": "What is the most famous public corporation in your country?", + "annotations": [ + { + "answers": [ + "bbc" + ], + "en_answers": [ + "bbc" + ], + "count": 4 + }, + { + "answers": [ + "hsbc" + ], + "en_answers": [ + "hsbc" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-31": { + "question": "What is the most famous dish in the UK?", + "en_question": "What is the most famous dish in your country?", + "annotations": [ + { + "answers": [ + "fish and chips", + "fish & chips" + ], + "en_answers": [ + "fish and chips", + "fish & chips" + ], + "count": 4 + }, + { + "answers": [ + "curry" + ], + "en_answers": [ + "curry" + ], + "count": 2 + }, + { + "answers": [ + "bangers and mash" + ], + "en_answers": [ + "bangers and mash" + ], + "count": 1 + }, + { + "answers": [ + "steak pies" + ], + "en_answers": [ + "steak pies" + ], + "count": 1 + }, + { + "answers": [ + "roast beef" + ], + "en_answers": [ + "roast beef" + ], + "count": 1 + }, + { + "answers": [ + "yorkshire pudding" + ], + "en_answers": [ + "yorkshire pudding" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-32": { + "question": "What do people usually have for breakfast in the UK?", + "en_question": "What do people usually have for breakfast in your country?", + "annotations": [ + { + "answers": [ + "cereal" + ], + "en_answers": [ + "cereal" + ], + "count": 4 + }, + { + "answers": [ + "toast" + ], + "en_answers": [ + "toast" + ], + "count": 3 + }, + { + "answers": [ + "eggs", + "bacon and eggs" + ], + "en_answers": [ + "eggs", + "bacon and eggs" + ], + "count": 2 + }, + { + "answers": [ + "coffee" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + }, + { + "answers": [ + "bacon", + "bacon and eggs" + ], + "en_answers": [ + "bacon", + "bacon and eggs" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-33": { + "question": "When do people usually have lunch in the UK? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "en_question": "When do people usually have lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "12:00", + "12 pm" + ], + "en_answers": [ + "12:00", + "12 pm" + ], + "count": 4 + }, + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-34": { + "question": "What is typically indispensable in meals in the UK?", + "en_question": "What is typically indispensable in meals in your country?", + "annotations": [ + { + "answers": [ + "salt" + ], + "en_answers": [ + "salt" + ], + "count": 1 + }, + { + "answers": [ + "ketchup" + ], + "en_answers": [ + "ketchup" + ], + "count": 1 + }, + { + "answers": [ + "chips" + ], + "en_answers": [ + "chips" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-36": { + "question": "What is a typical festive meal in the UK?", + "en_question": "What is a typical festive meal in your country?", + "annotations": [ + { + "answers": [ + "turkey and the trimmings", + "turkey and the trimmings at christmas", + "christmas dinner" + ], + "en_answers": [ + "turkey and the trimmings", + "turkey and the trimmings at christmas", + "christmas dinner" + ], + "count": 2 + }, + { + "answers": [ + "roast meat" + ], + "en_answers": [ + "roast meat" + ], + "count": 1 + }, + { + "answers": [ + "roast beef", + "roast beef on sunday" + ], + "en_answers": [ + "roast beef", + "roast beef on sunday" + ], + "count": 1 + }, + { + "answers": [ + "turkey" + ], + "en_answers": [ + "turkey" + ], + "count": 1 + }, + { + "answers": [ + "roast chicken" + ], + "en_answers": [ + "roast chicken" + ], + "count": 1 + }, + { + "answers": [ + "roast lamb" + ], + "en_answers": [ + "roast lamb" + ], + "count": 1 + }, + { + "answers": [ + "burn supper" + ], + "en_answers": [ + "burn supper" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-37": { + "question": "Which fruit do people usually offer tourists/visitors from abroad in the UK?", + "en_question": "Which fruit do people usually offer tourists/visitors from abroad in your country?", + "annotations": [ + { + "answers": [ + "strawberries", + "in the summer strawberries other months apples." + ], + "en_answers": [ + "strawberries", + "in the summer strawberries other months apples." + ], + "count": 2 + }, + { + "answers": [ + "apples", + "in the summer strawberries other months apples." + ], + "en_answers": [ + "apples", + "in the summer strawberries other months apples." + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 2, + "idk": 1, + "no-answer": 0 + } + }, + "Ne-ar-38": { + "question": "Which food do people usually offer as charity in the UK?", + "en_question": "Which food do people usually offer as charity in your country?", + "annotations": [ + { + "answers": [ + "canned food", + "tins", + "canned goods", + "tinned food", + "tinned cans" + ], + "en_answers": [ + "canned food", + "tins", + "canned goods", + "tinned food", + "tinned cans" + ], + "count": 4 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ne-ar-39": { + "question": "What is the cheapest fast food in the UK?", + "en_question": "What is the cheapest fast food in your country?", + "annotations": [ + { + "answers": [ + "mcdonalds", + "mcdonald's", + "macdonalds", + "mcdonald's" + ], + "en_answers": [ + "mcdonalds", + "mcdonald's", + "macdonalds", + "mcdonald's" + ], + "count": 3 + }, + { + "answers": [ + "fish and chips", + "fish & chips" + ], + "en_answers": [ + "fish and chips", + "fish & chips" + ], + "count": 1 + }, + { + "answers": [ + "greggs" + ], + "en_answers": [ + "greggs" + ], + "count": 1 + }, + { + "answers": [ + "sausage rolls" + ], + "en_answers": [ + "sausage rolls" + ], + "count": 1 + }, + { + "answers": [ + "burgers and fries" + ], + "en_answers": [ + "burgers and fries" + ], + "count": 1 + }, + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-43": { + "question": "What do people usually have with tea in the UK?", + "en_question": "What do people usually have with tea in your country?", + "annotations": [ + { + "answers": [ + "biscuits", + "biscuit" + ], + "en_answers": [ + "biscuits", + "biscuit" + ], + "count": 4 + }, + { + "answers": [ + "rich tea biscuit" + ], + "en_answers": [ + "rich tea biscuit" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-44": { + "question": "What do people have with coffee in the UK?", + "en_question": "What do people have with coffee in your country?", + "annotations": [ + { + "answers": [ + "biscuits" + ], + "en_answers": [ + "biscuits" + ], + "count": 3 + }, + { + "answers": [ + "milk" + ], + "en_answers": [ + "milk" + ], + "count": 3 + }, + { + "answers": [ + "scone" + ], + "en_answers": [ + "scone" + ], + "count": 1 + }, + { + "answers": [ + "cake" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "chocolate" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + }, + { + "answers": [ + "sugar" + ], + "en_answers": [ + "sugar" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-02": { + "question": "What is the most popular traditional food in the UK?", + "en_question": "What is the most popular traditional food in your country?", + "annotations": [ + { + "answers": [ + "fish and chips", + "fish & chips" + ], + "en_answers": [ + "fish and chips", + "fish & chips" + ], + "count": 3 + }, + { + "answers": [ + "pie", + "pies" + ], + "en_answers": [ + "pie", + "pies" + ], + "count": 2 + }, + { + "answers": [ + "sunday dinner", + "sunday roast" + ], + "en_answers": [ + "sunday dinner", + "sunday roast" + ], + "count": 2 + }, + { + "answers": [ + "roast dinner" + ], + "en_answers": [ + "roast dinner" + ], + "count": 1 + }, + { + "answers": [ + "roast potatoes", + "roast potato's" + ], + "en_answers": [ + "roast potatoes", + "roast potato's" + ], + "count": 1 + }, + { + "answers": [ + "mashed potato", + "mash potato" + ], + "en_answers": [ + "mashed potato", + "mash potato" + ], + "count": 1 + }, + { + "answers": [ + "chinese takeaway" + ], + "en_answers": [ + "chinese takeaway" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-04": { + "question": "What is the most popular dipping sauce in the UK?", + "en_question": "What is the most popular dipping sauce in your country?", + "annotations": [ + { + "answers": [ + "tomato ketchup", + "tomato", + "ketchup" + ], + "en_answers": [ + "tomato ketchup", + "tomato", + "ketchup" + ], + "count": 3 + }, + { + "answers": [ + "houmous" + ], + "en_answers": [ + "houmous" + ], + "count": 1 + }, + { + "answers": [ + "mayonaisse" + ], + "en_answers": [ + "mayonaisse" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-am-08": { + "question": "What food is most often consumed during Christian fasting in the UK?", + "en_question": "What food is most often consumed during Christian fasting in your country?", + "annotations": [ + { + "answers": [ + "turkey" + ], + "en_answers": [ + "turkey" + ], + "count": 1 + }, + { + "answers": [ + "bread" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "eggs" + ], + "en_answers": [ + "eggs" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 1 + } + }, + "New-am-15": { + "question": "What food is usually prepared when mothers give birth in the UK?", + "en_question": "What food is usually prepared when mothers give birth in your country?", + "annotations": [ + { + "answers": [ + "sandwiches" + ], + "en_answers": [ + "sandwiches" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 3, + "idk": 2, + "not-applicable": 0 + } + }, + "New-am-27": { + "question": "Who is the most popular female sportperson in the UK?", + "en_question": "Who is the most popular female sportperson in your country?", + "annotations": [ + { + "answers": [ + "leah williamson" + ], + "en_answers": [ + "leah williamson" + ], + "count": 1 + }, + { + "answers": [ + "rebecca adlington" + ], + "en_answers": [ + "rebecca adlington" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 3, + "idk": 2, + "not-applicable": 0 + } + }, + "New-am-34": { + "question": "Where do most primary school students prepare for their exams in the UK?", + "en_question": "Where do most elementary school students prepare for their exams in your country?", + "annotations": [ + { + "answers": [ + "school", + "primary school" + ], + "en_answers": [ + "school", + "primary school" + ], + "count": 3 + }, + { + "answers": [ + "at home", + "home" + ], + "en_answers": [ + "at home", + "home" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-am-41": { + "question": "In the UK, at which grade level do students take their first national-level examination?", + "en_question": "In your country, at which grade level do students take their first national-level examination?", + "annotations": [ + { + "answers": [ + "year 11", + "11" + ], + "en_answers": [ + "year 11", + "11" + ], + "count": 2 + }, + { + "answers": [ + "year 6", + "6" + ], + "en_answers": [ + "year 6", + "6" + ], + "count": 1 + } + ], + "idks": { + "We didn't have grades when I was at school - it was age - therefore 16": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-53": { + "question": "Which region in the UK is widely known for its coffee/tea industry?", + "en_question": "Which region in your country is widely known for its coffee/tea industry?", + "annotations": [ + { + "answers": [ + "yorkshire" + ], + "en_answers": [ + "yorkshire" + ], + "count": 3 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "New-am-54": { + "question": "Which region in the UK is widely known for its livestock industry?", + "en_question": "Which region in your country is widely known for its livestock industry?", + "annotations": [ + { + "answers": [ + "wales" + ], + "en_answers": [ + "wales" + ], + "count": 2 + }, + { + "answers": [ + "herefordshire" + ], + "en_answers": [ + "herefordshire" + ], + "count": 1 + }, + { + "answers": [ + "scotland" + ], + "en_answers": [ + "scotland" + ], + "count": 1 + }, + { + "answers": [ + "west country" + ], + "en_answers": [ + "west country" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-am-59": { + "question": "What is the main occupation of people living in deserts in the UK?", + "en_question": "What is the main occupation of people living in deserts in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "New-am-60": { + "question": "Which animal is typically used for transportation in the UK?", + "en_question": "Which animal is typically used for transportation in your country?", + "annotations": [ + { + "answers": [ + "horse" + ], + "en_answers": [ + "horse" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 2, + "We don't use animals for transportation, bar police horses.": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-am-72": { + "question": "What is the most popular comic book for children to read in the UK?", + "en_question": "What is the most popular comic book for children to read in your country?", + "annotations": [ + { + "answers": [ + "beano", + "beano?" + ], + "en_answers": [ + "beano", + "beano?" + ], + "count": 4 + }, + { + "answers": [ + "dandy" + ], + "en_answers": [ + "dandy" + ], + "count": 1 + }, + { + "answers": [ + "marvel" + ], + "en_answers": [ + "marvel" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-am-73": { + "question": "What is the most popular YouTube channel for children in the UK?", + "en_question": "What is the most popular YouTube channel for children in your country?", + "annotations": [ + { + "answers": [ + "cocomelon", + "coco melon" + ], + "en_answers": [ + "cocomelon", + "coco melon" + ], + "count": 3 + } + ], + "idks": { + "idk": 5, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-am-74": { + "question": "What is the most popular talk show in the UK?", + "en_question": "What is the most popular talk show in your country?", + "annotations": [ + { + "answers": [ + "the graham norton show", + "graham norton show", + "graham norton" + ], + "en_answers": [ + "the graham norton show", + "graham norton show", + "graham norton" + ], + "count": 3 + }, + { + "answers": [ + "jeremy kyle", + "the jeremy kyle show" + ], + "en_answers": [ + "jeremy kyle", + "the jeremy kyle show" + ], + "count": 1 + }, + { + "answers": [ + "piers morgan", + "piers morgan live" + ], + "en_answers": [ + "piers morgan", + "piers morgan live" + ], + "count": 1 + }, + { + "answers": [ + "loose women" + ], + "en_answers": [ + "loose women" + ], + "count": 1 + }, + { + "answers": [ + "alan carr: chatty man", + "chatty man" + ], + "en_answers": [ + "alan carr: chatty man", + "chatty man" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-am-77": { + "question": "What is the most famous religious holiday in the UK?", + "en_question": "What is the most famous religious holiday in your country?", + "annotations": [ + { + "answers": [ + "christmas" + ], + "en_answers": [ + "christmas" + ], + "count": 5 + }, + { + "answers": [ + "easter" + ], + "en_answers": [ + "easter" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-81": { + "question": "What is the busiest month for weddings in the UK? (Provide Arabic numerals (e.g., 1) only.)", + "en_question": "What is the busiest month for weddings in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "6", + "june" + ], + "en_answers": [ + "6", + "june" + ], + "count": 3 + }, + { + "answers": [ + "8", + "august" + ], + "en_answers": [ + "8", + "august" + ], + "count": 2 + }, + { + "answers": [ + "7", + "july" + ], + "en_answers": [ + "7", + "july" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-am-83": { + "question": "What is the most popular traditional musical instrument in the UK?", + "en_question": "What is the most popular traditional musical instrument in your country?", + "annotations": [ + { + "answers": [ + "guitar" + ], + "en_answers": [ + "guitar" + ], + "count": 2 + }, + { + "answers": [ + "bagpipes", + "bagpipe" + ], + "en_answers": [ + "bagpipes", + "bagpipe" + ], + "count": 2 + }, + { + "answers": [ + "fiddle" + ], + "en_answers": [ + "fiddle" + ], + "count": 1 + }, + { + "answers": [ + "ukelele" + ], + "en_answers": [ + "ukelele" + ], + "count": 1 + }, + { + "answers": [ + "piano" + ], + "en_answers": [ + "piano" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-as-01": { + "question": "What is the main agricultural product produced in the UK?", + "en_question": "What is the main agricultural product produced in your country?", + "annotations": [ + { + "answers": [ + "potatoes", + "potato" + ], + "en_answers": [ + "potatoes", + "potato" + ], + "count": 3 + }, + { + "answers": [ + "wheat" + ], + "en_answers": [ + "wheat" + ], + "count": 2 + }, + { + "answers": [ + "beef" + ], + "en_answers": [ + "beef" + ], + "count": 1 + }, + { + "answers": [ + "lamb" + ], + "en_answers": [ + "lamb" + ], + "count": 1 + }, + { + "answers": [ + "leek" + ], + "en_answers": [ + "leek" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-02": { + "question": "What is the most popular wheat-based food item in the UK?", + "en_question": "What is the most popular wheat-based food item in your country?", + "annotations": [ + { + "answers": [ + "bread" + ], + "en_answers": [ + "bread" + ], + "count": 3 + }, + { + "answers": [ + "pasta" + ], + "en_answers": [ + "pasta" + ], + "count": 1 + }, + { + "answers": [ + "cake" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "white bread" + ], + "en_answers": [ + "white bread" + ], + "count": 1 + }, + { + "answers": [ + "cereal" + ], + "en_answers": [ + "cereal" + ], + "count": 1 + }, + { + "answers": [ + "biscuits" + ], + "en_answers": [ + "biscuits" + ], + "count": 1 + }, + { + "answers": [ + "toast" + ], + "en_answers": [ + "toast" + ], + "count": 1 + }, + { + "answers": [ + "crumpets" + ], + "en_answers": [ + "crumpets" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-05": { + "question": "What is the most typical drink offered to guests when they visit households in the UK?", + "en_question": "What is the most typical drink offered to guests when they visit households in your country?", + "annotations": [ + { + "answers": [ + "tea" + ], + "en_answers": [ + "tea" + ], + "count": 4 + }, + { + "answers": [ + "coffee" + ], + "en_answers": [ + "coffee" + ], + "count": 3 + }, + { + "answers": [ + "wine" + ], + "en_answers": [ + "wine" + ], + "count": 1 + }, + { + "answers": [ + "beer" + ], + "en_answers": [ + "beer" + ], + "count": 1 + }, + { + "answers": [ + "squash" + ], + "en_answers": [ + "squash" + ], + "count": 1 + }, + { + "answers": [ + "prosecco" + ], + "en_answers": [ + "prosecco" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-07": { + "question": "What is the most popular dish cooked with fish in the UK?", + "en_question": "What is the most popular dish cooked with fish in your country?", + "annotations": [ + { + "answers": [ + "fish and chips", + "fish & chips" + ], + "en_answers": [ + "fish and chips", + "fish & chips" + ], + "count": 3 + }, + { + "answers": [ + "chips" + ], + "en_answers": [ + "chips" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-14": { + "question": "What food do people from the UK like to eat during rainy weather?", + "en_question": "What food do people from your country like to eat during rainy weather?", + "annotations": [ + { + "answers": [ + "soups", + "soup" + ], + "en_answers": [ + "soups", + "soup" + ], + "count": 2 + }, + { + "answers": [ + "fish and chips", + "fish & chips" + ], + "en_answers": [ + "fish and chips", + "fish & chips" + ], + "count": 1 + }, + { + "answers": [ + "stews" + ], + "en_answers": [ + "stews" + ], + "count": 1 + }, + { + "answers": [ + "curry" + ], + "en_answers": [ + "curry" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-as-15": { + "question": "What drink is commonly consumed in the UK when the weather is hot?", + "en_question": "What drink is commonly consumed in your country when the weather is hot?", + "annotations": [ + { + "answers": [ + "beer" + ], + "en_answers": [ + "beer" + ], + "count": 3 + }, + { + "answers": [ + "water" + ], + "en_answers": [ + "water" + ], + "count": 2 + }, + { + "answers": [ + "squash" + ], + "en_answers": [ + "squash" + ], + "count": 1 + }, + { + "answers": [ + "lager" + ], + "en_answers": [ + "lager" + ], + "count": 1 + }, + { + "answers": [ + "coke" + ], + "en_answers": [ + "coke" + ], + "count": 1 + }, + { + "answers": [ + "fizzy pop" + ], + "en_answers": [ + "fizzy pop" + ], + "count": 1 + }, + { + "answers": [ + "lemonade" + ], + "en_answers": [ + "lemonade" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-20": { + "question": "What is the most popular indoor sport in the UK?", + "en_question": "What is the most popular indoor sport in your country?", + "annotations": [ + { + "answers": [ + "swimming" + ], + "en_answers": [ + "swimming" + ], + "count": 2 + }, + { + "answers": [ + "netball" + ], + "en_answers": [ + "netball" + ], + "count": 2 + }, + { + "answers": [ + "badminton" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "crossfit" + ], + "en_answers": [ + "crossfit" + ], + "count": 1 + }, + { + "answers": [ + "gymnastics" + ], + "en_answers": [ + "gymnastics" + ], + "count": 1 + }, + { + "answers": [ + "tennis" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-29": { + "question": "What sport do men in the UK like to watch?", + "en_question": "What sport do men in your country like to watch?", + "annotations": [ + { + "answers": [ + "football", + "soccer" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "cricket" + ], + "en_answers": [ + "cricket" + ], + "count": 3 + }, + { + "answers": [ + "rugby" + ], + "en_answers": [ + "rugby" + ], + "count": 2 + }, + { + "answers": [ + "f1", + "formula 1" + ], + "en_answers": [ + "f1", + "formula 1" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-30": { + "question": "What sport do women in the UK like to watch?", + "en_question": "What sport do women in your country like to watch?", + "annotations": [ + { + "answers": [ + "tennis" + ], + "en_answers": [ + "tennis" + ], + "count": 2 + }, + { + "answers": [ + "football", + "soccer" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "athletics" + ], + "en_answers": [ + "athletics" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-as-58": { + "question": "What is the most popular beverage that people from the UK like to drink in their workplace?", + "en_question": "What is the most popular beverage that people from your country like to drink in their workplace?", + "annotations": [ + { + "answers": [ + "tea" + ], + "en_answers": [ + "tea" + ], + "count": 5 + }, + { + "answers": [ + "coffee" + ], + "en_answers": [ + "coffee" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-64": { + "question": "On which holiday do all family members tend to reunite in the UK?", + "en_question": "On which holiday do all family members tend to reunite in your country?", + "annotations": [ + { + "answers": [ + "christmas" + ], + "en_answers": [ + "christmas" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-76": { + "question": "What traditional games do families play during traditional holidays in the UK?", + "en_question": "What traditional games do families play during traditional holidays in your country?", + "annotations": [ + { + "answers": [ + "monopoly" + ], + "en_answers": [ + "monopoly" + ], + "count": 4 + }, + { + "answers": [ + "charades" + ], + "en_answers": [ + "charades" + ], + "count": 2 + }, + { + "answers": [ + "chess" + ], + "en_answers": [ + "chess" + ], + "count": 1 + }, + { + "answers": [ + "beach cricket" + ], + "en_answers": [ + "beach cricket" + ], + "count": 1 + }, + { + "answers": [ + "football", + "soccer" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "card games" + ], + "en_answers": [ + "card games" + ], + "count": 1 + }, + { + "answers": [ + "scrabble" + ], + "en_answers": [ + "scrabble" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-80": { + "question": "What type of clothing do people from the UK wear during traditional festivals?", + "en_question": "What type of clothing do people from your country wear during traditional festivals?", + "annotations": [ + { + "answers": [ + "casual wear" + ], + "en_answers": [ + "casual wear" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 3, + "idk": 2, + "not-applicable": 1 + } + }, + "New-as-89": { + "question": "What traditional festival accessories do people from the UK wear?", + "en_question": "What traditional festival accessories do people from your country wear?", + "annotations": [ + { + "answers": [ + "party hats" + ], + "en_answers": [ + "party hats" + ], + "count": 1 + }, + { + "answers": [ + "glowsticks", + "glow sticks" + ], + "en_answers": [ + "glowsticks", + "glow sticks" + ], + "count": 1 + }, + { + "answers": [ + "glitter make up" + ], + "en_answers": [ + "glitter make up" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 2, + "not-applicable": 1 + } + }, + "New-az-05": { + "question": "What is the most famous region for alcohol production in the UK?", + "en_question": "What is the most famous region for alcohol production in your country?", + "annotations": [ + { + "answers": [ + "scotland" + ], + "en_answers": [ + "scotland" + ], + "count": 2 + }, + { + "answers": [ + "yorkshire" + ], + "en_answers": [ + "yorkshire" + ], + "count": 1 + }, + { + "answers": [ + "birmingham" + ], + "en_answers": [ + "birmingham" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-az-11": { + "question": "What fruit do people from the UK often eat in the summer season?", + "en_question": "What fruit do people from your country often eat in the summer season?", + "annotations": [ + { + "answers": [ + "strawberries", + "stawberries" + ], + "en_answers": [ + "strawberries", + "stawberries" + ], + "count": 4 + }, + { + "answers": [ + "apples" + ], + "en_answers": [ + "apples" + ], + "count": 1 + }, + { + "answers": [ + "oranges" + ], + "en_answers": [ + "oranges" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-12": { + "question": "Which region in the UK is known for its seafood?", + "en_question": "Which region in your country is known for its seafood?", + "annotations": [ + { + "answers": [ + "cornwall" + ], + "en_answers": [ + "cornwall" + ], + "count": 3 + }, + { + "answers": [ + "whitby" + ], + "en_answers": [ + "whitby" + ], + "count": 1 + }, + { + "answers": [ + "scarborough" + ], + "en_answers": [ + "scarborough" + ], + "count": 1 + }, + { + "answers": [ + "scotland" + ], + "en_answers": [ + "scotland" + ], + "count": 1 + }, + { + "answers": [ + "the english riviera" + ], + "en_answers": [ + "the english riviera" + ], + "count": 1 + }, + { + "answers": [ + "dorset" + ], + "en_answers": [ + "dorset" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-21": { + "question": "Which region in the UK is the most popular skiing destination?", + "en_question": "Which region in your country is the most popular skiing destination?", + "annotations": [ + { + "answers": [ + "scotland" + ], + "en_answers": [ + "scotland" + ], + "count": 3 + } + ], + "idks": { + "idk": 2, + "not-applicable": 2, + "no-answer": 0 + } + }, + "New-az-26": { + "question": "Who is the most popular martial arts player in the UK?", + "en_question": "Who is the most popular martial arts player in your country?", + "annotations": [], + "idks": { + "idk": 5, + "not-applicable": 3, + "no-answer": 1 + } + }, + "New-az-27": { + "question": "Which sport has been one of the fastest-growing in the UK over the last decade?", + "en_question": "Which sport has been one of the fastest-growing in your country over the last decade?", + "annotations": [ + { + "answers": [ + "basketball" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "swimming" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + }, + { + "answers": [ + "cycling" + ], + "en_answers": [ + "cycling" + ], + "count": 1 + }, + { + "answers": [ + "rowing" + ], + "en_answers": [ + "rowing" + ], + "count": 1 + }, + { + "answers": [ + "running" + ], + "en_answers": [ + "running" + ], + "count": 1 + }, + { + "answers": [ + "women's football", + "womens football", + "women's soccer" + ], + "en_answers": [ + "women's football", + "womens football", + "women's soccer" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-39": { + "question": "Which country is the most popular destination for students from the UK studying abroad?", + "en_question": "Which country is the most popular destination for students from your country studying abroad?", + "annotations": [ + { + "answers": [ + "usa", + "america", + "north america", + "u.s.", + "united states", + "us" + ], + "en_answers": [ + "usa", + "america", + "north america", + "u.s.", + "united states", + "us" + ], + "count": 2 + }, + { + "answers": [ + "australia" + ], + "en_answers": [ + "australia" + ], + "count": 1 + }, + { + "answers": [ + "canada" + ], + "en_answers": [ + "canada" + ], + "count": 1 + }, + { + "answers": [ + "spain" + ], + "en_answers": [ + "spain" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-az-49": { + "question": "How many people work in a typical family in the UK? (Provide Arabic numerals (e.g., 1) only.)", + "en_question": "How many people work in a typical family in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-az-60": { + "question": "In the UK, who takes care of kids when both parents are working?", + "en_question": "In your country, who takes care of kids when both parents are working?", + "annotations": [ + { + "answers": [ + "grandparents" + ], + "en_answers": [ + "grandparents" + ], + "count": 3 + }, + { + "answers": [ + "nursery", + "nursery/childcare", + "childcare", + "nursery school" + ], + "en_answers": [ + "nursery", + "nursery/childcare", + "childcare", + "nursery school" + ], + "count": 3 + }, + { + "answers": [ + "nannies", + "childminder", + "nanny", + "babysitter" + ], + "en_answers": [ + "nannies", + "childminder", + "nanny", + "babysitter" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-69": { + "question": "What is the preferred alcoholic beverage for men from the UK?", + "en_question": "What is the preferred alcoholic beverage for men from your country?", + "annotations": [ + { + "answers": [ + "beer" + ], + "en_answers": [ + "beer" + ], + "count": 4 + }, + { + "answers": [ + "lager", + "larger" + ], + "en_answers": [ + "lager", + "larger" + ], + "count": 3 + }, + { + "answers": [ + "wine" + ], + "en_answers": [ + "wine" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-70": { + "question": "What is the preferred alcoholic beverage for women from the UK?", + "en_question": "What is the preferred alcoholic beverage for women from your country?", + "annotations": [ + { + "answers": [ + "wine" + ], + "en_answers": [ + "wine" + ], + "count": 3 + }, + { + "answers": [ + "prosecco" + ], + "en_answers": [ + "prosecco" + ], + "count": 2 + }, + { + "answers": [ + "vodka" + ], + "en_answers": [ + "vodka" + ], + "count": 1 + }, + { + "answers": [ + "gin and tonic" + ], + "en_answers": [ + "gin and tonic" + ], + "count": 1 + }, + { + "answers": [ + "cider" + ], + "en_answers": [ + "cider" + ], + "count": 1 + }, + { + "answers": [ + "white wine" + ], + "en_answers": [ + "white wine" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-73": { + "question": "How many people on average typically attend a wedding in the UK? (Provide Arabic numerals (e.g., 1) only.)", + "en_question": "How many people on average typically attend a wedding in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "100" + ], + "en_answers": [ + "100" + ], + "count": 2 + }, + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 1 + }, + { + "answers": [ + "50" + ], + "en_answers": [ + "50" + ], + "count": 1 + }, + { + "answers": [ + "150" + ], + "en_answers": [ + "150" + ], + "count": 1 + }, + { + "answers": [ + "200" + ], + "en_answers": [ + "200" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-01": { + "question": "What kind of meat do people usually eat when they have barbecue in the UK?", + "en_question": "What kind of meat do people usually eat when they have barbecue in your country?", + "annotations": [ + { + "answers": [ + "chicken" + ], + "en_answers": [ + "chicken" + ], + "count": 3 + }, + { + "answers": [ + "beef" + ], + "en_answers": [ + "beef" + ], + "count": 3 + }, + { + "answers": [ + "burgers" + ], + "en_answers": [ + "burgers" + ], + "count": 1 + }, + { + "answers": [ + "sausages" + ], + "en_answers": [ + "sausages" + ], + "count": 1 + }, + { + "answers": [ + "lamb" + ], + "en_answers": [ + "lamb" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-02": { + "question": "When do people usually have breakfast in the UK? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "en_question": "When do people usually have breakfast in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:00", + "0800" + ], + "en_answers": [ + "08:00", + "0800" + ], + "count": 4 + }, + { + "answers": [ + "07:30" + ], + "en_answers": [ + "07:30" + ], + "count": 2 + }, + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-04": { + "question": "What kinds of food do people usually eat for late-night snacks in the UK?", + "en_question": "What kinds of food do people usually eat for late-night snacks in your country?", + "annotations": [ + { + "answers": [ + "chips" + ], + "en_answers": [ + "chips" + ], + "count": 2 + }, + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 2 + }, + { + "answers": [ + "kebabs" + ], + "en_answers": [ + "kebabs" + ], + "count": 1 + }, + { + "answers": [ + "chicken" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "biscuits" + ], + "en_answers": [ + "biscuits" + ], + "count": 1 + }, + { + "answers": [ + "crisps" + ], + "en_answers": [ + "crisps" + ], + "count": 1 + }, + { + "answers": [ + "chocolate" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + }, + { + "answers": [ + "toast" + ], + "en_answers": [ + "toast" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-05": { + "question": "What is the most famous spicy dish in the UK?", + "en_question": "What is the most famous spicy dish in your country?", + "annotations": [ + { + "answers": [ + "curry" + ], + "en_answers": [ + "curry" + ], + "count": 4 + }, + { + "answers": [ + "chicken tikka masala", + "chicken madras", + "chicken korma", + "chicken curry", + "chicken jalfrezi", + "tikka masala", + "madras", + "korma", + "jalfrezi" + ], + "en_answers": [ + "chicken tikka masala", + "chicken madras", + "chicken korma", + "chicken curry", + "chicken jalfrezi", + "tikka masala", + "madras", + "korma", + "jalfrezi" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-07": { + "question": "What food items do people typically pair with hard liquor in the UK?", + "en_question": "What food items do people typically pair with hard liquor in your country?", + "annotations": [ + { + "answers": [ + "chips" + ], + "en_answers": [ + "chips" + ], + "count": 1 + }, + { + "answers": [ + "chinese" + ], + "en_answers": [ + "chinese" + ], + "count": 1 + }, + { + "answers": [ + "kebab" + ], + "en_answers": [ + "kebab" + ], + "count": 1 + }, + { + "answers": [ + "crisps" + ], + "en_answers": [ + "crisps" + ], + "count": 1 + }, + { + "answers": [ + "cheese" + ], + "en_answers": [ + "cheese" + ], + "count": 1 + }, + { + "answers": [ + "pork scratchings" + ], + "en_answers": [ + "pork scratchings" + ], + "count": 1 + }, + { + "answers": [ + "curry" + ], + "en_answers": [ + "curry" + ], + "count": 1 + }, + { + "answers": [ + "nuts" + ], + "en_answers": [ + "nuts" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-08": { + "question": "What essential seasoning is indispensable in cooking in the UK?", + "en_question": "What seasoning is indispensable in cooking in your country?", + "annotations": [ + { + "answers": [ + "salt", + "salt and pepper" + ], + "en_answers": [ + "salt", + "salt and pepper" + ], + "count": 5 + }, + { + "answers": [ + "pepper", + "salt and pepper" + ], + "en_answers": [ + "pepper", + "salt and pepper" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-09": { + "question": "What food do people typically consume when the weather is cold in the UK?", + "en_question": "What food do people typically consume when the weather is cold in your country?", + "annotations": [ + { + "answers": [ + "stews", + "stew" + ], + "en_answers": [ + "stews", + "stew" + ], + "count": 2 + }, + { + "answers": [ + "hot sausage roll" + ], + "en_answers": [ + "hot sausage roll" + ], + "count": 1 + }, + { + "answers": [ + "roast dinner" + ], + "en_answers": [ + "roast dinner" + ], + "count": 1 + }, + { + "answers": [ + "soup" + ], + "en_answers": [ + "soup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-13": { + "question": "What is the most famous alcohol brand in the UK?", + "en_question": "What is the most famous alcohol brand in your country?", + "annotations": [ + { + "answers": [ + "stella" + ], + "en_answers": [ + "stella" + ], + "count": 2 + }, + { + "answers": [ + "smirnoff" + ], + "en_answers": [ + "smirnoff" + ], + "count": 1 + }, + { + "answers": [ + "bulldog beer", + "brutish bull dog beer" + ], + "en_answers": [ + "bulldog beer", + "brutish bull dog beer" + ], + "count": 1 + }, + { + "answers": [ + "bell's", + "bells" + ], + "en_answers": [ + "bell's", + "bells" + ], + "count": 1 + }, + { + "answers": [ + "guinness", + "guiness" + ], + "en_answers": [ + "guinness", + "guiness" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-14": { + "question": "What foods do people usually eat when they are sick in the UK?", + "en_question": "What foods do people usually eat when they are sick in your country?", + "annotations": [ + { + "answers": [ + "soup" + ], + "en_answers": [ + "soup" + ], + "count": 3 + }, + { + "answers": [ + "fruit" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + }, + { + "answers": [ + "tomato soup" + ], + "en_answers": [ + "tomato soup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-15": { + "question": "What prepared/ready-to-eat food do people typically buy at supermarkets in the UK?", + "en_question": "What prepared/ready-to-eat food do people typically buy at supermarkets in your country?", + "annotations": [ + { + "answers": [ + "curry" + ], + "en_answers": [ + "curry" + ], + "count": 2 + }, + { + "answers": [ + "sandwiches" + ], + "en_answers": [ + "sandwiches" + ], + "count": 1 + }, + { + "answers": [ + "sausage rolls" + ], + "en_answers": [ + "sausage rolls" + ], + "count": 1 + }, + { + "answers": [ + "salads" + ], + "en_answers": [ + "salads" + ], + "count": 1 + }, + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + }, + { + "answers": [ + "lasagne" + ], + "en_answers": [ + "lasagne" + ], + "count": 1 + }, + { + "answers": [ + "cooked meat", + "cooked/cold meat" + ], + "en_answers": [ + "cooked meat", + "cooked/cold meat" + ], + "count": 1 + }, + { + "answers": [ + "cold meat", + "cooked/cold meat" + ], + "en_answers": [ + "cold meat", + "cooked/cold meat" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-16": { + "question": "What is the most famous sports-related movie in the UK?", + "en_question": "What is the most famous sports-related movie in your country?", + "annotations": [ + { + "answers": [ + "bend it like beckham" + ], + "en_answers": [ + "bend it like beckham" + ], + "count": 3 + }, + { + "answers": [ + "ferrari" + ], + "en_answers": [ + "ferrari" + ], + "count": 1 + }, + { + "answers": [ + "chariots of fire" + ], + "en_answers": [ + "chariots of fire" + ], + "count": 1 + }, + { + "answers": [ + "the brothers grimsby", + "brothers of grimsby" + ], + "en_answers": [ + "the brothers grimsby", + "brothers of grimsby" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-17": { + "question": "What extreme sport do people generally wish to try the most in the UK?", + "en_question": "What extreme sport do people generally wish to try the most in your country?", + "annotations": [ + { + "answers": [ + "rock climbing" + ], + "en_answers": [ + "rock climbing" + ], + "count": 1 + }, + { + "answers": [ + "mountaineering" + ], + "en_answers": [ + "mountaineering" + ], + "count": 1 + }, + { + "answers": [ + "skydiving" + ], + "en_answers": [ + "skydiving" + ], + "count": 1 + }, + { + "answers": [ + "skiing" + ], + "en_answers": [ + "skiing" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-18": { + "question": "Which track and field event is the most popular to watch during competitions in the UK?", + "en_question": "Which track and field event is the most popular to watch during competitions in your country?", + "annotations": [ + { + "answers": [ + "100m", + "100 metres sprint", + "100m sprint", + "100 metres", + "100-meter dash" + ], + "en_answers": [ + "100m", + "100 metres sprint", + "100m sprint", + "100 metres", + "100-meter dash" + ], + "count": 3 + }, + { + "answers": [ + "10000 metres", + "10", + "10,000 metres" + ], + "en_answers": [ + "10000 metres", + "10", + "10,000 metres" + ], + "count": 1 + }, + { + "answers": [ + "marathon" + ], + "en_answers": [ + "marathon" + ], + "count": 1 + }, + { + "answers": [ + "400m" + ], + "en_answers": [ + "400m" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-ch-19": { + "question": "Which gymnastics event is the most popular to watch during competitions in the UK?", + "en_question": "Which gymnastics event is the most popular to watch during competitions in your country?", + "annotations": [ + { + "answers": [ + "floor" + ], + "en_answers": [ + "floor" + ], + "count": 1 + }, + { + "answers": [ + "british gymnastics" + ], + "en_answers": [ + "british gymnastics" + ], + "count": 1 + }, + { + "answers": [ + "parallel bars" + ], + "en_answers": [ + "parallel bars" + ], + "count": 1 + }, + { + "answers": [ + "beam" + ], + "en_answers": [ + "beam" + ], + "count": 1 + } + ], + "idks": { + "idk": 5, + "no-answer": 2, + "not-applicable": 0 + } + }, + "New-ch-23": { + "question": "Who is the most famous table tennis player in the UK?", + "en_question": "Who is the most famous table tennis player in your country?", + "annotations": [ + { + "answers": [ + "desmond douglas" + ], + "en_answers": [ + "desmond douglas" + ], + "count": 2 + } + ], + "idks": { + "idk": 7, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ch-26": { + "question": "In the Winter Olympics, which event is the most popular to watch in the UK?", + "en_question": "In the Winter Olympics, which event is the most popular to watch in your country?", + "annotations": [ + { + "answers": [ + "curling" + ], + "en_answers": [ + "curling" + ], + "count": 2 + }, + { + "answers": [ + "downhill jump", + "down hill jump", + "ski jump" + ], + "en_answers": [ + "downhill jump", + "down hill jump", + "ski jump" + ], + "count": 2 + }, + { + "answers": [ + "downhill skiing" + ], + "en_answers": [ + "downhill skiing" + ], + "count": 1 + }, + { + "answers": [ + "skiing" + ], + "en_answers": [ + "skiing" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-27": { + "question": "Who is the most famous boxer in the UK?", + "en_question": "Who is the most famous boxer in your country?", + "annotations": [ + { + "answers": [ + "tyson fury" + ], + "en_answers": [ + "tyson fury" + ], + "count": 2 + }, + { + "answers": [ + "henry cooper" + ], + "en_answers": [ + "henry cooper" + ], + "count": 1 + }, + { + "answers": [ + "frank bruno" + ], + "en_answers": [ + "frank bruno" + ], + "count": 1 + }, + { + "answers": [ + "lennox lewis" + ], + "en_answers": [ + "lennox lewis" + ], + "count": 1 + }, + { + "answers": [ + "joe calzaghe" + ], + "en_answers": [ + "joe calzaghe" + ], + "count": 1 + }, + { + "answers": [ + "muhammad ali" + ], + "en_answers": [ + "muhammad ali" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-30": { + "question": "Who is the most famous track and field athlete in the UK?", + "en_question": "Who is the most famous track and field athlete in your country?", + "annotations": [ + { + "answers": [ + "mo farah", + "mo fara" + ], + "en_answers": [ + "mo farah", + "mo fara" + ], + "count": 3 + }, + { + "answers": [ + "zharnel hughes", + "zarnel huges" + ], + "en_answers": [ + "zharnel hughes", + "zarnel huges" + ], + "count": 1 + }, + { + "answers": [ + "daley thompson" + ], + "en_answers": [ + "daley thompson" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-31": { + "question": "What job do parents most hope their children will pursue in the UK?", + "en_question": "What job do parents most hope their children will pursue in your country?", + "annotations": [ + { + "answers": [ + "clerical", + "clerical/office work", + "office work" + ], + "en_answers": [ + "clerical", + "clerical/office work", + "office work" + ], + "count": 1 + }, + { + "answers": [ + "trade", + "a trade" + ], + "en_answers": [ + "trade", + "a trade" + ], + "count": 1 + }, + { + "answers": [ + "doctor" + ], + "en_answers": [ + "doctor" + ], + "count": 1 + }, + { + "answers": [ + "lawyer" + ], + "en_answers": [ + "lawyer" + ], + "count": 1 + }, + { + "answers": [ + "accountant" + ], + "en_answers": [ + "accountant" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 3, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-32": { + "question": "What office software do people typically use in the workplace in the UK?", + "en_question": "What office software do people typically use in the workplace in your country?", + "annotations": [ + { + "answers": [ + "microsoft office" + ], + "en_answers": [ + "microsoft office" + ], + "count": 3 + }, + { + "answers": [ + "google workspace", + "google suite" + ], + "en_answers": [ + "google workspace", + "google suite" + ], + "count": 1 + }, + { + "answers": [ + "word" + ], + "en_answers": [ + "word" + ], + "count": 1 + }, + { + "answers": [ + "excel" + ], + "en_answers": [ + "excel" + ], + "count": 1 + }, + { + "answers": [ + "outlook" + ], + "en_answers": [ + "outlook" + ], + "count": 1 + }, + { + "answers": [ + "oracle" + ], + "en_answers": [ + "oracle" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-38": { + "question": "Which cities or regions are known for their import and export activities in the UK?", + "en_question": "Which cities or regions are known for their import and export activities in your country?", + "annotations": [ + { + "answers": [ + "london" + ], + "en_answers": [ + "london" + ], + "count": 4 + }, + { + "answers": [ + "scotland" + ], + "en_answers": [ + "scotland" + ], + "count": 1 + }, + { + "answers": [ + "wales" + ], + "en_answers": [ + "wales" + ], + "count": 1 + }, + { + "answers": [ + "kent" + ], + "en_answers": [ + "kent" + ], + "count": 1 + }, + { + "answers": [ + "portsmouth" + ], + "en_answers": [ + "portsmouth" + ], + "count": 1 + }, + { + "answers": [ + "liverpool" + ], + "en_answers": [ + "liverpool" + ], + "count": 1 + }, + { + "answers": [ + "bristol" + ], + "en_answers": [ + "bristol" + ], + "count": 1 + }, + { + "answers": [ + "dover" + ], + "en_answers": [ + "dover" + ], + "count": 1 + }, + { + "answers": [ + "north east" + ], + "en_answers": [ + "north east" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-39": { + "question": "What platform is commonly used in the e-commerce industry in the UK?", + "en_question": "What platform is commonly used in the e-commerce industry in your country?", + "annotations": [ + { + "answers": [ + "amazon" + ], + "en_answers": [ + "amazon" + ], + "count": 2 + }, + { + "answers": [ + "ebay" + ], + "en_answers": [ + "ebay" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ch-44": { + "question": "How long is the typical probation period for new employees before signing a formal contract in the UK? (e.g., 1 month).", + "en_question": "How long is the typical probation period for new employees before signing a formal contract in your country? (e.g., 1 month).", + "annotations": [ + { + "answers": [ + "6 weeks", + "4-6 weeks", + "6", + "six weeks" + ], + "en_answers": [ + "6 weeks", + "4-6 weeks", + "6", + "six weeks" + ], + "count": 2 + }, + { + "answers": [ + "4 weeks", + "4-6 weeks", + "four weeks" + ], + "en_answers": [ + "4 weeks", + "4-6 weeks", + "four weeks" + ], + "count": 1 + }, + { + "answers": [ + "2 months", + "two months" + ], + "en_answers": [ + "2 months", + "two months" + ], + "count": 1 + }, + { + "answers": [ + "2 weeks", + "two weeks" + ], + "en_answers": [ + "2 weeks", + "two weeks" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-45": { + "question": "Which industries do young people typically choose to start businesses in the UK?", + "en_question": "Which industries do young people typically choose to start businesses in your country?", + "annotations": [ + { + "answers": [ + "social media", + "social media or fashion" + ], + "en_answers": [ + "social media", + "social media or fashion" + ], + "count": 2 + }, + { + "answers": [ + "creative" + ], + "en_answers": [ + "creative" + ], + "count": 1 + }, + { + "answers": [ + "media" + ], + "en_answers": [ + "media" + ], + "count": 1 + }, + { + "answers": [ + "catering" + ], + "en_answers": [ + "catering" + ], + "count": 1 + }, + { + "answers": [ + "dropshipping" + ], + "en_answers": [ + "dropshipping" + ], + "count": 1 + }, + { + "answers": [ + "beauty" + ], + "en_answers": [ + "beauty" + ], + "count": 1 + }, + { + "answers": [ + "fashion", + "social media or fashion" + ], + "en_answers": [ + "fashion", + "social media or fashion" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-49": { + "question": "What is the most common way for family members to communicate remotely in the UK?", + "en_question": "What is the most common way for family members to communicate remotely in your country?", + "annotations": [ + { + "answers": [ + "text", + "text message", + "text messaging", + "sms" + ], + "en_answers": [ + "text", + "text message", + "text messaging", + "sms" + ], + "count": 2 + }, + { + "answers": [ + "instant messaging" + ], + "en_answers": [ + "instant messaging" + ], + "count": 1 + }, + { + "answers": [ + "whatsapp" + ], + "en_answers": [ + "whatsapp" + ], + "count": 1 + }, + { + "answers": [ + "facebook" + ], + "en_answers": [ + "facebook" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-51": { + "question": "What form of accommodation is typically booked for family trips in the UK?", + "en_question": "What form of accommodation is typically booked for family trips in your country?", + "annotations": [ + { + "answers": [ + "hotel", + "hotels" + ], + "en_answers": [ + "hotel", + "hotels" + ], + "count": 4 + }, + { + "answers": [ + "caravan" + ], + "en_answers": [ + "caravan" + ], + "count": 2 + }, + { + "answers": [ + "airbnb", + "airbnb", + "air bnb" + ], + "en_answers": [ + "airbnb", + "airbnb", + "air bnb" + ], + "count": 2 + }, + { + "answers": [ + "b&bs", + "b&b's", + "bed and breakfast", + "bed & breakfast" + ], + "en_answers": [ + "b&bs", + "b&b's", + "bed and breakfast", + "bed & breakfast" + ], + "count": 1 + }, + { + "answers": [ + "camping" + ], + "en_answers": [ + "camping" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-54": { + "question": "Which fruit is usually prepared the most for family dinners in the UK?", + "en_question": "Which fruit is usually prepared the most for family dinners in your country?", + "annotations": [ + { + "answers": [ + "apple crumble", + "apple (crumble)" + ], + "en_answers": [ + "apple crumble", + "apple (crumble)" + ], + "count": 1 + }, + { + "answers": [ + "raspberry trifle", + "raspberry (trifle)" + ], + "en_answers": [ + "raspberry trifle", + "raspberry (trifle)" + ], + "count": 1 + }, + { + "answers": [ + "tomato" + ], + "en_answers": [ + "tomato" + ], + "count": 1 + }, + { + "answers": [ + "strawberries" + ], + "en_answers": [ + "strawberries" + ], + "count": 1 + }, + { + "answers": [ + "bananas" + ], + "en_answers": [ + "bananas" + ], + "count": 1 + }, + { + "answers": [ + "apples" + ], + "en_answers": [ + "apples" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 0 + } + }, + "New-ch-64": { + "question": "How many hours of classes do university students typically have per week in the UK? (Provide Arabic numerals (e.g., 1) only.)", + "en_question": "How many hours of classes do university students typically have per week in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 1 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ch-66": { + "question": "What is the typical tuition fee per semester for public secondary schools in the UK? (Provide Arabic numerals (e.g., 1) only.)", + "en_question": "What is the typical tuition fee per semester for public high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "10000" + ], + "en_answers": [ + "10000" + ], + "count": 2 + }, + { + "answers": [ + "8000" + ], + "en_answers": [ + "8000" + ], + "count": 1 + }, + { + "answers": [ + "12000" + ], + "en_answers": [ + "12000" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-70": { + "question": "What compulsory courses do university students have in common in the UK?", + "en_question": "What compulsory courses do university students have in common in your country?", + "annotations": [], + "idks": { + "idk": 2, + "not-applicable": 2, + "no-answer": 1 + } + }, + "New-ch-71": { + "question": "What is the average class size in secondary schools in the UK? (Provide Arabic numerals (e.g., 1) only.)", + "en_question": "What is the average class size in high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 5 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + }, + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-72": { + "question": "Which major is considered most conducive to employment in the UK?", + "en_question": "Which major is considered most conducive to employment in your country?", + "annotations": [ + { + "answers": [ + "engineering" + ], + "en_answers": [ + "engineering" + ], + "count": 2 + }, + { + "answers": [ + "medical degree", + "medicine" + ], + "en_answers": [ + "medical degree", + "medicine" + ], + "count": 2 + }, + { + "answers": [ + "computing degree" + ], + "en_answers": [ + "computing degree" + ], + "count": 1 + }, + { + "answers": [ + "law" + ], + "en_answers": [ + "law" + ], + "count": 1 + }, + { + "answers": [ + "english" + ], + "en_answers": [ + "english" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-73": { + "question": "What type of clubs are most popular among university students in the UK?", + "en_question": "What type of clubs are most popular among university students in your country?", + "annotations": [ + { + "answers": [ + "sports", + "sport clubs" + ], + "en_answers": [ + "sports", + "sport clubs" + ], + "count": 2 + }, + { + "answers": [ + "golf" + ], + "en_answers": [ + "golf" + ], + "count": 1 + }, + { + "answers": [ + "nightclubs" + ], + "en_answers": [ + "nightclubs" + ], + "count": 1 + }, + { + "answers": [ + "technology clubs" + ], + "en_answers": [ + "technology clubs" + ], + "count": 1 + }, + { + "answers": [ + "music clubs" + ], + "en_answers": [ + "music clubs" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-74": { + "question": "What types of accommodation do university students in the UK typically live in?", + "en_question": "What types of accommodation do university students in your country typically live in?", + "annotations": [ + { + "answers": [ + "flats" + ], + "en_answers": [ + "flats" + ], + "count": 2 + }, + { + "answers": [ + "halls", + "in halls of residence" + ], + "en_answers": [ + "halls", + "in halls of residence" + ], + "count": 2 + }, + { + "answers": [ + "in shared digs", + "shared house", + "shared accommodation", + "shared accommodation" + ], + "en_answers": [ + "in shared digs", + "shared house", + "shared accommodation", + "shared accommodation" + ], + "count": 2 + }, + { + "answers": [ + "in parental home" + ], + "en_answers": [ + "in parental home" + ], + "count": 1 + }, + { + "answers": [ + "dorms", + "shared flat", + "halls", + "student halls", + "halls of residence" + ], + "en_answers": [ + "dorms", + "shared flat", + "halls", + "student halls", + "halls of residence" + ], + "count": 1 + }, + { + "answers": [ + "student accommodation" + ], + "en_answers": [ + "student accommodation" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-75": { + "question": "How long is each class period for secondary school students in the UK (minutes)? (Provide Arabic numerals (e.g., 1) only.)", + "en_question": "How long is each class period for secondary school students in your country (minutes)? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 4 + }, + { + "answers": [ + "50" + ], + "en_answers": [ + "50" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-78": { + "question": "What leisure activities do retired women typically like in the UK?", + "en_question": "What leisure activities do retired women typically like in your country?", + "annotations": [ + { + "answers": [ + "swimming" + ], + "en_answers": [ + "swimming" + ], + "count": 2 + }, + { + "answers": [ + "walking", + "walking (rambling)", + "rambling" + ], + "en_answers": [ + "walking", + "walking (rambling)", + "rambling" + ], + "count": 2 + }, + { + "answers": [ + "cooking" + ], + "en_answers": [ + "cooking" + ], + "count": 1 + }, + { + "answers": [ + "fitness classes" + ], + "en_answers": [ + "fitness classes" + ], + "count": 1 + }, + { + "answers": [ + "pub lunches" + ], + "en_answers": [ + "pub lunches" + ], + "count": 1 + }, + { + "answers": [ + "wrestling" + ], + "en_answers": [ + "wrestling" + ], + "count": 1 + }, + { + "answers": [ + "football", + "soccer" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "marathons" + ], + "en_answers": [ + "marathons" + ], + "count": 1 + }, + { + "answers": [ + "going out for lunch" + ], + "en_answers": [ + "going out for lunch" + ], + "count": 1 + }, + { + "answers": [ + "shopping" + ], + "en_answers": [ + "shopping" + ], + "count": 1 + }, + { + "answers": [ + "bingo" + ], + "en_answers": [ + "bingo" + ], + "count": 1 + }, + { + "answers": [ + "zumba" + ], + "en_answers": [ + "zumba" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-79": { + "question": "What leisure activities do retired men typically like in the UK?", + "en_question": "What leisure activities do retired men typically like in your country?", + "annotations": [ + { + "answers": [ + "golf" + ], + "en_answers": [ + "golf" + ], + "count": 2 + }, + { + "answers": [ + "gardening" + ], + "en_answers": [ + "gardening" + ], + "count": 2 + }, + { + "answers": [ + "bowls", + "crown green bowls" + ], + "en_answers": [ + "bowls", + "crown green bowls" + ], + "count": 2 + }, + { + "answers": [ + "allotment" + ], + "en_answers": [ + "allotment" + ], + "count": 1 + }, + { + "answers": [ + "walking", + "rambling (walking clubs)", + "rambling" + ], + "en_answers": [ + "walking", + "rambling (walking clubs)", + "rambling" + ], + "count": 1 + }, + { + "answers": [ + "fishing" + ], + "en_answers": [ + "fishing" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-80": { + "question": "During which holidays do people typically visit religious sites (temples, churches, etc.) in the UK?", + "en_question": "During which holidays do people typically visit religious sites (temples, churches, etc.) in your country?", + "annotations": [ + { + "answers": [ + "easter" + ], + "en_answers": [ + "easter" + ], + "count": 4 + }, + { + "answers": [ + "christmas" + ], + "en_answers": [ + "christmas" + ], + "count": 4 + }, + { + "answers": [ + "ramadan" + ], + "en_answers": [ + "ramadan" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-81": { + "question": "What are the typical housewarming gifts in the UK?", + "en_question": "What are the typical housewarming gifts in your country?", + "annotations": [ + { + "answers": [ + "plants", + "plant", + "a plant" + ], + "en_answers": [ + "plants", + "plant", + "a plant" + ], + "count": 3 + }, + { + "answers": [ + "candles" + ], + "en_answers": [ + "candles" + ], + "count": 1 + }, + { + "answers": [ + "flowers" + ], + "en_answers": [ + "flowers" + ], + "count": 1 + }, + { + "answers": [ + "wine" + ], + "en_answers": [ + "wine" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-82": { + "question": "At what time do weddings typically start in the UK? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "en_question": "At what time do weddings typically start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 2 + }, + { + "answers": [ + "13:00", + "1300", + "1pm" + ], + "en_answers": [ + "13:00", + "1300", + "1pm" + ], + "count": 2 + }, + { + "answers": [ + "15:00", + "3pm" + ], + "en_answers": [ + "15:00", + "3pm" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-83": { + "question": "Which city in the UK hosts festivals the most?", + "en_question": "Which city in your country hosts festivals the most?", + "annotations": [ + { + "answers": [ + "london" + ], + "en_answers": [ + "london" + ], + "count": 3 + }, + { + "answers": [ + "liverpool" + ], + "en_answers": [ + "liverpool" + ], + "count": 2 + }, + { + "answers": [ + "edinburgh" + ], + "en_answers": [ + "edinburgh" + ], + "count": 1 + }, + { + "answers": [ + "glastonbury" + ], + "en_answers": [ + "glastonbury" + ], + "count": 1 + }, + { + "answers": [ + "cardiff" + ], + "en_answers": [ + "cardiff" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-84": { + "question": "What color of clothing do people typically wear when attending weddings in the UK?", + "en_question": "What color of clothing do people typically wear when attending weddings in your country?", + "annotations": [ + { + "answers": [ + "white" + ], + "en_answers": [ + "white" + ], + "count": 2 + }, + { + "answers": [ + "black" + ], + "en_answers": [ + "black" + ], + "count": 1 + }, + { + "answers": [ + "cream" + ], + "en_answers": [ + "cream" + ], + "count": 1 + }, + { + "answers": [ + "ivory" + ], + "en_answers": [ + "ivory" + ], + "count": 1 + }, + { + "answers": [ + "bright" + ], + "en_answers": [ + "bright" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-85": { + "question": "What color of clothing do people typically wear when attending funerals in the UK?", + "en_question": "What color of clothing do people typically wear when attending funerals in your country?", + "annotations": [ + { + "answers": [ + "black" + ], + "en_answers": [ + "black" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-01": { + "question": "Which snack is eaten in the cinema in the UK?", + "en_question": "Which snack is eaten in the cinema in your country?", + "annotations": [ + { + "answers": [ + "popcorn" + ], + "en_answers": [ + "popcorn" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-02": { + "question": "What is the most popular chip/crisp flavour in the UK?", + "en_question": "What is the most popular chip/crisp flavour in your country?", + "annotations": [ + { + "answers": [ + "ready salted", + "salted" + ], + "en_answers": [ + "ready salted", + "salted" + ], + "count": 3 + }, + { + "answers": [ + "salted", + "ready salted" + ], + "en_answers": [ + "salted", + "ready salted" + ], + "count": 2 + }, + { + "answers": [ + "cheese & onion", + "cheese and onion" + ], + "en_answers": [ + "cheese & onion", + "cheese and onion" + ], + "count": 2 + }, + { + "answers": [ + "salt and vinegar", + "salt & vinegar" + ], + "en_answers": [ + "salt and vinegar", + "salt & vinegar" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-04": { + "question": "Who is a popular celebrity chef in the UK?", + "en_question": "Who is a popular celebrity chef in your country?", + "annotations": [ + { + "answers": [ + "gordon ramsay", + "gordon ramsey" + ], + "en_answers": [ + "gordon ramsay", + "gordon ramsey" + ], + "count": 4 + }, + { + "answers": [ + "jamie oliver" + ], + "en_answers": [ + "jamie oliver" + ], + "count": 3 + }, + { + "answers": [ + "rick stein" + ], + "en_answers": [ + "rick stein" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-05": { + "question": "Which food is a cost-effective and quick meal option in the UK?", + "en_question": "Which food is a cost-effective and quick meal option in your country?", + "annotations": [ + { + "answers": [ + "beans on toast" + ], + "en_answers": [ + "beans on toast" + ], + "count": 3 + }, + { + "answers": [ + "cheese sandwich" + ], + "en_answers": [ + "cheese sandwich" + ], + "count": 1 + }, + { + "answers": [ + "pasta" + ], + "en_answers": [ + "pasta" + ], + "count": 1 + }, + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + }, + { + "answers": [ + "chips" + ], + "en_answers": [ + "chips" + ], + "count": 1 + }, + { + "answers": [ + "sandwich" + ], + "en_answers": [ + "sandwich" + ], + "count": 1 + }, + { + "answers": [ + "ready meal from the supermarket", + "ready meal from the supermarkert", + "ready meal" + ], + "en_answers": [ + "ready meal from the supermarket", + "ready meal from the supermarkert", + "ready meal" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-07": { + "question": "What are the most popular cooking shows in the UK?", + "en_question": "What are the most popular cooking shows in your country?", + "annotations": [ + { + "answers": [ + "masterchef", + "master chef", + "masterchef" + ], + "en_answers": [ + "masterchef", + "master chef", + "masterchef" + ], + "count": 4 + }, + { + "answers": [ + "jamie oliver" + ], + "en_answers": [ + "jamie oliver" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-08": { + "question": "What is the most popular chocolate brand in the UK?", + "en_question": "What is the most popular chocolate brand in your country?", + "annotations": [ + { + "answers": [ + "cadburys", + "cadbury", + "cadbury's" + ], + "en_answers": [ + "cadburys", + "cadbury", + "cadbury's" + ], + "count": 4 + }, + { + "answers": [ + "mars" + ], + "en_answers": [ + "mars" + ], + "count": 1 + }, + { + "answers": [ + "galaxy" + ], + "en_answers": [ + "galaxy" + ], + "count": 1 + }, + { + "answers": [ + "nestle" + ], + "en_answers": [ + "nestle" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-10": { + "question": "What is the most eaten cheese in the UK?", + "en_question": "What is the most eaten cheese in your country?", + "annotations": [ + { + "answers": [ + "cheddar" + ], + "en_answers": [ + "cheddar" + ], + "count": 4 + }, + { + "answers": [ + "wensleydale" + ], + "en_answers": [ + "wensleydale" + ], + "count": 1 + }, + { + "answers": [ + "mozzarella" + ], + "en_answers": [ + "mozzarella" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-11": { + "question": "What is the most disliked vegetable in the UK?", + "en_question": "What is the most disliked vegetable in your country?", + "annotations": [ + { + "answers": [ + "sprouts", + "brussels sprouts", + "brussel sprouts", + "brussels sprout", + "brussels sprout" + ], + "en_answers": [ + "sprouts", + "brussels sprouts", + "brussel sprouts", + "brussels sprout", + "brussels sprout" + ], + "count": 4 + }, + { + "answers": [ + "cabbage" + ], + "en_answers": [ + "cabbage" + ], + "count": 2 + }, + { + "answers": [ + "broccoli" + ], + "en_answers": [ + "broccoli" + ], + "count": 1 + }, + { + "answers": [ + "okra" + ], + "en_answers": [ + "okra" + ], + "count": 1 + }, + { + "answers": [ + "beetroot" + ], + "en_answers": [ + "beetroot" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-12": { + "question": "What food is most commonly found in food courts in the UK?", + "en_question": "What food is most commonly found in food courts in your country?", + "annotations": [ + { + "answers": [ + "chips", + "fries" + ], + "en_answers": [ + "chips", + "fries" + ], + "count": 2 + }, + { + "answers": [ + "burgers" + ], + "en_answers": [ + "burgers" + ], + "count": 1 + }, + { + "answers": [ + "fried chicken" + ], + "en_answers": [ + "fried chicken" + ], + "count": 1 + }, + { + "answers": [ + "burgers and fries (burger king)" + ], + "en_answers": [ + "burgers and fries (burger king)" + ], + "count": 1 + }, + { + "answers": [ + "sandwiches (subway)" + ], + "en_answers": [ + "sandwiches (subway)" + ], + "count": 1 + }, + { + "answers": [ + "sausage rolls (greggs)" + ], + "en_answers": [ + "sausage rolls (greggs)" + ], + "count": 1 + }, + { + "answers": [ + "dairy" + ], + "en_answers": [ + "dairy" + ], + "count": 1 + }, + { + "answers": [ + "meats" + ], + "en_answers": [ + "meats" + ], + "count": 1 + }, + { + "answers": [ + "patisserie" + ], + "en_answers": [ + "patisserie" + ], + "count": 1 + }, + { + "answers": [ + "sandwiches" + ], + "en_answers": [ + "sandwiches" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-17": { + "question": "What are the most common cheering tools used by sports fans in the UK?", + "en_question": "What are the most common cheering tools used by sports fans in your country?", + "annotations": [ + { + "answers": [ + "banners" + ], + "en_answers": [ + "banners" + ], + "count": 2 + }, + { + "answers": [ + "scarves", + "scarfs" + ], + "en_answers": [ + "scarves", + "scarfs" + ], + "count": 2 + }, + { + "answers": [ + "voice", + "their voices" + ], + "en_answers": [ + "voice", + "their voices" + ], + "count": 1 + }, + { + "answers": [ + "football rattles" + ], + "en_answers": [ + "football rattles" + ], + "count": 1 + }, + { + "answers": [ + "fan signs" + ], + "en_answers": [ + "fan signs" + ], + "count": 1 + }, + { + "answers": [ + "horn" + ], + "en_answers": [ + "horn" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-18": { + "question": "What do fans bring with them when attending a live game in the UK?", + "en_question": "What do fans bring with them when attending a live game in your country?", + "annotations": [ + { + "answers": [ + "flag", + "flags" + ], + "en_answers": [ + "flag", + "flags" + ], + "count": 2 + }, + { + "answers": [ + "tickets" + ], + "en_answers": [ + "tickets" + ], + "count": 1 + }, + { + "answers": [ + "camera" + ], + "en_answers": [ + "camera" + ], + "count": 1 + }, + { + "answers": [ + "sports clothing" + ], + "en_answers": [ + "sports clothing" + ], + "count": 1 + }, + { + "answers": [ + "scarf" + ], + "en_answers": [ + "scarf" + ], + "count": 1 + }, + { + "answers": [ + "drinks" + ], + "en_answers": [ + "drinks" + ], + "count": 1 + }, + { + "answers": [ + "fan signs" + ], + "en_answers": [ + "fan signs" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-19": { + "question": "What is the most well known sporting stadium in the UK?", + "en_question": "What is the most well known sporting stadium in your country?", + "annotations": [ + { + "answers": [ + "wembley", + "wembley stadium", + "wembley stadium", + "wembley" + ], + "en_answers": [ + "wembley", + "wembley stadium", + "wembley stadium", + "wembley" + ], + "count": 4 + }, + { + "answers": [ + "white hart lane", + "white hart land" + ], + "en_answers": [ + "white hart lane", + "white hart land" + ], + "count": 1 + }, + { + "answers": [ + "wimbledon", + "wimbledon stadium" + ], + "en_answers": [ + "wimbledon", + "wimbledon stadium" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-23": { + "question": "Who is the most famous Paralympian in the UK?", + "en_question": "Who is the most famous Paralympian in your country?", + "annotations": [ + { + "answers": [ + "ellie simmonds", + "ellie symmonds" + ], + "en_answers": [ + "ellie simmonds", + "ellie symmonds" + ], + "count": 2 + }, + { + "answers": [ + "tanni grey-thompson" + ], + "en_answers": [ + "tanni grey-thompson" + ], + "count": 1 + }, + { + "answers": [ + "sarah storey" + ], + "en_answers": [ + "sarah storey" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-en-26": { + "question": "What is the best recognized sporting chant in the UK?", + "en_question": "What is the best recognized sporting chant in your country?", + "annotations": [ + { + "answers": [ + "it's coming home", + "football's coming home", + "footballs coming home", + "three lions", + "three lions" + ], + "en_answers": [ + "it's coming home", + "football's coming home", + "footballs coming home", + "three lions", + "three lions" + ], + "count": 2 + }, + { + "answers": [ + "here we go", + "here we go..." + ], + "en_answers": [ + "here we go", + "here we go..." + ], + "count": 1 + }, + { + "answers": [ + "who ate all the pies?" + ], + "en_answers": [ + "who ate all the pies?" + ], + "count": 1 + }, + { + "answers": [ + "who are ya? who are ya? who are ya?" + ], + "en_answers": [ + "who are ya? who are ya? who are ya?" + ], + "count": 1 + }, + { + "answers": [ + "you'll never walk alone!" + ], + "en_answers": [ + "you'll never walk alone!" + ], + "count": 1 + }, + { + "answers": [ + "your not singing anymore" + ], + "en_answers": [ + "your not singing anymore" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-38": { + "question": "Which industries are known for more flexible working hours in the UK?", + "en_question": "Which industries are known for more flexible working hours in your country?", + "annotations": [ + { + "answers": [ + "it workers", + "tech" + ], + "en_answers": [ + "it workers", + "tech" + ], + "count": 2 + }, + { + "answers": [ + "office" + ], + "en_answers": [ + "office" + ], + "count": 1 + }, + { + "answers": [ + "retail industry" + ], + "en_answers": [ + "retail industry" + ], + "count": 1 + }, + { + "answers": [ + "finance" + ], + "en_answers": [ + "finance" + ], + "count": 1 + }, + { + "answers": [ + "banking" + ], + "en_answers": [ + "banking" + ], + "count": 1 + }, + { + "answers": [ + "hospitality" + ], + "en_answers": [ + "hospitality" + ], + "count": 1 + }, + { + "answers": [ + "nhs" + ], + "en_answers": [ + "nhs" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-41": { + "question": "Who is the most well known and successful entrepreneur in the UK?", + "en_question": "Who is the most well known and successful entrepreneur in your country?", + "annotations": [ + { + "answers": [ + "alan sugar", + "add sugar" + ], + "en_answers": [ + "alan sugar", + "add sugar" + ], + "count": 4 + }, + { + "answers": [ + "richard branson" + ], + "en_answers": [ + "richard branson" + ], + "count": 2 + }, + { + "answers": [ + "levi roots" + ], + "en_answers": [ + "levi roots" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-47": { + "question": "What can typically be found in the back garden of houses in the UK?", + "en_question": "What can typically be found in the back garden of houses in your country?", + "annotations": [ + { + "answers": [ + "lawn", + "grass" + ], + "en_answers": [ + "lawn", + "grass" + ], + "count": 3 + }, + { + "answers": [ + "shed" + ], + "en_answers": [ + "shed" + ], + "count": 2 + }, + { + "answers": [ + "trees" + ], + "en_answers": [ + "trees" + ], + "count": 1 + }, + { + "answers": [ + "flowers" + ], + "en_answers": [ + "flowers" + ], + "count": 1 + }, + { + "answers": [ + "wooden fences" + ], + "en_answers": [ + "wooden fences" + ], + "count": 1 + }, + { + "answers": [ + "brick walls" + ], + "en_answers": [ + "brick walls" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-49": { + "question": "What is the name of the most famous family in the UK?", + "en_question": "What is the name of the most famous family in your country?", + "annotations": [ + { + "answers": [ + "windsor", + "the royal family", + "the royal family - the windsors", + "the windsors", + "the windsor family", + "the royal family", + "the windsors" + ], + "en_answers": [ + "windsor", + "the royal family", + "the royal family - the windsors", + "the windsors", + "the windsor family", + "the royal family", + "the windsors" + ], + "count": 5 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-50": { + "question": "What is the most common family name in the UK?", + "en_question": "What is the most common family name in your country?", + "annotations": [ + { + "answers": [ + "smith" + ], + "en_answers": [ + "smith" + ], + "count": 4 + }, + { + "answers": [ + "jones" + ], + "en_answers": [ + "jones" + ], + "count": 1 + }, + { + "answers": [ + "brown" + ], + "en_answers": [ + "brown" + ], + "count": 1 + }, + { + "answers": [ + "mcdonald" + ], + "en_answers": [ + "mcdonald" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-55": { + "question": "Which religion is most commonly practiced by families in the UK?", + "en_question": "Which religion is most commonly practiced by families in your country?", + "annotations": [ + { + "answers": [ + "christianity" + ], + "en_answers": [ + "christianity" + ], + "count": 4 + }, + { + "answers": [ + "muslim" + ], + "en_answers": [ + "muslim" + ], + "count": 1 + }, + { + "answers": [ + "catholicism" + ], + "en_answers": [ + "catholicism" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-56": { + "question": "What is the most popular foreign language spoken by families in the UK?", + "en_question": "What is the most popular foreign language spoken by families in your country?", + "annotations": [ + { + "answers": [ + "indian" + ], + "en_answers": [ + "indian" + ], + "count": 2 + }, + { + "answers": [ + "hindu" + ], + "en_answers": [ + "hindu" + ], + "count": 1 + }, + { + "answers": [ + "urdu" + ], + "en_answers": [ + "urdu" + ], + "count": 1 + }, + { + "answers": [ + "polish" + ], + "en_answers": [ + "polish" + ], + "count": 1 + }, + { + "answers": [ + "french" + ], + "en_answers": [ + "french" + ], + "count": 1 + }, + { + "answers": [ + "spanish" + ], + "en_answers": [ + "spanish" + ], + "count": 1 + }, + { + "answers": [ + "pakistani" + ], + "en_answers": [ + "pakistani" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-59": { + "question": "Which country is the most popular destination for families from the UK to emigrate to?", + "en_question": "Which country is the most popular destination for families from your country to emigrate to?", + "annotations": [ + { + "answers": [ + "spain" + ], + "en_answers": [ + "spain" + ], + "count": 3 + }, + { + "answers": [ + "australia" + ], + "en_answers": [ + "australia" + ], + "count": 2 + }, + { + "answers": [ + "usa", + "america", + "north america", + "u.s.", + "united states", + "us" + ], + "en_answers": [ + "usa", + "america", + "north america", + "u.s.", + "united states", + "us" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-68": { + "question": "What repercussions are there for bad behavior in schools in the UK?", + "en_question": "What repercussions are there for bad behavior in schools in your country?", + "annotations": [ + { + "answers": [ + "detention" + ], + "en_answers": [ + "detention" + ], + "count": 5 + }, + { + "answers": [ + "exclusion", + "being expelled from school", + "expulsion", + "being expelled from school" + ], + "en_answers": [ + "exclusion", + "being expelled from school", + "expulsion", + "being expelled from school" + ], + "count": 4 + }, + { + "answers": [ + "extra work" + ], + "en_answers": [ + "extra work" + ], + "count": 1 + }, + { + "answers": [ + "school inform parents" + ], + "en_answers": [ + "school inform parents" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-69": { + "question": "Which writers are commonly studied in literature class in the UK?", + "en_question": "Which writers are commonly studied in literature class in your country?", + "annotations": [ + { + "answers": [ + "shakespeare", + "shakespear", + "william shakespeare", + "william shakespeare" + ], + "en_answers": [ + "shakespeare", + "shakespear", + "william shakespeare", + "william shakespeare" + ], + "count": 3 + }, + { + "answers": [ + "dickens", + "charles dickens" + ], + "en_answers": [ + "dickens", + "charles dickens" + ], + "count": 2 + }, + { + "answers": [ + "chaucer", + "geoffrey chaucer" + ], + "en_answers": [ + "chaucer", + "geoffrey chaucer" + ], + "count": 1 + }, + { + "answers": [ + "steinbeck", + "john steinbeck" + ], + "en_answers": [ + "steinbeck", + "john steinbeck" + ], + "count": 1 + }, + { + "answers": [ + "twain", + "mark twain" + ], + "en_answers": [ + "twain", + "mark twain" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-70": { + "question": "How many school breaks are there in a year for high schools in the UK? (Provide Arabic numerals (e.g., 1) only.)", + "en_question": "How many school breaks are there in a year for high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 3 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-72": { + "question": "Which online resource do students usually use to study in the UK?", + "en_question": "Which online resource do students usually use to study in your country?", + "annotations": [ + { + "answers": [ + "google" + ], + "en_answers": [ + "google" + ], + "count": 2 + }, + { + "answers": [ + "zoom" + ], + "en_answers": [ + "zoom" + ], + "count": 1 + }, + { + "answers": [ + "chatgpt", + "chat ai" + ], + "en_answers": [ + "chatgpt", + "chat ai" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-75": { + "question": "What is the average length of a semester in terms of weeks of teaching at universities in the UK? (Provide Arabic numerals (e.g., 1) only.)", + "en_question": "What is the average length of a semester in terms of weeks of teaching at universities in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 3 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-76": { + "question": "Which airport in the UK is the busiest during the holiday season?", + "en_question": "Which airport in your country is the busiest during the holiday season?", + "annotations": [ + { + "answers": [ + "heathrow" + ], + "en_answers": [ + "heathrow" + ], + "count": 5 + }, + { + "answers": [ + "gatwick" + ], + "en_answers": [ + "gatwick" + ], + "count": 2 + }, + { + "answers": [ + "manchester" + ], + "en_answers": [ + "manchester" + ], + "count": 1 + }, + { + "answers": [ + "stanstead" + ], + "en_answers": [ + "stanstead" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-79": { + "question": "Which region of the UK is well known for its theatrical performances?", + "en_question": "Which region of your country is well known for its theatrical performances?", + "annotations": [ + { + "answers": [ + "london" + ], + "en_answers": [ + "london" + ], + "count": 5 + }, + { + "answers": [ + "west end", + "west end of london", + "west end london" + ], + "en_answers": [ + "west end", + "west end of london", + "west end london" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-87": { + "question": "What is the most famous historic landmark in the UK?", + "en_question": "What is the most famous historic landmark in your country?", + "annotations": [ + { + "answers": [ + "stonehenge" + ], + "en_answers": [ + "stonehenge" + ], + "count": 3 + }, + { + "answers": [ + "buckingham palace" + ], + "en_answers": [ + "buckingham palace" + ], + "count": 2 + }, + { + "answers": [ + "john o groats", + "john o' groats" + ], + "en_answers": [ + "john o groats", + "john o' groats" + ], + "count": 1 + }, + { + "answers": [ + "big ben" + ], + "en_answers": [ + "big ben" + ], + "count": 1 + }, + { + "answers": [ + "london bridge" + ], + "en_answers": [ + "london bridge" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-90": { + "question": "What is the most famous hotel brand in the UK?", + "en_question": "What is the most famous hotel brand in your country?", + "annotations": [ + { + "answers": [ + "premier inn" + ], + "en_answers": [ + "premier inn" + ], + "count": 3 + }, + { + "answers": [ + "travelodge", + "travel lodge" + ], + "en_answers": [ + "travelodge", + "travel lodge" + ], + "count": 3 + }, + { + "answers": [ + "ritz" + ], + "en_answers": [ + "ritz" + ], + "count": 1 + }, + { + "answers": [ + "hilton" + ], + "en_answers": [ + "hilton" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-05": { + "question": "What is the most popular grab-and-go breakfast option in the UK?", + "en_question": "What is the most popular grab-and-go breakfast option in your country?", + "annotations": [ + { + "answers": [ + "cereal" + ], + "en_answers": [ + "cereal" + ], + "count": 2 + }, + { + "answers": [ + "toast" + ], + "en_answers": [ + "toast" + ], + "count": 2 + }, + { + "answers": [ + "pastries" + ], + "en_answers": [ + "pastries" + ], + "count": 1 + }, + { + "answers": [ + "sausage and egg sandwich" + ], + "en_answers": [ + "sausage and egg sandwich" + ], + "count": 1 + }, + { + "answers": [ + "sausage roll" + ], + "en_answers": [ + "sausage roll" + ], + "count": 1 + }, + { + "answers": [ + "cornflakes" + ], + "en_answers": [ + "cornflakes" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-06": { + "question": "What is the most popular food in the UK among young people?", + "en_question": "What is the most popular food in your country among young people?", + "annotations": [ + { + "answers": [ + "fast food" + ], + "en_answers": [ + "fast food" + ], + "count": 2 + }, + { + "answers": [ + "burgers" + ], + "en_answers": [ + "burgers" + ], + "count": 1 + }, + { + "answers": [ + "fried chicken" + ], + "en_answers": [ + "fried chicken" + ], + "count": 1 + }, + { + "answers": [ + "chips and gravy" + ], + "en_answers": [ + "chips and gravy" + ], + "count": 1 + }, + { + "answers": [ + "chips" + ], + "en_answers": [ + "chips" + ], + "count": 1 + }, + { + "answers": [ + "mcdonalds", + "mcdonald's" + ], + "en_answers": [ + "mcdonalds", + "mcdonald's" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-08": { + "question": "What type of alcoholic drink is most commonly consumed at festivals in the UK?", + "en_question": "What type of alcoholic drink is most commonly consumed at festivals in your country?", + "annotations": [ + { + "answers": [ + "beer" + ], + "en_answers": [ + "beer" + ], + "count": 4 + }, + { + "answers": [ + "wine" + ], + "en_answers": [ + "wine" + ], + "count": 1 + }, + { + "answers": [ + "lager" + ], + "en_answers": [ + "lager" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-13": { + "question": "What is the most common morning drink in the UK?", + "en_question": "What is the most common morning drink in your country?", + "annotations": [ + { + "answers": [ + "coffee" + ], + "en_answers": [ + "coffee" + ], + "count": 5 + }, + { + "answers": [ + "tea" + ], + "en_answers": [ + "tea" + ], + "count": 4 + }, + { + "answers": [ + "fruit juice" + ], + "en_answers": [ + "fruit juice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-15": { + "question": "What is the most popular traditional dessert in the UK?", + "en_question": "What is the most popular traditional dessert in your country?", + "annotations": [ + { + "answers": [ + "trifle", + "triffle" + ], + "en_answers": [ + "trifle", + "triffle" + ], + "count": 2 + }, + { + "answers": [ + "pudding" + ], + "en_answers": [ + "pudding" + ], + "count": 1 + }, + { + "answers": [ + "jelly" + ], + "en_answers": [ + "jelly" + ], + "count": 1 + }, + { + "answers": [ + "cake and custard" + ], + "en_answers": [ + "cake and custard" + ], + "count": 1 + }, + { + "answers": [ + "rice pudding" + ], + "en_answers": [ + "rice pudding" + ], + "count": 1 + }, + { + "answers": [ + "treacle sponge" + ], + "en_answers": [ + "treacle sponge" + ], + "count": 1 + }, + { + "answers": [ + "bread and butter pudding" + ], + "en_answers": [ + "bread and butter pudding" + ], + "count": 1 + }, + { + "answers": [ + "crumble" + ], + "en_answers": [ + "crumble" + ], + "count": 1 + }, + { + "answers": [ + "brownie" + ], + "en_answers": [ + "brownie" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-21": { + "question": "What is the most popular racket sport in the UK?", + "en_question": "What is the most popular racket sport in your country?", + "annotations": [ + { + "answers": [ + "tennis" + ], + "en_answers": [ + "tennis" + ], + "count": 5 + }, + { + "answers": [ + "squash" + ], + "en_answers": [ + "squash" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-24": { + "question": "What is the most popular track and field sport in the UK?", + "en_question": "What is the most popular track and field sport in your country?", + "annotations": [ + { + "answers": [ + "running" + ], + "en_answers": [ + "running" + ], + "count": 4 + }, + { + "answers": [ + "athletics" + ], + "en_answers": [ + "athletics" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-29": { + "question": "Which international sporting event is the most popular in the UK?", + "en_question": "Which international sporting event is the most popular in your country?", + "annotations": [ + { + "answers": [ + "olympics" + ], + "en_answers": [ + "olympics" + ], + "count": 2 + }, + { + "answers": [ + "fifa world cup" + ], + "en_answers": [ + "fifa world cup" + ], + "count": 1 + }, + { + "answers": [ + "wimbledon" + ], + "en_answers": [ + "wimbledon" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-47": { + "question": "How long (in minutes) are typical work breaks in the UK, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)", + "en_question": "How long (in minutes) are typical work breaks in your country, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 2 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 1 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-58": { + "question": "Which job is considered underpaid in the UK?", + "en_question": "Which job is considered underpaid in your country?", + "annotations": [ + { + "answers": [ + "care workers", + "carers", + "caring" + ], + "en_answers": [ + "care workers", + "carers", + "caring" + ], + "count": 2 + }, + { + "answers": [ + "nurses", + "nursing" + ], + "en_answers": [ + "nurses", + "nursing" + ], + "count": 2 + }, + { + "answers": [ + "cleaner" + ], + "en_answers": [ + "cleaner" + ], + "count": 1 + }, + { + "answers": [ + "teachers" + ], + "en_answers": [ + "teachers" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-76": { + "question": "What is the most common food served during Easter in the UK?", + "en_question": "What is the most common food served during Easter in your country?", + "annotations": [ + { + "answers": [ + "roast lamb" + ], + "en_answers": [ + "roast lamb" + ], + "count": 2 + }, + { + "answers": [ + "ham" + ], + "en_answers": [ + "ham" + ], + "count": 1 + }, + { + "answers": [ + "fish" + ], + "en_answers": [ + "fish" + ], + "count": 1 + }, + { + "answers": [ + "chocolate" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + }, + { + "answers": [ + "lamb" + ], + "en_answers": [ + "lamb" + ], + "count": 1 + }, + { + "answers": [ + "roast dinner" + ], + "en_answers": [ + "roast dinner" + ], + "count": 1 + }, + { + "answers": [ + "hot cross buns" + ], + "en_answers": [ + "hot cross buns" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-82": { + "question": "What is the most popular music genre among the elderly population in the UK?", + "en_question": "What is the most popular music genre among the elderly population in your country?", + "annotations": [ + { + "answers": [ + "classical" + ], + "en_answers": [ + "classical" + ], + "count": 3 + }, + { + "answers": [ + "rock & roll" + ], + "en_answers": [ + "rock & roll" + ], + "count": 1 + }, + { + "answers": [ + "brass band" + ], + "en_answers": [ + "brass band" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-gr-88": { + "question": "What drink is usually offered at funerals in the UK?", + "en_question": "What drink is usually offered at funerals in your country?", + "annotations": [ + { + "answers": [ + "beer" + ], + "en_answers": [ + "beer" + ], + "count": 2 + }, + { + "answers": [ + "wine" + ], + "en_answers": [ + "wine" + ], + "count": 2 + }, + { + "answers": [ + "sherry" + ], + "en_answers": [ + "sherry" + ], + "count": 1 + }, + { + "answers": [ + "tea" + ], + "en_answers": [ + "tea" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "New-gr-89": { + "question": "What drink is usually offered at weddings in the UK?", + "en_question": "What drink is usually offered at weddings in your country?", + "annotations": [ + { + "answers": [ + "champagne" + ], + "en_answers": [ + "champagne" + ], + "count": 4 + }, + { + "answers": [ + "wine" + ], + "en_answers": [ + "wine" + ], + "count": 2 + }, + { + "answers": [ + "prosecco" + ], + "en_answers": [ + "prosecco" + ], + "count": 1 + }, + { + "answers": [ + "cava" + ], + "en_answers": [ + "cava" + ], + "count": 1 + }, + { + "answers": [ + "beer" + ], + "en_answers": [ + "beer" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ha-07": { + "question": "What food originated from the UK and can be found all over the world?", + "en_question": "What food originated from your country and can be found all over the world?", + "annotations": [ + { + "answers": [ + "fish and chips", + "fish & chips" + ], + "en_answers": [ + "fish and chips", + "fish & chips" + ], + "count": 2 + }, + { + "answers": [ + "apple pie" + ], + "en_answers": [ + "apple pie" + ], + "count": 1 + }, + { + "answers": [ + "kitkat" + ], + "en_answers": [ + "kitkat" + ], + "count": 1 + }, + { + "answers": [ + "potatoes" + ], + "en_answers": [ + "potatoes" + ], + "count": 1 + }, + { + "answers": [ + "roast dinner" + ], + "en_answers": [ + "roast dinner" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-08": { + "question": "What food is typically disliked by children but enjoyed by the elderly in the UK?", + "en_question": "What food is typically disliked by children but enjoyed by the elderly in your country?", + "annotations": [ + { + "answers": [ + "vegetables" + ], + "en_answers": [ + "vegetables" + ], + "count": 2 + }, + { + "answers": [ + "brussels sprouts", + "brussels sprouts", + "brussel sprouts", + "brussels sprout" + ], + "en_answers": [ + "brussels sprouts", + "brussels sprouts", + "brussel sprouts", + "brussels sprout" + ], + "count": 2 + }, + { + "answers": [ + "broccoli" + ], + "en_answers": [ + "broccoli" + ], + "count": 1 + }, + { + "answers": [ + "olives" + ], + "en_answers": [ + "olives" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-09": { + "question": "What cooking utensil is most commonly used in the UK?", + "en_question": "What cooking utensil is most commonly used in your country?", + "annotations": [ + { + "answers": [ + "spoon" + ], + "en_answers": [ + "spoon" + ], + "count": 2 + }, + { + "answers": [ + "fork" + ], + "en_answers": [ + "fork" + ], + "count": 1 + }, + { + "answers": [ + "knife" + ], + "en_answers": [ + "knife" + ], + "count": 1 + }, + { + "answers": [ + "oven" + ], + "en_answers": [ + "oven" + ], + "count": 1 + }, + { + "answers": [ + "wooden spoon" + ], + "en_answers": [ + "wooden spoon" + ], + "count": 1 + }, + { + "answers": [ + "saucepan" + ], + "en_answers": [ + "saucepan" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-13": { + "question": "Which is the most popular vegetable in the UK?", + "en_question": "Which is the most popular vegetable in your country?", + "annotations": [ + { + "answers": [ + "carrots", + "carrot" + ], + "en_answers": [ + "carrots", + "carrot" + ], + "count": 3 + }, + { + "answers": [ + "potato", + "potatoes" + ], + "en_answers": [ + "potato", + "potatoes" + ], + "count": 2 + }, + { + "answers": [ + "salad" + ], + "en_answers": [ + "salad" + ], + "count": 1 + }, + { + "answers": [ + "beetroot" + ], + "en_answers": [ + "beetroot" + ], + "count": 1 + }, + { + "answers": [ + "brocolli" + ], + "en_answers": [ + "brocolli" + ], + "count": 1 + }, + { + "answers": [ + "peas" + ], + "en_answers": [ + "peas" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ha-19": { + "question": "Which animal is used for sports in the UK?", + "en_question": "Which animal is used for sports in your country?", + "annotations": [ + { + "answers": [ + "horses", + "horse racing" + ], + "en_answers": [ + "horses", + "horse racing" + ], + "count": 4 + }, + { + "answers": [ + "geryhound", + "greyhound racing" + ], + "en_answers": [ + "geryhound", + "greyhound racing" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-ha-66": { + "question": "What is the most popular wedding venue in the UK?", + "en_question": "What is the most popular wedding venue in your country?", + "annotations": [ + { + "answers": [ + "gretna green" + ], + "en_answers": [ + "gretna green" + ], + "count": 2 + }, + { + "answers": [ + "church" + ], + "en_answers": [ + "church" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-in-01": { + "question": "Which coffee shop brand is the most popular in the UK?", + "en_question": "Which coffee shop brand is the most popular in your country?", + "annotations": [ + { + "answers": [ + "costa", + "costa coffee" + ], + "en_answers": [ + "costa", + "costa coffee" + ], + "count": 3 + }, + { + "answers": [ + "starbucks" + ], + "en_answers": [ + "starbucks" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-in-03": { + "question": "What type of food from the UK is typically served in restaurants overseas?", + "en_question": "What type of food from your country is typically served in restaurants overseas?", + "annotations": [ + { + "answers": [ + "fish and chips", + "fish & chips" + ], + "en_answers": [ + "fish and chips", + "fish & chips" + ], + "count": 2 + }, + { + "answers": [ + "beef" + ], + "en_answers": [ + "beef" + ], + "count": 1 + }, + { + "answers": [ + "roast chicken" + ], + "en_answers": [ + "roast chicken" + ], + "count": 1 + }, + { + "answers": [ + "beef wellington" + ], + "en_answers": [ + "beef wellington" + ], + "count": 1 + }, + { + "answers": [ + "british beer" + ], + "en_answers": [ + "british beer" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "unsure if food or dish": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-33": { + "question": "What region in the UK is usually associated with mining?", + "en_question": "What region in your country is usually associated with mining?", + "annotations": [ + { + "answers": [ + "yorkshire" + ], + "en_answers": [ + "yorkshire" + ], + "count": 3 + }, + { + "answers": [ + "wales" + ], + "en_answers": [ + "wales" + ], + "count": 2 + }, + { + "answers": [ + "north" + ], + "en_answers": [ + "north" + ], + "count": 1 + }, + { + "answers": [ + "midlands" + ], + "en_answers": [ + "midlands" + ], + "count": 1 + }, + { + "answers": [ + "northern scotland" + ], + "en_answers": [ + "northern scotland" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-34": { + "question": "What region in the UK is usually associated with oil?", + "en_question": "What region in your country is usually associated with oil?", + "annotations": [ + { + "answers": [ + "scotland" + ], + "en_answers": [ + "scotland" + ], + "count": 4 + }, + { + "answers": [ + "north east" + ], + "en_answers": [ + "north east" + ], + "count": 1 + }, + { + "answers": [ + "aberdeen" + ], + "en_answers": [ + "aberdeen" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-62": { + "question": "What university in the UK is popular because of its engineering major? (Provide the official name.)", + "en_question": "What university in your country is popular because of its engineering major? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "cambridge", + "cambridge university", + "university of cambridge", + "university of cambridge", + "cambridge" + ], + "en_answers": [ + "cambridge", + "cambridge university", + "university of cambridge", + "university of cambridge", + "cambridge" + ], + "count": 2 + }, + { + "answers": [ + "brunel university" + ], + "en_answers": [ + "brunel university" + ], + "count": 1 + }, + { + "answers": [ + "university of south wales" + ], + "en_answers": [ + "university of south wales" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-in-63": { + "question": "What university in the UK is popular because of its school of medicine? (Provide the official name.)", + "en_question": "What university in your country is popular because of its school of medicine? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "oxford", + "university of oxford", + "oxford university" + ], + "en_answers": [ + "oxford", + "university of oxford", + "oxford university" + ], + "count": 3 + }, + { + "answers": [ + "nottingham" + ], + "en_answers": [ + "nottingham" + ], + "count": 1 + }, + { + "answers": [ + "cambridge" + ], + "en_answers": [ + "cambridge" + ], + "count": 1 + }, + { + "answers": [ + "manchester" + ], + "en_answers": [ + "manchester" + ], + "count": 1 + }, + { + "answers": [ + "keele" + ], + "en_answers": [ + "keele" + ], + "count": 1 + }, + { + "answers": [ + "st george's, university of london", + "st georges college london" + ], + "en_answers": [ + "st george's, university of london", + "st georges college london" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-78": { + "question": "What is the most popular payment method in the UK?", + "en_question": "What is the most popular payment method in your country?", + "annotations": [ + { + "answers": [ + "debit card" + ], + "en_answers": [ + "debit card" + ], + "count": 1 + }, + { + "answers": [ + "contactless card payment", + "contatless card payment" + ], + "en_answers": [ + "contactless card payment", + "contatless card payment" + ], + "count": 1 + }, + { + "answers": [ + "credit card" + ], + "en_answers": [ + "credit card" + ], + "count": 1 + }, + { + "answers": [ + "smart phone" + ], + "en_answers": [ + "smart phone" + ], + "count": 1 + }, + { + "answers": [ + "bank transfer" + ], + "en_answers": [ + "bank transfer" + ], + "count": 1 + }, + { + "answers": [ + "cash" + ], + "en_answers": [ + "cash" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-80": { + "question": "What is the most famous theme park in the UK?", + "en_question": "What is the most famous theme park in your country?", + "annotations": [ + { + "answers": [ + "alton towers" + ], + "en_answers": [ + "alton towers" + ], + "count": 4 + }, + { + "answers": [ + "thorpe park" + ], + "en_answers": [ + "thorpe park" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-01": { + "question": "What is the most popular children's animation that is commonly watched by kids in the UK?", + "en_question": "What is the most popular children's animation that is commonly watched by kids in your country?", + "annotations": [ + { + "answers": [ + "peppa pig" + ], + "en_answers": [ + "peppa pig" + ], + "count": 3 + }, + { + "answers": [ + "paw patrol" + ], + "en_answers": [ + "paw patrol" + ], + "count": 1 + }, + { + "answers": [ + "bluey" + ], + "en_answers": [ + "bluey" + ], + "count": 1 + }, + { + "answers": [ + "amazing world of gumball" + ], + "en_answers": [ + "amazing world of gumball" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ko-02": { + "question": "What is the most popular prenatal education activity for pregnant women in the UK?", + "en_question": "What is the most popular prenatal education activity for pregnant women in your country?", + "annotations": [ + { + "answers": [ + "antenatal classes" + ], + "en_answers": [ + "antenatal classes" + ], + "count": 1 + }, + { + "answers": [ + "prenatal classes at the midwifery clinic" + ], + "en_answers": [ + "prenatal classes at the midwifery clinic" + ], + "count": 1 + }, + { + "answers": [ + "lamaze" + ], + "en_answers": [ + "lamaze" + ], + "count": 1 + }, + { + "answers": [ + "breathing classes" + ], + "en_answers": [ + "breathing classes" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ko-03": { + "question": "What is the most popular children's song in the UK that families sing together?", + "en_question": "What is the most popular children's song in your country that families sing together?", + "annotations": [ + { + "answers": [ + "twinkle twinkle little star", + "right now probably baby shark but when i was a child maybe twinkle twinkle little star" + ], + "en_answers": [ + "twinkle twinkle little star", + "right now probably baby shark but when i was a child maybe twinkle twinkle little star" + ], + "count": 3 + }, + { + "answers": [ + "row row row your boat", + "row", + "row your boat", + "your boat" + ], + "en_answers": [ + "row row row your boat", + "row", + "row your boat", + "your boat" + ], + "count": 2 + }, + { + "answers": [ + "incy wincy spider" + ], + "en_answers": [ + "incy wincy spider" + ], + "count": 1 + }, + { + "answers": [ + "happy birthday" + ], + "en_answers": [ + "happy birthday" + ], + "count": 1 + }, + { + "answers": [ + "wheels on the bus" + ], + "en_answers": [ + "wheels on the bus" + ], + "count": 1 + }, + { + "answers": [ + "baby shark", + "right now probably baby shark but when i was a child maybe twinkle twinkle little star" + ], + "en_answers": [ + "baby shark", + "right now probably baby shark but when i was a child maybe twinkle twinkle little star" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-04": { + "question": "Which toys are most popular among boys in the UK?", + "en_question": "Which toys are most popular among boys in your country?", + "annotations": [ + { + "answers": [ + "toy cars", + "cars" + ], + "en_answers": [ + "toy cars", + "cars" + ], + "count": 3 + }, + { + "answers": [ + "football", + "footballs", + "soccer ball" + ], + "en_answers": [ + "football", + "footballs", + "soccer ball" + ], + "count": 2 + }, + { + "answers": [ + "video games", + "computer games" + ], + "en_answers": [ + "video games", + "computer games" + ], + "count": 2 + }, + { + "answers": [ + "toy vehicles" + ], + "en_answers": [ + "toy vehicles" + ], + "count": 1 + }, + { + "answers": [ + "lego" + ], + "en_answers": [ + "lego" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-05": { + "question": "Which toys are most popular among girls in the UK?", + "en_question": "Which toys are most popular among girls in your country?", + "annotations": [ + { + "answers": [ + "dolls" + ], + "en_answers": [ + "dolls" + ], + "count": 3 + }, + { + "answers": [ + "barbies", + "barbie" + ], + "en_answers": [ + "barbies", + "barbie" + ], + "count": 3 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-06": { + "question": "What is the most popular folk tale in the UK that is typically told to children?", + "en_question": "What is the most popular folk tale in your country that is typically told to children?", + "annotations": [ + { + "answers": [ + "tooth fairy" + ], + "en_answers": [ + "tooth fairy" + ], + "count": 2 + }, + { + "answers": [ + "snow white", + "snow white and the seven dwarfs" + ], + "en_answers": [ + "snow white", + "snow white and the seven dwarfs" + ], + "count": 1 + }, + { + "answers": [ + "hansel and gretel", + "hansel and gretal" + ], + "en_answers": [ + "hansel and gretel", + "hansel and gretal" + ], + "count": 1 + }, + { + "answers": [ + "father christmas" + ], + "en_answers": [ + "father christmas" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ko-07": { + "question": "What is the customary symbol of condolence used at funerals in the UK?", + "en_question": "What is the customary symbol of condolence used at funerals in your country?", + "annotations": [ + { + "answers": [ + "wearing black", + "black clothing" + ], + "en_answers": [ + "wearing black", + "black clothing" + ], + "count": 2 + }, + { + "answers": [ + "flowers" + ], + "en_answers": [ + "flowers" + ], + "count": 1 + }, + { + "answers": [ + "condolence cards" + ], + "en_answers": [ + "condolence cards" + ], + "count": 1 + }, + { + "answers": [ + "donation to charity" + ], + "en_answers": [ + "donation to charity" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ko-08": { + "question": "Where do university students in the UK tend to work part-time the most?", + "en_question": "Where do university students in your country tend to work part-time the most?", + "annotations": [ + { + "answers": [ + "waiting" + ], + "en_answers": [ + "waiting" + ], + "count": 2 + }, + { + "answers": [ + "retail" + ], + "en_answers": [ + "retail" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ko-09": { + "question": "What are the most frequently practiced team-building activities in companies based in the UK?", + "en_question": "What are the most frequently practiced team-building activities in companies based in your country?", + "annotations": [ + { + "answers": [ + "sharing things about ourselves", + "stand up and introduce yourself" + ], + "en_answers": [ + "sharing things about ourselves", + "stand up and introduce yourself" + ], + "count": 2 + }, + { + "answers": [ + "football", + "soccer" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "a shared task to complete as a team" + ], + "en_answers": [ + "a shared task to complete as a team" + ], + "count": 1 + }, + { + "answers": [ + "going out" + ], + "en_answers": [ + "going out" + ], + "count": 1 + }, + { + "answers": [ + "outside work to socialise", + "outside work to socialise." + ], + "en_answers": [ + "outside work to socialise", + "outside work to socialise." + ], + "count": 1 + }, + { + "answers": [ + "escape rooms" + ], + "en_answers": [ + "escape rooms" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-10": { + "question": "What are the most common activities people do as a side job in the UK?", + "en_question": "What are the most common activities people do as a side job in your country?", + "annotations": [ + { + "answers": [ + "taxi driver" + ], + "en_answers": [ + "taxi driver" + ], + "count": 1 + }, + { + "answers": [ + "home work" + ], + "en_answers": [ + "home work" + ], + "count": 1 + }, + { + "answers": [ + "craft" + ], + "en_answers": [ + "craft" + ], + "count": 1 + }, + { + "answers": [ + "online selling" + ], + "en_answers": [ + "online selling" + ], + "count": 1 + }, + { + "answers": [ + "surveys" + ], + "en_answers": [ + "surveys" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-pe-02": { + "question": "What is the most famous edible souvenir for tourists in the UK?", + "en_question": "What is the most famous edible souvenir for tourists in your country?", + "annotations": [ + { + "answers": [ + "rock candy", + "rock", + "roc candy" + ], + "en_answers": [ + "rock candy", + "rock", + "roc candy" + ], + "count": 4 + }, + { + "answers": [ + "fish & chips" + ], + "en_answers": [ + "fish & chips" + ], + "count": 1 + }, + { + "answers": [ + "cornish pasty" + ], + "en_answers": [ + "cornish pasty" + ], + "count": 1 + }, + { + "answers": [ + "fudge" + ], + "en_answers": [ + "fudge" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-06": { + "question": "What is the most popular stew in the UK?", + "en_question": "What is the most popular stew in your country?", + "annotations": [ + { + "answers": [ + "beef" + ], + "en_answers": [ + "beef" + ], + "count": 3 + }, + { + "answers": [ + "vegetable" + ], + "en_answers": [ + "vegetable" + ], + "count": 1 + }, + { + "answers": [ + "fish" + ], + "en_answers": [ + "fish" + ], + "count": 1 + }, + { + "answers": [ + "steak and ale" + ], + "en_answers": [ + "steak and ale" + ], + "count": 1 + }, + { + "answers": [ + "casserole" + ], + "en_answers": [ + "casserole" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-11": { + "question": "What is the most common spice/herb used in dishes from the UK?", + "en_question": "What is the most common spice/herb used in dishes from your country?", + "annotations": [ + { + "answers": [ + "parsley" + ], + "en_answers": [ + "parsley" + ], + "count": 2 + }, + { + "answers": [ + "basil" + ], + "en_answers": [ + "basil" + ], + "count": 2 + }, + { + "answers": [ + "pepper", + "salt and pepper" + ], + "en_answers": [ + "pepper", + "salt and pepper" + ], + "count": 2 + }, + { + "answers": [ + "mint" + ], + "en_answers": [ + "mint" + ], + "count": 1 + }, + { + "answers": [ + "tyme" + ], + "en_answers": [ + "tyme" + ], + "count": 1 + }, + { + "answers": [ + "oregano" + ], + "en_answers": [ + "oregano" + ], + "count": 1 + }, + { + "answers": [ + "garlic" + ], + "en_answers": [ + "garlic" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-16": { + "question": "What is the most famous traditional sport in the UK?", + "en_question": "What is the most famous traditional sport in your country?", + "annotations": [ + { + "answers": [ + "football", + "football and rugby", + "soccer" + ], + "en_answers": [ + "football", + "football and rugby", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "cricket" + ], + "en_answers": [ + "cricket" + ], + "count": 2 + }, + { + "answers": [ + "rugby", + "football and rugby" + ], + "en_answers": [ + "rugby", + "football and rugby" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-20": { + "question": "What sport is popular to play on the beach in the UK?", + "en_question": "What sport is popular to play on the beach in your country?", + "annotations": [ + { + "answers": [ + "volleyball" + ], + "en_answers": [ + "volleyball" + ], + "count": 2 + }, + { + "answers": [ + "surfing" + ], + "en_answers": [ + "surfing" + ], + "count": 1 + }, + { + "answers": [ + "body boarding" + ], + "en_answers": [ + "body boarding" + ], + "count": 1 + }, + { + "answers": [ + "swimming" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + }, + { + "answers": [ + "frisbee" + ], + "en_answers": [ + "frisbee" + ], + "count": 1 + }, + { + "answers": [ + "badminton" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "racketball" + ], + "en_answers": [ + "racketball" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-pe-45": { + "question": "What is the usual work schedule during the month of Ramadan in the UK?", + "en_question": "What is the usual work schedule during the month of Ramadan in your country?", + "annotations": [ + { + "answers": [ + "sun set - sun rise" + ], + "en_answers": [ + "sun set - sun rise" + ], + "count": 1 + }, + { + "answers": [ + "no working on friday" + ], + "en_answers": [ + "no working on friday" + ], + "count": 1 + }, + { + "answers": [ + "same as usual" + ], + "en_answers": [ + "same as usual" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "not-applicable": 2, + "no-answer": 1 + } + }, + "New-pe-47": { + "question": "When is Student's Day celebrated in the UK? (Provide in MM/DD format (e.g., 12/31).)", + "en_question": "When is Student's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "11/17" + ], + "en_answers": [ + "11/17" + ], + "count": 2 + } + ], + "idks": { + "idk": 5, + "no-answer": 1, + "not-applicable": 1 + } + }, + "New-pe-49": { + "question": "Where do families gather to pray together in the UK?", + "en_question": "Where do families gather to pray together in your country?", + "annotations": [ + { + "answers": [ + "church", + "chruch" + ], + "en_answers": [ + "church", + "chruch" + ], + "count": 5 + }, + { + "answers": [ + "mosque" + ], + "en_answers": [ + "mosque" + ], + "count": 2 + }, + { + "answers": [ + "temple" + ], + "en_answers": [ + "temple" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-53": { + "question": "What gifts do fathers get on Father's Day (or Parents' Day) in the UK?", + "en_question": "What gifts do fathers get on Father's Day (or Parents' Day) in your country?", + "annotations": [ + { + "answers": [ + "socks" + ], + "en_answers": [ + "socks" + ], + "count": 4 + }, + { + "answers": [ + "beer" + ], + "en_answers": [ + "beer" + ], + "count": 2 + }, + { + "answers": [ + "aftershave" + ], + "en_answers": [ + "aftershave" + ], + "count": 1 + }, + { + "answers": [ + "card" + ], + "en_answers": [ + "card" + ], + "count": 1 + }, + { + "answers": [ + "presents" + ], + "en_answers": [ + "presents" + ], + "count": 1 + }, + { + "answers": [ + "clothes" + ], + "en_answers": [ + "clothes" + ], + "count": 1 + }, + { + "answers": [ + "chocolate" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + }, + { + "answers": [ + "football tickets" + ], + "en_answers": [ + "football tickets" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-54": { + "question": "What gifts do mothers get on Mother's Day (or Parents' Day) in the UK?", + "en_question": "What gifts do mothers get on Mother's Day (or Parents' Day) in your country?", + "annotations": [ + { + "answers": [ + "flowers" + ], + "en_answers": [ + "flowers" + ], + "count": 5 + }, + { + "answers": [ + "chocolates", + "chocolate" + ], + "en_answers": [ + "chocolates", + "chocolate" + ], + "count": 4 + }, + { + "answers": [ + "card" + ], + "en_answers": [ + "card" + ], + "count": 1 + }, + { + "answers": [ + "wine" + ], + "en_answers": [ + "wine" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-59": { + "question": "How many generations typically live together in a household in the UK? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "How many generations typically live together in a household in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-pe-65": { + "question": "How many subjects are taught in secondary schools in the UK? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "How many subjects are taught in secondary schools in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 2 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 2 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-pe-66": { + "question": "What is the most popular after school curricular in primary schools in the UK?", + "en_question": "What is the most popular after school curricular in primary schools in your country?", + "annotations": [ + { + "answers": [ + "football", + "soccer" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "netball" + ], + "en_answers": [ + "netball" + ], + "count": 1 + }, + { + "answers": [ + "guides", + "guides or scouts" + ], + "en_answers": [ + "guides", + "guides or scouts" + ], + "count": 1 + }, + { + "answers": [ + "scouts", + "guides or scouts" + ], + "en_answers": [ + "scouts", + "guides or scouts" + ], + "count": 1 + }, + { + "answers": [ + "drama" + ], + "en_answers": [ + "drama" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-74": { + "question": "How much is the average annual tuition fee for public universities in the UK?", + "en_question": "How much is the average annual tuition fee for public universities in your country?", + "annotations": [ + { + "answers": [ + "£9000", + "9000" + ], + "en_answers": [ + "£9000", + "9000" + ], + "count": 2 + } + ], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-76": { + "question": "What is a popular activity to do in parks in the UK?", + "en_question": "What is a popular activity to do in parks in your country?", + "annotations": [ + { + "answers": [ + "walk" + ], + "en_answers": [ + "walk" + ], + "count": 2 + }, + { + "answers": [ + "run" + ], + "en_answers": [ + "run" + ], + "count": 2 + }, + { + "answers": [ + "picnic" + ], + "en_answers": [ + "picnic" + ], + "count": 1 + }, + { + "answers": [ + "bbq" + ], + "en_answers": [ + "bbq" + ], + "count": 1 + }, + { + "answers": [ + "sports" + ], + "en_answers": [ + "sports" + ], + "count": 1 + }, + { + "answers": [ + "people watch" + ], + "en_answers": [ + "people watch" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-pe-78": { + "question": "What is the name of the most famous film festival held in the UK?", + "en_question": "What is the name of the most famous film festival held in your country?", + "annotations": [ + { + "answers": [ + "bafta", + "bafta film awards" + ], + "en_answers": [ + "bafta", + "bafta film awards" + ], + "count": 2 + }, + { + "answers": [ + "sundance", + "sundance film festival" + ], + "en_answers": [ + "sundance", + "sundance film festival" + ], + "count": 1 + }, + { + "answers": [ + "bfi", + "bfi london film festival", + "lef" + ], + "en_answers": [ + "bfi", + "bfi london film festival", + "lef" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-83": { + "question": "What is the popular card game played during social gatherings in the UK?", + "en_question": "What is the popular card game played during social gatherings in your country?", + "annotations": [ + { + "answers": [ + "poker" + ], + "en_answers": [ + "poker" + ], + "count": 3 + }, + { + "answers": [ + "uno" + ], + "en_answers": [ + "uno" + ], + "count": 2 + }, + { + "answers": [ + "snap" + ], + "en_answers": [ + "snap" + ], + "count": 1 + }, + { + "answers": [ + "blackjack" + ], + "en_answers": [ + "blackjack" + ], + "count": 1 + }, + { + "answers": [ + "cards against humanity" + ], + "en_answers": [ + "cards against humanity" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-85": { + "question": "Where is the most popular tourist destination abroad for people from the UK?", + "en_question": "Where is the most popular tourist destination abroad for people from your country?", + "annotations": [ + { + "answers": [ + "spain" + ], + "en_answers": [ + "spain" + ], + "count": 5 + }, + { + "answers": [ + "france" + ], + "en_answers": [ + "france" + ], + "count": 2 + }, + { + "answers": [ + "greece" + ], + "en_answers": [ + "greece" + ], + "count": 1 + }, + { + "answers": [ + "balearics", + "balearic islands" + ], + "en_answers": [ + "balearics", + "balearic islands" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-86": { + "question": "What is the name of the most famous tower in the UK?", + "en_question": "What is the name of the most famous tower in your country?", + "annotations": [ + { + "answers": [ + "tower of london" + ], + "en_answers": [ + "tower of london" + ], + "count": 2 + }, + { + "answers": [ + "bt tower" + ], + "en_answers": [ + "bt tower" + ], + "count": 1 + }, + { + "answers": [ + "shard" + ], + "en_answers": [ + "shard" + ], + "count": 1 + }, + { + "answers": [ + "the blackpool tower", + "blackpool" + ], + "en_answers": [ + "the blackpool tower", + "blackpool" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-01": { + "question": "What edible insect is eaten most often in the UK?", + "en_question": "What edible insect is eaten most often in your country?", + "annotations": [ + { + "answers": [ + "crickets" + ], + "en_answers": [ + "crickets" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 2, + "no-answer": 0 + } + }, + "New-spme-04": { + "question": "Which agricultural product is exported most often in the UK?", + "en_question": "Which agricultural product is exported most often in your country?", + "annotations": [ + { + "answers": [ + "rape seed" + ], + "en_answers": [ + "rape seed" + ], + "count": 1 + }, + { + "answers": [ + "wheat" + ], + "en_answers": [ + "wheat" + ], + "count": 1 + }, + { + "answers": [ + "poultry" + ], + "en_answers": [ + "poultry" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 2, + "not-applicable": 0 + } + }, + "New-spme-05": { + "question": "What are the most popular sweets in the UK?", + "en_question": "What are the most popular sweets in your country?", + "annotations": [ + { + "answers": [ + "haribo" + ], + "en_answers": [ + "haribo" + ], + "count": 2 + }, + { + "answers": [ + "mars bar" + ], + "en_answers": [ + "mars bar" + ], + "count": 1 + }, + { + "answers": [ + "maltesers" + ], + "en_answers": [ + "maltesers" + ], + "count": 1 + }, + { + "answers": [ + "fruit pastiles" + ], + "en_answers": [ + "fruit pastiles" + ], + "count": 1 + }, + { + "answers": [ + "cadbury chocolate" + ], + "en_answers": [ + "cadbury chocolate" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-spme-15": { + "question": "What is the most popular sports drink in the UK?", + "en_question": "What is the most popular sports drink in your country?", + "annotations": [ + { + "answers": [ + "lucozade", + "lucazade" + ], + "en_answers": [ + "lucozade", + "lucazade" + ], + "count": 5 + }, + { + "answers": [ + "gatorade" + ], + "en_answers": [ + "gatorade" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-27": { + "question": "What is the average education level for people in the UK?", + "en_question": "What is the average education level for people in your country?", + "annotations": [ + { + "answers": [ + "a level", + "a'level", + "a levels", + "a-levels" + ], + "en_answers": [ + "a level", + "a'level", + "a levels", + "a-levels" + ], + "count": 2 + }, + { + "answers": [ + "gcses" + ], + "en_answers": [ + "gcses" + ], + "count": 1 + }, + { + "answers": [ + "undergraduate degree" + ], + "en_answers": [ + "undergraduate degree" + ], + "count": 1 + }, + { + "answers": [ + "senior school" + ], + "en_answers": [ + "senior school" + ], + "count": 1 + }, + { + "answers": [ + "higher education" + ], + "en_answers": [ + "higher education" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-37": { + "question": "Which profession is most commonly studied abroad by students from the UK?", + "en_question": "Which profession is most commonly studied abroad by students from your country?", + "annotations": [ + { + "answers": [ + "medicine" + ], + "en_answers": [ + "medicine" + ], + "count": 1 + }, + { + "answers": [ + "languages" + ], + "en_answers": [ + "languages" + ], + "count": 1 + }, + { + "answers": [ + "business" + ], + "en_answers": [ + "business" + ], + "count": 1 + } + ], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-60": { + "question": "Which day of the week do most families in the UK practice religious activities? (e.g. Monday, Tuesday)", + "en_question": "Which day of the week do most families in your country practice religious activities? (e.g. Monday, Tuesday)", + "annotations": [ + { + "answers": [ + "sunday" + ], + "en_answers": [ + "sunday" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-65": { + "question": "What is the most popular way to celebrate Independence Day in the UK?", + "en_question": "What is the most popular way to celebrate Independence Day in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "New-spme-68": { + "question": "What is the most popular beverage among children in the UK?", + "en_question": "What is the most popular beverage among children in your country?", + "annotations": [ + { + "answers": [ + "cola", + "coca cola", + "coke", + "coca-cola" + ], + "en_answers": [ + "cola", + "coca cola", + "coke", + "coca-cola" + ], + "count": 3 + }, + { + "answers": [ + "orange juice", + "orange" + ], + "en_answers": [ + "orange juice", + "orange" + ], + "count": 2 + }, + { + "answers": [ + "fruit juice" + ], + "en_answers": [ + "fruit juice" + ], + "count": 1 + }, + { + "answers": [ + "milk" + ], + "en_answers": [ + "milk" + ], + "count": 1 + }, + { + "answers": [ + "apple juice" + ], + "en_answers": [ + "apple juice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-76": { + "question": "What is the most popular place in the UK to celebrate Independence Day?", + "en_question": "What is the most popular place in your country to celebrate Independence Day?", + "annotations": [], + "idks": { + "not-applicable": 3, + "no-answer": 2, + "idk": 0 + } + }, + "New-spme-78": { + "question": "What is the name of the song that is typically sung at birthday parties in the UK?", + "en_question": "What is the name of the song that is typically sung at birthday parties in your country?", + "annotations": [ + { + "answers": [ + "happy birthday to you", + "happy birthday" + ], + "en_answers": [ + "happy birthday to you", + "happy birthday" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-01": { + "question": "What snacks are usually sold in front of schools in the UK?", + "en_question": "What snacks are usually sold in front of schools in your country?", + "annotations": [ + { + "answers": [ + "sweets" + ], + "en_answers": [ + "sweets" + ], + "count": 2 + }, + { + "answers": [ + "chips" + ], + "en_answers": [ + "chips" + ], + "count": 1 + }, + { + "answers": [ + "crisps" + ], + "en_answers": [ + "crisps" + ], + "count": 1 + }, + { + "answers": [ + "fizzy pop" + ], + "en_answers": [ + "fizzy pop" + ], + "count": 1 + }, + { + "answers": [ + "cheesestrings" + ], + "en_answers": [ + "cheesestrings" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-su-09": { + "question": "What oil is usually used for cooking in the UK?", + "en_question": "What oil is usually used for cooking in your country?", + "annotations": [ + { + "answers": [ + "olive" + ], + "en_answers": [ + "olive" + ], + "count": 2 + }, + { + "answers": [ + "vegetable" + ], + "en_answers": [ + "vegetable" + ], + "count": 2 + }, + { + "answers": [ + "lard" + ], + "en_answers": [ + "lard" + ], + "count": 1 + }, + { + "answers": [ + "rapeseed" + ], + "en_answers": [ + "rapeseed" + ], + "count": 1 + }, + { + "answers": [ + "sunflower" + ], + "en_answers": [ + "sunflower" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-10": { + "question": "What food is commonly consumed by pregnant women in the UK?", + "en_question": "What food is commonly consumed by pregnant women in your country?", + "annotations": [ + { + "answers": [ + "ice cream" + ], + "en_answers": [ + "ice cream" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 4, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-15": { + "question": "What is the most popular traditional non-alcoholic drink in the UK?", + "en_question": "What is the most popular traditional non-alcoholic drink in your country?", + "annotations": [ + { + "answers": [ + "tea" + ], + "en_answers": [ + "tea" + ], + "count": 2 + }, + { + "answers": [ + "cola", + "coca cola", + "coca-cola", + "coke" + ], + "en_answers": [ + "cola", + "coca cola", + "coca-cola", + "coke" + ], + "count": 2 + }, + { + "answers": [ + "water" + ], + "en_answers": [ + "water" + ], + "count": 1 + }, + { + "answers": [ + "pepsi" + ], + "en_answers": [ + "pepsi" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-17": { + "question": "What sports facilities are generally available in parks in the UK?", + "en_question": "What sports facilities are generally available in parks in your country?", + "annotations": [ + { + "answers": [ + "football pitch", + "football pitches", + "soccer field", + "football field" + ], + "en_answers": [ + "football pitch", + "football pitches", + "soccer field", + "football field" + ], + "count": 3 + }, + { + "answers": [ + "tennis courts" + ], + "en_answers": [ + "tennis courts" + ], + "count": 2 + }, + { + "answers": [ + "running track" + ], + "en_answers": [ + "running track" + ], + "count": 1 + }, + { + "answers": [ + "bowls" + ], + "en_answers": [ + "bowls" + ], + "count": 1 + }, + { + "answers": [ + "playground" + ], + "en_answers": [ + "playground" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-21": { + "question": "What are the common activities that seniors usually do in parks in the UK?", + "en_question": "What are the common activities that seniors usually do in parks in your country?", + "annotations": [ + { + "answers": [ + "bowls", + "lawn bowls" + ], + "en_answers": [ + "bowls", + "lawn bowls" + ], + "count": 4 + }, + { + "answers": [ + "walks" + ], + "en_answers": [ + "walks" + ], + "count": 2 + }, + { + "answers": [ + "cricket", + "crocket" + ], + "en_answers": [ + "cricket", + "crocket" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-24": { + "question": "What sports do parents and children commonly play together in the UK?", + "en_question": "What sports do parents and children commonly play together in your country?", + "annotations": [ + { + "answers": [ + "football", + "soccer" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "rounders" + ], + "en_answers": [ + "rounders" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-28": { + "question": "What colour is associated with the national football team of the UK?", + "en_question": "What color is associated with the national soccer team of your country?", + "annotations": [ + { + "answers": [ + "white" + ], + "en_answers": [ + "white" + ], + "count": 4 + }, + { + "answers": [ + "red" + ], + "en_answers": [ + "red" + ], + "count": 3 + }, + { + "answers": [ + "blue" + ], + "en_answers": [ + "blue" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-33": { + "question": "What is the common dress code for school teachers in the UK?", + "en_question": "What is the common dress code for school teachers in your country?", + "annotations": [ + { + "answers": [ + "casual" + ], + "en_answers": [ + "casual" + ], + "count": 1 + }, + { + "answers": [ + "smart casual" + ], + "en_answers": [ + "smart casual" + ], + "count": 1 + }, + { + "answers": [ + "business attire" + ], + "en_answers": [ + "business attire" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-34": { + "question": "What is the most popular extracurricular activity related to music in schools in the UK?", + "en_question": "What is the most popular extracurricular activity related to music in schools in your country?", + "annotations": [ + { + "answers": [ + "guitar", + "guitar lessons" + ], + "en_answers": [ + "guitar", + "guitar lessons" + ], + "count": 3 + }, + { + "answers": [ + "band", + "playing in a band" + ], + "en_answers": [ + "band", + "playing in a band" + ], + "count": 1 + }, + { + "answers": [ + "music production" + ], + "en_answers": [ + "music production" + ], + "count": 1 + }, + { + "answers": [ + "recorder" + ], + "en_answers": [ + "recorder" + ], + "count": 1 + }, + { + "answers": [ + "choir" + ], + "en_answers": [ + "choir" + ], + "count": 1 + }, + { + "answers": [ + "piano" + ], + "en_answers": [ + "piano" + ], + "count": 1 + }, + { + "answers": [ + "clarinet" + ], + "en_answers": [ + "clarinet" + ], + "count": 1 + }, + { + "answers": [ + "violin" + ], + "en_answers": [ + "violin" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-42": { + "question": "What religion is mainly taught in schools in the UK?", + "en_question": "What religion is mainly taught in schools in your country?", + "annotations": [ + { + "answers": [ + "christianity", + "christianity", + "christian" + ], + "en_answers": [ + "christianity", + "christianity", + "christian" + ], + "count": 5 + }, + { + "answers": [ + "islam", + "muslim" + ], + "en_answers": [ + "islam", + "muslim" + ], + "count": 1 + }, + { + "answers": [ + "catholicism", + "catholic" + ], + "en_answers": [ + "catholicism", + "catholic" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-45": { + "question": "What date is Education Day celebrated in the UK? (Provide in MM/DD format (e.g., 12/31).)", + "en_question": "What date is Education Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "01/24" + ], + "en_answers": [ + "01/24" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 2, + "no-answer": 1 + } + }, + "New-su-50": { + "question": "What is the main occupation of people in mountainous areas in the UK?", + "en_question": "What is the main occupation of people in mountainous areas in your country?", + "annotations": [ + { + "answers": [ + "shepherds", + "shepherd" + ], + "en_answers": [ + "shepherds", + "shepherd" + ], + "count": 2 + }, + { + "answers": [ + "farming" + ], + "en_answers": [ + "farming" + ], + "count": 1 + }, + { + "answers": [ + "hospitality" + ], + "en_answers": [ + "hospitality" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 1 + } + }, + "New-su-51": { + "question": "What is the main occupation of people in coastal areas in the UK?", + "en_question": "What is the main occupation of people in coastal areas in your country?", + "annotations": [ + { + "answers": [ + "fishing" + ], + "en_answers": [ + "fishing" + ], + "count": 2 + }, + { + "answers": [ + "tourism" + ], + "en_answers": [ + "tourism" + ], + "count": 1 + }, + { + "answers": [ + "retail" + ], + "en_answers": [ + "retail" + ], + "count": 1 + }, + { + "answers": [ + "chef" + ], + "en_answers": [ + "chef" + ], + "count": 1 + }, + { + "answers": [ + "cleaner" + ], + "en_answers": [ + "cleaner" + ], + "count": 1 + }, + { + "answers": [ + "service" + ], + "en_answers": [ + "service" + ], + "count": 1 + }, + { + "answers": [ + "hospitality" + ], + "en_answers": [ + "hospitality" + ], + "count": 1 + }, + { + "answers": [ + "lifeboat volunteer" + ], + "en_answers": [ + "lifeboat volunteer" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-57": { + "question": "What is the most common livestock raised in the UK?", + "en_question": "What is the most common livestock raised in your country?", + "annotations": [ + { + "answers": [ + "sheep" + ], + "en_answers": [ + "sheep" + ], + "count": 3 + }, + { + "answers": [ + "cattle" + ], + "en_answers": [ + "cattle" + ], + "count": 2 + }, + { + "answers": [ + "cows" + ], + "en_answers": [ + "cows" + ], + "count": 2 + }, + { + "answers": [ + "pigs" + ], + "en_answers": [ + "pigs" + ], + "count": 1 + }, + { + "answers": [ + "poultry" + ], + "en_answers": [ + "poultry" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-58": { + "question": "What animals are commonly used for agriculture in the UK?", + "en_question": "What animals are commonly used for agriculture in your country?", + "annotations": [ + { + "answers": [ + "sheep" + ], + "en_answers": [ + "sheep" + ], + "count": 5 + }, + { + "answers": [ + "cows" + ], + "en_answers": [ + "cows" + ], + "count": 4 + }, + { + "answers": [ + "pigs" + ], + "en_answers": [ + "pigs" + ], + "count": 2 + }, + { + "answers": [ + "chickens", + "chicken" + ], + "en_answers": [ + "chickens", + "chicken" + ], + "count": 2 + }, + { + "answers": [ + "cattle" + ], + "en_answers": [ + "cattle" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-59": { + "question": "What do farmers in the UK typically wear to protect themselves from the heat whilst farming?", + "en_question": "What do farmers in your country typically wear to protect themselves from the heat whilst farming?", + "annotations": [ + { + "answers": [ + "hats", + "hat" + ], + "en_answers": [ + "hats", + "hat" + ], + "count": 4 + }, + { + "answers": [ + "suncream", + "sunscreen" + ], + "en_answers": [ + "suncream", + "sunscreen" + ], + "count": 3 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-60": { + "question": "What do farmers in the UK usually eat for lunch?", + "en_question": "What do farmers in your country usually eat for lunch?", + "annotations": [ + { + "answers": [ + "ploughman's" + ], + "en_answers": [ + "ploughman's" + ], + "count": 1 + }, + { + "answers": [ + "pie and chips" + ], + "en_answers": [ + "pie and chips" + ], + "count": 1 + }, + { + "answers": [ + "roast" + ], + "en_answers": [ + "roast" + ], + "count": 1 + }, + { + "answers": [ + "sandwiches" + ], + "en_answers": [ + "sandwiches" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 3, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-71": { + "question": "What gifts do parents generally give to their children for their birthdays in the UK?", + "en_question": "What gifts do parents generally give to their children for their birthdays in your country?", + "annotations": [ + { + "answers": [ + "toys" + ], + "en_answers": [ + "toys" + ], + "count": 2 + }, + { + "answers": [ + "money" + ], + "en_answers": [ + "money" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-75": { + "question": "What type of vehicle do most families in the UK generally own?", + "en_question": "What type of vehicle do most families in your country generally own?", + "annotations": [ + { + "answers": [ + "car" + ], + "en_answers": [ + "car" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-77": { + "question": "What is usually given to the children during Eid in the UK?", + "en_question": "What is usually given to the children during Eid in your country?", + "annotations": [ + { + "answers": [ + "presents", + "gifts" + ], + "en_answers": [ + "presents", + "gifts" + ], + "count": 2 + }, + { + "answers": [ + "money" + ], + "en_answers": [ + "money" + ], + "count": 1 + }, + { + "answers": [ + "food" + ], + "en_answers": [ + "food" + ], + "count": 1 + }, + { + "answers": [ + "milk" + ], + "en_answers": [ + "milk" + ], + "count": 1 + } + ], + "idks": { + "idk": 5, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-su-81": { + "question": "What clothes do grooms usually wear at weddings in the UK?", + "en_question": "What clothes do grooms usually wear at weddings in your country?", + "annotations": [ + { + "answers": [ + "suit", + "suits" + ], + "en_answers": [ + "suit", + "suits" + ], + "count": 4 + }, + { + "answers": [ + "tuxedo" + ], + "en_answers": [ + "tuxedo" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-82": { + "question": "What clothes do brides usually wear at weddings in the UK?", + "en_question": "What clothes do brides usually wear at weddings in your country?", + "annotations": [ + { + "answers": [ + "wedding dress", + "white dress", + "dress" + ], + "en_answers": [ + "wedding dress", + "white dress", + "dress" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-83": { + "question": "What food is usually served at weddings in the UK?", + "en_question": "What food is usually served at weddings in your country?", + "annotations": [ + { + "answers": [ + "cake" + ], + "en_answers": [ + "cake" + ], + "count": 3 + }, + { + "answers": [ + "wedding breakfast" + ], + "en_answers": [ + "wedding breakfast" + ], + "count": 1 + }, + { + "answers": [ + "buffet" + ], + "en_answers": [ + "buffet" + ], + "count": 1 + }, + { + "answers": [ + "beef" + ], + "en_answers": [ + "beef" + ], + "count": 1 + }, + { + "answers": [ + "chicken" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-86": { + "question": "What is the most famous government building in the UK?", + "en_question": "What is the most famous government building in your country?", + "annotations": [ + { + "answers": [ + "houses of parliament" + ], + "en_answers": [ + "houses of parliament" + ], + "count": 4 + }, + { + "answers": [ + "10 downing street", + "downing street" + ], + "en_answers": [ + "10 downing street", + "downing street" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-88": { + "question": "What is the most popular music genre among the younger population in the UK?", + "en_question": "What is the most popular music genre among the younger population in your country?", + "annotations": [ + { + "answers": [ + "pop" + ], + "en_answers": [ + "pop" + ], + "count": 5 + }, + { + "answers": [ + "rock" + ], + "en_answers": [ + "rock" + ], + "count": 1 + }, + { + "answers": [ + "hip-hop" + ], + "en_answers": [ + "hip-hop" + ], + "count": 1 + }, + { + "answers": [ + "phonk" + ], + "en_answers": [ + "phonk" + ], + "count": 1 + }, + { + "answers": [ + "edm" + ], + "en_answers": [ + "edm" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-02": { + "question": "What time do secondary students in the UK typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "en_question": "What time do secondary students in your country typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "15:30", + "1530" + ], + "en_answers": [ + "15:30", + "1530" + ], + "count": 4 + }, + { + "answers": [ + "16:00", + "1600" + ], + "en_answers": [ + "16:00", + "1600" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-03": { + "question": "At what age do people in the UK typically go to university? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "At what age do people in your country typically go to university? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "18", + "18 - 19" + ], + "en_answers": [ + "18", + "18 - 19" + ], + "count": 5 + }, + { + "answers": [ + "19", + "18 - 19" + ], + "en_answers": [ + "19", + "18 - 19" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-06": { + "question": "From what age do people need to attend compulsory education in the UK? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "From what age do people need to attend compulsory education in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-09": { + "question": "How many days a week do children attend school in the UK? (Provide Arabic numerals (0~7) only.)", + "en_question": "How many days a week do children attend school in your country? (Provide Arabic numerals (0~7) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-11": { + "question": "In the UK, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "In your country, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-12": { + "question": "What is the top university in the UK? (Provide the official name.)", + "en_question": "What is the top university in your country? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "oxford" + ], + "en_answers": [ + "oxford" + ], + "count": 5 + }, + { + "answers": [ + "cambridge" + ], + "en_answers": [ + "cambridge" + ], + "count": 4 + }, + { + "answers": [ + "durham" + ], + "en_answers": [ + "durham" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-13": { + "question": "At what age do most people in the UK graduate from university? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "At what age do most people in your country graduate from university? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "21" + ], + "en_answers": [ + "21" + ], + "count": 4 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + }, + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-15": { + "question": "At what age do children in the UK generally start secondary school? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "At what age do children in your country generally start secondary school? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "11" + ], + "en_answers": [ + "11" + ], + "count": 4 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-17": { + "question": "How many hours a week does a full-time worker in the UK typically work? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "How many hours a week does a full-time worker in your country typically work? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 2 + }, + { + "answers": [ + "37" + ], + "en_answers": [ + "37" + ], + "count": 1 + }, + { + "answers": [ + "38" + ], + "en_answers": [ + "38" + ], + "count": 1 + }, + { + "answers": [ + "36" + ], + "en_answers": [ + "36" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-19": { + "question": "How many days a week does a full-time worker work in the UK? (Provide Arabic numerals (0~7) only.)", + "en_question": "How many days a week does a full-time worker work in your country? (Provide Arabic numerals (0~7) only.)", + "annotations": [ + { + "answers": [ + "5", + "5 - 7" + ], + "en_answers": [ + "5", + "5 - 7" + ], + "count": 4 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + }, + { + "answers": [ + "7", + "5 - 7" + ], + "en_answers": [ + "7", + "5 - 7" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-20": { + "question": "At what age do most people start working in the UK? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "At what age do most people start working in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 5 + }, + { + "answers": [ + "21" + ], + "en_answers": [ + "21" + ], + "count": 2 + }, + { + "answers": [ + "16" + ], + "en_answers": [ + "16" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-21": { + "question": "From what age is an individual allowed to work in the UK? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "From what age is an individual allowed to work in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "16" + ], + "en_answers": [ + "16" + ], + "count": 5 + }, + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 2 + }, + { + "answers": [ + "14" + ], + "en_answers": [ + "14" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-31": { + "question": "What do people in the UK traditionally eat on Christmas Day?", + "en_question": "What do people in your country traditionally eat on Christmas Day?", + "annotations": [ + { + "answers": [ + "turkey", + "turkey roast", + "turkey roast dinner" + ], + "en_answers": [ + "turkey", + "turkey roast", + "turkey roast dinner" + ], + "count": 5 + }, + { + "answers": [ + "stuffing" + ], + "en_answers": [ + "stuffing" + ], + "count": 1 + }, + { + "answers": [ + "yorkshire puddings" + ], + "en_answers": [ + "yorkshire puddings" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-37": { + "question": "What is the name of the day of the year where people in the UK celebrate love and romance?", + "en_question": "What is the name of the day of the year where people in your country celebrate love and romance?", + "annotations": [ + { + "answers": [ + "valentine's day", + "valentines day" + ], + "en_answers": [ + "valentine's day", + "valentines day" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-40": { + "question": "What is the most popular Christmas song in the UK?", + "en_question": "What is the most popular Christmas song in your country?", + "annotations": [ + { + "answers": [ + "silent night" + ], + "en_answers": [ + "silent night" + ], + "count": 2 + }, + { + "answers": [ + "white christmas" + ], + "en_answers": [ + "white christmas" + ], + "count": 1 + }, + { + "answers": [ + "jingle bells" + ], + "en_answers": [ + "jingle bells" + ], + "count": 1 + }, + { + "answers": [ + "merry christmas everybody" + ], + "en_answers": [ + "merry christmas everybody" + ], + "count": 1 + }, + { + "answers": [ + "wham last christmas" + ], + "en_answers": [ + "wham last christmas" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-04": { + "question": "How many terms are there each academic year at secondary schools in the UK? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "en_question": "How many semesters are there each academic year at high schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-05": { + "question": "In which month does the new school year typically begin in the UK? (Provide Arabic numerals (1~12) only.)", + "en_question": "In which month does the new school year typically begin in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-06": { + "question": "When is National Teacher's Day commemorated in the UK? (Provide in MM/DD format (e.g., 12/31).)", + "en_question": "When is National Teacher's Day commemorated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "10/05" + ], + "en_answers": [ + "10/05" + ], + "count": 2 + } + ], + "idks": { + "idk": 8, + "i dont know when it is ": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-11": { + "question": "At what time does primary school start in the UK? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "en_question": "At what time does elementary school start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "09:00", + "0900" + ], + "en_answers": [ + "09:00", + "0900" + ], + "count": 4 + }, + { + "answers": [ + "08:30" + ], + "en_answers": [ + "08:30" + ], + "count": 1 + }, + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-20": { + "question": "When is Children's Day celebrated in the UK? (Provide in MM/DD format (e.g., 12/31).)", + "en_question": "When is Children's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "05/12" + ], + "en_answers": [ + "05/12" + ], + "count": 2 + } + ], + "idks": { + "idk": 9, + "not-applicable": 2, + "no-answer": 0 + } + }, + "Nu-in-40": { + "question": "Which city is the main destination for job seekers in the UK?", + "en_question": "Which city is the main destination for job seekers in your country?", + "annotations": [ + { + "answers": [ + "london" + ], + "en_answers": [ + "london" + ], + "count": 5 + }, + { + "answers": [ + "manchester" + ], + "en_answers": [ + "manchester" + ], + "count": 1 + }, + { + "answers": [ + "birmingham" + ], + "en_answers": [ + "birmingham" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-1": { + "question": "What is the UK's most popular fast food chain?", + "en_question": "What is your country's most popular fast food chain?", + "annotations": [ + { + "answers": [ + "mcdonalds", + "mcdonald's" + ], + "en_answers": [ + "mcdonalds", + "mcdonald's" + ], + "count": 5 + }, + { + "answers": [ + "burger king" + ], + "en_answers": [ + "burger king" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-13": { + "question": "What is the food that is most divisive (either love or hate) in the UK?", + "en_question": "What is the food that is most divisive (either love or hate) in your country?", + "annotations": [ + { + "answers": [ + "marmite" + ], + "en_answers": [ + "marmite" + ], + "count": 3 + }, + { + "answers": [ + "onion" + ], + "en_answers": [ + "onion" + ], + "count": 1 + }, + { + "answers": [ + "brussel sprouts" + ], + "en_answers": [ + "brussel sprouts" + ], + "count": 1 + }, + { + "answers": [ + "sushi" + ], + "en_answers": [ + "sushi" + ], + "count": 1 + }, + { + "answers": [ + "pineapple on pizza" + ], + "en_answers": [ + "pineapple on pizza" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-16": { + "question": "What is the most popular football team among the people from the UK?", + "en_question": "What is the most popular soccer team among the people from your country?", + "annotations": [ + { + "answers": [ + "manchester united", + "man united", + "manchester utd" + ], + "en_answers": [ + "manchester united", + "man united", + "manchester utd" + ], + "count": 4 + }, + { + "answers": [ + "liverpool" + ], + "en_answers": [ + "liverpool" + ], + "count": 2 + }, + { + "answers": [ + "celtic" + ], + "en_answers": [ + "celtic" + ], + "count": 1 + }, + { + "answers": [ + "manchester city" + ], + "en_answers": [ + "manchester city" + ], + "count": 1 + }, + { + "answers": [ + "arsenal" + ], + "en_answers": [ + "arsenal" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Sa-en-22": { + "question": "What is the most famous university in the UK known for its sports team?", + "en_question": "What is the most famous university in your country known for its sports team?", + "annotations": [ + { + "answers": [ + "oxford" + ], + "en_answers": [ + "oxford" + ], + "count": 4 + }, + { + "answers": [ + "cambridge" + ], + "en_answers": [ + "cambridge" + ], + "count": 4 + }, + { + "answers": [ + "durham" + ], + "en_answers": [ + "durham" + ], + "count": 1 + }, + { + "answers": [ + "st andrews" + ], + "en_answers": [ + "st andrews" + ], + "count": 1 + }, + { + "answers": [ + "loughborough" + ], + "en_answers": [ + "loughborough" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-31": { + "question": "What is the UK's most popular family pet?", + "en_question": "What is your country's most popular family pet?", + "annotations": [ + { + "answers": [ + "dog" + ], + "en_answers": [ + "dog" + ], + "count": 5 + }, + { + "answers": [ + "cat" + ], + "en_answers": [ + "cat" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-32": { + "question": "What is the most popular family TV show in the UK?", + "en_question": "What is the most popular family TV show in your country?", + "annotations": [ + { + "answers": [ + "ant & dec", + "ant & dec's saturday night takeaway" + ], + "en_answers": [ + "ant & dec", + "ant & dec's saturday night takeaway" + ], + "count": 2 + }, + { + "answers": [ + "eastenders" + ], + "en_answers": [ + "eastenders" + ], + "count": 1 + }, + { + "answers": [ + "coronation street" + ], + "en_answers": [ + "coronation street" + ], + "count": 1 + }, + { + "answers": [ + "emmerdale" + ], + "en_answers": [ + "emmerdale" + ], + "count": 1 + }, + { + "answers": [ + "britain's got talent" + ], + "en_answers": [ + "britain's got talent" + ], + "count": 1 + }, + { + "answers": [ + "michael mcintyre's the wheel" + ], + "en_answers": [ + "michael mcintyre's the wheel" + ], + "count": 1 + }, + { + "answers": [ + "strictly come dancing" + ], + "en_answers": [ + "strictly come dancing" + ], + "count": 1 + }, + { + "answers": [ + "i'm a celebrity" + ], + "en_answers": [ + "i'm a celebrity" + ], + "count": 1 + }, + { + "answers": [ + "doctor who" + ], + "en_answers": [ + "doctor who" + ], + "count": 1 + }, + { + "answers": [ + "sherlock holmes" + ], + "en_answers": [ + "sherlock holmes" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-37": { + "question": "What is the most popular family boardgame in the UK?", + "en_question": "What is the most popular family boardgame in your country?", + "annotations": [ + { + "answers": [ + "monopoly", + "monopoly or scrabble" + ], + "en_answers": [ + "monopoly", + "monopoly or scrabble" + ], + "count": 5 + }, + { + "answers": [ + "ludo" + ], + "en_answers": [ + "ludo" + ], + "count": 2 + }, + { + "answers": [ + "scrabble", + "monopoly or scrabble" + ], + "en_answers": [ + "scrabble", + "monopoly or scrabble" + ], + "count": 2 + }, + { + "answers": [ + "game of life" + ], + "en_answers": [ + "game of life" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-6": { + "question": "What is the most popular takeaway food in the UK?", + "en_question": "What is the most popular takeaway food in your country?", + "annotations": [ + { + "answers": [ + "indian" + ], + "en_answers": [ + "indian" + ], + "count": 3 + }, + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 2 + }, + { + "answers": [ + "indian curry" + ], + "en_answers": [ + "indian curry" + ], + "count": 1 + }, + { + "answers": [ + "fish and chips", + "fish & chips" + ], + "en_answers": [ + "fish and chips", + "fish & chips" + ], + "count": 1 + }, + { + "answers": [ + "kebab pizza" + ], + "en_answers": [ + "kebab pizza" + ], + "count": 1 + }, + { + "answers": [ + "chinese" + ], + "en_answers": [ + "chinese" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-7": { + "question": "What are popular snacks in the UK?", + "en_question": "What are popular snacks in your country?", + "annotations": [ + { + "answers": [ + "crisps" + ], + "en_answers": [ + "crisps" + ], + "count": 4 + }, + { + "answers": [ + "chocolate" + ], + "en_answers": [ + "chocolate" + ], + "count": 2 + }, + { + "answers": [ + "biscuits" + ], + "en_answers": [ + "biscuits" + ], + "count": 1 + }, + { + "answers": [ + "yoghurt" + ], + "en_answers": [ + "yoghurt" + ], + "count": 1 + }, + { + "answers": [ + "fruit" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Sa-en-9": { + "question": "What do people from the UK eat at the beach?", + "en_question": "What do people from your country eat at the beach?", + "annotations": [ + { + "answers": [ + "ice cream" + ], + "en_answers": [ + "ice cream" + ], + "count": 3 + }, + { + "answers": [ + "fish and chips", + "fish & chips" + ], + "en_answers": [ + "fish and chips", + "fish & chips" + ], + "count": 2 + }, + { + "answers": [ + "chips" + ], + "en_answers": [ + "chips" + ], + "count": 1 + }, + { + "answers": [ + "cheese sandwiches" + ], + "en_answers": [ + "cheese sandwiches" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-10": { + "question": "At what age do men usually get married in the UK? (Provide Arabic numerals (e.g., 20) only.)", + "en_question": "At what age do men usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 2 + }, + { + "answers": [ + "27" + ], + "en_answers": [ + "27" + ], + "count": 2 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + }, + { + "answers": [ + "28" + ], + "en_answers": [ + "28" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ta-pe-11": { + "question": "At what age do women usually get married in the UK? (Provide Arabic numerals (e.g., 20) only.)", + "en_question": "At what age do women usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 2 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 2 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 3, + "idk": 0, + "not-applicable": 0 + } + }, + "Ta-pe-13": { + "question": "In your parents' generation, what was the average number of members in their family in the UK? (Provide Arabic numerals (e.g., 20) only.)", + "en_question": "In your parents' generation, what was the average number of members in their family in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 2 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-17": { + "question": "In the Olympic Games, which sport is the most popular in the UK?", + "en_question": "In the Olympic Games, which sport is the most popular in your country?", + "annotations": [ + { + "answers": [ + "athletics" + ], + "en_answers": [ + "athletics" + ], + "count": 5 + }, + { + "answers": [ + "football", + "soccer" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "swimming" + ], + "en_answers": [ + "swimming" + ], + "count": 2 + }, + { + "answers": [ + "cycling" + ], + "en_answers": [ + "cycling" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-21": { + "question": "Where do children usually play football in the UK?", + "en_question": "Where do children usually play soccer in your country?", + "annotations": [ + { + "answers": [ + "park", + "local parks", + "the park" + ], + "en_answers": [ + "park", + "local parks", + "the park" + ], + "count": 3 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ta-pe-22": { + "question": "Which daily exercise is popular among women in the UK?", + "en_question": "Which daily exercise is popular among women in your country?", + "annotations": [ + { + "answers": [ + "yoga" + ], + "en_answers": [ + "yoga" + ], + "count": 3 + }, + { + "answers": [ + "walking" + ], + "en_answers": [ + "walking" + ], + "count": 2 + }, + { + "answers": [ + "swimming" + ], + "en_answers": [ + "swimming" + ], + "count": 2 + }, + { + "answers": [ + "jogging" + ], + "en_answers": [ + "jogging" + ], + "count": 1 + }, + { + "answers": [ + "zumba" + ], + "en_answers": [ + "zumba" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-23": { + "question": "Which daily exercise is popular among men in the UK?", + "en_question": "Which daily exercise is popular among men in your country?", + "annotations": [ + { + "answers": [ + "running" + ], + "en_answers": [ + "running" + ], + "count": 4 + }, + { + "answers": [ + "biking" + ], + "en_answers": [ + "biking" + ], + "count": 1 + }, + { + "answers": [ + "football", + "soccer" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "weight lifting" + ], + "en_answers": [ + "weight lifting" + ], + "count": 1 + }, + { + "answers": [ + "sit-ups" + ], + "en_answers": [ + "sit-ups" + ], + "count": 1 + }, + { + "answers": [ + "push-ups" + ], + "en_answers": [ + "push-ups" + ], + "count": 1 + }, + { + "answers": [ + "jogging" + ], + "en_answers": [ + "jogging" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-25": { + "question": "What is the most famous rivalry in a national sports league in the UK? (e.g., ___ vs ___)", + "en_question": "What is the most famous rivalry in a national sports league in your country? (e.g., ___ vs ___)", + "annotations": [ + { + "answers": [ + "england vs scotland", + "scotland vs england" + ], + "en_answers": [ + "england vs scotland", + "scotland vs england" + ], + "count": 2 + }, + { + "answers": [ + "manchester city versus manchester united", + "manchester united vs manchester city" + ], + "en_answers": [ + "manchester city versus manchester united", + "manchester united vs manchester city" + ], + "count": 2 + }, + { + "answers": [ + "manchester united vs liverpool" + ], + "en_answers": [ + "manchester united vs liverpool" + ], + "count": 1 + }, + { + "answers": [ + "rangers vs celtic" + ], + "en_answers": [ + "rangers vs celtic" + ], + "count": 1 + }, + { + "answers": [ + "arsenal vs tottenham" + ], + "en_answers": [ + "arsenal vs tottenham" + ], + "count": 1 + }, + { + "answers": [ + "sheffield wednesday vs sheffield united" + ], + "en_answers": [ + "sheffield wednesday vs sheffield united" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-29": { + "question": "Which professional sport is the highest paying in the UK?", + "en_question": "Which professional sport is the highest paying in your country?", + "annotations": [ + { + "answers": [ + "football", + "footballer", + "soccer" + ], + "en_answers": [ + "football", + "footballer", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "boxing" + ], + "en_answers": [ + "boxing" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-30": { + "question": "What is/was the most popular sports-related TV program in the UK?", + "en_question": "What is/was the most popular sports-related TV program in your country?", + "annotations": [ + { + "answers": [ + "match of the day" + ], + "en_answers": [ + "match of the day" + ], + "count": 5 + }, + { + "answers": [ + "grandstand" + ], + "en_answers": [ + "grandstand" + ], + "count": 1 + }, + { + "answers": [ + "soccer saturday" + ], + "en_answers": [ + "soccer saturday" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-32": { + "question": "What day of the year is usually dedicated to fireworks in the UK?", + "en_question": "What day of the year is usually dedicated to fireworks in your country?", + "annotations": [ + { + "answers": [ + "5th november", + "5th nov", + "guy fawkes night", + "guy fawkes day", + "bonfire night", + "fireworks night", + "5 november", + "11/5" + ], + "en_answers": [ + "5th november", + "5th nov", + "guy fawkes night", + "guy fawkes day", + "bonfire night", + "fireworks night", + "5 november", + "11/5" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-37": { + "question": "What is the common symbol of New Year's Eve that is usually found in the UK?", + "en_question": "What is the common symbol of New Year's Eve that is usually found in your country?", + "annotations": [ + { + "answers": [ + "fireworks" + ], + "en_answers": [ + "fireworks" + ], + "count": 2 + }, + { + "answers": [ + "big ben" + ], + "en_answers": [ + "big ben" + ], + "count": 2 + }, + { + "answers": [ + "auld lang syne", + "auld lang syne singing" + ], + "en_answers": [ + "auld lang syne", + "auld lang syne singing" + ], + "count": 2 + }, + { + "answers": [ + "champagne" + ], + "en_answers": [ + "champagne" + ], + "count": 1 + }, + { + "answers": [ + "mistletoe" + ], + "en_answers": [ + "mistletoe" + ], + "count": 1 + }, + { + "answers": [ + "clocks" + ], + "en_answers": [ + "clocks" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-42": { + "question": "What food do people from the UK usually eat on New Year's Eve?", + "en_question": "What food do people from your country usually eat on New Year's Eve?", + "annotations": [ + { + "answers": [ + "party snacks" + ], + "en_answers": [ + "party snacks" + ], + "count": 1 + }, + { + "answers": [ + "spring rolls" + ], + "en_answers": [ + "spring rolls" + ], + "count": 1 + }, + { + "answers": [ + "cakes" + ], + "en_answers": [ + "cakes" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 4, + "idk": 1, + "not-applicable": 0 + } + }, + "Ta-pe-45": { + "question": "What is usually eaten during the celebration of the longest night of the year in the UK?", + "en_question": "What is usually eaten during the celebration of the longest night of the year in your country?", + "annotations": [ + { + "answers": [ + "bbq" + ], + "en_answers": [ + "bbq" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "It's not generally celebrated but pagan groups and New Agers might have Spelt bread, mead and a gigantic hog roast": 1, + "idk": 2, + "no-answer": 0 + } + }, + "Th-en-01": { + "question": "What is the most popular summer sport in the UK?", + "en_question": "What is the most popular summer sport in your country?", + "annotations": [ + { + "answers": [ + "cricket" + ], + "en_answers": [ + "cricket" + ], + "count": 3 + }, + { + "answers": [ + "tennis" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + }, + { + "answers": [ + "football", + "soccer" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "rugby" + ], + "en_answers": [ + "rugby" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-03": { + "question": "What is the most popular professional sports league in the UK?", + "en_question": "What is the most popular professional sports league in your country?", + "annotations": [ + { + "answers": [ + "english premier league", + "premiership", + "premier league" + ], + "en_answers": [ + "english premier league", + "premiership", + "premier league" + ], + "count": 4 + }, + { + "answers": [ + "the championship", + "efl championship" + ], + "en_answers": [ + "the championship", + "efl championship" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-05": { + "question": "What is the most popular women's sports team in the UK?", + "en_question": "What is the most popular women's sports team in your country?", + "annotations": [ + { + "answers": [ + "england women's football team", + "england football team", + "lionesses", + "england lioness/ football", + "england womens football team", + "english women's football team" + ], + "en_answers": [ + "england women's football team", + "england football team", + "lionesses", + "england lioness/ football", + "england womens football team", + "english women's football team" + ], + "count": 5 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-09": { + "question": "What is the most popular tournament in the UK?", + "en_question": "What is the most popular tournament in your country?", + "annotations": [ + { + "answers": [ + "premier league", + "football" + ], + "en_answers": [ + "premier league", + "football" + ], + "count": 3 + }, + { + "answers": [ + "fa cup", + "facup" + ], + "en_answers": [ + "fa cup", + "facup" + ], + "count": 2 + }, + { + "answers": [ + "wimbledon" + ], + "en_answers": [ + "wimbledon" + ], + "count": 1 + }, + { + "answers": [ + "cheltenham", + "cheltenham festival", + "cheltenham races", + "cheltence horse racing" + ], + "en_answers": [ + "cheltenham", + "cheltenham festival", + "cheltenham races", + "cheltence horse racing" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-11": { + "question": "Who is the most popular sportperson in the UK?", + "en_question": "Who is the most popular sportperson in your country?", + "annotations": [ + { + "answers": [ + "ian wright" + ], + "en_answers": [ + "ian wright" + ], + "count": 1 + }, + { + "answers": [ + "gary lineker", + "gary linekar" + ], + "en_answers": [ + "gary lineker", + "gary linekar" + ], + "count": 1 + }, + { + "answers": [ + "erling haaland" + ], + "en_answers": [ + "erling haaland" + ], + "count": 1 + }, + { + "answers": [ + "harry kane" + ], + "en_answers": [ + "harry kane" + ], + "count": 1 + }, + { + "answers": [ + "david beckham" + ], + "en_answers": [ + "david beckham" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-12": { + "question": "In which sport has the UK been most successful in international competitions?", + "en_question": "In which sport has your country been most successful in international competitions?", + "annotations": [ + { + "answers": [ + "football", + "soccer" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "rugby" + ], + "en_answers": [ + "rugby" + ], + "count": 2 + }, + { + "answers": [ + "cricket" + ], + "en_answers": [ + "cricket" + ], + "count": 2 + }, + { + "answers": [ + "tennis" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-15": { + "question": "What is the most popular winter sport in the UK?", + "en_question": "What is the most popular winter sport in your country?", + "annotations": [ + { + "answers": [ + "rugby" + ], + "en_answers": [ + "rugby" + ], + "count": 2 + }, + { + "answers": [ + "skiing", + "skiing/snowboarding" + ], + "en_answers": [ + "skiing", + "skiing/snowboarding" + ], + "count": 2 + }, + { + "answers": [ + "football", + "soccer" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "snowboarding", + "skiing/snowboarding" + ], + "en_answers": [ + "snowboarding", + "skiing/snowboarding" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-19": { + "question": "What is a city or region in the UK known for manufacturing industry?", + "en_question": "What is a city or region in your country known for manufacturing industry?", + "annotations": [ + { + "answers": [ + "sheffield" + ], + "en_answers": [ + "sheffield" + ], + "count": 1 + }, + { + "answers": [ + "west midlands" + ], + "en_answers": [ + "west midlands" + ], + "count": 1 + }, + { + "answers": [ + "yorkshire" + ], + "en_answers": [ + "yorkshire" + ], + "count": 1 + }, + { + "answers": [ + "lancashire" + ], + "en_answers": [ + "lancashire" + ], + "count": 1 + }, + { + "answers": [ + "merseyside" + ], + "en_answers": [ + "merseyside" + ], + "count": 1 + }, + { + "answers": [ + "manchester" + ], + "en_answers": [ + "manchester" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-21": { + "question": "What is regarded as the most important perk typically offered to employees in the UK?", + "en_question": "What is regarded as the most important perk typically offered to employees in your country?", + "annotations": [ + { + "answers": [ + "bonus", + "a monetary bonus" + ], + "en_answers": [ + "bonus", + "a monetary bonus" + ], + "count": 2 + }, + { + "answers": [ + "free lunches" + ], + "en_answers": [ + "free lunches" + ], + "count": 1 + }, + { + "answers": [ + "free refreshments" + ], + "en_answers": [ + "free refreshments" + ], + "count": 1 + }, + { + "answers": [ + "pension" + ], + "en_answers": [ + "pension" + ], + "count": 1 + }, + { + "answers": [ + "healthcare" + ], + "en_answers": [ + "healthcare" + ], + "count": 1 + }, + { + "answers": [ + "additional time off work" + ], + "en_answers": [ + "additional time off work" + ], + "count": 1 + }, + { + "answers": [ + "annual leave" + ], + "en_answers": [ + "annual leave" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-22": { + "question": "What was the most catastrophic economic period for the UK?", + "en_question": "What was the most catastrophic economic period for your country?", + "annotations": [ + { + "answers": [ + "2020-2024", + "the current period" + ], + "en_answers": [ + "2020-2024", + "the current period" + ], + "count": 2 + }, + { + "answers": [ + "1920-1939", + "the great depression", + "1929-1939" + ], + "en_answers": [ + "1920-1939", + "the great depression", + "1929-1939" + ], + "count": 2 + }, + { + "answers": [ + "2000s" + ], + "en_answers": [ + "2000s" + ], + "count": 1 + }, + { + "answers": [ + "1970-1997" + ], + "en_answers": [ + "1970-1997" + ], + "count": 1 + }, + { + "answers": [ + "1970s", + "1970s 1980s", + "70s" + ], + "en_answers": [ + "1970s", + "1970s 1980s", + "70s" + ], + "count": 1 + }, + { + "answers": [ + "1980s", + "1970s 1980s", + "80s" + ], + "en_answers": [ + "1980s", + "1970s 1980s", + "80s" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-24": { + "question": "What region in the UK is a major hub for tech workers and start ups?", + "en_question": "What region in your country is a major hub for tech workers and start ups?", + "annotations": [ + { + "answers": [ + "london" + ], + "en_answers": [ + "london" + ], + "count": 4 + }, + { + "answers": [ + "cambridge" + ], + "en_answers": [ + "cambridge" + ], + "count": 1 + }, + { + "answers": [ + "manchester" + ], + "en_answers": [ + "manchester" + ], + "count": 1 + }, + { + "answers": [ + "birmingham" + ], + "en_answers": [ + "birmingham" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-27": { + "question": "What is the most important industry in the UK?", + "en_question": "What is the most important industry in your country?", + "annotations": [ + { + "answers": [ + "manufacturing", + "used to be manufacturing but not idea these days" + ], + "en_answers": [ + "manufacturing", + "used to be manufacturing but not idea these days" + ], + "count": 2 + }, + { + "answers": [ + "pharmaceutical" + ], + "en_answers": [ + "pharmaceutical" + ], + "count": 1 + }, + { + "answers": [ + "finance" + ], + "en_answers": [ + "finance" + ], + "count": 1 + }, + { + "answers": [ + "software development" + ], + "en_answers": [ + "software development" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Th-en-35": { + "question": "Which one of the daily meals is commonly shared with family members in the UK? (e.g., breakfast, lunch, dinner)", + "en_question": "Which one of the daily meals is commonly shared with family members in your country? (e.g., breakfast, lunch, dinner)", + "annotations": [ + { + "answers": [ + "dinner", + "tea" + ], + "en_answers": [ + "dinner", + "tea" + ], + "count": 5 + }, + { + "answers": [ + "breakfast" + ], + "en_answers": [ + "breakfast" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-36": { + "question": "What is a popular family activity with a child to do on weekends in the UK?", + "en_question": "What is a popular family activity with a child to do on weekends in your country?", + "annotations": [ + { + "answers": [ + "go to the zoo", + "zoo" + ], + "en_answers": [ + "go to the zoo", + "zoo" + ], + "count": 2 + }, + { + "answers": [ + "park", + "go to the park" + ], + "en_answers": [ + "park", + "go to the park" + ], + "count": 2 + }, + { + "answers": [ + "walks" + ], + "en_answers": [ + "walks" + ], + "count": 1 + }, + { + "answers": [ + "football", + "soccer" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "swimming pool" + ], + "en_answers": [ + "swimming pool" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-37": { + "question": "At what age do children typically become independent from their parents in the UK? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "At what age do children typically become independent from their parents in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 4 + }, + { + "answers": [ + "16" + ], + "en_answers": [ + "16" + ], + "count": 2 + }, + { + "answers": [ + "21" + ], + "en_answers": [ + "21" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-38": { + "question": "What is the most important family holiday in the UK?", + "en_question": "What is the most important family holiday in your country?", + "annotations": [ + { + "answers": [ + "christmas" + ], + "en_answers": [ + "christmas" + ], + "count": 4 + }, + { + "answers": [ + "easter" + ], + "en_answers": [ + "easter" + ], + "count": 2 + }, + { + "answers": [ + "summer holidays", + "summer vacation" + ], + "en_answers": [ + "summer holidays", + "summer vacation" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-39": { + "question": "What is a popular family game in the UK?", + "en_question": "What is a popular family game in your country?", + "annotations": [ + { + "answers": [ + "monopoly" + ], + "en_answers": [ + "monopoly" + ], + "count": 4 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-41": { + "question": "What is the average age for couples to have their first child in the UK? (Provide Arabic numerals (e.g., 20) only.)", + "en_question": "What is the average age for couples to have their first child in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 2 + }, + { + "answers": [ + "34" + ], + "en_answers": [ + "34" + ], + "count": 1 + }, + { + "answers": [ + "26" + ], + "en_answers": [ + "26" + ], + "count": 1 + }, + { + "answers": [ + "28" + ], + "en_answers": [ + "28" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-43": { + "question": "How many cars are owned by a typical family in the UK? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "How many cars are owned by a typical family in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 4 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-44": { + "question": "What is the UK's most popular food for family meals on weekends?", + "en_question": "What is your country's most popular food for family meals on weekends?", + "annotations": [ + { + "answers": [ + "roast dinner" + ], + "en_answers": [ + "roast dinner" + ], + "count": 2 + }, + { + "answers": [ + "sunday roast" + ], + "en_answers": [ + "sunday roast" + ], + "count": 1 + }, + { + "answers": [ + "fish and chips", + "fish & chips" + ], + "en_answers": [ + "fish and chips", + "fish & chips" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-45": { + "question": "What is the most popular weekday evening family activity in the UK?", + "en_question": "What is the most popular weekday evening family activity in your country?", + "annotations": [ + { + "answers": [ + "tv", + "watching tv" + ], + "en_answers": [ + "tv", + "watching tv" + ], + "count": 2 + }, + { + "answers": [ + "walk" + ], + "en_answers": [ + "walk" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Th-en-48": { + "question": "What is the highest grade given to top-achieving secondary school students on assignments and exams in the UK?", + "en_question": "What is the highest grade given to top-achieving high school students on assignments and exams in your country?", + "annotations": [ + { + "answers": [ + "a*", + "a *" + ], + "en_answers": [ + "a*", + "a *" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-49": { + "question": "What is considered the most important exam for secondary school students in the UK?", + "en_question": "What is considered the most important exam for high school students in your country?", + "annotations": [ + { + "answers": [ + "gcse", + "o level", + "o level" + ], + "en_answers": [ + "gcse", + "o level", + "o level" + ], + "count": 2 + }, + { + "answers": [ + "a levels", + "a level" + ], + "en_answers": [ + "a levels", + "a level" + ], + "count": 2 + }, + { + "answers": [ + "maths", + "math", + "mathematics" + ], + "en_answers": [ + "maths", + "math", + "mathematics" + ], + "count": 2 + }, + { + "answers": [ + "english" + ], + "en_answers": [ + "english" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-51": { + "question": "Which subject is considered the most important for students in the UK?", + "en_question": "Which subject is considered the most important for students in your country?", + "annotations": [ + { + "answers": [ + "english", + "english or maths" + ], + "en_answers": [ + "english", + "english or maths" + ], + "count": 4 + }, + { + "answers": [ + "maths", + "english or maths", + "mathematics", + "math" + ], + "en_answers": [ + "maths", + "english or maths", + "mathematics", + "math" + ], + "count": 3 + }, + { + "answers": [ + "science" + ], + "en_answers": [ + "science" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-53": { + "question": "What is the most popular extracurricular social event at schools in the UK?", + "en_question": "What is the most popular extracurricular social event at schools in your country?", + "annotations": [ + { + "answers": [ + "disco" + ], + "en_answers": [ + "disco" + ], + "count": 2 + }, + { + "answers": [ + "football", + "soccer" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "netball" + ], + "en_answers": [ + "netball" + ], + "count": 1 + }, + { + "answers": [ + "cricket" + ], + "en_answers": [ + "cricket" + ], + "count": 1 + }, + { + "answers": [ + "sports" + ], + "en_answers": [ + "sports" + ], + "count": 1 + }, + { + "answers": [ + "sports day" + ], + "en_answers": [ + "sports day" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-58": { + "question": "What is the most advanced math subject learned before university in the UK?", + "en_question": "What is the most advanced math subject learned before university in your country?", + "annotations": [ + { + "answers": [ + "algebra" + ], + "en_answers": [ + "algebra" + ], + "count": 2 + }, + { + "answers": [ + "further mathematics", + "further maths" + ], + "en_answers": [ + "further mathematics", + "further maths" + ], + "count": 2 + }, + { + "answers": [ + "trigonometry" + ], + "en_answers": [ + "trigonometry" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-01": { + "question": "Where do university students in the UK usually go to study for their final exams?", + "en_question": "Where do university students in your country usually go to study for their final exams?", + "annotations": [ + { + "answers": [ + "libraries", + "library" + ], + "en_answers": [ + "libraries", + "library" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 3, + "idk": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-02": { + "question": "What is a common public transport that people use to go to university in the UK?", + "en_question": "What is a common public transport that people use to go to university in your country?", + "annotations": [ + { + "answers": [ + "bus" + ], + "en_answers": [ + "bus" + ], + "count": 4 + }, + { + "answers": [ + "train" + ], + "en_answers": [ + "train" + ], + "count": 3 + }, + { + "answers": [ + "motorcycle" + ], + "en_answers": [ + "motorcycle" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-04": { + "question": "What do primary school students in the UK usually do after school?", + "en_question": "What do elementary students in your country usually do after school?", + "annotations": [ + { + "answers": [ + "watch tv" + ], + "en_answers": [ + "watch tv" + ], + "count": 2 + }, + { + "answers": [ + "play" + ], + "en_answers": [ + "play" + ], + "count": 2 + }, + { + "answers": [ + "after school clubs", + "afterschool clubs" + ], + "en_answers": [ + "after school clubs", + "afterschool clubs" + ], + "count": 1 + }, + { + "answers": [ + "after school sports clubs" + ], + "en_answers": [ + "after school sports clubs" + ], + "count": 1 + }, + { + "answers": [ + "play outside" + ], + "en_answers": [ + "play outside" + ], + "count": 1 + }, + { + "answers": [ + "have a snack" + ], + "en_answers": [ + "have a snack" + ], + "count": 1 + }, + { + "answers": [ + "go home" + ], + "en_answers": [ + "go home" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + } +} \ No newline at end of file diff --git a/data/annotations/US_data.json b/data/annotations/US_data.json new file mode 100644 index 0000000000000000000000000000000000000000..d81778abb472664d6cbe7b32a8bacdde29015c6a --- /dev/null +++ b/data/annotations/US_data.json @@ -0,0 +1,26826 @@ +{ + "Al-en-01": { + "question": "What is a common snack for preschool kids in the US?", + "en_question": "What is a common snack for preschool kids in your country?", + "annotations": [ + { + "answers": [ + "fruit" + ], + "en_answers": [ + "fruit" + ], + "count": 2 + }, + { + "answers": [ + "sandwiches" + ], + "en_answers": [ + "sandwiches" + ], + "count": 1 + }, + { + "answers": [ + "vegetables" + ], + "en_answers": [ + "vegetables" + ], + "count": 1 + }, + { + "answers": [ + "peanut butter and jelly", + "pb&j" + ], + "en_answers": [ + "peanut butter and jelly", + "pb&j" + ], + "count": 1 + }, + { + "answers": [ + "pretzels" + ], + "en_answers": [ + "pretzels" + ], + "count": 1 + }, + { + "answers": [ + "fruit rollup", + "fruit by the foot" + ], + "en_answers": [ + "fruit rollup", + "fruit by the foot" + ], + "count": 1 + }, + { + "answers": [ + "goldfish crackers" + ], + "en_answers": [ + "goldfish crackers" + ], + "count": 1 + }, + { + "answers": [ + "cheez-its" + ], + "en_answers": [ + "cheez-its" + ], + "count": 1 + }, + { + "answers": [ + "cheddar puffs", + "cheese puffs" + ], + "en_answers": [ + "cheddar puffs", + "cheese puffs" + ], + "count": 1 + }, + { + "answers": [ + "animal crackers" + ], + "en_answers": [ + "animal crackers" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-02": { + "question": "What is a popular food to go with beer in the US?", + "en_question": "What is a popular food to go with beer in your country?", + "annotations": [ + { + "answers": [ + "peanuts", + "nuts" + ], + "en_answers": [ + "peanuts", + "nuts" + ], + "count": 2 + }, + { + "answers": [ + "pretzels" + ], + "en_answers": [ + "pretzels" + ], + "count": 1 + }, + { + "answers": [ + "bbq", + "barbeque" + ], + "en_answers": [ + "bbq", + "barbeque" + ], + "count": 1 + }, + { + "answers": [ + "onion rings", + "fried onions" + ], + "en_answers": [ + "onion rings", + "fried onions" + ], + "count": 1 + }, + { + "answers": [ + "burgers", + "hamburger" + ], + "en_answers": [ + "burgers", + "hamburger" + ], + "count": 1 + }, + { + "answers": [ + "chicken wings", + "wings" + ], + "en_answers": [ + "chicken wings", + "wings" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-04": { + "question": "What is the most popular fruit in the US?", + "en_question": "What is the most popular fruit in your country?", + "annotations": [ + { + "answers": [ + "apple" + ], + "en_answers": [ + "apple" + ], + "count": 4 + }, + { + "answers": [ + "pear" + ], + "en_answers": [ + "pear" + ], + "count": 1 + }, + { + "answers": [ + "peach" + ], + "en_answers": [ + "peach" + ], + "count": 1 + }, + { + "answers": [ + "strawberries", + "strawberry" + ], + "en_answers": [ + "strawberries", + "strawberry" + ], + "count": 1 + }, + { + "answers": [ + "orange" + ], + "en_answers": [ + "orange" + ], + "count": 1 + }, + { + "answers": [ + "banana" + ], + "en_answers": [ + "banana" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-06": { + "question": "What is a common school cafeteria food in the US?", + "en_question": "What is a common school cafeteria food in your country?", + "annotations": [ + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 4 + }, + { + "answers": [ + "sandwiches", + "sandwich" + ], + "en_answers": [ + "sandwiches", + "sandwich" + ], + "count": 2 + }, + { + "answers": [ + "burger", + "hamburger" + ], + "en_answers": [ + "burger", + "hamburger" + ], + "count": 2 + }, + { + "answers": [ + "turkey", + "turkey and potatoes" + ], + "en_answers": [ + "turkey", + "turkey and potatoes" + ], + "count": 1 + }, + { + "answers": [ + "potatoes", + "turkey and potatoes" + ], + "en_answers": [ + "potatoes", + "turkey and potatoes" + ], + "count": 1 + }, + { + "answers": [ + "chicken" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "fish sticks", + "fishstick" + ], + "en_answers": [ + "fish sticks", + "fishstick" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-08": { + "question": "What are the most commonly eaten snacks at shopping malls in the US?", + "en_question": "What are the most commonly eaten snacks at shopping malls in your country?", + "annotations": [ + { + "answers": [ + "pretzels", + "pretzels (annie's)", + "pretzel", + "aunt annie's" + ], + "en_answers": [ + "pretzels", + "pretzels (annie's)", + "pretzel", + "aunt annie's" + ], + "count": 3 + }, + { + "answers": [ + "starbucks drinks", + "starbucks" + ], + "en_answers": [ + "starbucks drinks", + "starbucks" + ], + "count": 2 + }, + { + "answers": [ + "hot dog", + "hot dogs" + ], + "en_answers": [ + "hot dog", + "hot dogs" + ], + "count": 1 + }, + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + }, + { + "answers": [ + "ice cream" + ], + "en_answers": [ + "ice cream" + ], + "count": 1 + }, + { + "answers": [ + "popcorn" + ], + "en_answers": [ + "popcorn" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-09": { + "question": "What is a popular snack at an amusement park in the US?", + "en_question": "What is a popular snack at an amusement park in your country?", + "annotations": [ + { + "answers": [ + "cotton candy" + ], + "en_answers": [ + "cotton candy" + ], + "count": 4 + }, + { + "answers": [ + "popcorn" + ], + "en_answers": [ + "popcorn" + ], + "count": 2 + }, + { + "answers": [ + "pretzel" + ], + "en_answers": [ + "pretzel" + ], + "count": 1 + }, + { + "answers": [ + "fried ice cream" + ], + "en_answers": [ + "fried ice cream" + ], + "count": 1 + }, + { + "answers": [ + "funnel cakes" + ], + "en_answers": [ + "funnel cakes" + ], + "count": 1 + }, + { + "answers": [ + "fried dough" + ], + "en_answers": [ + "fried dough" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-16": { + "question": "At what age do kids start preschool in the US? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "At what age do kids start preschool in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "4", + "april" + ], + "en_answers": [ + "4", + "april" + ], + "count": 4 + }, + { + "answers": [ + "3", + "march" + ], + "en_answers": [ + "3", + "march" + ], + "count": 3 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Al-en-17": { + "question": "What is a popular afterschool sport for elementary schools in the US?", + "en_question": "What is a popular afterschool sport for elementary schools in your country?", + "annotations": [ + { + "answers": [ + "soccer", + "international football" + ], + "en_answers": [ + "soccer", + "international football" + ], + "count": 3 + }, + { + "answers": [ + "basketball" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "football", + "american football" + ], + "en_answers": [ + "football", + "american football" + ], + "count": 2 + }, + { + "answers": [ + "baseball" + ], + "en_answers": [ + "baseball" + ], + "count": 2 + }, + { + "answers": [ + "softball" + ], + "en_answers": [ + "softball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-18": { + "question": "For which subject do elementary students get private education in the US?", + "en_question": "For which subject do elementary students get private education in your country?", + "annotations": [ + { + "answers": [ + "religion" + ], + "en_answers": [ + "religion" + ], + "count": 1 + }, + { + "answers": [ + "piano", + "keyboard" + ], + "en_answers": [ + "piano", + "keyboard" + ], + "count": 1 + }, + { + "answers": [ + "math", + "mathematics" + ], + "en_answers": [ + "math", + "mathematics" + ], + "count": 1 + }, + { + "answers": [ + "english", + "reading", + "writing" + ], + "en_answers": [ + "english", + "reading", + "writing" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 0 + } + }, + "Al-en-19": { + "question": "What is a popular second language for high school students in the US?", + "en_question": "What is a popular second language for high school students in your country?", + "annotations": [ + { + "answers": [ + "spanish" + ], + "en_answers": [ + "spanish" + ], + "count": 5 + }, + { + "answers": [ + "french" + ], + "en_answers": [ + "french" + ], + "count": 3 + }, + { + "answers": [ + "german" + ], + "en_answers": [ + "german" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-21": { + "question": "Which subject is the most important for gifted education in the US?", + "en_question": "Which subject is the most important for gifted education in your country?", + "annotations": [ + { + "answers": [ + "science" + ], + "en_answers": [ + "science" + ], + "count": 4 + }, + { + "answers": [ + "math", + "mathematics" + ], + "en_answers": [ + "math", + "mathematics" + ], + "count": 4 + }, + { + "answers": [ + "language", + "language arts", + "english" + ], + "en_answers": [ + "language", + "language arts", + "english" + ], + "count": 3 + }, + { + "answers": [ + "stem", + "science, technology, engineering, and mathematics" + ], + "en_answers": [ + "stem", + "science, technology, engineering, and mathematics" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-32": { + "question": "What is the main dish for Thanksgiving in the US?", + "en_question": "What is the main dish for Thanksgiving in your country?", + "annotations": [ + { + "answers": [ + "turkey" + ], + "en_answers": [ + "turkey" + ], + "count": 5 + }, + { + "answers": [ + "ham" + ], + "en_answers": [ + "ham" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-33": { + "question": "What do people do to celebrate Halloween in the US?", + "en_question": "What do people do to celebrate Halloween in your country?", + "annotations": [ + { + "answers": [ + "trick or treat", + "take kids trick or treating", + "trick or treating", + "dress up" + ], + "en_answers": [ + "trick or treat", + "take kids trick or treating", + "trick or treating", + "dress up" + ], + "count": 4 + }, + { + "answers": [ + "dress in costumes", + "wear costumes" + ], + "en_answers": [ + "dress in costumes", + "wear costumes" + ], + "count": 3 + }, + { + "answers": [ + "hand out candy", + "give out candy" + ], + "en_answers": [ + "hand out candy", + "give out candy" + ], + "count": 2 + }, + { + "answers": [ + "halloween parties", + "go to parties" + ], + "en_answers": [ + "halloween parties", + "go to parties" + ], + "count": 2 + }, + { + "answers": [ + "decorating", + "scary decorations" + ], + "en_answers": [ + "decorating", + "scary decorations" + ], + "count": 2 + }, + { + "answers": [ + "halloween parade" + ], + "en_answers": [ + "halloween parade" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-34": { + "question": "What do people do to celebrate New Year's Day in the US?", + "en_question": "What do people do to celebrate New Year's Day in your country?", + "annotations": [ + { + "answers": [ + "partying", + "have a party", + "drink (party)" + ], + "en_answers": [ + "partying", + "have a party", + "drink (party)" + ], + "count": 2 + }, + { + "answers": [ + "hoppin' john" + ], + "en_answers": [ + "hoppin' john" + ], + "count": 1 + }, + { + "answers": [ + "watch fireworks" + ], + "en_answers": [ + "watch fireworks" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-35": { + "question": "What do people do to celebrate Christmas in the US?", + "en_question": "What do people do to celebrate Christmas in your country?", + "annotations": [ + { + "answers": [ + "give presents", + "gifts", + "exchange gifts", + "give gifts" + ], + "en_answers": [ + "give presents", + "gifts", + "exchange gifts", + "give gifts" + ], + "count": 4 + }, + { + "answers": [ + "buy a christmas tree", + "put up a christmas tree", + "set up a christmas tree" + ], + "en_answers": [ + "buy a christmas tree", + "put up a christmas tree", + "set up a christmas tree" + ], + "count": 2 + }, + { + "answers": [ + "decoration" + ], + "en_answers": [ + "decoration" + ], + "count": 1 + }, + { + "answers": [ + "eat ham" + ], + "en_answers": [ + "eat ham" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Al-en-36": { + "question": "What food is associated with Halloween in the US?", + "en_question": "What food is associated with Halloween in your country?", + "annotations": [ + { + "answers": [ + "candy", + "candies", + "sweets" + ], + "en_answers": [ + "candy", + "candies", + "sweets" + ], + "count": 4 + }, + { + "answers": [ + "chocolate" + ], + "en_answers": [ + "chocolate" + ], + "count": 2 + }, + { + "answers": [ + "pumpkins", + "jack o'lanterns" + ], + "en_answers": [ + "pumpkins", + "jack o'lanterns" + ], + "count": 1 + }, + { + "answers": [ + "caramel apples", + "carmel apples" + ], + "en_answers": [ + "caramel apples", + "carmel apples" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-37": { + "question": "What food is associated with Christmas in the US?", + "en_question": "What food is associated with Christmas in your country?", + "annotations": [ + { + "answers": [ + "cookies", + "gingerbread", + "gingerbread house", + "gingerbread man" + ], + "en_answers": [ + "cookies", + "gingerbread", + "gingerbread house", + "gingerbread man" + ], + "count": 3 + }, + { + "answers": [ + "ham" + ], + "en_answers": [ + "ham" + ], + "count": 2 + }, + { + "answers": [ + "turkey", + "roast turkey" + ], + "en_answers": [ + "turkey", + "roast turkey" + ], + "count": 2 + }, + { + "answers": [ + "pie" + ], + "en_answers": [ + "pie" + ], + "count": 1 + }, + { + "answers": [ + "candy canes" + ], + "en_answers": [ + "candy canes" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-38": { + "question": "What food is associated with Valentine's day in the US?", + "en_question": "What food is associated with Valentine's day in your country?", + "annotations": [ + { + "answers": [ + "chocolate" + ], + "en_answers": [ + "chocolate" + ], + "count": 4 + }, + { + "answers": [ + "candy", + "candies", + "sweets" + ], + "en_answers": [ + "candy", + "candies", + "sweets" + ], + "count": 1 + }, + { + "answers": [ + "cake", + "cupcakes" + ], + "en_answers": [ + "cake", + "cupcakes" + ], + "count": 1 + }, + { + "answers": [ + "cookies" + ], + "en_answers": [ + "cookies" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-39": { + "question": "What do people eat on their birthday in the US?", + "en_question": "What do people eat on their birthday in your country?", + "annotations": [ + { + "answers": [ + "cake" + ], + "en_answers": [ + "cake" + ], + "count": 5 + }, + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-40": { + "question": "What is a popular outdoor place for families to have fun with little kids in the US?", + "en_question": "What is a popular outdoor place for families to have fun with little kids in your country?", + "annotations": [ + { + "answers": [ + "parks", + "local park", + "public park", + "park", + "playgrounds", + "fields" + ], + "en_answers": [ + "parks", + "local park", + "public park", + "park", + "playgrounds", + "fields" + ], + "count": 5 + }, + { + "answers": [ + "disney world", + "six flags", + "disneyworld" + ], + "en_answers": [ + "disney world", + "six flags", + "disneyworld" + ], + "count": 1 + }, + { + "answers": [ + "zoo" + ], + "en_answers": [ + "zoo" + ], + "count": 1 + }, + { + "answers": [ + "botanical garden" + ], + "en_answers": [ + "botanical garden" + ], + "count": 1 + }, + { + "answers": [ + "amusement parks" + ], + "en_answers": [ + "amusement parks" + ], + "count": 1 + }, + { + "answers": [ + "swimming pools" + ], + "en_answers": [ + "swimming pools" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-43": { + "question": "What is a popular indoor activity for families in the US?", + "en_question": "What is a popular indoor activity for families in your country?", + "annotations": [ + { + "answers": [ + "board games", + "playing board games", + "card games", + "cards", + "playing cards" + ], + "en_answers": [ + "board games", + "playing board games", + "card games", + "cards", + "playing cards" + ], + "count": 3 + }, + { + "answers": [ + "arts and crafts", + "crafting" + ], + "en_answers": [ + "arts and crafts", + "crafting" + ], + "count": 2 + }, + { + "answers": [ + "watching tv", + "movies", + "watching television" + ], + "en_answers": [ + "watching tv", + "movies", + "watching television" + ], + "count": 2 + }, + { + "answers": [ + "video games" + ], + "en_answers": [ + "video games" + ], + "count": 1 + }, + { + "answers": [ + "shopping" + ], + "en_answers": [ + "shopping" + ], + "count": 1 + }, + { + "answers": [ + "reading" + ], + "en_answers": [ + "reading" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "An-ar-02": { + "question": "Where do university students have lunch in the US?", + "en_question": "Where do university students have lunch in your country?", + "annotations": [ + { + "answers": [ + "cafeteria", + "campus", + "dining hall", + "at school", + "school cafeteria" + ], + "en_answers": [ + "cafeteria", + "campus", + "dining hall", + "at school", + "school cafeteria" + ], + "count": 4 + }, + { + "answers": [ + "at home" + ], + "en_answers": [ + "at home" + ], + "count": 1 + }, + { + "answers": [ + "fast food" + ], + "en_answers": [ + "fast food" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-03": { + "question": "Which month is the final exam term usually scheduled at high schools in the US? (Provide Arabic numerals (1~12) only.)", + "en_question": "Which month is the final exam term usually scheduled at high schools in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "5", + "may" + ], + "en_answers": [ + "5", + "may" + ], + "count": 4 + }, + { + "answers": [ + "6", + "june" + ], + "en_answers": [ + "6", + "june" + ], + "count": 4 + }, + { + "answers": [ + "12", + "december" + ], + "en_answers": [ + "12", + "december" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-08": { + "question": "How many hours a day do students in the US usually spend at high school? (Provide Arabic numerals in integers (0~24), without any decimal points.)", + "en_question": "How many hours a day do students in your country usually spend at high school? (Provide Arabic numerals in integers (0~24), without any decimal points.)", + "annotations": [ + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 2 + }, + { + "answers": [ + "5-7", + "5 to 7" + ], + "en_answers": [ + "5-7", + "5 to 7" + ], + "count": 1 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "6-7", + "6 to 7" + ], + "en_answers": [ + "6-7", + "6 to 7" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-09": { + "question": "How many languages do students study at high school in the US? (Provide Arabic numerals (e.g., 5) only.)", + "en_question": "How many languages do students study at high school in your country? (Provide Arabic numerals (e.g., 5) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-34": { + "question": "What is the most popular sport played in a team at school in the US?", + "en_question": "What is the most popular sport played in a team at school in your country?", + "annotations": [ + { + "answers": [ + "football", + "american football" + ], + "en_answers": [ + "football", + "american football" + ], + "count": 3 + }, + { + "answers": [ + "rugby" + ], + "en_answers": [ + "rugby" + ], + "count": 1 + }, + { + "answers": [ + "basketball" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "baseball" + ], + "en_answers": [ + "baseball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-35": { + "question": "Who is the most popular sport commentator in the US?", + "en_question": "Who is the most popular sport commentator in your country?", + "annotations": [ + { + "answers": [ + "jim nantz" + ], + "en_answers": [ + "jim nantz" + ], + "count": 1 + }, + { + "answers": [ + "joe buck" + ], + "en_answers": [ + "joe buck" + ], + "count": 1 + }, + { + "answers": [ + "howard cosell" + ], + "en_answers": [ + "howard cosell" + ], + "count": 1 + } + ], + "idks": { + "idk": 5, + "no-answer": 2, + "not-applicable": 0 + } + }, + "An-ar-36": { + "question": "What is the most popular sport team in the US?", + "en_question": "What is the most popular sport team in your country?", + "annotations": [ + { + "answers": [ + "new york yankees", + "yankees", + "ny yankees" + ], + "en_answers": [ + "new york yankees", + "yankees", + "ny yankees" + ], + "count": 4 + }, + { + "answers": [ + "dallas cowboys", + "dallas cowboy", + "cowboys" + ], + "en_answers": [ + "dallas cowboys", + "dallas cowboy", + "cowboys" + ], + "count": 2 + }, + { + "answers": [ + "los angeles lakers", + "la lakers", + "lakers", + "lakeshow" + ], + "en_answers": [ + "los angeles lakers", + "la lakers", + "lakers", + "lakeshow" + ], + "count": 1 + }, + { + "answers": [ + "green bay packers", + "the green bay packers", + "cheese heads", + "packs" + ], + "en_answers": [ + "green bay packers", + "the green bay packers", + "cheese heads", + "packs" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-43": { + "question": "What are the common places or venues where individuals in the US usually gather to watch sports broadcasts?", + "en_question": "What are the common places or venues where individuals in your country usually gather to watch sports broadcasts?", + "annotations": [ + { + "answers": [ + "bars", + "sports bar", + "sports bars" + ], + "en_answers": [ + "bars", + "sports bar", + "sports bars" + ], + "count": 4 + }, + { + "answers": [ + "home", + "friend's house", + "friend's home", + "friends homes", + "house" + ], + "en_answers": [ + "home", + "friend's house", + "friend's home", + "friends homes", + "house" + ], + "count": 2 + }, + { + "answers": [ + "stadium" + ], + "en_answers": [ + "stadium" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-05": { + "question": "How many meals per day do people from the US usually have? (Provide Arabic numerals (e.g., 5) only.)", + "en_question": "How many meals per day do people from your country usually have? (Provide Arabic numerals (e.g., 5) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 4 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-06": { + "question": "Which is the most important meal of the day to people from the US?", + "en_question": "Which is the most important meal of the day to people from your country?", + "annotations": [ + { + "answers": [ + "breakfast" + ], + "en_answers": [ + "breakfast" + ], + "count": 4 + }, + { + "answers": [ + "dinner" + ], + "en_answers": [ + "dinner" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-08": { + "question": "What is the most common ingredient used in the US's diet?", + "en_question": "What is the most common ingredient used in your country's diet?", + "annotations": [ + { + "answers": [ + "wheat" + ], + "en_answers": [ + "wheat" + ], + "count": 2 + }, + { + "answers": [ + "cheese" + ], + "en_answers": [ + "cheese" + ], + "count": 1 + }, + { + "answers": [ + "bacon" + ], + "en_answers": [ + "bacon" + ], + "count": 1 + }, + { + "answers": [ + "milk" + ], + "en_answers": [ + "milk" + ], + "count": 1 + }, + { + "answers": [ + "beef" + ], + "en_answers": [ + "beef" + ], + "count": 1 + }, + { + "answers": [ + "flour" + ], + "en_answers": [ + "flour" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-09": { + "question": "What do people from the US usually eat for dessert?", + "en_question": "What do people from your country usually eat for dessert?", + "annotations": [ + { + "answers": [ + "ice cream", + "cake or ice cream" + ], + "en_answers": [ + "ice cream", + "cake or ice cream" + ], + "count": 5 + }, + { + "answers": [ + "cake", + "cake or ice cream" + ], + "en_answers": [ + "cake", + "cake or ice cream" + ], + "count": 3 + }, + { + "answers": [ + "pie" + ], + "en_answers": [ + "pie" + ], + "count": 1 + }, + { + "answers": [ + "cookies" + ], + "en_answers": [ + "cookies" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-11": { + "question": "Which day of the week do people usually organize a family meal in the US?", + "en_question": "Which day of the week do people usually organize a family meal in your country?", + "annotations": [ + { + "answers": [ + "sunday" + ], + "en_answers": [ + "sunday" + ], + "count": 4 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ca-sp-14": { + "question": "Which is the most popular hot drink in the US?", + "en_question": "Which is the most popular hot drink in your country?", + "annotations": [ + { + "answers": [ + "coffee" + ], + "en_answers": [ + "coffee" + ], + "count": 5 + }, + { + "answers": [ + "tea" + ], + "en_answers": [ + "tea" + ], + "count": 1 + }, + { + "answers": [ + "hot chocolate", + "hot choco" + ], + "en_answers": [ + "hot chocolate", + "hot choco" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-19": { + "question": "What do young people from the US usually drink at the night club?", + "en_question": "What do young people from your country usually drink at the night club?", + "annotations": [ + { + "answers": [ + "beer" + ], + "en_answers": [ + "beer" + ], + "count": 3 + }, + { + "answers": [ + "cocktails", + "coctails" + ], + "en_answers": [ + "cocktails", + "coctails" + ], + "count": 1 + }, + { + "answers": [ + "shots" + ], + "en_answers": [ + "shots" + ], + "count": 1 + }, + { + "answers": [ + "margaritas" + ], + "en_answers": [ + "margaritas" + ], + "count": 1 + }, + { + "answers": [ + "daiquiris" + ], + "en_answers": [ + "daiquiris" + ], + "count": 1 + }, + { + "answers": [ + "tequila" + ], + "en_answers": [ + "tequila" + ], + "count": 1 + }, + { + "answers": [ + "liquor" + ], + "en_answers": [ + "liquor" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-21": { + "question": "At which month do people usually take holidays in the US? (Provide Arabic numerals (1~12) only.)", + "en_question": "At which month do people usually take holidays in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 2 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "5", + "may" + ], + "en_answers": [ + "5", + "may" + ], + "count": 1 + }, + { + "answers": [ + "11" + ], + "en_answers": [ + "11" + ], + "count": 1 + }, + { + "answers": [ + "8", + "august" + ], + "en_answers": [ + "8", + "august" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-29": { + "question": "What tradition is there in the US for New Year's Eve?", + "en_question": "What tradition is there in your country for New Year's Eve?", + "annotations": [ + { + "answers": [ + "watch the ball drop", + "watching the ball drop at times square", + "watching ball drop in time's square" + ], + "en_answers": [ + "watch the ball drop", + "watching the ball drop at times square", + "watching ball drop in time's square" + ], + "count": 2 + }, + { + "answers": [ + "times square" + ], + "en_answers": [ + "times square" + ], + "count": 1 + }, + { + "answers": [ + "fireworks" + ], + "en_answers": [ + "fireworks" + ], + "count": 1 + }, + { + "answers": [ + "drink", + "drink alcohol" + ], + "en_answers": [ + "drink", + "drink alcohol" + ], + "count": 1 + }, + { + "answers": [ + "kiss at midnight" + ], + "en_answers": [ + "kiss at midnight" + ], + "count": 1 + }, + { + "answers": [ + "family hangout" + ], + "en_answers": [ + "family hangout" + ], + "count": 1 + }, + { + "answers": [ + "dinner at a restaurant", + "dinner" + ], + "en_answers": [ + "dinner at a restaurant", + "dinner" + ], + "count": 1 + }, + { + "answers": [ + "attend a large party", + "partying" + ], + "en_answers": [ + "attend a large party", + "partying" + ], + "count": 1 + }, + { + "answers": [ + "watch tv celebration", + "watch new year's celebration on television" + ], + "en_answers": [ + "watch tv celebration", + "watch new year's celebration on television" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-38": { + "question": "Which is the typical type of house for a family in the US?", + "en_question": "Which is the typical type of house for a family in your country?", + "annotations": [ + { + "answers": [ + "single story prefab" + ], + "en_answers": [ + "single story prefab" + ], + "count": 1 + }, + { + "answers": [ + "rancher" + ], + "en_answers": [ + "rancher" + ], + "count": 1 + }, + { + "answers": [ + "single family dwellings" + ], + "en_answers": [ + "single family dwellings" + ], + "count": 1 + }, + { + "answers": [ + "single family detached" + ], + "en_answers": [ + "single family detached" + ], + "count": 1 + }, + { + "answers": [ + "two bedroom house" + ], + "en_answers": [ + "two bedroom house" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-41": { + "question": "Where do the dependent elderly usually live in the US?", + "en_question": "Where do the dependent elderly usually live in your country?", + "annotations": [ + { + "answers": [ + "old folks home", + "nursing home", + "care center", + "assisted living", + "senior citizen homes" + ], + "en_answers": [ + "old folks home", + "nursing home", + "care center", + "assisted living", + "senior citizen homes" + ], + "count": 5 + }, + { + "answers": [ + "family", + "family home", + "at-home", + "at home" + ], + "en_answers": [ + "family", + "family home", + "at-home", + "at home" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-42": { + "question": "How long (in weeks) is the US's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)", + "en_question": "How long (in weeks) is your country's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 3 + }, + { + "answers": [ + "8", + "8 weeks" + ], + "en_answers": [ + "8", + "8 weeks" + ], + "count": 2 + }, + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 1 + }, + { + "answers": [ + "16" + ], + "en_answers": [ + "16" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-43": { + "question": "How long (in weeks) is the US's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)", + "en_question": "How long (in weeks) is your country's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 2 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 2 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Ca-sp-45": { + "question": "What type of destination is commonly chosen for a family vacation in the US?", + "en_question": "What type of destination is commonly chosen for a family vacation in your country?", + "annotations": [ + { + "answers": [ + "beach" + ], + "en_answers": [ + "beach" + ], + "count": 4 + }, + { + "answers": [ + "national parks" + ], + "en_answers": [ + "national parks" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-05": { + "question": "What sports do seniors like the most in the US?", + "en_question": "What sports do seniors like the most in your country?", + "annotations": [ + { + "answers": [ + "baseball" + ], + "en_answers": [ + "baseball" + ], + "count": 1 + }, + { + "answers": [ + "basketball" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "golf" + ], + "en_answers": [ + "golf" + ], + "count": 1 + }, + { + "answers": [ + "walking" + ], + "en_answers": [ + "walking" + ], + "count": 1 + }, + { + "answers": [ + "swmming" + ], + "en_answers": [ + "swmming" + ], + "count": 1 + }, + { + "answers": [ + "football", + "american football" + ], + "en_answers": [ + "football", + "american football" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Gu-ch-06": { + "question": "What sports do men like to play the most in the US?", + "en_question": "What sports do men like to play the most in your country?", + "annotations": [ + { + "answers": [ + "football", + "american football" + ], + "en_answers": [ + "football", + "american football" + ], + "count": 3 + }, + { + "answers": [ + "basketball" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "baseball" + ], + "en_answers": [ + "baseball" + ], + "count": 2 + }, + { + "answers": [ + "golf" + ], + "en_answers": [ + "golf" + ], + "count": 2 + }, + { + "answers": [ + "soccer" + ], + "en_answers": [ + "soccer" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-07": { + "question": "Who is the most famous basketball player in the US?", + "en_question": "Who is the most famous basketball player in your country?", + "annotations": [ + { + "answers": [ + "michael jordan", + "jordan" + ], + "en_answers": [ + "michael jordan", + "jordan" + ], + "count": 3 + }, + { + "answers": [ + "kobe bryant", + "kobe" + ], + "en_answers": [ + "kobe bryant", + "kobe" + ], + "count": 1 + }, + { + "answers": [ + "magic johnson", + "magic" + ], + "en_answers": [ + "magic johnson", + "magic" + ], + "count": 1 + }, + { + "answers": [ + "shaq", + "shaquille o'neal" + ], + "en_answers": [ + "shaq", + "shaquille o'neal" + ], + "count": 1 + }, + { + "answers": [ + "tim duncan", + "mr. fundamentals" + ], + "en_answers": [ + "tim duncan", + "mr. fundamentals" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-08": { + "question": "What is the most popular sports among children in the US?", + "en_question": "What is the most popular sports among children in your country?", + "annotations": [ + { + "answers": [ + "soccer" + ], + "en_answers": [ + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "baseball" + ], + "en_answers": [ + "baseball" + ], + "count": 3 + }, + { + "answers": [ + "basketball" + ], + "en_answers": [ + "basketball" + ], + "count": 3 + }, + { + "answers": [ + "football", + "american football" + ], + "en_answers": [ + "football", + "american football" + ], + "count": 3 + }, + { + "answers": [ + "wrestling" + ], + "en_answers": [ + "wrestling" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-09": { + "question": "What sports do women like to play the most in the US?", + "en_question": "What sports do women like to play the most in your country?", + "annotations": [ + { + "answers": [ + "basketball" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "softball" + ], + "en_answers": [ + "softball" + ], + "count": 2 + }, + { + "answers": [ + "soccer", + "international football" + ], + "en_answers": [ + "soccer", + "international football" + ], + "count": 2 + }, + { + "answers": [ + "tennis" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + }, + { + "answers": [ + "running", + "track", + "sprints", + "dashes" + ], + "en_answers": [ + "running", + "track", + "sprints", + "dashes" + ], + "count": 1 + }, + { + "answers": [ + "swimming" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-11": { + "question": "What sports event has the US won the most gold medals at the Olympics?", + "en_question": "What sports event has your country won the most gold medals at the Olympics?", + "annotations": [ + { + "answers": [ + "swimming" + ], + "en_answers": [ + "swimming" + ], + "count": 3 + }, + { + "answers": [ + "track and field" + ], + "en_answers": [ + "track and field" + ], + "count": 1 + }, + { + "answers": [ + "soccer", + "international football" + ], + "en_answers": [ + "soccer", + "international football" + ], + "count": 1 + }, + { + "answers": [ + "basketball" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-15": { + "question": "What sports do male students in university like to play the most in the US?", + "en_question": "What sports do male students in university like to play the most in your country?", + "annotations": [ + { + "answers": [ + "football", + "american football" + ], + "en_answers": [ + "football", + "american football" + ], + "count": 5 + }, + { + "answers": [ + "basketball" + ], + "en_answers": [ + "basketball" + ], + "count": 3 + }, + { + "answers": [ + "baseball" + ], + "en_answers": [ + "baseball" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-16": { + "question": "How many people are there in a family on average in the US? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "How many people are there in a family on average in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 5 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-18": { + "question": "How many children do couples usually have in the US? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "How many children do couples usually have in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 4 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-31": { + "question": "What is the duration of elementary school in years in the US? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "What is the duration of elementary school in years in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "8", + "8 (we don't use the term primary)" + ], + "en_answers": [ + "8", + "8 (we don't use the term primary)" + ], + "count": 3 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-32": { + "question": "What is the duration of compulsory education in years in the US? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "What is the duration of compulsory education in years in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 4 + }, + { + "answers": [ + "13" + ], + "en_answers": [ + "13" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-33": { + "question": "From which age do students start learning their second language in the US? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "From which age do students start learning their second language in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "13" + ], + "en_answers": [ + "13" + ], + "count": 2 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "5~11", + "5 to 11 years" + ], + "en_answers": [ + "5~11", + "5 to 11 years" + ], + "count": 1 + }, + { + "answers": [ + "11" + ], + "en_answers": [ + "11" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-38": { + "question": "What is the duration of undergraduate education in the US? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "What is the duration of undergraduate education in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "4", + "4 years" + ], + "en_answers": [ + "4", + "4 years" + ], + "count": 5 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-40": { + "question": "What time do younger elementary school students finish school in the US? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "en_question": "What time do younger elementary school students finish school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "15:00", + "3:00 pm" + ], + "en_answers": [ + "15:00", + "3:00 pm" + ], + "count": 2 + }, + { + "answers": [ + "15:30", + "03:30", + "2:30 pm" + ], + "en_answers": [ + "15:30", + "03:30", + "2:30 pm" + ], + "count": 1 + }, + { + "answers": [ + "14:00", + "2:00 pm" + ], + "en_answers": [ + "14:00", + "2:00 pm" + ], + "count": 1 + }, + { + "answers": [ + "18:00", + "6:00 pm" + ], + "en_answers": [ + "18:00", + "6:00 pm" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-41": { + "question": "How many musical instruments do elementary school students in the US typically play? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "How many musical instruments do elementary school students in your country typically play? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 3 + }, + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-02": { + "question": "What day of the week do people in the US prefer to have company dinners?", + "en_question": "What day of the week do people in your country prefer to have company dinners?", + "annotations": [ + { + "answers": [ + "friday" + ], + "en_answers": [ + "friday" + ], + "count": 3 + }, + { + "answers": [ + "thursday" + ], + "en_answers": [ + "thursday" + ], + "count": 1 + }, + { + "answers": [ + "saturday" + ], + "en_answers": [ + "saturday" + ], + "count": 1 + }, + { + "answers": [ + "sunday" + ], + "en_answers": [ + "sunday" + ], + "count": 1 + }, + { + "answers": [ + "weekdays", + "weekday evening" + ], + "en_answers": [ + "weekdays", + "weekday evening" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-03": { + "question": "Which region/city has the highest number of financial companies in the US?", + "en_question": "Which region/city has the highest number of financial companies in your country?", + "annotations": [ + { + "answers": [ + "new york", + "new york city", + "nyc" + ], + "en_answers": [ + "new york", + "new york city", + "nyc" + ], + "count": 5 + }, + { + "answers": [ + "san francisco", + "sf" + ], + "en_answers": [ + "san francisco", + "sf" + ], + "count": 1 + }, + { + "answers": [ + "seattle" + ], + "en_answers": [ + "seattle" + ], + "count": 1 + }, + { + "answers": [ + "washington" + ], + "en_answers": [ + "washington" + ], + "count": 1 + }, + { + "answers": [ + "washington d.c.", + "dc" + ], + "en_answers": [ + "washington d.c.", + "dc" + ], + "count": 1 + }, + { + "answers": [ + "boston" + ], + "en_answers": [ + "boston" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-07": { + "question": "What is the most famous private company in the US?", + "en_question": "What is the most famous private company in your country?", + "annotations": [ + { + "answers": [ + "google" + ], + "en_answers": [ + "google" + ], + "count": 2 + }, + { + "answers": [ + "apple" + ], + "en_answers": [ + "apple" + ], + "count": 2 + }, + { + "answers": [ + "microsoft" + ], + "en_answers": [ + "microsoft" + ], + "count": 1 + }, + { + "answers": [ + "amazon" + ], + "en_answers": [ + "amazon" + ], + "count": 1 + }, + { + "answers": [ + "ibm", + "international business machines corporation" + ], + "en_answers": [ + "ibm", + "international business machines corporation" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ji-ko-08": { + "question": "What is the maximum number of hours one can work per week in the US? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "What is the maximum number of hours one can work per week in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 2 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + }, + { + "answers": [ + "120" + ], + "en_answers": [ + "120" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 1 + } + }, + "Ji-ko-09": { + "question": "What do people typically eat during company get-together in the US?", + "en_question": "What do people typically eat during company get-together in your country?", + "annotations": [ + { + "answers": [ + "burgers" + ], + "en_answers": [ + "burgers" + ], + "count": 2 + }, + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 2 + }, + { + "answers": [ + "sandwiches" + ], + "en_answers": [ + "sandwiches" + ], + "count": 1 + }, + { + "answers": [ + "hotdogs", + "hot dogs" + ], + "en_answers": [ + "hotdogs", + "hot dogs" + ], + "count": 1 + }, + { + "answers": [ + "bbq", + "barbeque" + ], + "en_answers": [ + "bbq", + "barbeque" + ], + "count": 1 + }, + { + "answers": [ + "steak" + ], + "en_answers": [ + "steak" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-14": { + "question": "What is the representative export item of the US?", + "en_question": "What is the representative export item of your country?", + "annotations": [ + { + "answers": [ + "corn" + ], + "en_answers": [ + "corn" + ], + "count": 3 + }, + { + "answers": [ + "raw materials" + ], + "en_answers": [ + "raw materials" + ], + "count": 1 + }, + { + "answers": [ + "meat" + ], + "en_answers": [ + "meat" + ], + "count": 1 + }, + { + "answers": [ + "weapons" + ], + "en_answers": [ + "weapons" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-15": { + "question": "How long (in hours) is the typical lunch break in the US? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "en_question": "How long (in hours) is the typical lunch break in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "1", + "1 hour" + ], + "en_answers": [ + "1", + "1 hour" + ], + "count": 3 + }, + { + "answers": [ + "0.5", + "30 minutes" + ], + "en_answers": [ + "0.5", + "30 minutes" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-16": { + "question": "Where do mothers stay for a certain period after childbirth for recovery in the US?", + "en_question": "Where do mothers stay for a certain period after childbirth for recovery in your country?", + "annotations": [ + { + "answers": [ + "home", + "at home" + ], + "en_answers": [ + "home", + "at home" + ], + "count": 4 + }, + { + "answers": [ + "hospital" + ], + "en_answers": [ + "hospital" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-19": { + "question": "What is the US's most commonly given flower on Parents' Day?", + "en_question": "What is your country's most commonly given flower on Parents' Day?", + "annotations": [ + { + "answers": [ + "roses" + ], + "en_answers": [ + "roses" + ], + "count": 2 + }, + { + "answers": [ + "carnations", + "clove pink" + ], + "en_answers": [ + "carnations", + "clove pink" + ], + "count": 1 + }, + { + "answers": [ + "tulips" + ], + "en_answers": [ + "tulips" + ], + "count": 1 + }, + { + "answers": [ + "daisies", + "daisys" + ], + "en_answers": [ + "daisies", + "daisys" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 2, + "no-answer": 0 + } + }, + "Ji-ko-22": { + "question": "What do people especially spend their first salary on in the US's society?", + "en_question": "What do people especially spend their first salary on in your country's society?", + "annotations": [ + { + "answers": [ + "clothes" + ], + "en_answers": [ + "clothes" + ], + "count": 1 + }, + { + "answers": [ + "electronics" + ], + "en_answers": [ + "electronics" + ], + "count": 1 + }, + { + "answers": [ + "essential expenses", + "necessities" + ], + "en_answers": [ + "essential expenses", + "necessities" + ], + "count": 1 + }, + { + "answers": [ + "paying debts" + ], + "en_answers": [ + "paying debts" + ], + "count": 1 + }, + { + "answers": [ + "food" + ], + "en_answers": [ + "food" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ji-ko-24": { + "question": "What is the most preferred recreational facility among children in the US?", + "en_question": "What is the most preferred recreational facility among children in your country?", + "annotations": [ + { + "answers": [ + "playground", + "park", + "park playground" + ], + "en_answers": [ + "playground", + "park", + "park playground" + ], + "count": 3 + }, + { + "answers": [ + "disneyland" + ], + "en_answers": [ + "disneyland" + ], + "count": 1 + }, + { + "answers": [ + "disney world" + ], + "en_answers": [ + "disney world" + ], + "count": 1 + }, + { + "answers": [ + "soccer (field)", + "international football" + ], + "en_answers": [ + "soccer (field)", + "international football" + ], + "count": 1 + }, + { + "answers": [ + "pool", + "swimming pool" + ], + "en_answers": [ + "pool", + "swimming pool" + ], + "count": 1 + }, + { + "answers": [ + "ymca" + ], + "en_answers": [ + "ymca" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-25": { + "question": "What are the family-related holidays in the US?", + "en_question": "What are the family-related holidays in your country?", + "annotations": [ + { + "answers": [ + "thanksgiving" + ], + "en_answers": [ + "thanksgiving" + ], + "count": 4 + }, + { + "answers": [ + "independence day" + ], + "en_answers": [ + "independence day" + ], + "count": 1 + }, + { + "answers": [ + "athletics", + "christmas", + "xmas" + ], + "en_answers": [ + "athletics", + "christmas", + "xmas" + ], + "count": 1 + }, + { + "answers": [ + "memorial day" + ], + "en_answers": [ + "memorial day" + ], + "count": 1 + }, + { + "answers": [ + "mother's day" + ], + "en_answers": [ + "mother's day" + ], + "count": 1 + }, + { + "answers": [ + "father's day" + ], + "en_answers": [ + "father's day" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-26": { + "question": "What are the key milestones associated with children's independence from their parents in the US's society?", + "en_question": "What are the key milestones associated with children's independence from their parents in your country's society?", + "annotations": [ + { + "answers": [ + "driver's license" + ], + "en_answers": [ + "driver's license" + ], + "count": 2 + }, + { + "answers": [ + "high school graduation", + "graduating high school" + ], + "en_answers": [ + "high school graduation", + "graduating high school" + ], + "count": 2 + }, + { + "answers": [ + "first job" + ], + "en_answers": [ + "first job" + ], + "count": 1 + }, + { + "answers": [ + "starting university" + ], + "en_answers": [ + "starting university" + ], + "count": 1 + }, + { + "answers": [ + "first day of school" + ], + "en_answers": [ + "first day of school" + ], + "count": 1 + }, + { + "answers": [ + "getting a car" + ], + "en_answers": [ + "getting a car" + ], + "count": 1 + }, + { + "answers": [ + "getting a smartphone", + "getting a smart phone" + ], + "en_answers": [ + "getting a smartphone", + "getting a smart phone" + ], + "count": 1 + }, + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 1 + }, + { + "answers": [ + "16" + ], + "en_answers": [ + "16" + ], + "count": 1 + }, + { + "answers": [ + "21" + ], + "en_answers": [ + "21" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ji-ko-27": { + "question": "What is the common gift you give when visiting elderly parents in the US?", + "en_question": "What is the common gift you give when visiting elderly parents in your country?", + "annotations": [ + { + "answers": [ + "wine" + ], + "en_answers": [ + "wine" + ], + "count": 1 + }, + { + "answers": [ + "lottery tickets" + ], + "en_answers": [ + "lottery tickets" + ], + "count": 1 + }, + { + "answers": [ + "food" + ], + "en_answers": [ + "food" + ], + "count": 1 + }, + { + "answers": [ + "clothing" + ], + "en_answers": [ + "clothing" + ], + "count": 1 + }, + { + "answers": [ + "cake" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "candy" + ], + "en_answers": [ + "candy" + ], + "count": 1 + }, + { + "answers": [ + "flowers" + ], + "en_answers": [ + "flowers" + ], + "count": 1 + }, + { + "answers": [ + "chocolate" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-28": { + "question": "When is the first day that people celebrate after a child is born in the US?", + "en_question": "When is the first day that people celebrate after a child is born in your country?", + "annotations": [ + { + "answers": [ + "baptism" + ], + "en_answers": [ + "baptism" + ], + "count": 1 + }, + { + "answers": [ + "birthday" + ], + "en_answers": [ + "birthday" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 2, + "not-applicable": 1 + } + }, + "Ji-ko-29": { + "question": "Which age's birthday is celebrated the most grandly in the US's society?", + "en_question": "Which age's birthday is celebrated the most grandly in your country's society?", + "annotations": [ + { + "answers": [ + "21", + "21st" + ], + "en_answers": [ + "21", + "21st" + ], + "count": 5 + }, + { + "answers": [ + "16", + "16th" + ], + "en_answers": [ + "16", + "16th" + ], + "count": 2 + }, + { + "answers": [ + "18", + "18th" + ], + "en_answers": [ + "18", + "18th" + ], + "count": 2 + }, + { + "answers": [ + "15", + "15th" + ], + "en_answers": [ + "15", + "15th" + ], + "count": 1 + }, + { + "answers": [ + "1", + "1st" + ], + "en_answers": [ + "1", + "1st" + ], + "count": 1 + }, + { + "answers": [ + "13", + "13th" + ], + "en_answers": [ + "13", + "13th" + ], + "count": 1 + }, + { + "answers": [ + "30th" + ], + "en_answers": [ + "30th" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-31": { + "question": "Where do middle and high school students in the US usually study for exams?", + "en_question": "Where do middle and high school students in your country usually study for exams?", + "annotations": [ + { + "answers": [ + "at home", + "home" + ], + "en_answers": [ + "at home", + "home" + ], + "count": 4 + }, + { + "answers": [ + "school", + "at school", + "in school" + ], + "en_answers": [ + "school", + "at school", + "in school" + ], + "count": 4 + }, + { + "answers": [ + "library" + ], + "en_answers": [ + "library" + ], + "count": 2 + }, + { + "answers": [ + "friend's house" + ], + "en_answers": [ + "friend's house" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-33": { + "question": "Where do high school students in the US usually go after dinner?", + "en_question": "Where do high school students in your country usually go after dinner?", + "annotations": [ + { + "answers": [ + "friend's house", + "friend'ss house", + "friends house" + ], + "en_answers": [ + "friend's house", + "friend'ss house", + "friends house" + ], + "count": 3 + }, + { + "answers": [ + "bedroom", + "their room" + ], + "en_answers": [ + "bedroom", + "their room" + ], + "count": 2 + }, + { + "answers": [ + "shopping" + ], + "en_answers": [ + "shopping" + ], + "count": 1 + }, + { + "answers": [ + "homework", + "hw" + ], + "en_answers": [ + "homework", + "hw" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-34": { + "question": "How do elementary school students in the US go to school?", + "en_question": "How do elementary school students in your country go to school?", + "annotations": [ + { + "answers": [ + "bus", + "on a bus", + "school bus", + "the bus" + ], + "en_answers": [ + "bus", + "on a bus", + "school bus", + "the bus" + ], + "count": 5 + }, + { + "answers": [ + "walk", + "on foot", + "walking" + ], + "en_answers": [ + "walk", + "on foot", + "walking" + ], + "count": 4 + }, + { + "answers": [ + "car", + "dropped off by car", + "parents drop off" + ], + "en_answers": [ + "car", + "dropped off by car", + "parents drop off" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-35": { + "question": "What is the most common form of private education in the US?", + "en_question": "What is the most common form of private education in your country?", + "annotations": [ + { + "answers": [ + "catholic school" + ], + "en_answers": [ + "catholic school" + ], + "count": 2 + }, + { + "answers": [ + "university", + "college" + ], + "en_answers": [ + "university", + "college" + ], + "count": 2 + }, + { + "answers": [ + "individual lessons" + ], + "en_answers": [ + "individual lessons" + ], + "count": 1 + }, + { + "answers": [ + "high school", + "hs" + ], + "en_answers": [ + "high school", + "hs" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-36": { + "question": "Which subject’s academy/private educational institute do middle or high students most frequently attend in the US?", + "en_question": "Which subject’s academy/private educational institute do middle or high students most frequently attend in your country?", + "annotations": [ + { + "answers": [ + "math" + ], + "en_answers": [ + "math" + ], + "count": 2 + }, + { + "answers": [ + "english" + ], + "en_answers": [ + "english" + ], + "count": 2 + }, + { + "answers": [ + "history" + ], + "en_answers": [ + "history" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 2, + "not-applicable": 0 + } + }, + "Ji-ko-37": { + "question": "What type of clothing do middle and high school students wear to school in the US?", + "en_question": "What type of clothing do middle and high school students wear to school in your country?", + "annotations": [ + { + "answers": [ + "jeans", + "t shirts and jeans", + "baggy jeans" + ], + "en_answers": [ + "jeans", + "t shirts and jeans", + "baggy jeans" + ], + "count": 4 + }, + { + "answers": [ + "t-shirts", + "t shirts and jeans" + ], + "en_answers": [ + "t-shirts", + "t shirts and jeans" + ], + "count": 3 + }, + { + "answers": [ + "hoodies" + ], + "en_answers": [ + "hoodies" + ], + "count": 1 + }, + { + "answers": [ + "casual" + ], + "en_answers": [ + "casual" + ], + "count": 1 + }, + { + "answers": [ + "fast fashion brands", + "trendy", + "modern" + ], + "en_answers": [ + "fast fashion brands", + "trendy", + "modern" + ], + "count": 1 + }, + { + "answers": [ + "crop tops" + ], + "en_answers": [ + "crop tops" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-38": { + "question": "Which major is considered the most difficult to gain admission to in the US?", + "en_question": "Which major is considered the most difficult to gain admission to in your country?", + "annotations": [ + { + "answers": [ + "medicine", + "medical doctor", + "doctor", + "medical" + ], + "en_answers": [ + "medicine", + "medical doctor", + "doctor", + "medical" + ], + "count": 4 + }, + { + "answers": [ + "law" + ], + "en_answers": [ + "law" + ], + "count": 1 + }, + { + "answers": [ + "dance" + ], + "en_answers": [ + "dance" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-39": { + "question": "What is the most commonly learned musical instrument by elementary school students in the US?", + "en_question": "What is the most commonly learned musical instrument by elementary school students in your country?", + "annotations": [ + { + "answers": [ + "recorder", + "recorder instrument" + ], + "en_answers": [ + "recorder", + "recorder instrument" + ], + "count": 3 + }, + { + "answers": [ + "piano" + ], + "en_answers": [ + "piano" + ], + "count": 2 + }, + { + "answers": [ + "guitar" + ], + "en_answers": [ + "guitar" + ], + "count": 1 + }, + { + "answers": [ + "violin" + ], + "en_answers": [ + "violin" + ], + "count": 1 + }, + { + "answers": [ + "trumpet" + ], + "en_answers": [ + "trumpet" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-40": { + "question": "What do high school students typically do during break time in schools in the US?", + "en_question": "What do high school students typically do during break time in schools in your country?", + "annotations": [ + { + "answers": [ + "eat lunch" + ], + "en_answers": [ + "eat lunch" + ], + "count": 1 + }, + { + "answers": [ + "check facebook" + ], + "en_answers": [ + "check facebook" + ], + "count": 1 + }, + { + "answers": [ + "play on phones" + ], + "en_answers": [ + "play on phones" + ], + "count": 1 + }, + { + "answers": [ + "chat", + "chat/gossip", + "talk" + ], + "en_answers": [ + "chat", + "chat/gossip", + "talk" + ], + "count": 1 + }, + { + "answers": [ + "gossip", + "chat/gossip", + "talk about others" + ], + "en_answers": [ + "gossip", + "chat/gossip", + "talk about others" + ], + "count": 1 + }, + { + "answers": [ + "read" + ], + "en_answers": [ + "read" + ], + "count": 1 + }, + { + "answers": [ + "vacation", + "go on a trip" + ], + "en_answers": [ + "vacation", + "go on a trip" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ji-ko-41": { + "question": "What kind of shoes do students wear in schools in the US?", + "en_question": "What kind of shoes do students wear in schools in your country?", + "annotations": [ + { + "answers": [ + "sneakers", + "athletic", + "tennis shoes", + "sports shoes" + ], + "en_answers": [ + "sneakers", + "athletic", + "tennis shoes", + "sports shoes" + ], + "count": 5 + }, + { + "answers": [ + "boots" + ], + "en_answers": [ + "boots" + ], + "count": 3 + }, + { + "answers": [ + "converse" + ], + "en_answers": [ + "converse" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-42": { + "question": "What are the required subjects in the US's university entrance exam?", + "en_question": "What are the required subjects in your country's university entrance exam?", + "annotations": [ + { + "answers": [ + "math" + ], + "en_answers": [ + "math" + ], + "count": 3 + }, + { + "answers": [ + "english" + ], + "en_answers": [ + "english" + ], + "count": 2 + }, + { + "answers": [ + "writing" + ], + "en_answers": [ + "writing" + ], + "count": 2 + }, + { + "answers": [ + "sat", + "scholastic assessment test" + ], + "en_answers": [ + "sat", + "scholastic assessment test" + ], + "count": 1 + }, + { + "answers": [ + "act", + "american college testing" + ], + "en_answers": [ + "act", + "american college testing" + ], + "count": 1 + }, + { + "answers": [ + "science" + ], + "en_answers": [ + "science" + ], + "count": 1 + }, + { + "answers": [ + "reading" + ], + "en_answers": [ + "reading" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ji-ko-44": { + "question": "Which region (within a city) in the US has the highest academic fervor?", + "en_question": "Which region (within a city) in your country has the highest academic fervor?", + "annotations": [ + { + "answers": [ + "metropolitan", + "urban", + "dense city" + ], + "en_answers": [ + "metropolitan", + "urban", + "dense city" + ], + "count": 1 + }, + { + "answers": [ + "silicon valley" + ], + "en_answers": [ + "silicon valley" + ], + "count": 1 + }, + { + "answers": [ + "northern virginia" + ], + "en_answers": [ + "northern virginia" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-45": { + "question": "What do people look forward to the most at university festivals in the US?", + "en_question": "What do people look forward to the most at university festivals in your country?", + "annotations": [ + { + "answers": [ + "music" + ], + "en_answers": [ + "music" + ], + "count": 1 + }, + { + "answers": [ + "drinking", + "alcohol" + ], + "en_answers": [ + "drinking", + "alcohol" + ], + "count": 1 + }, + { + "answers": [ + "social interaction", + "mingling" + ], + "en_answers": [ + "social interaction", + "mingling" + ], + "count": 1 + }, + { + "answers": [ + "food" + ], + "en_answers": [ + "food" + ], + "count": 1 + }, + { + "answers": [ + "entertainment" + ], + "en_answers": [ + "entertainment" + ], + "count": 1 + }, + { + "answers": [ + "weather" + ], + "en_answers": [ + "weather" + ], + "count": 1 + } + ], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-01": { + "question": "What is the second most popular sport in the US?", + "en_question": "What is the second most popular sport in your country?", + "annotations": [ + { + "answers": [ + "baseball" + ], + "en_answers": [ + "baseball" + ], + "count": 3 + }, + { + "answers": [ + "basketball" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "football" + ], + "en_answers": [ + "football" + ], + "count": 1 + }, + { + "answers": [ + "lacrosse" + ], + "en_answers": [ + "lacrosse" + ], + "count": 1 + }, + { + "answers": [ + "soccer", + "international football" + ], + "en_answers": [ + "soccer", + "international football" + ], + "count": 1 + }, + { + "answers": [ + "american football" + ], + "en_answers": [ + "american football" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-02": { + "question": "What is the most popular sport played without a ball in the US?", + "en_question": "What is the most popular sport played without a ball in your country?", + "annotations": [ + { + "answers": [ + "hockey" + ], + "en_answers": [ + "hockey" + ], + "count": 2 + }, + { + "answers": [ + "track" + ], + "en_answers": [ + "track" + ], + "count": 1 + }, + { + "answers": [ + "swimming" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + }, + { + "answers": [ + "biking" + ], + "en_answers": [ + "biking" + ], + "count": 1 + }, + { + "answers": [ + "wrestling" + ], + "en_answers": [ + "wrestling" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-09": { + "question": "What sports are most associated with the upper class in the US?", + "en_question": "What sports are most associated with the upper class in your country?", + "annotations": [ + { + "answers": [ + "golf" + ], + "en_answers": [ + "golf" + ], + "count": 3 + }, + { + "answers": [ + "polo" + ], + "en_answers": [ + "polo" + ], + "count": 1 + }, + { + "answers": [ + "formula one", + "f1" + ], + "en_answers": [ + "formula one", + "f1" + ], + "count": 1 + }, + { + "answers": [ + "football", + "american football" + ], + "en_answers": [ + "football", + "american football" + ], + "count": 1 + }, + { + "answers": [ + "tennis" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + }, + { + "answers": [ + "skiing" + ], + "en_answers": [ + "skiing" + ], + "count": 1 + }, + { + "answers": [ + "lacrosse", + "lax" + ], + "en_answers": [ + "lacrosse", + "lax" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-13": { + "question": "What is the most popular water sport in the US?", + "en_question": "What is the most popular water sport in your country?", + "annotations": [ + { + "answers": [ + "swimming" + ], + "en_answers": [ + "swimming" + ], + "count": 4 + }, + { + "answers": [ + "kayaking" + ], + "en_answers": [ + "kayaking" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-14": { + "question": "What is the most popular mental sport in the US?", + "en_question": "What is the most popular mental sport in your country?", + "annotations": [ + { + "answers": [ + "chess" + ], + "en_answers": [ + "chess" + ], + "count": 2 + }, + { + "answers": [ + "video games", + "gaming" + ], + "en_answers": [ + "video games", + "gaming" + ], + "count": 1 + }, + { + "answers": [ + "golf" + ], + "en_answers": [ + "golf" + ], + "count": 1 + } + ], + "idks": { + "what is a mental sport?": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-18": { + "question": "How many holiday days per year does a standard worker gets in the US? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "How many holiday days per year does a standard worker gets in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "5-8" + ], + "en_answers": [ + "5-8" + ], + "count": 1 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 0 + } + }, + "Jo-sp-19": { + "question": "What region in the US has been traditionally associated with agriculture?", + "en_question": "What region in your country has been traditionally associated with agriculture?", + "annotations": [ + { + "answers": [ + "midwest" + ], + "en_answers": [ + "midwest" + ], + "count": 4 + }, + { + "answers": [ + "south", + "southern united states", + "souther us" + ], + "en_answers": [ + "south", + "southern united states", + "souther us" + ], + "count": 3 + }, + { + "answers": [ + "pacific" + ], + "en_answers": [ + "pacific" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-21": { + "question": "What time, if any, do people usually leave work for lunch in the US? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "en_question": "What time, if any, do people usually leave work for lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "12:00", + "noon" + ], + "en_answers": [ + "12:00", + "noon" + ], + "count": 3 + }, + { + "answers": [ + "14:00", + "02:00", + "2:00 pm" + ], + "en_answers": [ + "14:00", + "02:00", + "2:00 pm" + ], + "count": 1 + }, + { + "answers": [ + "11:30", + "11:30 am" + ], + "en_answers": [ + "11:30", + "11:30 am" + ], + "count": 1 + }, + { + "answers": [ + "17:00", + "5:00 pm" + ], + "en_answers": [ + "17:00", + "5:00 pm" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-31": { + "question": "What time do high school students tend to leave school in the US? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "en_question": "What time do high school students tend to leave school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "15:00", + "3:00 pm" + ], + "en_answers": [ + "15:00", + "3:00 pm" + ], + "count": 2 + }, + { + "answers": [ + "16:00", + "4:00 pm" + ], + "en_answers": [ + "16:00", + "4:00 pm" + ], + "count": 2 + }, + { + "answers": [ + "14:30", + "2:30 pm" + ], + "en_answers": [ + "14:30", + "2:30 pm" + ], + "count": 1 + }, + { + "answers": [ + "15:30", + "3:30 pm" + ], + "en_answers": [ + "15:30", + "3:30 pm" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-32": { + "question": "What sport do elementary school students tend to practice at school in the US?", + "en_question": "What sport do elementary school students tend to practice at school in your country?", + "annotations": [ + { + "answers": [ + "basketball" + ], + "en_answers": [ + "basketball" + ], + "count": 3 + }, + { + "answers": [ + "soccer", + "international football" + ], + "en_answers": [ + "soccer", + "international football" + ], + "count": 3 + }, + { + "answers": [ + "football", + "american football" + ], + "en_answers": [ + "football", + "american football" + ], + "count": 2 + }, + { + "answers": [ + "baseball" + ], + "en_answers": [ + "baseball" + ], + "count": 2 + }, + { + "answers": [ + "tennis" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-36": { + "question": "How long (in weeks) are summer vacations at elementary schools in the US? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "en_question": "How long (in weeks) are summer vacations at elementary schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-37": { + "question": "How long (in weeks) are summer vacations at universities in the US? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "en_question": "How long (in weeks) are summer vacations at universities in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 2 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "13" + ], + "en_answers": [ + "13" + ], + "count": 1 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "11" + ], + "en_answers": [ + "11" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-39": { + "question": "At what age does elementary education begin in the US? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "en_question": "At what age does elementary education begin in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 3 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-43": { + "question": "How many languages are studied in elementary education besides the US's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "en_question": "How many languages are studied in elementary education besides your country's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 4 + }, + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 1 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-01": { + "question": "What eating utensils do people commonly used in the US?", + "en_question": "What eating utensils do people commonly used in your country?", + "annotations": [ + { + "answers": [ + "fork" + ], + "en_answers": [ + "fork" + ], + "count": 5 + }, + { + "answers": [ + "spoon" + ], + "en_answers": [ + "spoon" + ], + "count": 4 + }, + { + "answers": [ + "knife" + ], + "en_answers": [ + "knife" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-04": { + "question": "What soft drink do people in the US like to have?", + "en_question": "What soft drink do people in your country like to have?", + "annotations": [ + { + "answers": [ + "coke", + "coca-cola", + "coca cola" + ], + "en_answers": [ + "coke", + "coca-cola", + "coca cola" + ], + "count": 4 + }, + { + "answers": [ + "pepsi" + ], + "en_answers": [ + "pepsi" + ], + "count": 2 + }, + { + "answers": [ + "sprite" + ], + "en_answers": [ + "sprite" + ], + "count": 1 + }, + { + "answers": [ + "soda", + "pop" + ], + "en_answers": [ + "soda", + "pop" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-06": { + "question": "What is the most popular traditional alcohol in the US?", + "en_question": "What is the most popular traditional alcohol in your country?", + "annotations": [ + { + "answers": [ + "beer" + ], + "en_answers": [ + "beer" + ], + "count": 3 + }, + { + "answers": [ + "wine" + ], + "en_answers": [ + "wine" + ], + "count": 2 + }, + { + "answers": [ + "vodka" + ], + "en_answers": [ + "vodka" + ], + "count": 2 + }, + { + "answers": [ + "rum" + ], + "en_answers": [ + "rum" + ], + "count": 1 + }, + { + "answers": [ + "tequila" + ], + "en_answers": [ + "tequila" + ], + "count": 1 + }, + { + "answers": [ + "whiskey" + ], + "en_answers": [ + "whiskey" + ], + "count": 1 + }, + { + "answers": [ + "craft beer" + ], + "en_answers": [ + "craft beer" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-07": { + "question": "How long (in hours) on average does it take for people in the US to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "en_question": "How long (in hours) on average does it take for people in your country to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 3 + }, + { + "answers": [ + "1.5" + ], + "en_answers": [ + "1.5" + ], + "count": 2 + }, + { + "answers": [ + "1.7" + ], + "en_answers": [ + "1.7" + ], + "count": 1 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Jod-ch-09": { + "question": "What time do people usually have dinner in the US? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "en_question": "What time do people usually have dinner in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "18:00", + "6:00 pm" + ], + "en_answers": [ + "18:00", + "6:00 pm" + ], + "count": 4 + }, + { + "answers": [ + "19:00", + "1900", + "7:00 pm" + ], + "en_answers": [ + "19:00", + "1900", + "7:00 pm" + ], + "count": 3 + }, + { + "answers": [ + "17:30", + "1730", + "5:30 pm" + ], + "en_answers": [ + "17:30", + "1730", + "5:30 pm" + ], + "count": 1 + }, + { + "answers": [ + "16:00", + "1600", + "4:00 pm" + ], + "en_answers": [ + "16:00", + "1600", + "4:00 pm" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-12": { + "question": "What kind of soup do people from the US like to have?", + "en_question": "What kind of soup do people from your country like to have?", + "annotations": [ + { + "answers": [ + "vegetable", + "veggie" + ], + "en_answers": [ + "vegetable", + "veggie" + ], + "count": 2 + }, + { + "answers": [ + "tomato soup", + "tomato" + ], + "en_answers": [ + "tomato soup", + "tomato" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-13": { + "question": "What street food do people from the US like to eat?", + "en_question": "What street food do people from your country like to eat?", + "annotations": [ + { + "answers": [ + "hot dogs", + "hot dog", + "hotdogs" + ], + "en_answers": [ + "hot dogs", + "hot dog", + "hotdogs" + ], + "count": 4 + }, + { + "answers": [ + "hamburger", + "burger" + ], + "en_answers": [ + "hamburger", + "burger" + ], + "count": 1 + }, + { + "answers": [ + "tacos" + ], + "en_answers": [ + "tacos" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-15": { + "question": "What kind of seafood do people from the US like to eat?", + "en_question": "What kind of seafood do people from your country like to eat?", + "annotations": [ + { + "answers": [ + "lobster" + ], + "en_answers": [ + "lobster" + ], + "count": 4 + }, + { + "answers": [ + "shrimp" + ], + "en_answers": [ + "shrimp" + ], + "count": 3 + }, + { + "answers": [ + "crab", + "crab legs" + ], + "en_answers": [ + "crab", + "crab legs" + ], + "count": 3 + }, + { + "answers": [ + "seafood boil" + ], + "en_answers": [ + "seafood boil" + ], + "count": 1 + }, + { + "answers": [ + "salmon" + ], + "en_answers": [ + "salmon" + ], + "count": 1 + }, + { + "answers": [ + "fried fish (cod)" + ], + "en_answers": [ + "fried fish (cod)" + ], + "count": 1 + }, + { + "answers": [ + "tuna" + ], + "en_answers": [ + "tuna" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-16": { + "question": "What is the biggest festival in the US?", + "en_question": "What is the biggest festival in your country?", + "annotations": [ + { + "answers": [ + "south by southwest" + ], + "en_answers": [ + "south by southwest" + ], + "count": 1 + }, + { + "answers": [ + "summerfest" + ], + "en_answers": [ + "summerfest" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "not-applicable": 1, + "idk": 0 + } + }, + "Jod-ch-28": { + "question": "What is the most commonly used public transport by people when travelling between cites in the US?", + "en_question": "What is the most commonly used public transport by people when travelling between cites in your country?", + "annotations": [ + { + "answers": [ + "plane", + "airplane" + ], + "en_answers": [ + "plane", + "airplane" + ], + "count": 3 + }, + { + "answers": [ + "train" + ], + "en_answers": [ + "train" + ], + "count": 2 + }, + { + "answers": [ + "car" + ], + "en_answers": [ + "car" + ], + "count": 1 + }, + { + "answers": [ + "bus" + ], + "en_answers": [ + "bus" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-30": { + "question": "What are the specific decorations or symbols associated with the most biggest festival in the US?", + "en_question": "What are the specific decorations or symbols associated with the most biggest festival in your country?", + "annotations": [ + { + "answers": [ + "christmas tree", + "christmas trees", + "xmas" + ], + "en_answers": [ + "christmas tree", + "christmas trees", + "xmas" + ], + "count": 3 + }, + { + "answers": [ + "jack o'lantern", + "pumpkins" + ], + "en_answers": [ + "jack o'lantern", + "pumpkins" + ], + "count": 2 + }, + { + "answers": [ + "christmas lights", + "xmas lights" + ], + "en_answers": [ + "christmas lights", + "xmas lights" + ], + "count": 1 + }, + { + "answers": [ + "parade floats" + ], + "en_answers": [ + "parade floats" + ], + "count": 1 + }, + { + "answers": [ + "giant nye ball drop", + "ball drop at times square" + ], + "en_answers": [ + "giant nye ball drop", + "ball drop at times square" + ], + "count": 1 + }, + { + "answers": [ + "stripes" + ], + "en_answers": [ + "stripes" + ], + "count": 1 + }, + { + "answers": [ + "stars" + ], + "en_answers": [ + "stars" + ], + "count": 1 + }, + { + "answers": [ + "flags" + ], + "en_answers": [ + "flags" + ], + "count": 1 + }, + { + "answers": [ + "cornucopia" + ], + "en_answers": [ + "cornucopia" + ], + "count": 1 + }, + { + "answers": [ + "buckle hat" + ], + "en_answers": [ + "buckle hat" + ], + "count": 1 + }, + { + "answers": [ + "red leaves", + "autumn leaves" + ], + "en_answers": [ + "red leaves", + "autumn leaves" + ], + "count": 1 + }, + { + "answers": [ + "us flag", + "american flag" + ], + "en_answers": [ + "us flag", + "american flag" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-37": { + "question": "What sports do women like to watch the most in the US?", + "en_question": "What sports do women like to watch the most in your country?", + "annotations": [ + { + "answers": [ + "tennis" + ], + "en_answers": [ + "tennis" + ], + "count": 3 + }, + { + "answers": [ + "football", + "american football" + ], + "en_answers": [ + "football", + "american football" + ], + "count": 2 + }, + { + "answers": [ + "baseball" + ], + "en_answers": [ + "baseball" + ], + "count": 2 + }, + { + "answers": [ + "basketball" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-38": { + "question": "What sports do men like to watch the most in the US?", + "en_question": "What sports do men like to watch the most in your country?", + "annotations": [ + { + "answers": [ + "football", + "american football" + ], + "en_answers": [ + "football", + "american football" + ], + "count": 5 + }, + { + "answers": [ + "basketball" + ], + "en_answers": [ + "basketball" + ], + "count": 4 + }, + { + "answers": [ + "baseball" + ], + "en_answers": [ + "baseball" + ], + "count": 2 + }, + { + "answers": [ + "hockey" + ], + "en_answers": [ + "hockey" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-41": { + "question": "What is the common leisure activity that females in their 20s in the US engage in?", + "en_question": "What is the common leisure activity that females in their 20s in your country engage in?", + "annotations": [ + { + "answers": [ + "hanging out with friends" + ], + "en_answers": [ + "hanging out with friends" + ], + "count": 1 + }, + { + "answers": [ + "fitness", + "exercise" + ], + "en_answers": [ + "fitness", + "exercise" + ], + "count": 1 + }, + { + "answers": [ + "shopping" + ], + "en_answers": [ + "shopping" + ], + "count": 1 + }, + { + "answers": [ + "social media" + ], + "en_answers": [ + "social media" + ], + "count": 1 + }, + { + "answers": [ + "netflix", + "nfx" + ], + "en_answers": [ + "netflix", + "nfx" + ], + "count": 1 + }, + { + "answers": [ + "yoga" + ], + "en_answers": [ + "yoga" + ], + "count": 1 + }, + { + "answers": [ + "running", + "jogging" + ], + "en_answers": [ + "running", + "jogging" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Jod-ch-42": { + "question": "What is the common leisure activity that males in their 20s in the US engage in?", + "en_question": "What is the common leisure activity that males in their 20s in your country engage in?", + "annotations": [ + { + "answers": [ + "gaming", + "playing video games" + ], + "en_answers": [ + "gaming", + "playing video games" + ], + "count": 2 + }, + { + "answers": [ + "drinking", + "drinking alcohol" + ], + "en_answers": [ + "drinking", + "drinking alcohol" + ], + "count": 1 + }, + { + "answers": [ + "partying" + ], + "en_answers": [ + "partying" + ], + "count": 1 + }, + { + "answers": [ + "playing sports", + "athletics" + ], + "en_answers": [ + "playing sports", + "athletics" + ], + "count": 1 + }, + { + "answers": [ + "dating" + ], + "en_answers": [ + "dating" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-46": { + "question": "How long (in hours) do people usually take a break after lunch on a weekday in the US? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "en_question": "How long (in hours) do people usually take a break after lunch on a weekday in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "1", + "1 hour" + ], + "en_answers": [ + "1", + "1 hour" + ], + "count": 3 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 1 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + }, + { + "answers": [ + "0.5" + ], + "en_answers": [ + "0.5" + ], + "count": 1 + }, + { + "answers": [ + "0.3" + ], + "en_answers": [ + "0.3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-48": { + "question": "What do people eat for lunch during the working days in the US?", + "en_question": "What do people eat for lunch during the working days in your country?", + "annotations": [ + { + "answers": [ + "sandwiches", + "sandwich" + ], + "en_answers": [ + "sandwiches", + "sandwich" + ], + "count": 4 + }, + { + "answers": [ + "salad", + "salads" + ], + "en_answers": [ + "salad", + "salads" + ], + "count": 3 + }, + { + "answers": [ + "soup" + ], + "en_answers": [ + "soup" + ], + "count": 1 + }, + { + "answers": [ + "fast food restaurants", + "fast food restaraunts" + ], + "en_answers": [ + "fast food restaurants", + "fast food restaraunts" + ], + "count": 1 + }, + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-50": { + "question": "What is the average commute time (in minutes) for people in the US? (Provide Arabic numerals (e.g., 1) only.)", + "en_question": "What is the average commute time (in minutes) for people in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 3 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + }, + { + "answers": [ + "45" + ], + "en_answers": [ + "45" + ], + "count": 1 + }, + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 1 + }, + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-51": { + "question": "What is the most common transportation that people take to get to work in the US?", + "en_question": "What is the most common transportation that people take to get to work in your country?", + "annotations": [ + { + "answers": [ + "car", + "automobile", + "personal car", + "driving" + ], + "en_answers": [ + "car", + "automobile", + "personal car", + "driving" + ], + "count": 5 + }, + { + "answers": [ + "bus" + ], + "en_answers": [ + "bus" + ], + "count": 1 + }, + { + "answers": [ + "train" + ], + "en_answers": [ + "train" + ], + "count": 1 + }, + { + "answers": [ + "bart" + ], + "en_answers": [ + "bart" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-54": { + "question": "How long (in days) is the marriage leave in the US? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "How long (in days) is the marriage leave in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 3 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "1", + "1 week" + ], + "en_answers": [ + "1", + "1 week" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-56": { + "question": "What is the typical retirement age for women in the US? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "What is the typical retirement age for women in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "65" + ], + "en_answers": [ + "65" + ], + "count": 5 + }, + { + "answers": [ + "62" + ], + "en_answers": [ + "62" + ], + "count": 1 + }, + { + "answers": [ + "63" + ], + "en_answers": [ + "63" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-57": { + "question": "What is the typical retirement age for men in the US? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "What is the typical retirement age for men in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "65" + ], + "en_answers": [ + "65" + ], + "count": 4 + }, + { + "answers": [ + "66" + ], + "en_answers": [ + "66" + ], + "count": 1 + }, + { + "answers": [ + "70" + ], + "en_answers": [ + "70" + ], + "count": 1 + }, + { + "answers": [ + "80" + ], + "en_answers": [ + "80" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-58": { + "question": "Which profession is the most respected in the US?", + "en_question": "Which profession is the most respected in your country?", + "annotations": [ + { + "answers": [ + "doctor", + "physician", + "medicine" + ], + "en_answers": [ + "doctor", + "physician", + "medicine" + ], + "count": 5 + }, + { + "answers": [ + "firefighter" + ], + "en_answers": [ + "firefighter" + ], + "count": 1 + }, + { + "answers": [ + "lawyer" + ], + "en_answers": [ + "lawyer" + ], + "count": 1 + }, + { + "answers": [ + "teacher" + ], + "en_answers": [ + "teacher" + ], + "count": 1 + }, + { + "answers": [ + "military" + ], + "en_answers": [ + "military" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-60": { + "question": "What is the duration (in hours) of a typical workday in the US? (Provide Arabic numerals (0~24) only.)", + "en_question": "What is the duration (in hours) of a typical workday in your country? (Provide Arabic numerals (0~24) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 5 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 2 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-61": { + "question": "Which occupation is most preferred among females in the US?", + "en_question": "Which occupation is most preferred among females in your country?", + "annotations": [ + { + "answers": [ + "teacher", + "teaching", + "instructor" + ], + "en_answers": [ + "teacher", + "teaching", + "instructor" + ], + "count": 4 + }, + { + "answers": [ + "nurse", + "nursing" + ], + "en_answers": [ + "nurse", + "nursing" + ], + "count": 3 + }, + { + "answers": [ + "stay at home mom" + ], + "en_answers": [ + "stay at home mom" + ], + "count": 1 + }, + { + "answers": [ + "office work" + ], + "en_answers": [ + "office work" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-62": { + "question": "Which occupation is most preferred among males in the US?", + "en_question": "Which occupation is most preferred among males in your country?", + "annotations": [ + { + "answers": [ + "finance", + "finance or business", + "investor", + "business (finance)" + ], + "en_answers": [ + "finance", + "finance or business", + "investor", + "business (finance)" + ], + "count": 3 + }, + { + "answers": [ + "doctor" + ], + "en_answers": [ + "doctor" + ], + "count": 2 + }, + { + "answers": [ + "lawyer", + "law" + ], + "en_answers": [ + "lawyer", + "law" + ], + "count": 2 + }, + { + "answers": [ + "business", + "finance or business", + "business (finance)" + ], + "en_answers": [ + "business", + "finance or business", + "business (finance)" + ], + "count": 2 + }, + { + "answers": [ + "trades (plumber" + ], + "en_answers": [ + "trades (plumber" + ], + "count": 1 + }, + { + "answers": [ + "electrician)" + ], + "en_answers": [ + "electrician)" + ], + "count": 1 + }, + { + "answers": [ + "restaurant (waiter" + ], + "en_answers": [ + "restaurant (waiter" + ], + "count": 1 + }, + { + "answers": [ + "dishes" + ], + "en_answers": [ + "dishes" + ], + "count": 1 + }, + { + "answers": [ + "cook)" + ], + "en_answers": [ + "cook)" + ], + "count": 1 + }, + { + "answers": [ + "law enforcement", + "police officer" + ], + "en_answers": [ + "law enforcement", + "police officer" + ], + "count": 1 + }, + { + "answers": [ + "firefighting" + ], + "en_answers": [ + "firefighting" + ], + "count": 1 + }, + { + "answers": [ + "military" + ], + "en_answers": [ + "military" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-17": { + "question": "On average, how far do students typically pursue their education in the US? (e.g., elementary, high school)", + "en_question": "On average, how far do students typically pursue their education in your country? (e.g., elementary, high school)", + "annotations": [ + { + "answers": [ + "high school" + ], + "en_answers": [ + "high school" + ], + "count": 2 + }, + { + "answers": [ + "undergraduate", + "college", + "university" + ], + "en_answers": [ + "undergraduate", + "college", + "university" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ki-pe-24": { + "question": "What language is taught in schools in the US besides English?", + "en_question": "What language is taught in schools in your country besides English?", + "annotations": [ + { + "answers": [ + "spanish" + ], + "en_answers": [ + "spanish" + ], + "count": 5 + }, + { + "answers": [ + "french" + ], + "en_answers": [ + "french" + ], + "count": 3 + }, + { + "answers": [ + "german" + ], + "en_answers": [ + "german" + ], + "count": 2 + }, + { + "answers": [ + "chinese" + ], + "en_answers": [ + "chinese" + ], + "count": 1 + }, + { + "answers": [ + "latin" + ], + "en_answers": [ + "latin" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-30": { + "question": "What days of the week are schools closed in the US?", + "en_question": "What days of the week are schools closed in your country?", + "annotations": [ + { + "answers": [ + "saturday", + "saturday and sunday" + ], + "en_answers": [ + "saturday", + "saturday and sunday" + ], + "count": 5 + }, + { + "answers": [ + "sunday", + "saturday and sunday" + ], + "en_answers": [ + "sunday", + "saturday and sunday" + ], + "count": 5 + }, + { + "answers": [ + "public hoilday" + ], + "en_answers": [ + "public hoilday" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-32": { + "question": "What food do the hosts usually prepare for the guests in the US?", + "en_question": "What food do the hosts usually prepare for the guests in your country?", + "annotations": [ + { + "answers": [ + "chips", + "chips and dip", + "chips and dips" + ], + "en_answers": [ + "chips", + "chips and dip", + "chips and dips" + ], + "count": 3 + }, + { + "answers": [ + "dip", + "chips and dip", + "dips", + "chips and dips" + ], + "en_answers": [ + "dip", + "chips and dip", + "dips", + "chips and dips" + ], + "count": 3 + }, + { + "answers": [ + "veggie tray", + "vegetable plates", + "vegetables" + ], + "en_answers": [ + "veggie tray", + "vegetable plates", + "vegetables" + ], + "count": 2 + }, + { + "answers": [ + "mac and cheese", + "macaroni and cheese", + "mac&cheese" + ], + "en_answers": [ + "mac and cheese", + "macaroni and cheese", + "mac&cheese" + ], + "count": 1 + }, + { + "answers": [ + "barbecue", + "bbq" + ], + "en_answers": [ + "barbecue", + "bbq" + ], + "count": 1 + }, + { + "answers": [ + "potato salad" + ], + "en_answers": [ + "potato salad" + ], + "count": 1 + }, + { + "answers": [ + "meat" + ], + "en_answers": [ + "meat" + ], + "count": 1 + }, + { + "answers": [ + "cocktails" + ], + "en_answers": [ + "cocktails" + ], + "count": 1 + }, + { + "answers": [ + "baked good", + "pastries" + ], + "en_answers": [ + "baked good", + "pastries" + ], + "count": 1 + }, + { + "answers": [ + "roasts" + ], + "en_answers": [ + "roasts" + ], + "count": 1 + }, + { + "answers": [ + "dessert", + "sweets" + ], + "en_answers": [ + "dessert", + "sweets" + ], + "count": 1 + }, + { + "answers": [ + "appetizers", + "appetisers and snacks" + ], + "en_answers": [ + "appetizers", + "appetisers and snacks" + ], + "count": 1 + }, + { + "answers": [ + "snacks", + "appetisers and snacks" + ], + "en_answers": [ + "snacks", + "appetisers and snacks" + ], + "count": 1 + }, + { + "answers": [ + "side dishes" + ], + "en_answers": [ + "side dishes" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-34": { + "question": "What is the usual drink in the breakfast in the US?", + "en_question": "What is the usual drink in the breakfast in your country?", + "annotations": [ + { + "answers": [ + "coffee" + ], + "en_answers": [ + "coffee" + ], + "count": 4 + }, + { + "answers": [ + "orange juice", + "oj" + ], + "en_answers": [ + "orange juice", + "oj" + ], + "count": 2 + }, + { + "answers": [ + "milk" + ], + "en_answers": [ + "milk" + ], + "count": 2 + }, + { + "answers": [ + "juice" + ], + "en_answers": [ + "juice" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ki-pe-36": { + "question": "Except the food original from the US, which country's food is more popular in the US?", + "en_question": "Except the food original from your country, which country's food is more popular in your country?", + "annotations": [ + { + "answers": [ + "mexican" + ], + "en_answers": [ + "mexican" + ], + "count": 2 + }, + { + "answers": [ + "chinese" + ], + "en_answers": [ + "chinese" + ], + "count": 2 + }, + { + "answers": [ + "italian" + ], + "en_answers": [ + "italian" + ], + "count": 2 + }, + { + "answers": [ + "mexico" + ], + "en_answers": [ + "mexico" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-39": { + "question": "What food is usually prepared for a family picnic in the US?", + "en_question": "What food is usually prepared for a family picnic in your country?", + "annotations": [ + { + "answers": [ + "sandwiches" + ], + "en_answers": [ + "sandwiches" + ], + "count": 3 + }, + { + "answers": [ + "potato salad" + ], + "en_answers": [ + "potato salad" + ], + "count": 1 + }, + { + "answers": [ + "chicken" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "pasta salad" + ], + "en_answers": [ + "pasta salad" + ], + "count": 1 + }, + { + "answers": [ + "fruit" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + }, + { + "answers": [ + "chips" + ], + "en_answers": [ + "chips" + ], + "count": 1 + }, + { + "answers": [ + "roast turkey" + ], + "en_answers": [ + "roast turkey" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-40": { + "question": "Which food from the US is considered disgusting by the rest of the world?", + "en_question": "Which food from your country is considered disgusting by the rest of the world?", + "annotations": [ + { + "answers": [ + "mcdonald's", + "mcdonalds", + "mcd" + ], + "en_answers": [ + "mcdonald's", + "mcdonalds", + "mcd" + ], + "count": 1 + }, + { + "answers": [ + "peanut butter and jelly", + "pb&j" + ], + "en_answers": [ + "peanut butter and jelly", + "pb&j" + ], + "count": 1 + }, + { + "answers": [ + "hot dogs", + "hotdogs" + ], + "en_answers": [ + "hot dogs", + "hotdogs" + ], + "count": 1 + }, + { + "answers": [ + "deep fried things" + ], + "en_answers": [ + "deep fried things" + ], + "count": 1 + }, + { + "answers": [ + "crawdads" + ], + "en_answers": [ + "crawdads" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-43": { + "question": "What is the name of the popular bread in the US?", + "en_question": "What is the name of the popular bread in your country?", + "annotations": [ + { + "answers": [ + "wonder bread", + "wonderbread" + ], + "en_answers": [ + "wonder bread", + "wonderbread" + ], + "count": 2 + }, + { + "answers": [ + "white bread", + "white" + ], + "en_answers": [ + "white bread", + "white" + ], + "count": 2 + }, + { + "answers": [ + "wheat bread" + ], + "en_answers": [ + "wheat bread" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-51": { + "question": "What time of day are government offices closed in the US? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "en_question": "What time of day are government offices closed in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 2 + }, + { + "answers": [ + "15:00", + "17:00", + "05:00" + ], + "en_answers": [ + "15:00", + "17:00", + "05:00" + ], + "count": 2 + }, + { + "answers": [ + "16:30" + ], + "en_answers": [ + "16:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-53": { + "question": "What is the normal start time of government offices in the US? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "en_question": "What is the normal start time of government offices in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 3 + }, + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 2 + }, + { + "answers": [ + "08:30" + ], + "en_answers": [ + "08:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-01": { + "question": "What national holiday has the longest duration in the US?", + "en_question": "What national holiday has the longest duration in your country?", + "annotations": [ + { + "answers": [ + "christmas", + "xmas" + ], + "en_answers": [ + "christmas", + "xmas" + ], + "count": 3 + }, + { + "answers": [ + "hanukkah", + "hannukah" + ], + "en_answers": [ + "hanukkah", + "hannukah" + ], + "count": 1 + }, + { + "answers": [ + "thanksgiving" + ], + "en_answers": [ + "thanksgiving" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-02": { + "question": "What are the common activities people from the US do to celebrate Independence day?", + "en_question": "What are the common activities people from your country do to celebrate Independence day?", + "annotations": [ + { + "answers": [ + "fireworks", + "watch fireworks" + ], + "en_answers": [ + "fireworks", + "watch fireworks" + ], + "count": 5 + }, + { + "answers": [ + "cookouts", + "barbeque", + "barbecue" + ], + "en_answers": [ + "cookouts", + "barbeque", + "barbecue" + ], + "count": 3 + }, + { + "answers": [ + "picnic" + ], + "en_answers": [ + "picnic" + ], + "count": 1 + }, + { + "answers": [ + "boating" + ], + "en_answers": [ + "boating" + ], + "count": 1 + }, + { + "answers": [ + "eat" + ], + "en_answers": [ + "eat" + ], + "count": 1 + }, + { + "answers": [ + "drink" + ], + "en_answers": [ + "drink" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-04": { + "question": "What is installed in front of the house when a family member dies in the US?", + "en_question": "What is installed in front of the house when a family member dies in your country?", + "annotations": [ + { + "answers": [ + "flag" + ], + "en_answers": [ + "flag" + ], + "count": 1 + }, + { + "answers": [ + "flowers" + ], + "en_answers": [ + "flowers" + ], + "count": 1 + }, + { + "answers": [ + "wreath" + ], + "en_answers": [ + "wreath" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "not-applicable": 1, + "idk": 0 + } + }, + "Kik-in-05": { + "question": "When is a pregnancy celebration or ceremony usually held in the US?", + "en_question": "When is a pregnancy celebration or ceremony usually held in your country?", + "annotations": [ + { + "answers": [ + "baby shower" + ], + "en_answers": [ + "baby shower" + ], + "count": 2 + }, + { + "answers": [ + "near delivery date" + ], + "en_answers": [ + "near delivery date" + ], + "count": 1 + }, + { + "answers": [ + "gender reveal" + ], + "en_answers": [ + "gender reveal" + ], + "count": 1 + }, + { + "answers": [ + "blessingway ceremony", + "blessway ceremony" + ], + "en_answers": [ + "blessingway ceremony", + "blessway ceremony" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Kik-in-06": { + "question": "What event is usually held before a wedding in the US?", + "en_question": "What event is usually held before a wedding in your country?", + "annotations": [ + { + "answers": [ + "bachelors party", + "bachelor party", + "bachelor/bachelorette party" + ], + "en_answers": [ + "bachelors party", + "bachelor party", + "bachelor/bachelorette party" + ], + "count": 3 + }, + { + "answers": [ + "bridal shower" + ], + "en_answers": [ + "bridal shower" + ], + "count": 1 + }, + { + "answers": [ + "rehearsal dinner" + ], + "en_answers": [ + "rehearsal dinner" + ], + "count": 1 + }, + { + "answers": [ + "engagement party" + ], + "en_answers": [ + "engagement party" + ], + "count": 1 + }, + { + "answers": [ + "bachelorette party", + "bachelor/bachelorette party" + ], + "en_answers": [ + "bachelorette party", + "bachelor/bachelorette party" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-07": { + "question": "What is usually shared to the children during (Lunar) New Year in the US?", + "en_question": "What is usually shared to the children during (Lunar) New Year in your country?", + "annotations": [ + { + "answers": [ + "cash" + ], + "en_answers": [ + "cash" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "no-answer": 1, + "idk": 0 + } + }, + "Kik-in-08": { + "question": "What activities are usually done days before Ramadan in the US?", + "en_question": "What activities are usually done days before Ramadan in your country?", + "annotations": [ + { + "answers": [ + "daylight fasting" + ], + "en_answers": [ + "daylight fasting" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 3, + "no-answer": 0 + } + }, + "Kik-in-10": { + "question": "What is the most popular tourist attraction for foreign visitors in the US?", + "en_question": "What is the most popular tourist attraction for foreign visitors in your country?", + "annotations": [ + { + "answers": [ + "statue of liberty" + ], + "en_answers": [ + "statue of liberty" + ], + "count": 2 + }, + { + "answers": [ + "grand canyon" + ], + "en_answers": [ + "grand canyon" + ], + "count": 1 + }, + { + "answers": [ + "disney world" + ], + "en_answers": [ + "disney world" + ], + "count": 1 + }, + { + "answers": [ + "las vegas" + ], + "en_answers": [ + "las vegas" + ], + "count": 1 + }, + { + "answers": [ + "lincoln monument" + ], + "en_answers": [ + "lincoln monument" + ], + "count": 1 + }, + { + "answers": [ + "disneyland" + ], + "en_answers": [ + "disneyland" + ], + "count": 1 + }, + { + "answers": [ + "hollywood" + ], + "en_answers": [ + "hollywood" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-11": { + "question": "What is the most popular religious sites (temple, church, etc.) for tourism in the US?", + "en_question": "What is the most popular religious sites (temple, church, etc.) for tourism in your country?", + "annotations": [ + { + "answers": [ + "st. peters", + "st peters" + ], + "en_answers": [ + "st. peters", + "st peters" + ], + "count": 1 + }, + { + "answers": [ + "crystal cathedral", + "crytstal catherdral" + ], + "en_answers": [ + "crystal cathedral", + "crytstal catherdral" + ], + "count": 1 + }, + { + "answers": [ + "mormon temples" + ], + "en_answers": [ + "mormon temples" + ], + "count": 1 + }, + { + "answers": [ + "churches" + ], + "en_answers": [ + "churches" + ], + "count": 1 + }, + { + "answers": [ + "temple" + ], + "en_answers": [ + "temple" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-15": { + "question": "What clothes do women usually wear on graduation commencement ceremony in the US?", + "en_question": "What clothes do women usually wear on graduation commencement ceremony in your country?", + "annotations": [ + { + "answers": [ + "cap", + "robe and cap", + "graduation cap", + "graduation cap and gown", + "dresses with cap and gown" + ], + "en_answers": [ + "cap", + "robe and cap", + "graduation cap", + "graduation cap and gown", + "dresses with cap and gown" + ], + "count": 3 + }, + { + "answers": [ + "graduation gown", + "graduation cap and gown", + "gown", + "dresses with cap and gown" + ], + "en_answers": [ + "graduation gown", + "graduation cap and gown", + "gown", + "dresses with cap and gown" + ], + "count": 2 + }, + { + "answers": [ + "robe", + "robe and cap" + ], + "en_answers": [ + "robe", + "robe and cap" + ], + "count": 1 + }, + { + "answers": [ + "dresses", + "dresses with cap and gown" + ], + "en_answers": [ + "dresses", + "dresses with cap and gown" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "no-answer": 1, + "idk": 0 + } + }, + "Kik-in-16": { + "question": "What drink is commonly consumed in the US when the weather is cold?", + "en_question": "What drink is commonly consumed in your country when the weather is cold?", + "annotations": [ + { + "answers": [ + "coffee", + "hot coffee", + "cofee" + ], + "en_answers": [ + "coffee", + "hot coffee", + "cofee" + ], + "count": 5 + }, + { + "answers": [ + "hot chocolate", + "cocoa" + ], + "en_answers": [ + "hot chocolate", + "cocoa" + ], + "count": 3 + }, + { + "answers": [ + "tea" + ], + "en_answers": [ + "tea" + ], + "count": 1 + }, + { + "answers": [ + "water" + ], + "en_answers": [ + "water" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-17": { + "question": "What fruit is more commonly sold and found during Ramadan in the US?", + "en_question": "What fruit is more commonly sold and found during Ramadan in your country?", + "annotations": [ + { + "answers": [ + "dates" + ], + "en_answers": [ + "dates" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 2, + "no-answer": 0 + } + }, + "Kik-in-24": { + "question": "What carbohydrate is usually served with chicken in a fast-food restaurant in the US?", + "en_question": "What carbohydrate is usually served with chicken in a fast-food restaurant in your country?", + "annotations": [ + { + "answers": [ + "fries", + "frys", + "french fries", + "french fried potatoes" + ], + "en_answers": [ + "fries", + "frys", + "french fries", + "french fried potatoes" + ], + "count": 4 + }, + { + "answers": [ + "potato" + ], + "en_answers": [ + "potato" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-31": { + "question": "What is the most famous martial art sports in the US?", + "en_question": "What is the most famous martial art sports in your country?", + "annotations": [ + { + "answers": [ + "karate" + ], + "en_answers": [ + "karate" + ], + "count": 3 + }, + { + "answers": [ + "mma", + "mixed martial arts" + ], + "en_answers": [ + "mma", + "mixed martial arts" + ], + "count": 2 + }, + { + "answers": [ + "brazilian jiu-jitsu", + "jiu-jitsu", + "ju jitsu" + ], + "en_answers": [ + "brazilian jiu-jitsu", + "jiu-jitsu", + "ju jitsu" + ], + "count": 2 + }, + { + "answers": [ + "taekwondo", + "tae kwon do" + ], + "en_answers": [ + "taekwondo", + "tae kwon do" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-34": { + "question": "What sports are often broadcasted on national television in the US?", + "en_question": "What sports are often broadcasted on national television in your country?", + "annotations": [ + { + "answers": [ + "basketball" + ], + "en_answers": [ + "basketball" + ], + "count": 5 + }, + { + "answers": [ + "football", + "american football" + ], + "en_answers": [ + "football", + "american football" + ], + "count": 5 + }, + { + "answers": [ + "baseball" + ], + "en_answers": [ + "baseball" + ], + "count": 4 + }, + { + "answers": [ + "soccer", + "international football" + ], + "en_answers": [ + "soccer", + "international football" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-35": { + "question": "What sports were popular among people from the US during the COVID-19 pandemic?", + "en_question": "What sports were popular among people from your country during the COVID-19 pandemic?", + "annotations": [ + { + "answers": [ + "e-sports", + "esports" + ], + "en_answers": [ + "e-sports", + "esports" + ], + "count": 2 + }, + { + "answers": [ + "football", + "american football" + ], + "en_answers": [ + "football", + "american football" + ], + "count": 1 + }, + { + "answers": [ + "tennis" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + }, + { + "answers": [ + "pickleball", + "pickle ball" + ], + "en_answers": [ + "pickleball", + "pickle ball" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Kik-in-36": { + "question": "Who is the most popular soccer coach in the US?", + "en_question": "Who is the most popular soccer coach in your country?", + "annotations": [ + { + "answers": [ + "gregg berhalter" + ], + "en_answers": [ + "gregg berhalter" + ], + "count": 1 + } + ], + "idks": { + "idk": 7, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Kik-in-37": { + "question": "What soccer teams in the US are famous for their intense rivalry? (e.g. ___ vs ___)", + "en_question": "What soccer teams in your country are famous for their intense rivalry? (e.g. ___ vs ___)", + "annotations": [ + { + "answers": [ + "seattle sounders vs portland timbers", + "seattle sounders v portland timbers", + "sounders vs timbers" + ], + "en_answers": [ + "seattle sounders vs portland timbers", + "seattle sounders v portland timbers", + "sounders vs timbers" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 2, + "no-answer": 1 + } + }, + "Kik-in-38": { + "question": "What are the names of soccer supporters in the US who are famous for their intense rivalry? (e.g. ___ vs ___)", + "en_question": "What are the names of soccer supporters in your country who are famous for their intense rivalry? (e.g. ___ vs ___)", + "annotations": [ + { + "answers": [ + "us vs mexico", + "usa vs mex" + ], + "en_answers": [ + "us vs mexico", + "usa vs mex" + ], + "count": 1 + } + ], + "idks": { + "idk": 5, + "not-applicable": 2, + "no-answer": 0 + } + }, + "Kik-in-40": { + "question": "Who is the most famous male badminton player in the US?", + "en_question": "Who is the most famous male badminton player in your country?", + "annotations": [ + { + "answers": [ + "howard bach" + ], + "en_answers": [ + "howard bach" + ], + "count": 1 + } + ], + "idks": { + "idk": 5, + "not-applicable": 1, + "no-answer": 1 + } + }, + "Kik-in-41": { + "question": "Who is the most famous female badminton player in the US?", + "en_question": "Who is the most famous female badminton player in your country?", + "annotations": [ + { + "answers": [ + "serena williams" + ], + "en_answers": [ + "serena williams" + ], + "count": 1 + } + ], + "idks": { + "idk": 6, + "not-applicable": 2, + "no-answer": 0 + } + }, + "Kik-in-44": { + "question": "What sport gets the most support from the government in the US?", + "en_question": "What sport gets the most support from the government in your country?", + "annotations": [ + { + "answers": [ + "football", + "american football" + ], + "en_answers": [ + "football", + "american football" + ], + "count": 4 + }, + { + "answers": [ + "baseball" + ], + "en_answers": [ + "baseball" + ], + "count": 3 + }, + { + "answers": [ + "soccer", + "international football" + ], + "en_answers": [ + "soccer", + "international football" + ], + "count": 1 + }, + { + "answers": [ + "basketball" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-45": { + "question": "What sports field facilities are usually available at schools in the US?", + "en_question": "What sports field facilities are usually available at schools in your country?", + "annotations": [ + { + "answers": [ + "track and field" + ], + "en_answers": [ + "track and field" + ], + "count": 2 + }, + { + "answers": [ + "football", + "american football" + ], + "en_answers": [ + "football", + "american football" + ], + "count": 2 + }, + { + "answers": [ + "baseball" + ], + "en_answers": [ + "baseball" + ], + "count": 2 + }, + { + "answers": [ + "track" + ], + "en_answers": [ + "track" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-02": { + "question": "What cafe beverage do people from the US most commonly enjoy?", + "en_question": "What cafe beverage do people from your country most commonly enjoy?", + "annotations": [ + { + "answers": [ + "coffee" + ], + "en_answers": [ + "coffee" + ], + "count": 4 + }, + { + "answers": [ + "frozen coffee" + ], + "en_answers": [ + "frozen coffee" + ], + "count": 1 + }, + { + "answers": [ + "smoothies" + ], + "en_answers": [ + "smoothies" + ], + "count": 1 + }, + { + "answers": [ + "soda" + ], + "en_answers": [ + "soda" + ], + "count": 1 + }, + { + "answers": [ + "lattes" + ], + "en_answers": [ + "lattes" + ], + "count": 1 + }, + { + "answers": [ + "brewed coffee" + ], + "en_answers": [ + "brewed coffee" + ], + "count": 1 + }, + { + "answers": [ + "beer" + ], + "en_answers": [ + "beer" + ], + "count": 1 + }, + { + "answers": [ + "wine" + ], + "en_answers": [ + "wine" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-04": { + "question": "What is the preferred hangover cure food for people from the US?", + "en_question": "What is the preferred hangover cure food for people from your country?", + "annotations": [ + { + "answers": [ + "soup" + ], + "en_answers": [ + "soup" + ], + "count": 1 + }, + { + "answers": [ + "tomato juice" + ], + "en_answers": [ + "tomato juice" + ], + "count": 1 + }, + { + "answers": [ + "advil" + ], + "en_answers": [ + "advil" + ], + "count": 1 + }, + { + "answers": [ + "water" + ], + "en_answers": [ + "water" + ], + "count": 1 + }, + { + "answers": [ + "liquid iv" + ], + "en_answers": [ + "liquid iv" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "Na-ko-05": { + "question": "What is the typical delivery food in the US?", + "en_question": "What is the typical delivery food in your country?", + "annotations": [ + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 3 + }, + { + "answers": [ + "chinese food", + "chinese" + ], + "en_answers": [ + "chinese food", + "chinese" + ], + "count": 2 + }, + { + "answers": [ + "fast food" + ], + "en_answers": [ + "fast food" + ], + "count": 1 + }, + { + "answers": [ + "take out" + ], + "en_answers": [ + "take out" + ], + "count": 1 + }, + { + "answers": [ + "uber eats" + ], + "en_answers": [ + "uber eats" + ], + "count": 1 + }, + { + "answers": [ + "burgers" + ], + "en_answers": [ + "burgers" + ], + "count": 1 + }, + { + "answers": [ + "thai" + ], + "en_answers": [ + "thai" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-07": { + "question": "What type of meat is consumed most by people from the US?", + "en_question": "What type of meat is consumed most by people from your country?", + "annotations": [ + { + "answers": [ + "beef" + ], + "en_answers": [ + "beef" + ], + "count": 3 + }, + { + "answers": [ + "chicken" + ], + "en_answers": [ + "chicken" + ], + "count": 2 + }, + { + "answers": [ + "steak" + ], + "en_answers": [ + "steak" + ], + "count": 2 + }, + { + "answers": [ + "hamburgers", + "hamburgere" + ], + "en_answers": [ + "hamburgers", + "hamburgere" + ], + "count": 1 + }, + { + "answers": [ + "pork" + ], + "en_answers": [ + "pork" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-08": { + "question": "What fruit do people from the US often eat in the autumn season?", + "en_question": "What fruit do people from your country often eat in the autumn season?", + "annotations": [ + { + "answers": [ + "apples", + "apple" + ], + "en_answers": [ + "apples", + "apple" + ], + "count": 5 + }, + { + "answers": [ + "bananas" + ], + "en_answers": [ + "bananas" + ], + "count": 1 + }, + { + "answers": [ + "blueberries" + ], + "en_answers": [ + "blueberries" + ], + "count": 1 + }, + { + "answers": [ + "pumpkin" + ], + "en_answers": [ + "pumpkin" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-09": { + "question": "What side dish is the most commonly served on a dining table in the US?", + "en_question": "What side dish is the most commonly served on a dining table in your country?", + "annotations": [ + { + "answers": [ + "mashed potatoes" + ], + "en_answers": [ + "mashed potatoes" + ], + "count": 2 + }, + { + "answers": [ + "potatoes" + ], + "en_answers": [ + "potatoes" + ], + "count": 1 + }, + { + "answers": [ + "corn" + ], + "en_answers": [ + "corn" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-11": { + "question": "What do people from the US eat while watching a soccer game?", + "en_question": "What do people from your country eat while watching a soccer game?", + "annotations": [ + { + "answers": [ + "hot dog", + "hotdog" + ], + "en_answers": [ + "hot dog", + "hotdog" + ], + "count": 3 + }, + { + "answers": [ + "burger" + ], + "en_answers": [ + "burger" + ], + "count": 1 + }, + { + "answers": [ + "fries" + ], + "en_answers": [ + "fries" + ], + "count": 1 + }, + { + "answers": [ + "popcorn" + ], + "en_answers": [ + "popcorn" + ], + "count": 1 + }, + { + "answers": [ + "burgers" + ], + "en_answers": [ + "burgers" + ], + "count": 1 + }, + { + "answers": [ + "chips" + ], + "en_answers": [ + "chips" + ], + "count": 1 + }, + { + "answers": [ + "chili" + ], + "en_answers": [ + "chili" + ], + "count": 1 + }, + { + "answers": [ + "wings" + ], + "en_answers": [ + "wings" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-15": { + "question": "What is the representative nourishing food in the US?", + "en_question": "What is the representative nourishing food in your country?", + "annotations": [ + { + "answers": [ + "burger" + ], + "en_answers": [ + "burger" + ], + "count": 1 + }, + { + "answers": [ + "spinach" + ], + "en_answers": [ + "spinach" + ], + "count": 1 + }, + { + "answers": [ + "meat" + ], + "en_answers": [ + "meat" + ], + "count": 1 + }, + { + "answers": [ + "apples" + ], + "en_answers": [ + "apples" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-16": { + "question": "Who is the most famous soccer player in the US?", + "en_question": "Who is the most famous soccer player in your country?", + "annotations": [ + { + "answers": [ + "lionel messi" + ], + "en_answers": [ + "lionel messi" + ], + "count": 2 + }, + { + "answers": [ + "christian pulisic" + ], + "en_answers": [ + "christian pulisic" + ], + "count": 1 + }, + { + "answers": [ + "landon donovan" + ], + "en_answers": [ + "landon donovan" + ], + "count": 1 + }, + { + "answers": [ + "cristiano ronaldo" + ], + "en_answers": [ + "cristiano ronaldo" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Na-ko-17": { + "question": "What sports do male students enjoy during lunch time at school in the US?", + "en_question": "What sports do male students enjoy during lunch time at school in your country?", + "annotations": [ + { + "answers": [ + "soccer" + ], + "en_answers": [ + "soccer" + ], + "count": 3 + }, + { + "answers": [ + "football", + "american football" + ], + "en_answers": [ + "football", + "american football" + ], + "count": 3 + }, + { + "answers": [ + "basketball" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "catch" + ], + "en_answers": [ + "catch" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-18": { + "question": "What is the most common sport girls participate in during physical education classes in the US?", + "en_question": "What is the most common sport girls participate in during physical education classes in your country?", + "annotations": [ + { + "answers": [ + "volleyball" + ], + "en_answers": [ + "volleyball" + ], + "count": 3 + }, + { + "answers": [ + "soccer", + "international football" + ], + "en_answers": [ + "soccer", + "international football" + ], + "count": 2 + }, + { + "answers": [ + "field hockey" + ], + "en_answers": [ + "field hockey" + ], + "count": 2 + }, + { + "answers": [ + "tennis" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + }, + { + "answers": [ + "basketball" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "gymnastics" + ], + "en_answers": [ + "gymnastics" + ], + "count": 1 + }, + { + "answers": [ + "track" + ], + "en_answers": [ + "track" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-19": { + "question": "Who is the most popular volleyball player in the US?", + "en_question": "Who is the most popular volleyball player in your country?", + "annotations": [ + { + "answers": [ + "kerri walsh jennings" + ], + "en_answers": [ + "kerri walsh jennings" + ], + "count": 2 + }, + { + "answers": [ + "charles kiraly" + ], + "en_answers": [ + "charles kiraly" + ], + "count": 1 + }, + { + "answers": [ + "alix klineman" + ], + "en_answers": [ + "alix klineman" + ], + "count": 1 + }, + { + "answers": [ + "kerri walsh" + ], + "en_answers": [ + "kerri walsh" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-20": { + "question": "What sports event do people from the US passionately support the most in international competitions?", + "en_question": "What sports event do people from your country passionately support the most in international competitions?", + "annotations": [ + { + "answers": [ + "soccer", + "international football" + ], + "en_answers": [ + "soccer", + "international football" + ], + "count": 2 + }, + { + "answers": [ + "baseball" + ], + "en_answers": [ + "baseball" + ], + "count": 2 + }, + { + "answers": [ + "basketball" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "olympics" + ], + "en_answers": [ + "olympics" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-22": { + "question": "Which country is considered the biggest rival in soccer matches for the US?", + "en_question": "Which country is considered the biggest rival in soccer matches for your country?", + "annotations": [ + { + "answers": [ + "mexico" + ], + "en_answers": [ + "mexico" + ], + "count": 3 + } + ], + "idks": { + "idk": 5, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Na-ko-23": { + "question": "What type of sports academies do children attend the most in the US?", + "en_question": "What type of sports academies do children attend the most in your country?", + "annotations": [ + { + "answers": [ + "basketball" + ], + "en_answers": [ + "basketball" + ], + "count": 3 + }, + { + "answers": [ + "soccer", + "international football" + ], + "en_answers": [ + "soccer", + "international football" + ], + "count": 2 + }, + { + "answers": [ + "football", + "american football" + ], + "en_answers": [ + "football", + "american football" + ], + "count": 2 + }, + { + "answers": [ + "baseball" + ], + "en_answers": [ + "baseball" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 1 + } + }, + "Na-ko-24": { + "question": "What is the most commonly eaten food in sports stadiums while watching games in the US?", + "en_question": "What is the most commonly eaten food in sports stadiums while watching games in your country?", + "annotations": [ + { + "answers": [ + "hot dogs", + "hotdogs" + ], + "en_answers": [ + "hot dogs", + "hotdogs" + ], + "count": 5 + }, + { + "answers": [ + "nachos" + ], + "en_answers": [ + "nachos" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-25": { + "question": "What are the typical sports played in the US's school sports day?", + "en_question": "What are the typical sports played in your country's school sports day?", + "annotations": [ + { + "answers": [ + "baseball" + ], + "en_answers": [ + "baseball" + ], + "count": 4 + }, + { + "answers": [ + "soccer", + "international football" + ], + "en_answers": [ + "soccer", + "international football" + ], + "count": 3 + }, + { + "answers": [ + "football", + "american football" + ], + "en_answers": [ + "football", + "american football" + ], + "count": 3 + }, + { + "answers": [ + "basketball" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "dodge ball" + ], + "en_answers": [ + "dodge ball" + ], + "count": 1 + }, + { + "answers": [ + "tag" + ], + "en_answers": [ + "tag" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-26": { + "question": "What are the popular sports among the middle-aged population in the US?", + "en_question": "What are the popular sports among the middle-aged population in your country?", + "annotations": [ + { + "answers": [ + "football", + "american football" + ], + "en_answers": [ + "football", + "american football" + ], + "count": 3 + }, + { + "answers": [ + "basketball" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "baseball" + ], + "en_answers": [ + "baseball" + ], + "count": 2 + }, + { + "answers": [ + "golf" + ], + "en_answers": [ + "golf" + ], + "count": 2 + }, + { + "answers": [ + "tennis" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + }, + { + "answers": [ + "pickleball" + ], + "en_answers": [ + "pickleball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-28": { + "question": "Who is the most popular winter sports player in the US?", + "en_question": "Who is the most popular winter sports player in your country?", + "annotations": [ + { + "answers": [ + "shaun white" + ], + "en_answers": [ + "shaun white" + ], + "count": 1 + }, + { + "answers": [ + "dorothy hamill" + ], + "en_answers": [ + "dorothy hamill" + ], + "count": 1 + }, + { + "answers": [ + "michelle kwan" + ], + "en_answers": [ + "michelle kwan" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-29": { + "question": "Who is the most famous swimmer in the US?", + "en_question": "Who is the most famous swimmer in your country?", + "annotations": [ + { + "answers": [ + "michael phelps", + "michael phleps", + "micahel phelps", + "michelle phelps" + ], + "en_answers": [ + "michael phelps", + "michael phleps", + "micahel phelps", + "michelle phelps" + ], + "count": 5 + }, + { + "answers": [ + "katie ledecky" + ], + "en_answers": [ + "katie ledecky" + ], + "count": 1 + }, + { + "answers": [ + "esther williams" + ], + "en_answers": [ + "esther williams" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-30": { + "question": "What is the most popular e-sports game in the US?", + "en_question": "What is the most popular e-sports game in your country?", + "annotations": [ + { + "answers": [ + "league of legends", + "lol", + "league" + ], + "en_answers": [ + "league of legends", + "lol", + "league" + ], + "count": 2 + }, + { + "answers": [ + "halo" + ], + "en_answers": [ + "halo" + ], + "count": 1 + }, + { + "answers": [ + "fortnite" + ], + "en_answers": [ + "fortnite" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-33": { + "question": "What symbolic food do people from the US eat on (Lunar) New Year?", + "en_question": "What symbolic food do people from your country eat on (Lunar) New Year?", + "annotations": [ + { + "answers": [ + "black eyed peas" + ], + "en_answers": [ + "black eyed peas" + ], + "count": 2 + }, + { + "answers": [ + "grapes" + ], + "en_answers": [ + "grapes" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "Na-ko-37": { + "question": "What is the most popular domestic vacation spot for people from the US?", + "en_question": "What is the most popular domestic vacation spot for people from your country?", + "annotations": [ + { + "answers": [ + "florida", + "fl" + ], + "en_answers": [ + "florida", + "fl" + ], + "count": 4 + }, + { + "answers": [ + "hawaii", + "hi" + ], + "en_answers": [ + "hawaii", + "hi" + ], + "count": 2 + }, + { + "answers": [ + "california", + "ca" + ], + "en_answers": [ + "california", + "ca" + ], + "count": 2 + }, + { + "answers": [ + "new york", + "ny" + ], + "en_answers": [ + "new york", + "ny" + ], + "count": 1 + }, + { + "answers": [ + "alaska", + "ak" + ], + "en_answers": [ + "alaska", + "ak" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-38": { + "question": "What is the most common wedding gift between bride and groom in the US?", + "en_question": "What is the most common wedding gift between bride and groom in your country?", + "annotations": [ + { + "answers": [ + "honeymoon travel", + "honey moon travel", + "honeymoon", + "going on a honeymoon" + ], + "en_answers": [ + "honeymoon travel", + "honey moon travel", + "honeymoon", + "going on a honeymoon" + ], + "count": 1 + }, + { + "answers": [ + "kitchen appliances" + ], + "en_answers": [ + "kitchen appliances" + ], + "count": 1 + }, + { + "answers": [ + "jewelry", + "jewelery" + ], + "en_answers": [ + "jewelry", + "jewelery" + ], + "count": 1 + }, + { + "answers": [ + "rings" + ], + "en_answers": [ + "rings" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-39": { + "question": "What is typically given as a congratulatory gesture when attending a friend's wedding in the US?", + "en_question": "What is typically given as a congratulatory gesture when attending a friend's wedding in your country?", + "annotations": [ + { + "answers": [ + "gift", + "gift from registry", + "a gift from a wedding registry" + ], + "en_answers": [ + "gift", + "gift from registry", + "a gift from a wedding registry" + ], + "count": 3 + }, + { + "answers": [ + "card" + ], + "en_answers": [ + "card" + ], + "count": 1 + }, + { + "answers": [ + "money" + ], + "en_answers": [ + "money" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-40": { + "question": "How long (in days) does a funeral typically last in the US? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "How long (in days) does a funeral typically last in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "1", + "3" + ], + "en_answers": [ + "1", + "3" + ], + "count": 6 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-41": { + "question": "What should you prepare as a condolence offering when attending a funeral in the US?", + "en_question": "What should you prepare as a condolence offering when attending a funeral in your country?", + "annotations": [ + { + "answers": [ + "flowers" + ], + "en_answers": [ + "flowers" + ], + "count": 3 + }, + { + "answers": [ + "food" + ], + "en_answers": [ + "food" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 1 + } + }, + "Na-ko-42": { + "question": "What type of food is commonly provided at funeral parlors in the US?", + "en_question": "What type of food is commonly provided at funeral parlors in your country?", + "annotations": [ + { + "answers": [ + "finger foods" + ], + "en_answers": [ + "finger foods" + ], + "count": 1 + }, + { + "answers": [ + "casseroles" + ], + "en_answers": [ + "casseroles" + ], + "count": 1 + }, + { + "answers": [ + "baked ziti" + ], + "en_answers": [ + "baked ziti" + ], + "count": 1 + }, + { + "answers": [ + "chicken" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "corn" + ], + "en_answers": [ + "corn" + ], + "count": 1 + }, + { + "answers": [ + "mashed potatoes" + ], + "en_answers": [ + "mashed potatoes" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 1 + } + }, + "Na-ko-43": { + "question": "What do people do in the US in the morning of the (Lunar) New Year?", + "en_question": "What do people do in your country in the morning of the (Lunar) New Year?", + "annotations": [ + { + "answers": [ + "sleep late", + "stay up late" + ], + "en_answers": [ + "sleep late", + "stay up late" + ], + "count": 1 + }, + { + "answers": [ + "celebrations to usher out the old year and bring forth the luck and prosperity of the new one", + "elebrations to usher out the old year and bring forth the luck and prosperity of the new one" + ], + "en_answers": [ + "celebrations to usher out the old year and bring forth the luck and prosperity of the new one", + "elebrations to usher out the old year and bring forth the luck and prosperity of the new one" + ], + "count": 1 + }, + { + "answers": [ + "therefore" + ], + "en_answers": [ + "therefore" + ], + "count": 1 + }, + { + "answers": [ + "often include firecrackers" + ], + "en_answers": [ + "often include firecrackers" + ], + "count": 1 + }, + { + "answers": [ + "fireworks" + ], + "en_answers": [ + "fireworks" + ], + "count": 1 + }, + { + "answers": [ + "eat breakfast" + ], + "en_answers": [ + "eat breakfast" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 1 + } + }, + "Na-ko-44": { + "question": "When is the day with the US's most severe nationwide traffic congestion?", + "en_question": "When is the day with your country's most severe nationwide traffic congestion?", + "annotations": [ + { + "answers": [ + "labor day" + ], + "en_answers": [ + "labor day" + ], + "count": 1 + }, + { + "answers": [ + "christmas eve", + "xmas eve" + ], + "en_answers": [ + "christmas eve", + "xmas eve" + ], + "count": 1 + }, + { + "answers": [ + "thanksgiving" + ], + "en_answers": [ + "thanksgiving" + ], + "count": 1 + }, + { + "answers": [ + "christmas", + "xmas" + ], + "en_answers": [ + "christmas", + "xmas" + ], + "count": 1 + }, + { + "answers": [ + "memorial day" + ], + "en_answers": [ + "memorial day" + ], + "count": 1 + }, + { + "answers": [ + "monday" + ], + "en_answers": [ + "monday" + ], + "count": 1 + }, + { + "answers": [ + "day before thanksgiving" + ], + "en_answers": [ + "day before thanksgiving" + ], + "count": 1 + }, + { + "answers": [ + "black friday", + "black wednesday" + ], + "en_answers": [ + "black friday", + "black wednesday" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-45": { + "question": "What is the most popular honeymoon destination in the US?", + "en_question": "What is the most popular honeymoon destination in your country?", + "annotations": [ + { + "answers": [ + "las vegas" + ], + "en_answers": [ + "las vegas" + ], + "count": 2 + }, + { + "answers": [ + "palm springs" + ], + "en_answers": [ + "palm springs" + ], + "count": 1 + }, + { + "answers": [ + "bahamas" + ], + "en_answers": [ + "bahamas" + ], + "count": 1 + }, + { + "answers": [ + "hawaii" + ], + "en_answers": [ + "hawaii" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-05": { + "question": "What is the most important national holiday in the US?", + "en_question": "What is the most important national holiday in your country?", + "annotations": [ + { + "answers": [ + "4th of july", + "july 4th", + "fourth of july" + ], + "en_answers": [ + "4th of july", + "july 4th", + "fourth of july" + ], + "count": 2 + }, + { + "answers": [ + "christmas", + "xmas" + ], + "en_answers": [ + "christmas", + "xmas" + ], + "count": 2 + }, + { + "answers": [ + "independence day" + ], + "en_answers": [ + "independence day" + ], + "count": 2 + }, + { + "answers": [ + "thanksgiving" + ], + "en_answers": [ + "thanksgiving" + ], + "count": 1 + }, + { + "answers": [ + "president's day" + ], + "en_answers": [ + "president's day" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-06": { + "question": "What do people from the US eat in Ramadan?", + "en_question": "What do people from your country eat in Ramadan?", + "annotations": [ + { + "answers": [ + "meat" + ], + "en_answers": [ + "meat" + ], + "count": 1 + }, + { + "answers": [ + "eggs" + ], + "en_answers": [ + "eggs" + ], + "count": 1 + }, + { + "answers": [ + "cheese" + ], + "en_answers": [ + "cheese" + ], + "count": 1 + }, + { + "answers": [ + "chicken" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 2, + "no-answer": 1 + } + }, + "Ne-ar-09": { + "question": "What do people from the US eat in Eid ul Fitr?", + "en_question": "What do people from your country eat in Eid ul Fitr?", + "annotations": [], + "idks": { + "not-applicable": 3, + "no-answer": 2, + "idk": 2 + } + }, + "Ne-ar-10": { + "question": "What do people from the US eat in Eid ul Adha?", + "en_question": "What do people from your country eat in Eid ul Adha?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 3, + "no-answer": 0 + } + }, + "Ne-ar-11": { + "question": "Where do people from the US go to celebrate New Year's Day?", + "en_question": "Where do people from your country go to celebrate New Year's Day?", + "annotations": [ + { + "answers": [ + "shopping" + ], + "en_answers": [ + "shopping" + ], + "count": 1 + }, + { + "answers": [ + "outdoor events" + ], + "en_answers": [ + "outdoor events" + ], + "count": 1 + }, + { + "answers": [ + "bar" + ], + "en_answers": [ + "bar" + ], + "count": 1 + }, + { + "answers": [ + "new york city", + "nyc" + ], + "en_answers": [ + "new york city", + "nyc" + ], + "count": 1 + }, + { + "answers": [ + "most people stay in with family." + ], + "en_answers": [ + "most people stay in with family." + ], + "count": 1 + }, + { + "answers": [ + "times square" + ], + "en_answers": [ + "times square" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-14": { + "question": "Where do a family gather for Eid festivities in the US?", + "en_question": "Where do a family gather for Eid festivities in your country?", + "annotations": [ + { + "answers": [ + "home", + "family home" + ], + "en_answers": [ + "home", + "family home" + ], + "count": 2 + } + ], + "idks": { + "idk": 4, + "not-applicable": 3, + "no-answer": 0 + } + }, + "Ne-ar-16": { + "question": "When is the weekend in the US (e.g. Monday, Tuesday)?", + "en_question": "When is the weekend in your country (e.g. Monday, Tuesday)?", + "annotations": [ + { + "answers": [ + "saturday" + ], + "en_answers": [ + "saturday" + ], + "count": 5 + }, + { + "answers": [ + "sunday" + ], + "en_answers": [ + "sunday" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-17": { + "question": "At what time do most people start work in the US? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "en_question": "At what time do most people start work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 4 + }, + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 2 + }, + { + "answers": [ + "07:00" + ], + "en_answers": [ + "07:00" + ], + "count": 1 + }, + { + "answers": [ + "08:30" + ], + "en_answers": [ + "08:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-18": { + "question": "At what time do most people finish work in the US? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "en_question": "At what time do most people finish work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "17:00", + "05:00" + ], + "en_answers": [ + "17:00", + "05:00" + ], + "count": 5 + }, + { + "answers": [ + "15:00" + ], + "en_answers": [ + "15:00" + ], + "count": 1 + }, + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-20": { + "question": "What is considered to be a secure job in the US?", + "en_question": "What is considered to be a secure job in your country?", + "annotations": [ + { + "answers": [ + "working at an established business" + ], + "en_answers": [ + "working at an established business" + ], + "count": 1 + }, + { + "answers": [ + "programmer", + "coding" + ], + "en_answers": [ + "programmer", + "coding" + ], + "count": 1 + }, + { + "answers": [ + "doctor", + "medicine" + ], + "en_answers": [ + "doctor", + "medicine" + ], + "count": 1 + }, + { + "answers": [ + "banker" + ], + "en_answers": [ + "banker" + ], + "count": 1 + }, + { + "answers": [ + "post office" + ], + "en_answers": [ + "post office" + ], + "count": 1 + }, + { + "answers": [ + "mechanic" + ], + "en_answers": [ + "mechanic" + ], + "count": 1 + }, + { + "answers": [ + "accountant", + "accounting" + ], + "en_answers": [ + "accountant", + "accounting" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-24": { + "question": "Which city is the primary commercial hub in the US?", + "en_question": "Which city is the primary commercial hub in your country?", + "annotations": [ + { + "answers": [ + "new york", + "nyc", + "new york city", + "ny" + ], + "en_answers": [ + "new york", + "nyc", + "new york city", + "ny" + ], + "count": 5 + }, + { + "answers": [ + "los angeles", + "los angles", + "la", + "chi" + ], + "en_answers": [ + "los angeles", + "los angles", + "la", + "chi" + ], + "count": 3 + }, + { + "answers": [ + "chicago" + ], + "en_answers": [ + "chicago" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-25": { + "question": "What is the industry that pays the best in the US?", + "en_question": "What is the industry that pays the best in your country?", + "annotations": [ + { + "answers": [ + "medicine", + "medical" + ], + "en_answers": [ + "medicine", + "medical" + ], + "count": 2 + }, + { + "answers": [ + "professional sports" + ], + "en_answers": [ + "professional sports" + ], + "count": 1 + }, + { + "answers": [ + "corporate" + ], + "en_answers": [ + "corporate" + ], + "count": 1 + }, + { + "answers": [ + "finance" + ], + "en_answers": [ + "finance" + ], + "count": 1 + }, + { + "answers": [ + "it", + "information technology" + ], + "en_answers": [ + "it", + "information technology" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-26": { + "question": "What is the most famous public corporation in the US?", + "en_question": "What is the most famous public corporation in your country?", + "annotations": [ + { + "answers": [ + "microsoft" + ], + "en_answers": [ + "microsoft" + ], + "count": 2 + }, + { + "answers": [ + "google" + ], + "en_answers": [ + "google" + ], + "count": 2 + }, + { + "answers": [ + "mcdonald's", + "mcdonalds" + ], + "en_answers": [ + "mcdonald's", + "mcdonalds" + ], + "count": 1 + }, + { + "answers": [ + "nike" + ], + "en_answers": [ + "nike" + ], + "count": 1 + }, + { + "answers": [ + "amazon" + ], + "en_answers": [ + "amazon" + ], + "count": 1 + }, + { + "answers": [ + "apple" + ], + "en_answers": [ + "apple" + ], + "count": 1 + }, + { + "answers": [ + "target" + ], + "en_answers": [ + "target" + ], + "count": 1 + }, + { + "answers": [ + "ge", + "general electric" + ], + "en_answers": [ + "ge", + "general electric" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-31": { + "question": "What is the most famous dish in the US?", + "en_question": "What is the most famous dish in your country?", + "annotations": [ + { + "answers": [ + "hamburger", + "hamburgers" + ], + "en_answers": [ + "hamburger", + "hamburgers" + ], + "count": 3 + }, + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 2 + }, + { + "answers": [ + "hotdog", + "hot dogs" + ], + "en_answers": [ + "hotdog", + "hot dogs" + ], + "count": 2 + }, + { + "answers": [ + "tacos" + ], + "en_answers": [ + "tacos" + ], + "count": 1 + }, + { + "answers": [ + "steak" + ], + "en_answers": [ + "steak" + ], + "count": 1 + }, + { + "answers": [ + "fried chicken" + ], + "en_answers": [ + "fried chicken" + ], + "count": 1 + }, + { + "answers": [ + "turkey" + ], + "en_answers": [ + "turkey" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-32": { + "question": "What do people usually have for breakfast in the US?", + "en_question": "What do people usually have for breakfast in your country?", + "annotations": [ + { + "answers": [ + "eggs", + "eggs and toast" + ], + "en_answers": [ + "eggs", + "eggs and toast" + ], + "count": 4 + }, + { + "answers": [ + "cereal" + ], + "en_answers": [ + "cereal" + ], + "count": 2 + }, + { + "answers": [ + "bacon" + ], + "en_answers": [ + "bacon" + ], + "count": 2 + }, + { + "answers": [ + "pancakes" + ], + "en_answers": [ + "pancakes" + ], + "count": 2 + }, + { + "answers": [ + "toast", + "eggs and toast", + "avocado and toast" + ], + "en_answers": [ + "toast", + "eggs and toast", + "avocado and toast" + ], + "count": 2 + }, + { + "answers": [ + "oatmeal", + "oatmeal and fruit" + ], + "en_answers": [ + "oatmeal", + "oatmeal and fruit" + ], + "count": 2 + }, + { + "answers": [ + "juice" + ], + "en_answers": [ + "juice" + ], + "count": 1 + }, + { + "answers": [ + "avacado", + "avocado and toast" + ], + "en_answers": [ + "avacado", + "avocado and toast" + ], + "count": 1 + }, + { + "answers": [ + "fruit", + "oatmeal and fruit" + ], + "en_answers": [ + "fruit", + "oatmeal and fruit" + ], + "count": 1 + }, + { + "answers": [ + "hashbrowns" + ], + "en_answers": [ + "hashbrowns" + ], + "count": 1 + }, + { + "answers": [ + "toaster strudel" + ], + "en_answers": [ + "toaster strudel" + ], + "count": 1 + }, + { + "answers": [ + "coffee" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-33": { + "question": "When do people usually have lunch in the US? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "en_question": "When do people usually have lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "12:00" + ], + "en_answers": [ + "12:00" + ], + "count": 4 + }, + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 2 + }, + { + "answers": [ + "11:30" + ], + "en_answers": [ + "11:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-34": { + "question": "What is typically indispensable in meals in the US?", + "en_question": "What is typically indispensable in meals in your country?", + "annotations": [ + { + "answers": [ + "potatoes" + ], + "en_answers": [ + "potatoes" + ], + "count": 2 + }, + { + "answers": [ + "meat" + ], + "en_answers": [ + "meat" + ], + "count": 2 + }, + { + "answers": [ + "burger", + "hamburger" + ], + "en_answers": [ + "burger", + "hamburger" + ], + "count": 1 + }, + { + "answers": [ + "beef" + ], + "en_answers": [ + "beef" + ], + "count": 1 + }, + { + "answers": [ + "bacon" + ], + "en_answers": [ + "bacon" + ], + "count": 1 + }, + { + "answers": [ + "bread" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "cheese" + ], + "en_answers": [ + "cheese" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-36": { + "question": "What is a typical festive meal in the US?", + "en_question": "What is a typical festive meal in your country?", + "annotations": [ + { + "answers": [ + "turkey" + ], + "en_answers": [ + "turkey" + ], + "count": 2 + }, + { + "answers": [ + "mashed potatoes", + "mashed potatoes and gravy" + ], + "en_answers": [ + "mashed potatoes", + "mashed potatoes and gravy" + ], + "count": 2 + }, + { + "answers": [ + "gravy", + "mashed potatoes and gravy" + ], + "en_answers": [ + "gravy", + "mashed potatoes and gravy" + ], + "count": 2 + }, + { + "answers": [ + "steak or fancy meat" + ], + "en_answers": [ + "steak or fancy meat" + ], + "count": 1 + }, + { + "answers": [ + "christmas dinner", + "xmas dinner" + ], + "en_answers": [ + "christmas dinner", + "xmas dinner" + ], + "count": 1 + }, + { + "answers": [ + "stuffing" + ], + "en_answers": [ + "stuffing" + ], + "count": 1 + }, + { + "answers": [ + "sweet potatoes" + ], + "en_answers": [ + "sweet potatoes" + ], + "count": 1 + }, + { + "answers": [ + "green bean casserole" + ], + "en_answers": [ + "green bean casserole" + ], + "count": 1 + }, + { + "answers": [ + "cranberry sauce" + ], + "en_answers": [ + "cranberry sauce" + ], + "count": 1 + }, + { + "answers": [ + "and pumpkin pie" + ], + "en_answers": [ + "and pumpkin pie" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-37": { + "question": "Which fruit do people usually offer tourists/visitors from abroad in the US?", + "en_question": "Which fruit do people usually offer tourists/visitors from abroad in your country?", + "annotations": [ + { + "answers": [ + "apple", + "apples" + ], + "en_answers": [ + "apple", + "apples" + ], + "count": 3 + }, + { + "answers": [ + "watermelon" + ], + "en_answers": [ + "watermelon" + ], + "count": 2 + }, + { + "answers": [ + "oranges" + ], + "en_answers": [ + "oranges" + ], + "count": 1 + }, + { + "answers": [ + "banana" + ], + "en_answers": [ + "banana" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ne-ar-38": { + "question": "Which food do people usually offer as charity in the US?", + "en_question": "Which food do people usually offer as charity in your country?", + "annotations": [ + { + "answers": [ + "canned soup", + "soup" + ], + "en_answers": [ + "canned soup", + "soup" + ], + "count": 3 + }, + { + "answers": [ + "canned goods", + "canned foods" + ], + "en_answers": [ + "canned goods", + "canned foods" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-39": { + "question": "What is the cheapest fast food in the US?", + "en_question": "What is the cheapest fast food in your country?", + "annotations": [ + { + "answers": [ + "mcdonald's", + "mcdonalds" + ], + "en_answers": [ + "mcdonald's", + "mcdonalds" + ], + "count": 3 + }, + { + "answers": [ + "taco bell" + ], + "en_answers": [ + "taco bell" + ], + "count": 1 + }, + { + "answers": [ + "jack in the box" + ], + "en_answers": [ + "jack in the box" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-43": { + "question": "What do people usually have with tea in the US?", + "en_question": "What do people usually have with tea in your country?", + "annotations": [ + { + "answers": [ + "sugar" + ], + "en_answers": [ + "sugar" + ], + "count": 4 + }, + { + "answers": [ + "milk" + ], + "en_answers": [ + "milk" + ], + "count": 3 + }, + { + "answers": [ + "honey" + ], + "en_answers": [ + "honey" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-44": { + "question": "What do people have with coffee in the US?", + "en_question": "What do people have with coffee in your country?", + "annotations": [ + { + "answers": [ + "donuts", + "doughnut" + ], + "en_answers": [ + "donuts", + "doughnut" + ], + "count": 5 + }, + { + "answers": [ + "cream" + ], + "en_answers": [ + "cream" + ], + "count": 1 + }, + { + "answers": [ + "sugar" + ], + "en_answers": [ + "sugar" + ], + "count": 1 + }, + { + "answers": [ + "sandwich" + ], + "en_answers": [ + "sandwich" + ], + "count": 1 + }, + { + "answers": [ + "muffin" + ], + "en_answers": [ + "muffin" + ], + "count": 1 + }, + { + "answers": [ + "breakfast" + ], + "en_answers": [ + "breakfast" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-02": { + "question": "What is the most popular traditional food in the US?", + "en_question": "What is the most popular traditional food in your country?", + "annotations": [ + { + "answers": [ + "hamburgers", + "burgers" + ], + "en_answers": [ + "hamburgers", + "burgers" + ], + "count": 1 + }, + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "not-applicable": 1, + "idk": 1 + } + }, + "New-am-04": { + "question": "What is the most popular dipping sauce in the US?", + "en_question": "What is the most popular dipping sauce in your country?", + "annotations": [ + { + "answers": [ + "ranch", + "ranch dressing" + ], + "en_answers": [ + "ranch", + "ranch dressing" + ], + "count": 4 + }, + { + "answers": [ + "ketchup" + ], + "en_answers": [ + "ketchup" + ], + "count": 4 + }, + { + "answers": [ + "barbeque", + "barbecue" + ], + "en_answers": [ + "barbeque", + "barbecue" + ], + "count": 1 + }, + { + "answers": [ + "bbq" + ], + "en_answers": [ + "bbq" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-08": { + "question": "What is food the most commonly consumed during Christian's fasting in the US?", + "en_question": "What food is most often consumed during Christian fasting in your country?", + "annotations": [ + { + "answers": [ + "fish" + ], + "en_answers": [ + "fish" + ], + "count": 2 + }, + { + "answers": [ + "water" + ], + "en_answers": [ + "water" + ], + "count": 1 + }, + { + "answers": [ + "fruits" + ], + "en_answers": [ + "fruits" + ], + "count": 1 + }, + { + "answers": [ + "vegetables", + "veggies" + ], + "en_answers": [ + "vegetables", + "veggies" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "This question doesn't seem to make sense. Fasting is going without food, so no food is consumed, and it depends on which Christian faith.": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-am-15": { + "question": "What food is usually prepared when mothers give birth in the US?", + "en_question": "What food is usually prepared when mothers give birth in your country?", + "annotations": [ + { + "answers": [ + "casseroles" + ], + "en_answers": [ + "casseroles" + ], + "count": 1 + }, + { + "answers": [ + "soups" + ], + "en_answers": [ + "soups" + ], + "count": 1 + }, + { + "answers": [ + "stews" + ], + "en_answers": [ + "stews" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "not-applicable": 2, + "idk": 0 + } + }, + "New-am-27": { + "question": "Who is the most popular female sportperson in the US?", + "en_question": "Who is the most popular female sportperson in your country?", + "annotations": [ + { + "answers": [ + "serena williams" + ], + "en_answers": [ + "serena williams" + ], + "count": 3 + }, + { + "answers": [ + "venus williams" + ], + "en_answers": [ + "venus williams" + ], + "count": 1 + }, + { + "answers": [ + "caitlin clark" + ], + "en_answers": [ + "caitlin clark" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-am-34": { + "question": "Where do most elementary school students prepare for their exams in the US?", + "en_question": "Where do most elementary school students prepare for their exams in your country?", + "annotations": [ + { + "answers": [ + "home" + ], + "en_answers": [ + "home" + ], + "count": 2 + }, + { + "answers": [ + "at school", + "in school", + "school" + ], + "en_answers": [ + "at school", + "in school", + "school" + ], + "count": 2 + }, + { + "answers": [ + "library" + ], + "en_answers": [ + "library" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-am-41": { + "question": "In the US, at which grade level do students take their first national-level examination?", + "en_question": "In your country, at which grade level do students take their first national-level examination?", + "annotations": [ + { + "answers": [ + "11", + "11th" + ], + "en_answers": [ + "11", + "11th" + ], + "count": 2 + }, + { + "answers": [ + "10th" + ], + "en_answers": [ + "10th" + ], + "count": 1 + }, + { + "answers": [ + "5th" + ], + "en_answers": [ + "5th" + ], + "count": 1 + }, + { + "answers": [ + "8th" + ], + "en_answers": [ + "8th" + ], + "count": 1 + }, + { + "answers": [ + "12th" + ], + "en_answers": [ + "12th" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-am-53": { + "question": "Which region in the US is widely known for its coffee/tea industry?", + "en_question": "Which region in your country is widely known for its coffee/tea industry?", + "annotations": [ + { + "answers": [ + "east coast", + "eastern coast" + ], + "en_answers": [ + "east coast", + "eastern coast" + ], + "count": 1 + }, + { + "answers": [ + "southern" + ], + "en_answers": [ + "southern" + ], + "count": 1 + }, + { + "answers": [ + "new york", + "ny" + ], + "en_answers": [ + "new york", + "ny" + ], + "count": 1 + }, + { + "answers": [ + "california", + "cali" + ], + "en_answers": [ + "california", + "cali" + ], + "count": 1 + }, + { + "answers": [ + "pacific northwest region", + "pacific nw" + ], + "en_answers": [ + "pacific northwest region", + "pacific nw" + ], + "count": 1 + }, + { + "answers": [ + "northwest", + "nw" + ], + "en_answers": [ + "northwest", + "nw" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-54": { + "question": "Which region in the US is widely known for its livestock industry?", + "en_question": "Which region in your country is widely known for its livestock industry?", + "annotations": [ + { + "answers": [ + "midwest", + "mw" + ], + "en_answers": [ + "midwest", + "mw" + ], + "count": 3 + }, + { + "answers": [ + "south" + ], + "en_answers": [ + "south" + ], + "count": 3 + }, + { + "answers": [ + "south west", + "sw" + ], + "en_answers": [ + "south west", + "sw" + ], + "count": 1 + }, + { + "answers": [ + "corn belt" + ], + "en_answers": [ + "corn belt" + ], + "count": 1 + }, + { + "answers": [ + "southeast", + "se" + ], + "en_answers": [ + "southeast", + "se" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-59": { + "question": "What is the main occupation of people living in deserts in the US?", + "en_question": "What is the main occupation of people living in deserts in your country?", + "annotations": [ + { + "answers": [ + "military" + ], + "en_answers": [ + "military" + ], + "count": 1 + }, + { + "answers": [ + "agriculture" + ], + "en_answers": [ + "agriculture" + ], + "count": 1 + }, + { + "answers": [ + "mining" + ], + "en_answers": [ + "mining" + ], + "count": 1 + }, + { + "answers": [ + "animal husbandry" + ], + "en_answers": [ + "animal husbandry" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 3, + "idk": 2, + "not-applicable": 0 + } + }, + "New-am-60": { + "question": "Which animal is typically used for transportation in the US?", + "en_question": "Which animal is typically used for transportation in your country?", + "annotations": [ + { + "answers": [ + "horse", + "horses" + ], + "en_answers": [ + "horse", + "horses" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 2, + "idk": 0, + "no-answer": 0 + } + }, + "New-am-72": { + "question": "What is the most popular comic book for children to read in the US?", + "en_question": "What is the most popular comic book for children to read in your country?", + "annotations": [ + { + "answers": [ + "spiderman" + ], + "en_answers": [ + "spiderman" + ], + "count": 2 + }, + { + "answers": [ + "marvel" + ], + "en_answers": [ + "marvel" + ], + "count": 1 + }, + { + "answers": [ + "superman" + ], + "en_answers": [ + "superman" + ], + "count": 1 + }, + { + "answers": [ + "batman" + ], + "en_answers": [ + "batman" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 2, + "not-applicable": 0 + } + }, + "New-am-73": { + "question": "What is the most popular YouTube channel for children in the US?", + "en_question": "What is the most popular YouTube channel for children in your country?", + "annotations": [ + { + "answers": [ + "cocomelon", + "coco melon" + ], + "en_answers": [ + "cocomelon", + "coco melon" + ], + "count": 2 + }, + { + "answers": [ + "ryan's world" + ], + "en_answers": [ + "ryan's world" + ], + "count": 1 + }, + { + "answers": [ + "game theory" + ], + "en_answers": [ + "game theory" + ], + "count": 1 + }, + { + "answers": [ + "markiplier" + ], + "en_answers": [ + "markiplier" + ], + "count": 1 + }, + { + "answers": [ + "mr. beast" + ], + "en_answers": [ + "mr. beast" + ], + "count": 1 + }, + { + "answers": [ + "peppa pig" + ], + "en_answers": [ + "peppa pig" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-74": { + "question": "What is the most popular talk show in the US?", + "en_question": "What is the most popular talk show in your country?", + "annotations": [ + { + "answers": [ + "today show" + ], + "en_answers": [ + "today show" + ], + "count": 1 + }, + { + "answers": [ + "the view" + ], + "en_answers": [ + "the view" + ], + "count": 1 + }, + { + "answers": [ + "tucker carlson" + ], + "en_answers": [ + "tucker carlson" + ], + "count": 1 + }, + { + "answers": [ + "good morning america" + ], + "en_answers": [ + "good morning america" + ], + "count": 1 + }, + { + "answers": [ + "conan o'brian" + ], + "en_answers": [ + "conan o'brian" + ], + "count": 1 + }, + { + "answers": [ + "jimmy fallon", + "jimmy fallen" + ], + "en_answers": [ + "jimmy fallon", + "jimmy fallen" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-am-77": { + "question": "What is the most famous religious holiday in the US?", + "en_question": "What is the most famous religious holiday in your country?", + "annotations": [ + { + "answers": [ + "christmas", + "xmas" + ], + "en_answers": [ + "christmas", + "xmas" + ], + "count": 4 + }, + { + "answers": [ + "easter", + "resurrection sunday" + ], + "en_answers": [ + "easter", + "resurrection sunday" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-81": { + "question": "What is the busiest month for weddings in the US? (Provide Arabic numerals (e.g., 1) only.)", + "en_question": "What is the busiest month for weddings in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "6", + "june" + ], + "en_answers": [ + "6", + "june" + ], + "count": 5 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-83": { + "question": "What is the most popular traditional musical instrument in the US?", + "en_question": "What is the most popular traditional musical instrument in your country?", + "annotations": [ + { + "answers": [ + "guitar" + ], + "en_answers": [ + "guitar" + ], + "count": 3 + }, + { + "answers": [ + "drums" + ], + "en_answers": [ + "drums" + ], + "count": 1 + }, + { + "answers": [ + "bass" + ], + "en_answers": [ + "bass" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 1 + } + }, + "New-as-01": { + "question": "What is the main agricultural product produced in the US?", + "en_question": "What is the main agricultural product produced in your country?", + "annotations": [ + { + "answers": [ + "beef" + ], + "en_answers": [ + "beef" + ], + "count": 2 + }, + { + "answers": [ + "corn" + ], + "en_answers": [ + "corn" + ], + "count": 2 + }, + { + "answers": [ + "soybeans" + ], + "en_answers": [ + "soybeans" + ], + "count": 1 + }, + { + "answers": [ + "chicken" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "oranges" + ], + "en_answers": [ + "oranges" + ], + "count": 1 + }, + { + "answers": [ + "wheat" + ], + "en_answers": [ + "wheat" + ], + "count": 1 + }, + { + "answers": [ + "soy" + ], + "en_answers": [ + "soy" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-02": { + "question": "What is the most popular wheat-based food item in the US?", + "en_question": "What is the most popular wheat-based food item in your country?", + "annotations": [ + { + "answers": [ + "bread" + ], + "en_answers": [ + "bread" + ], + "count": 4 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-as-05": { + "question": "What is the most typical drink offered to guests when they visit households in the US?", + "en_question": "What is the most typical drink offered to guests when they visit households in your country?", + "annotations": [ + { + "answers": [ + "water" + ], + "en_answers": [ + "water" + ], + "count": 3 + }, + { + "answers": [ + "coffee" + ], + "en_answers": [ + "coffee" + ], + "count": 3 + }, + { + "answers": [ + "juice" + ], + "en_answers": [ + "juice" + ], + "count": 2 + }, + { + "answers": [ + "soda" + ], + "en_answers": [ + "soda" + ], + "count": 2 + }, + { + "answers": [ + "iced tea" + ], + "en_answers": [ + "iced tea" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-07": { + "question": "What is the most popular dish cooked with fish in the US?", + "en_question": "What is the most popular dish cooked with fish in your country?", + "annotations": [ + { + "answers": [ + "fried catfish" + ], + "en_answers": [ + "fried catfish" + ], + "count": 1 + }, + { + "answers": [ + "pan fried" + ], + "en_answers": [ + "pan fried" + ], + "count": 1 + }, + { + "answers": [ + "fish sticks" + ], + "en_answers": [ + "fish sticks" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 2, + "not-applicable": 0 + } + }, + "New-as-14": { + "question": "What food do people from the US like to eat during rainy weather?", + "en_question": "What food do people from your country like to eat during rainy weather?", + "annotations": [ + { + "answers": [ + "chili" + ], + "en_answers": [ + "chili" + ], + "count": 2 + }, + { + "answers": [ + "soup", + "soups" + ], + "en_answers": [ + "soup", + "soups" + ], + "count": 2 + }, + { + "answers": [ + "grilled cheese sandwiches" + ], + "en_answers": [ + "grilled cheese sandwiches" + ], + "count": 1 + }, + { + "answers": [ + "spaghetti" + ], + "en_answers": [ + "spaghetti" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "New-as-15": { + "question": "What drink is commonly consumed in the US when the weather is hot?", + "en_question": "What drink is commonly consumed in your country when the weather is hot?", + "annotations": [ + { + "answers": [ + "lemonade" + ], + "en_answers": [ + "lemonade" + ], + "count": 4 + }, + { + "answers": [ + "iced tea" + ], + "en_answers": [ + "iced tea" + ], + "count": 2 + }, + { + "answers": [ + "water" + ], + "en_answers": [ + "water" + ], + "count": 1 + }, + { + "answers": [ + "beer" + ], + "en_answers": [ + "beer" + ], + "count": 1 + }, + { + "answers": [ + "gatorade" + ], + "en_answers": [ + "gatorade" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-20": { + "question": "What is the most popular indoor sport in the US?", + "en_question": "What is the most popular indoor sport in your country?", + "annotations": [ + { + "answers": [ + "basketball" + ], + "en_answers": [ + "basketball" + ], + "count": 5 + }, + { + "answers": [ + "hockey" + ], + "en_answers": [ + "hockey" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-29": { + "question": "What sport do men in the US like to watch?", + "en_question": "What sport do men in your country like to watch?", + "annotations": [ + { + "answers": [ + "football", + "american football", + "nfl", + "national football league" + ], + "en_answers": [ + "football", + "american football", + "nfl", + "national football league" + ], + "count": 4 + }, + { + "answers": [ + "basketball", + "nba", + "mba", + "national basketball association" + ], + "en_answers": [ + "basketball", + "nba", + "mba", + "national basketball association" + ], + "count": 3 + }, + { + "answers": [ + "soccer", + "international football" + ], + "en_answers": [ + "soccer", + "international football" + ], + "count": 1 + }, + { + "answers": [ + "nhl", + "national hockey league" + ], + "en_answers": [ + "nhl", + "national hockey league" + ], + "count": 1 + }, + { + "answers": [ + "baseball" + ], + "en_answers": [ + "baseball" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-as-30": { + "question": "What sport do women in the US like to watch?", + "en_question": "What sport do women in your country like to watch?", + "annotations": [ + { + "answers": [ + "football", + "american football" + ], + "en_answers": [ + "football", + "american football" + ], + "count": 4 + }, + { + "answers": [ + "baseball" + ], + "en_answers": [ + "baseball" + ], + "count": 3 + }, + { + "answers": [ + "basketball" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "soccer" + ], + "en_answers": [ + "soccer" + ], + "count": 1 + }, + { + "answers": [ + "tennis" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + }, + { + "answers": [ + "volleyball" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "hockey" + ], + "en_answers": [ + "hockey" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-58": { + "question": "What is the most popular beverage that people from the US like to drink in their workplace?", + "en_question": "What is the most popular beverage that people from your country like to drink in their workplace?", + "annotations": [ + { + "answers": [ + "coffee" + ], + "en_answers": [ + "coffee" + ], + "count": 4 + }, + { + "answers": [ + "water" + ], + "en_answers": [ + "water" + ], + "count": 1 + }, + { + "answers": [ + "sparkling water" + ], + "en_answers": [ + "sparkling water" + ], + "count": 1 + }, + { + "answers": [ + "soda" + ], + "en_answers": [ + "soda" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-as-64": { + "question": "On which holiday do all family members tend to reunite in the US?", + "en_question": "On which holiday do all family members tend to reunite in your country?", + "annotations": [ + { + "answers": [ + "thanksgiving" + ], + "en_answers": [ + "thanksgiving" + ], + "count": 4 + }, + { + "answers": [ + "christmas", + "xmas" + ], + "en_answers": [ + "christmas", + "xmas" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-as-76": { + "question": "What traditional games do families play during traditional holidays in the US?", + "en_question": "What traditional games do families play during traditional holidays in your country?", + "annotations": [ + { + "answers": [ + "monopoly" + ], + "en_answers": [ + "monopoly" + ], + "count": 2 + }, + { + "answers": [ + "board games" + ], + "en_answers": [ + "board games" + ], + "count": 2 + }, + { + "answers": [ + "uno" + ], + "en_answers": [ + "uno" + ], + "count": 1 + }, + { + "answers": [ + "scrabble" + ], + "en_answers": [ + "scrabble" + ], + "count": 1 + }, + { + "answers": [ + "football", + "american football" + ], + "en_answers": [ + "football", + "american football" + ], + "count": 1 + }, + { + "answers": [ + "egg hunt" + ], + "en_answers": [ + "egg hunt" + ], + "count": 1 + }, + { + "answers": [ + "poker" + ], + "en_answers": [ + "poker" + ], + "count": 1 + }, + { + "answers": [ + "domino" + ], + "en_answers": [ + "domino" + ], + "count": 1 + }, + { + "answers": [ + "charades" + ], + "en_answers": [ + "charades" + ], + "count": 1 + }, + { + "answers": [ + "card games" + ], + "en_answers": [ + "card games" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-as-80": { + "question": "What type of clothing do people from the US wear during traditional festivals?", + "en_question": "What type of clothing do people from your country wear during traditional festivals?", + "annotations": [ + { + "answers": [ + "formal", + "formal wear" + ], + "en_answers": [ + "formal", + "formal wear" + ], + "count": 2 + }, + { + "answers": [ + "relaxed" + ], + "en_answers": [ + "relaxed" + ], + "count": 1 + }, + { + "answers": [ + "casual" + ], + "en_answers": [ + "casual" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 1 + } + }, + "New-as-89": { + "question": "What traditional festival accessories do people from the US wear?", + "en_question": "What traditional festival accessories do people from your country wear?", + "annotations": [ + { + "answers": [ + "fourth of july clothes" + ], + "en_answers": [ + "fourth of july clothes" + ], + "count": 1 + }, + { + "answers": [ + "christmas decor", + "xmas decorations" + ], + "en_answers": [ + "christmas decor", + "xmas decorations" + ], + "count": 1 + }, + { + "answers": [ + "halloween outfits" + ], + "en_answers": [ + "halloween outfits" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "not-applicable": 2, + "idk": 1 + } + }, + "New-az-05": { + "question": "What is the most famous region for alcohol production in the US?", + "en_question": "What is the most famous region for alcohol production in your country?", + "annotations": [ + { + "answers": [ + "new york" + ], + "en_answers": [ + "new york" + ], + "count": 1 + }, + { + "answers": [ + "southern" + ], + "en_answers": [ + "southern" + ], + "count": 1 + }, + { + "answers": [ + "wisconsin" + ], + "en_answers": [ + "wisconsin" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-az-11": { + "question": "What fruit do people from the US often eat in the summer season?", + "en_question": "What fruit do people from your country often eat in the summer season?", + "annotations": [ + { + "answers": [ + "apples" + ], + "en_answers": [ + "apples" + ], + "count": 1 + }, + { + "answers": [ + "bananas" + ], + "en_answers": [ + "bananas" + ], + "count": 1 + }, + { + "answers": [ + "watermelon" + ], + "en_answers": [ + "watermelon" + ], + "count": 1 + }, + { + "answers": [ + "strawberries" + ], + "en_answers": [ + "strawberries" + ], + "count": 1 + }, + { + "answers": [ + "blueberries" + ], + "en_answers": [ + "blueberries" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-az-12": { + "question": "Which region in the US is known for its seafood?", + "en_question": "Which region in your country is known for its seafood?", + "annotations": [ + { + "answers": [ + "new england", + "ne" + ], + "en_answers": [ + "new england", + "ne" + ], + "count": 2 + }, + { + "answers": [ + "northeast coastal states", + "northeast coasts", + "northeast" + ], + "en_answers": [ + "northeast coastal states", + "northeast coasts", + "northeast" + ], + "count": 2 + }, + { + "answers": [ + "new orleans", + "no" + ], + "en_answers": [ + "new orleans", + "no" + ], + "count": 1 + }, + { + "answers": [ + "southeast coastal states", + "southeast coasts" + ], + "en_answers": [ + "southeast coastal states", + "southeast coasts" + ], + "count": 1 + }, + { + "answers": [ + "west coast", + "west coasts" + ], + "en_answers": [ + "west coast", + "west coasts" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-az-21": { + "question": "Which region in the US is the most popular skiing destination?", + "en_question": "Which region in your country is the most popular skiing destination?", + "annotations": [ + { + "answers": [ + "western states" + ], + "en_answers": [ + "western states" + ], + "count": 1 + }, + { + "answers": [ + "northeastern states" + ], + "en_answers": [ + "northeastern states" + ], + "count": 1 + }, + { + "answers": [ + "rocky mountain region", + "rocky mountains" + ], + "en_answers": [ + "rocky mountain region", + "rocky mountains" + ], + "count": 1 + }, + { + "answers": [ + "utah", + "ut" + ], + "en_answers": [ + "utah", + "ut" + ], + "count": 1 + }, + { + "answers": [ + "colorado", + "co" + ], + "en_answers": [ + "colorado", + "co" + ], + "count": 1 + }, + { + "answers": [ + "midwest" + ], + "en_answers": [ + "midwest" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-26": { + "question": "Who is the most popular martial arts player in the US?", + "en_question": "Who is the most popular martial arts player in your country?", + "annotations": [ + { + "answers": [ + "bruce lee" + ], + "en_answers": [ + "bruce lee" + ], + "count": 1 + }, + { + "answers": [ + "jon jones" + ], + "en_answers": [ + "jon jones" + ], + "count": 1 + }, + { + "answers": [ + "conor mcgregor" + ], + "en_answers": [ + "conor mcgregor" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 3, + "idk": 3, + "not-applicable": 0 + } + }, + "New-az-27": { + "question": "Which sport has been one of the fastest-growing in the US over the last decade?", + "en_question": "Which sport has been one of the fastest-growing in your country over the last decade?", + "annotations": [ + { + "answers": [ + "soccer", + "international football" + ], + "en_answers": [ + "soccer", + "international football" + ], + "count": 4 + }, + { + "answers": [ + "racing" + ], + "en_answers": [ + "racing" + ], + "count": 1 + }, + { + "answers": [ + "college football", + "nca a football" + ], + "en_answers": [ + "college football", + "nca a football" + ], + "count": 1 + }, + { + "answers": [ + "football", + "american football" + ], + "en_answers": [ + "football", + "american football" + ], + "count": 1 + }, + { + "answers": [ + "basketball" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-39": { + "question": "Which country is the most popular destination for students from the US studying abroad?", + "en_question": "Which country is the most popular destination for students from your country studying abroad?", + "annotations": [ + { + "answers": [ + "europe" + ], + "en_answers": [ + "europe" + ], + "count": 1 + }, + { + "answers": [ + "uk", + "united kingdom" + ], + "en_answers": [ + "uk", + "united kingdom" + ], + "count": 1 + }, + { + "answers": [ + "japan" + ], + "en_answers": [ + "japan" + ], + "count": 1 + }, + { + "answers": [ + "france" + ], + "en_answers": [ + "france" + ], + "count": 1 + }, + { + "answers": [ + "london" + ], + "en_answers": [ + "london" + ], + "count": 1 + }, + { + "answers": [ + "spain" + ], + "en_answers": [ + "spain" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "New-az-49": { + "question": "How many people work in a typical family in the US? (Provide Arabic numerals (e.g., 1) only.)", + "en_question": "How many people work in a typical family in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-az-60": { + "question": "In the US, who takes care of kids when both parents are working?", + "en_question": "In your country, who takes care of kids when both parents are working?", + "annotations": [ + { + "answers": [ + "daycare" + ], + "en_answers": [ + "daycare" + ], + "count": 4 + }, + { + "answers": [ + "relative", + "family member" + ], + "en_answers": [ + "relative", + "family member" + ], + "count": 2 + }, + { + "answers": [ + "schools" + ], + "en_answers": [ + "schools" + ], + "count": 1 + }, + { + "answers": [ + "baby sitter" + ], + "en_answers": [ + "baby sitter" + ], + "count": 1 + }, + { + "answers": [ + "grandparent" + ], + "en_answers": [ + "grandparent" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-az-69": { + "question": "What is the preferred alcoholic beverage for men from the US?", + "en_question": "What is the preferred alcoholic beverage for men from your country?", + "annotations": [ + { + "answers": [ + "beer" + ], + "en_answers": [ + "beer" + ], + "count": 4 + }, + { + "answers": [ + "bud light" + ], + "en_answers": [ + "bud light" + ], + "count": 1 + }, + { + "answers": [ + "bourbon" + ], + "en_answers": [ + "bourbon" + ], + "count": 1 + }, + { + "answers": [ + "scotch" + ], + "en_answers": [ + "scotch" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-70": { + "question": "What is the preferred alcoholic beverage for women from the US?", + "en_question": "What is the preferred alcoholic beverage for women from your country?", + "annotations": [ + { + "answers": [ + "wine" + ], + "en_answers": [ + "wine" + ], + "count": 5 + }, + { + "answers": [ + "champagne" + ], + "en_answers": [ + "champagne" + ], + "count": 2 + }, + { + "answers": [ + "piña colada" + ], + "en_answers": [ + "piña colada" + ], + "count": 1 + }, + { + "answers": [ + "martini" + ], + "en_answers": [ + "martini" + ], + "count": 1 + }, + { + "answers": [ + "white claws hard seltzer" + ], + "en_answers": [ + "white claws hard seltzer" + ], + "count": 1 + }, + { + "answers": [ + "mixed cocktails" + ], + "en_answers": [ + "mixed cocktails" + ], + "count": 1 + }, + { + "answers": [ + "tequila" + ], + "en_answers": [ + "tequila" + ], + "count": 1 + }, + { + "answers": [ + "vodka" + ], + "en_answers": [ + "vodka" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-73": { + "question": "How many people on average typically attend a wedding in the US? (Provide Arabic numerals (e.g., 1) only.)", + "en_question": "How many people on average typically attend a wedding in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "50" + ], + "en_answers": [ + "50" + ], + "count": 2 + }, + { + "answers": [ + "100" + ], + "en_answers": [ + "100" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ch-01": { + "question": "What kind of meat do people usually eat when they have barbecue in the US?", + "en_question": "What kind of meat do people usually eat when they have barbecue in your country?", + "annotations": [ + { + "answers": [ + "pork" + ], + "en_answers": [ + "pork" + ], + "count": 3 + }, + { + "answers": [ + "chicken" + ], + "en_answers": [ + "chicken" + ], + "count": 3 + }, + { + "answers": [ + "beef" + ], + "en_answers": [ + "beef" + ], + "count": 3 + }, + { + "answers": [ + "hamburger", + "burger" + ], + "en_answers": [ + "hamburger", + "burger" + ], + "count": 1 + }, + { + "answers": [ + "hot dog" + ], + "en_answers": [ + "hot dog" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-02": { + "question": "When do people usually have breakfast in the US? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "en_question": "When do people usually have breakfast in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "7:00", + "7'00 am", + "07:00" + ], + "en_answers": [ + "7:00", + "7'00 am", + "07:00" + ], + "count": 2 + }, + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 1 + }, + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 1 + }, + { + "answers": [ + "19:00" + ], + "en_answers": [ + "19:00" + ], + "count": 1 + }, + { + "answers": [ + "20:00" + ], + "en_answers": [ + "20:00" + ], + "count": 1 + }, + { + "answers": [ + "07:30" + ], + "en_answers": [ + "07:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-04": { + "question": "What kinds of food do people usually eat for late-night snacks in the US?", + "en_question": "What kinds of food do people usually eat for late-night snacks in your country?", + "annotations": [ + { + "answers": [ + "chips" + ], + "en_answers": [ + "chips" + ], + "count": 2 + }, + { + "answers": [ + "cheese", + "pizza" + ], + "en_answers": [ + "cheese", + "pizza" + ], + "count": 2 + }, + { + "answers": [ + "cake" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "taco bell" + ], + "en_answers": [ + "taco bell" + ], + "count": 1 + }, + { + "answers": [ + "fruit" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + }, + { + "answers": [ + "leftovers" + ], + "en_answers": [ + "leftovers" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-05": { + "question": "What is the most famous spicy dish in the US?", + "en_question": "What is the most famous spicy dish in your country?", + "annotations": [ + { + "answers": [ + "buffalo wings", + "hot wings" + ], + "en_answers": [ + "buffalo wings", + "hot wings" + ], + "count": 5 + }, + { + "answers": [ + "chili" + ], + "en_answers": [ + "chili" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-07": { + "question": "What food items do people typically pair with hard liquor in the US?", + "en_question": "What food items do people typically pair with hard liquor in your country?", + "annotations": [ + { + "answers": [ + "burgers", + "burger", + "hamburgers" + ], + "en_answers": [ + "burgers", + "burger", + "hamburgers" + ], + "count": 2 + }, + { + "answers": [ + "cheeseburger" + ], + "en_answers": [ + "cheeseburger" + ], + "count": 1 + }, + { + "answers": [ + "pretzels" + ], + "en_answers": [ + "pretzels" + ], + "count": 1 + }, + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + }, + { + "answers": [ + "tacos" + ], + "en_answers": [ + "tacos" + ], + "count": 1 + }, + { + "answers": [ + "tater tots" + ], + "en_answers": [ + "tater tots" + ], + "count": 1 + }, + { + "answers": [ + "negroni aged cheese", + "nwgroni aged cheese" + ], + "en_answers": [ + "negroni aged cheese", + "nwgroni aged cheese" + ], + "count": 1 + }, + { + "answers": [ + "fries" + ], + "en_answers": [ + "fries" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-08": { + "question": "What essential seasoning is indispensable in cooking in the US?", + "en_question": "What seasoning is indispensable in cooking in your country?", + "annotations": [ + { + "answers": [ + "salt" + ], + "en_answers": [ + "salt" + ], + "count": 4 + }, + { + "answers": [ + "pepper" + ], + "en_answers": [ + "pepper" + ], + "count": 2 + }, + { + "answers": [ + "jalapenos" + ], + "en_answers": [ + "jalapenos" + ], + "count": 1 + }, + { + "answers": [ + "garlic" + ], + "en_answers": [ + "garlic" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-09": { + "question": "What food do people typically consume when the weather is cold in the US?", + "en_question": "What food do people typically consume when the weather is cold in your country?", + "annotations": [ + { + "answers": [ + "soup" + ], + "en_answers": [ + "soup" + ], + "count": 4 + }, + { + "answers": [ + "stew" + ], + "en_answers": [ + "stew" + ], + "count": 1 + }, + { + "answers": [ + "hot chocolate" + ], + "en_answers": [ + "hot chocolate" + ], + "count": 1 + }, + { + "answers": [ + "casserole" + ], + "en_answers": [ + "casserole" + ], + "count": 1 + }, + { + "answers": [ + "chili" + ], + "en_answers": [ + "chili" + ], + "count": 1 + }, + { + "answers": [ + "grilled cheese sandwiches" + ], + "en_answers": [ + "grilled cheese sandwiches" + ], + "count": 1 + }, + { + "answers": [ + "pasta" + ], + "en_answers": [ + "pasta" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-13": { + "question": "What is the most famous alcohol brand in the US?", + "en_question": "What is the most famous alcohol brand in your country?", + "annotations": [ + { + "answers": [ + "jack daniels" + ], + "en_answers": [ + "jack daniels" + ], + "count": 2 + }, + { + "answers": [ + "budweiser" + ], + "en_answers": [ + "budweiser" + ], + "count": 2 + }, + { + "answers": [ + "miller lite" + ], + "en_answers": [ + "miller lite" + ], + "count": 1 + }, + { + "answers": [ + "coors" + ], + "en_answers": [ + "coors" + ], + "count": 1 + }, + { + "answers": [ + "bud light" + ], + "en_answers": [ + "bud light" + ], + "count": 1 + }, + { + "answers": [ + "smirnoff" + ], + "en_answers": [ + "smirnoff" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ch-14": { + "question": "What foods do people usually eat when they are sick in the US?", + "en_question": "What foods do people usually eat when they are sick in your country?", + "annotations": [ + { + "answers": [ + "soup" + ], + "en_answers": [ + "soup" + ], + "count": 2 + }, + { + "answers": [ + "chicken soup", + "chicken noodle soup" + ], + "en_answers": [ + "chicken soup", + "chicken noodle soup" + ], + "count": 2 + }, + { + "answers": [ + "banana" + ], + "en_answers": [ + "banana" + ], + "count": 1 + }, + { + "answers": [ + "ginger ale" + ], + "en_answers": [ + "ginger ale" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-15": { + "question": "What prepared/ready-to-eat food do people typically buy at supermarkets in the US?", + "en_question": "What prepared/ready-to-eat food do people typically buy at supermarkets in your country?", + "annotations": [ + { + "answers": [ + "frozen pizza", + "pizza" + ], + "en_answers": [ + "frozen pizza", + "pizza" + ], + "count": 2 + }, + { + "answers": [ + "frozen entrees" + ], + "en_answers": [ + "frozen entrees" + ], + "count": 1 + }, + { + "answers": [ + "ice cream" + ], + "en_answers": [ + "ice cream" + ], + "count": 1 + }, + { + "answers": [ + "burgers", + "hamburgers" + ], + "en_answers": [ + "burgers", + "hamburgers" + ], + "count": 1 + }, + { + "answers": [ + "chicken strips" + ], + "en_answers": [ + "chicken strips" + ], + "count": 1 + }, + { + "answers": [ + "chicken sandwiches" + ], + "en_answers": [ + "chicken sandwiches" + ], + "count": 1 + }, + { + "answers": [ + "soup" + ], + "en_answers": [ + "soup" + ], + "count": 1 + }, + { + "answers": [ + "chili" + ], + "en_answers": [ + "chili" + ], + "count": 1 + }, + { + "answers": [ + "pasta sauce" + ], + "en_answers": [ + "pasta sauce" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-16": { + "question": "What is the most famous sports-related movie in the US?", + "en_question": "What is the most famous sports-related movie in your country?", + "annotations": [ + { + "answers": [ + "rocky" + ], + "en_answers": [ + "rocky" + ], + "count": 3 + }, + { + "answers": [ + "sandlot" + ], + "en_answers": [ + "sandlot" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-17": { + "question": "What extreme sport do people generally wish to try the most in the US?", + "en_question": "What extreme sport do people generally wish to try the most in your country?", + "annotations": [ + { + "answers": [ + "sky diving", + "skydiving" + ], + "en_answers": [ + "sky diving", + "skydiving" + ], + "count": 4 + }, + { + "answers": [ + "bungee jumping" + ], + "en_answers": [ + "bungee jumping" + ], + "count": 2 + }, + { + "answers": [ + "surfing" + ], + "en_answers": [ + "surfing" + ], + "count": 1 + }, + { + "answers": [ + "rock climbing" + ], + "en_answers": [ + "rock climbing" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-18": { + "question": "Which track and field event is the most popular to watch during competitions in the US?", + "en_question": "Which track and field event is the most popular to watch during competitions in your country?", + "annotations": [ + { + "answers": [ + "100 meter dash", + "100 meter" + ], + "en_answers": [ + "100 meter dash", + "100 meter" + ], + "count": 2 + }, + { + "answers": [ + "relay" + ], + "en_answers": [ + "relay" + ], + "count": 1 + }, + { + "answers": [ + "shot put" + ], + "en_answers": [ + "shot put" + ], + "count": 1 + }, + { + "answers": [ + "200 meter sprint" + ], + "en_answers": [ + "200 meter sprint" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-19": { + "question": "Which gymnastics event is the most popular to watch during competitions in the US?", + "en_question": "Which gymnastics event is the most popular to watch during competitions in your country?", + "annotations": [ + { + "answers": [ + "floor routine", + "floor" + ], + "en_answers": [ + "floor routine", + "floor" + ], + "count": 3 + }, + { + "answers": [ + "vault" + ], + "en_answers": [ + "vault" + ], + "count": 1 + }, + { + "answers": [ + "olympics" + ], + "en_answers": [ + "olympics" + ], + "count": 1 + }, + { + "answers": [ + "women's artistic gymnastics" + ], + "en_answers": [ + "women's artistic gymnastics" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-23": { + "question": "Who is the most famous table tennis player in the US?", + "en_question": "Who is the most famous table tennis player in your country?", + "annotations": [ + { + "answers": [ + "jim butler" + ], + "en_answers": [ + "jim butler" + ], + "count": 1 + } + ], + "idks": { + "idk": 6, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-26": { + "question": "In the Winter Olympics, which event is the most popular to watch in the US?", + "en_question": "In the Winter Olympics, which event is the most popular to watch in your country?", + "annotations": [ + { + "answers": [ + "ice skating" + ], + "en_answers": [ + "ice skating" + ], + "count": 2 + }, + { + "answers": [ + "downhill skiing", + "alpine skiing" + ], + "en_answers": [ + "downhill skiing", + "alpine skiing" + ], + "count": 2 + }, + { + "answers": [ + "tennis" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + }, + { + "answers": [ + "curling" + ], + "en_answers": [ + "curling" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-27": { + "question": "Who is the most famous boxer in the US?", + "en_question": "Who is the most famous boxer in your country?", + "annotations": [ + { + "answers": [ + "muhammad ali", + "mohammad ali" + ], + "en_answers": [ + "muhammad ali", + "mohammad ali" + ], + "count": 4 + }, + { + "answers": [ + "mayweather", + "maywhether", + "floyd mayweather" + ], + "en_answers": [ + "mayweather", + "maywhether", + "floyd mayweather" + ], + "count": 2 + }, + { + "answers": [ + "mike tyson" + ], + "en_answers": [ + "mike tyson" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-30": { + "question": "Who is the most famous track and field athlete in the US?", + "en_question": "Who is the most famous track and field athlete in your country?", + "annotations": [ + { + "answers": [ + "jesse owens" + ], + "en_answers": [ + "jesse owens" + ], + "count": 2 + }, + { + "answers": [ + "allyson felix", + "alyson felix" + ], + "en_answers": [ + "allyson felix", + "alyson felix" + ], + "count": 1 + }, + { + "answers": [ + "sha'carri richardson" + ], + "en_answers": [ + "sha'carri richardson" + ], + "count": 1 + } + ], + "idks": { + "idk": 6, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-31": { + "question": "What job do parents most hope their children will pursue in the US?", + "en_question": "What job do parents most hope their children will pursue in your country?", + "annotations": [ + { + "answers": [ + "doctor" + ], + "en_answers": [ + "doctor" + ], + "count": 4 + }, + { + "answers": [ + "lawyer" + ], + "en_answers": [ + "lawyer" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-32": { + "question": "What office software do people typically use in the workplace in the US?", + "en_question": "What office software do people typically use in the workplace in your country?", + "annotations": [ + { + "answers": [ + "microsoft word" + ], + "en_answers": [ + "microsoft word" + ], + "count": 2 + }, + { + "answers": [ + "microsoft office" + ], + "en_answers": [ + "microsoft office" + ], + "count": 2 + }, + { + "answers": [ + "excel" + ], + "en_answers": [ + "excel" + ], + "count": 1 + }, + { + "answers": [ + "microsoft suite" + ], + "en_answers": [ + "microsoft suite" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-38": { + "question": "Which cities or regions are known for their import and export activities in the US?", + "en_question": "Which cities or regions are known for their import and export activities in your country?", + "annotations": [ + { + "answers": [ + "new york city", + "new york", + "nyc", + "ny" + ], + "en_answers": [ + "new york city", + "new york", + "nyc", + "ny" + ], + "count": 3 + }, + { + "answers": [ + "los angeles", + "la" + ], + "en_answers": [ + "los angeles", + "la" + ], + "count": 2 + }, + { + "answers": [ + "florida", + "fl" + ], + "en_answers": [ + "florida", + "fl" + ], + "count": 1 + }, + { + "answers": [ + "texas", + "tx" + ], + "en_answers": [ + "texas", + "tx" + ], + "count": 1 + }, + { + "answers": [ + "california", + "ca" + ], + "en_answers": [ + "california", + "ca" + ], + "count": 1 + }, + { + "answers": [ + "coastal areas" + ], + "en_answers": [ + "coastal areas" + ], + "count": 1 + }, + { + "answers": [ + "baltimore", + "bal" + ], + "en_answers": [ + "baltimore", + "bal" + ], + "count": 1 + }, + { + "answers": [ + "seattle", + "sea" + ], + "en_answers": [ + "seattle", + "sea" + ], + "count": 1 + }, + { + "answers": [ + "boston", + "bos" + ], + "en_answers": [ + "boston", + "bos" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-39": { + "question": "What platform is commonly used in the e-commerce industry in the US?", + "en_question": "What platform is commonly used in the e-commerce industry in your country?", + "annotations": [ + { + "answers": [ + "amazon" + ], + "en_answers": [ + "amazon" + ], + "count": 2 + }, + { + "answers": [ + "shopify" + ], + "en_answers": [ + "shopify" + ], + "count": 1 + } + ], + "idks": { + "what are you asking here? platform could mean anything . are talking about the tech behind the e-commerce provider such as amazon? well thats a plethora of web rechnologoes. are asking about devices such as phones or desktop computers ? are talking about web browsers ? just not sure how to answer this": 1, + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-44": { + "question": "How long is the typical probation period for new employees before signing a formal contract in the US? (e.g., 1 month).", + "en_question": "How long is the typical probation period for new employees before signing a formal contract in your country? (e.g., 1 month).", + "annotations": [ + { + "answers": [ + "3 months" + ], + "en_answers": [ + "3 months" + ], + "count": 3 + }, + { + "answers": [ + "1 month" + ], + "en_answers": [ + "1 month" + ], + "count": 2 + }, + { + "answers": [ + "6 months" + ], + "en_answers": [ + "6 months" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-45": { + "question": "Which industries do young people typically choose to start businesses in the US?", + "en_question": "Which industries do young people typically choose to start businesses in your country?", + "annotations": [ + { + "answers": [ + "clothing", + "clothes" + ], + "en_answers": [ + "clothing", + "clothes" + ], + "count": 1 + }, + { + "answers": [ + "food" + ], + "en_answers": [ + "food" + ], + "count": 1 + }, + { + "answers": [ + "digital marketing" + ], + "en_answers": [ + "digital marketing" + ], + "count": 1 + }, + { + "answers": [ + "doctor", + "medicine" + ], + "en_answers": [ + "doctor", + "medicine" + ], + "count": 1 + }, + { + "answers": [ + "buisness" + ], + "en_answers": [ + "buisness" + ], + "count": 1 + }, + { + "answers": [ + "economics" + ], + "en_answers": [ + "economics" + ], + "count": 1 + }, + { + "answers": [ + "sales" + ], + "en_answers": [ + "sales" + ], + "count": 1 + }, + { + "answers": [ + "tech", + "technology" + ], + "en_answers": [ + "tech", + "technology" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-49": { + "question": "What is the most common way for family members to communicate remotely in the US?", + "en_question": "What is the most common way for family members to communicate remotely in your country?", + "annotations": [ + { + "answers": [ + "phone calls", + "phone", + "phone call" + ], + "en_answers": [ + "phone calls", + "phone", + "phone call" + ], + "count": 3 + }, + { + "answers": [ + "video calls" + ], + "en_answers": [ + "video calls" + ], + "count": 1 + }, + { + "answers": [ + "zoom" + ], + "en_answers": [ + "zoom" + ], + "count": 1 + }, + { + "answers": [ + "face time" + ], + "en_answers": [ + "face time" + ], + "count": 1 + }, + { + "answers": [ + "text message" + ], + "en_answers": [ + "text message" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-51": { + "question": "What form of accommodation is typically booked for family trips in the US?", + "en_question": "What form of accommodation is typically booked for family trips in your country?", + "annotations": [ + { + "answers": [ + "hotel" + ], + "en_answers": [ + "hotel" + ], + "count": 3 + }, + { + "answers": [ + "connecting hotel room" + ], + "en_answers": [ + "connecting hotel room" + ], + "count": 1 + }, + { + "answers": [ + "kid friendly resturants" + ], + "en_answers": [ + "kid friendly resturants" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-ch-54": { + "question": "Which fruit is usually prepared the most for family dinners in the US?", + "en_question": "Which fruit is usually prepared the most for family dinners in your country?", + "annotations": [ + { + "answers": [ + "apples" + ], + "en_answers": [ + "apples" + ], + "count": 3 + }, + { + "answers": [ + "strawberries" + ], + "en_answers": [ + "strawberries" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-ch-64": { + "question": "How many hours of classes do university students typically have per week in the US? (Provide Arabic numerals (e.g., 1) only.)", + "en_question": "How many hours of classes do university students typically have per week in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "12", + "12 to 15" + ], + "en_answers": [ + "12", + "12 to 15" + ], + "count": 4 + }, + { + "answers": [ + "15", + "12 to 15" + ], + "en_answers": [ + "15", + "12 to 15" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-66": { + "question": "What is the typical tuition fee per semester for public high schools in the US? (Provide Arabic numerals (e.g., 1) only.)", + "en_question": "What is the typical tuition fee per semester for public high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 4 + }, + { + "answers": [ + "9000" + ], + "en_answers": [ + "9000" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-70": { + "question": "What compulsory courses do university students have in common in the US?", + "en_question": "What compulsory courses do university students have in common in your country?", + "annotations": [ + { + "answers": [ + "english" + ], + "en_answers": [ + "english" + ], + "count": 2 + }, + { + "answers": [ + "math", + "mathematics" + ], + "en_answers": [ + "math", + "mathematics" + ], + "count": 2 + }, + { + "answers": [ + "english literature" + ], + "en_answers": [ + "english literature" + ], + "count": 1 + }, + { + "answers": [ + "foreign language", + "language" + ], + "en_answers": [ + "foreign language", + "language" + ], + "count": 1 + }, + { + "answers": [ + "social science" + ], + "en_answers": [ + "social science" + ], + "count": 1 + }, + { + "answers": [ + "natural science" + ], + "en_answers": [ + "natural science" + ], + "count": 1 + }, + { + "answers": [ + "biology" + ], + "en_answers": [ + "biology" + ], + "count": 1 + }, + { + "answers": [ + "history" + ], + "en_answers": [ + "history" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-71": { + "question": "What is the average class size in high schools in the US? (Provide Arabic numerals (e.g., 1) only.)", + "en_question": "What is the average class size in high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 2 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 2 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + }, + { + "answers": [ + "100" + ], + "en_answers": [ + "100" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-72": { + "question": "Which major is considered most conducive to employment in the US?", + "en_question": "Which major is considered most conducive to employment in your country?", + "annotations": [ + { + "answers": [ + "business" + ], + "en_answers": [ + "business" + ], + "count": 3 + }, + { + "answers": [ + "engineering" + ], + "en_answers": [ + "engineering" + ], + "count": 2 + }, + { + "answers": [ + "technology", + "tech" + ], + "en_answers": [ + "technology", + "tech" + ], + "count": 1 + }, + { + "answers": [ + "healthcare" + ], + "en_answers": [ + "healthcare" + ], + "count": 1 + }, + { + "answers": [ + "finance" + ], + "en_answers": [ + "finance" + ], + "count": 1 + }, + { + "answers": [ + "economics" + ], + "en_answers": [ + "economics" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-73": { + "question": "What type of clubs are most popular among university students in the US?", + "en_question": "What type of clubs are most popular among university students in your country?", + "annotations": [ + { + "answers": [ + "debate" + ], + "en_answers": [ + "debate" + ], + "count": 2 + }, + { + "answers": [ + "math", + "mathematics" + ], + "en_answers": [ + "math", + "mathematics" + ], + "count": 1 + }, + { + "answers": [ + "outdoor activities" + ], + "en_answers": [ + "outdoor activities" + ], + "count": 1 + }, + { + "answers": [ + "college bars" + ], + "en_answers": [ + "college bars" + ], + "count": 1 + }, + { + "answers": [ + "fraternity" + ], + "en_answers": [ + "fraternity" + ], + "count": 1 + }, + { + "answers": [ + "sorority", + "sororoity" + ], + "en_answers": [ + "sorority", + "sororoity" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ch-74": { + "question": "What types of accommodation do university students in the US typically live in?", + "en_question": "What types of accommodation do university students in your country typically live in?", + "annotations": [ + { + "answers": [ + "dormitories", + "dorm rooms", + "dorms" + ], + "en_answers": [ + "dormitories", + "dorm rooms", + "dorms" + ], + "count": 3 + }, + { + "answers": [ + "at home" + ], + "en_answers": [ + "at home" + ], + "count": 1 + }, + { + "answers": [ + "apartments" + ], + "en_answers": [ + "apartments" + ], + "count": 1 + }, + { + "answers": [ + "off campus apartments" + ], + "en_answers": [ + "off campus apartments" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-ch-75": { + "question": "How long is each class period for middle school students in the US (minutes)? (Provide Arabic numerals (e.g., 1) only.)", + "en_question": "How long is each class period for middle school students in your country (minutes)? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "45", + "45mins" + ], + "en_answers": [ + "45", + "45mins" + ], + "count": 5 + }, + { + "answers": [ + "50" + ], + "en_answers": [ + "50" + ], + "count": 1 + }, + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + }, + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-78": { + "question": "What leisure activities do retired women typically like in the US?", + "en_question": "What leisure activities do retired women typically like in your country?", + "annotations": [ + { + "answers": [ + "knitting", + "knit", + "knitting and sewing" + ], + "en_answers": [ + "knitting", + "knit", + "knitting and sewing" + ], + "count": 3 + }, + { + "answers": [ + "evening with friends" + ], + "en_answers": [ + "evening with friends" + ], + "count": 1 + }, + { + "answers": [ + "crafts" + ], + "en_answers": [ + "crafts" + ], + "count": 1 + }, + { + "answers": [ + "shop" + ], + "en_answers": [ + "shop" + ], + "count": 1 + }, + { + "answers": [ + "swim" + ], + "en_answers": [ + "swim" + ], + "count": 1 + }, + { + "answers": [ + "book club" + ], + "en_answers": [ + "book club" + ], + "count": 1 + }, + { + "answers": [ + "walking", + "walking/exercising" + ], + "en_answers": [ + "walking", + "walking/exercising" + ], + "count": 1 + }, + { + "answers": [ + "exercising", + "walking/exercising" + ], + "en_answers": [ + "exercising", + "walking/exercising" + ], + "count": 1 + }, + { + "answers": [ + "bocce ball" + ], + "en_answers": [ + "bocce ball" + ], + "count": 1 + }, + { + "answers": [ + "water aerobics" + ], + "en_answers": [ + "water aerobics" + ], + "count": 1 + }, + { + "answers": [ + "sewing", + "knitting and sewing" + ], + "en_answers": [ + "sewing", + "knitting and sewing" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-79": { + "question": "What leisure activities do retired men typically like in the US?", + "en_question": "What leisure activities do retired men typically like in your country?", + "annotations": [ + { + "answers": [ + "golf" + ], + "en_answers": [ + "golf" + ], + "count": 5 + }, + { + "answers": [ + "motor cycle clubs" + ], + "en_answers": [ + "motor cycle clubs" + ], + "count": 1 + }, + { + "answers": [ + "crafting items" + ], + "en_answers": [ + "crafting items" + ], + "count": 1 + }, + { + "answers": [ + "fishing" + ], + "en_answers": [ + "fishing" + ], + "count": 1 + }, + { + "answers": [ + "sports" + ], + "en_answers": [ + "sports" + ], + "count": 1 + }, + { + "answers": [ + "watching tv", + "watching television" + ], + "en_answers": [ + "watching tv", + "watching television" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-80": { + "question": "During which holidays do people typically visit religious sites (temples, churches, etc.) in the US?", + "en_question": "During which holidays do people typically visit religious sites (temples, churches, etc.) in your country?", + "annotations": [ + { + "answers": [ + "easter", + "ressurection sunday" + ], + "en_answers": [ + "easter", + "ressurection sunday" + ], + "count": 4 + }, + { + "answers": [ + "memorial day", + "day of the fallen" + ], + "en_answers": [ + "memorial day", + "day of the fallen" + ], + "count": 1 + }, + { + "answers": [ + "christmas", + "xmas" + ], + "en_answers": [ + "christmas", + "xmas" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-ch-81": { + "question": "What are the typical housewarming gifts in the US?", + "en_question": "What are the typical housewarming gifts in your country?", + "annotations": [ + { + "answers": [ + "wine" + ], + "en_answers": [ + "wine" + ], + "count": 2 + }, + { + "answers": [ + "treats" + ], + "en_answers": [ + "treats" + ], + "count": 1 + }, + { + "answers": [ + "baked goods", + "pastries" + ], + "en_answers": [ + "baked goods", + "pastries" + ], + "count": 1 + }, + { + "answers": [ + "food" + ], + "en_answers": [ + "food" + ], + "count": 1 + }, + { + "answers": [ + "toaster" + ], + "en_answers": [ + "toaster" + ], + "count": 1 + }, + { + "answers": [ + "flowers" + ], + "en_answers": [ + "flowers" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-82": { + "question": "At what time do weddings typically start in the US? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "en_question": "At what time do weddings typically start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 2 + }, + { + "answers": [ + "12:00" + ], + "en_answers": [ + "12:00" + ], + "count": 1 + }, + { + "answers": [ + "16:00" + ], + "en_answers": [ + "16:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ch-83": { + "question": "Which city in the US hosts festivals the most?", + "en_question": "Which city in your country hosts festivals the most?", + "annotations": [ + { + "answers": [ + "las vegas", + "lv" + ], + "en_answers": [ + "las vegas", + "lv" + ], + "count": 2 + }, + { + "answers": [ + "cochella valley" + ], + "en_answers": [ + "cochella valley" + ], + "count": 1 + }, + { + "answers": [ + "palm desert" + ], + "en_answers": [ + "palm desert" + ], + "count": 1 + }, + { + "answers": [ + "miami", + "mi" + ], + "en_answers": [ + "miami", + "mi" + ], + "count": 1 + }, + { + "answers": [ + "honolulu" + ], + "en_answers": [ + "honolulu" + ], + "count": 1 + }, + { + "answers": [ + "san francisco", + "sf" + ], + "en_answers": [ + "san francisco", + "sf" + ], + "count": 1 + }, + { + "answers": [ + "chicago", + "chi" + ], + "en_answers": [ + "chicago", + "chi" + ], + "count": 1 + }, + { + "answers": [ + "la", + "los angeles" + ], + "en_answers": [ + "la", + "los angeles" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-84": { + "question": "What color of clothing do people typically wear when attending weddings in the US?", + "en_question": "What color of clothing do people typically wear when attending weddings in your country?", + "annotations": [ + { + "answers": [ + "black" + ], + "en_answers": [ + "black" + ], + "count": 2 + }, + { + "answers": [ + "blue" + ], + "en_answers": [ + "blue" + ], + "count": 1 + }, + { + "answers": [ + "red" + ], + "en_answers": [ + "red" + ], + "count": 1 + }, + { + "answers": [ + "white" + ], + "en_answers": [ + "white" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-85": { + "question": "What color of clothing do people typically wear when attending funerals in the US?", + "en_question": "What color of clothing do people typically wear when attending funerals in your country?", + "annotations": [ + { + "answers": [ + "black" + ], + "en_answers": [ + "black" + ], + "count": 5 + }, + { + "answers": [ + "white - in my family's filipino culture" + ], + "en_answers": [ + "white - in my family's filipino culture" + ], + "count": 1 + }, + { + "answers": [ + "dark blue" + ], + "en_answers": [ + "dark blue" + ], + "count": 1 + }, + { + "answers": [ + "gray" + ], + "en_answers": [ + "gray" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-01": { + "question": "Which snack is eaten in the cinema in the US?", + "en_question": "Which snack is eaten in the cinema in your country?", + "annotations": [ + { + "answers": [ + "popcorn" + ], + "en_answers": [ + "popcorn" + ], + "count": 5 + }, + { + "answers": [ + "slushies" + ], + "en_answers": [ + "slushies" + ], + "count": 1 + }, + { + "answers": [ + "candy" + ], + "en_answers": [ + "candy" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-02": { + "question": "What is the most popular chip/crisp flavour in the US?", + "en_question": "What is the most popular chip/crisp flavour in your country?", + "annotations": [ + { + "answers": [ + "bbq", + "barbeque" + ], + "en_answers": [ + "bbq", + "barbeque" + ], + "count": 3 + }, + { + "answers": [ + "sour cream and onion" + ], + "en_answers": [ + "sour cream and onion" + ], + "count": 2 + }, + { + "answers": [ + "regular", + "regular / potato" + ], + "en_answers": [ + "regular", + "regular / potato" + ], + "count": 2 + }, + { + "answers": [ + "potato", + "regular / potato" + ], + "en_answers": [ + "potato", + "regular / potato" + ], + "count": 1 + }, + { + "answers": [ + "cheese" + ], + "en_answers": [ + "cheese" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-04": { + "question": "Who is a popular celebrity chef in the US?", + "en_question": "Who is a popular celebrity chef in your country?", + "annotations": [ + { + "answers": [ + "gordon ramsay", + "gordon ramsey", + "gordan ramsay", + "gorden ramsey" + ], + "en_answers": [ + "gordon ramsay", + "gordon ramsey", + "gordan ramsay", + "gorden ramsey" + ], + "count": 5 + }, + { + "answers": [ + "rachael ray" + ], + "en_answers": [ + "rachael ray" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-05": { + "question": "Which food is a cost-effective and quick meal option in the US?", + "en_question": "Which food is a cost-effective and quick meal option in your country?", + "annotations": [ + { + "answers": [ + "hot dog", + "hotdogs" + ], + "en_answers": [ + "hot dog", + "hotdogs" + ], + "count": 2 + }, + { + "answers": [ + "hamburgers", + "burgers" + ], + "en_answers": [ + "hamburgers", + "burgers" + ], + "count": 1 + }, + { + "answers": [ + "chicken" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "sandwich", + "snadwich" + ], + "en_answers": [ + "sandwich", + "snadwich" + ], + "count": 1 + }, + { + "answers": [ + "fast food" + ], + "en_answers": [ + "fast food" + ], + "count": 1 + }, + { + "answers": [ + "spaghetti" + ], + "en_answers": [ + "spaghetti" + ], + "count": 1 + }, + { + "answers": [ + "bologna sandwich" + ], + "en_answers": [ + "bologna sandwich" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-07": { + "question": "What are the most popular cooking shows in the US?", + "en_question": "What are the most popular cooking shows in your country?", + "annotations": [ + { + "answers": [ + "chopped" + ], + "en_answers": [ + "chopped" + ], + "count": 3 + }, + { + "answers": [ + "masterchef", + "master chef" + ], + "en_answers": [ + "masterchef", + "master chef" + ], + "count": 3 + }, + { + "answers": [ + "top chef" + ], + "en_answers": [ + "top chef" + ], + "count": 1 + }, + { + "answers": [ + "hell's kitchen" + ], + "en_answers": [ + "hell's kitchen" + ], + "count": 1 + }, + { + "answers": [ + "iron chef" + ], + "en_answers": [ + "iron chef" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-08": { + "question": "What is the most popular chocolate brand in the US?", + "en_question": "What is the most popular chocolate brand in your country?", + "annotations": [ + { + "answers": [ + "hershey", + "hershey's", + "hersheys" + ], + "en_answers": [ + "hershey", + "hershey's", + "hersheys" + ], + "count": 5 + }, + { + "answers": [ + "lindt" + ], + "en_answers": [ + "lindt" + ], + "count": 1 + }, + { + "answers": [ + "godiva" + ], + "en_answers": [ + "godiva" + ], + "count": 1 + }, + { + "answers": [ + "nestle" + ], + "en_answers": [ + "nestle" + ], + "count": 1 + }, + { + "answers": [ + "cadbury" + ], + "en_answers": [ + "cadbury" + ], + "count": 1 + }, + { + "answers": [ + "mars" + ], + "en_answers": [ + "mars" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-10": { + "question": "What is the most eaten cheese in the US?", + "en_question": "What is the most eaten cheese in your country?", + "annotations": [ + { + "answers": [ + "cheddar" + ], + "en_answers": [ + "cheddar" + ], + "count": 4 + }, + { + "answers": [ + "american" + ], + "en_answers": [ + "american" + ], + "count": 1 + }, + { + "answers": [ + "questo banco" + ], + "en_answers": [ + "questo banco" + ], + "count": 1 + }, + { + "answers": [ + "swiss" + ], + "en_answers": [ + "swiss" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-11": { + "question": "What is the most disliked vegetable in the US?", + "en_question": "What is the most disliked vegetable in your country?", + "annotations": [ + { + "answers": [ + "brussel sprouts" + ], + "en_answers": [ + "brussel sprouts" + ], + "count": 5 + }, + { + "answers": [ + "cabbage" + ], + "en_answers": [ + "cabbage" + ], + "count": 1 + }, + { + "answers": [ + "okra" + ], + "en_answers": [ + "okra" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-12": { + "question": "What food is most commonly found in food courts in the US?", + "en_question": "What food is most commonly found in food courts in your country?", + "annotations": [ + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 3 + }, + { + "answers": [ + "asian woks" + ], + "en_answers": [ + "asian woks" + ], + "count": 1 + }, + { + "answers": [ + "subway sandwiches" + ], + "en_answers": [ + "subway sandwiches" + ], + "count": 1 + }, + { + "answers": [ + "mcdonald's", + "chicken chains (mcdonalds" + ], + "en_answers": [ + "mcdonald's", + "chicken chains (mcdonalds" + ], + "count": 1 + }, + { + "answers": [ + "burger king" + ], + "en_answers": [ + "burger king" + ], + "count": 1 + }, + { + "answers": [ + "wendy's", + "wendys)" + ], + "en_answers": [ + "wendy's", + "wendys)" + ], + "count": 1 + }, + { + "answers": [ + "fries", + "french fries" + ], + "en_answers": [ + "fries", + "french fries" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-17": { + "question": "What are the most common cheering tools used by sports fans in the US?", + "en_question": "What are the most common cheering tools used by sports fans in your country?", + "annotations": [ + { + "answers": [ + "signs" + ], + "en_answers": [ + "signs" + ], + "count": 2 + }, + { + "answers": [ + "bells" + ], + "en_answers": [ + "bells" + ], + "count": 1 + }, + { + "answers": [ + "pom poms" + ], + "en_answers": [ + "pom poms" + ], + "count": 1 + }, + { + "answers": [ + "styrofoam finger", + "foam finger" + ], + "en_answers": [ + "styrofoam finger", + "foam finger" + ], + "count": 1 + }, + { + "answers": [ + "hand gestures" + ], + "en_answers": [ + "hand gestures" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-18": { + "question": "What do fans bring with them when attending a live game in the US?", + "en_question": "What do fans bring with them when attending a live game in your country?", + "annotations": [ + { + "answers": [ + "phones", + "phone", + "smartphone" + ], + "en_answers": [ + "phones", + "phone", + "smartphone" + ], + "count": 2 + }, + { + "answers": [ + "hats" + ], + "en_answers": [ + "hats" + ], + "count": 1 + }, + { + "answers": [ + "jerseys" + ], + "en_answers": [ + "jerseys" + ], + "count": 1 + }, + { + "answers": [ + "official team clothes" + ], + "en_answers": [ + "official team clothes" + ], + "count": 1 + }, + { + "answers": [ + "face paint" + ], + "en_answers": [ + "face paint" + ], + "count": 1 + }, + { + "answers": [ + "money" + ], + "en_answers": [ + "money" + ], + "count": 1 + }, + { + "answers": [ + "wallet" + ], + "en_answers": [ + "wallet" + ], + "count": 1 + }, + { + "answers": [ + "foam fingers" + ], + "en_answers": [ + "foam fingers" + ], + "count": 1 + }, + { + "answers": [ + "seat cushion" + ], + "en_answers": [ + "seat cushion" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-19": { + "question": "What is the most well known sporting stadium in the US?", + "en_question": "What is the most well known sporting stadium in your country?", + "annotations": [ + { + "answers": [ + "yankees stadium", + "yankee stadium" + ], + "en_answers": [ + "yankees stadium", + "yankee stadium" + ], + "count": 2 + }, + { + "answers": [ + "madison square garden", + "msg" + ], + "en_answers": [ + "madison square garden", + "msg" + ], + "count": 1 + }, + { + "answers": [ + "new york", + "ny" + ], + "en_answers": [ + "new york", + "ny" + ], + "count": 1 + }, + { + "answers": [ + "mercedes-benz stadium", + "mercede benz stadium" + ], + "en_answers": [ + "mercedes-benz stadium", + "mercede benz stadium" + ], + "count": 1 + }, + { + "answers": [ + "wrigley field" + ], + "en_answers": [ + "wrigley field" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-23": { + "question": "Who is the most famous Paralympian in the US?", + "en_question": "Who is the most famous Paralympian in your country?", + "annotations": [], + "idks": { + "idk": 6, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-26": { + "question": "What is the best recognized sporting chant in the US?", + "en_question": "What is the best recognized sporting chant in your country?", + "annotations": [ + { + "answers": [ + "defense" + ], + "en_answers": [ + "defense" + ], + "count": 2 + }, + { + "answers": [ + "let´s go" + ], + "en_answers": [ + "let´s go" + ], + "count": 1 + }, + { + "answers": [ + "u s a" + ], + "en_answers": [ + "u s a" + ], + "count": 1 + }, + { + "answers": [ + "u.s.a.!" + ], + "en_answers": [ + "u.s.a.!" + ], + "count": 1 + }, + { + "answers": [ + "yankees suck!" + ], + "en_answers": [ + "yankees suck!" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-en-38": { + "question": "Which industries are known for more flexible working hours in the US?", + "en_question": "Which industries are known for more flexible working hours in your country?", + "annotations": [ + { + "answers": [ + "tech", + "technology" + ], + "en_answers": [ + "tech", + "technology" + ], + "count": 2 + }, + { + "answers": [ + "freelance jobs" + ], + "en_answers": [ + "freelance jobs" + ], + "count": 1 + }, + { + "answers": [ + "restaurant industry" + ], + "en_answers": [ + "restaurant industry" + ], + "count": 1 + }, + { + "answers": [ + "office job (business)" + ], + "en_answers": [ + "office job (business)" + ], + "count": 1 + }, + { + "answers": [ + "biotech", + "bio-technology" + ], + "en_answers": [ + "biotech", + "bio-technology" + ], + "count": 1 + }, + { + "answers": [ + "creative industries" + ], + "en_answers": [ + "creative industries" + ], + "count": 1 + }, + { + "answers": [ + "software engineering", + "software engineering and design" + ], + "en_answers": [ + "software engineering", + "software engineering and design" + ], + "count": 1 + }, + { + "answers": [ + "design", + "software engineering and design" + ], + "en_answers": [ + "design", + "software engineering and design" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-41": { + "question": "Who is the most well known and successful entrepreneur in the US?", + "en_question": "Who is the most well known and successful entrepreneur in your country?", + "annotations": [ + { + "answers": [ + "bill gates" + ], + "en_answers": [ + "bill gates" + ], + "count": 4 + }, + { + "answers": [ + "jeff bezos", + "jeffrey bezos" + ], + "en_answers": [ + "jeff bezos", + "jeffrey bezos" + ], + "count": 2 + }, + { + "answers": [ + "steve jobs" + ], + "en_answers": [ + "steve jobs" + ], + "count": 1 + }, + { + "answers": [ + "mark cuban" + ], + "en_answers": [ + "mark cuban" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-47": { + "question": "What can typically be found in the back garden of houses in the US?", + "en_question": "What can typically be found in the back garden of houses in your country?", + "annotations": [ + { + "answers": [ + "grass" + ], + "en_answers": [ + "grass" + ], + "count": 2 + }, + { + "answers": [ + "trees" + ], + "en_answers": [ + "trees" + ], + "count": 1 + }, + { + "answers": [ + "gravel" + ], + "en_answers": [ + "gravel" + ], + "count": 1 + }, + { + "answers": [ + "chairs" + ], + "en_answers": [ + "chairs" + ], + "count": 1 + }, + { + "answers": [ + "trampoline" + ], + "en_answers": [ + "trampoline" + ], + "count": 1 + }, + { + "answers": [ + "shed" + ], + "en_answers": [ + "shed" + ], + "count": 1 + }, + { + "answers": [ + "pool" + ], + "en_answers": [ + "pool" + ], + "count": 1 + }, + { + "answers": [ + "swing sets" + ], + "en_answers": [ + "swing sets" + ], + "count": 1 + }, + { + "answers": [ + "fruits" + ], + "en_answers": [ + "fruits" + ], + "count": 1 + }, + { + "answers": [ + "vegetables" + ], + "en_answers": [ + "vegetables" + ], + "count": 1 + }, + { + "answers": [ + "flowers" + ], + "en_answers": [ + "flowers" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-49": { + "question": "What is the name of the most famous family in the US?", + "en_question": "What is the name of the most famous family in your country?", + "annotations": [ + { + "answers": [ + "trump", + "trumps" + ], + "en_answers": [ + "trump", + "trumps" + ], + "count": 3 + }, + { + "answers": [ + "bush" + ], + "en_answers": [ + "bush" + ], + "count": 1 + }, + { + "answers": [ + "kardashian" + ], + "en_answers": [ + "kardashian" + ], + "count": 1 + }, + { + "answers": [ + "kennedy", + "the kennedys" + ], + "en_answers": [ + "kennedy", + "the kennedys" + ], + "count": 1 + }, + { + "answers": [ + "kardashians" + ], + "en_answers": [ + "kardashians" + ], + "count": 1 + }, + { + "answers": [ + "obama", + "obamas" + ], + "en_answers": [ + "obama", + "obamas" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-en-50": { + "question": "What is the most common family name in the US?", + "en_question": "What is the most common family name in your country?", + "annotations": [ + { + "answers": [ + "smith" + ], + "en_answers": [ + "smith" + ], + "count": 5 + }, + { + "answers": [ + "johnson" + ], + "en_answers": [ + "johnson" + ], + "count": 1 + }, + { + "answers": [ + "gunderson" + ], + "en_answers": [ + "gunderson" + ], + "count": 1 + }, + { + "answers": [ + "jones" + ], + "en_answers": [ + "jones" + ], + "count": 1 + }, + { + "answers": [ + "taylor" + ], + "en_answers": [ + "taylor" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-55": { + "question": "Which religion is most commonly practiced by families in the US?", + "en_question": "Which religion is most commonly practiced by families in your country?", + "annotations": [ + { + "answers": [ + "christianity" + ], + "en_answers": [ + "christianity" + ], + "count": 3 + }, + { + "answers": [ + "catholic" + ], + "en_answers": [ + "catholic" + ], + "count": 2 + }, + { + "answers": [ + "protestant" + ], + "en_answers": [ + "protestant" + ], + "count": 2 + }, + { + "answers": [ + "evangelical" + ], + "en_answers": [ + "evangelical" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-56": { + "question": "What is the most popular foreign language spoken by families in the US?", + "en_question": "What is the most popular foreign language spoken by families in your country?", + "annotations": [ + { + "answers": [ + "spanish" + ], + "en_answers": [ + "spanish" + ], + "count": 4 + }, + { + "answers": [ + "mandarin" + ], + "en_answers": [ + "mandarin" + ], + "count": 1 + }, + { + "answers": [ + "german" + ], + "en_answers": [ + "german" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-59": { + "question": "Which country is the most popular destination for families from US to emigrate to?", + "en_question": "Which country is the most popular destination for families from your country to emigrate to?", + "annotations": [ + { + "answers": [ + "canada" + ], + "en_answers": [ + "canada" + ], + "count": 4 + }, + { + "answers": [ + "mexico" + ], + "en_answers": [ + "mexico" + ], + "count": 3 + }, + { + "answers": [ + "uk", + "the u.k.", + "united kingdom", + "the united kingdom" + ], + "en_answers": [ + "uk", + "the u.k.", + "united kingdom", + "the united kingdom" + ], + "count": 2 + }, + { + "answers": [ + "spain" + ], + "en_answers": [ + "spain" + ], + "count": 1 + }, + { + "answers": [ + "costa rica" + ], + "en_answers": [ + "costa rica" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-68": { + "question": "What repercussions are there for bad behavior in schools in the US?", + "en_question": "What repercussions are there for bad behavior in schools in your country?", + "annotations": [ + { + "answers": [ + "detention" + ], + "en_answers": [ + "detention" + ], + "count": 4 + }, + { + "answers": [ + "suspension" + ], + "en_answers": [ + "suspension" + ], + "count": 4 + }, + { + "answers": [ + "expulsion" + ], + "en_answers": [ + "expulsion" + ], + "count": 3 + }, + { + "answers": [ + "corporal punishment" + ], + "en_answers": [ + "corporal punishment" + ], + "count": 1 + }, + { + "answers": [ + "iss" + ], + "en_answers": [ + "iss" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-69": { + "question": "Which writers are commonly studied in literature class in the US?", + "en_question": "Which writers are commonly studied in literature class in your country?", + "annotations": [ + { + "answers": [ + "edgar allen poe", + "edgar allan poe" + ], + "en_answers": [ + "edgar allen poe", + "edgar allan poe" + ], + "count": 3 + }, + { + "answers": [ + "shakespeare", + "shakespear" + ], + "en_answers": [ + "shakespeare", + "shakespear" + ], + "count": 2 + }, + { + "answers": [ + "mark twain" + ], + "en_answers": [ + "mark twain" + ], + "count": 1 + }, + { + "answers": [ + "charles dickens", + "charles dickins" + ], + "en_answers": [ + "charles dickens", + "charles dickins" + ], + "count": 1 + }, + { + "answers": [ + "jd salinger" + ], + "en_answers": [ + "jd salinger" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-70": { + "question": "How many school breaks are there in a year for high schools in the US? (Provide Arabic numerals (e.g., 1) only.)", + "en_question": "How many school breaks are there in a year for high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 2 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-72": { + "question": "Which online resource do students usually use to study in the US?", + "en_question": "Which online resource do students usually use to study in your country?", + "annotations": [ + { + "answers": [ + "wikipedia" + ], + "en_answers": [ + "wikipedia" + ], + "count": 2 + }, + { + "answers": [ + "chatgpt", + "chaygpt" + ], + "en_answers": [ + "chatgpt", + "chaygpt" + ], + "count": 1 + }, + { + "answers": [ + "cliffnotes" + ], + "en_answers": [ + "cliffnotes" + ], + "count": 1 + }, + { + "answers": [ + "google drive" + ], + "en_answers": [ + "google drive" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-75": { + "question": "What is the average length of a semester in terms of weeks of teaching at universities in the US? (Provide Arabic numerals (e.g., 1) only.)", + "en_question": "What is the average length of a semester in terms of weeks of teaching at universities in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "16" + ], + "en_answers": [ + "16" + ], + "count": 2 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 2 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-76": { + "question": "Which airport in the US is the busiest during the holiday season?", + "en_question": "Which airport in your country is the busiest during the holiday season?", + "annotations": [ + { + "answers": [ + "atlanta", + "jackson international airport (atl)", + "atl" + ], + "en_answers": [ + "atlanta", + "jackson international airport (atl)", + "atl" + ], + "count": 4 + }, + { + "answers": [ + "lax", + "los angeles international airport" + ], + "en_answers": [ + "lax", + "los angeles international airport" + ], + "count": 2 + }, + { + "answers": [ + "newark" + ], + "en_answers": [ + "newark" + ], + "count": 1 + }, + { + "answers": [ + "chicago o'hare" + ], + "en_answers": [ + "chicago o'hare" + ], + "count": 1 + }, + { + "answers": [ + "dallas fort worth", + "dallas/ft. worth" + ], + "en_answers": [ + "dallas fort worth", + "dallas/ft. worth" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-79": { + "question": "Which region of US is well known for its theatrical performances?", + "en_question": "Which region of your country is well known for its theatrical performances?", + "annotations": [ + { + "answers": [ + "new york", + "new york city", + "ny", + "nyc" + ], + "en_answers": [ + "new york", + "new york city", + "ny", + "nyc" + ], + "count": 4 + }, + { + "answers": [ + "east coast" + ], + "en_answers": [ + "east coast" + ], + "count": 2 + }, + { + "answers": [ + "los angeles", + "la" + ], + "en_answers": [ + "los angeles", + "la" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-87": { + "question": "What is the most famous historic landmark in the US?", + "en_question": "What is the most famous historic landmark in your country?", + "annotations": [ + { + "answers": [ + "white house", + "the white house" + ], + "en_answers": [ + "white house", + "the white house" + ], + "count": 3 + }, + { + "answers": [ + "mount rushmore" + ], + "en_answers": [ + "mount rushmore" + ], + "count": 1 + }, + { + "answers": [ + "grand canyon" + ], + "en_answers": [ + "grand canyon" + ], + "count": 1 + }, + { + "answers": [ + "liberty bell" + ], + "en_answers": [ + "liberty bell" + ], + "count": 1 + }, + { + "answers": [ + "statue of liberty" + ], + "en_answers": [ + "statue of liberty" + ], + "count": 1 + }, + { + "answers": [ + "independence hall" + ], + "en_answers": [ + "independence hall" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-90": { + "question": "What is the most famous hotel brand in the US?", + "en_question": "What is the most famous hotel brand in your country?", + "annotations": [ + { + "answers": [ + "hilton" + ], + "en_answers": [ + "hilton" + ], + "count": 4 + }, + { + "answers": [ + "marriott", + "marriot" + ], + "en_answers": [ + "marriott", + "marriot" + ], + "count": 2 + }, + { + "answers": [ + "comfort inn" + ], + "en_answers": [ + "comfort inn" + ], + "count": 1 + }, + { + "answers": [ + "hyatt" + ], + "en_answers": [ + "hyatt" + ], + "count": 1 + }, + { + "answers": [ + "holiday inn" + ], + "en_answers": [ + "holiday inn" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-05": { + "question": "What is the most popular grab-and-go breakfast option in the US?", + "en_question": "What is the most popular grab-and-go breakfast option in your country?", + "annotations": [ + { + "answers": [ + "toast" + ], + "en_answers": [ + "toast" + ], + "count": 1 + }, + { + "answers": [ + "muffin" + ], + "en_answers": [ + "muffin" + ], + "count": 1 + }, + { + "answers": [ + "bagels" + ], + "en_answers": [ + "bagels" + ], + "count": 1 + }, + { + "answers": [ + "donuts", + "doughnuts" + ], + "en_answers": [ + "donuts", + "doughnuts" + ], + "count": 1 + }, + { + "answers": [ + "pancakes" + ], + "en_answers": [ + "pancakes" + ], + "count": 1 + }, + { + "answers": [ + "egg sandwich" + ], + "en_answers": [ + "egg sandwich" + ], + "count": 1 + }, + { + "answers": [ + "waffles" + ], + "en_answers": [ + "waffles" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "New-gr-06": { + "question": "What is the most popular food in the US among young people?", + "en_question": "What is the most popular food in your country among young people?", + "annotations": [ + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 4 + }, + { + "answers": [ + "burgers", + "hamburgers" + ], + "en_answers": [ + "burgers", + "hamburgers" + ], + "count": 2 + }, + { + "answers": [ + "salads" + ], + "en_answers": [ + "salads" + ], + "count": 1 + }, + { + "answers": [ + "ramen", + "ramen noodles" + ], + "en_answers": [ + "ramen", + "ramen noodles" + ], + "count": 1 + }, + { + "answers": [ + "french fries" + ], + "en_answers": [ + "french fries" + ], + "count": 1 + }, + { + "answers": [ + "chicken wings", + "wings" + ], + "en_answers": [ + "chicken wings", + "wings" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-08": { + "question": "What type of alcoholic drink is most commonly consumed at festivals in the US?", + "en_question": "What type of alcoholic drink is most commonly consumed at festivals in your country?", + "annotations": [ + { + "answers": [ + "beer" + ], + "en_answers": [ + "beer" + ], + "count": 5 + }, + { + "answers": [ + "malt beverages" + ], + "en_answers": [ + "malt beverages" + ], + "count": 1 + }, + { + "answers": [ + "mixed drinks" + ], + "en_answers": [ + "mixed drinks" + ], + "count": 1 + }, + { + "answers": [ + "shots" + ], + "en_answers": [ + "shots" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-13": { + "question": "What is the most common morning drink in the US?", + "en_question": "What is the most common morning drink in your country?", + "annotations": [ + { + "answers": [ + "coffee" + ], + "en_answers": [ + "coffee" + ], + "count": 5 + }, + { + "answers": [ + "tea" + ], + "en_answers": [ + "tea" + ], + "count": 1 + }, + { + "answers": [ + "energy drinks" + ], + "en_answers": [ + "energy drinks" + ], + "count": 1 + }, + { + "answers": [ + "milk" + ], + "en_answers": [ + "milk" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-15": { + "question": "What is the most popular traditional dessert in the US?", + "en_question": "What is the most popular traditional dessert in your country?", + "annotations": [ + { + "answers": [ + "pumpkin pie" + ], + "en_answers": [ + "pumpkin pie" + ], + "count": 1 + }, + { + "answers": [ + "pie" + ], + "en_answers": [ + "pie" + ], + "count": 1 + }, + { + "answers": [ + "cherry pie" + ], + "en_answers": [ + "cherry pie" + ], + "count": 1 + }, + { + "answers": [ + "ice cream" + ], + "en_answers": [ + "ice cream" + ], + "count": 1 + }, + { + "answers": [ + "apple pie" + ], + "en_answers": [ + "apple pie" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-21": { + "question": "What is the most popular racket sport in the US?", + "en_question": "What is the most popular racket sport in your country?", + "annotations": [ + { + "answers": [ + "tennis" + ], + "en_answers": [ + "tennis" + ], + "count": 5 + }, + { + "answers": [ + "badminton" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-24": { + "question": "What is the most popular track and field sport in the US?", + "en_question": "What is the most popular track and field sport in your country?", + "annotations": [ + { + "answers": [ + "sprint" + ], + "en_answers": [ + "sprint" + ], + "count": 2 + }, + { + "answers": [ + "long distance running" + ], + "en_answers": [ + "long distance running" + ], + "count": 1 + }, + { + "answers": [ + "dash" + ], + "en_answers": [ + "dash" + ], + "count": 1 + }, + { + "answers": [ + "sprinting", + "sprints" + ], + "en_answers": [ + "sprinting", + "sprints" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-29": { + "question": "Which international sporting event is the most popular in the US?", + "en_question": "Which international sporting event is the most popular in your country?", + "annotations": [ + { + "answers": [ + "olympics" + ], + "en_answers": [ + "olympics" + ], + "count": 2 + }, + { + "answers": [ + "f1", + "formula 1" + ], + "en_answers": [ + "f1", + "formula 1" + ], + "count": 1 + }, + { + "answers": [ + "world cup" + ], + "en_answers": [ + "world cup" + ], + "count": 1 + }, + { + "answers": [ + "summer olympics" + ], + "en_answers": [ + "summer olympics" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-47": { + "question": "How long (in minutes) are typical work breaks in the US, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)", + "en_question": "How long (in minutes) are typical work breaks in your country, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 4 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 2 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-58": { + "question": "Which job is considered underpaid in the US?", + "en_question": "Which job is considered underpaid in your country?", + "annotations": [ + { + "answers": [ + "teachers", + "teaching" + ], + "en_answers": [ + "teachers", + "teaching" + ], + "count": 4 + }, + { + "answers": [ + "restaurant work" + ], + "en_answers": [ + "restaurant work" + ], + "count": 1 + }, + { + "answers": [ + "civil servents" + ], + "en_answers": [ + "civil servents" + ], + "count": 1 + }, + { + "answers": [ + "manufacturing workers" + ], + "en_answers": [ + "manufacturing workers" + ], + "count": 1 + }, + { + "answers": [ + "phds", + "doctor of philosophy" + ], + "en_answers": [ + "phds", + "doctor of philosophy" + ], + "count": 1 + }, + { + "answers": [ + "fast food" + ], + "en_answers": [ + "fast food" + ], + "count": 1 + }, + { + "answers": [ + "internships", + "interships" + ], + "en_answers": [ + "internships", + "interships" + ], + "count": 1 + }, + { + "answers": [ + "federal employment" + ], + "en_answers": [ + "federal employment" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-76": { + "question": "What is the most common food served during Easter in the US?", + "en_question": "What is the most common food served during Easter in your country?", + "annotations": [ + { + "answers": [ + "ham" + ], + "en_answers": [ + "ham" + ], + "count": 4 + }, + { + "answers": [ + "scalloped potatoes" + ], + "en_answers": [ + "scalloped potatoes" + ], + "count": 1 + }, + { + "answers": [ + "green beans" + ], + "en_answers": [ + "green beans" + ], + "count": 1 + }, + { + "answers": [ + "deviled eggs" + ], + "en_answers": [ + "deviled eggs" + ], + "count": 1 + }, + { + "answers": [ + "eggs" + ], + "en_answers": [ + "eggs" + ], + "count": 1 + }, + { + "answers": [ + "chocolate eggs" + ], + "en_answers": [ + "chocolate eggs" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-82": { + "question": "What is the most popular music genre among the elderly population in the US?", + "en_question": "What is the most popular music genre among the elderly population in your country?", + "annotations": [ + { + "answers": [ + "country" + ], + "en_answers": [ + "country" + ], + "count": 2 + }, + { + "answers": [ + "1960s rock" + ], + "en_answers": [ + "1960s rock" + ], + "count": 1 + }, + { + "answers": [ + "classic" + ], + "en_answers": [ + "classic" + ], + "count": 1 + }, + { + "answers": [ + "70s disco" + ], + "en_answers": [ + "70s disco" + ], + "count": 1 + }, + { + "answers": [ + "80s disco" + ], + "en_answers": [ + "80s disco" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-gr-88": { + "question": "What drink is usually offered at funerals in the US?", + "en_question": "What drink is usually offered at funerals in your country?", + "annotations": [ + { + "answers": [ + "water" + ], + "en_answers": [ + "water" + ], + "count": 1 + }, + { + "answers": [ + "soda" + ], + "en_answers": [ + "soda" + ], + "count": 1 + }, + { + "answers": [ + "coffee" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + }, + { + "answers": [ + "tea" + ], + "en_answers": [ + "tea" + ], + "count": 1 + }, + { + "answers": [ + "beer" + ], + "en_answers": [ + "beer" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 1 + } + }, + "New-gr-89": { + "question": "What drink is usually offered at weddings in the US?", + "en_question": "What drink is usually offered at weddings in your country?", + "annotations": [ + { + "answers": [ + "champagne" + ], + "en_answers": [ + "champagne" + ], + "count": 4 + }, + { + "answers": [ + "wine" + ], + "en_answers": [ + "wine" + ], + "count": 3 + }, + { + "answers": [ + "beer" + ], + "en_answers": [ + "beer" + ], + "count": 2 + }, + { + "answers": [ + "soft drinks", + "sodas" + ], + "en_answers": [ + "soft drinks", + "sodas" + ], + "count": 2 + }, + { + "answers": [ + "bellini" + ], + "en_answers": [ + "bellini" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-07": { + "question": "What food originated from the US and can be found all over the world?", + "en_question": "What food originated from your country and can be found all over the world?", + "annotations": [ + { + "answers": [ + "hamburgers", + "burgers" + ], + "en_answers": [ + "hamburgers", + "burgers" + ], + "count": 2 + }, + { + "answers": [ + "mcdonald's" + ], + "en_answers": [ + "mcdonald's" + ], + "count": 1 + }, + { + "answers": [ + "barbeque", + "barbecue", + "bbq" + ], + "en_answers": [ + "barbeque", + "barbecue", + "bbq" + ], + "count": 1 + }, + { + "answers": [ + "mac & cheese" + ], + "en_answers": [ + "mac & cheese" + ], + "count": 1 + }, + { + "answers": [ + "french fries", + "fries" + ], + "en_answers": [ + "french fries", + "fries" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ha-08": { + "question": "What food is typically disliked by children but enjoyed by the elderly in the US?", + "en_question": "What food is typically disliked by children but enjoyed by the elderly in your country?", + "annotations": [ + { + "answers": [ + "vegetables" + ], + "en_answers": [ + "vegetables" + ], + "count": 3 + }, + { + "answers": [ + "coffee" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + }, + { + "answers": [ + "soup" + ], + "en_answers": [ + "soup" + ], + "count": 1 + }, + { + "answers": [ + "asparagus" + ], + "en_answers": [ + "asparagus" + ], + "count": 1 + }, + { + "answers": [ + "fish" + ], + "en_answers": [ + "fish" + ], + "count": 1 + }, + { + "answers": [ + "sushi" + ], + "en_answers": [ + "sushi" + ], + "count": 1 + }, + { + "answers": [ + "oats" + ], + "en_answers": [ + "oats" + ], + "count": 1 + }, + { + "answers": [ + "healthy cereals" + ], + "en_answers": [ + "healthy cereals" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-09": { + "question": "What cooking utensil is most commonly used in the US?", + "en_question": "What cooking utensil is most commonly used in your country?", + "annotations": [ + { + "answers": [ + "spatula" + ], + "en_answers": [ + "spatula" + ], + "count": 3 + }, + { + "answers": [ + "air fryer" + ], + "en_answers": [ + "air fryer" + ], + "count": 1 + }, + { + "answers": [ + "whisk" + ], + "en_answers": [ + "whisk" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ha-13": { + "question": "Which is the most popular vegetable in the US?", + "en_question": "Which is the most popular vegetable in your country?", + "annotations": [ + { + "answers": [ + "potato" + ], + "en_answers": [ + "potato" + ], + "count": 1 + }, + { + "answers": [ + "broccoli" + ], + "en_answers": [ + "broccoli" + ], + "count": 1 + }, + { + "answers": [ + "corn" + ], + "en_answers": [ + "corn" + ], + "count": 1 + }, + { + "answers": [ + "peppers" + ], + "en_answers": [ + "peppers" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ha-19": { + "question": "Which animal is used for sports in the US?", + "en_question": "Which animal is used for sports in your country?", + "annotations": [ + { + "answers": [ + "horse", + "horses" + ], + "en_answers": [ + "horse", + "horses" + ], + "count": 3 + }, + { + "answers": [ + "dogs" + ], + "en_answers": [ + "dogs" + ], + "count": 1 + }, + { + "answers": [ + "bull" + ], + "en_answers": [ + "bull" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ha-66": { + "question": "What is the most popular wedding venue in the US?", + "en_question": "What is the most popular wedding venue in your country?", + "annotations": [ + { + "answers": [ + "church" + ], + "en_answers": [ + "church" + ], + "count": 2 + }, + { + "answers": [ + "beach" + ], + "en_answers": [ + "beach" + ], + "count": 1 + }, + { + "answers": [ + "las vegas", + "lv" + ], + "en_answers": [ + "las vegas", + "lv" + ], + "count": 1 + }, + { + "answers": [ + "silverado resort" + ], + "en_answers": [ + "silverado resort" + ], + "count": 1 + }, + { + "answers": [ + "ca", + "california" + ], + "en_answers": [ + "ca", + "california" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-in-01": { + "question": "Which coffee shop brand is the most popular in the US?", + "en_question": "Which coffee shop brand is the most popular in your country?", + "annotations": [ + { + "answers": [ + "starbucks" + ], + "en_answers": [ + "starbucks" + ], + "count": 4 + }, + { + "answers": [ + "dunkin'", + "dunkin", + "dunkin' donuts", + "dunkin donuts" + ], + "en_answers": [ + "dunkin'", + "dunkin", + "dunkin' donuts", + "dunkin donuts" + ], + "count": 2 + }, + { + "answers": [ + "coffee bean", + "coffee bean and tea leaf" + ], + "en_answers": [ + "coffee bean", + "coffee bean and tea leaf" + ], + "count": 1 + }, + { + "answers": [ + "tea leaf", + "coffee bean and tea leaf" + ], + "en_answers": [ + "tea leaf", + "coffee bean and tea leaf" + ], + "count": 1 + }, + { + "answers": [ + "blue bottle" + ], + "en_answers": [ + "blue bottle" + ], + "count": 1 + }, + { + "answers": [ + "dutch bros" + ], + "en_answers": [ + "dutch bros" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-03": { + "question": "What type of food from US is typically served in restaurants overseas?", + "en_question": "What type of food from your country is typically served in restaurants overseas?", + "annotations": [ + { + "answers": [ + "hamburgers", + "burgers" + ], + "en_answers": [ + "hamburgers", + "burgers" + ], + "count": 4 + }, + { + "answers": [ + "cheeseburger" + ], + "en_answers": [ + "cheeseburger" + ], + "count": 1 + }, + { + "answers": [ + "fried chicken" + ], + "en_answers": [ + "fried chicken" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-33": { + "question": "What region in the US is usually associated with mining?", + "en_question": "What region in your country is usually associated with mining?", + "annotations": [ + { + "answers": [ + "southern states" + ], + "en_answers": [ + "southern states" + ], + "count": 1 + }, + { + "answers": [ + "central states" + ], + "en_answers": [ + "central states" + ], + "count": 1 + }, + { + "answers": [ + "appalachia" + ], + "en_answers": [ + "appalachia" + ], + "count": 1 + }, + { + "answers": [ + "nevada", + "nv" + ], + "en_answers": [ + "nevada", + "nv" + ], + "count": 1 + }, + { + "answers": [ + "california", + "ca" + ], + "en_answers": [ + "california", + "ca" + ], + "count": 1 + }, + { + "answers": [ + "west" + ], + "en_answers": [ + "west" + ], + "count": 1 + }, + { + "answers": [ + "west virginia", + "wv" + ], + "en_answers": [ + "west virginia", + "wv" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-34": { + "question": "What region in the US is usually associated with oil?", + "en_question": "What region in your country is usually associated with oil?", + "annotations": [ + { + "answers": [ + "texas", + "tx" + ], + "en_answers": [ + "texas", + "tx" + ], + "count": 2 + }, + { + "answers": [ + "southwest", + "south west" + ], + "en_answers": [ + "southwest", + "south west" + ], + "count": 2 + }, + { + "answers": [ + "alaska", + "ak" + ], + "en_answers": [ + "alaska", + "ak" + ], + "count": 1 + }, + { + "answers": [ + "florida", + "fl" + ], + "en_answers": [ + "florida", + "fl" + ], + "count": 1 + }, + { + "answers": [ + "south" + ], + "en_answers": [ + "south" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-62": { + "question": "What university in the US is popular because of its engineering major? (Provide the official name.)", + "en_question": "What university in your country is popular because of its engineering major? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "massachusetts institute of technology", + "mit", + "massachusetts institute of technology (mit)" + ], + "en_answers": [ + "massachusetts institute of technology", + "mit", + "massachusetts institute of technology (mit)" + ], + "count": 4 + }, + { + "answers": [ + "caltech", + "california institute of technology" + ], + "en_answers": [ + "caltech", + "california institute of technology" + ], + "count": 2 + }, + { + "answers": [ + "texas a&m" + ], + "en_answers": [ + "texas a&m" + ], + "count": 1 + }, + { + "answers": [ + "stanford university" + ], + "en_answers": [ + "stanford university" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-in-63": { + "question": "What university in the US is popular because of its school of medicine? (Provide the official name.)", + "en_question": "What university in your country is popular because of its school of medicine? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "harvard", + "harvard medical school", + "harvard university" + ], + "en_answers": [ + "harvard", + "harvard medical school", + "harvard university" + ], + "count": 3 + }, + { + "answers": [ + "johns hopkins" + ], + "en_answers": [ + "johns hopkins" + ], + "count": 2 + }, + { + "answers": [ + "unc", + "university of north carolina" + ], + "en_answers": [ + "unc", + "university of north carolina" + ], + "count": 1 + }, + { + "answers": [ + "standford" + ], + "en_answers": [ + "standford" + ], + "count": 1 + }, + { + "answers": [ + "cornell university" + ], + "en_answers": [ + "cornell university" + ], + "count": 1 + }, + { + "answers": [ + "yale university" + ], + "en_answers": [ + "yale university" + ], + "count": 1 + }, + { + "answers": [ + "carnegie mellon", + "cmu" + ], + "en_answers": [ + "carnegie mellon", + "cmu" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-78": { + "question": "What is the most popular payment method in the US?", + "en_question": "What is the most popular payment method in your country?", + "annotations": [ + { + "answers": [ + "credit card", + "credit cards" + ], + "en_answers": [ + "credit card", + "credit cards" + ], + "count": 3 + }, + { + "answers": [ + "cash", + "cash or debit card" + ], + "en_answers": [ + "cash", + "cash or debit card" + ], + "count": 3 + }, + { + "answers": [ + "apple pay" + ], + "en_answers": [ + "apple pay" + ], + "count": 1 + }, + { + "answers": [ + "checks" + ], + "en_answers": [ + "checks" + ], + "count": 1 + }, + { + "answers": [ + "visa" + ], + "en_answers": [ + "visa" + ], + "count": 1 + }, + { + "answers": [ + "mastercard" + ], + "en_answers": [ + "mastercard" + ], + "count": 1 + }, + { + "answers": [ + "debit card", + "cash or debit card" + ], + "en_answers": [ + "debit card", + "cash or debit card" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-80": { + "question": "What is the most famous theme park in the US?", + "en_question": "What is the most famous theme park in your country?", + "annotations": [ + { + "answers": [ + "disney world", + "disneyworld" + ], + "en_answers": [ + "disney world", + "disneyworld" + ], + "count": 4 + }, + { + "answers": [ + "disneyland" + ], + "en_answers": [ + "disneyland" + ], + "count": 1 + }, + { + "answers": [ + "universal studios" + ], + "en_answers": [ + "universal studios" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-01": { + "question": "What is the most popular children's animation that is commonly watched by kids in the US?", + "en_question": "What is the most popular children's animation that is commonly watched by kids in your country?", + "annotations": [ + { + "answers": [ + "spongebob" + ], + "en_answers": [ + "spongebob" + ], + "count": 2 + }, + { + "answers": [ + "spongebob squarepants" + ], + "en_answers": [ + "spongebob squarepants" + ], + "count": 1 + }, + { + "answers": [ + "bluey" + ], + "en_answers": [ + "bluey" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ko-02": { + "question": "What is the most popular prenatal education activity for pregnant women in the US?", + "en_question": "What is the most popular prenatal education activity for pregnant women in your country?", + "annotations": [ + { + "answers": [ + "lamaze", + "lamazze" + ], + "en_answers": [ + "lamaze", + "lamazze" + ], + "count": 2 + }, + { + "answers": [ + "childbirth education classes" + ], + "en_answers": [ + "childbirth education classes" + ], + "count": 1 + }, + { + "answers": [ + "headphones on the belly bump" + ], + "en_answers": [ + "headphones on the belly bump" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ko-03": { + "question": "What is the most popular children's song in the US that families sing together?", + "en_question": "What is the most popular children's song in your country that families sing together?", + "annotations": [ + { + "answers": [ + "twinkle twinkle little star", + "twinkle", + "little star", + "twinkle little star" + ], + "en_answers": [ + "twinkle twinkle little star", + "twinkle", + "little star", + "twinkle little star" + ], + "count": 3 + }, + { + "answers": [ + "wheels on the bus" + ], + "en_answers": [ + "wheels on the bus" + ], + "count": 1 + }, + { + "answers": [ + "itsy bitsy spider" + ], + "en_answers": [ + "itsy bitsy spider" + ], + "count": 1 + }, + { + "answers": [ + "london bridges" + ], + "en_answers": [ + "london bridges" + ], + "count": 1 + }, + { + "answers": [ + "happy birthday" + ], + "en_answers": [ + "happy birthday" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-04": { + "question": "Which toys are most popular among boys in the US?", + "en_question": "Which toys are most popular among boys in your country?", + "annotations": [ + { + "answers": [ + "video games" + ], + "en_answers": [ + "video games" + ], + "count": 2 + }, + { + "answers": [ + "action figures" + ], + "en_answers": [ + "action figures" + ], + "count": 1 + }, + { + "answers": [ + "water guns" + ], + "en_answers": [ + "water guns" + ], + "count": 1 + }, + { + "answers": [ + "swords" + ], + "en_answers": [ + "swords" + ], + "count": 1 + }, + { + "answers": [ + "balls" + ], + "en_answers": [ + "balls" + ], + "count": 1 + }, + { + "answers": [ + "sports toys" + ], + "en_answers": [ + "sports toys" + ], + "count": 1 + }, + { + "answers": [ + "cars" + ], + "en_answers": [ + "cars" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-05": { + "question": "Which toys are most popular among girls in the US?", + "en_question": "Which toys are most popular among girls in your country?", + "annotations": [ + { + "answers": [ + "barbie", + "barbie / dolls", + "barbies" + ], + "en_answers": [ + "barbie", + "barbie / dolls", + "barbies" + ], + "count": 3 + }, + { + "answers": [ + "dolls" + ], + "en_answers": [ + "dolls" + ], + "count": 2 + }, + { + "answers": [ + "dolls", + "barbie / dolls" + ], + "en_answers": [ + "dolls", + "barbie / dolls" + ], + "count": 1 + }, + { + "answers": [ + "baby dolls" + ], + "en_answers": [ + "baby dolls" + ], + "count": 1 + }, + { + "answers": [ + "hair design" + ], + "en_answers": [ + "hair design" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-06": { + "question": "What is the most popular folk tale in the US that is typically told to children?", + "en_question": "What is the most popular folk tale in your country that is typically told to children?", + "annotations": [ + { + "answers": [ + "paul bunyon", + "paul bunyan", + "paul bunion" + ], + "en_answers": [ + "paul bunyon", + "paul bunyan", + "paul bunion" + ], + "count": 3 + }, + { + "answers": [ + "pilgrims preparing stone soup" + ], + "en_answers": [ + "pilgrims preparing stone soup" + ], + "count": 1 + }, + { + "answers": [ + "the night before christmas" + ], + "en_answers": [ + "the night before christmas" + ], + "count": 1 + }, + { + "answers": [ + "pecos bill" + ], + "en_answers": [ + "pecos bill" + ], + "count": 1 + }, + { + "answers": [ + "santa claus" + ], + "en_answers": [ + "santa claus" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-07": { + "question": "What is the customary symbol of condolence used at funerals in the US?", + "en_question": "What is the customary symbol of condolence used at funerals in your country?", + "annotations": [ + { + "answers": [ + "flowers" + ], + "en_answers": [ + "flowers" + ], + "count": 4 + }, + { + "answers": [ + "cards" + ], + "en_answers": [ + "cards" + ], + "count": 1 + }, + { + "answers": [ + "lilies" + ], + "en_answers": [ + "lilies" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-08": { + "question": "Where do university students in the US tend to work part-time the most?", + "en_question": "Where do university students in your country tend to work part-time the most?", + "annotations": [ + { + "answers": [ + "restaurants", + "resturants" + ], + "en_answers": [ + "restaurants", + "resturants" + ], + "count": 3 + }, + { + "answers": [ + "retail" + ], + "en_answers": [ + "retail" + ], + "count": 2 + }, + { + "answers": [ + "on campus" + ], + "en_answers": [ + "on campus" + ], + "count": 1 + }, + { + "answers": [ + "barista" + ], + "en_answers": [ + "barista" + ], + "count": 1 + }, + { + "answers": [ + "school store" + ], + "en_answers": [ + "school store" + ], + "count": 1 + }, + { + "answers": [ + "fast food establishments" + ], + "en_answers": [ + "fast food establishments" + ], + "count": 1 + }, + { + "answers": [ + "nanny" + ], + "en_answers": [ + "nanny" + ], + "count": 1 + }, + { + "answers": [ + "babysitting" + ], + "en_answers": [ + "babysitting" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-09": { + "question": "What are the most frequently practiced team-building activities in companies based in the US?", + "en_question": "What are the most frequently practiced team-building activities in companies based in your country?", + "annotations": [ + { + "answers": [ + "playing games", + "games" + ], + "en_answers": [ + "playing games", + "games" + ], + "count": 2 + }, + { + "answers": [ + "scavenger hunts" + ], + "en_answers": [ + "scavenger hunts" + ], + "count": 1 + }, + { + "answers": [ + "interactive meetings" + ], + "en_answers": [ + "interactive meetings" + ], + "count": 1 + }, + { + "answers": [ + "escape room" + ], + "en_answers": [ + "escape room" + ], + "count": 1 + }, + { + "answers": [ + "geocaching" + ], + "en_answers": [ + "geocaching" + ], + "count": 1 + }, + { + "answers": [ + "trust falls" + ], + "en_answers": [ + "trust falls" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ko-10": { + "question": "What are the most common activities people do as a side job in the US?", + "en_question": "What are the most common activities people do as a side job in your country?", + "annotations": [ + { + "answers": [ + "uber", + "uber driver" + ], + "en_answers": [ + "uber", + "uber driver" + ], + "count": 3 + }, + { + "answers": [ + "social media influencer" + ], + "en_answers": [ + "social media influencer" + ], + "count": 1 + }, + { + "answers": [ + "mlm", + "multi-level marketing" + ], + "en_answers": [ + "mlm", + "multi-level marketing" + ], + "count": 1 + }, + { + "answers": [ + "postmates" + ], + "en_answers": [ + "postmates" + ], + "count": 1 + }, + { + "answers": [ + "instacart" + ], + "en_answers": [ + "instacart" + ], + "count": 1 + }, + { + "answers": [ + "some type of sales", + "sales" + ], + "en_answers": [ + "some type of sales", + "sales" + ], + "count": 1 + }, + { + "answers": [ + "wait tables", + "waiter" + ], + "en_answers": [ + "wait tables", + "waiter" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-02": { + "question": "What is the most famous edible souvenir for tourists in the US?", + "en_question": "What is the most famous edible souvenir for tourists in your country?", + "annotations": [ + { + "answers": [ + "corn dog" + ], + "en_answers": [ + "corn dog" + ], + "count": 1 + }, + { + "answers": [ + "candy bars like milky ay" + ], + "en_answers": [ + "candy bars like milky ay" + ], + "count": 1 + }, + { + "answers": [ + "hamburgers", + "burgers" + ], + "en_answers": [ + "hamburgers", + "burgers" + ], + "count": 1 + }, + { + "answers": [ + "chips" + ], + "en_answers": [ + "chips" + ], + "count": 1 + }, + { + "answers": [ + "popcorn" + ], + "en_answers": [ + "popcorn" + ], + "count": 1 + }, + { + "answers": [ + "cotton candy" + ], + "en_answers": [ + "cotton candy" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not-applicable": 2, + "no-answer": 0 + } + }, + "New-pe-06": { + "question": "What is the most popular stew in the US?", + "en_question": "What is the most popular stew in your country?", + "annotations": [ + { + "answers": [ + "beef stew", + "beef" + ], + "en_answers": [ + "beef stew", + "beef" + ], + "count": 2 + }, + { + "answers": [ + "chili" + ], + "en_answers": [ + "chili" + ], + "count": 1 + }, + { + "answers": [ + "gumbo (cajun style)", + "gumbo" + ], + "en_answers": [ + "gumbo (cajun style)", + "gumbo" + ], + "count": 1 + }, + { + "answers": [ + "chicken stew" + ], + "en_answers": [ + "chicken stew" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-pe-11": { + "question": "What is the most common spice/herb used in dishes from US?", + "en_question": "What is the most common spice/herb used in dishes from your country?", + "annotations": [ + { + "answers": [ + "black pepper" + ], + "en_answers": [ + "black pepper" + ], + "count": 2 + }, + { + "answers": [ + "onion powder" + ], + "en_answers": [ + "onion powder" + ], + "count": 1 + }, + { + "answers": [ + "paprika" + ], + "en_answers": [ + "paprika" + ], + "count": 1 + }, + { + "answers": [ + "pepper" + ], + "en_answers": [ + "pepper" + ], + "count": 1 + }, + { + "answers": [ + "salt" + ], + "en_answers": [ + "salt" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-pe-16": { + "question": "What is the most famous traditional sport in the US?", + "en_question": "What is the most famous traditional sport in your country?", + "annotations": [ + { + "answers": [ + "football", + "american football" + ], + "en_answers": [ + "football", + "american football" + ], + "count": 5 + }, + { + "answers": [ + "baseball" + ], + "en_answers": [ + "baseball" + ], + "count": 4 + }, + { + "answers": [ + "basketball" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "soccer", + "international football" + ], + "en_answers": [ + "soccer", + "international football" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-20": { + "question": "What sport is popular to play on the beach in the US?", + "en_question": "What sport is popular to play on the beach in your country?", + "annotations": [ + { + "answers": [ + "volleyball", + "volley ball" + ], + "en_answers": [ + "volleyball", + "volley ball" + ], + "count": 5 + }, + { + "answers": [ + "football", + "american football" + ], + "en_answers": [ + "football", + "american football" + ], + "count": 2 + }, + { + "answers": [ + "frisbee" + ], + "en_answers": [ + "frisbee" + ], + "count": 1 + }, + { + "answers": [ + "catch" + ], + "en_answers": [ + "catch" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-45": { + "question": "What is the usual work schedule during the month of Ramadan in the US?", + "en_question": "What is the usual work schedule during the month of Ramadan in your country?", + "annotations": [ + { + "answers": [ + "9:00 - 17:00 monday - friday" + ], + "en_answers": [ + "9:00 - 17:00 monday - friday" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "no-answer": 2, + "idk": 0 + } + }, + "New-pe-47": { + "question": "When is Student's Day celebrated in the US? (Provide in MM/DD format (e.g., 12/31).)", + "en_question": "When is Student's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [], + "idks": { + "idk": 5, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-pe-49": { + "question": "Where do families gather to pray together in the US?", + "en_question": "Where do families gather to pray together in your country?", + "annotations": [ + { + "answers": [ + "church" + ], + "en_answers": [ + "church" + ], + "count": 5 + }, + { + "answers": [ + "home" + ], + "en_answers": [ + "home" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-53": { + "question": "What gifts do fathers get on Father's Day (or Parents' Day) in the US?", + "en_question": "What gifts do fathers get on Father's Day (or Parents' Day) in your country?", + "annotations": [ + { + "answers": [ + "tools", + "gear" + ], + "en_answers": [ + "tools", + "gear" + ], + "count": 2 + }, + { + "answers": [ + "food" + ], + "en_answers": [ + "food" + ], + "count": 2 + }, + { + "answers": [ + "photos" + ], + "en_answers": [ + "photos" + ], + "count": 1 + }, + { + "answers": [ + "wallet" + ], + "en_answers": [ + "wallet" + ], + "count": 1 + }, + { + "answers": [ + "belt" + ], + "en_answers": [ + "belt" + ], + "count": 1 + }, + { + "answers": [ + "clothes" + ], + "en_answers": [ + "clothes" + ], + "count": 1 + }, + { + "answers": [ + "electronics" + ], + "en_answers": [ + "electronics" + ], + "count": 1 + }, + { + "answers": [ + "bbq related items", + "barbeque related items" + ], + "en_answers": [ + "bbq related items", + "barbeque related items" + ], + "count": 1 + }, + { + "answers": [ + "car related items" + ], + "en_answers": [ + "car related items" + ], + "count": 1 + }, + { + "answers": [ + "lawn care related items" + ], + "en_answers": [ + "lawn care related items" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-54": { + "question": "What gifts do mothers get on Mother's Day (or Parents' Day) in the US?", + "en_question": "What gifts do mothers get on Mother's Day (or Parents' Day) in your country?", + "annotations": [ + { + "answers": [ + "flowers" + ], + "en_answers": [ + "flowers" + ], + "count": 5 + }, + { + "answers": [ + "dinner", + "taken to a restaurant", + "taken to a resturant" + ], + "en_answers": [ + "dinner", + "taken to a restaurant", + "taken to a resturant" + ], + "count": 2 + }, + { + "answers": [ + "clothing" + ], + "en_answers": [ + "clothing" + ], + "count": 1 + }, + { + "answers": [ + "jewelry" + ], + "en_answers": [ + "jewelry" + ], + "count": 1 + }, + { + "answers": [ + "chocolates" + ], + "en_answers": [ + "chocolates" + ], + "count": 1 + }, + { + "answers": [ + "perfume" + ], + "en_answers": [ + "perfume" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-59": { + "question": "How many generations typically live together in a household in the US? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "How many generations typically live together in a household in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-pe-65": { + "question": "How many subjects are taught in middle schools in the US? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "How many subjects are taught in middle schools in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 3 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-66": { + "question": "What is the most popular after school curricular in elementary schools in the US?", + "en_question": "What is the most popular after school curricular in elementary schools in your country?", + "annotations": [ + { + "answers": [ + "sports", + "soccer / sports", + "sports programs", + "athletics" + ], + "en_answers": [ + "sports", + "soccer / sports", + "sports programs", + "athletics" + ], + "count": 4 + }, + { + "answers": [ + "soccer", + "soccer / sports", + "international football" + ], + "en_answers": [ + "soccer", + "soccer / sports", + "international football" + ], + "count": 2 + }, + { + "answers": [ + "art programs" + ], + "en_answers": [ + "art programs" + ], + "count": 1 + }, + { + "answers": [ + "stem programs", + "steam programs" + ], + "en_answers": [ + "stem programs", + "steam programs" + ], + "count": 1 + }, + { + "answers": [ + "theater" + ], + "en_answers": [ + "theater" + ], + "count": 1 + }, + { + "answers": [ + "music", + "music and performing act" + ], + "en_answers": [ + "music", + "music and performing act" + ], + "count": 1 + }, + { + "answers": [ + "performing arts", + "music and performing act" + ], + "en_answers": [ + "performing arts", + "music and performing act" + ], + "count": 1 + }, + { + "answers": [ + "art and craft" + ], + "en_answers": [ + "art and craft" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-74": { + "question": "How much is the average annual tuition fee for public universities in the US?", + "en_question": "How much is the average annual tuition fee for public universities in your country?", + "annotations": [ + { + "answers": [ + "30k", + "30" + ], + "en_answers": [ + "30k", + "30" + ], + "count": 2 + }, + { + "answers": [ + "26" + ], + "en_answers": [ + "26" + ], + "count": 1 + }, + { + "answers": [ + "290" + ], + "en_answers": [ + "290" + ], + "count": 1 + }, + { + "answers": [ + "000" + ], + "en_answers": [ + "000" + ], + "count": 1 + }, + { + "answers": [ + "10000" + ], + "en_answers": [ + "10000" + ], + "count": 1 + }, + { + "answers": [ + "20000" + ], + "en_answers": [ + "20000" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-pe-76": { + "question": "What is a popular activity to do in parks in the US?", + "en_question": "What is a popular activity to do in parks in your country?", + "annotations": [ + { + "answers": [ + "picnic", + "picnicking" + ], + "en_answers": [ + "picnic", + "picnicking" + ], + "count": 3 + }, + { + "answers": [ + "frisbee" + ], + "en_answers": [ + "frisbee" + ], + "count": 3 + }, + { + "answers": [ + "ball sports" + ], + "en_answers": [ + "ball sports" + ], + "count": 1 + }, + { + "answers": [ + "walk dog", + "dog walking" + ], + "en_answers": [ + "walk dog", + "dog walking" + ], + "count": 1 + }, + { + "answers": [ + "hike" + ], + "en_answers": [ + "hike" + ], + "count": 1 + }, + { + "answers": [ + "camp", + "camping" + ], + "en_answers": [ + "camp", + "camping" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-78": { + "question": "What is the name of the most famous film festival held in the US?", + "en_question": "What is the name of the most famous film festival held in your country?", + "annotations": [ + { + "answers": [ + "sundance", + "sundance film festival" + ], + "en_answers": [ + "sundance", + "sundance film festival" + ], + "count": 3 + }, + { + "answers": [ + "tribeca" + ], + "en_answers": [ + "tribeca" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-83": { + "question": "What is the popular card game played during social gatherings in the US?", + "en_question": "What is the popular card game played during social gatherings in your country?", + "annotations": [ + { + "answers": [ + "poker", + "porker" + ], + "en_answers": [ + "poker", + "porker" + ], + "count": 3 + }, + { + "answers": [ + "rummy" + ], + "en_answers": [ + "rummy" + ], + "count": 1 + }, + { + "answers": [ + "uno" + ], + "en_answers": [ + "uno" + ], + "count": 1 + }, + { + "answers": [ + "card against humanity" + ], + "en_answers": [ + "card against humanity" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-pe-85": { + "question": "Where is the most popular tourist destination abroad for people from US?", + "en_question": "Where is the most popular tourist destination abroad for people from your country?", + "annotations": [ + { + "answers": [ + "mexico" + ], + "en_answers": [ + "mexico" + ], + "count": 2 + }, + { + "answers": [ + "paris" + ], + "en_answers": [ + "paris" + ], + "count": 2 + }, + { + "answers": [ + "italy" + ], + "en_answers": [ + "italy" + ], + "count": 1 + }, + { + "answers": [ + "london" + ], + "en_answers": [ + "london" + ], + "count": 1 + }, + { + "answers": [ + "uk", + "united kingdom" + ], + "en_answers": [ + "uk", + "united kingdom" + ], + "count": 1 + }, + { + "answers": [ + "yucatan" + ], + "en_answers": [ + "yucatan" + ], + "count": 1 + }, + { + "answers": [ + "europe" + ], + "en_answers": [ + "europe" + ], + "count": 1 + }, + { + "answers": [ + "califonia", + "ca" + ], + "en_answers": [ + "califonia", + "ca" + ], + "count": 1 + }, + { + "answers": [ + "the statue of liberty", + "lady liberty" + ], + "en_answers": [ + "the statue of liberty", + "lady liberty" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-86": { + "question": "What is the name of the most famous tower in the US?", + "en_question": "What is the name of the most famous tower in your country?", + "annotations": [ + { + "answers": [ + "empire state building" + ], + "en_answers": [ + "empire state building" + ], + "count": 2 + }, + { + "answers": [ + "twin towers" + ], + "en_answers": [ + "twin towers" + ], + "count": 1 + }, + { + "answers": [ + "world trade center" + ], + "en_answers": [ + "world trade center" + ], + "count": 1 + }, + { + "answers": [ + "the sears tower" + ], + "en_answers": [ + "the sears tower" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-01": { + "question": "What edible insect is eaten most often in the US?", + "en_question": "What edible insect is eaten most often in your country?", + "annotations": [ + { + "answers": [ + "crickets" + ], + "en_answers": [ + "crickets" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 1, + "no-answer": 0 + } + }, + "New-spme-04": { + "question": "Which agricultural product is exported most often in the US?", + "en_question": "Which agricultural product is exported most often in your country?", + "annotations": [ + { + "answers": [ + "corn" + ], + "en_answers": [ + "corn" + ], + "count": 3 + }, + { + "answers": [ + "soybeans", + "soy beans" + ], + "en_answers": [ + "soybeans", + "soy beans" + ], + "count": 3 + }, + { + "answers": [ + "sugar" + ], + "en_answers": [ + "sugar" + ], + "count": 1 + }, + { + "answers": [ + "wheat" + ], + "en_answers": [ + "wheat" + ], + "count": 1 + }, + { + "answers": [ + "cotton" + ], + "en_answers": [ + "cotton" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-05": { + "question": "What are the most popular sweets in the US?", + "en_question": "What are the most popular sweets in your country?", + "annotations": [ + { + "answers": [ + "chocolate candy", + "chocolate" + ], + "en_answers": [ + "chocolate candy", + "chocolate" + ], + "count": 2 + }, + { + "answers": [ + "soda", + "soft drink" + ], + "en_answers": [ + "soda", + "soft drink" + ], + "count": 1 + }, + { + "answers": [ + "candy" + ], + "en_answers": [ + "candy" + ], + "count": 1 + }, + { + "answers": [ + "hershey's" + ], + "en_answers": [ + "hershey's" + ], + "count": 1 + }, + { + "answers": [ + "reese's", + "receese", + "resse's puffs" + ], + "en_answers": [ + "reese's", + "receese", + "resse's puffs" + ], + "count": 1 + }, + { + "answers": [ + "cookies" + ], + "en_answers": [ + "cookies" + ], + "count": 1 + }, + { + "answers": [ + "tart candies" + ], + "en_answers": [ + "tart candies" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-spme-15": { + "question": "What is the most popular sports drink in the US?", + "en_question": "What is the most popular sports drink in your country?", + "annotations": [ + { + "answers": [ + "gatorade" + ], + "en_answers": [ + "gatorade" + ], + "count": 5 + }, + { + "answers": [ + "powerade" + ], + "en_answers": [ + "powerade" + ], + "count": 1 + }, + { + "answers": [ + "red bull" + ], + "en_answers": [ + "red bull" + ], + "count": 1 + }, + { + "answers": [ + "monster" + ], + "en_answers": [ + "monster" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-27": { + "question": "What is the average education level for people in the US?", + "en_question": "What is the average education level for people in your country?", + "annotations": [ + { + "answers": [ + "high school", + "highschool", + "highschool diploma" + ], + "en_answers": [ + "high school", + "highschool", + "highschool diploma" + ], + "count": 4 + }, + { + "answers": [ + "associates" + ], + "en_answers": [ + "associates" + ], + "count": 1 + }, + { + "answers": [ + "college" + ], + "en_answers": [ + "college" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-37": { + "question": "Which profession is most commonly studied abroad by students from the US?", + "en_question": "Which profession is most commonly studied abroad by students from your country?", + "annotations": [ + { + "answers": [ + "finance" + ], + "en_answers": [ + "finance" + ], + "count": 2 + }, + { + "answers": [ + "politics" + ], + "en_answers": [ + "politics" + ], + "count": 1 + }, + { + "answers": [ + "law" + ], + "en_answers": [ + "law" + ], + "count": 1 + }, + { + "answers": [ + "it", + "it tech", + "information technology" + ], + "en_answers": [ + "it", + "it tech", + "information technology" + ], + "count": 1 + }, + { + "answers": [ + "business" + ], + "en_answers": [ + "business" + ], + "count": 1 + }, + { + "answers": [ + "engineering" + ], + "en_answers": [ + "engineering" + ], + "count": 1 + }, + { + "answers": [ + "mathematics", + "math" + ], + "en_answers": [ + "mathematics", + "math" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-60": { + "question": "Which day of the week do most families in the US practice religious activities? (e.g. Monday, Tuesday)", + "en_question": "Which day of the week do most families in your country practice religious activities? (e.g. Monday, Tuesday)", + "annotations": [ + { + "answers": [ + "sunday", + "sundays" + ], + "en_answers": [ + "sunday", + "sundays" + ], + "count": 5 + }, + { + "answers": [ + "wednesday" + ], + "en_answers": [ + "wednesday" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-65": { + "question": "What is the most popular way to celebrate Independence Day in the US?", + "en_question": "What is the most popular way to celebrate Independence Day in your country?", + "annotations": [ + { + "answers": [ + "fireworks" + ], + "en_answers": [ + "fireworks" + ], + "count": 4 + }, + { + "answers": [ + "bbq", + "cookout", + "barbeque" + ], + "en_answers": [ + "bbq", + "cookout", + "barbeque" + ], + "count": 2 + }, + { + "answers": [ + "parade" + ], + "en_answers": [ + "parade" + ], + "count": 2 + }, + { + "answers": [ + "grilled meat" + ], + "en_answers": [ + "grilled meat" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-68": { + "question": "What is the most popular beverage among children in the US?", + "en_question": "What is the most popular beverage among children in your country?", + "annotations": [ + { + "answers": [ + "milk" + ], + "en_answers": [ + "milk" + ], + "count": 1 + }, + { + "answers": [ + "coca-cola", + "coca cola" + ], + "en_answers": [ + "coca-cola", + "coca cola" + ], + "count": 1 + }, + { + "answers": [ + "apple juice" + ], + "en_answers": [ + "apple juice" + ], + "count": 1 + }, + { + "answers": [ + "soda", + "soft drink" + ], + "en_answers": [ + "soda", + "soft drink" + ], + "count": 1 + }, + { + "answers": [ + "juice" + ], + "en_answers": [ + "juice" + ], + "count": 1 + }, + { + "answers": [ + "water" + ], + "en_answers": [ + "water" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-spme-76": { + "question": "What is the most popular place in the US to celebrate the Independence Day?", + "en_question": "What is the most popular place in your country to celebrate Independence Day?", + "annotations": [ + { + "answers": [ + "concerts" + ], + "en_answers": [ + "concerts" + ], + "count": 1 + }, + { + "answers": [ + "fireworks displays" + ], + "en_answers": [ + "fireworks displays" + ], + "count": 1 + }, + { + "answers": [ + "home" + ], + "en_answers": [ + "home" + ], + "count": 1 + }, + { + "answers": [ + "city" + ], + "en_answers": [ + "city" + ], + "count": 1 + }, + { + "answers": [ + "country" + ], + "en_answers": [ + "country" + ], + "count": 1 + }, + { + "answers": [ + "backyard" + ], + "en_answers": [ + "backyard" + ], + "count": 1 + }, + { + "answers": [ + "open field" + ], + "en_answers": [ + "open field" + ], + "count": 1 + }, + { + "answers": [ + "streets" + ], + "en_answers": [ + "streets" + ], + "count": 1 + }, + { + "answers": [ + "washington d.c.", + "dc" + ], + "en_answers": [ + "washington d.c.", + "dc" + ], + "count": 1 + }, + { + "answers": [ + "new york", + "ny" + ], + "en_answers": [ + "new york", + "ny" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-78": { + "question": "What is the name of the song that is typically sung at birthday parties in the US?", + "en_question": "What is the name of the song that is typically sung at birthday parties in your country?", + "annotations": [ + { + "answers": [ + "happy birthday to you", + "happy birthday", + "happy birthday song", + "birthday song" + ], + "en_answers": [ + "happy birthday to you", + "happy birthday", + "happy birthday song", + "birthday song" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-01": { + "question": "What snacks are usually sold in front of schools in the US?", + "en_question": "What snacks are usually sold in front of schools in your country?", + "annotations": [ + { + "answers": [ + "chips" + ], + "en_answers": [ + "chips" + ], + "count": 1 + }, + { + "answers": [ + "crunch" + ], + "en_answers": [ + "crunch" + ], + "count": 1 + }, + { + "answers": [ + "snowcones" + ], + "en_answers": [ + "snowcones" + ], + "count": 1 + }, + { + "answers": [ + "m&m" + ], + "en_answers": [ + "m&m" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 0, + "no-answer": 0 + } + }, + "New-su-09": { + "question": "What oil is usually used for cooking in the US?", + "en_question": "What oil is usually used for cooking in your country?", + "annotations": [ + { + "answers": [ + "olive oil" + ], + "en_answers": [ + "olive oil" + ], + "count": 3 + }, + { + "answers": [ + "vegetable oil" + ], + "en_answers": [ + "vegetable oil" + ], + "count": 2 + }, + { + "answers": [ + "sunflower" + ], + "en_answers": [ + "sunflower" + ], + "count": 1 + }, + { + "answers": [ + "canola" + ], + "en_answers": [ + "canola" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-10": { + "question": "What food is commonly consumed by pregnant women in the US?", + "en_question": "What food is commonly consumed by pregnant women in your country?", + "annotations": [ + { + "answers": [ + "fish" + ], + "en_answers": [ + "fish" + ], + "count": 2 + }, + { + "answers": [ + "leafy greens" + ], + "en_answers": [ + "leafy greens" + ], + "count": 1 + }, + { + "answers": [ + "dairy" + ], + "en_answers": [ + "dairy" + ], + "count": 1 + }, + { + "answers": [ + "ice cream" + ], + "en_answers": [ + "ice cream" + ], + "count": 1 + }, + { + "answers": [ + "vegetables" + ], + "en_answers": [ + "vegetables" + ], + "count": 1 + }, + { + "answers": [ + "pickles" + ], + "en_answers": [ + "pickles" + ], + "count": 1 + }, + { + "answers": [ + "chocolate" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + }, + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + }, + { + "answers": [ + "gummies" + ], + "en_answers": [ + "gummies" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-15": { + "question": "What is the most popular traditional non-alcoholic drink in the US?", + "en_question": "What is the most popular traditional non-alcoholic drink in your country?", + "annotations": [ + { + "answers": [ + "coffee" + ], + "en_answers": [ + "coffee" + ], + "count": 2 + }, + { + "answers": [ + "tea" + ], + "en_answers": [ + "tea" + ], + "count": 2 + }, + { + "answers": [ + "sports drinks" + ], + "en_answers": [ + "sports drinks" + ], + "count": 1 + }, + { + "answers": [ + "coke" + ], + "en_answers": [ + "coke" + ], + "count": 1 + }, + { + "answers": [ + "monster", + "coca-cola" + ], + "en_answers": [ + "monster", + "coca-cola" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "New-su-17": { + "question": "What sports facilities are generally available in parks in the US?", + "en_question": "What sports facilities are generally available in parks in your country?", + "annotations": [ + { + "answers": [ + "basketball court", + "basketball" + ], + "en_answers": [ + "basketball court", + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "football field", + "football", + "american football field" + ], + "en_answers": [ + "football field", + "football", + "american football field" + ], + "count": 2 + }, + { + "answers": [ + "baseball fields", + "baseball" + ], + "en_answers": [ + "baseball fields", + "baseball" + ], + "count": 2 + }, + { + "answers": [ + "tennis courts", + "tennis" + ], + "en_answers": [ + "tennis courts", + "tennis" + ], + "count": 2 + }, + { + "answers": [ + "jogging trail" + ], + "en_answers": [ + "jogging trail" + ], + "count": 1 + }, + { + "answers": [ + "field" + ], + "en_answers": [ + "field" + ], + "count": 1 + }, + { + "answers": [ + "soccer goals" + ], + "en_answers": [ + "soccer goals" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-21": { + "question": "What are the common activities that seniors usually do in parks in the US?", + "en_question": "What are the common activities that seniors usually do in parks in your country?", + "annotations": [ + { + "answers": [ + "walk", + "walking" + ], + "en_answers": [ + "walk", + "walking" + ], + "count": 5 + }, + { + "answers": [ + "dog walking", + "walk dog" + ], + "en_answers": [ + "dog walking", + "walk dog" + ], + "count": 1 + }, + { + "answers": [ + "take grandkids" + ], + "en_answers": [ + "take grandkids" + ], + "count": 1 + }, + { + "answers": [ + "sports" + ], + "en_answers": [ + "sports" + ], + "count": 1 + }, + { + "answers": [ + "resting" + ], + "en_answers": [ + "resting" + ], + "count": 1 + }, + { + "answers": [ + "sit on bench" + ], + "en_answers": [ + "sit on bench" + ], + "count": 1 + }, + { + "answers": [ + "jogging" + ], + "en_answers": [ + "jogging" + ], + "count": 1 + }, + { + "answers": [ + "picnicking" + ], + "en_answers": [ + "picnicking" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-24": { + "question": "What sports do parents and children commonly play together in the US?", + "en_question": "What sports do parents and children commonly play together in your country?", + "annotations": [ + { + "answers": [ + "soccer", + "international football" + ], + "en_answers": [ + "soccer", + "international football" + ], + "count": 2 + }, + { + "answers": [ + "basketball" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "football", + "american football" + ], + "en_answers": [ + "football", + "american football" + ], + "count": 1 + }, + { + "answers": [ + "baseball" + ], + "en_answers": [ + "baseball" + ], + "count": 1 + }, + { + "answers": [ + "tennis" + ], + "en_answers": [ + "tennis" + ], + "count": 1 + }, + { + "answers": [ + "golf" + ], + "en_answers": [ + "golf" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-28": { + "question": "What color is associated with the national soccer team of the US?", + "en_question": "What color is associated with the national soccer team of your country?", + "annotations": [ + { + "answers": [ + "blue" + ], + "en_answers": [ + "blue" + ], + "count": 3 + }, + { + "answers": [ + "red" + ], + "en_answers": [ + "red" + ], + "count": 2 + }, + { + "answers": [ + "white" + ], + "en_answers": [ + "white" + ], + "count": 2 + } + ], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-33": { + "question": "What is the common dress code for school teachers in the US?", + "en_question": "What is the common dress code for school teachers in your country?", + "annotations": [ + { + "answers": [ + "formal" + ], + "en_answers": [ + "formal" + ], + "count": 1 + }, + { + "answers": [ + "professional casual" + ], + "en_answers": [ + "professional casual" + ], + "count": 1 + }, + { + "answers": [ + "casual" + ], + "en_answers": [ + "casual" + ], + "count": 1 + }, + { + "answers": [ + "business casual" + ], + "en_answers": [ + "business casual" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-34": { + "question": "What is the most popular extracurricular activity related to music in schools in the US?", + "en_question": "What is the most popular extracurricular activity related to music in schools in your country?", + "annotations": [ + { + "answers": [ + "band class", + "band" + ], + "en_answers": [ + "band class", + "band" + ], + "count": 2 + }, + { + "answers": [ + "parade" + ], + "en_answers": [ + "parade" + ], + "count": 1 + }, + { + "answers": [ + "chorus" + ], + "en_answers": [ + "chorus" + ], + "count": 1 + }, + { + "answers": [ + "marching band" + ], + "en_answers": [ + "marching band" + ], + "count": 1 + }, + { + "answers": [ + "choir" + ], + "en_answers": [ + "choir" + ], + "count": 1 + }, + { + "answers": [ + "orchestras" + ], + "en_answers": [ + "orchestras" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-42": { + "question": "What religion is mainly taught in schools in the US?", + "en_question": "What religion is mainly taught in schools in your country?", + "annotations": [ + { + "answers": [ + "christianity" + ], + "en_answers": [ + "christianity" + ], + "count": 2 + }, + { + "answers": [ + "catholic" + ], + "en_answers": [ + "catholic" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "no-answer": 1, + "idk": 0 + } + }, + "New-su-45": { + "question": "What date is Education Day celebrated in the US? (Provide in MM/DD format (e.g., 12/31).)", + "en_question": "What date is Education Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "04/19" + ], + "en_answers": [ + "04/19" + ], + "count": 1 + } + ], + "idks": { + "idk": 6, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-su-50": { + "question": "What is the main occupation of people in mountainous areas in the US?", + "en_question": "What is the main occupation of people in mountainous areas in your country?", + "annotations": [ + { + "answers": [ + "ski resort workers" + ], + "en_answers": [ + "ski resort workers" + ], + "count": 1 + }, + { + "answers": [ + "hiking guides" + ], + "en_answers": [ + "hiking guides" + ], + "count": 1 + }, + { + "answers": [ + "mining" + ], + "en_answers": [ + "mining" + ], + "count": 1 + }, + { + "answers": [ + "forest rangers" + ], + "en_answers": [ + "forest rangers" + ], + "count": 1 + }, + { + "answers": [ + "park ranger" + ], + "en_answers": [ + "park ranger" + ], + "count": 1 + }, + { + "answers": [ + "instructor" + ], + "en_answers": [ + "instructor" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-51": { + "question": "What is the main occupation of people in coastal areas in the US?", + "en_question": "What is the main occupation of people in coastal areas in your country?", + "annotations": [ + { + "answers": [ + "fishing" + ], + "en_answers": [ + "fishing" + ], + "count": 2 + }, + { + "answers": [ + "corporate" + ], + "en_answers": [ + "corporate" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-57": { + "question": "What is the most common livestock raised in the US?", + "en_question": "What is the most common livestock raised in your country?", + "annotations": [ + { + "answers": [ + "chicken" + ], + "en_answers": [ + "chicken" + ], + "count": 3 + }, + { + "answers": [ + "cattle", + "beef cattle", + "cows", + "cow" + ], + "en_answers": [ + "cattle", + "beef cattle", + "cows", + "cow" + ], + "count": 3 + }, + { + "answers": [ + "pigs", + "pig" + ], + "en_answers": [ + "pigs", + "pig" + ], + "count": 2 + }, + { + "answers": [ + "chickens" + ], + "en_answers": [ + "chickens" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-58": { + "question": "What animals are commonly used for agriculture in the US?", + "en_question": "What animals are commonly used for agriculture in your country?", + "annotations": [ + { + "answers": [ + "cows", + "cow" + ], + "en_answers": [ + "cows", + "cow" + ], + "count": 3 + }, + { + "answers": [ + "pigs", + "pig" + ], + "en_answers": [ + "pigs", + "pig" + ], + "count": 3 + }, + { + "answers": [ + "chickens", + "chicken" + ], + "en_answers": [ + "chickens", + "chicken" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-59": { + "question": "What do farmers in the US typically wear to protect themselves from the heat whilst farming?", + "en_question": "What do farmers in your country typically wear to protect themselves from the heat whilst farming?", + "annotations": [ + { + "answers": [ + "hat" + ], + "en_answers": [ + "hat" + ], + "count": 2 + }, + { + "answers": [ + "sun hats" + ], + "en_answers": [ + "sun hats" + ], + "count": 1 + }, + { + "answers": [ + "straw hat" + ], + "en_answers": [ + "straw hat" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-60": { + "question": "What do farmers in the US usually eat for lunch?", + "en_question": "What do farmers in your country usually eat for lunch?", + "annotations": [ + { + "answers": [ + "burger" + ], + "en_answers": [ + "burger" + ], + "count": 1 + }, + { + "answers": [ + "steak" + ], + "en_answers": [ + "steak" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 4, + "idk": 1, + "not-applicable": 0 + } + }, + "New-su-71": { + "question": "What gifts do parents generally give to their children for their birthdays in the US?", + "en_question": "What gifts do parents generally give to their children for their birthdays in your country?", + "annotations": [ + { + "answers": [ + "toys" + ], + "en_answers": [ + "toys" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 4, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-75": { + "question": "What type of vehicle do most families in the US generally own?", + "en_question": "What type of vehicle do most families in your country generally own?", + "annotations": [ + { + "answers": [ + "suv" + ], + "en_answers": [ + "suv" + ], + "count": 3 + }, + { + "answers": [ + "car" + ], + "en_answers": [ + "car" + ], + "count": 3 + }, + { + "answers": [ + "truck" + ], + "en_answers": [ + "truck" + ], + "count": 1 + }, + { + "answers": [ + "sedan" + ], + "en_answers": [ + "sedan" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-77": { + "question": "What is usually given to the children during Eid in the US?", + "en_question": "What is usually given to the children during Eid in your country?", + "annotations": [ + { + "answers": [ + "money", + "cash" + ], + "en_answers": [ + "money", + "cash" + ], + "count": 2 + }, + { + "answers": [ + "gifts" + ], + "en_answers": [ + "gifts" + ], + "count": 1 + } + ], + "idks": { + "idk": 5, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-su-81": { + "question": "What clothes do grooms usually wear at weddings in the US?", + "en_question": "What clothes do grooms usually wear at weddings in your country?", + "annotations": [ + { + "answers": [ + "tuxedo", + "tuxedos", + "tux" + ], + "en_answers": [ + "tuxedo", + "tuxedos", + "tux" + ], + "count": 3 + }, + { + "answers": [ + "suit", + "suits", + "nice suit" + ], + "en_answers": [ + "suit", + "suits", + "nice suit" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-82": { + "question": "What clothes do brides usually wear at weddings in the US?", + "en_question": "What clothes do brides usually wear at weddings in your country?", + "annotations": [ + { + "answers": [ + "wedding dresses", + "white wedding gown", + "formal wedding dress" + ], + "en_answers": [ + "wedding dresses", + "white wedding gown", + "formal wedding dress" + ], + "count": 3 + }, + { + "answers": [ + "white dresses" + ], + "en_answers": [ + "white dresses" + ], + "count": 1 + }, + { + "answers": [ + "dress" + ], + "en_answers": [ + "dress" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-83": { + "question": "What food is usually served at weddings in the US?", + "en_question": "What food is usually served at weddings in your country?", + "annotations": [ + { + "answers": [ + "cake" + ], + "en_answers": [ + "cake" + ], + "count": 3 + }, + { + "answers": [ + "meat with side" + ], + "en_answers": [ + "meat with side" + ], + "count": 1 + }, + { + "answers": [ + "potatoes", + "potatoes or veges" + ], + "en_answers": [ + "potatoes", + "potatoes or veges" + ], + "count": 1 + }, + { + "answers": [ + "veggies", + "potatoes or veges" + ], + "en_answers": [ + "veggies", + "potatoes or veges" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-86": { + "question": "What is the most famous government building in the US?", + "en_question": "What is the most famous government building in your country?", + "annotations": [ + { + "answers": [ + "white house" + ], + "en_answers": [ + "white house" + ], + "count": 5 + }, + { + "answers": [ + "capitol building", + "u.s capital building" + ], + "en_answers": [ + "capitol building", + "u.s capital building" + ], + "count": 2 + }, + { + "answers": [ + "parthenon", + "panthenon" + ], + "en_answers": [ + "parthenon", + "panthenon" + ], + "count": 1 + }, + { + "answers": [ + "the library of congress" + ], + "en_answers": [ + "the library of congress" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-88": { + "question": "What is the most popular music genre among the younger population in the US?", + "en_question": "What is the most popular music genre among the younger population in your country?", + "annotations": [ + { + "answers": [ + "pop" + ], + "en_answers": [ + "pop" + ], + "count": 4 + }, + { + "answers": [ + "rap" + ], + "en_answers": [ + "rap" + ], + "count": 3 + }, + { + "answers": [ + "hip hop" + ], + "en_answers": [ + "hip hop" + ], + "count": 2 + }, + { + "answers": [ + "reggaeton" + ], + "en_answers": [ + "reggaeton" + ], + "count": 1 + }, + { + "answers": [ + "r&b" + ], + "en_answers": [ + "r&b" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-02": { + "question": "What time do middle school students in the US typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "en_question": "What time do middle school students in your country typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "15:00", + "03:00" + ], + "en_answers": [ + "15:00", + "03:00" + ], + "count": 4 + }, + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 1 + }, + { + "answers": [ + "14:30" + ], + "en_answers": [ + "14:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-03": { + "question": "At what age do people in the US typically go to university? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "At what age do people in your country typically go to university? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 3 + }, + { + "answers": [ + "17-18" + ], + "en_answers": [ + "17-18" + ], + "count": 1 + }, + { + "answers": [ + "19" + ], + "en_answers": [ + "19" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-06": { + "question": "From what age do people need to attend compulsory education in the US? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "From what age do people need to attend compulsory education in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "5", + "4/5 - 18" + ], + "en_answers": [ + "5", + "4/5 - 18" + ], + "count": 3 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 2 + }, + { + "answers": [ + "4", + "4/5 - 18" + ], + "en_answers": [ + "4", + "4/5 - 18" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-09": { + "question": "How many days a week do children attend school in the US? (Provide Arabic numerals (0~7) only.)", + "en_question": "How many days a week do children attend school in your country? (Provide Arabic numerals (0~7) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-11": { + "question": "In the US, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "In your country, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 4 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-12": { + "question": "What is the top university in the US? (Provide the official name.)", + "en_question": "What is the top university in your country? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "harvard", + "harvard university" + ], + "en_answers": [ + "harvard", + "harvard university" + ], + "count": 4 + }, + { + "answers": [ + "yale" + ], + "en_answers": [ + "yale" + ], + "count": 1 + }, + { + "answers": [ + "mit", + "massachusetts institute of technology" + ], + "en_answers": [ + "mit", + "massachusetts institute of technology" + ], + "count": 1 + }, + { + "answers": [ + "standford" + ], + "en_answers": [ + "standford" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-13": { + "question": "At what age do most people in the US graduate from university? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "At what age do most people in your country graduate from university? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 4 + }, + { + "answers": [ + "21" + ], + "en_answers": [ + "21" + ], + "count": 1 + }, + { + "answers": [ + "23" + ], + "en_answers": [ + "23" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ni-en-15": { + "question": "At what age do children in the US generally start middle school school? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "At what age do children in your country generally start middle school? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "11" + ], + "en_answers": [ + "11" + ], + "count": 3 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 2 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-17": { + "question": "How many hours a week does a full-time worker in the US typically work? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "How many hours a week does a full-time worker in your country typically work? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-19": { + "question": "How many days a week does a full-time worker work in the US? (Provide Arabic numerals (0~7) only.)", + "en_question": "How many days a week does a full-time worker work in your country? (Provide Arabic numerals (0~7) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 4 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-20": { + "question": "At what age do most people start working in the US? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "At what age do most people start working in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 2 + }, + { + "answers": [ + "16" + ], + "en_answers": [ + "16" + ], + "count": 2 + }, + { + "answers": [ + "17" + ], + "en_answers": [ + "17" + ], + "count": 2 + }, + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 1 + }, + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 1 + }, + { + "answers": [ + "13-18" + ], + "en_answers": [ + "13-18" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-21": { + "question": "From what age is an individual allowed to work in the US? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "From what age is an individual allowed to work in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "15" + ], + "en_answers": [ + "15" + ], + "count": 3 + }, + { + "answers": [ + "16" + ], + "en_answers": [ + "16" + ], + "count": 2 + }, + { + "answers": [ + "14" + ], + "en_answers": [ + "14" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-31": { + "question": "What do people in the US traditionally eat on Christmas Day? ", + "en_question": "What do people in your country traditionally eat on Christmas Day? ", + "annotations": [ + { + "answers": [ + "ham" + ], + "en_answers": [ + "ham" + ], + "count": 3 + }, + { + "answers": [ + "pork roast" + ], + "en_answers": [ + "pork roast" + ], + "count": 1 + }, + { + "answers": [ + "steak" + ], + "en_answers": [ + "steak" + ], + "count": 1 + }, + { + "answers": [ + "turkey" + ], + "en_answers": [ + "turkey" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-37": { + "question": "What is the name of the day of the year where people in the US celebrate love and romance? ", + "en_question": "What is the name of the day of the year where people in your country celebrate love and romance? ", + "annotations": [ + { + "answers": [ + "valentine's day", + "14th february" + ], + "en_answers": [ + "valentine's day", + "14th february" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-40": { + "question": "What is the most popular Christmas song in the US? ", + "en_question": "What is the most popular Christmas song in your country? ", + "annotations": [ + { + "answers": [ + "all i want for christmas is you", + "all i want for christmas is you (mariah carey)" + ], + "en_answers": [ + "all i want for christmas is you", + "all i want for christmas is you (mariah carey)" + ], + "count": 3 + }, + { + "answers": [ + "deck the halls" + ], + "en_answers": [ + "deck the halls" + ], + "count": 1 + }, + { + "answers": [ + "jingle bell" + ], + "en_answers": [ + "jingle bell" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-04": { + "question": "How many semesters are there each academic year at high schools in the US? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "en_question": "How many semesters are there each academic year at high schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 4 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-05": { + "question": "In which month does the new school year typically begin in the US? (Provide Arabic numerals (1~12) only.)", + "en_question": "In which month does the new school year typically begin in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "9", + "september" + ], + "en_answers": [ + "9", + "september" + ], + "count": 5 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "8", + "august" + ], + "en_answers": [ + "8", + "august" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-06": { + "question": "When is National Teacher's Day commemorated in the US? (Provide in MM/DD format (e.g., 12/31).)", + "en_question": "When is National Teacher's Day commemorated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "05/07" + ], + "en_answers": [ + "05/07" + ], + "count": 4 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-11": { + "question": "At what time does elementary school start in the US? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "en_question": "At what time does elementary school start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:00", + "8:00", + "8 am" + ], + "en_answers": [ + "08:00", + "8:00", + "8 am" + ], + "count": 5 + }, + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 2 + }, + { + "answers": [ + "08:30" + ], + "en_answers": [ + "08:30" + ], + "count": 1 + }, + { + "answers": [ + "08:15" + ], + "en_answers": [ + "08:15" + ], + "count": 1 + }, + { + "answers": [ + "07:30" + ], + "en_answers": [ + "07:30" + ], + "count": 1 + }, + { + "answers": [ + "11:00" + ], + "en_answers": [ + "11:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-20": { + "question": "When is Children's Day celebrated in the US? (Provide in MM/DD format (e.g., 12/31).)", + "en_question": "When is Children's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "06/09" + ], + "en_answers": [ + "06/09" + ], + "count": 1 + }, + { + "answers": [ + "06/08", + "june 8th" + ], + "en_answers": [ + "06/08", + "june 8th" + ], + "count": 1 + }, + { + "answers": [ + "06/14", + "june 14th" + ], + "en_answers": [ + "06/14", + "june 14th" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "no-answer": 1, + "idk": 1 + } + }, + "Nu-in-40": { + "question": "Which city is the main destination for job seekers in the US?", + "en_question": "Which city is the main destination for job seekers in your country?", + "annotations": [ + { + "answers": [ + "new york", + "ny" + ], + "en_answers": [ + "new york", + "ny" + ], + "count": 4 + }, + { + "answers": [ + "new york city", + "nyc" + ], + "en_answers": [ + "new york city", + "nyc" + ], + "count": 2 + }, + { + "answers": [ + "los angeles", + "la" + ], + "en_answers": [ + "los angeles", + "la" + ], + "count": 2 + }, + { + "answers": [ + "boston", + "bos" + ], + "en_answers": [ + "boston", + "bos" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-1": { + "question": "What is the US's most popular fast food chain?", + "en_question": "What is your country's most popular fast food chain?", + "annotations": [ + { + "answers": [ + "mcdonald's", + "mcdonalds" + ], + "en_answers": [ + "mcdonald's", + "mcdonalds" + ], + "count": 5 + }, + { + "answers": [ + "taco bell" + ], + "en_answers": [ + "taco bell" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-13": { + "question": "What is the food that is most divisive (either love or hate) in the US?", + "en_question": "What is the food that is most divisive (either love or hate) in your country?", + "annotations": [ + { + "answers": [ + "meat" + ], + "en_answers": [ + "meat" + ], + "count": 2 + }, + { + "answers": [ + "bbq", + "barbeque" + ], + "en_answers": [ + "bbq", + "barbeque" + ], + "count": 1 + }, + { + "answers": [ + "steak" + ], + "en_answers": [ + "steak" + ], + "count": 1 + }, + { + "answers": [ + "candy" + ], + "en_answers": [ + "candy" + ], + "count": 1 + }, + { + "answers": [ + "anchovies" + ], + "en_answers": [ + "anchovies" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-16": { + "question": "What is the most popular soccer team among the people from the US?", + "en_question": "What is the most popular soccer team among the people from your country?", + "annotations": [ + { + "answers": [ + "fc barcelona" + ], + "en_answers": [ + "fc barcelona" + ], + "count": 1 + }, + { + "answers": [ + "manchester united" + ], + "en_answers": [ + "manchester united" + ], + "count": 1 + }, + { + "answers": [ + "us national team" + ], + "en_answers": [ + "us national team" + ], + "count": 1 + }, + { + "answers": [ + "usmnt", + "us men's national team" + ], + "en_answers": [ + "usmnt", + "us men's national team" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 2, + "no-answer": 0 + } + }, + "Sa-en-22": { + "question": "What is the most famous university in the US known for its sports team?", + "en_question": "What is the most famous university in your country known for its sports team?", + "annotations": [ + { + "answers": [ + "university of alabama" + ], + "en_answers": [ + "university of alabama" + ], + "count": 2 + }, + { + "answers": [ + "notre dame", + "notre dame university" + ], + "en_answers": [ + "notre dame", + "notre dame university" + ], + "count": 2 + }, + { + "answers": [ + "harvard" + ], + "en_answers": [ + "harvard" + ], + "count": 1 + }, + { + "answers": [ + "university of florida", + "fu" + ], + "en_answers": [ + "university of florida", + "fu" + ], + "count": 1 + }, + { + "answers": [ + "michigan state university", + "msu" + ], + "en_answers": [ + "michigan state university", + "msu" + ], + "count": 1 + }, + { + "answers": [ + "university of south carolina", + "usc" + ], + "en_answers": [ + "university of south carolina", + "usc" + ], + "count": 1 + }, + { + "answers": [ + "university of texas at austin", + "ut austin" + ], + "en_answers": [ + "university of texas at austin", + "ut austin" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-31": { + "question": "What is the US's most popular family pet?", + "en_question": "What is your country's most popular family pet?", + "annotations": [ + { + "answers": [ + "dog" + ], + "en_answers": [ + "dog" + ], + "count": 4 + }, + { + "answers": [ + "cat" + ], + "en_answers": [ + "cat" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Sa-en-32": { + "question": "What is the most popular family TV show in the US?", + "en_question": "What is the most popular family TV show in your country?", + "annotations": [ + { + "answers": [ + "modern family" + ], + "en_answers": [ + "modern family" + ], + "count": 1 + }, + { + "answers": [ + "the simpsons" + ], + "en_answers": [ + "the simpsons" + ], + "count": 1 + }, + { + "answers": [ + "young sheldon" + ], + "en_answers": [ + "young sheldon" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "Sa-en-37": { + "question": "What is the most popular family boardgame in the US?", + "en_question": "What is the most popular family boardgame in your country?", + "annotations": [ + { + "answers": [ + "monopoly" + ], + "en_answers": [ + "monopoly" + ], + "count": 5 + }, + { + "answers": [ + "sorry" + ], + "en_answers": [ + "sorry" + ], + "count": 1 + }, + { + "answers": [ + "candy land" + ], + "en_answers": [ + "candy land" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-6": { + "question": "What is the most popular takeaway food in the US?", + "en_question": "What is the most popular takeaway food in your country?", + "annotations": [ + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 4 + }, + { + "answers": [ + "burgers", + "hamburgers" + ], + "en_answers": [ + "burgers", + "hamburgers" + ], + "count": 1 + }, + { + "answers": [ + "chinese" + ], + "en_answers": [ + "chinese" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Sa-en-7": { + "question": "What are popular snacks in the US?", + "en_question": "What are popular snacks in your country?", + "annotations": [ + { + "answers": [ + "chips" + ], + "en_answers": [ + "chips" + ], + "count": 2 + }, + { + "answers": [ + "popcorn" + ], + "en_answers": [ + "popcorn" + ], + "count": 1 + }, + { + "answers": [ + "cheez-its", + "cheez itz" + ], + "en_answers": [ + "cheez-its", + "cheez itz" + ], + "count": 1 + }, + { + "answers": [ + "ritz crackers" + ], + "en_answers": [ + "ritz crackers" + ], + "count": 1 + }, + { + "answers": [ + "ice cream" + ], + "en_answers": [ + "ice cream" + ], + "count": 1 + }, + { + "answers": [ + "cookies" + ], + "en_answers": [ + "cookies" + ], + "count": 1 + }, + { + "answers": [ + "m&m" + ], + "en_answers": [ + "m&m" + ], + "count": 1 + }, + { + "answers": [ + "hershey" + ], + "en_answers": [ + "hershey" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Sa-en-9": { + "question": "What do people from the US eat at the beach?", + "en_question": "What do people from your country eat at the beach?", + "annotations": [ + { + "answers": [ + "sandwiches", + "sandwich" + ], + "en_answers": [ + "sandwiches", + "sandwich" + ], + "count": 5 + }, + { + "answers": [ + "watermelon" + ], + "en_answers": [ + "watermelon" + ], + "count": 1 + }, + { + "answers": [ + "chips" + ], + "en_answers": [ + "chips" + ], + "count": 1 + }, + { + "answers": [ + "grill hamburgers" + ], + "en_answers": [ + "grill hamburgers" + ], + "count": 1 + }, + { + "answers": [ + "ice cream" + ], + "en_answers": [ + "ice cream" + ], + "count": 1 + }, + { + "answers": [ + "hot dogs" + ], + "en_answers": [ + "hot dogs" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-10": { + "question": "At what age do men usually get married in the US? (Provide Arabic numerals (e.g., 20) only.)", + "en_question": "At what age do men usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 3 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 2 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + }, + { + "answers": [ + "29" + ], + "en_answers": [ + "29" + ], + "count": 1 + }, + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ta-pe-11": { + "question": "At what age do women usually get married in the US? (Provide Arabic numerals (e.g., 20) only.)", + "en_question": "At what age do women usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "26" + ], + "en_answers": [ + "26" + ], + "count": 2 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "no-answer": 1, + "idk": 0 + } + }, + "Ta-pe-13": { + "question": "In your parents' generation, what was the average number of members in their family in the US? (Provide Arabic numerals (e.g., 20) only.)", + "en_question": "In your parents' generation, what was the average number of members in their family in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 2 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 2 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-17": { + "question": "In the Olympic Games, which sport is the most popular in the US?", + "en_question": "In the Olympic Games, which sport is the most popular in your country?", + "annotations": [ + { + "answers": [ + "gymnastics" + ], + "en_answers": [ + "gymnastics" + ], + "count": 3 + }, + { + "answers": [ + "basketball" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + }, + { + "answers": [ + "swimming" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + }, + { + "answers": [ + "women's soccer", + "womens soccer" + ], + "en_answers": [ + "women's soccer", + "womens soccer" + ], + "count": 1 + }, + { + "answers": [ + "table tennis" + ], + "en_answers": [ + "table tennis" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-21": { + "question": "Where do children usually play soccer in the US?", + "en_question": "Where do children usually play soccer in your country?", + "annotations": [ + { + "answers": [ + "field" + ], + "en_answers": [ + "field" + ], + "count": 2 + }, + { + "answers": [ + "outdoor field" + ], + "en_answers": [ + "outdoor field" + ], + "count": 1 + }, + { + "answers": [ + "youth soccer league", + "little league soccer" + ], + "en_answers": [ + "youth soccer league", + "little league soccer" + ], + "count": 1 + }, + { + "answers": [ + "school" + ], + "en_answers": [ + "school" + ], + "count": 1 + }, + { + "answers": [ + "community park" + ], + "en_answers": [ + "community park" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ta-pe-22": { + "question": "Which daily exercise is popular among women in the US?", + "en_question": "Which daily exercise is popular among women in your country?", + "annotations": [ + { + "answers": [ + "jogging" + ], + "en_answers": [ + "jogging" + ], + "count": 3 + }, + { + "answers": [ + "yoga" + ], + "en_answers": [ + "yoga" + ], + "count": 3 + }, + { + "answers": [ + "pilates" + ], + "en_answers": [ + "pilates" + ], + "count": 1 + }, + { + "answers": [ + "meditation" + ], + "en_answers": [ + "meditation" + ], + "count": 1 + }, + { + "answers": [ + "running" + ], + "en_answers": [ + "running" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-23": { + "question": "Which daily exercise is popular among men in the US?", + "en_question": "Which daily exercise is popular among men in your country?", + "annotations": [ + { + "answers": [ + "jogging" + ], + "en_answers": [ + "jogging" + ], + "count": 2 + }, + { + "answers": [ + "running" + ], + "en_answers": [ + "running" + ], + "count": 2 + }, + { + "answers": [ + "cardio" + ], + "en_answers": [ + "cardio" + ], + "count": 1 + }, + { + "answers": [ + "exercise machines" + ], + "en_answers": [ + "exercise machines" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-25": { + "question": "What is the most famous rivalry in a national sports league in the US? (e.g., ___ vs ___)", + "en_question": "What is the most famous rivalry in a national sports league in your country? (e.g., ___ vs ___)", + "annotations": [ + { + "answers": [ + "new york yankees vs boston red sox", + "new york yankess vs boston red sox", + "boston red sox vs new york yankees", + "boston red sox and the new york yankees in major league basebal" + ], + "en_answers": [ + "new york yankees vs boston red sox", + "new york yankess vs boston red sox", + "boston red sox vs new york yankees", + "boston red sox and the new york yankees in major league basebal" + ], + "count": 2 + }, + { + "answers": [ + "cincinnati vs inter miami" + ], + "en_answers": [ + "cincinnati vs inter miami" + ], + "count": 1 + }, + { + "answers": [ + "cubs vs white sox", + "cubs v white sox", + "chicago cubs vs chicago white sox" + ], + "en_answers": [ + "cubs vs white sox", + "cubs v white sox", + "chicago cubs vs chicago white sox" + ], + "count": 1 + }, + { + "answers": [ + "packers vs. bears", + "green bay packers vs chicago bears" + ], + "en_answers": [ + "packers vs. bears", + "green bay packers vs chicago bears" + ], + "count": 1 + }, + { + "answers": [ + "new england patriots vs. buffalo bills" + ], + "en_answers": [ + "new england patriots vs. buffalo bills" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-29": { + "question": "Which professional sport is the highest paying in the US?", + "en_question": "Which professional sport is the highest paying in your country?", + "annotations": [ + { + "answers": [ + "football", + "nfl", + "american football", + "national football league" + ], + "en_answers": [ + "football", + "nfl", + "american football", + "national football league" + ], + "count": 4 + }, + { + "answers": [ + "baseball", + "mlb", + "major league baseball" + ], + "en_answers": [ + "baseball", + "mlb", + "major league baseball" + ], + "count": 3 + }, + { + "answers": [ + "basketball", + "nba", + "national basketball association" + ], + "en_answers": [ + "basketball", + "nba", + "national basketball association" + ], + "count": 2 + }, + { + "answers": [ + "golf" + ], + "en_answers": [ + "golf" + ], + "count": 1 + }, + { + "answers": [ + "soccer", + "international football" + ], + "en_answers": [ + "soccer", + "international football" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-30": { + "question": "What is/was the most popular sports-related TV program in the US?", + "en_question": "What is/was the most popular sports-related TV program in your country?", + "annotations": [ + { + "answers": [ + "espn" + ], + "en_answers": [ + "espn" + ], + "count": 1 + }, + { + "answers": [ + "nfl games", + "national football league" + ], + "en_answers": [ + "nfl games", + "national football league" + ], + "count": 1 + }, + { + "answers": [ + "nba games", + "national basketball association" + ], + "en_answers": [ + "nba games", + "national basketball association" + ], + "count": 1 + }, + { + "answers": [ + "college sports", + "ncaa" + ], + "en_answers": [ + "college sports", + "ncaa" + ], + "count": 1 + }, + { + "answers": [ + "monday night football", + "mnf" + ], + "en_answers": [ + "monday night football", + "mnf" + ], + "count": 1 + }, + { + "answers": [ + "superbowl" + ], + "en_answers": [ + "superbowl" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ta-pe-32": { + "question": "What day of the year is usually dedicated to fireworks in the US?", + "en_question": "What day of the year is usually dedicated to fireworks in your country?", + "annotations": [ + { + "answers": [ + "july 4", + "july 4th", + "fourth of july", + "4th of july", + "july fourth" + ], + "en_answers": [ + "july 4", + "july 4th", + "fourth of july", + "4th of july", + "july fourth" + ], + "count": 4 + }, + { + "answers": [ + "new year's eve", + "nye" + ], + "en_answers": [ + "new year's eve", + "nye" + ], + "count": 2 + }, + { + "answers": [ + "new year" + ], + "en_answers": [ + "new year" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-37": { + "question": "What is the common symbol of New Year's Eve that is usually found in the US?", + "en_question": "What is the common symbol of New Year's Eve that is usually found in your country?", + "annotations": [ + { + "answers": [ + "clock", + "clock striking midnight" + ], + "en_answers": [ + "clock", + "clock striking midnight" + ], + "count": 2 + }, + { + "answers": [ + "times square ball drop", + "times square" + ], + "en_answers": [ + "times square ball drop", + "times square" + ], + "count": 2 + }, + { + "answers": [ + "disco balls" + ], + "en_answers": [ + "disco balls" + ], + "count": 1 + }, + { + "answers": [ + "father time" + ], + "en_answers": [ + "father time" + ], + "count": 1 + }, + { + "answers": [ + "auld lang syne" + ], + "en_answers": [ + "auld lang syne" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-42": { + "question": "What food do people from the US usually eat on New Year's Eve?", + "en_question": "What food do people from your country usually eat on New Year's Eve?", + "annotations": [ + { + "answers": [ + "ham" + ], + "en_answers": [ + "ham" + ], + "count": 1 + }, + { + "answers": [ + "mashed potatoes" + ], + "en_answers": [ + "mashed potatoes" + ], + "count": 1 + }, + { + "answers": [ + "pie" + ], + "en_answers": [ + "pie" + ], + "count": 1 + }, + { + "answers": [ + "bbq", + "barbeque" + ], + "en_answers": [ + "bbq", + "barbeque" + ], + "count": 1 + }, + { + "answers": [ + "roast pork" + ], + "en_answers": [ + "roast pork" + ], + "count": 1 + }, + { + "answers": [ + "black-eyed peas" + ], + "en_answers": [ + "black-eyed peas" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Ta-pe-45": { + "question": "What is usually eaten during the celebration of the longest night of the year in the US?", + "en_question": "What is usually eaten during the celebration of the longest night of the year in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 1 + } + }, + "Th-en-01": { + "question": "What is the most popular summer sport in the US?", + "en_question": "What is the most popular summer sport in your country?", + "annotations": [ + { + "answers": [ + "baseball" + ], + "en_answers": [ + "baseball" + ], + "count": 2 + }, + { + "answers": [ + "volleyball" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "swimming" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-03": { + "question": "What is the most popular professional sports league in the US?", + "en_question": "What is the most popular professional sports league in your country?", + "annotations": [ + { + "answers": [ + "nfl", + "national football league" + ], + "en_answers": [ + "nfl", + "national football league" + ], + "count": 5 + }, + { + "answers": [ + "mlb", + "major league baseball" + ], + "en_answers": [ + "mlb", + "major league baseball" + ], + "count": 1 + }, + { + "answers": [ + "nba", + "national basketball association" + ], + "en_answers": [ + "nba", + "national basketball association" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-05": { + "question": "What is the most popular women's sports team in the US?", + "en_question": "What is the most popular women's sports team in your country?", + "annotations": [ + { + "answers": [ + "iowa basketball" + ], + "en_answers": [ + "iowa basketball" + ], + "count": 1 + }, + { + "answers": [ + "lsu basketball" + ], + "en_answers": [ + "lsu basketball" + ], + "count": 1 + }, + { + "answers": [ + "u.s. women's national soccer team", + "uswnt" + ], + "en_answers": [ + "u.s. women's national soccer team", + "uswnt" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Th-en-09": { + "question": "What is the most popular tournament in the US?", + "en_question": "What is the most popular tournament in your country?", + "annotations": [ + { + "answers": [ + "nfl playoffs", + "super bowl" + ], + "en_answers": [ + "nfl playoffs", + "super bowl" + ], + "count": 2 + }, + { + "answers": [ + "ncaa men's division i basketball tournament", + "march madness" + ], + "en_answers": [ + "ncaa men's division i basketball tournament", + "march madness" + ], + "count": 1 + }, + { + "answers": [ + "masters" + ], + "en_answers": [ + "masters" + ], + "count": 1 + }, + { + "answers": [ + "rugby" + ], + "en_answers": [ + "rugby" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-11": { + "question": "Who is the most popular sportperson in the US?", + "en_question": "Who is the most popular sportperson in your country?", + "annotations": [ + { + "answers": [ + "tiger woods" + ], + "en_answers": [ + "tiger woods" + ], + "count": 2 + }, + { + "answers": [ + "travis kelce", + "travis kellce" + ], + "en_answers": [ + "travis kelce", + "travis kellce" + ], + "count": 2 + }, + { + "answers": [ + "kobe bryant", + "black mamba" + ], + "en_answers": [ + "kobe bryant", + "black mamba" + ], + "count": 1 + }, + { + "answers": [ + "tom brady", + "brady", + "tb12" + ], + "en_answers": [ + "tom brady", + "brady", + "tb12" + ], + "count": 1 + }, + { + "answers": [ + "lebron james", + "lebron", + "king james" + ], + "en_answers": [ + "lebron james", + "lebron", + "king james" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-12": { + "question": "In which sport has the US been most successful in international competitions?", + "en_question": "In which sport has your country been most successful in international competitions?", + "annotations": [ + { + "answers": [ + "basketball" + ], + "en_answers": [ + "basketball" + ], + "count": 3 + }, + { + "answers": [ + "swimming" + ], + "en_answers": [ + "swimming" + ], + "count": 2 + }, + { + "answers": [ + "american football", + "football" + ], + "en_answers": [ + "american football", + "football" + ], + "count": 2 + }, + { + "answers": [ + "gymnastics" + ], + "en_answers": [ + "gymnastics" + ], + "count": 1 + }, + { + "answers": [ + "baseball" + ], + "en_answers": [ + "baseball" + ], + "count": 1 + }, + { + "answers": [ + "women's soccer", + "womens soccer" + ], + "en_answers": [ + "women's soccer", + "womens soccer" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-15": { + "question": "What is the most popular winter sport in the US?", + "en_question": "What is the most popular winter sport in your country?", + "annotations": [ + { + "answers": [ + "hockey" + ], + "en_answers": [ + "hockey" + ], + "count": 4 + }, + { + "answers": [ + "skiing" + ], + "en_answers": [ + "skiing" + ], + "count": 3 + }, + { + "answers": [ + "snowboarding" + ], + "en_answers": [ + "snowboarding" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-19": { + "question": "What is a city or region in the US known for manufacturing industry?", + "en_question": "What is a city or region in your country known for manufacturing industry?", + "annotations": [ + { + "answers": [ + "detroit" + ], + "en_answers": [ + "detroit" + ], + "count": 3 + }, + { + "answers": [ + "chicago" + ], + "en_answers": [ + "chicago" + ], + "count": 2 + }, + { + "answers": [ + "michigan" + ], + "en_answers": [ + "michigan" + ], + "count": 2 + }, + { + "answers": [ + "pittsburgh" + ], + "en_answers": [ + "pittsburgh" + ], + "count": 1 + }, + { + "answers": [ + "midwest" + ], + "en_answers": [ + "midwest" + ], + "count": 1 + }, + { + "answers": [ + "south" + ], + "en_answers": [ + "south" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-21": { + "question": "What is regarded as the most important perk typically offered to employees in the US?", + "en_question": "What is regarded as the most important perk typically offered to employees in your country?", + "annotations": [ + { + "answers": [ + "vacation", + "vacation time", + "vacation days" + ], + "en_answers": [ + "vacation", + "vacation time", + "vacation days" + ], + "count": 3 + }, + { + "answers": [ + "healthcare", + "health insurance", + "health care" + ], + "en_answers": [ + "healthcare", + "health insurance", + "health care" + ], + "count": 3 + }, + { + "answers": [ + "benefits" + ], + "en_answers": [ + "benefits" + ], + "count": 1 + }, + { + "answers": [ + "401(k)" + ], + "en_answers": [ + "401(k)" + ], + "count": 1 + }, + { + "answers": [ + "financial stability" + ], + "en_answers": [ + "financial stability" + ], + "count": 1 + }, + { + "answers": [ + "sick time", + "sick days off" + ], + "en_answers": [ + "sick time", + "sick days off" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-22": { + "question": "What was the most catastrophic economic period for the US?", + "en_question": "What was the most catastrophic economic period for your country?", + "annotations": [ + { + "answers": [ + "the great depression", + "great depression", + "depression of the 30s" + ], + "en_answers": [ + "the great depression", + "great depression", + "depression of the 30s" + ], + "count": 5 + }, + { + "answers": [ + "9/11" + ], + "en_answers": [ + "9/11" + ], + "count": 1 + }, + { + "answers": [ + "katrina", + "hurricane katrina" + ], + "en_answers": [ + "katrina", + "hurricane katrina" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-24": { + "question": "What region in the US is a major hub for tech workers and start ups?", + "en_question": "What region in your country is a major hub for tech workers and start ups?", + "annotations": [ + { + "answers": [ + "silicon valley" + ], + "en_answers": [ + "silicon valley" + ], + "count": 4 + }, + { + "answers": [ + "los angeles", + "la" + ], + "en_answers": [ + "los angeles", + "la" + ], + "count": 1 + }, + { + "answers": [ + "houston", + "hou" + ], + "en_answers": [ + "houston", + "hou" + ], + "count": 1 + }, + { + "answers": [ + "chicago", + "chi" + ], + "en_answers": [ + "chicago", + "chi" + ], + "count": 1 + }, + { + "answers": [ + "research triangle" + ], + "en_answers": [ + "research triangle" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-27": { + "question": "What is the most important industry in the US?", + "en_question": "What is the most important industry in your country?", + "annotations": [ + { + "answers": [ + "technology", + "tech" + ], + "en_answers": [ + "technology", + "tech" + ], + "count": 3 + }, + { + "answers": [ + "retail" + ], + "en_answers": [ + "retail" + ], + "count": 1 + }, + { + "answers": [ + "farming", + "agriculture" + ], + "en_answers": [ + "farming", + "agriculture" + ], + "count": 1 + }, + { + "answers": [ + "steel" + ], + "en_answers": [ + "steel" + ], + "count": 1 + }, + { + "answers": [ + "cars", + "automobiles" + ], + "en_answers": [ + "cars", + "automobiles" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-35": { + "question": "Which one of the daily meals is commonly shared with family members in the US? (e.g., breakfast, lunch, dinner)", + "en_question": "Which one of the daily meals is commonly shared with family members in your country? (e.g., breakfast, lunch, dinner)", + "annotations": [ + { + "answers": [ + "dinner" + ], + "en_answers": [ + "dinner" + ], + "count": 3 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-36": { + "question": "What is a popular family activity with a child to do on weekends in the US?", + "en_question": "What is a popular family activity with a child to do on weekends in your country?", + "annotations": [ + { + "answers": [ + "park", + "go to a park" + ], + "en_answers": [ + "park", + "go to a park" + ], + "count": 2 + }, + { + "answers": [ + "bowling" + ], + "en_answers": [ + "bowling" + ], + "count": 1 + }, + { + "answers": [ + "swim" + ], + "en_answers": [ + "swim" + ], + "count": 1 + }, + { + "answers": [ + "playing in a park" + ], + "en_answers": [ + "playing in a park" + ], + "count": 1 + }, + { + "answers": [ + "playground" + ], + "en_answers": [ + "playground" + ], + "count": 1 + }, + { + "answers": [ + "watch a movie" + ], + "en_answers": [ + "watch a movie" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Th-en-37": { + "question": "At what age do children typically become independent from their parents in the US? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "At what age do children typically become independent from their parents in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 4 + }, + { + "answers": [ + "21" + ], + "en_answers": [ + "21" + ], + "count": 2 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-38": { + "question": "What is the most important family holiday in the US?", + "en_question": "What is the most important family holiday in your country?", + "annotations": [ + { + "answers": [ + "christmas", + "xmas" + ], + "en_answers": [ + "christmas", + "xmas" + ], + "count": 4 + }, + { + "answers": [ + "thanksgiving" + ], + "en_answers": [ + "thanksgiving" + ], + "count": 2 + }, + { + "answers": [ + "independence day" + ], + "en_answers": [ + "independence day" + ], + "count": 1 + }, + { + "answers": [ + "easter", + "ressurection sunday" + ], + "en_answers": [ + "easter", + "ressurection sunday" + ], + "count": 1 + }, + { + "answers": [ + "seollal", + "korean new year" + ], + "en_answers": [ + "seollal", + "korean new year" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-39": { + "question": "What is a popular family game in the US?", + "en_question": "What is a popular family game in your country?", + "annotations": [ + { + "answers": [ + "monopoly" + ], + "en_answers": [ + "monopoly" + ], + "count": 2 + }, + { + "answers": [ + "scrabble" + ], + "en_answers": [ + "scrabble" + ], + "count": 1 + }, + { + "answers": [ + "jeopardy" + ], + "en_answers": [ + "jeopardy" + ], + "count": 1 + }, + { + "answers": [ + "life (the board game)" + ], + "en_answers": [ + "life (the board game)" + ], + "count": 1 + }, + { + "answers": [ + "uno" + ], + "en_answers": [ + "uno" + ], + "count": 1 + }, + { + "answers": [ + "apples to apples" + ], + "en_answers": [ + "apples to apples" + ], + "count": 1 + }, + { + "answers": [ + "go fish" + ], + "en_answers": [ + "go fish" + ], + "count": 1 + }, + { + "answers": [ + "snakes and ladders" + ], + "en_answers": [ + "snakes and ladders" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-41": { + "question": "What is the average age for couples to have their first child in the US? (Provide Arabic numerals (e.g., 20) only.)", + "en_question": "What is the average age for couples to have their first child in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 2 + }, + { + "answers": [ + "27" + ], + "en_answers": [ + "27" + ], + "count": 1 + }, + { + "answers": [ + "26" + ], + "en_answers": [ + "26" + ], + "count": 1 + }, + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 1 + }, + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + }, + { + "answers": [ + "28" + ], + "en_answers": [ + "28" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-43": { + "question": "How many cars are owned by a typical family in the US? (Provide Arabic numerals (e.g., 12) only.)", + "en_question": "How many cars are owned by a typical family in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 4 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-44": { + "question": "What is the US's most popular food for family meals on weekends?", + "en_question": "What is your country's most popular food for family meals on weekends?", + "annotations": [ + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 4 + }, + { + "answers": [ + "hamburgers", + "hamburgers and fries", + "burgers" + ], + "en_answers": [ + "hamburgers", + "hamburgers and fries", + "burgers" + ], + "count": 3 + }, + { + "answers": [ + "fries", + "hamburgers and fries" + ], + "en_answers": [ + "fries", + "hamburgers and fries" + ], + "count": 1 + }, + { + "answers": [ + "tacos" + ], + "en_answers": [ + "tacos" + ], + "count": 1 + }, + { + "answers": [ + "hotdogs", + "hot dogs" + ], + "en_answers": [ + "hotdogs", + "hot dogs" + ], + "count": 1 + }, + { + "answers": [ + "chicken" + ], + "en_answers": [ + "chicken" + ], + "count": 1 + }, + { + "answers": [ + "steak" + ], + "en_answers": [ + "steak" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-45": { + "question": "What is the most popular weekday evening family activity in the US?", + "en_question": "What is the most popular weekday evening family activity in your country?", + "annotations": [ + { + "answers": [ + "tv", + "watching tv", + "television" + ], + "en_answers": [ + "tv", + "watching tv", + "television" + ], + "count": 2 + }, + { + "answers": [ + "family dinner", + "having dinner together", + "dinner" + ], + "en_answers": [ + "family dinner", + "having dinner together", + "dinner" + ], + "count": 2 + }, + { + "answers": [ + "playing games" + ], + "en_answers": [ + "playing games" + ], + "count": 1 + }, + { + "answers": [ + "walk", + "stroll" + ], + "en_answers": [ + "walk", + "stroll" + ], + "count": 1 + }, + { + "answers": [ + "kids sporting events", + "little league events" + ], + "en_answers": [ + "kids sporting events", + "little league events" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-48": { + "question": "What is the highest grade given to top-achieving high school students on assignments and exams in the US?", + "en_question": "What is the highest grade given to top-achieving high school students on assignments and exams in your country?", + "annotations": [ + { + "answers": [ + "a+" + ], + "en_answers": [ + "a+" + ], + "count": 3 + }, + { + "answers": [ + "a" + ], + "en_answers": [ + "a" + ], + "count": 2 + }, + { + "answers": [ + "100" + ], + "en_answers": [ + "100" + ], + "count": 2 + }, + { + "answers": [ + "pass", + "s" + ], + "en_answers": [ + "pass", + "s" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-49": { + "question": "What is considered the most important exam for high school students in the US?", + "en_question": "What is considered the most important exam for high school students in your country?", + "annotations": [ + { + "answers": [ + "sat's", + "scholastic assessment test" + ], + "en_answers": [ + "sat's", + "scholastic assessment test" + ], + "count": 2 + }, + { + "answers": [ + "american college testing", + "act" + ], + "en_answers": [ + "american college testing", + "act" + ], + "count": 2 + }, + { + "answers": [ + "finals" + ], + "en_answers": [ + "finals" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-51": { + "question": "Which subject is considered the most important for students in the US?", + "en_question": "Which subject is considered the most important for students in your country?", + "annotations": [ + { + "answers": [ + "english" + ], + "en_answers": [ + "english" + ], + "count": 2 + }, + { + "answers": [ + "stem", + "s.t.e.a.m", + "science technology engineering and mathematics" + ], + "en_answers": [ + "stem", + "s.t.e.a.m", + "science technology engineering and mathematics" + ], + "count": 1 + }, + { + "answers": [ + "mathematics" + ], + "en_answers": [ + "mathematics" + ], + "count": 1 + }, + { + "answers": [ + "literature" + ], + "en_answers": [ + "literature" + ], + "count": 1 + }, + { + "answers": [ + "science" + ], + "en_answers": [ + "science" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-53": { + "question": "What is the most popular extracurricular social event at schools in the US?", + "en_question": "What is the most popular extracurricular social event at schools in your country?", + "annotations": [ + { + "answers": [ + "prom" + ], + "en_answers": [ + "prom" + ], + "count": 2 + }, + { + "answers": [ + "homecoming" + ], + "en_answers": [ + "homecoming" + ], + "count": 1 + }, + { + "answers": [ + "marching band" + ], + "en_answers": [ + "marching band" + ], + "count": 1 + }, + { + "answers": [ + "chorus" + ], + "en_answers": [ + "chorus" + ], + "count": 1 + }, + { + "answers": [ + "dances" + ], + "en_answers": [ + "dances" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-58": { + "question": "What is the most advanced math subject learned before university in the US?", + "en_question": "What is the most advanced math subject learned before university in your country?", + "annotations": [ + { + "answers": [ + "calculus" + ], + "en_answers": [ + "calculus" + ], + "count": 3 + }, + { + "answers": [ + "algebra" + ], + "en_answers": [ + "algebra" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-01": { + "question": "Where do university students in the US usually go to study for their final exams?", + "en_question": "Where do university students in your country usually go to study for their final exams?", + "annotations": [ + { + "answers": [ + "library" + ], + "en_answers": [ + "library" + ], + "count": 5 + }, + { + "answers": [ + "home" + ], + "en_answers": [ + "home" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-02": { + "question": "What is a common public transport that people use to go to university in the US?", + "en_question": "What is a common public transport that people use to go to university in your country?", + "annotations": [ + { + "answers": [ + "bus" + ], + "en_answers": [ + "bus" + ], + "count": 5 + }, + { + "answers": [ + "train" + ], + "en_answers": [ + "train" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-04": { + "question": "What do elementary students in the US usually do after school?", + "en_question": "What do elementary students in your country usually do after school?", + "annotations": [ + { + "answers": [ + "homework" + ], + "en_answers": [ + "homework" + ], + "count": 3 + }, + { + "answers": [ + "sports" + ], + "en_answers": [ + "sports" + ], + "count": 3 + }, + { + "answers": [ + "video games", + "play video games" + ], + "en_answers": [ + "video games", + "play video games" + ], + "count": 2 + }, + { + "answers": [ + "afterschool programs", + "after school program", + "extracurricular activities" + ], + "en_answers": [ + "afterschool programs", + "after school program", + "extracurricular activities" + ], + "count": 2 + }, + { + "answers": [ + "family time" + ], + "en_answers": [ + "family time" + ], + "count": 1 + }, + { + "answers": [ + "screen time" + ], + "en_answers": [ + "screen time" + ], + "count": 1 + }, + { + "answers": [ + "play" + ], + "en_answers": [ + "play" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + } +} \ No newline at end of file diff --git a/data/annotations/West_Java_data.json b/data/annotations/West_Java_data.json new file mode 100644 index 0000000000000000000000000000000000000000..00fcaf98e8fc04a5cacf31987da548a7b6dbc7aa --- /dev/null +++ b/data/annotations/West_Java_data.json @@ -0,0 +1,20801 @@ +{ + "Al-en-01": { + "question": "Naon jajanan umum pikeun barudak TK di Jawa Barat?", + "en_question": "What is a common snack for preschool kids in your country?", + "annotations": [ + { + "answers": [ + "cilok" + ], + "en_answers": [ + "cilok" + ], + "count": 3 + }, + { + "answers": [ + "ager", + "ager-ager" + ], + "en_answers": [ + "jelly" + ], + "count": 3 + }, + { + "answers": [ + "endog gulung" + ], + "en_answers": [ + "rolled egg" + ], + "count": 2 + }, + { + "answers": [ + "cimol" + ], + "en_answers": [ + "cimol" + ], + "count": 1 + }, + { + "answers": [ + "permén" + ], + "en_answers": [ + "candy" + ], + "count": 1 + }, + { + "answers": [ + "cilung" + ], + "en_answers": [ + "cilung" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-02": { + "question": "Naon kadaharan populér nu cocog sareng bir di Jawa Barat?", + "en_question": "What is a popular food to go with beer in your country?", + "annotations": [ + { + "answers": [ + "seblak" + ], + "en_answers": [ + "seblak" + ], + "count": 1 + }, + { + "answers": [ + "peuyeum" + ], + "en_answers": [ + "peuyeum", + "fermented cassava" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 4, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-04": { + "question": "Naon buah nu pang populerna di Jawa Barat?", + "en_question": "What is the most popular fruit in your country?", + "annotations": [ + { + "answers": [ + "manggah", + "buah manggah", + "mangga", + "buah mangga" + ], + "en_answers": [ + "mango" + ], + "count": 3 + }, + { + "answers": [ + "durén", + "kadu", + "buah durén", + "buah duren", + "buah kadu" + ], + "en_answers": [ + "durian" + ], + "count": 2 + }, + { + "answers": [ + "cau", + "buah cau" + ], + "en_answers": [ + "banana" + ], + "count": 1 + }, + { + "answers": [ + "kacapi", + "buah kacapi" + ], + "en_answers": [ + "lyre fruit", + "lychee" + ], + "count": 1 + }, + { + "answers": [ + "jambu", + "buah jambu" + ], + "en_answers": [ + "guava" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-06": { + "question": "Naon kadaharan kantin sakola anu umum di Jawa Barat?", + "en_question": "What is a common school cafeteria food in your country?", + "annotations": [ + { + "answers": [ + "gorengan", + "goréngan" + ], + "en_answers": [ + "fritter" + ], + "count": 3 + }, + { + "answers": [ + "seblak" + ], + "en_answers": [ + "seblak" + ], + "count": 2 + }, + { + "answers": [ + "ciki" + ], + "en_answers": [ + "snack" + ], + "count": 1 + }, + { + "answers": [ + "mie ayam", + "mi hayam", + "emi hayam", + "emih hayam" + ], + "en_answers": [ + "chicken noodle" + ], + "count": 1 + }, + { + "answers": [ + "baso" + ], + "en_answers": [ + "meatball" + ], + "count": 1 + }, + { + "answers": [ + "batagor" + ], + "en_answers": [ + "batagor" + ], + "count": 1 + }, + { + "answers": [ + "somay", + "siomay" + ], + "en_answers": [ + "dumpling" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-08": { + "question": "Naon jajanan anu pang mindengna didahar di mal-mal di Jawa Barat?", + "en_question": "What are the most commonly eaten snacks at shopping malls in your country?", + "annotations": [ + { + "answers": [ + "hayam goréng krispi", + "goréng hayam", + "hayam goreng krispi", + "goreng hayam", + "hayam goreng", + "hayam goréng", + "hayam goreng krispi", + "goreng hayam", + "hayam goreng" + ], + "en_answers": [ + "fried chicken" + ], + "count": 2 + }, + { + "answers": [ + "inuman bermerek" + ], + "en_answers": [ + "branded drinks" + ], + "count": 1 + }, + { + "answers": [ + "inuman boba", + "boba" + ], + "en_answers": [ + "boba drink", + "bubble tea" + ], + "count": 1 + }, + { + "answers": [ + "spageti" + ], + "en_answers": [ + "spaghetti" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-09": { + "question": "Naon jajanan populér di taman hiburan di Jawa Barat?", + "en_question": "What is a popular snack at an amusement park in your country?", + "annotations": [ + { + "answers": [ + "aromanis", + "permen kapas" + ], + "en_answers": [ + "cotton candy" + ], + "count": 3 + }, + { + "answers": [ + "sosis bakar" + ], + "en_answers": [ + "grilled sausage" + ], + "count": 1 + }, + { + "answers": [ + "pop ice" + ], + "en_answers": [ + "pop ice" + ], + "count": 1 + }, + { + "answers": [ + "burger", + "hamburger" + ], + "en_answers": [ + "burger" + ], + "count": 1 + }, + { + "answers": [ + "és krim" + ], + "en_answers": [ + "ice cream" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-16": { + "question": "Dina umur sabaraha murangkalih mimiti asup ka PAUD di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 4).)", + "en_question": "At what age do kids start preschool in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "1" + ], + "count": 4 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "2" + ], + "count": 2 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "3" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-17": { + "question": "Naon olahraga populer saatos sakola pikeun sakola dasar di Jawa Barat?", + "en_question": "What is a popular afterschool sport for elementary schools in your country?", + "annotations": [ + { + "answers": [ + "maén bal", + "bal", + "sépak bal", + "maen bal", + "sepak bal", + "bal sepak", + "bal sépak", + "maen bal", + "sepak bal", + "bal sepak" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "voli" + ], + "en_answers": [ + "volleyball" + ], + "count": 2 + }, + { + "answers": [ + "badminton", + "bulu tangkis", + "bultang" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "futsal" + ], + "en_answers": [ + "futsal" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-18": { + "question": "Pelajaran naon nu dicokot lesna ku murid SD di Jawa Barat?", + "en_question": "For which subject do elementary students get private education in your country?", + "annotations": [ + { + "answers": [ + "matematika", + "matématika" + ], + "en_answers": [ + "mathematics", + "math" + ], + "count": 5 + }, + { + "answers": [ + "basa inggris" + ], + "en_answers": [ + "english" + ], + "count": 3 + }, + { + "answers": [ + "calistung" + ], + "en_answers": [ + "reading, writing, and arithmetic", + "reading, writing, and counting" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-19": { + "question": "Naon basa kadua anu populer pikeun murid SMA di Jawa Barat?", + "en_question": "What is a popular second language for high school students in your country?", + "annotations": [ + { + "answers": [ + "basa indonesia" + ], + "en_answers": [ + "indonesian" + ], + "count": 4 + }, + { + "answers": [ + "basa inggris" + ], + "en_answers": [ + "english" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-21": { + "question": "Mata pelajaran naon nu pang pentingna pikeun atikan budak berbakat di Jawa Barat?", + "en_question": "Which subject is the most important for gifted education in your country?", + "annotations": [ + { + "answers": [ + "matematika", + "matématika" + ], + "en_answers": [ + "mathematics", + "math" + ], + "count": 2 + }, + { + "answers": [ + "basa inggris" + ], + "en_answers": [ + "english" + ], + "count": 2 + }, + { + "answers": [ + "ipa", + "ilmu pengetahuan alam" + ], + "en_answers": [ + "natural science" + ], + "count": 1 + }, + { + "answers": [ + "ppkn" + ], + "en_answers": [ + "civic education" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Al-en-32": { + "question": "Naon kadaharan utama pikeun Poe Sukur di Jawa Barat?", + "en_question": "What is the main dish for Thanksgiving in your country?", + "annotations": [ + { + "answers": [ + "tumpeng" + ], + "en_answers": [ + "cone-shaped rice", + "tumpeng" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 3, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-33": { + "question": "Naon nu dilakukeun ku urang Sunda pikeun ngarayakeun poé Halloween di Jawa Barat?", + "en_question": "What do people do to celebrate Halloween in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-34": { + "question": "Naon nu dilakukeun ku urang Sunda pikeun ngarayakeun Poé Taun Anyar di Jawa Barat?", + "en_question": "What do people do to celebrate New Year's Day in your country?", + "annotations": [ + { + "answers": [ + "babakar", + "babakaran", + "bebeuleuman" + ], + "en_answers": [ + "bbq", + "barbeque" + ], + "count": 3 + }, + { + "answers": [ + "nyeungeut kembang api", + "ngahurungkeun kembang api" + ], + "en_answers": [ + "lighting fireworks", + "firework" + ], + "count": 2 + }, + { + "answers": [ + "ngariung" + ], + "en_answers": [ + "gathering" + ], + "count": 1 + }, + { + "answers": [ + "babakaran saté", + "babakaran sate" + ], + "en_answers": [ + "grilling satay" + ], + "count": 1 + }, + { + "answers": [ + "ulin ka pusat kota" + ], + "en_answers": [ + "go to downtown" + ], + "count": 1 + }, + { + "answers": [ + "botram" + ], + "en_answers": [ + "eating together" + ], + "count": 1 + }, + { + "answers": [ + "ulin ka puncak" + ], + "en_answers": [ + "go to puncak" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-35": { + "question": "Naon nu dilakukeun ku urang Sunda pikeun ngarayakeun Natal di Jawa Barat?", + "en_question": "What do people do to celebrate Christmas in your country?", + "annotations": [ + { + "answers": [ + "ngariung kulawarga", + "ngumpul jeung kulawarga", + "kumpul kulawargi" + ], + "en_answers": [ + "family gathering" + ], + "count": 3 + }, + { + "answers": [ + "doa", + "ibadah" + ], + "en_answers": [ + "praying" + ], + "count": 2 + }, + { + "answers": [ + "ulin ka pantai" + ], + "en_answers": [ + "go to the beach" + ], + "count": 1 + }, + { + "answers": [ + "ulin ka mal" + ], + "en_answers": [ + "go to the mall" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-36": { + "question": "Naon kadaharan anu pakait jeung Halloween di Jawa Barat?", + "en_question": "What food is associated with Halloween in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-37": { + "question": "Naon kadaharan anu pakait sareng Natal di Jawa Barat?", + "en_question": "What food is associated with Christmas in your country?", + "annotations": [], + "idks": { + "idk": 4, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Al-en-38": { + "question": "Naon kadaharan anu pakait sareng poé Valentine di Jawa Barat?", + "en_question": "What food is associated with Valentine's day in your country?", + "annotations": [ + { + "answers": [ + "coklat" + ], + "en_answers": [ + "chocolate" + ], + "count": 4 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Al-en-39": { + "question": "Naon nu biasa didahar ku urang Sunda dina poé ulang taun di Jawa Barat?", + "en_question": "What do people eat on their birthday in your country?", + "annotations": [ + { + "answers": [ + "tumpeng", + "sangu tumpeng" + ], + "en_answers": [ + "cone-shaped rice", + "tumpeng" + ], + "count": 4 + }, + { + "answers": [ + "kuéh bolu", + "kueh bolu", + "kue bolu", + "kué bolu" + ], + "en_answers": [ + "sponge cake" + ], + "count": 1 + }, + { + "answers": [ + "sangu uduk", + "uduk" + ], + "en_answers": [ + "uduk rice" + ], + "count": 1 + }, + { + "answers": [ + "kuéh ulang taun", + "kueh ulang tahun", + "kueh ulang taun", + "kueh tepang taun", + "kuéh tepang taun", + "kué ulang tahun", + "kué tepang taun", + "kue ulang tahun" + ], + "en_answers": [ + "birthday cake" + ], + "count": 1 + }, + { + "answers": [ + "kueh", + "kuéh" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "sangu liwet", + "liwet" + ], + "en_answers": [ + "liwet rice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-40": { + "question": "Naon tempat wisata alam anu populer pikeun kulawarga liburan jeung barudak leutik di Jawa Barat?", + "en_question": "What is a popular outdoor place for families to have fun with little kids in your country?", + "annotations": [ + { + "answers": [ + "taman safari indonesia", + "taman safari" + ], + "en_answers": [ + "indonesia safari park", + "safari park" + ], + "count": 2 + }, + { + "answers": [ + "kebun raya bogor", + "kebon raya bogor", + "krb" + ], + "en_answers": [ + "bogor botanical gardens" + ], + "count": 2 + }, + { + "answers": [ + "farm house lembang", + "farm house" + ], + "en_answers": [ + "farm house lembang" + ], + "count": 1 + }, + { + "answers": [ + "gunung tangkuban parahu", + "tangkuban parahu" + ], + "en_answers": [ + "tangkuban perahu" + ], + "count": 1 + }, + { + "answers": [ + "pantai pangandaran", + "pangandaran" + ], + "en_answers": [ + "pangandaran beach" + ], + "count": 1 + }, + { + "answers": [ + "pamandian cipanas garut" + ], + "en_answers": [ + "garut hot springs" + ], + "count": 1 + }, + { + "answers": [ + "taman wisata" + ], + "en_answers": [ + "tourist park" + ], + "count": 1 + }, + { + "answers": [ + "curug" + ], + "en_answers": [ + "waterfall" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Al-en-43": { + "question": "Naon kagiatan di jero rohangan anu populer pikeun kulawarga di Jawa Barat?", + "en_question": "What is a popular indoor activity for families in your country?", + "annotations": [ + { + "answers": [ + "lalajo tv", + "lalajo tipi" + ], + "en_answers": [ + "watching tv" + ], + "count": 3 + }, + { + "answers": [ + "ngaliwet", + "dahar babarengan" + ], + "en_answers": [ + "eat together" + ], + "count": 2 + }, + { + "answers": [ + "nongton bareng" + ], + "en_answers": [ + "watch together" + ], + "count": 1 + }, + { + "answers": [ + "trans studio" + ], + "en_answers": [ + "trans studio" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-02": { + "question": "Di mana mahasiswa universitas tuang siang di Jawa Barat?", + "en_question": "Where do university students have lunch in your country?", + "annotations": [ + { + "answers": [ + "kantin", + "kantin kampus" + ], + "en_answers": [ + "canteen", + "campus canteen" + ], + "count": 3 + }, + { + "answers": [ + "warung sangu", + "warteg" + ], + "en_answers": [ + "rice stall" + ], + "count": 2 + }, + { + "answers": [ + "pujaséra", + "pujasera" + ], + "en_answers": [ + "food court" + ], + "count": 1 + }, + { + "answers": [ + "warung padang" + ], + "en_answers": [ + "padang food stall" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-03": { + "question": "Dina bulan sabaraha biasana ujian ahir semester di SMA di Jawa Barat diayakeun? (Pasihkeun nomer Arab (1~12) wungkul.)", + "en_question": "Which month is the final exam term usually scheduled at high schools in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 4 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 3 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "11" + ], + "en_answers": [ + "11" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-08": { + "question": "Sabaraha jam sapoé biasana murid di Jawa Barat nyeepkeun waktosna di SMA? (Pasihkeun angka Arab dina wangun bilangan bulat (0~24), tanpa titik desimal.)", + "en_question": "How many hours a day do students in your country usually spend at high school? (Provide Arabic numerals in integers (0~24), without any decimal points.)", + "annotations": [ + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 4 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 3 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-09": { + "question": "Sabaraha basa nu diajarkeun ka murid di SMA di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 5).)", + "en_question": "How many languages do students study at high school in your country? (Provide Arabic numerals (e.g., 5) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 4 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 3 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-34": { + "question": "Naon olahraga tim nu pang populerna dipaénkeun di sakola di Jawa Barat?", + "en_question": "What is the most popular sport played in a team at school in your country?", + "annotations": [ + { + "answers": [ + "maén bal", + "bal sepak", + "sépak bal", + "maen bal", + "sepak bal", + "bal sépak" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "baskét", + "basket" + ], + "en_answers": [ + "basketball" + ], + "count": 3 + }, + { + "answers": [ + "voli" + ], + "en_answers": [ + "volleyball" + ], + "count": 2 + }, + { + "answers": [ + "futsal" + ], + "en_answers": [ + "futsal" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-35": { + "question": "Saha komentator olahraga nu pang populerna di Jawa Barat?", + "en_question": "Who is the most popular sport commentator in your country?", + "annotations": [ + { + "answers": [ + "valentino jebret", + "bung jebret" + ], + "en_answers": [ + "valentino jebret", + "mr. jebret" + ], + "count": 2 + }, + { + "answers": [ + "bung kusnaeni" + ], + "en_answers": [ + "mr. kusnaeni" + ], + "count": 1 + }, + { + "answers": [ + "bung towél" + ], + "en_answers": [ + "mr. towél" + ], + "count": 1 + } + ], + "idks": { + "not sure": 1, + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-36": { + "question": "Naon tim olahraga nu pang populerna di Jawa Barat?", + "en_question": "What is the most popular sport team in your country?", + "annotations": [ + { + "answers": [ + "persib", + "persib bandung" + ], + "en_answers": [ + "persib", + "persib bandung" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "An-ar-43": { + "question": "Naon tempat-tempat umum atawa lokasi di mana jalma-jalma di Jawa Barat biasana ngariung pikeun nongton siaran olahraga?", + "en_question": "What are the common places or venues where individuals in your country usually gather to watch sports broadcasts?", + "annotations": [ + { + "answers": [ + "pos ronda", + "pos kamling" + ], + "en_answers": [ + "security post" + ], + "count": 3 + }, + { + "answers": [ + "kafé", + "café", + "kafe", + "cafe" + ], + "en_answers": [ + "cafe" + ], + "count": 3 + }, + { + "answers": [ + "warkop" + ], + "en_answers": [ + "cafe" + ], + "count": 1 + }, + { + "answers": [ + "stadion" + ], + "en_answers": [ + "stadium" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-05": { + "question": "Sabaraha kali tuang sapoé nu biasa dilakukeun ku urang Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 5).)", + "en_question": "How many meals per day do people from your country usually have? (Provide Arabic numerals (e.g., 5) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 5 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-06": { + "question": "Waktos dahar naon nu pang pentingna dina sapoé keur urang Jawa Barat?", + "en_question": "Which is the most important meal of the day to people from your country?", + "annotations": [ + { + "answers": [ + "dahar beurang", + "beurang" + ], + "en_answers": [ + "lunch" + ], + "count": 3 + }, + { + "answers": [ + "nyarap", + "sasarap", + "dahar isuk" + ], + "en_answers": [ + "breakfast" + ], + "count": 2 + }, + { + "answers": [ + "peuting", + "dahar peuting" + ], + "en_answers": [ + "dinner" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-08": { + "question": "Naon bahan panganan anu pang ilaharna dipake kanggo diet urang Jawa Barat?", + "en_question": "What is the most common ingredient used in your country's diet?", + "annotations": [ + { + "answers": [ + "sayuran", + "sayur" + ], + "en_answers": [ + "vegetable" + ], + "count": 2 + }, + { + "answers": [ + "sampeu" + ], + "en_answers": [ + "cassava" + ], + "count": 1 + }, + { + "answers": [ + "bungbuahan", + "buah, bubuahan" + ], + "en_answers": [ + "fruit" + ], + "count": 1 + }, + { + "answers": [ + "sangu bereum" + ], + "en_answers": [ + "red rice" + ], + "count": 1 + }, + { + "answers": [ + "lalapan", + "lalaban" + ], + "en_answers": [ + "raw vegetable" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-09": { + "question": "Naon biasana nu didahar ku urang Jawa Barat pikeun hidangan pamungkas?", + "en_question": "What do people from your country usually eat for dessert?", + "annotations": [ + { + "answers": [ + "amis-amis" + ], + "en_answers": [ + "sweets" + ], + "count": 1 + }, + { + "answers": [ + "sop buah" + ], + "en_answers": [ + "fruit soup" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ca-sp-11": { + "question": "Poé naon dina saminggu biasana urang Sunda ngayakeun acara dahar kulawarga di Jawa Barat?", + "en_question": "Which day of the week do people usually organize a family meal in your country?", + "annotations": [ + { + "answers": [ + "minggu", + "poe minggu", + "poé minggu", + "dinten minggu" + ], + "en_answers": [ + "sunday" + ], + "count": 4 + }, + { + "answers": [ + "unggal poé", + "unggal poe", + "unggal dinten" + ], + "en_answers": [ + "every day", + "everyday" + ], + "count": 1 + }, + { + "answers": [ + "sabtu", + "poe sabtu", + "poé sabtu", + "dinten sabtu", + "poe saptu", + "poé saptu", + "dinten saptu" + ], + "en_answers": [ + "saturday" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ca-sp-14": { + "question": "Inuman panas naon nu pang populerna di Jawa Barat?", + "en_question": "Which is the most popular hot drink in your country?", + "annotations": [ + { + "answers": [ + "bajigur" + ], + "en_answers": [ + "bajigur" + ], + "count": 4 + }, + { + "answers": [ + "bandrék", + "bandrek" + ], + "en_answers": [ + "bandrek" + ], + "count": 2 + }, + { + "answers": [ + "kopi" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + }, + { + "answers": [ + "teh", + "téh", + "entéh", + "enteh" + ], + "en_answers": [ + "tea" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-19": { + "question": "Naon nu biasa diinum ku para nonoman ti Jawa Barat di klub peuting?", + "en_question": "What do young people from your country usually drink at the night club?", + "annotations": [ + { + "answers": [ + "bir" + ], + "en_answers": [ + "beer" + ], + "count": 2 + }, + { + "answers": [ + "anggur", + "wine" + ], + "en_answers": [ + "wine" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Ca-sp-21": { + "question": "Dina bulan sabaraha biasana urang Sunda nyandak liburan di Jawa Barat? (Pasihkeun nomer Arab (1~12) hungkul.)", + "en_question": "At which month do people usually take holidays in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ca-sp-29": { + "question": "Naon tradisi anu aya di Jawa Barat pikeun wengi Taun Anyar?", + "en_question": "What tradition is there in your country for New Year's Eve?", + "annotations": [ + { + "answers": [ + "babakaran", + "babakar", + "bebeuleuman" + ], + "en_answers": [ + "bbq", + "barbeque" + ], + "count": 4 + }, + { + "answers": [ + "meuleum petasan", + "ngahurungkeun kembang api", + "nyetél kembang api", + "nyetel kembang api" + ], + "en_answers": [ + "burning firecrackers", + "firecrackers", + "lighting fireworks", + "fireworks" + ], + "count": 3 + }, + { + "answers": [ + "ngariung" + ], + "en_answers": [ + "gathering" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-38": { + "question": "Naon jenis imah anu umum pikeun kulawarga di Jawa Barat?", + "en_question": "Which is the typical type of house for a family in your country?", + "annotations": [ + { + "answers": [ + "imah tapak" + ], + "en_answers": [ + "landed house" + ], + "count": 3 + }, + { + "answers": [ + "imah panggung" + ], + "en_answers": [ + "stilt house" + ], + "count": 2 + }, + { + "answers": [ + "imah biasa" + ], + "en_answers": [ + "ordinary house" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-41": { + "question": "Di mana biasana para sepuh anu gumantung cicing di Jawa Barat?", + "en_question": "Where do the dependent elderly usually live in your country?", + "annotations": [ + { + "answers": [ + "imah anakna", + "imah budak", + "imah anak-anakna", + "imah anak anakna", + "imah budakna" + ], + "en_answers": [ + "child's house" + ], + "count": 3 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Ca-sp-42": { + "question": "Sabaraha lami (dina minggu) cuti ngalahirkeun di Jawa Barat pikeun ibu-ibu? (Pasihkeun angka Arab wungkul (contona, 20).)", + "en_question": "How long (in weeks) is your country's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 2 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ca-sp-43": { + "question": "Sabaraha lami (dina minggu) cuti ngalahirkeun pikeun bapa di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 20).)", + "en_question": "How long (in weeks) is your country's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Ca-sp-45": { + "question": "Naon jinis tujuan anu ilahar dipilih pikeun liburan kulawarga di Jawa Barat?", + "en_question": "What type of destination is commonly chosen for a family vacation in your country?", + "annotations": [ + { + "answers": [ + "basisir", + "ka pantai", + "pantai", + "ka basisir" + ], + "en_answers": [ + "beach", + "to the beach" + ], + "count": 3 + }, + { + "answers": [ + "ka taman hiburan", + "taman wisata", + "taman hiburan", + "ka taman wisata" + ], + "en_answers": [ + "to the amusement park", + "amusement park", + "tourist park" + ], + "count": 2 + }, + { + "answers": [ + "ka gunung", + "gunung" + ], + "en_answers": [ + "to the mountain", + "mountain" + ], + "count": 1 + }, + { + "answers": [ + "wisata alam", + "ka wisata alam" + ], + "en_answers": [ + "nature tourism", + "nature" + ], + "count": 1 + }, + { + "answers": [ + "kebon binatang", + "ka kebon binatang", + "ka bonbin", + "bonbin" + ], + "en_answers": [ + "zoo" + ], + "count": 1 + }, + { + "answers": [ + "curug", + "ka curug" + ], + "en_answers": [ + "waterfall" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-05": { + "question": "Olahraga naon nu pang dipikaresep ku para sepuh di Jawa Barat?", + "en_question": "What sports do seniors like the most in your country?", + "annotations": [ + { + "answers": [ + "maén bal", + "bal sepak", + "sepak bal" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 2 + }, + { + "answers": [ + "catur" + ], + "en_answers": [ + "chess" + ], + "count": 2 + }, + { + "answers": [ + "leumpang nyantéi", + "leumpang", + "leumpang nyanyei" + ], + "en_answers": [ + "walk" + ], + "count": 2 + }, + { + "answers": [ + "badminton", + "bulu tangkis", + "bultang" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-06": { + "question": "Olahraga naon nu pang dipikaresep dipaénkeun ku lalaki di Jawa Barat?", + "en_question": "What sports do men like to play the most in your country?", + "annotations": [ + { + "answers": [ + "maén bal", + "bal sepak", + "sépak bal", + "maen bal", + "sepak bal", + "bal sépak", + "bal" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "badminton", + "bulu tangkis", + "bultang" + ], + "en_answers": [ + "badminton" + ], + "count": 3 + }, + { + "answers": [ + "voli" + ], + "en_answers": [ + "volleyball" + ], + "count": 2 + }, + { + "answers": [ + "futsal" + ], + "en_answers": [ + "futsal" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-07": { + "question": "Saha atlit basket nu pang kasohorna di Jawa Barat?", + "en_question": "Who is the most famous basketball player in your country?", + "annotations": [], + "idks": { + "idk": 4, + "Basketball is not a popular sport in Jawa Barat": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-08": { + "question": "Naon olahraga nu pang populerna di kalangan barudak di Jawa Barat?", + "en_question": "What is the most popular sports among children in your country?", + "annotations": [ + { + "answers": [ + "maén bal", + "bal", + "sépak bal", + "maen bal", + "sepak bal", + "bal sépak" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 5 + }, + { + "answers": [ + "voli" + ], + "en_answers": [ + "volleyball" + ], + "count": 2 + }, + { + "answers": [ + "basket", + "baskét" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "badminton", + "bulu tangkis", + "bultang" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "ngojay" + ], + "en_answers": [ + "swim" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-09": { + "question": "Olahraga naon nu pang dipikaresep dipaénkeun ku awéwé di Jawa Barat?", + "en_question": "What sports do women like to play the most in your country?", + "annotations": [ + { + "answers": [ + "badminton", + "bulu tangkis", + "bultang" + ], + "en_answers": [ + "badminton" + ], + "count": 3 + }, + { + "answers": [ + "voli" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "zumba" + ], + "en_answers": [ + "zumba" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-11": { + "question": "Cabang olahraga naon nu pang lobana ngameunangan medali emas ku Jawa Barat di Olimpiade?", + "en_question": "What sports event has your country won the most gold medals at the Olympics?", + "annotations": [], + "idks": { + "idk": 4, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Gu-ch-15": { + "question": "Olahraga naon nu pang dipikaresep ku mahasiswa lalaki di universitas pikeun dipaénkeun di Jawa Barat?", + "en_question": "What sports do male students in university like to play the most in your country?", + "annotations": [ + { + "answers": [ + "maén bal", + "bal sepak", + "sépak bal", + "maen bal", + "sepak bal", + "bal sépak", + "bal" + ], + "en_answers": [ + "football", + "soccer" + ], + "count": 4 + }, + { + "answers": [ + "futsal" + ], + "en_answers": [ + "futsal" + ], + "count": 2 + }, + { + "answers": [ + "basket", + "baskét" + ], + "en_answers": [ + "basketball" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-16": { + "question": "Sabaraha jalma nu aya dina hiji kulawarga sacara rata-rata di Jawa Barat? (Pasihkeun nomer Arab (contona, 12) hungkul.)", + "en_question": "How many people are there in a family on average in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 4 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-18": { + "question": "Sabaraha jumlah budak anu biasana dipiboga ku pasangan di Jawa Barat? (Pasihan nomer Arab wungkul (contona, 12).)", + "en_question": "How many children do couples usually have in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 4 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-31": { + "question": "Sabaraha taun durasi sakola dasar di Jawa Barat? (Pasihkeun nomer Arab wungkul (contona, 12).)", + "en_question": "What is the duration of elementary school in years in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-32": { + "question": "Sabaraha taun wajib atikan di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 12).)", + "en_question": "What is the duration of compulsory education in years in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-33": { + "question": "Ti umur sabaraha murid-murid di Jawa Barat mimiti diajar basa kadua? (Pasihkeun angka Arab wungkul (contona, 12).)", + "en_question": "From which age do students start learning their second language in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 3 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-38": { + "question": "Sabaraha lila atikan sarjana di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 12).)", + "en_question": "What is the duration of undergraduate education in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-40": { + "question": "Tabuh sabaraha murid SD kelas handap réngsé sakola di Jawa Barat? (Pasihkeun dina format HH:MM (contona, 18:00, 09:00).)", + "en_question": "What time do younger elementary school students finish school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "12:00" + ], + "en_answers": [ + "12:00" + ], + "count": 4 + }, + { + "answers": [ + "10:00" + ], + "en_answers": [ + "10:00" + ], + "count": 1 + }, + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 1 + }, + { + "answers": [ + "11:00" + ], + "en_answers": [ + "11:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Gu-ch-41": { + "question": "Sabaraha alat musik anu biasa dipaénkeun ku murid-murid sakola dasar di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 12).)", + "en_question": "How many musical instruments do elementary school students in your country typically play? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 4 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 2 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-02": { + "question": "Poé naon dina saminggu nu dipikaresep ku urang Jawa Barat pikeun ngayakeun dahar bareng di pausahaan?", + "en_question": "What day of the week do people in your country prefer to have company dinners?", + "annotations": [ + { + "answers": [ + "jumaah", + "jumat" + ], + "en_answers": [ + "friday" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Ji-ko-03": { + "question": "Wewengkon/kota mana nu mibanda jumlah pausahaan kauangan pang lobana di Jawa Barat?", + "en_question": "Which region/city has the highest number of financial companies in your country?", + "annotations": [ + { + "answers": [ + "bandung" + ], + "en_answers": [ + "bandung" + ], + "count": 2 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-07": { + "question": "Naon pausahaan swasta nu pang kasohorna di Jawa Barat?", + "en_question": "What is the most famous private company in your country?", + "annotations": [ + { + "answers": [ + "indofood" + ], + "en_answers": [ + "indofood" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ji-ko-08": { + "question": "Sabaraha jumlah maksimal jam gawe mingguan di Jawa Barat? (Pasihkeun ngan angka Arab wungkul (contona, 12).)", + "en_question": "What is the maximum number of hours one can work per week in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 2 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + } + ], + "idks": { + "I don't know the regulation and usually many people or enteprise does not follow the regulation": 1, + "not sure": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-09": { + "question": "Naon biasana nu didahar ku jalma-jalma nalika aya ririungan pausahaan di Jawa Barat?", + "en_question": "What do people typically eat during company get-together in your country?", + "annotations": [ + { + "answers": [ + "sangu liwet" + ], + "en_answers": [ + "liwet rice" + ], + "count": 1 + }, + { + "answers": [ + "sangu kotak" + ], + "en_answers": [ + "boxed rice" + ], + "count": 1 + }, + { + "answers": [ + "parasmanan" + ], + "en_answers": [ + "buffet" + ], + "count": 1 + }, + { + "answers": [ + "sangu tumpeng" + ], + "en_answers": [ + "cone-shaped rice", + "tumpeng" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Ji-ko-14": { + "question": "Naon barang ékspor anu ngawakilan Jawa Barat?", + "en_question": "What is the representative export item of your country?", + "annotations": [ + { + "answers": [ + "sapatu" + ], + "en_answers": [ + "shoes" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not sure": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ji-ko-15": { + "question": "Sabaraha lami (dina jam) istirahat beurang anu biasa di Jawa Barat? (Pasihkeun angka Arab nepi ka hiji tempat desimal (contona, 2, 3.5) wungkul.)", + "en_question": "How long (in hours) is the typical lunch break in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-16": { + "question": "Di mana ibu-ibu cicing pikeun sababaraha waktu saatos ngalahirkeun pikeun pamulihan di Jawa Barat?", + "en_question": "Where do mothers stay for a certain period after childbirth for recovery in your country?", + "annotations": [ + { + "answers": [ + "imah" + ], + "en_answers": [ + "house" + ], + "count": 2 + }, + { + "answers": [ + "rumah sakit" + ], + "en_answers": [ + "hospital" + ], + "count": 2 + }, + { + "answers": [ + "imah mitoha" + ], + "en_answers": [ + "parents-in-law's house" + ], + "count": 1 + }, + { + "answers": [ + "puskésmas" + ], + "en_answers": [ + "public health center" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-19": { + "question": "Naon kembang anu pang mindengna dipasihkeun dina Dinten Kolot di Jawa Barat?", + "en_question": "What is your country's most commonly given flower on Parents' Day?", + "annotations": [ + { + "answers": [ + "mawar", + "eros" + ], + "en_answers": [ + "rose" + ], + "count": 2 + } + ], + "idks": { + "not-applicable": 2, + "idk": 1, + "no-answer": 0 + } + }, + "Ji-ko-22": { + "question": "Naon nu biasana dipésér ku jalma-jalma ngangge gajih munggaranana di masarakat Jawa Barat?", + "en_question": "What do people especially spend their first salary on in your country's society?", + "annotations": [ + { + "answers": [ + "hapé", + "hp", + "hape" + ], + "en_answers": [ + "handphone", + "mobile", + "cell phone", + "phone" + ], + "count": 3 + }, + { + "answers": [ + "baju" + ], + "en_answers": [ + "clothes" + ], + "count": 2 + }, + { + "answers": [ + "motor" + ], + "en_answers": [ + "motorcycle" + ], + "count": 1 + }, + { + "answers": [ + "kadaharan" + ], + "en_answers": [ + "food" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-24": { + "question": "Naon fasilitas rekreasi nu pang dipikaresep ku barudak di Jawa Barat?", + "en_question": "What is the most preferred recreational facility among children in your country?", + "annotations": [ + { + "answers": [ + "kolam renang", + "kolam ngojay" + ], + "en_answers": [ + "swimming pool" + ], + "count": 3 + }, + { + "answers": [ + "taman kota" + ], + "en_answers": [ + "city park" + ], + "count": 2 + }, + { + "answers": [ + "ayunan" + ], + "en_answers": [ + "swing" + ], + "count": 1 + }, + { + "answers": [ + "porosotan" + ], + "en_answers": [ + "slide" + ], + "count": 1 + }, + { + "answers": [ + "lapang putsal" + ], + "en_answers": [ + "futsal field" + ], + "count": 1 + }, + { + "answers": [ + "taman cai" + ], + "en_answers": [ + "water park" + ], + "count": 1 + }, + { + "answers": [ + "kebon binatang" + ], + "en_answers": [ + "zoo" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-25": { + "question": "Naon wae liburan anu sahubungan jeung kulawarga di Jawa Barat?", + "en_question": "What are the family-related holidays in your country?", + "annotations": [ + { + "answers": [ + "libur lebaran" + ], + "en_answers": [ + "eid holiday" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Ji-ko-26": { + "question": "Naon waé tahap-tahap penting nu patali jeung kamandirian barudak tina kolotna dina masarakat Jawa Barat?", + "en_question": "What are the key milestones associated with children's independence from their parents in your country's society?", + "annotations": [ + { + "answers": [ + "ngumbara" + ], + "en_answers": [ + "leaving home to make a living" + ], + "count": 1 + }, + { + "answers": [ + "saré sorangan", + "sare sorangan" + ], + "en_answers": [ + "sleep alone" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-27": { + "question": "Naon hadiah nu ilahar dibikeun nalika ngalongok kolot nu geus sepuh di Jawa Barat?", + "en_question": "What is the common gift you give when visiting elderly parents in your country?", + "annotations": [ + { + "answers": [ + "duit", + "artos" + ], + "en_answers": [ + "money" + ], + "count": 3 + }, + { + "answers": [ + "bubuahan", + "bungbuahan", + "buah" + ], + "en_answers": [ + "fruit", + "fruits" + ], + "count": 3 + }, + { + "answers": [ + "kadaharan" + ], + "en_answers": [ + "food" + ], + "count": 2 + }, + { + "answers": [ + "sembako" + ], + "en_answers": [ + "basic commodities" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-28": { + "question": "Iraha poé kahiji nu dirayakeun ku urang sanggeus aya orok nu lahir di Jawa Barat?", + "en_question": "When is the first day that people celebrate after a child is born in your country?", + "annotations": [ + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 1 + } + }, + "Ji-ko-29": { + "question": "Acara tepang taun umur sabaraha nu pang dirayakeun ageung-ageungan dina masarakat Jawa Barat?", + "en_question": "Which age's birthday is celebrated the most grandly in your country's society?", + "annotations": [ + { + "answers": [ + "17", + "17 taun" + ], + "en_answers": [ + "17", + "17 years" + ], + "count": 3 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 0 + } + }, + "Ji-ko-31": { + "question": "Di mana biasana murid SMP jeung SMA di Jawa Barat diajar pikeun ujian?", + "en_question": "Where do middle and high school students in your country usually study for exams?", + "annotations": [ + { + "answers": [ + "sakola", + "di sakola" + ], + "en_answers": [ + "school", + "at school" + ], + "count": 3 + }, + { + "answers": [ + "imah", + "imah nyalira", + "di imah" + ], + "en_answers": [ + "home", + "own home", + "house", + "at home" + ], + "count": 3 + }, + { + "answers": [ + "tempat lés", + "di tempat lés", + "di tempat les", + "tempat les" + ], + "en_answers": [ + "tutoring place", + "private tutoring place" + ], + "count": 2 + }, + { + "answers": [ + "perpustakaan", + "perpus", + "di perpustakaan", + "di perpus" + ], + "en_answers": [ + "library" + ], + "count": 2 + }, + { + "answers": [ + "di kelas", + "kelas" + ], + "en_answers": [ + "in the class", + "class" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-33": { + "question": "Ka mana biasana murid SMA di Jawa Barat angkat saatos dahar peuting?", + "en_question": "Where do high school students in your country usually go after dinner?", + "annotations": [ + { + "answers": [ + "saré di kamar", + "sare di kamar" + ], + "en_answers": [ + "sleep in the room" + ], + "count": 1 + }, + { + "answers": [ + "nangkring di warung" + ], + "en_answers": [ + "hanging out at the stall" + ], + "count": 1 + }, + { + "answers": [ + "nyoo hapé", + "nyoo hape" + ], + "en_answers": [ + "playing handphone", + "playing phone", + "playing cell phone", + "playing mobile" + ], + "count": 1 + }, + { + "answers": [ + "masigit", + "masjid", + "mesjid" + ], + "en_answers": [ + "mosque" + ], + "count": 1 + }, + { + "answers": [ + "balik ka imah" + ], + "en_answers": [ + "go home", + "home", + "house" + ], + "count": 1 + }, + { + "answers": [ + "ulin jeung babaturan" + ], + "en_answers": [ + "play with friends" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "There is no place or activity that high school student do after dinner": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-34": { + "question": "Kumaha murid-murid SD di Jawa Barat indit ka sakola?", + "en_question": "How do elementary school students in your country go to school?", + "annotations": [ + { + "answers": [ + "leumpang", + "mapah" + ], + "en_answers": [ + "walk" + ], + "count": 4 + }, + { + "answers": [ + "naek angkot", + "naék angkot" + ], + "en_answers": [ + "take a minibus", + "minibus" + ], + "count": 2 + }, + { + "answers": [ + "dianterkeun", + "dijajapkeun ku kolot" + ], + "en_answers": [ + "picked up", + "pick up", + "accompanied by parents" + ], + "count": 2 + }, + { + "answers": [ + "naék kendaraan umum", + "naek kendaraan umum" + ], + "en_answers": [ + "take public transportation", + "public transportation" + ], + "count": 1 + }, + { + "answers": [ + "naék ojeg", + "naek ojek", + "naék ojek" + ], + "en_answers": [ + "take a motorcycle taxi", + "motorcycle taxi" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-35": { + "question": "Naon bentuk atikan swasta anu pang umumna di Jawa Barat?", + "en_question": "What is the most common form of private education in your country?", + "annotations": [ + { + "answers": [ + "bimbel" + ], + "en_answers": [ + "tutoring place", + "private tutoring place" + ], + "count": 1 + }, + { + "answers": [ + "lés basa", + "les basa" + ], + "en_answers": [ + "language couse" + ], + "count": 1 + }, + { + "answers": [ + "les saenggeus sakola", + "lés saenggeus sakola" + ], + "en_answers": [ + "after school course", + "after-school course" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-36": { + "question": "Akademi/institut atikan swasta naon nu pang mindengna diiluan ku murid SMP atawa SMA di Jawa Barat?", + "en_question": "Which subject’s academy/private educational institute do middle or high students most frequently attend in your country?", + "annotations": [ + { + "answers": [ + "les ganesha operation", + "go", + "ganesha operation" + ], + "en_answers": [ + "ganesha operation tutoring", + "go" + ], + "count": 2 + }, + { + "answers": [ + "bimbel" + ], + "en_answers": [ + "tutoring" + ], + "count": 1 + }, + { + "answers": [ + "lés basa inggris", + "les basa inggris" + ], + "en_answers": [ + "english course" + ], + "count": 1 + }, + { + "answers": [ + "tempat lés-lésan", + "tempat lés lésan" + ], + "en_answers": [ + "place for tutoring" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-37": { + "question": "Naon jinis baju nu dipaké ku murid SMP jeung SMA ka sakola di Jawa Barat?", + "en_question": "What type of clothing do middle and high school students wear to school in your country?", + "annotations": [ + { + "answers": [ + "saragam", + "saragam biasa", + "saragam sakola", + "baju saragam sakola" + ], + "en_answers": [ + "uniform", + "ordinary uniform", + "school uniform" + ], + "count": 4 + }, + { + "answers": [ + "setélan batik", + "setelan batik" + ], + "en_answers": [ + "batik uniform" + ], + "count": 1 + }, + { + "answers": [ + "setélan pramuka", + "setelah pramuka" + ], + "en_answers": [ + "scout uniform" + ], + "count": 1 + }, + { + "answers": [ + "saragam bodas" + ], + "en_answers": [ + "white uniform" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-38": { + "question": "Jurusan naon nu dianggap pang héséna pikeun asup di Jawa Barat?", + "en_question": "Which major is considered the most difficult to gain admission to in your country?", + "annotations": [ + { + "answers": [ + "kedokteran", + "kadokteran" + ], + "en_answers": [ + "medical", + "medicine" + ], + "count": 5 + }, + { + "answers": [ + "téhnik", + "insinyur", + "tehnik", + "teknik", + "téknik" + ], + "en_answers": [ + "engineering" + ], + "count": 2 + }, + { + "answers": [ + "téknik informatika", + "téhnik informatika", + "tehnik informatika", + "teknik informatika" + ], + "en_answers": [ + "informatics engineering" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-39": { + "question": "Naon alat musik anu pang mindengna diajarkeun ka murid-murid sakola dasar di Jawa Barat?", + "en_question": "What is the most commonly learned musical instrument by elementary school students in your country?", + "annotations": [ + { + "answers": [ + "suling", + "suling rekorder" + ], + "en_answers": [ + "flute", + "recorder flute", + "recorder" + ], + "count": 3 + }, + { + "answers": [ + "pianika" + ], + "en_answers": [ + "melodica" + ], + "count": 2 + }, + { + "answers": [ + "angklung" + ], + "en_answers": [ + "angklung" + ], + "count": 1 + }, + { + "answers": [ + "kacapi" + ], + "en_answers": [ + "zither", + "kacapi" + ], + "count": 1 + }, + { + "answers": [ + "gamelan" + ], + "en_answers": [ + "gamelan" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-40": { + "question": "Naon nu biasa dilakukeun ku murid SMA dina waktos istirahat di sakola-sakola di Jawa Barat?", + "en_question": "What do high school students typically do during break time in schools in your country?", + "annotations": [ + { + "answers": [ + "jajan", + "jajan di kantin" + ], + "en_answers": [ + "snacking in the canteen" + ], + "count": 3 + }, + { + "answers": [ + "dahar", + "barang dahar" + ], + "en_answers": [ + "eat" + ], + "count": 2 + }, + { + "answers": [ + "ulin" + ], + "en_answers": [ + "play" + ], + "count": 1 + }, + { + "answers": [ + "maén bal", + "maen bal" + ], + "en_answers": [ + "play football" + ], + "count": 1 + }, + { + "answers": [ + "nongkrong" + ], + "en_answers": [ + "hanging out" + ], + "count": 1 + }, + { + "answers": [ + "ngobrol jeung babaturan" + ], + "en_answers": [ + "chatting with friends" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-41": { + "question": "Naon jinis sapatu nu dipaké ku murid di sakola-sakola di Jawa Barat?", + "en_question": "What kind of shoes do students wear in schools in your country?", + "annotations": [ + { + "answers": [ + "sapatu tali" + ], + "en_answers": [ + "lace-up shoes" + ], + "count": 2 + }, + { + "answers": [ + "sapatu warna hideung" + ], + "en_answers": [ + "black shoes" + ], + "count": 1 + }, + { + "answers": [ + "sapatu nb" + ], + "en_answers": [ + "nb shoes" + ], + "count": 1 + }, + { + "answers": [ + "sapatu hideung bodas" + ], + "en_answers": [ + "black white shoes" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-42": { + "question": "Naon waé mata pelajaran anu diperyogikeun dina ujian asup universitas di Jawa Barat?", + "en_question": "What are the required subjects in your country's university entrance exam?", + "annotations": [ + { + "answers": [ + "matematika", + "matématika" + ], + "en_answers": [ + "mathematics", + "math", + "maths" + ], + "count": 5 + }, + { + "answers": [ + "basa inggris" + ], + "en_answers": [ + "english language" + ], + "count": 4 + }, + { + "answers": [ + "basa indonesia", + "basa indonésia" + ], + "en_answers": [ + "indonesian language" + ], + "count": 3 + }, + { + "answers": [ + "tes potensi skolastik (tps)", + "tps", + "tes potensi skolastik" + ], + "en_answers": [ + "scholastic aptitude test (sat)" + ], + "count": 1 + }, + { + "answers": [ + "ipa", + "ilmu pengetahuan alam" + ], + "en_answers": [ + "natural science" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ji-ko-44": { + "question": "Wilayah mana (di jero kota) di Jawa Barat nu mibanda sumanget akademik pang luhurna?", + "en_question": "Which region (within a city) in your country has the highest academic fervor?", + "annotations": [ + { + "answers": [ + "bandung" + ], + "en_answers": [ + "bandung" + ], + "count": 3 + }, + { + "answers": [ + "depok" + ], + "en_answers": [ + "depok" + ], + "count": 1 + }, + { + "answers": [ + "bogor" + ], + "en_answers": [ + "bogor" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not sure": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ji-ko-45": { + "question": "Naon nu pang dipikaresep ku jalma-jalma dina festival kampus di Jawa Barat?", + "en_question": "What do people look forward to the most at university festivals in your country?", + "annotations": [ + { + "answers": [ + "jajanan", + "loba jajanan" + ], + "en_answers": [ + "snacks", + "lots of snacks" + ], + "count": 2 + }, + { + "answers": [ + "panggung musik", + "acara musik" + ], + "en_answers": [ + "music stage", + "music event" + ], + "count": 2 + }, + { + "answers": [ + "pintonan" + ], + "en_answers": [ + "show" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-01": { + "question": "Naon olahraga nu pang populerna kadua di Jawa Barat?", + "en_question": "What is the second most popular sport in your country?", + "annotations": [ + { + "answers": [ + "badminton", + "bulu tangkis", + "bultang" + ], + "en_answers": [ + "badminton" + ], + "count": 3 + }, + { + "answers": [ + "baskét", + "basket" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "voli" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "silat", + "pencak silat" + ], + "en_answers": [ + "silat" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-02": { + "question": "Naon olahraga pang populerna nu dipaénkeun tanpa bal di Jawa Barat?", + "en_question": "What is the most popular sport played without a ball in your country?", + "annotations": [ + { + "answers": [ + "lumpat" + ], + "en_answers": [ + "run" + ], + "count": 2 + }, + { + "answers": [ + "sapédahan", + "sapedahan" + ], + "en_answers": [ + "bicycle" + ], + "count": 1 + }, + { + "answers": [ + "jogging" + ], + "en_answers": [ + "jogging" + ], + "count": 1 + }, + { + "answers": [ + "senam" + ], + "en_answers": [ + "exercise" + ], + "count": 1 + }, + { + "answers": [ + "catur" + ], + "en_answers": [ + "chess" + ], + "count": 1 + }, + { + "answers": [ + "ngojay" + ], + "en_answers": [ + "swim" + ], + "count": 1 + }, + { + "answers": [ + "maenpo", + "silat", + "pencak silat" + ], + "en_answers": [ + "silat" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-09": { + "question": "Olahraga naon nu pang pakait jeung kelas luhur di Jawa Barat?", + "en_question": "What sports are most associated with the upper class in your country?", + "annotations": [ + { + "answers": [ + "golf" + ], + "en_answers": [ + "golf" + ], + "count": 3 + }, + { + "answers": [ + "manah" + ], + "en_answers": [ + "archery" + ], + "count": 1 + }, + { + "answers": [ + "naék kuda", + "naek kuda" + ], + "en_answers": [ + "house riding" + ], + "count": 1 + } + ], + "idks": { + "not sure": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-13": { + "question": "Naon olahraga cai nu pang populerna di Jawa Barat?", + "en_question": "What is the most popular water sport in your country?", + "annotations": [ + { + "answers": [ + "renang", + "ngojay" + ], + "en_answers": [ + "swim" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-14": { + "question": "Naon olahraga mental nu pang populerna di Jawa Barat?", + "en_question": "What is the most popular mental sport in your country?", + "annotations": [ + { + "answers": [ + "yoga" + ], + "en_answers": [ + "yoga" + ], + "count": 2 + }, + { + "answers": [ + "catur" + ], + "en_answers": [ + "chess" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-18": { + "question": "Sabaraha dinten libur per taun nu biasa ditarima ku pagawe di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 12).)", + "en_question": "How many holiday days per year does a standard worker gets in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 3 + }, + { + "answers": [ + "14" + ], + "en_answers": [ + "14" + ], + "count": 1 + }, + { + "answers": [ + "17" + ], + "en_answers": [ + "17" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-19": { + "question": "Wewengkon mana di Jawa Barat anu identik sareng tatanén?", + "en_question": "What region in your country has been traditionally associated with agriculture?", + "annotations": [ + { + "answers": [ + "cianjur" + ], + "en_answers": [ + "cianjur" + ], + "count": 3 + }, + { + "answers": [ + "indramayu" + ], + "en_answers": [ + "indramayu" + ], + "count": 2 + }, + { + "answers": [ + "subang" + ], + "en_answers": [ + "subang" + ], + "count": 1 + }, + { + "answers": [ + "garut" + ], + "en_answers": [ + "garut" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-21": { + "question": "Jam sabaraha, upami aya, biasana jalma-jalma ninggalkeun gawé pikeun dahar beurang di Jawa Barat? (Pasihkeun dina format HH:MM (contona, 18:00, 09:00).)", + "en_question": "What time, if any, do people usually leave work for lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "12:00" + ], + "en_answers": [ + "12:00" + ], + "count": 5 + }, + { + "answers": [ + "11:30" + ], + "en_answers": [ + "11:30" + ], + "count": 1 + }, + { + "answers": [ + "11:45" + ], + "en_answers": [ + "11:45" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-31": { + "question": "Tabuh sabaraha murid SMA biasana mulang ti sakola di Jawa Barat? (Pasihkeun dina format HH:MM (contona, 18:00, 09:00).)", + "en_question": "What time do high school students tend to leave school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "16:00" + ], + "en_answers": [ + "16:00" + ], + "count": 5 + }, + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 1 + }, + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 1 + }, + { + "answers": [ + "15:00" + ], + "en_answers": [ + "15:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-32": { + "question": "Olahraga naon nu biasa dipraktékkeun ku murid-murid SD di sakola di Jawa Barat?", + "en_question": "What sport do elementary school students tend to practice at school in your country?", + "annotations": [ + { + "answers": [ + "senam", + "renang" + ], + "en_answers": [ + "exercise", + "swim" + ], + "count": 3 + }, + { + "answers": [ + "maén bal", + "maen bal" + ], + "en_answers": [ + "football" + ], + "count": 2 + }, + { + "answers": [ + "ngojay" + ], + "en_answers": [ + "swim" + ], + "count": 1 + }, + { + "answers": [ + "senam lantéy", + "senam lantey", + "senam lantei" + ], + "en_answers": [ + "gymnastics" + ], + "count": 1 + }, + { + "answers": [ + "baskét", + "basket" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-36": { + "question": "Sabaraha lami (dina minggu) liburan usum panas di sakola dasar di Jawa Barat? (Pasihkeun ngan ukur angka Arab (contona, 7, 8).)", + "en_question": "How long (in weeks) are summer vacations at elementary schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [], + "idks": { + "not-applicable": 4, + "idk": 1, + "no-answer": 0 + } + }, + "Jo-sp-37": { + "question": "Sabaraha lila (dina minggu) liburan usum panas di universitas-universitas di Jawa Barat? (Pasihkeun ngan ukur angka Arab (contona, 7, 8).)", + "en_question": "How long (in weeks) are summer vacations at universities in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [], + "idks": { + "not-applicable": 4, + "idk": 1, + "no-answer": 0 + } + }, + "Jo-sp-39": { + "question": "Di umur sabaraha atikan dasar di Jawa Barat dimimitian? (Pasihkeun ngan ukur angka Arab (contona, 7, 8).)", + "en_question": "At what age does elementary education begin in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 5 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 2 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jo-sp-43": { + "question": "Sabaraha basa nu diajarkeun di atikan dasar salian ti basa resmi Jawa Barat? (Pasihkeun ngan ukur angka Arab (contona, 7, 8).)", + "en_question": "How many languages are studied in elementary education besides your country's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 5 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-01": { + "question": "Naon alat dahar nu ilahar dipaké ku masarakat di Jawa Barat?", + "en_question": "What eating utensils do people commonly used in your country?", + "annotations": [ + { + "answers": [ + "séndok", + "sendok" + ], + "en_answers": [ + "spoon" + ], + "count": 5 + }, + { + "answers": [ + "piring" + ], + "en_answers": [ + "plate" + ], + "count": 2 + }, + { + "answers": [ + "garpuh" + ], + "en_answers": [ + "fork" + ], + "count": 2 + }, + { + "answers": [ + "gelas" + ], + "en_answers": [ + "glass" + ], + "count": 1 + }, + { + "answers": [ + "leungeun" + ], + "en_answers": [ + "hand" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-04": { + "question": "Inuman naon nu resep dikonsumsi ku urang Jawa Barat?", + "en_question": "What soft drink do people in your country like to have?", + "annotations": [ + { + "answers": [ + "entéh", + "cai entéh", + "téh", + "ci entéh", + "teh", + "enteh", + "ci enteh", + "cai enteh" + ], + "en_answers": [ + "tea" + ], + "count": 3 + }, + { + "answers": [ + "bajigur" + ], + "en_answers": [ + "bajigur" + ], + "count": 2 + }, + { + "answers": [ + "cai bodas", + "cai hérang", + "ci bodas", + "ci herang", + "ci hérang" + ], + "en_answers": [ + "water" + ], + "count": 2 + }, + { + "answers": [ + "kopi" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + }, + { + "answers": [ + "sirop" + ], + "en_answers": [ + "syrup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-06": { + "question": "Naon inuman alkohol tradisional nu pang populerna di Jawa Barat?", + "en_question": "What is the most popular traditional alcohol in your country?", + "annotations": [ + { + "answers": [ + "ciu" + ], + "en_answers": [ + "ciu" + ], + "count": 2 + }, + { + "answers": [ + "lahang" + ], + "en_answers": [ + "lahang" + ], + "count": 1 + }, + { + "answers": [ + "tuak" + ], + "en_answers": [ + "palm wine" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Jod-ch-07": { + "question": "Sabaraha lami (dina jam) rata-rata jalma di Jawa Barat nyéépkeun waktos kanggo dahar peuting di réstoran? (Pasihkeun angka Arab nepi ka hiji titik desimal (contona, 2, 3.5) wungkul.)", + "en_question": "How long (in hours) on average does it take for people in your country to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-09": { + "question": "Tabuh sabaraha biasana urang tuang wengi di Jawa Barat? (Pasihkeun dina format HH:MM (contona, 18:00, 09:00).)", + "en_question": "What time do people usually have dinner in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "19:00" + ], + "en_answers": [ + "19:00" + ], + "count": 5 + }, + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 1 + }, + { + "answers": [ + "20:00" + ], + "en_answers": [ + "20:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-12": { + "question": "Naon jinis sop anu dipikaresep ku urang Sunda di Jawa Barat?", + "en_question": "What kind of soup do people from your country like to have?", + "annotations": [ + { + "answers": [ + "sop hayam" + ], + "en_answers": [ + "chicken soup" + ], + "count": 2 + }, + { + "answers": [ + "sop buntut" + ], + "en_answers": [ + "oxtail soup" + ], + "count": 2 + }, + { + "answers": [ + "sayur haseum", + "sayur asem" + ], + "en_answers": [ + "asem soup" + ], + "count": 2 + }, + { + "answers": [ + "soto" + ], + "en_answers": [ + "soto" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-13": { + "question": "Jajanan jalanan naon nu resep didahar ku urang Jawa Barat?", + "en_question": "What street food do people from your country like to eat?", + "annotations": [ + { + "answers": [ + "cilok" + ], + "en_answers": [ + "cilok" + ], + "count": 2 + }, + { + "answers": [ + "baso" + ], + "en_answers": [ + "meatball" + ], + "count": 2 + }, + { + "answers": [ + "mi hayam", + "emi hayam", + "emih hayam", + "mie hayam" + ], + "en_answers": [ + "chicken noodle" + ], + "count": 1 + }, + { + "answers": [ + "cimol" + ], + "en_answers": [ + "cimol" + ], + "count": 1 + }, + { + "answers": [ + "baso aci" + ], + "en_answers": [ + "baso aci" + ], + "count": 1 + }, + { + "answers": [ + "siomay" + ], + "en_answers": [ + "siomay" + ], + "count": 1 + }, + { + "answers": [ + "cireng" + ], + "en_answers": [ + "cireng" + ], + "count": 1 + }, + { + "answers": [ + "batagor" + ], + "en_answers": [ + "batagor" + ], + "count": 1 + }, + { + "answers": [ + "martabak" + ], + "en_answers": [ + "martabak" + ], + "count": 1 + }, + { + "answers": [ + "goréngan", + "gorengan" + ], + "en_answers": [ + "fritters" + ], + "count": 1 + }, + { + "answers": [ + "cuanki" + ], + "en_answers": [ + "cuanki" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-15": { + "question": "Naon jinis kadaharan laut anu resep didahar ku urang Jawa Barat?", + "en_question": "What kind of seafood do people from your country like to eat?", + "annotations": [ + { + "answers": [ + "beuleum lauk", + "lauk bakar" + ], + "en_answers": [ + "grilled fish" + ], + "count": 2 + }, + { + "answers": [ + "lauk sardén", + "lauk sarden" + ], + "en_answers": [ + "sardine fish" + ], + "count": 1 + }, + { + "answers": [ + "udang" + ], + "en_answers": [ + "shrimp" + ], + "count": 1 + }, + { + "answers": [ + "cumi asem amis" + ], + "en_answers": [ + "sour sweet squid" + ], + "count": 1 + }, + { + "answers": [ + "lauk asin" + ], + "en_answers": [ + "salted fish" + ], + "count": 1 + }, + { + "answers": [ + "kerang héjo", + "kerang hejo" + ], + "en_answers": [ + "green mussels" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-16": { + "question": "Naon festival pang gedéna di Jawa Barat?", + "en_question": "What is the biggest festival in your country?", + "annotations": [], + "idks": { + "idk": 2, + "no-answer": 1, + "not sure": 1, + "might be aplicable in cianjur": 1, + "not-applicable": 0 + } + }, + "Jod-ch-28": { + "question": "Naon moda transportasi umum anu pang mindengna dipake ku masarakat nalika ngumbara antarkota di Jawa Barat?", + "en_question": "What is the most commonly used public transport by people when travelling between cites in your country?", + "annotations": [ + { + "answers": [ + "beus" + ], + "en_answers": [ + "bus" + ], + "count": 4 + }, + { + "answers": [ + "kareta", + "karéta" + ], + "en_answers": [ + "train" + ], + "count": 3 + }, + { + "answers": [ + "mobil" + ], + "en_answers": [ + "car" + ], + "count": 1 + }, + { + "answers": [ + "motor" + ], + "en_answers": [ + "motorcycle" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-30": { + "question": "Naon hiasan atawa simbol husus nu pakait jeung hajatan pang gedéna di Jawa Barat?", + "en_question": "What are the specific decorations or symbols associated with the most biggest festival in your country?", + "annotations": [ + { + "answers": [ + "janur", + "janur konéng" + ], + "en_answers": [ + "young coconut leaf", + "yellow coconut leaves" + ], + "count": 2 + }, + { + "answers": [ + "siger" + ], + "en_answers": [ + "siger" + ], + "count": 1 + }, + { + "answers": [ + "kabaya" + ], + "en_answers": [ + "kebaya" + ], + "count": 1 + }, + { + "answers": [ + "emas" + ], + "en_answers": [ + "gold" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "Not sure": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-37": { + "question": "Olahraga naon nu pang dipikaresep ditongton ku awéwé di Jawa Barat?", + "en_question": "What sports do women like to watch the most in your country?", + "annotations": [ + { + "answers": [ + "badminton", + "bulu tangkis", + "bultang" + ], + "en_answers": [ + "badminton" + ], + "count": 4 + }, + { + "answers": [ + "baskét", + "basket" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "maén bal", + "bal", + "maen bal", + "sepak bal", + "bal sepak" + ], + "en_answers": [ + "football" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-38": { + "question": "Olahraga naon nu pang dipikaresep ditongton ku lalaki di Jawa Barat?", + "en_question": "What sports do men like to watch the most in your country?", + "annotations": [ + { + "answers": [ + "maén bal", + "bal", + "sépak bal", + "maen bal", + "bal sepak", + "bal sépak", + "sepak bal" + ], + "en_answers": [ + "football" + ], + "count": 5 + }, + { + "answers": [ + "badminton", + "bulu tangkis", + "bultang" + ], + "en_answers": [ + "badminton" + ], + "count": 3 + }, + { + "answers": [ + "baskét", + "basket" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-41": { + "question": "Naon kagiatan luang nu umum dilakukeun ku awéwé umur 20an di Jawa Barat?", + "en_question": "What is the common leisure activity that females in their 20s in your country engage in?", + "annotations": [ + { + "answers": [ + "nyo'o hape", + "nyoo hape" + ], + "en_answers": [ + "playing handphone", + "playing phone", + "playing cell phone", + "playing mobile" + ], + "count": 1 + }, + { + "answers": [ + "nongton pelem" + ], + "en_answers": [ + "watching movies" + ], + "count": 1 + }, + { + "answers": [ + "lalajo di bioskop" + ], + "en_answers": [ + "watching in the cinema" + ], + "count": 1 + }, + { + "answers": [ + "nangkring di café", + "nangkring di cafe", + "nangkring di kafe", + "nangkring di kafé" + ], + "en_answers": [ + "hanging out at the café" + ], + "count": 1 + }, + { + "answers": [ + "ulin ka mal" + ], + "en_answers": [ + "go to the mall" + ], + "count": 1 + }, + { + "answers": [ + "balanja" + ], + "en_answers": [ + "shopping" + ], + "count": 1 + }, + { + "answers": [ + "nongton drama korea" + ], + "en_answers": [ + "watching korean drama" + ], + "count": 1 + }, + { + "answers": [ + "ngarumpi" + ], + "en_answers": [ + "gossiping" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-42": { + "question": "Naon kagiatan luang nu umum dilakukeun ku lalaki nu umurna 20an di Jawa Barat?", + "en_question": "What is the common leisure activity that males in their 20s in your country engage in?", + "annotations": [ + { + "answers": [ + "maen games", + "maén game", + "maen game", + "maén games" + ], + "en_answers": [ + "playing games" + ], + "count": 2 + }, + { + "answers": [ + "nyo'o hape", + "nyoo hape" + ], + "en_answers": [ + "playing handphone", + "playing phone", + "playing cell phone", + "playing mobile" + ], + "count": 1 + }, + { + "answers": [ + "putsal", + "futsal" + ], + "en_answers": [ + "futsal" + ], + "count": 1 + }, + { + "answers": [ + "nangkring di café", + "nangkring di cafe", + "nangkring di kafe", + "nangkring di kafé" + ], + "en_answers": [ + "hanging out at the café" + ], + "count": 1 + }, + { + "answers": [ + "lalajo di bioskop" + ], + "en_answers": [ + "watching in the cinema" + ], + "count": 1 + }, + { + "answers": [ + "nongkrong" + ], + "en_answers": [ + "hanging out" + ], + "count": 1 + }, + { + "answers": [ + "ulin" + ], + "en_answers": [ + "play" + ], + "count": 1 + }, + { + "answers": [ + "nguseup" + ], + "en_answers": [ + "fishing" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-46": { + "question": "Sabaraha lami (dina jam) biasana jalma-jalma di Jawa Barat nyandak waktos istirahat saatos dahar beurang dina dinten gawé? (Pasihkeun angka Arab nepi ka hiji titik desimal (contona, 2, 3.5) wungkul.)", + "en_question": "How long (in hours) do people usually take a break after lunch on a weekday in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 3 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + }, + { + "answers": [ + "0.5" + ], + "en_answers": [ + "0.5" + ], + "count": 1 + }, + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-48": { + "question": "Naon nu sok didahar ku jalma-jalma nalika dahar beurang dina dinten gawé di Jawa Barat?", + "en_question": "What do people eat for lunch during the working days in your country?", + "annotations": [ + { + "answers": [ + "kadaharan warteg", + "warteg" + ], + "en_answers": [ + "warteg food", + "warteg" + ], + "count": 2 + }, + { + "answers": [ + "sangu" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "baso" + ], + "en_answers": [ + "meatball" + ], + "count": 1 + }, + { + "answers": [ + "siomay" + ], + "en_answers": [ + "siomay" + ], + "count": 1 + }, + { + "answers": [ + "sangu padang" + ], + "en_answers": [ + "padang rice" + ], + "count": 1 + }, + { + "answers": [ + "sangu jeung lauk" + ], + "en_answers": [ + "rice and side dish" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-50": { + "question": "Sabaraha rata-rata waktos di jalan indit-balik (dina menit) pikeun jalma di Jawa Barat? (Pasihkeun nomer Arab (contona, 1) hungkul.)", + "en_question": "What is the average commute time (in minutes) for people in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 2 + }, + { + "answers": [ + "45" + ], + "en_answers": [ + "45" + ], + "count": 1 + }, + { + "answers": [ + "90" + ], + "en_answers": [ + "90" + ], + "count": 1 + }, + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 1 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Jod-ch-51": { + "question": "Naon moda transportasi anu pang umumna dipaké ku jalma-jalma pikeun indit gawé di Jawa Barat?", + "en_question": "What is the most common transportation that people take to get to work in your country?", + "annotations": [ + { + "answers": [ + "angkot" + ], + "en_answers": [ + "minibus" + ], + "count": 4 + }, + { + "answers": [ + "motor" + ], + "en_answers": [ + "motorcycle" + ], + "count": 3 + }, + { + "answers": [ + "beus" + ], + "en_answers": [ + "bus" + ], + "count": 1 + }, + { + "answers": [ + "karéta", + "kareta" + ], + "en_answers": [ + "train" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-54": { + "question": "Sabaraha lami (dina poé) cuti nikah di Jawa Barat? (Pasihkeun angka Arab (contona, 12) hungkul.)", + "en_question": "How long (in days) is the marriage leave in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 2 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-56": { + "question": "Sabaraha umur pensiunan anu umum pikeun awéwé di Jawa Barat? (Pasihkeun angka Arab (contona, 12) hungkul.)", + "en_question": "What is the typical retirement age for women in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 4 + }, + { + "answers": [ + "65" + ], + "en_answers": [ + "65" + ], + "count": 2 + } + ], + "idks": { + "not sure": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-57": { + "question": "Sabaraha umur pensiunan anu umum pikeun lalaki di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 12).)", + "en_question": "What is the typical retirement age for men in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "60" + ], + "en_answers": [ + "60" + ], + "count": 4 + }, + { + "answers": [ + "65" + ], + "en_answers": [ + "65" + ], + "count": 2 + } + ], + "idks": { + "not sure": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-58": { + "question": "Padaleman naon nu pang dihargaan di Jawa Barat?", + "en_question": "Which profession is the most respected in your country?", + "annotations": [ + { + "answers": [ + "pns", + "pegawai negeri sipil", + "pagawei negeri sipil", + "pegawai negri sipil", + "pagawai negri sipil" + ], + "en_answers": [ + "civil servant" + ], + "count": 3 + }, + { + "answers": [ + "dokter" + ], + "en_answers": [ + "doctor" + ], + "count": 3 + }, + { + "answers": [ + "guru" + ], + "en_answers": [ + "teacher" + ], + "count": 2 + }, + { + "answers": [ + "wirausaha" + ], + "en_answers": [ + "entrepreneur" + ], + "count": 1 + }, + { + "answers": [ + "pegawé kantoran" + ], + "en_answers": [ + "office worker" + ], + "count": 1 + }, + { + "answers": [ + "ustad" + ], + "en_answers": [ + "ustadz" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-60": { + "question": "Sabaraha lila (dina jam) umumna jam gawé poean di Jawa Barat? (Pasihkeun angka Arab (0~24) hungkul.)", + "en_question": "What is the duration (in hours) of a typical workday in your country? (Provide Arabic numerals (0~24) only.)", + "annotations": [ + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 3 + }, + { + "answers": [ + "9" + ], + "en_answers": [ + "9" + ], + "count": 2 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-61": { + "question": "Padamelan naon nu pang dipikaresep ku awéwé di Jawa Barat?", + "en_question": "Which occupation is most preferred among females in your country?", + "annotations": [ + { + "answers": [ + "guru" + ], + "en_answers": [ + "teacher" + ], + "count": 1 + }, + { + "answers": [ + "pagawé kantoran", + "pagawe kantoran", + "pagawei kantoran" + ], + "en_answers": [ + "office worker" + ], + "count": 1 + }, + { + "answers": [ + "pns", + "pegawai negeri sipil", + "pagawei negeri sipil", + "pegawai negri sipil", + "pagawai negri sipil" + ], + "en_answers": [ + "civil servant" + ], + "count": 1 + }, + { + "answers": [ + "karyawan" + ], + "en_answers": [ + "employee" + ], + "count": 1 + }, + { + "answers": [ + "parawat" + ], + "en_answers": [ + "nurse" + ], + "count": 1 + }, + { + "answers": [ + "dokter" + ], + "en_answers": [ + "doctor" + ], + "count": 1 + } + ], + "idks": { + "not sure": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Jod-ch-62": { + "question": "Padamelan naon nu pang dipikaresep ku lalaki di Jawa Barat?", + "en_question": "Which occupation is most preferred among males in your country?", + "annotations": [ + { + "answers": [ + "pns", + "pegawai negeri sipil", + "pagawei negeri sipil", + "pegawai negri sipil", + "pagawai negri sipil" + ], + "en_answers": [ + "civil servant" + ], + "count": 3 + }, + { + "answers": [ + "buruh pabrik" + ], + "en_answers": [ + "factory worker" + ], + "count": 1 + }, + { + "answers": [ + "pagawé kantoran", + "pagawe kantoran", + "pagawei kantoran" + ], + "en_answers": [ + "office worker" + ], + "count": 1 + }, + { + "answers": [ + "polisi" + ], + "en_answers": [ + "police" + ], + "count": 1 + }, + { + "answers": [ + "insinyur" + ], + "en_answers": [ + "engineer" + ], + "count": 1 + }, + { + "answers": [ + "guru" + ], + "en_answers": [ + "teacher" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-17": { + "question": "Sacara rata-rata, sabaraha jauh murid-murid di Jawa Barat biasana nuluykeun atikanana? (contona, sakola dasar, sakola menengah)", + "en_question": "On average, how far do students typically pursue their education in your country? (e.g., elementary, high school)", + "annotations": [ + { + "answers": [ + "sakola sma", + "sma", + "sakola menengah luhur", + "sakola menengah atas" + ], + "en_answers": [ + "high school" + ], + "count": 4 + }, + { + "answers": [ + "kuliah" + ], + "en_answers": [ + "college" + ], + "count": 1 + }, + { + "answers": [ + "smp", + "sakola smp", + "sakola menengah pertama" + ], + "en_answers": [ + "junior high school" + ], + "count": 1 + }, + { + "answers": [ + "sakola menengah" + ], + "en_answers": [ + "secondary school" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-24": { + "question": "Basa naon nu diajarkeun di sakola-sakola di Jawa Barat salian ti Basa Inggris?", + "en_question": "What language is taught in schools in your country besides English?", + "annotations": [ + { + "answers": [ + "basa indonesia", + "basa indonésia", + "indonesia", + "indonésia" + ], + "en_answers": [ + "indonesian language" + ], + "count": 4 + }, + { + "answers": [ + "basa sunda", + "sunda" + ], + "en_answers": [ + "sundanese language" + ], + "count": 2 + }, + { + "answers": [ + "jepang", + "basa jepang" + ], + "en_answers": [ + "japanese language" + ], + "count": 2 + }, + { + "answers": [ + "jerman", + "basa jerman" + ], + "en_answers": [ + "german laguange" + ], + "count": 2 + }, + { + "answers": [ + "basa arab", + "arab" + ], + "en_answers": [ + "arabic language" + ], + "count": 1 + }, + { + "answers": [ + "basa daerah", + "daerah" + ], + "en_answers": [ + "regional language" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-30": { + "question": "Poé naon waé dina saminggu sakola-sakola di Jawa Barat téh libur?", + "en_question": "What days of the week are schools closed in your country?", + "annotations": [ + { + "answers": [ + "minggu", + "minggon" + ], + "en_answers": [ + "sunday" + ], + "count": 5 + }, + { + "answers": [ + "sabtu", + "saptu" + ], + "en_answers": [ + "saturday" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-32": { + "question": "Naon kadaharan anu biasana disayogikeun ku nu boga hajat pikeun tamu di Jawa Barat?", + "en_question": "What food do the hosts usually prepare for the guests in your country?", + "annotations": [ + { + "answers": [ + "ranginang" + ], + "en_answers": [ + "ranginang" + ], + "count": 1 + }, + { + "answers": [ + "wajit" + ], + "en_answers": [ + "wajit" + ], + "count": 1 + }, + { + "answers": [ + "olahan daging", + "daging" + ], + "en_answers": [ + "meat" + ], + "count": 1 + }, + { + "answers": [ + "bungbuahan", + "bubuahan", + "buah" + ], + "en_answers": [ + "fruits" + ], + "count": 1 + }, + { + "answers": [ + "kadaharan ringan" + ], + "en_answers": [ + "snacks" + ], + "count": 1 + }, + { + "answers": [ + "rendang hayam" + ], + "en_answers": [ + "chicken rendang" + ], + "count": 1 + }, + { + "answers": [ + "rendang" + ], + "en_answers": [ + "rendang" + ], + "count": 1 + }, + { + "answers": [ + "balado" + ], + "en_answers": [ + "balado" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ki-pe-34": { + "question": "Naon inuman anu biasa diinum nalika nyarap di Jawa Barat?", + "en_question": "What is the usual drink in the breakfast in your country?", + "annotations": [ + { + "answers": [ + "cai entéh", + "téh haneut", + "entéh", + "téh", + "teh", + "ci enteh", + "ci entéh", + "teh haneut", + "ci enteh haneut", + "ci entéh haneut", + "cai enteh haneut", + "cai entéh haneut", + "téh", + "teh", + "ci enteh" + ], + "en_answers": [ + "tea", + "warm tea" + ], + "count": 5 + }, + { + "answers": [ + "cai bodas", + "cai haneut" + ], + "en_answers": [ + "water", + "warm water" + ], + "count": 3 + }, + { + "answers": [ + "kopi" + ], + "en_answers": [ + "coffee" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-36": { + "question": "Salian ti kadaharan asli ti Jawa Barat, kadaharan ti nagara mana nu leuwih populér di Jawa Barat?", + "en_question": "Except the food original from your country, which country's food is more popular in your country?", + "annotations": [ + { + "answers": [ + "korea", + "koréa", + "korea selatan", + "korsel" + ], + "en_answers": [ + "korea", + "south korea" + ], + "count": 3 + }, + { + "answers": [ + "jepang" + ], + "en_answers": [ + "japan" + ], + "count": 2 + }, + { + "answers": [ + "amerika" + ], + "en_answers": [ + "america" + ], + "count": 1 + }, + { + "answers": [ + "china", + "cina" + ], + "en_answers": [ + "cina" + ], + "count": 1 + }, + { + "answers": [ + "arab" + ], + "en_answers": [ + "arabic" + ], + "count": 1 + }, + { + "answers": [ + "italia" + ], + "en_answers": [ + "italy" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-39": { + "question": "Naon kadaharan anu biasa disiapkeun pikeun piknik kulawarga di Jawa Barat?", + "en_question": "What food is usually prepared for a family picnic in your country?", + "annotations": [ + { + "answers": [ + "goreng hayam", + "hayam goreng" + ], + "en_answers": [ + "fried chicken" + ], + "count": 2 + }, + { + "answers": [ + "emih goréng", + "emi goréng", + "emi goreng", + "emih goreng", + "mi goréng", + "mi goreng" + ], + "en_answers": [ + "fried noodle" + ], + "count": 1 + }, + { + "answers": [ + "sangu goréng", + "sangu goreng" + ], + "en_answers": [ + "fried rice" + ], + "count": 1 + }, + { + "answers": [ + "bongko" + ], + "en_answers": [ + "bongko" + ], + "count": 1 + }, + { + "answers": [ + "goreng lauk" + ], + "en_answers": [ + "fried side dish" + ], + "count": 1 + }, + { + "answers": [ + "pop mie", + "pop mi", + "pop mih" + ], + "en_answers": [ + "instant noodles" + ], + "count": 1 + }, + { + "answers": [ + "sangu bungkus" + ], + "en_answers": [ + "wrapped rice" + ], + "count": 1 + }, + { + "answers": [ + "bubuahan", + "buah" + ], + "en_answers": [ + "fruits" + ], + "count": 1 + }, + { + "answers": [ + "sangu timbel" + ], + "en_answers": [ + "timbel rice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-40": { + "question": "Panganan naon ti Jawa Barat anu dianggap henteu pikaresepeun ku jalma-jalma di dunya?", + "en_question": "Which food from your country is considered disgusting by the rest of the world?", + "annotations": [ + { + "answers": [ + "asin peda" + ], + "en_answers": [ + "peda salted fish" + ], + "count": 1 + }, + { + "answers": [ + "tauco" + ], + "en_answers": [ + "tauco" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-43": { + "question": "Naon ngaran roti populér di Jawa Barat?", + "en_question": "What is the name of the popular bread in your country?", + "annotations": [ + { + "answers": [ + "roti unyil" + ], + "en_answers": [ + "unyil bread" + ], + "count": 2 + }, + { + "answers": [ + "bolu bakar tunggal" + ], + "en_answers": [ + "bakar tunggal sponge cake" + ], + "count": 1 + }, + { + "answers": [ + "roti gempol" + ], + "en_answers": [ + "gempol bread" + ], + "count": 1 + }, + { + "answers": [ + "venus", + "roti venus" + ], + "en_answers": [ + "venus" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ki-pe-51": { + "question": "Jam sabaraha kantor pamaréntah di Jawa Barat téh nutup? (Pasihkeun dina format HH:MM (contona, 18:00, 09:00).)", + "en_question": "What time of day are government offices closed in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "16:00" + ], + "en_answers": [ + "16:00" + ], + "count": 4 + }, + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 2 + }, + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 1 + }, + { + "answers": [ + "15:30" + ], + "en_answers": [ + "15:30" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ki-pe-53": { + "question": "Jam sabaraha normalna kantor pamaréntah di Jawa Barat muka? (Pasihkeun dina format HH:MM (contona, 18:00, 09:00).)", + "en_question": "What is the normal start time of government offices in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 4 + }, + { + "answers": [ + "07:00" + ], + "en_answers": [ + "07:00" + ], + "count": 2 + }, + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-01": { + "question": "Poé libur nasional naon nu pang panjangna di Jawa Barat?", + "en_question": "What national holiday has the longest duration in your country?", + "annotations": [ + { + "answers": [ + "idul fitri", + "idulfitri", + "libur idul fitri", + "libur idulfitri" + ], + "en_answers": [ + "eid al-fitr" + ], + "count": 3 + }, + { + "answers": [ + "lebaran", + "libur lebaran" + ], + "en_answers": [ + "eid" + ], + "count": 2 + }, + { + "answers": [ + "taun anyar", + "libur taun anyar" + ], + "en_answers": [ + "new year" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-02": { + "question": "Naon aktivitas umum anu dilakukeun ku urang Jawa Barat dina raraga miéling Poé Kamerdékaan?", + "en_question": "What are the common activities people from your country do to celebrate Independence day?", + "annotations": [ + { + "answers": [ + "upacara", + "upacara bendera" + ], + "en_answers": [ + "ceremony", + "flag ceremony" + ], + "count": 3 + }, + { + "answers": [ + "ngayakeun lomba", + "lomba agustusan", + "pasanggiri" + ], + "en_answers": [ + "holding a competition", + "august competition", + "competition" + ], + "count": 3 + }, + { + "answers": [ + "pawai", + "pawéi", + "pawei" + ], + "en_answers": [ + "parade" + ], + "count": 2 + }, + { + "answers": [ + "panjat pinang" + ], + "en_answers": [ + "pinang climbing" + ], + "count": 1 + }, + { + "answers": [ + "balap karung" + ], + "en_answers": [ + "balap karung" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-04": { + "question": "Naon nu dipasang di hareupeun imah nalika aya anggota kulawarga nu pupus di Jawa Barat?", + "en_question": "What is installed in front of the house when a family member dies in your country?", + "annotations": [ + { + "answers": [ + "bendera konéng", + "bandera konéng", + "bendéra konéng", + "bandera koneng", + "bendera koneng" + ], + "en_answers": [ + "yellow flag" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-05": { + "question": "Iraha biasana upacara atawa parayaan kahamilan diayakeun di Jawa Barat?", + "en_question": "When is a pregnancy celebration or ceremony usually held in your country?", + "annotations": [ + { + "answers": [ + "4 bulanan", + "opat bulanan", + "sasih ka opat", + "4 bulan" + ], + "en_answers": [ + "fourth-months ceremony", + "4 months" + ], + "count": 4 + }, + { + "answers": [ + "7 bulanan", + "tujuh bulanan", + "7 bulan", + "sasih ka tujuh" + ], + "en_answers": [ + "seventh-month ceremony" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-06": { + "question": "Naon acara anu biasana diayakeun saméméh hajatan kawinan di Jawa Barat?", + "en_question": "What event is usually held before a wedding in your country?", + "annotations": [ + { + "answers": [ + "siraman" + ], + "en_answers": [ + "bathing ceremony" + ], + "count": 2 + }, + { + "answers": [ + "pangajian", + "pangaosan" + ], + "en_answers": [ + "recitation" + ], + "count": 2 + }, + { + "answers": [ + "mapag pangantén" + ], + "en_answers": [ + "welcoming the bride and groom" + ], + "count": 1 + }, + { + "answers": [ + "meupeuskeun endog", + "meupeus endog" + ], + "en_answers": [ + "break an egg" + ], + "count": 1 + }, + { + "answers": [ + "sawér", + "sawer", + "saweran", + "sawéran" + ], + "en_answers": [ + "saweran" + ], + "count": 1 + }, + { + "answers": [ + "tunangan" + ], + "en_answers": [ + "engagement" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-07": { + "question": "Naon nu biasa dibagikeun ka barudak nalika Taun Anyar Imlek di Jawa Barat?", + "en_question": "What is usually shared to the children during (Lunar) New Year in your country?", + "annotations": [ + { + "answers": [ + "angpao", + "duit" + ], + "en_answers": [ + "angpao", + "money" + ], + "count": 4 + } + ], + "idks": { + "not sure": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-08": { + "question": "Naon kagiatan anu biasa dilakukeun di poé-poé saméméh bulan puasa di Jawa Barat?", + "en_question": "What activities are usually done days before Ramadan in your country?", + "annotations": [ + { + "answers": [ + "munggahan", + "dahar bareng keluarga", + "dahar babarengan" + ], + "en_answers": [ + "eat together", + "eat together with family" + ], + "count": 4 + }, + { + "answers": [ + "papajar" + ], + "en_answers": [ + "travel and eat together" + ], + "count": 2 + }, + { + "answers": [ + "jarah kubur" + ], + "en_answers": [ + "grave pilgrimage" + ], + "count": 2 + }, + { + "answers": [ + "balanja kabutuhan" + ], + "en_answers": [ + "shopping for necessities" + ], + "count": 1 + }, + { + "answers": [ + "bebersih" + ], + "en_answers": [ + "cleaning" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-10": { + "question": "Naon objék wisata nu pang populerna pikeun wisatawan asing di Jawa Barat?", + "en_question": "What is the most popular tourist attraction for foreign visitors in your country?", + "annotations": [ + { + "answers": [ + "gunung tangkuban parahu", + "gunung tangkuban paarahu", + "tangkuban parahu" + ], + "en_answers": [ + "mount tangkuban parahu", + "tangkuban parahu" + ], + "count": 2 + }, + { + "answers": [ + "basisir", + "pantéy" + ], + "en_answers": [ + "beach" + ], + "count": 1 + }, + { + "answers": [ + "gunung" + ], + "en_answers": [ + "mountain" + ], + "count": 1 + }, + { + "answers": [ + "curug" + ], + "en_answers": [ + "waterfall" + ], + "count": 1 + }, + { + "answers": [ + "pantéy pangandaran", + "basisir pangandaran", + "pantey pangandaran" + ], + "en_answers": [ + "pangandaran beach" + ], + "count": 1 + }, + { + "answers": [ + "pantéy palabuhan ratu", + "basisir palabuhan ratu", + "pantey palabuhan ratu" + ], + "en_answers": [ + "palabuhan ratu beach" + ], + "count": 1 + }, + { + "answers": [ + "geopark ciletuh", + "ciletuh geopark" + ], + "en_answers": [ + "ciletuh geopark" + ], + "count": 1 + }, + { + "answers": [ + "kawah putih" + ], + "en_answers": [ + "kawah putih" + ], + "count": 1 + }, + { + "answers": [ + "kebon téh", + "kebon entéh", + "kebon enteh", + "kebon teh" + ], + "en_answers": [ + "tea garden" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-11": { + "question": "Naon situs-situs religi (candi, gereja, jsb.) anu pang populerna pikeun wisata di Jawa Barat?", + "en_question": "What is the most popular religious sites (temple, church, etc.) for tourism in your country?", + "annotations": [ + { + "answers": [ + "masjid al-jabbar", + "mesjid raya al-jabbar", + "masigit raya al jabbar" + ], + "en_answers": [ + "al-jabbar mosque", + "al-jabbar grand mosque" + ], + "count": 3 + } + ], + "idks": { + "not sure": 1, + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-15": { + "question": "Naon pakean anu biasa dipaké ku awéwé dina upacara wisuda di Jawa Barat?", + "en_question": "What clothes do women usually wear on graduation commencement ceremony in your country?", + "annotations": [ + { + "answers": [ + "kabaya", + "kabaya sunda" + ], + "en_answers": [ + "kebaya", + "sundanese kebaya" + ], + "count": 5 + }, + { + "answers": [ + "toga" + ], + "en_answers": [ + "graduation gown" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-16": { + "question": "Inuman naon nu ilahar dikonsumsi di Jawa Barat nalika cuacana tiis?", + "en_question": "What drink is commonly consumed in your country when the weather is cold?", + "annotations": [ + { + "answers": [ + "bandrék", + "bandrek" + ], + "en_answers": [ + "bandrek" + ], + "count": 3 + }, + { + "answers": [ + "bajigur" + ], + "en_answers": [ + "bajigur" + ], + "count": 3 + }, + { + "answers": [ + "entéh panas", + "téh", + "téh panas", + "teh panas", + "enteh panas", + "teh", + "enteh", + "entéh" + ], + "en_answers": [ + "hot team", + "tea" + ], + "count": 2 + }, + { + "answers": [ + "kopi hideung" + ], + "en_answers": [ + "black coffee" + ], + "count": 1 + }, + { + "answers": [ + "kopi" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-17": { + "question": "Buah naon nu leuwih umum dijual jeung dipanggihan salila bulan Ramadan di Jawa Barat?", + "en_question": "What fruit is more commonly sold and found during Ramadan in your country?", + "annotations": [ + { + "answers": [ + "korma" + ], + "en_answers": [ + "dates" + ], + "count": 3 + }, + { + "answers": [ + "caruluk", + "cangkaléng", + "kolang-kaling", + "cangkaleng" + ], + "en_answers": [ + "sugar palm fruit" + ], + "count": 3 + }, + { + "answers": [ + "bonténg suri", + "bonteng suri" + ], + "en_answers": [ + "suri cucumber" + ], + "count": 1 + }, + { + "answers": [ + "blewah" + ], + "en_answers": [ + "cantaloupe" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-24": { + "question": "Karbohidrat naon anu biasana disayogikeun jeung hayam di restoran gancang saji di Jawa Barat?", + "en_question": "What carbohydrate is usually served with chicken in a fast-food restaurant in your country?", + "annotations": [ + { + "answers": [ + "sangu" + ], + "en_answers": [ + "rice" + ], + "count": 4 + }, + { + "answers": [ + "kentang" + ], + "en_answers": [ + "potato" + ], + "count": 1 + }, + { + "answers": [ + "sangu bodas" + ], + "en_answers": [ + "white rice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-31": { + "question": "Naon olahraga beladiri nu pang kasohorna di Jawa Barat?", + "en_question": "What is the most famous martial art sports in your country?", + "annotations": [ + { + "answers": [ + "pencak silat", + "penca silat", + "silat" + ], + "en_answers": [ + "pencak silat", + "silat" + ], + "count": 5 + }, + { + "answers": [ + "karaté", + "karate" + ], + "en_answers": [ + "karate" + ], + "count": 1 + }, + { + "answers": [ + "taékwondo", + "taekwondo" + ], + "en_answers": [ + "taekwondo" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-34": { + "question": "Naon olahraga nu mindeng disiarkeun di TV nasional di Jawa Barat?", + "en_question": "What sports are often broadcasted on national television in your country?", + "annotations": [ + { + "answers": [ + "maén bal", + "bal", + "maen bal", + "sepak bal", + "sépak bal", + "bal sepak", + "bal sépak" + ], + "en_answers": [ + "football" + ], + "count": 4 + }, + { + "answers": [ + "badminton", + "bulu tangkis", + "bultang" + ], + "en_answers": [ + "badminton" + ], + "count": 3 + }, + { + "answers": [ + "tinju" + ], + "en_answers": [ + "boxing" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-35": { + "question": "Naon olahraga nu populer di kalangan masarakat Jawa Barat salila pandemi COVID-19?", + "en_question": "What sports were popular among people from your country during the COVID-19 pandemic?", + "annotations": [ + { + "answers": [ + "senam" + ], + "en_answers": [ + "exercise" + ], + "count": 1 + }, + { + "answers": [ + "yoga" + ], + "en_answers": [ + "yoga" + ], + "count": 1 + }, + { + "answers": [ + "sapédahan", + "sapedahan", + "sapedah", + "sapédah" + ], + "en_answers": [ + "bicycle" + ], + "count": 1 + }, + { + "answers": [ + "jogging" + ], + "en_answers": [ + "jogging" + ], + "count": 1 + }, + { + "answers": [ + "kardio" + ], + "en_answers": [ + "cardio" + ], + "count": 1 + } + ], + "idks": { + "not sure": 1, + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-36": { + "question": "Saha pelatih sepak bola nu pang populerna di Jawa Barat?", + "en_question": "Who is the most popular soccer coach in your country?", + "annotations": [ + { + "answers": [ + "shin tae yong" + ], + "en_answers": [ + "shin tae yong" + ], + "count": 1 + }, + { + "answers": [ + "bojan hodak" + ], + "en_answers": [ + "bojan hodak" + ], + "count": 1 + }, + { + "answers": [ + "djadjang nurdjaman" + ], + "en_answers": [ + "djadjang nurdjaman" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-37": { + "question": "Naon tim sepak bola di Jawa Barat nu kasohor ku pasaingan sengitna? (contona ___ lawan ___)", + "en_question": "What soccer teams in your country are famous for their intense rivalry? (e.g. ___ vs ___)", + "annotations": [ + { + "answers": [ + "persib lawan persija" + ], + "en_answers": [ + "persib versus persija" + ], + "count": 4 + } + ], + "idks": { + "not sure": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-38": { + "question": "Naon ngaran-ngaran bobotoh sepak bola di Jawa Barat anu kasohor ku pasaingan sengitna? (contona ___ vs ___)", + "en_question": "What are the names of soccer supporters in your country who are famous for their intense rivalry? (e.g. ___ vs ___)", + "annotations": [ + { + "answers": [ + "viking vs the jakmania", + "viking vs the jak", + "viking vs the jack", + "bobotoh vs the jakmania", + "bobotoh vs the jak" + ], + "en_answers": [ + "viking vs the jakmania", + "viking vs the jak", + "viking vs the jack", + "bobotoh vs the jakmania", + "bobotoh vs the jak" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-40": { + "question": "Saha atlit badminton lalaki nu pang kawentarna di Jawa Barat?", + "en_question": "Who is the most famous male badminton player in your country?", + "annotations": [ + { + "answers": [ + "taufik hidayat" + ], + "en_answers": [ + "taufik hidayat" + ], + "count": 5 + }, + { + "answers": [ + "anthony sinisuka ginting", + "anthony ginting", + "ginting" + ], + "en_answers": [ + "anthony sinisuka ginting", + "anthony ginting" + ], + "count": 2 + }, + { + "answers": [ + "jojo", + "jonatan christie" + ], + "en_answers": [ + "jojo" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-41": { + "question": "Saha atlit badminton awéwé nu pang kawéntarna di Jawa Barat?", + "en_question": "Who is the most famous female badminton player in your country?", + "annotations": [ + { + "answers": [ + "susi susanti" + ], + "en_answers": [ + "susi susanti" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Kik-in-44": { + "question": "Olahraga naon nu pang lobana meunang dukungan ti pamaréntah di Jawa Barat?", + "en_question": "What sport gets the most support from the government in your country?", + "annotations": [ + { + "answers": [ + "maén bal", + "sépak bal", + "maen bal", + "sepak bal", + "bal sepak", + "bal sépak" + ], + "en_answers": [ + "football" + ], + "count": 3 + }, + { + "answers": [ + "badminton", + "bulu tangkis", + "bultang" + ], + "en_answers": [ + "badminton" + ], + "count": 2 + }, + { + "answers": [ + "silat", + "pencak silat" + ], + "en_answers": [ + "silat" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Kik-in-45": { + "question": "Naon waé fasilitas lapang olahraga anu biasana aya di sakola-sakola di Jawa Barat?", + "en_question": "What sports field facilities are usually available at schools in your country?", + "annotations": [ + { + "answers": [ + "gawang", + "tiang gawang" + ], + "en_answers": [ + "goal", + "goalpost" + ], + "count": 3 + }, + { + "answers": [ + "ring baskét", + "ring bal" + ], + "en_answers": [ + "basketball ring", + "ball ring" + ], + "count": 2 + }, + { + "answers": [ + "net" + ], + "en_answers": [ + "net" + ], + "count": 1 + }, + { + "answers": [ + "nét voli" + ], + "en_answers": [ + "volleyball net" + ], + "count": 1 + }, + { + "answers": [ + "bal" + ], + "en_answers": [ + "ball" + ], + "count": 1 + }, + { + "answers": [ + "basket" + ], + "en_answers": [ + "basket" + ], + "count": 1 + }, + { + "answers": [ + "lapang bola" + ], + "en_answers": [ + "football field" + ], + "count": 1 + }, + { + "answers": [ + "lapang baskét" + ], + "en_answers": [ + "basketball court" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-02": { + "question": "Inuman kafe naon nu pang mindengna dipikaresep ku urang Jawa Barat?", + "en_question": "What cafe beverage do people from your country most commonly enjoy?", + "annotations": [ + { + "answers": [ + "kopi", + "cai kopi" + ], + "en_answers": [ + "coffee" + ], + "count": 5 + }, + { + "answers": [ + "inuman boba", + "boba" + ], + "en_answers": [ + "boba drinks", + "boba" + ], + "count": 2 + }, + { + "answers": [ + "jus buah" + ], + "en_answers": [ + "fruit juice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-04": { + "question": "Naon kadaharan pangobatan mabok nu dipikaresep ku urang Jawa Barat?", + "en_question": "What is the preferred hangover cure food for people from your country?", + "annotations": [], + "idks": { + "not-applicable": 3, + "idk": 2, + "no-answer": 0 + } + }, + "Na-ko-05": { + "question": "Naon kadaharan pangiriman anu has di Jawa Barat?", + "en_question": "What is the typical delivery food in your country?", + "annotations": [], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-07": { + "question": "Daging naon nu pang lobana dikonsumsi ku urang Jawa Barat?", + "en_question": "What type of meat is consumed most by people from your country?", + "annotations": [ + { + "answers": [ + "hayam" + ], + "en_answers": [ + "chicken" + ], + "count": 5 + }, + { + "answers": [ + "sapi" + ], + "en_answers": [ + "beef" + ], + "count": 3 + }, + { + "answers": [ + "domba" + ], + "en_answers": [ + "mutton" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-08": { + "question": "Buah naon nu mindeng didahar ku urang Jawa Barat dina usum gugur?", + "en_question": "What fruit do people from your country often eat in the autumn season?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Na-ko-09": { + "question": "Kadaharan palengkep naon nu pang mindengna disayogikeun di meja makan di Jawa Barat?", + "en_question": "What side dish is the most commonly served on a dining table in your country?", + "annotations": [ + { + "answers": [ + "sambel" + ], + "en_answers": [ + "chili sauce" + ], + "count": 4 + }, + { + "answers": [ + "kurupuk", + "krupuk" + ], + "en_answers": [ + "crackers" + ], + "count": 3 + }, + { + "answers": [ + "lalaban", + "lalapan" + ], + "en_answers": [ + "raw vegetables" + ], + "count": 1 + }, + { + "answers": [ + "sayur" + ], + "en_answers": [ + "vegetable" + ], + "count": 1 + }, + { + "answers": [ + "lauk" + ], + "en_answers": [ + "side dish" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-11": { + "question": "Naon nu didahar ku urang Jawa Barat nalika ningali patandingan sepak bola?", + "en_question": "What do people from your country eat while watching a soccer game?", + "annotations": [ + { + "answers": [ + "kacang taneuh", + "suuk", + "kacang kulit" + ], + "en_answers": [ + "peanut" + ], + "count": 4 + }, + { + "answers": [ + "kacang atom" + ], + "en_answers": [ + "atom peanuts" + ], + "count": 1 + }, + { + "answers": [ + "jajanan" + ], + "en_answers": [ + "snacks" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-15": { + "question": "Naon kadaharan bergizi nu ngawakilan Jawa Barat?", + "en_question": "What is the representative nourishing food in your country?", + "annotations": [ + { + "answers": [ + "sangu liwet" + ], + "en_answers": [ + "liwet rice" + ], + "count": 1 + }, + { + "answers": [ + "bajigur" + ], + "en_answers": [ + "bajigur" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Na-ko-16": { + "question": "Saha pamaén sepak bola nu pang kasohor di Jawa Barat?", + "en_question": "Who is the most famous soccer player in your country?", + "annotations": [ + { + "answers": [ + "cristiano ronaldo", + "ronaldo" + ], + "en_answers": [ + "cristiano ronaldo" + ], + "count": 1 + }, + { + "answers": [ + "lionel messi", + "messi" + ], + "en_answers": [ + "lionel messi" + ], + "count": 1 + }, + { + "answers": [ + "robby darwis" + ], + "en_answers": [ + "robby darwis" + ], + "count": 1 + }, + { + "answers": [ + "djadjang nurjaman" + ], + "en_answers": [ + "djadjang nurjaman" + ], + "count": 1 + }, + { + "answers": [ + "bambang pamungkas", + "bp" + ], + "en_answers": [ + "bambang pamungkas" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-17": { + "question": "Olahraga naon nu resep dipaénkeun ku murid lalaki nalika waktos istirahat beurang di sakola di Jawa Barat?", + "en_question": "What sports do male students enjoy during lunch time at school in your country?", + "annotations": [ + { + "answers": [ + "maén bal", + "bal", + "sépak bal", + "maen bal", + "sepak bal", + "bal sepak", + "bal sépak" + ], + "en_answers": [ + "football" + ], + "count": 5 + }, + { + "answers": [ + "voli" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "basket", + "baskét" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-18": { + "question": "Naon olahraga anu pang umumna dilakonan ku murid awewe nalika pelajaran atikan jasmani di Jawa Barat?", + "en_question": "What is the most common sport girls participate in during physical education classes in your country?", + "annotations": [ + { + "answers": [ + "senam" + ], + "en_answers": [ + "exercise" + ], + "count": 2 + }, + { + "answers": [ + "luncat karet", + "karet", + "uncal karet" + ], + "en_answers": [ + "rubber jump" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Na-ko-19": { + "question": "Saha atlit voli nu pang populerna di Jawa Barat?", + "en_question": "Who is the most popular volleyball player in your country?", + "annotations": [ + { + "answers": [ + "megawati hangestri", + "megawati", + "mega" + ], + "en_answers": [ + "megawati hangestri", + "megawati" + ], + "count": 2 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-20": { + "question": "Naon acara olahraga nu pang didukung ku urang Jawa Barat dina kompetisi internasional?", + "en_question": "What sports event do people from your country passionately support the most in international competitions?", + "annotations": [ + { + "answers": [ + "badminton", + "bulu tangkis", + "bultang" + ], + "en_answers": [ + "badminton" + ], + "count": 5 + }, + { + "answers": [ + "maén bal", + "bal", + "sépak bal", + "maen bal", + "sepak bal", + "bal sepak", + "bal sépak" + ], + "en_answers": [ + "football", + "ball" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-22": { + "question": "Nagara mana anu dianggep lawan panggedéna di patandingan sepak bola pikeun Jawa Barat?", + "en_question": "Which country is considered the biggest rival in soccer matches for your country?", + "annotations": [ + { + "answers": [ + "malaysia" + ], + "en_answers": [ + "malaysia" + ], + "count": 2 + }, + { + "answers": [ + "vietnam" + ], + "en_answers": [ + "vietnam" + ], + "count": 2 + }, + { + "answers": [ + "thailand" + ], + "en_answers": [ + "thailand" + ], + "count": 2 + }, + { + "answers": [ + "jepang" + ], + "en_answers": [ + "japan" + ], + "count": 1 + }, + { + "answers": [ + "korea selatan", + "korsel", + "korea" + ], + "en_answers": [ + "south korea" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Na-ko-23": { + "question": "Naon jinis akademi olahraga nu pang mindengna diiluan ku barudak di Jawa Barat?", + "en_question": "What type of sports academies do children attend the most in your country?", + "annotations": [ + { + "answers": [ + "sakola sepak bola", + "sekolah sepak bola (ssb)", + "sépak bal", + "sakola sépak bal", + "sakola sepak bal", + "sbb" + ], + "en_answers": [ + "football school", + "football" + ], + "count": 3 + }, + { + "answers": [ + "sakola atlit" + ], + "en_answers": [ + "athlete school" + ], + "count": 1 + }, + { + "answers": [ + "diklat badminton" + ], + "en_answers": [ + "badminton training" + ], + "count": 1 + }, + { + "answers": [ + "sanggar bela diri" + ], + "en_answers": [ + "martial arts studio" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-24": { + "question": "Naon panganan anu pang mindengna didahar di stadion olahraga nalika lalajo patandingan di Jawa Barat?", + "en_question": "What is the most commonly eaten food in sports stadiums while watching games in your country?", + "annotations": [ + { + "answers": [ + "kacang taneuh", + "suuk", + "kacang" + ], + "en_answers": [ + "peanut" + ], + "count": 3 + }, + { + "answers": [ + "kacang atom" + ], + "en_answers": [ + "atom peanuts" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-25": { + "question": "Naon olahraga-olahraga has nu sok dipaénkeun dina poé olahraga sakola di Jawa Barat?", + "en_question": "What are the typical sports played in your country's school sports day?", + "annotations": [ + { + "answers": [ + "maén bal", + "maen bal", + "sepak bal", + "bal sepak", + "bal sépak", + "bal" + ], + "en_answers": [ + "football" + ], + "count": 3 + }, + { + "answers": [ + "baskét", + "basket" + ], + "en_answers": [ + "basketball" + ], + "count": 3 + }, + { + "answers": [ + "voli" + ], + "en_answers": [ + "volleyball" + ], + "count": 2 + }, + { + "answers": [ + "sepak takraw" + ], + "en_answers": [ + "rattanball" + ], + "count": 1 + }, + { + "answers": [ + "futsal" + ], + "en_answers": [ + "futsal" + ], + "count": 1 + }, + { + "answers": [ + "badminton", + "bulu tangkis", + "bultang" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "senam" + ], + "en_answers": [ + "exercise" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-26": { + "question": "Naon olahraga nu populer di kalangan populasi umur tengah di Jawa Barat?", + "en_question": "What are the popular sports among the middle-aged population in your country?", + "annotations": [ + { + "answers": [ + "maén bal", + "sépak bal", + "maen bal", + "sepak bal", + "bal sepak", + "bal sépak", + "bal", + "maen bal", + "sepak bal", + "bal sepak", + "bal sépak" + ], + "en_answers": [ + "football" + ], + "count": 4 + }, + { + "answers": [ + "badminton", + "bulu tangkis", + "bultang" + ], + "en_answers": [ + "badminton" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-28": { + "question": "Saha atlit olahraga usum salju nu pang populerna di Jawa Barat?", + "en_question": "Who is the most popular winter sports player in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Na-ko-29": { + "question": "Saha atlit ngojay nu pang kawéntarna di Jawa Barat?", + "en_question": "Who is the most famous swimmer in your country?", + "annotations": [], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-30": { + "question": "Naon kaulinan e-sports nu pang populerna di Jawa Barat?", + "en_question": "What is the most popular e-sports game in your country?", + "annotations": [ + { + "answers": [ + "mobile legends", + "mobile legends: bang bang" + ], + "en_answers": [ + "mobile legends", + "mobile legends: bang bang" + ], + "count": 3 + }, + { + "answers": [ + "pubg mobile" + ], + "en_answers": [ + "pubg mobile" + ], + "count": 1 + }, + { + "answers": [ + "aov" + ], + "en_answers": [ + "aov" + ], + "count": 1 + } + ], + "idks": { + "not sure": 1, + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Na-ko-33": { + "question": "Naon kadaharan simbolis nu didahar ku urang Jawa Barat dina Taun Anyar Imlek?", + "en_question": "What symbolic food do people from your country eat on (Lunar) New Year?", + "annotations": [ + { + "answers": [ + "emih panjang yuswa", + "emi panjang yuswa", + "mi panjang yuswa" + ], + "en_answers": [ + "long life noodles" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "not sure": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-37": { + "question": "Naon tempat liburan domestik nu pang populerna pikeun urang Jawa Barat?", + "en_question": "What is the most popular domestic vacation spot for people from your country?", + "annotations": [ + { + "answers": [ + "gunung tangkuban parahu", + "tangkuban parahu" + ], + "en_answers": [ + "mount tangkuban perahu" + ], + "count": 2 + }, + { + "answers": [ + "puncak" + ], + "en_answers": [ + "puncak" + ], + "count": 1 + }, + { + "answers": [ + "lembang" + ], + "en_answers": [ + "lembang" + ], + "count": 1 + }, + { + "answers": [ + "pantéy pangandaran", + "basisir pangandaran", + "pangandaran", + "pantey pangandaran" + ], + "en_answers": [ + "pangandaran beach" + ], + "count": 1 + }, + { + "answers": [ + "kawah putih" + ], + "en_answers": [ + "kawah putih" + ], + "count": 1 + }, + { + "answers": [ + "pantai", + "basisir", + "pantey" + ], + "en_answers": [ + "beach" + ], + "count": 1 + }, + { + "answers": [ + "bali" + ], + "en_answers": [ + "bali" + ], + "count": 1 + }, + { + "answers": [ + "yogyakarta", + "jogja", + "jogjakarta", + "yogya" + ], + "en_answers": [ + "yogyakarta" + ], + "count": 1 + }, + { + "answers": [ + "taman wisata cibodas" + ], + "en_answers": [ + "cibodas tourist park" + ], + "count": 1 + }, + { + "answers": [ + "taman safari bogor", + "taman safari" + ], + "en_answers": [ + "bogor safari park" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-38": { + "question": "Naon kado kawinan anu pang umumna di antara pangantén awéwé jeung pangantén lalaki di Jawa Barat?", + "en_question": "What is the most common wedding gift between bride and groom in your country?", + "annotations": [ + { + "answers": [ + "parabot imah", + "pakakas imah", + "parabot", + "pakakas" + ], + "en_answers": [ + "household appliances", + "appliances" + ], + "count": 3 + }, + { + "answers": [ + "alat-alat kadaharan", + "alat dahar" + ], + "en_answers": [ + "food utensils" + ], + "count": 1 + }, + { + "answers": [ + "spring bed", + "kasur" + ], + "en_answers": [ + "spring bed" + ], + "count": 1 + }, + { + "answers": [ + "cingcin" + ], + "en_answers": [ + "ring" + ], + "count": 1 + }, + { + "answers": [ + "perhiasan", + "emas" + ], + "en_answers": [ + "jewelry" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-39": { + "question": "Naon nu biasana dipasihkeun salaku gestur ucapan salamet nalika ngahadiran hajatan kawinan sobat di Jawa Barat?", + "en_question": "What is typically given as a congratulatory gesture when attending a friend's wedding in your country?", + "annotations": [ + { + "answers": [ + "amplop", + "artos", + "amplop eusi duit", + "duit" + ], + "en_answers": [ + "envelope", + "money", + "envelope containing money" + ], + "count": 4 + }, + { + "answers": [ + "kado" + ], + "en_answers": [ + "gift" + ], + "count": 1 + }, + { + "answers": [ + "sasalaman" + ], + "en_answers": [ + "greetings" + ], + "count": 1 + }, + { + "answers": [ + "parabot" + ], + "en_answers": [ + "appliances" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-40": { + "question": "Sabaraha lami (dina poé) biasana upacara pamakaman di Jawa Barat téh? (Pasihkeun angka Arab wungkul (contona, 12).)", + "en_question": "How long (in days) does a funeral typically last in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 4 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 2 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-41": { + "question": "Naon nu kudu disiapkeun salaku tawisan belasungkawa nalika ngahadiran upacara pamakaman di Jawa Barat?", + "en_question": "What should you prepare as a condolence offering when attending a funeral in your country?", + "annotations": [ + { + "answers": [ + "duit", + "artos santunan", + "amplop eusi duit" + ], + "en_answers": [ + "money", + "compensation money", + "envelope containing money" + ], + "count": 5 + }, + { + "answers": [ + "béas", + "beas" + ], + "en_answers": [ + "rice" + ], + "count": 2 + }, + { + "answers": [ + "karangan kembang" + ], + "en_answers": [ + "flower arrangement" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Na-ko-42": { + "question": "Naon jinis kadaharan anu ilahar disayogikeun di tempat pamakaman di Jawa Barat?", + "en_question": "What type of food is commonly provided at funeral parlors in your country?", + "annotations": [ + { + "answers": [ + "kueh", + "kue" + ], + "en_answers": [ + "cake" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "no-answer": 2, + "idk": 0 + } + }, + "Na-ko-43": { + "question": "Naon nu dilakukeun ku urang Sunda di Jawa Barat di énjing taun anyar Imlek?", + "en_question": "What do people do in your country in the morning of the (Lunar) New Year?", + "annotations": [ + { + "answers": [ + "ibadah" + ], + "en_answers": [ + "worship" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Na-ko-44": { + "question": "Iraha dinten nu pang parna macetna lalu lintas di Jawa Barat?", + "en_question": "When is the day with your country's most severe nationwide traffic congestion?", + "annotations": [ + { + "answers": [ + "mudik lebaran" + ], + "en_answers": [ + "homecoming for eid" + ], + "count": 2 + }, + { + "answers": [ + "senén", + "senen" + ], + "en_answers": [ + "monday" + ], + "count": 1 + }, + { + "answers": [ + "sabtu", + "saptu" + ], + "en_answers": [ + "saturday" + ], + "count": 1 + }, + { + "answers": [ + "minggu" + ], + "en_answers": [ + "sunday" + ], + "count": 1 + }, + { + "answers": [ + "poé lebaran", + "poe lebaran" + ], + "en_answers": [ + "eid day" + ], + "count": 1 + }, + { + "answers": [ + "taun anyar" + ], + "en_answers": [ + "new year" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Na-ko-45": { + "question": "Naon tujuan bulan madu nu pang populerna di Jawa Barat?", + "en_question": "What is the most popular honeymoon destination in your country?", + "annotations": [ + { + "answers": [ + "bandung" + ], + "en_answers": [ + "bandung" + ], + "count": 3 + }, + { + "answers": [ + "pantéy pangandaran", + "pangandaran", + "basisir pangandaran", + "pantey pangandaran" + ], + "en_answers": [ + "pangandaran beach" + ], + "count": 1 + }, + { + "answers": [ + "puncak" + ], + "en_answers": [ + "puncak" + ], + "count": 1 + }, + { + "answers": [ + "lembang" + ], + "en_answers": [ + "lembang" + ], + "count": 1 + } + ], + "idks": { + "not sure": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-05": { + "question": "Naon poé libur nasional nu pang pentingna di Jawa Barat?", + "en_question": "What is the most important national holiday in your country?", + "annotations": [ + { + "answers": [ + "idulfitri", + "lebaran idul fitri", + "idul fitri", + "lebaran idulfitri", + "libur idulfitri", + "libur idul fitri", + "libur lebaran idulfitri", + "libur lebaran idul fitri" + ], + "en_answers": [ + "eid al-fitr" + ], + "count": 3 + }, + { + "answers": [ + "libur natal", + "natal" + ], + "en_answers": [ + "christmas holiday", + "christmas" + ], + "count": 2 + }, + { + "answers": [ + "libur lebaran", + "lebaran" + ], + "en_answers": [ + "eid holiday" + ], + "count": 1 + }, + { + "answers": [ + "libur kamerdékaan indonésia", + "libur agustusan" + ], + "en_answers": [ + "indonesia independence holiday" + ], + "count": 1 + }, + { + "answers": [ + "agustusan", + "libur agustusan" + ], + "en_answers": [ + "indonesia independence holiday" + ], + "count": 1 + } + ], + "idks": { + "not sure": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-06": { + "question": "Naon nu didahar ku urang Jawa Barat dina bulan Ramadan?", + "en_question": "What do people from your country eat in Ramadan?", + "annotations": [ + { + "answers": [ + "kolek" + ], + "en_answers": [ + "compote" + ], + "count": 3 + }, + { + "answers": [ + "korma" + ], + "en_answers": [ + "dates" + ], + "count": 1 + }, + { + "answers": [ + "cangkaléng", + "caruluk", + "kolang-kaling", + "cangkaleng" + ], + "en_answers": [ + "sugar palm fruit" + ], + "count": 1 + }, + { + "answers": [ + "kolak cau" + ], + "en_answers": [ + "banana compote" + ], + "count": 1 + }, + { + "answers": [ + "sop buah" + ], + "en_answers": [ + "fruit soup" + ], + "count": 1 + }, + { + "answers": [ + "goréngan", + "gorengan" + ], + "en_answers": [ + "fritters" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-09": { + "question": "Naon nu didahar ku urang Jawa Barat dina waktos Lebaran?", + "en_question": "What do people from your country eat in Eid ul Fitr?", + "annotations": [ + { + "answers": [ + "opor hayam", + "opor" + ], + "en_answers": [ + "chicken with coconut milk" + ], + "count": 4 + }, + { + "answers": [ + "kupat" + ], + "en_answers": [ + "ketupat" + ], + "count": 1 + }, + { + "answers": [ + "rendang" + ], + "en_answers": [ + "rendang" + ], + "count": 1 + }, + { + "answers": [ + "sambel goréng", + "sambel goreng" + ], + "en_answers": [ + "fried chili paste" + ], + "count": 1 + }, + { + "answers": [ + "ulen" + ], + "en_answers": [ + "ulen" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-10": { + "question": "Naon nu didahar ku urang Jawa Barat dina waktos Idul Adha?", + "en_question": "What do people from your country eat in Eid ul Adha?", + "annotations": [ + { + "answers": [ + "saté", + "sate" + ], + "en_answers": [ + "satay" + ], + "count": 3 + }, + { + "answers": [ + "saté embé", + "saté domba", + "sate embe", + "sate embé", + "sate domba" + ], + "en_answers": [ + "lamb satay", + "mutton satay" + ], + "count": 2 + }, + { + "answers": [ + "saté sapi", + "sate sapi" + ], + "en_answers": [ + "beef satay" + ], + "count": 1 + }, + { + "answers": [ + "sambel goréng", + "sambel goreng" + ], + "en_answers": [ + "fried chili paste" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-11": { + "question": "Ka mana warga Jawa Barat biasana ngarayakeun Taun Anyar?", + "en_question": "Where do people from your country go to celebrate New Year's Day?", + "annotations": [ + { + "answers": [ + "pantai", + "basisir", + "ka pantéy", + "ka pantai", + "ka basisir", + "pantey" + ], + "en_answers": [ + "beach", + "to the beach" + ], + "count": 4 + }, + { + "answers": [ + "gunung", + "ka gunung" + ], + "en_answers": [ + "mountain" + ], + "count": 1 + }, + { + "answers": [ + "kota", + "ka kota" + ], + "en_answers": [ + "city" + ], + "count": 1 + }, + { + "answers": [ + "ka alun-alun" + ], + "en_answers": [ + "to the town square" + ], + "count": 1 + }, + { + "answers": [ + "puncak", + "ka puncak" + ], + "en_answers": [ + "puncak" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-14": { + "question": "Di mana kulawarga ngariung pikeun ngarayakeun Lebaran di Jawa Barat?", + "en_question": "Where do a family gather for Eid festivities in your country?", + "annotations": [ + { + "answers": [ + "imah kolot", + "di imah kolot" + ], + "en_answers": [ + "parents' house" + ], + "count": 3 + }, + { + "answers": [ + "di lembur séwang-séwang", + "lembur asal", + "lembur sewang-sewang", + "lembur séwang-séwang", + "di lembur asal" + ], + "en_answers": [ + "in each village", + "hometown" + ], + "count": 2 + }, + { + "answers": [ + "imah sesepuh", + "di imah sesepuh", + "di imah sepuh", + "imah sepuh" + ], + "en_answers": [ + "ancestral house" + ], + "count": 1 + }, + { + "answers": [ + "imah kulawarga", + "di imah kulawarga" + ], + "en_answers": [ + "family house" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-16": { + "question": "Iraha ahir minggu di Jawa Barat (contona Senén, Salasa)?", + "en_question": "When is the weekend in your country (e.g. Monday, Tuesday)?", + "annotations": [ + { + "answers": [ + "minggu", + "minggon" + ], + "en_answers": [ + "sunday" + ], + "count": 5 + }, + { + "answers": [ + "sabtu", + "saptu" + ], + "en_answers": [ + "saturday" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-17": { + "question": "Tabuh sabaraha biasana jalma-jalma di Jawa Barat mimiti gawé? (Pasihkeun dina format HH:MM (contona, 18:00, 09:00).)", + "en_question": "At what time do most people start work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "07:00" + ], + "en_answers": [ + "07:00" + ], + "count": 4 + }, + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 2 + }, + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-18": { + "question": "Tabuh sabaraha biasana jalma-jalma di Jawa Barat réngsé gawé? (Pasihkeun dina format HH:MM (contona, 18:00, 09:00).)", + "en_question": "At what time do most people finish work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "17:00" + ], + "en_answers": [ + "17:00" + ], + "count": 4 + }, + { + "answers": [ + "18:00" + ], + "en_answers": [ + "18:00" + ], + "count": 2 + }, + { + "answers": [ + "16:00" + ], + "en_answers": [ + "16:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-20": { + "question": "Naon anu dianggap jadi padamelan nu aman di Jawa Barat?", + "en_question": "What is considered to be a secure job in your country?", + "annotations": [ + { + "answers": [ + "pns", + "pegawai negeri sipil", + "pagawei negeri sipil", + "pegawai negri sipil", + "pagawai negri sipil" + ], + "en_answers": [ + "civil servant" + ], + "count": 3 + }, + { + "answers": [ + "polisi" + ], + "en_answers": [ + "police" + ], + "count": 2 + }, + { + "answers": [ + "guru" + ], + "en_answers": [ + "teacher" + ], + "count": 2 + }, + { + "answers": [ + "tentara" + ], + "en_answers": [ + "soldier" + ], + "count": 1 + }, + { + "answers": [ + "dokter" + ], + "en_answers": [ + "doctor" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-24": { + "question": "Kota mana nu jadi pusat dagang utama di Jawa Barat?", + "en_question": "Which city is the primary commercial hub in your country?", + "annotations": [ + { + "answers": [ + "bandung" + ], + "en_answers": [ + "bandung" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not sure": 1, + "not-applicable": 0 + } + }, + "Ne-ar-25": { + "question": "Naon industri nu ngabogaan panghasilan pang gedéna di Jawa Barat?", + "en_question": "What is the industry that pays the best in your country?", + "annotations": [ + { + "answers": [ + "komputer", + "industri komputer" + ], + "en_answers": [ + "computer" + ], + "count": 1 + }, + { + "answers": [ + "industri manufaktur", + "manufaktur" + ], + "en_answers": [ + "manufacturing industry" + ], + "count": 1 + }, + { + "answers": [ + "tatanén", + "industri tatanen", + "industri tatanén", + "tatane" + ], + "en_answers": [ + "agriculture" + ], + "count": 1 + }, + { + "answers": [ + "tekstil", + "industri tekstil" + ], + "en_answers": [ + "textile" + ], + "count": 1 + }, + { + "answers": [ + "pabrik", + "industri pabrik" + ], + "en_answers": [ + "factory" + ], + "count": 1 + }, + { + "answers": [ + "palayanan", + "industri palayanan" + ], + "en_answers": [ + "service" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-26": { + "question": "Naon pausahaan umum nu pang kasohorna di Jawa Barat?", + "en_question": "What is the most famous public corporation in your country?", + "annotations": [ + { + "answers": [ + "bank bri", + "bri", + "bank rakyat indonesia" + ], + "en_answers": [ + "bri bank" + ], + "count": 1 + }, + { + "answers": [ + "pdam", + "perusahaan daerah air minum" + ], + "en_answers": [ + "regional water company" + ], + "count": 1 + }, + { + "answers": [ + "pln", + "perusahaan listrik negara" + ], + "en_answers": [ + "state electricity company" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not sure": 1, + "maybe bias due to my residence in cianjur": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-31": { + "question": "Naon kadaharan anu pang kawéntarna di Jawa Barat?", + "en_question": "What is the most famous dish in your country?", + "annotations": [ + { + "answers": [ + "seblak" + ], + "en_answers": [ + "seblak" + ], + "count": 3 + }, + { + "answers": [ + "peuyeum", + "peuyeum bandung" + ], + "en_answers": [ + "peuyeum", + "peuyeum bandung" + ], + "count": 2 + }, + { + "answers": [ + "batagor" + ], + "en_answers": [ + "batagor" + ], + "count": 1 + }, + { + "answers": [ + "cireng" + ], + "en_answers": [ + "cireng" + ], + "count": 1 + }, + { + "answers": [ + "cilok" + ], + "en_answers": [ + "cilok" + ], + "count": 1 + }, + { + "answers": [ + "tahu sumedang" + ], + "en_answers": [ + "sumedang tofu" + ], + "count": 1 + }, + { + "answers": [ + "dodol" + ], + "en_answers": [ + "dodol" + ], + "count": 1 + }, + { + "answers": [ + "lotek" + ], + "en_answers": [ + "lotek" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-32": { + "question": "Naon biasana nu sok didahar ku urang Sunda pikeun nyarap?", + "en_question": "What do people usually have for breakfast in your country?", + "annotations": [ + { + "answers": [ + "bubur" + ], + "en_answers": [ + "porridge" + ], + "count": 2 + }, + { + "answers": [ + "bubur hayam" + ], + "en_answers": [ + "chicken porridge" + ], + "count": 2 + }, + { + "answers": [ + "kupat tahu" + ], + "en_answers": [ + "kupat tahu" + ], + "count": 1 + }, + { + "answers": [ + "sangu" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "sangu konéng", + "sangu koneng" + ], + "en_answers": [ + "yellow rice" + ], + "count": 1 + }, + { + "answers": [ + "sangu uduk" + ], + "en_answers": [ + "uduk rice" + ], + "count": 1 + }, + { + "answers": [ + "sangu jeung lauk" + ], + "en_answers": [ + "rice and side dish" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-33": { + "question": "Iraha biasana urang tuang beurang di Jawa Barat? (Pasihkeun dina format HH:MM (contona, 18:00, 09:00).)", + "en_question": "When do people usually have lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "12:00" + ], + "en_answers": [ + "12:00" + ], + "count": 5 + }, + { + "answers": [ + "12:30" + ], + "en_answers": [ + "12:30" + ], + "count": 1 + }, + { + "answers": [ + "11:30" + ], + "en_answers": [ + "11:30" + ], + "count": 1 + }, + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-34": { + "question": "Kadaharan naon nu pasti kudu aya di Jawa Barat?", + "en_question": "What is typically indispensable in meals in your country?", + "annotations": [ + { + "answers": [ + "sambel" + ], + "en_answers": [ + "chili sauce" + ], + "count": 4 + }, + { + "answers": [ + "lalab", + "lalapan", + "lalap", + "lalaban" + ], + "en_answers": [ + "raw vegetables" + ], + "count": 4 + }, + { + "answers": [ + "sangu" + ], + "en_answers": [ + "rice" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-36": { + "question": "Naon kadaharan hajatan nu umum di Jawa Barat?", + "en_question": "What is a typical festive meal in your country?", + "annotations": [ + { + "answers": [ + "karedok" + ], + "en_answers": [ + "karedok" + ], + "count": 1 + }, + { + "answers": [ + "olahan daging", + "daging" + ], + "en_answers": [ + "meat" + ], + "count": 1 + }, + { + "answers": [ + "bungbuahan", + "bubuahan", + "buah" + ], + "en_answers": [ + "fruits" + ], + "count": 1 + }, + { + "answers": [ + "rendang hayam" + ], + "en_answers": [ + "chicken rendang" + ], + "count": 1 + }, + { + "answers": [ + "rendang" + ], + "en_answers": [ + "rendang" + ], + "count": 1 + }, + { + "answers": [ + "balado" + ], + "en_answers": [ + "balado" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-37": { + "question": "Buah naon nu biasana ditawarkeun ka wisatawan/tamu ti luar negeri di Jawa Barat?", + "en_question": "Which fruit do people usually offer tourists/visitors from abroad in your country?", + "annotations": [ + { + "answers": [ + "kadu", + "duren", + "durén" + ], + "en_answers": [ + "durian" + ], + "count": 4 + }, + { + "answers": [ + "manggu", + "manggis" + ], + "en_answers": [ + "mangosteen" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-38": { + "question": "Naon kadaharan anu ilaharna jadi sedekah di Jawa Barat?", + "en_question": "Which food do people usually offer as charity in your country?", + "annotations": [ + { + "answers": [ + "sangu konéng", + "sangu koneng" + ], + "en_answers": [ + "yellow rice" + ], + "count": 1 + }, + { + "answers": [ + "besek sangu" + ], + "en_answers": [ + "boxed rice" + ], + "count": 1 + }, + { + "answers": [ + "kueh", + "kue" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "bubuahan", + "buah", + "bungbuahan" + ], + "en_answers": [ + "fruits" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not sure": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-39": { + "question": "Naon kadaharan gancang saji nu pang murahna di Jawa Barat?", + "en_question": "What is the cheapest fast food in your country?", + "annotations": [ + { + "answers": [ + "hayam goréng", + "hayam goreng", + "goreng hayam", + "goréng hayam" + ], + "en_answers": [ + "fried chicken" + ], + "count": 2 + }, + { + "answers": [ + "emih", + "mi", + "emi" + ], + "en_answers": [ + "noodles" + ], + "count": 1 + }, + { + "answers": [ + "emih instan", + "mi instan", + "emi instan" + ], + "en_answers": [ + "instant noodles" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ne-ar-43": { + "question": "Naon nu biasana didahar nalika nginum enteh di Jawa Barat?", + "en_question": "What do people usually have with tea in your country?", + "annotations": [ + { + "answers": [ + "gorengan", + "goréngan" + ], + "en_answers": [ + "fritters" + ], + "count": 1 + }, + { + "answers": [ + "seupan hui" + ], + "en_answers": [ + "steamed sweet potato" + ], + "count": 1 + }, + { + "answers": [ + "seupan cau" + ], + "en_answers": [ + "steamed banana" + ], + "count": 1 + }, + { + "answers": [ + "roti" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "kuéh", + "kué", + "kue", + "kueh" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "biskuit" + ], + "en_answers": [ + "biscuit" + ], + "count": 1 + }, + { + "answers": [ + "sampeu" + ], + "en_answers": [ + "cassava" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not sure": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ne-ar-44": { + "question": "Naon nu sok didahar nalika nginum kopi di Jawa Barat?", + "en_question": "What do people have with coffee in your country?", + "annotations": [ + { + "answers": [ + "gorengan", + "goréngan" + ], + "en_answers": [ + "fritters" + ], + "count": 1 + }, + { + "answers": [ + "seupan hui" + ], + "en_answers": [ + "steamed sweet potato" + ], + "count": 1 + }, + { + "answers": [ + "seupan cau" + ], + "en_answers": [ + "steamed banana" + ], + "count": 1 + }, + { + "answers": [ + "kuéh", + "kué", + "kue", + "kueh" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "sampeu" + ], + "en_answers": [ + "cassava" + ], + "count": 1 + }, + { + "answers": [ + "ulen" + ], + "en_answers": [ + "ulen" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not sure": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-am-02": { + "question": "Naon kadaharan tradisional nu pang populerna di Jawa Barat?", + "en_question": "What is the most popular traditional food in your country?", + "annotations": [ + { + "answers": [ + "sangu liwet" + ], + "en_answers": [ + "liwet rice" + ], + "count": 4 + }, + { + "answers": [ + "dodol" + ], + "en_answers": [ + "dodol" + ], + "count": 1 + }, + { + "answers": [ + "surabi" + ], + "en_answers": [ + "surabi" + ], + "count": 1 + }, + { + "answers": [ + "tahu sumedang" + ], + "en_answers": [ + "sumedang tofu" + ], + "count": 1 + }, + { + "answers": [ + "peuyeum" + ], + "en_answers": [ + "peuyeum" + ], + "count": 1 + }, + { + "answers": [ + "tutug oncom" + ], + "en_answers": [ + "tutug oncom" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-04": { + "question": "Naon sambel nu pang populerna di Jawa Barat?", + "en_question": "What is the most popular dipping sauce in your country?", + "annotations": [ + { + "answers": [ + "sambel tarasi", + "tarasi" + ], + "en_answers": [ + "shrimp paste chili sauce", + "shrimp paste" + ], + "count": 4 + }, + { + "answers": [ + "sambel dadak", + "dadak" + ], + "en_answers": [ + "dadak chili sauce" + ], + "count": 2 + }, + { + "answers": [ + "sambel goang", + "goang" + ], + "en_answers": [ + "goang chili sauce" + ], + "count": 1 + }, + { + "answers": [ + "sambel cikur", + "cikur" + ], + "en_answers": [ + "aromatic ginger sambal" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-08": { + "question": "Naon panganan anu pang mindengna dikonsumsi nalika puasa Kristen di Jawa Barat?", + "en_question": "What food is most often consumed during Christian fasting in your country?", + "annotations": [], + "idks": { + "idk": 4, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-am-15": { + "question": "Naon kadaharan anu biasa disadiakeun nalika ibu-ibu ngalahirkeun di Jawa Barat?", + "en_question": "What food is usually prepared when mothers give birth in your country?", + "annotations": [ + { + "answers": [ + "sayur katuk" + ], + "en_answers": [ + "katuk soup" + ], + "count": 1 + }, + { + "answers": [ + "bungbuahan", + "buah" + ], + "en_answers": [ + "fruits" + ], + "count": 1 + }, + { + "answers": [ + "bubur beureum" + ], + "en_answers": [ + "red porridge" + ], + "count": 1 + }, + { + "answers": [ + "bubur bodas" + ], + "en_answers": [ + "white porridge" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not sure": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-27": { + "question": "Saha atlit awéwé nu pang populérna di Jawa Barat?", + "en_question": "Who is the most popular female sportperson in your country?", + "annotations": [ + { + "answers": [ + "susi susanti" + ], + "en_answers": [ + "susi susanti" + ], + "count": 3 + }, + { + "answers": [ + "mégawati hangéstri", + "megawati", + "mega" + ], + "en_answers": [ + "mégawati hangéstri" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-34": { + "question": "Di mana kalolobaan murid SD di Jawa Barat nyiapkeun ujianana?", + "en_question": "Where do most elementary school students prepare for their exams in your country?", + "annotations": [ + { + "answers": [ + "imah", + "di imah" + ], + "en_answers": [ + "house", + "at home" + ], + "count": 4 + }, + { + "answers": [ + "sakola", + "di sakola" + ], + "en_answers": [ + "school" + ], + "count": 3 + }, + { + "answers": [ + "tempat lés", + "di tempat les", + "di tempat lés" + ], + "en_answers": [ + "tutoring place" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-41": { + "question": "Di Jawa Barat, di tingkat kelas sabaraha murid-murid ngalakukeun ujian nasional munggaran?", + "en_question": "In your country, at which grade level do students take their first national-level examination?", + "annotations": [ + { + "answers": [ + "6 sd", + "6", + "kelas 6 sd", + "kelas 6" + ], + "en_answers": [ + "6" + ], + "count": 5 + }, + { + "answers": [ + "9 smp", + "9", + "kelas 9 smp", + "kelas 9", + "kelas 3 smp", + "3 smp" + ], + "en_answers": [ + "9" + ], + "count": 1 + }, + { + "answers": [ + "12 sma", + "12", + "kelas 12 sma", + "kelas 12", + "kelas 3 sma", + "3 sma" + ], + "en_answers": [ + "12" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-53": { + "question": "Wewengkon mana di Jawa Barat anu kasohor ku industri kopi/entéh na?", + "en_question": "Which region in your country is widely known for its coffee/tea industry?", + "annotations": [ + { + "answers": [ + "bogor" + ], + "en_answers": [ + "bogor" + ], + "count": 3 + }, + { + "answers": [ + "kabupaten bandung" + ], + "en_answers": [ + "bandung regency" + ], + "count": 1 + }, + { + "answers": [ + "subang" + ], + "en_answers": [ + "subang" + ], + "count": 1 + }, + { + "answers": [ + "pangaléngan" + ], + "en_answers": [ + "pangaléngan" + ], + "count": 1 + }, + { + "answers": [ + "bandung" + ], + "en_answers": [ + "bandung" + ], + "count": 1 + }, + { + "answers": [ + "cianjur" + ], + "en_answers": [ + "cianjur" + ], + "count": 1 + } + ], + "idks": { + "not sure": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-54": { + "question": "Wewengkon mana di Jawa Barat anu kasohor ku industri ternakna?", + "en_question": "Which region in your country is widely known for its livestock industry?", + "annotations": [ + { + "answers": [ + "garut" + ], + "en_answers": [ + "garut" + ], + "count": 2 + }, + { + "answers": [ + "lembang" + ], + "en_answers": [ + "lembang" + ], + "count": 1 + }, + { + "answers": [ + "indramayu" + ], + "en_answers": [ + "indramayu" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not sure": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-59": { + "question": "Naon pagawéan utama urang nu hirup di gurun di Jawa Barat?", + "en_question": "What is the main occupation of people living in deserts in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "New-am-60": { + "question": "Sato naon nu ilahar dipake pikeun transportasi di Jawa Barat?", + "en_question": "Which animal is typically used for transportation in your country?", + "annotations": [ + { + "answers": [ + "kuda" + ], + "en_answers": [ + "horse" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-72": { + "question": "Naon buku komik nu pang populerna pikeun dibaca ku barudak di Jawa Barat?", + "en_question": "What is the most popular comic book for children to read in your country?", + "annotations": [ + { + "answers": [ + "doraemon" + ], + "en_answers": [ + "doraemon" + ], + "count": 1 + }, + { + "answers": [ + "detektif conan" + ], + "en_answers": [ + "detective conan" + ], + "count": 1 + }, + { + "answers": [ + "kabayan" + ], + "en_answers": [ + "kabayan" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-am-73": { + "question": "Naon saluran YouTube nu pang populerna pikeun barudak di Jawa Barat?", + "en_question": "What is the most popular YouTube channel for children in your country?", + "annotations": [ + { + "answers": [ + "nussa official" + ], + "en_answers": [ + "nussa official" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-am-74": { + "question": "Naon acara obrolan pang populerna di Jawa Barat?", + "en_question": "What is the most popular talk show in your country?", + "annotations": [ + { + "answers": [ + "brownis" + ], + "en_answers": [ + "brownies" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-77": { + "question": "Naon poé libur agama nu pang kasohorna di Jawa Barat?", + "en_question": "What is the most famous religious holiday in your country?", + "annotations": [ + { + "answers": [ + "idul fitri", + "lebaran idulfitri", + "lebaran idul fitri", + "idulfitri" + ], + "en_answers": [ + "eid al-fitr" + ], + "count": 5 + }, + { + "answers": [ + "natal" + ], + "en_answers": [ + "christmas" + ], + "count": 2 + }, + { + "answers": [ + "iduladha", + "idul adha", + "lebaran iduladha", + "lebaran idul adha" + ], + "en_answers": [ + "eid al-adha" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-81": { + "question": "Naon bulan nu pang rame-ramena pikeun upacara kawinan di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 1).)", + "en_question": "What is the busiest month for weddings in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not sure": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-am-83": { + "question": "Naon alat musik tradisional nu pang populerna di Jawa Barat?", + "en_question": "What is the most popular traditional musical instrument in your country?", + "annotations": [ + { + "answers": [ + "angklung" + ], + "en_answers": [ + "angklung" + ], + "count": 3 + }, + { + "answers": [ + "suling" + ], + "en_answers": [ + "flute" + ], + "count": 3 + }, + { + "answers": [ + "goong" + ], + "en_answers": [ + "goong" + ], + "count": 1 + }, + { + "answers": [ + "kacapi" + ], + "en_answers": [ + "zither" + ], + "count": 1 + }, + { + "answers": [ + "gamelan" + ], + "en_answers": [ + "gamelan" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-01": { + "question": "Naon produk tatanén utama nu dihasilkeun di Jawa Barat?", + "en_question": "What is the main agricultural product produced in your country?", + "annotations": [ + { + "answers": [ + "béas", + "paré", + "pare", + "beas" + ], + "en_answers": [ + "rice" + ], + "count": 5 + }, + { + "answers": [ + "jagong" + ], + "en_answers": [ + "corn" + ], + "count": 1 + }, + { + "answers": [ + "téh", + "teh", + "enteh", + "entéh" + ], + "en_answers": [ + "tea" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-02": { + "question": "Naon kadaharan anu pang populerna dijieun tina gandum di Jawa Barat?", + "en_question": "What is the most popular wheat-based food item in your country?", + "annotations": [ + { + "answers": [ + "roti" + ], + "en_answers": [ + "bread" + ], + "count": 2 + }, + { + "answers": [ + "kuéh-kuéhan", + "kueh", + "kue", + "kué", + "kuéh", + "kueh-kuehan" + ], + "en_answers": [ + "pastries" + ], + "count": 1 + }, + { + "answers": [ + "mie", + "emih", + "emi", + "mi" + ], + "en_answers": [ + "noodle" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-05": { + "question": "Naon inuman nu pang umumna ditawarkeun ka tamu nalika aranjeunna nganjang ka imah-imah di Jawa Barat?", + "en_question": "What is the most typical drink offered to guests when they visit households in your country?", + "annotations": [ + { + "answers": [ + "kopi", + "cai kopi" + ], + "en_answers": [ + "coffee" + ], + "count": 3 + }, + { + "answers": [ + "cai bodas", + "cai herang", + "cai hérang", + "ci bodas", + "ci herang", + "ci hérang" + ], + "en_answers": [ + "water" + ], + "count": 3 + }, + { + "answers": [ + "entéh", + "téh", + "teh", + "cai téh", + "cai teh", + "ci téh", + "ci teh", + "cai entéh", + "cai enteh", + "ci entéh", + "ci enteh" + ], + "en_answers": [ + "tea" + ], + "count": 2 + }, + { + "answers": [ + "sirop" + ], + "en_answers": [ + "syrup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-07": { + "question": "Naon asakan anu pang populerna dijieun tina lauk di Jawa Barat?", + "en_question": "What is the most popular dish cooked with fish in your country?", + "annotations": [ + { + "answers": [ + "pesmol", + "pésmol" + ], + "en_answers": [ + "pesmol" + ], + "count": 2 + }, + { + "answers": [ + "goréng lauk", + "goreng lauk" + ], + "en_answers": [ + "fried fish" + ], + "count": 1 + }, + { + "answers": [ + "pais lauk" + ], + "en_answers": [ + "steamed fish" + ], + "count": 1 + }, + { + "answers": [ + "beuleum lauk" + ], + "en_answers": [ + "grilled fish" + ], + "count": 1 + }, + { + "answers": [ + "lauk asin" + ], + "en_answers": [ + "salted fish" + ], + "count": 1 + }, + { + "answers": [ + "gurame beuleum" + ], + "en_answers": [ + "grilled gurame" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-14": { + "question": "Naon kadaharan anu resep didahar ku urang Jawa Barat nalika cuaca hujan?", + "en_question": "What food do people from your country like to eat during rainy weather?", + "annotations": [ + { + "answers": [ + "emih rebus", + "emih kuah", + "mi kuah", + "mi rebus", + "emi rebus", + "emi kuah" + ], + "en_answers": [ + "noodle soup" + ], + "count": 3 + }, + { + "answers": [ + "gorengan", + "goréngan" + ], + "en_answers": [ + "fritters" + ], + "count": 1 + }, + { + "answers": [ + "seblak" + ], + "en_answers": [ + "seblak" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-as-15": { + "question": "Inuman naon nu ilahar dikonsumsi di Jawa Barat nalika cuacana panas?", + "en_question": "What drink is commonly consumed in your country when the weather is hot?", + "annotations": [ + { + "answers": [ + "és céndol", + "cendol", + "es cendol", + "es céndol", + "céndol" + ], + "en_answers": [ + "iced cendol", + "cendol" + ], + "count": 2 + }, + { + "answers": [ + "es" + ], + "en_answers": [ + "ice" + ], + "count": 1 + }, + { + "answers": [ + "cai hérang", + "ci herang", + "ci hérang", + "cai bodas", + "ci bodas" + ], + "en_answers": [ + "water" + ], + "count": 1 + }, + { + "answers": [ + "jus" + ], + "en_answers": [ + "juice" + ], + "count": 1 + }, + { + "answers": [ + "és téh", + "es teh", + "es téh", + "es enteh", + "es entéh" + ], + "en_answers": [ + "iced tea" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-as-20": { + "question": "Naon olahraga jero rohangan nu pang populerna di Jawa Barat?", + "en_question": "What is the most popular indoor sport in your country?", + "annotations": [ + { + "answers": [ + "badminton", + "bulu tangkis", + "bultang" + ], + "en_answers": [ + "badminton" + ], + "count": 4 + }, + { + "answers": [ + "futsal" + ], + "en_answers": [ + "futsal" + ], + "count": 2 + }, + { + "answers": [ + "pingpong" + ], + "en_answers": [ + "table tennis" + ], + "count": 1 + }, + { + "answers": [ + "baskét", + "basket" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-29": { + "question": "Olahraga naon nu resep ditongton ku lalaki di Jawa Barat?", + "en_question": "What sport do men in your country like to watch?", + "annotations": [ + { + "answers": [ + "maén bal", + "bal sepak", + "sépak bal", + "maen bal", + "sepak bal", + "bal sépak", + "bal" + ], + "en_answers": [ + "football" + ], + "count": 5 + }, + { + "answers": [ + "badminton", + "bulu tangkis", + "bultang" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "baskét", + "basket" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "voli" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-30": { + "question": "Olahraga naon nu resep ditongton ku awéwé di Jawa Barat?", + "en_question": "What sport do women in your country like to watch?", + "annotations": [ + { + "answers": [ + "badminton", + "bulu tangkis", + "bultang" + ], + "en_answers": [ + "badminton" + ], + "count": 5 + }, + { + "answers": [ + "maén bal", + "maen bal", + "sepak bal", + "sépak bal", + "bal" + ], + "en_answers": [ + "football" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-58": { + "question": "Naon inuman nu pang populerna dipikaresep ku urang Jawa Barat pikeun diinum di tempat gawéna?", + "en_question": "What is the most popular beverage that people from your country like to drink in their workplace?", + "annotations": [ + { + "answers": [ + "kopi" + ], + "en_answers": [ + "coffee" + ], + "count": 4 + }, + { + "answers": [ + "cai hérang", + "cai bodas", + "ci herang", + "ci hérang", + "ci bodas" + ], + "en_answers": [ + "water" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-64": { + "question": "Dina liburan naon sadaya anggota kulawarga biasana ngariung deui di Jawa Barat?", + "en_question": "On which holiday do all family members tend to reunite in your country?", + "annotations": [ + { + "answers": [ + "idul fitri", + "lebaran idulfitri", + "lebaran idul fitri", + "idulfitri", + "libur idulfitri", + "libur idul fitri", + "libur lebaran idulfitri", + "libur lebaran idul fitri" + ], + "en_answers": [ + "eid al-fitr" + ], + "count": 4 + }, + { + "answers": [ + "libur lebaran", + "lebaran" + ], + "en_answers": [ + "eid holiday" + ], + "count": 1 + }, + { + "answers": [ + "natal", + "libur natal" + ], + "en_answers": [ + "christmas" + ], + "count": 1 + }, + { + "answers": [ + "taun anyar", + "libur taun anyar" + ], + "en_answers": [ + "new year" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-76": { + "question": "Naon kaulinan tradisional anu sok dipaénkeun ku kulawarga dina waktos liburan tradisional di Jawa Barat?", + "en_question": "What traditional games do families play during traditional holidays in your country?", + "annotations": [ + { + "answers": [ + "congklak" + ], + "en_answers": [ + "congklak" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "not sure": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-80": { + "question": "Naon jinis baju nu biasa dipaké ku urang Jawa Barat dina waktos festival tradisional?", + "en_question": "What type of clothing do people from your country wear during traditional festivals?", + "annotations": [ + { + "answers": [ + "kabaya" + ], + "en_answers": [ + "kebaya" + ], + "count": 4 + }, + { + "answers": [ + "batik" + ], + "en_answers": [ + "batik" + ], + "count": 2 + }, + { + "answers": [ + "pangsi", + "baju pangsi" + ], + "en_answers": [ + "pangsi" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-as-89": { + "question": "Asesoris festival tradisional naon nu sok dipakena ku urang Jawa Barat?", + "en_question": "What traditional festival accessories do people from your country wear?", + "annotations": [ + { + "answers": [ + "iket" + ], + "en_answers": [ + "iket" + ], + "count": 1 + }, + { + "answers": [ + "totopong" + ], + "en_answers": [ + "totopong" + ], + "count": 1 + }, + { + "answers": [ + "bengker" + ], + "en_answers": [ + "bengker" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-05": { + "question": "Naon wewengkon nu pang kasohorna pikeun produksi alkohol di Jawa Barat?", + "en_question": "What is the most famous region for alcohol production in your country?", + "annotations": [], + "idks": { + "not-applicable": 3, + "idk": 2, + "no-answer": 0 + } + }, + "New-az-11": { + "question": "Buah naon nu mindeng didahar ku urang Jawa Barat dina usum panas?", + "en_question": "What fruit do people from your country often eat in the summer season?", + "annotations": [ + { + "answers": [ + "samangka" + ], + "en_answers": [ + "watermelon" + ], + "count": 3 + }, + { + "answers": [ + "kalapa" + ], + "en_answers": [ + "coconut" + ], + "count": 2 + }, + { + "answers": [ + "mangga", + "manggah" + ], + "en_answers": [ + "mango" + ], + "count": 1 + }, + { + "answers": [ + "jambu" + ], + "en_answers": [ + "guava" + ], + "count": 1 + } + ], + "idks": { + "not sure": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-12": { + "question": "Wewengkon mana di Jawa Barat anu kasohor ku kadaharan lautna?", + "en_question": "Which region in your country is known for its seafood?", + "annotations": [ + { + "answers": [ + "pangandaran" + ], + "en_answers": [ + "pangandaran" + ], + "count": 3 + }, + { + "answers": [ + "cirebon" + ], + "en_answers": [ + "cirebon" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-21": { + "question": "Wewengkon mana di Jawa Barat nu pang populerna pikeun tujuan ski?", + "en_question": "Which region in your country is the most popular skiing destination?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "New-az-26": { + "question": "Saha atlit beladiri nu pang populerna di Jawa Barat?", + "en_question": "Who is the most popular martial arts player in your country?", + "annotations": [], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-27": { + "question": "Olahraga naon nu geus jadi salah sahiji olahraga nu gancang ngembang di Jawa Barat dina dasawarsa ka tukang?", + "en_question": "Which sport has been one of the fastest-growing in your country over the last decade?", + "annotations": [ + { + "answers": [ + "bal sepak", + "sepak bal", + "sépak bal", + "bal", + "maen bal" + ], + "en_answers": [ + "football" + ], + "count": 1 + }, + { + "answers": [ + "badminton", + "bulu tangkis", + "bultang" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "yoga" + ], + "en_answers": [ + "yoga" + ], + "count": 1 + }, + { + "answers": [ + "maén bal", + "sepak bal", + "sépak bal", + "bal", + "maen bal" + ], + "en_answers": [ + "football" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-39": { + "question": "Nagara mana nu pang populerna pikeun mahasiswa ti Jawa Barat diajar di luar negeri?", + "en_question": "Which country is the most popular destination for students from your country studying abroad?", + "annotations": [ + { + "answers": [ + "jepang" + ], + "en_answers": [ + "japan" + ], + "count": 2 + }, + { + "answers": [ + "belanda" + ], + "en_answers": [ + "dutch" + ], + "count": 1 + }, + { + "answers": [ + "mesir" + ], + "en_answers": [ + "egypt" + ], + "count": 1 + }, + { + "answers": [ + "korea", + "korea selatan", + "korsel" + ], + "en_answers": [ + "korea" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-az-49": { + "question": "Sabaraha urang umumna jalma anu digawé dina kulawarga di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 1).)", + "en_question": "How many people work in a typical family in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 5 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-60": { + "question": "Di Jawa Barat, saha nu ngurus budak nalika kolot duanana keur digawé?", + "en_question": "In your country, who takes care of kids when both parents are working?", + "annotations": [ + { + "answers": [ + "nini" + ], + "en_answers": [ + "grandmother" + ], + "count": 3 + }, + { + "answers": [ + "anak nu gedé", + "anak nu gede" + ], + "en_answers": [ + "the older child" + ], + "count": 1 + }, + { + "answers": [ + "indung kolot" + ], + "en_answers": [ + "parents" + ], + "count": 1 + }, + { + "answers": [ + "bibi" + ], + "en_answers": [ + "aunt" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-az-69": { + "question": "Naon inuman alkohol nu dipikaresep ku lalaki ti Jawa Barat?", + "en_question": "What is the preferred alcoholic beverage for men from your country?", + "annotations": [], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 1 + } + }, + "New-az-70": { + "question": "Naon inuman alkohol nu dipikaresep ku awéwé ti Jawa Barat?", + "en_question": "What is the preferred alcoholic beverage for women from your country?", + "annotations": [], + "idks": { + "idk": 2, + "not-applicable": 2, + "no-answer": 1 + } + }, + "New-az-73": { + "question": "Sakumaha seueur rata-rata jalma anu biasana hadir dina hiji hajatan kawinan di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 1).)", + "en_question": "How many people on average typically attend a wedding in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "100" + ], + "en_answers": [ + "100" + ], + "count": 2 + }, + { + "answers": [ + "200" + ], + "en_answers": [ + "200" + ], + "count": 1 + }, + { + "answers": [ + "500" + ], + "en_answers": [ + "500" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "Depends on family and bride": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-01": { + "question": "Naon jinis daging anu biasa didahar ku urang Sunda nalika aranjeunna ngagelar bebakaran di Jawa Barat?", + "en_question": "What kind of meat do people usually eat when they have barbecue in your country?", + "annotations": [ + { + "answers": [ + "hayam", + "daging hayam" + ], + "en_answers": [ + "chicken", + "chicken meat" + ], + "count": 4 + }, + { + "answers": [ + "sapi", + "daging sapi" + ], + "en_answers": [ + "beef" + ], + "count": 2 + }, + { + "answers": [ + "domba", + "daging domba" + ], + "en_answers": [ + "lamb" + ], + "count": 2 + }, + { + "answers": [ + "embé", + "embe", + "daging embé", + "daging embe" + ], + "en_answers": [ + "goat meat" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-02": { + "question": "Iraha biasana urang di Jawa Barat nyarap? (Pasihkeun dina format HH:MM (contona, 18:00, 09:00).)", + "en_question": "When do people usually have breakfast in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "06:00" + ], + "en_answers": [ + "06:00" + ], + "count": 3 + }, + { + "answers": [ + "07:00" + ], + "en_answers": [ + "07:00" + ], + "count": 3 + }, + { + "answers": [ + "06:30" + ], + "en_answers": [ + "06:30" + ], + "count": 1 + }, + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-04": { + "question": "Naon rupa kadaharan anu ilahar didahar ku urang Sunda pikeun cemilan peuting di Jawa Barat?", + "en_question": "What kinds of food do people usually eat for late-night snacks in your country?", + "annotations": [ + { + "answers": [ + "martabak" + ], + "en_answers": [ + "martabak" + ], + "count": 1 + }, + { + "answers": [ + "kiripik" + ], + "en_answers": [ + "chips" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 1, + "not-applicable": 0 + } + }, + "New-ch-05": { + "question": "Naon asakan lada nu pang kasohorna di Jawa Barat?", + "en_question": "What is the most famous spicy dish in your country?", + "annotations": [ + { + "answers": [ + "seblak" + ], + "en_answers": [ + "seblak" + ], + "count": 5 + }, + { + "answers": [ + "ceker lada", + "cékér lada" + ], + "en_answers": [ + "spicy chicken feet" + ], + "count": 1 + }, + { + "answers": [ + "hayam geprék", + "hayam geprek" + ], + "en_answers": [ + "smashed chicken" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-07": { + "question": "Naon waé kadaharan anu ilaharna dipasangkeun jeung inuman keras di Jawa Barat?", + "en_question": "What food items do people typically pair with hard liquor in your country?", + "annotations": [ + { + "answers": [ + "suuk" + ], + "en_answers": [ + "peanut" + ], + "count": 1 + }, + { + "answers": [ + "camilan" + ], + "en_answers": [ + "snack" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 2, + "idk": 2, + "no-answer": 0 + } + }, + "New-ch-08": { + "question": "Naon bumbu dasar nu teu bisa leupas dina asakan di Jawa Barat?", + "en_question": "What seasoning is indispensable in cooking in your country?", + "annotations": [ + { + "answers": [ + "céngék", + "cengek" + ], + "en_answers": [ + "bird's eye chili" + ], + "count": 2 + }, + { + "answers": [ + "bawang bodas" + ], + "en_answers": [ + "garlic" + ], + "count": 2 + }, + { + "answers": [ + "bawang beureum" + ], + "en_answers": [ + "red onion" + ], + "count": 2 + }, + { + "answers": [ + "uyah" + ], + "en_answers": [ + "salt" + ], + "count": 1 + }, + { + "answers": [ + "salam" + ], + "en_answers": [ + "bay leaves" + ], + "count": 1 + }, + { + "answers": [ + "séréh", + "sereh" + ], + "en_answers": [ + "lemongrass" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-09": { + "question": "Naon kadaharan anu ilahar dikonsumsi ku jalma nalika cuaca tiis di Jawa Barat?", + "en_question": "What food do people typically consume when the weather is cold in your country?", + "annotations": [ + { + "answers": [ + "bubur kacang héjo" + ], + "en_answers": [ + "green bean porridge" + ], + "count": 2 + }, + { + "answers": [ + "emih", + "mie kuah", + "mie" + ], + "en_answers": [ + "noodles", + "noodle soup" + ], + "count": 2 + }, + { + "answers": [ + "gorengan", + "goréngan" + ], + "en_answers": [ + "fritters" + ], + "count": 1 + }, + { + "answers": [ + "seupan hui" + ], + "en_answers": [ + "steamed sweet potato" + ], + "count": 1 + }, + { + "answers": [ + "seupan cau" + ], + "en_answers": [ + "steamed banana" + ], + "count": 1 + }, + { + "answers": [ + "sop" + ], + "en_answers": [ + "soup" + ], + "count": 1 + }, + { + "answers": [ + "emih instan", + "mie" + ], + "en_answers": [ + "instant noodles" + ], + "count": 1 + }, + { + "answers": [ + "baso" + ], + "en_answers": [ + "meatball" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-13": { + "question": "Naon merek alkohol anu pang kawéntarna di Jawa Barat?", + "en_question": "What is the most famous alcohol brand in your country?", + "annotations": [ + { + "answers": [ + "orang tua" + ], + "en_answers": [ + "orang tua" + ], + "count": 1 + }, + { + "answers": [ + "intisari" + ], + "en_answers": [ + "intisari" + ], + "count": 1 + }, + { + "answers": [ + "kawa-kawa" + ], + "en_answers": [ + "kawa-kawa" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-ch-14": { + "question": "Naon kadaharan anu biasa didahar ku urang Sunda nalika maranéhna gering di Jawa Barat?", + "en_question": "What foods do people usually eat when they are sick in your country?", + "annotations": [ + { + "answers": [ + "bubur" + ], + "en_answers": [ + "porridge" + ], + "count": 3 + }, + { + "answers": [ + "bungbuahan", + "bubuahan" + ], + "en_answers": [ + "fruits" + ], + "count": 2 + }, + { + "answers": [ + "sayur" + ], + "en_answers": [ + "vegetable" + ], + "count": 1 + }, + { + "answers": [ + "sayur bening" + ], + "en_answers": [ + "clear vegetable soup" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-15": { + "question": "Naon kadaharan siap-saji nu ilahar dibeli ku jalma-jalma di supermarket di Jawa Barat?", + "en_question": "What prepared/ready-to-eat food do people typically buy at supermarkets in your country?", + "annotations": [ + { + "answers": [ + "nugget", + "nugget hayam" + ], + "en_answers": [ + "nugget", + "chicken nugget" + ], + "count": 2 + }, + { + "answers": [ + "hayam goréng", + "hayam goreng" + ], + "en_answers": [ + "fried chicken" + ], + "count": 1 + }, + { + "answers": [ + "roti" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "es krim", + "és krim" + ], + "en_answers": [ + "ice cream" + ], + "count": 1 + }, + { + "answers": [ + "emih" + ], + "en_answers": [ + "noodles" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-16": { + "question": "Naon pelem anu pang kasohorna nu patali jeung olahraga di Jawa Barat?", + "en_question": "What is the most famous sports-related movie in your country?", + "annotations": [ + { + "answers": [ + "garuda di dadaku" + ], + "en_answers": [ + "garuda di dadaku" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-ch-17": { + "question": "Olahraga ekstrim naon nu umumna jalma pang hayangna nyobian di Jawa Barat?", + "en_question": "What extreme sport do people generally wish to try the most in your country?", + "annotations": [ + { + "answers": [ + "paralayang" + ], + "en_answers": [ + "paragliding" + ], + "count": 2 + }, + { + "answers": [ + "panjat tebing" + ], + "en_answers": [ + "rock climbing" + ], + "count": 1 + }, + { + "answers": [ + "arung jeram" + ], + "en_answers": [ + "rafting" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-18": { + "question": "Acara atletik naon nu pang populerna pikeun ditongton nalika aya lomba di Jawa Barat?", + "en_question": "Which track and field event is the most popular to watch during competitions in your country?", + "annotations": [], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-19": { + "question": "Acara senam naon nu pang populerna pikeun ditongton nalika lomba di Jawa Barat?", + "en_question": "Which gymnastics event is the most popular to watch during competitions in your country?", + "annotations": [ + { + "answers": [ + "senam skj", + "skj", + "senam kesehatan jasmani" + ], + "en_answers": [ + "skj exercise" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-23": { + "question": "Saha nu pang kasohorna jadi pamaén tenis méja di Jawa Barat?", + "en_question": "Who is the most famous table tennis player in your country?", + "annotations": [], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-26": { + "question": "Dina Olimpiade Usum Tiis, acara naon nu pang populerna ditongton di Jawa Barat?", + "en_question": "In the Winter Olympics, which event is the most popular to watch in your country?", + "annotations": [], + "idks": { + "not-applicable": 4, + "idk": 1, + "no-answer": 0 + } + }, + "New-ch-27": { + "question": "Saha nu jadi petinju pang kawéntarna di Jawa Barat?", + "en_question": "Who is the most famous boxer in your country?", + "annotations": [ + { + "answers": [ + "crish john", + "chris john" + ], + "en_answers": [ + "crish john", + "chris john" + ], + "count": 2 + }, + { + "answers": [ + "mike tyson" + ], + "en_answers": [ + "mike tyson" + ], + "count": 1 + }, + { + "answers": [ + "ellyas pical" + ], + "en_answers": [ + "ellyas pical" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-30": { + "question": "Saha atlit lumpat jeung lapang anu pang kawentarna di Jawa Barat?", + "en_question": "Who is the most famous track and field athlete in your country?", + "annotations": [ + { + "answers": [ + "muhammad zohri" + ], + "en_answers": [ + "muhammad zohri" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-31": { + "question": "Padamelan naon nu pang dipiharep ku kolot sangkan dikeureuyeuh ku anak-anakna di Jawa Barat?", + "en_question": "What job do parents most hope their children will pursue in your country?", + "annotations": [ + { + "answers": [ + "pns", + "pegawai negeri sipil" + ], + "en_answers": [ + "civil servant" + ], + "count": 4 + }, + { + "answers": [ + "tentara", + "tantara" + ], + "en_answers": [ + "soldier" + ], + "count": 1 + }, + { + "answers": [ + "buruh pabrik" + ], + "en_answers": [ + "factory worker" + ], + "count": 1 + }, + { + "answers": [ + "dokter" + ], + "en_answers": [ + "doctor" + ], + "count": 1 + }, + { + "answers": [ + "insinyur" + ], + "en_answers": [ + "engineer" + ], + "count": 1 + }, + { + "answers": [ + "polisi" + ], + "en_answers": [ + "police" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-32": { + "question": "Naon parangkat lunak kantor anu ilahar digunakeun ku jalma di tempat gawé di Jawa Barat?", + "en_question": "What office software do people typically use in the workplace in your country?", + "annotations": [ + { + "answers": [ + "ms. excel", + "microsoft excel", + "microsoft exel", + "excel" + ], + "en_answers": [ + "ms. excel", + "microsoft exel" + ], + "count": 2 + }, + { + "answers": [ + "ms. word", + "microsoft word", + "word" + ], + "en_answers": [ + "ms. word" + ], + "count": 1 + }, + { + "answers": [ + "web browser" + ], + "en_answers": [ + "web browser" + ], + "count": 1 + }, + { + "answers": [ + "microsoft office", + "ms.office", + "office" + ], + "en_answers": [ + "microsoft office" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-38": { + "question": "Kota-kota atanapi wewengkon mana nu kasohor ku kagiatan impor jeung ékspor na di Jawa Barat?", + "en_question": "Which cities or regions are known for their import and export activities in your country?", + "annotations": [ + { + "answers": [ + "bandung" + ], + "en_answers": [ + "bandung" + ], + "count": 1 + }, + { + "answers": [ + "cianjur" + ], + "en_answers": [ + "cianjur" + ], + "count": 1 + }, + { + "answers": [ + "karawang" + ], + "en_answers": [ + "karawang" + ], + "count": 1 + } + ], + "idks": { + "not sure": 3, + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-39": { + "question": "Naon platform anu ilahar digunakeun dina industri e-commerce di Jawa Barat?", + "en_question": "What platform is commonly used in the e-commerce industry in your country?", + "annotations": [ + { + "answers": [ + "shopee" + ], + "en_answers": [ + "shopee" + ], + "count": 5 + }, + { + "answers": [ + "tokopedia" + ], + "en_answers": [ + "tokopedia" + ], + "count": 4 + }, + { + "answers": [ + "bukalapak" + ], + "en_answers": [ + "bukalapak" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-44": { + "question": "Sabaraha lami periode percobian pikeun karyawan anyar sateuacan nandatanganan kontrak formal di Jawa Barat? (contona, 1 bulan).", + "en_question": "How long is the typical probation period for new employees before signing a formal contract in your country? (e.g., 1 month).", + "annotations": [ + { + "answers": [ + "3 bulan" + ], + "en_answers": [ + "3 months" + ], + "count": 3 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-45": { + "question": "Industri naon nu ilahar dipilih ku para nonoman pikeun ngamimitian usaha di Jawa Barat?", + "en_question": "Which industries do young people typically choose to start businesses in your country?", + "annotations": [ + { + "answers": [ + "kadaharan" + ], + "en_answers": [ + "food" + ], + "count": 3 + }, + { + "answers": [ + "kuliner", + "kulinér" + ], + "en_answers": [ + "culinary" + ], + "count": 1 + }, + { + "answers": [ + "manufaktur" + ], + "en_answers": [ + "manufacture" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-49": { + "question": "Naon cara anu pang umumna pikeun anggota kulawarga komunikasi jarak jauh di Jawa Barat?", + "en_question": "What is the most common way for family members to communicate remotely in your country?", + "annotations": [ + { + "answers": [ + "nelepon", + "telepon" + ], + "en_answers": [ + "call" + ], + "count": 4 + }, + { + "answers": [ + "whatsapp", + "maké whatsapp" + ], + "en_answers": [ + "whatsapp", + "using whatsapp" + ], + "count": 3 + }, + { + "answers": [ + "sms" + ], + "en_answers": [ + "short message service" + ], + "count": 1 + }, + { + "answers": [ + "telepon vidéo", + "telepon video" + ], + "en_answers": [ + "video call" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-51": { + "question": "Naon wangun akomodasi anu biasana dipesen pikeun lalampahan kulawarga di Jawa Barat?", + "en_question": "What form of accommodation is typically booked for family trips in your country?", + "annotations": [ + { + "answers": [ + "hotél", + "hotel" + ], + "en_answers": [ + "hotel" + ], + "count": 2 + }, + { + "answers": [ + "vila", + "villa" + ], + "en_answers": [ + "villa" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-54": { + "question": "Buah naon nu biasana disadiakeun pang mindengna pikeun dahar kulawarga di Jawa Barat?", + "en_question": "Which fruit is usually prepared the most for family dinners in your country?", + "annotations": [ + { + "answers": [ + "cau" + ], + "en_answers": [ + "banana" + ], + "count": 3 + }, + { + "answers": [ + "jeruk" + ], + "en_answers": [ + "orange" + ], + "count": 3 + }, + { + "answers": [ + "jambu" + ], + "en_answers": [ + "guava" + ], + "count": 1 + }, + { + "answers": [ + "apel" + ], + "en_answers": [ + "apple" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-64": { + "question": "Sabaraha jam pelajaran anu biasana diiluan ku mahasiswa universitas per mingguna di Jawa Barat? (Pasihkeun angka Arab (contona, 1) hungkul.)", + "en_question": "How many hours of classes do university students typically have per week in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "Depends on amount of credit": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-66": { + "question": "Sabaraha biaya SPP rata-rata per semester pikeun SMA negeri di Jawa Barat? (Pasihan angka Arab wungkul (contona, 1).)", + "en_question": "What is the typical tuition fee per semester for public high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "0" + ], + "en_answers": [ + "0" + ], + "count": 2 + }, + { + "answers": [ + "200000" + ], + "en_answers": [ + "200000" + ], + "count": 1 + }, + { + "answers": [ + "250000", + "250" + ], + "en_answers": [ + "250000" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-ch-70": { + "question": "Naon mata kuliah wajib anu umum dipiboga ku kabeh mahasiswa universitas di Jawa Barat?", + "en_question": "What compulsory courses do university students have in common in your country?", + "annotations": [ + { + "answers": [ + "basa inggris" + ], + "en_answers": [ + "english language" + ], + "count": 2 + }, + { + "answers": [ + "basa indonesia", + "basa indonésia" + ], + "en_answers": [ + "indonesian language" + ], + "count": 2 + }, + { + "answers": [ + "kawarganagaraan" + ], + "en_answers": [ + "citizenship" + ], + "count": 1 + }, + { + "answers": [ + "agama" + ], + "en_answers": [ + "religion" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-71": { + "question": "Sabaraha ukuran kelas rata-rata di SMA di Jawa Barat? (Pasihkeun angka Arab (contona, 1) hungkul.)", + "en_question": "What is the average class size in high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 3 + }, + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 1 + }, + { + "answers": [ + "50" + ], + "en_answers": [ + "50" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-72": { + "question": "Jurusan naon nu dianggap paling ngarojong kana kasempetan gawe di Jawa Barat?", + "en_question": "Which major is considered most conducive to employment in your country?", + "annotations": [ + { + "answers": [ + "kedokteran" + ], + "en_answers": [ + "medicine" + ], + "count": 2 + }, + { + "answers": [ + "téhnik", + "teknik", + "tehnik", + "téknik" + ], + "en_answers": [ + "engineering" + ], + "count": 2 + }, + { + "answers": [ + "komputer" + ], + "en_answers": [ + "computer" + ], + "count": 1 + }, + { + "answers": [ + "atikan" + ], + "en_answers": [ + "education" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-73": { + "question": "Naon jinis klub nu pang populerna di kalangan mahasiswa universitas di Jawa Barat?", + "en_question": "What type of clubs are most popular among university students in your country?", + "annotations": [ + { + "answers": [ + "klub olahraga", + "klub olah raga", + "olahraga" + ], + "en_answers": [ + "sports club", + "sports" + ], + "count": 3 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-74": { + "question": "Naon jinis akomodasi anu biasana dipaké ku mahasiswa universitas di Jawa Barat?", + "en_question": "What types of accommodation do university students in your country typically live in?", + "annotations": [ + { + "answers": [ + "imah kos", + "kosan", + "kos-kosan" + ], + "en_answers": [ + "boarding house" + ], + "count": 3 + }, + { + "answers": [ + "apartemén", + "apartemen" + ], + "en_answers": [ + "apartment" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-75": { + "question": "Sabaraha lila unggal période kelas pikeun murid SMP di Jawa Barat (menit)? (Pasihkeun nomer Arab (contona, 1) wungkul.)", + "en_question": "How long is each class period for middle school students in your country (minutes)? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "45" + ], + "en_answers": [ + "45" + ], + "count": 2 + }, + { + "answers": [ + "50" + ], + "en_answers": [ + "50" + ], + "count": 2 + } + ], + "idks": { + "not sure": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-78": { + "question": "Kagiatan rekreasi naon nu biasana dipikaresep ku awewe nu geus pensiun di Jawa Barat?", + "en_question": "What leisure activities do retired women typically like in your country?", + "annotations": [ + { + "answers": [ + "ngajait", + "ngaput" + ], + "en_answers": [ + "sewing" + ], + "count": 2 + }, + { + "answers": [ + "ngurus incu" + ], + "en_answers": [ + "taking care of grandchildren" + ], + "count": 1 + }, + { + "answers": [ + "pepelakan" + ], + "en_answers": [ + "gardening" + ], + "count": 1 + }, + { + "answers": [ + "jalan-jalan" + ], + "en_answers": [ + "vacation" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-79": { + "question": "Kagiatan luang naon nu biasana dipikaresep ku lalaki nu geus pensiun di Jawa Barat?", + "en_question": "What leisure activities do retired men typically like in your country?", + "annotations": [ + { + "answers": [ + "mancing", + "ngusep", + "nguseup" + ], + "en_answers": [ + "fishing" + ], + "count": 3 + }, + { + "answers": [ + "tatanén", + "tatanen" + ], + "en_answers": [ + "farming" + ], + "count": 2 + }, + { + "answers": [ + "miara manuk" + ], + "en_answers": [ + "bird keeping" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-80": { + "question": "Dina liburan naon biasana urang sok nganjang ka tempat-tempat ibadah (kuil, gereja, jsb.) di Jawa Barat?", + "en_question": "During which holidays do people typically visit religious sites (temples, churches, etc.) in your country?", + "annotations": [ + { + "answers": [ + "lebaran", + "libur lebaran", + "idul fitri", + "libur idul fitri" + ], + "en_answers": [ + "eid al-fitr", + "eid holiday" + ], + "count": 4 + }, + { + "answers": [ + "natal", + "libur natal" + ], + "en_answers": [ + "christmas" + ], + "count": 2 + }, + { + "answers": [ + "imlék", + "imlek", + "libur imlék" + ], + "en_answers": [ + "chinese new year" + ], + "count": 2 + }, + { + "answers": [ + "libur kaagamaan" + ], + "en_answers": [ + "religious holiday" + ], + "count": 1 + }, + { + "answers": [ + "paskah", + "libur paskah" + ], + "en_answers": [ + "easter" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-81": { + "question": "Naon hadiah-hadiah nu umum pikeun upacara salametan imah di Jawa Barat?", + "en_question": "What are the typical housewarming gifts in your country?", + "annotations": [ + { + "answers": [ + "parabot imah", + "parabotan imah" + ], + "en_answers": [ + "household appliances" + ], + "count": 2 + }, + { + "answers": [ + "kadaharan" + ], + "en_answers": [ + "food" + ], + "count": 1 + }, + { + "answers": [ + "kadaharan ringan" + ], + "en_answers": [ + "snack" + ], + "count": 1 + }, + { + "answers": [ + "bungbuahan" + ], + "en_answers": [ + "fruits" + ], + "count": 1 + }, + { + "answers": [ + "sembako" + ], + "en_answers": [ + "basic necessities" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-82": { + "question": "Jam sabaraha biasana kawinan di Jawa Barat dimimitian? (Pasihkeun dina format HH:MM (contona, 18:00, 09:00).)", + "en_question": "At what time do weddings typically start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 3 + }, + { + "answers": [ + "09:00" + ], + "en_answers": [ + "09:00" + ], + "count": 3 + }, + { + "answers": [ + "10:00" + ], + "en_answers": [ + "10:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-83": { + "question": "Kota mana di Jawa Barat anu pang mindengna ngayakeun festival?", + "en_question": "Which city in your country hosts festivals the most?", + "annotations": [ + { + "answers": [ + "bandung" + ], + "en_answers": [ + "bandung" + ], + "count": 3 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ch-84": { + "question": "Naon warna baju anu ilaharna dipaké ku jalma-jalma nalika ngahadiran hajatan kawinan di Jawa Barat?", + "en_question": "What color of clothing do people typically wear when attending weddings in your country?", + "annotations": [ + { + "answers": [ + "warna caang" + ], + "en_answers": [ + "bright color" + ], + "count": 1 + }, + { + "answers": [ + "krém", + "krem" + ], + "en_answers": [ + "cream" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ch-85": { + "question": "Naon warna baju anu biasana dipaké ku jalma nalika ngahadiran upacara pamakaman di Jawa Barat?", + "en_question": "What color of clothing do people typically wear when attending funerals in your country?", + "annotations": [ + { + "answers": [ + "hideung" + ], + "en_answers": [ + "black" + ], + "count": 5 + }, + { + "answers": [ + "bodas" + ], + "en_answers": [ + "white" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-01": { + "question": "Camilan naon nu didahar di bioskop di Jawa Barat?", + "en_question": "Which snack is eaten in the cinema in your country?", + "annotations": [ + { + "answers": [ + "borondong jagong", + "jagong beledug", + "jagong kembang" + ], + "en_answers": [ + "popcorn" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-02": { + "question": "Naon rasa kiripik nu pang populerna di Jawa Barat?", + "en_question": "What is the most popular chip/crisp flavour in your country?", + "annotations": [ + { + "answers": [ + "lada", + "balado" + ], + "en_answers": [ + "spicy" + ], + "count": 5 + }, + { + "answers": [ + "asin" + ], + "en_answers": [ + "savory" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-04": { + "question": "Saha artis koki nu kasohor di Jawa Barat?", + "en_question": "Who is a popular celebrity chef in your country?", + "annotations": [ + { + "answers": [ + "juna", + "chéf juna", + "chef juna" + ], + "en_answers": [ + "juna", + "chéf juna" + ], + "count": 2 + }, + { + "answers": [ + "renata", + "chef renata" + ], + "en_answers": [ + "renata" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-05": { + "question": "Naon kadaharan anu mirah jeung gancang jadi pilihan pikeun tuang di Jawa Barat?", + "en_question": "Which food is a cost-effective and quick meal option in your country?", + "annotations": [ + { + "answers": [ + "kadaharan warteg" + ], + "en_answers": [ + "warteg food" + ], + "count": 2 + }, + { + "answers": [ + "hayam goréng", + "goréng hayam", + "hayam goreng", + "goreng hayam" + ], + "en_answers": [ + "fried chicken" + ], + "count": 2 + }, + { + "answers": [ + "emih" + ], + "en_answers": [ + "noodles" + ], + "count": 1 + }, + { + "answers": [ + "emih goréng", + "emih goreng" + ], + "en_answers": [ + "fried noodles" + ], + "count": 1 + }, + { + "answers": [ + "sangu goréng", + "sangu goreng", + "goréng sangu" + ], + "en_answers": [ + "fried rice" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-07": { + "question": "Naon acara masak nu pang populerna di Jawa Barat?", + "en_question": "What are the most popular cooking shows in your country?", + "annotations": [ + { + "answers": [ + "masterchef indonesia", + "masterchef", + "master chef", + "masterchef ina" + ], + "en_answers": [ + "masterchef indonesia", + "masterchef", + "master chef" + ], + "count": 3 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-08": { + "question": "Naon merek coklat nu pang populerna di Jawa Barat?", + "en_question": "What is the most popular chocolate brand in your country?", + "annotations": [ + { + "answers": [ + "silverqueen", + "silver queen" + ], + "en_answers": [ + "silverqueen" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-10": { + "question": "Naon jenis keju nu pang lobana didahar di Jawa Barat?", + "en_question": "What is the most eaten cheese in your country?", + "annotations": [ + { + "answers": [ + "cheddar" + ], + "en_answers": [ + "cheddar" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not sure": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-en-11": { + "question": "Naon sayur nu pang teu dipikaresep di Jawa Barat?", + "en_question": "What is the most disliked vegetable in your country?", + "annotations": [], + "idks": { + "no-answer": 2, + "idk": 1, + "not sure": 1, + "might be bias": 1, + "not-applicable": 0 + } + }, + "New-en-12": { + "question": "Naon panganan anu pang umumna kapanggih di pujasera di Jawa Barat?", + "en_question": "What food is most commonly found in food courts in your country?", + "annotations": [ + { + "answers": [ + "baso", + "bakso" + ], + "en_answers": [ + "meatball" + ], + "count": 3 + }, + { + "answers": [ + "seblak" + ], + "en_answers": [ + "seblak" + ], + "count": 2 + }, + { + "answers": [ + "emih hayam", + "mie hayam", + "émih hayam" + ], + "en_answers": [ + "chicken noodles" + ], + "count": 1 + }, + { + "answers": [ + "hayam geprék", + "hayam geprek" + ], + "en_answers": [ + "smashed chicken" + ], + "count": 1 + }, + { + "answers": [ + "hayam goréng", + "hayam goreng" + ], + "en_answers": [ + "fried chicken" + ], + "count": 1 + }, + { + "answers": [ + "sambel lalaban" + ], + "en_answers": [ + "chili sauce" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-17": { + "question": "Naon alat dukungan nu pang ilaharna dipaké ku para bobotoh olahraga di Jawa Barat?", + "en_question": "What are the most common cheering tools used by sports fans in your country?", + "annotations": [ + { + "answers": [ + "spanduk" + ], + "en_answers": [ + "banner" + ], + "count": 2 + }, + { + "answers": [ + "drum", + "snare" + ], + "en_answers": [ + "snare drum" + ], + "count": 2 + }, + { + "answers": [ + "kaos jersey", + "kaos jérsey" + ], + "en_answers": [ + "jersey shirt" + ], + "count": 1 + }, + { + "answers": [ + "bendera", + "bandéra" + ], + "en_answers": [ + "flag" + ], + "count": 1 + }, + { + "answers": [ + "bass" + ], + "en_answers": [ + "bass" + ], + "count": 1 + }, + { + "answers": [ + "poster" + ], + "en_answers": [ + "poster" + ], + "count": 1 + }, + { + "answers": [ + "syal", + "karembong" + ], + "en_answers": [ + "scarf" + ], + "count": 1 + }, + { + "answers": [ + "alat dulag" + ], + "en_answers": [ + "large drum" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-18": { + "question": "Naon nu dibawa ku para fans nalika nongton patandingan langsung di Jawa Barat?", + "en_question": "What do fans bring with them when attending a live game in your country?", + "annotations": [ + { + "answers": [ + "spanduk" + ], + "en_answers": [ + "banner" + ], + "count": 3 + }, + { + "answers": [ + "syal", + "karembong" + ], + "en_answers": [ + "scarf" + ], + "count": 2 + }, + { + "answers": [ + "hp", + "handphone" + ], + "en_answers": [ + "mobile phone", + "phone", + "handphone", + "cell phone" + ], + "count": 1 + }, + { + "answers": [ + "kaos jérsey", + "kaos jersey" + ], + "en_answers": [ + "jersey shirt" + ], + "count": 1 + }, + { + "answers": [ + "bendera", + "bandéra" + ], + "en_answers": [ + "flag" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-19": { + "question": "Naon stadion olahraga nu pang kasohorna di Jawa Barat?", + "en_question": "What is the most well known sporting stadium in your country?", + "annotations": [ + { + "answers": [ + "gelora bandung lautan api", + "stadion gelora bandung lautan api" + ], + "en_answers": [ + "gelora bandung lautan api", + "gelora bandung lautan api stadion" + ], + "count": 3 + }, + { + "answers": [ + "si jalak harupat", + "stadion jalak harupat", + "jalak harupat" + ], + "en_answers": [ + "si jalak harupat", + "jalak harupat stadion", + "jalak harupat" + ], + "count": 3 + }, + { + "answers": [ + "siliwangi" + ], + "en_answers": [ + "siliwangi" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-23": { + "question": "Saha atlit Paralimpiade nu pang kawentarna di Jawa Barat?", + "en_question": "Who is the most famous Paralympian in your country?", + "annotations": [], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-26": { + "question": "Naon sorakan olahraga anu pang kasohorna di Jawa Barat?", + "en_question": "What is the best recognized sporting chant in your country?", + "annotations": [], + "idks": { + "idk": 3, + "not sure": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-38": { + "question": "Industri naon nu kasohor ku jam gawe anu leuwih fleksibel di Jawa Barat?", + "en_question": "Which industries are known for more flexible working hours in your country?", + "annotations": [ + { + "answers": [ + "teknologi", + "téhnologi", + "téknologi", + "tehnologi" + ], + "en_answers": [ + "technology" + ], + "count": 3 + }, + { + "answers": [ + "teknologi informasi", + "téknologi informasi", + "tehnologi informasi", + "téhnologi informasi" + ], + "en_answers": [ + "information technology" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-41": { + "question": "Saha pangusaha nu pang kasohor jeung sukses di Jawa Barat?", + "en_question": "Who is the most well known and successful entrepreneur in your country?", + "annotations": [ + { + "answers": [ + "haji ma'soem" + ], + "en_answers": [ + "haji ma'soem" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not sure": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-en-47": { + "question": "Naon nu biasana dipanggihan di tukangeun imah-imah di Jawa Barat?", + "en_question": "What can typically be found in the back garden of houses in your country?", + "annotations": [ + { + "answers": [ + "kebon" + ], + "en_answers": [ + "garden" + ], + "count": 3 + }, + { + "answers": [ + "sawah" + ], + "en_answers": [ + "rice field" + ], + "count": 1 + }, + { + "answers": [ + "tempat moé", + "tempat moe" + ], + "en_answers": [ + "sunbathe place" + ], + "count": 1 + }, + { + "answers": [ + "dapur" + ], + "en_answers": [ + "kitchen" + ], + "count": 1 + }, + { + "answers": [ + "tatangkalan" + ], + "en_answers": [ + "trees" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-49": { + "question": "Naon ngaran kulawarga nu pang kasohorna di Jawa Barat?", + "en_question": "What is the name of the most famous family in your country?", + "annotations": [], + "idks": { + "not-applicable": 3, + "not sure": 1, + "idk": 1, + "no-answer": 0 + } + }, + "New-en-50": { + "question": "Naon ngaran kulawarga anu pang umumna di Jawa Barat?", + "en_question": "What is the most common family name in your country?", + "annotations": [], + "idks": { + "not-applicable": 3, + "not sure": 1, + "idk": 1, + "no-answer": 0 + } + }, + "New-en-55": { + "question": "Agama naon nu pang umumna diamalkeun ku kulawarga di Jawa Barat?", + "en_question": "Which religion is most commonly practiced by families in your country?", + "annotations": [ + { + "answers": [ + "islam" + ], + "en_answers": [ + "islam" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-56": { + "question": "Naon basa asing nu pang populerna dipake ku kulawarga di Jawa Barat?", + "en_question": "What is the most popular foreign language spoken by families in your country?", + "annotations": [ + { + "answers": [ + "basa inggris", + "inggris" + ], + "en_answers": [ + "english language", + "english" + ], + "count": 3 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "New-en-59": { + "question": "Nagara mana nu pang populerna pikeun tujuan kulawarga ti Jawa Barat ngumbara?", + "en_question": "Which country is the most popular destination for families from your country to emigrate to?", + "annotations": [ + { + "answers": [ + "jepang" + ], + "en_answers": [ + "japan" + ], + "count": 2 + }, + { + "answers": [ + "arab", + "arab saudi" + ], + "en_answers": [ + "saudi arabia" + ], + "count": 2 + }, + { + "answers": [ + "malaysia" + ], + "en_answers": [ + "malaysia" + ], + "count": 1 + }, + { + "answers": [ + "korea", + "koréa" + ], + "en_answers": [ + "korea" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-68": { + "question": "Naon waé akibat tina kalakuan goréng di sakola-sakola di Jawa Barat?", + "en_question": "What repercussions are there for bad behavior in schools in your country?", + "annotations": [ + { + "answers": [ + "dicandak ka bk", + "dicandak ka bimbingan konseling" + ], + "en_answers": [ + "taken to the counseling office" + ], + "count": 1 + }, + { + "answers": [ + "skorsing", + "skors" + ], + "en_answers": [ + "suspension" + ], + "count": 1 + }, + { + "answers": [ + "drop out", + "do" + ], + "en_answers": [ + "drop out" + ], + "count": 1 + }, + { + "answers": [ + "teu naék kelas", + "teu naek kelas" + ], + "en_answers": [ + "repeating grade" + ], + "count": 1 + }, + { + "answers": [ + "pangangguran" + ], + "en_answers": [ + "unemployment" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-en-69": { + "question": "Saha pangarang anu ilahar diajarkeun dina kelas sastra di Jawa Barat?", + "en_question": "Which writers are commonly studied in literature class in your country?", + "annotations": [ + { + "answers": [ + "chairil anwar" + ], + "en_answers": [ + "chairil anwar" + ], + "count": 3 + }, + { + "answers": [ + "pramoedya ananta toer" + ], + "en_answers": [ + "pramoedya ananta toer" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-70": { + "question": "Sabaraha kali libur sakola dina sataun pikeun sakola SMA di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 1).)", + "en_question": "How many school breaks are there in a year for high schools in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 3 + } + ], + "idks": { + "idk": 1, + "Depends on the national holiday": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-72": { + "question": "Sumber daya daring naon nu biasa dipaké ku murid pikeun diajar di Jawa Barat?", + "en_question": "Which online resource do students usually use to study in your country?", + "annotations": [ + { + "answers": [ + "google" + ], + "en_answers": [ + "google" + ], + "count": 2 + }, + { + "answers": [ + "zoom" + ], + "en_answers": [ + "zoom" + ], + "count": 1 + }, + { + "answers": [ + "google meet", + "gmeet" + ], + "en_answers": [ + "google meet" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-75": { + "question": "Sabaraha rata-rata panjangna semester dina watesan minggu ngajar di universitas-universitas di Jawa Barat? (Pasihkeun nomer Arab (contona, 1) hungkul.)", + "en_question": "What is the average length of a semester in terms of weeks of teaching at universities in your country? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "16" + ], + "en_answers": [ + "16" + ], + "count": 3 + }, + { + "answers": [ + "14" + ], + "en_answers": [ + "14" + ], + "count": 2 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-76": { + "question": "Bandara mana di Jawa Barat nu pang raména dina usum liburan?", + "en_question": "Which airport in your country is the busiest during the holiday season?", + "annotations": [ + { + "answers": [ + "husein sastranegara" + ], + "en_answers": [ + "husein sastranegara" + ], + "count": 2 + }, + { + "answers": [ + "bandara husein sastranegara" + ], + "en_answers": [ + "bandara husein sastranegara" + ], + "count": 1 + } + ], + "idks": { + "Not sure": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-79": { + "question": "Wilayah mana di Jawa Barat anu kasohor ku pertunjukan téater na?", + "en_question": "Which region of your country is well known for its theatrical performances?", + "annotations": [ + { + "answers": [ + "bandung" + ], + "en_answers": [ + "bandung" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "not sure": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-87": { + "question": "Naon landmark sajarah nu pang kasohor di Jawa Barat?", + "en_question": "What is the most famous historic landmark in your country?", + "annotations": [ + { + "answers": [ + "gedung saté", + "gedung sate" + ], + "en_answers": [ + "sate building" + ], + "count": 3 + }, + { + "answers": [ + "monumen bandung lautan api" + ], + "en_answers": [ + "bandung lautan api monument" + ], + "count": 1 + } + ], + "idks": { + "not sure": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-en-90": { + "question": "Naon ngaran hotél anu pang kawéntarna di Jawa Barat?", + "en_question": "What is the most famous hotel brand in your country?", + "annotations": [ + { + "answers": [ + "oyo" + ], + "en_answers": [ + "oyo" + ], + "count": 1 + }, + { + "answers": [ + "reddoorz" + ], + "en_answers": [ + "reddoorz" + ], + "count": 1 + }, + { + "answers": [ + "horison" + ], + "en_answers": [ + "horison" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not sure": 1, + "not-applicable": 0 + } + }, + "New-gr-05": { + "question": "Naon pilihan nyarap nu gancang disajikeun (grab-and-go) nu pang populerna di Jawa Barat?", + "en_question": "What is the most popular grab-and-go breakfast option in your country?", + "annotations": [ + { + "answers": [ + "bubur" + ], + "en_answers": [ + "porridge" + ], + "count": 2 + }, + { + "answers": [ + "bubur hayam" + ], + "en_answers": [ + "chicken porridge" + ], + "count": 2 + }, + { + "answers": [ + "kupat sayur" + ], + "en_answers": [ + "rice cake with vegetables" + ], + "count": 1 + }, + { + "answers": [ + "roti" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "bongko" + ], + "en_answers": [ + "bongko" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-06": { + "question": "Naon panganan nu pang populerna di Jawa Barat di kalangan nonoman?", + "en_question": "What is the most popular food in your country among young people?", + "annotations": [ + { + "answers": [ + "seblak" + ], + "en_answers": [ + "seblak" + ], + "count": 4 + }, + { + "answers": [ + "baso aci" + ], + "en_answers": [ + "tapioca meatball" + ], + "count": 1 + }, + { + "answers": [ + "baso" + ], + "en_answers": [ + "meatball" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-gr-08": { + "question": "Inuman alkohol jinis naon nu pang mindeng na dikonsumsi dina festival-festival di Jawa Barat?", + "en_question": "What type of alcoholic drink is most commonly consumed at festivals in your country?", + "annotations": [ + { + "answers": [ + "bir" + ], + "en_answers": [ + "beer" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 1, + "no-answer": 0 + } + }, + "New-gr-13": { + "question": "Naon inuman isuk nu pang ilaharna di Jawa Barat?", + "en_question": "What is the most common morning drink in your country?", + "annotations": [ + { + "answers": [ + "entéh", + "entéh panas", + "teh haneut", + "teh", + "téh", + "teh panas", + "téh panas", + "enteh haneut", + "téh haneut" + ], + "en_answers": [ + "tea", + "hot tea", + "warm tea" + ], + "count": 4 + }, + { + "answers": [ + "susu" + ], + "en_answers": [ + "milk" + ], + "count": 2 + }, + { + "answers": [ + "kopi" + ], + "en_answers": [ + "coffee" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-15": { + "question": "Naon kadaharan amis tradisional nu pang populerna di Jawa Barat?", + "en_question": "What is the most popular traditional dessert in your country?", + "annotations": [ + { + "answers": [ + "dodol" + ], + "en_answers": [ + "dodol" + ], + "count": 2 + }, + { + "answers": [ + "peuyeum" + ], + "en_answers": [ + "fermented cassava" + ], + "count": 2 + }, + { + "answers": [ + "misro" + ], + "en_answers": [ + "misro" + ], + "count": 2 + }, + { + "answers": [ + "colenak", + "colénak" + ], + "en_answers": [ + "colenak" + ], + "count": 1 + }, + { + "answers": [ + "katimus" + ], + "en_answers": [ + "steamed cassava cake" + ], + "count": 1 + }, + { + "answers": [ + "lapis legit" + ], + "en_answers": [ + "layered cake" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-21": { + "question": "Naon olahraga raket nu pang populerna di Jawa Barat?", + "en_question": "What is the most popular racket sport in your country?", + "annotations": [ + { + "answers": [ + "badminton" + ], + "en_answers": [ + "badminton" + ], + "count": 4 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-24": { + "question": "Naon olahraga atletik anu pang populerna di Jawa Barat?", + "en_question": "What is the most popular track and field sport in your country?", + "annotations": [ + { + "answers": [ + "lumpat", + "maraton" + ], + "en_answers": [ + "running", + "marathon" + ], + "count": 2 + }, + { + "answers": [ + "renang", + "ngojay" + ], + "en_answers": [ + "swimming" + ], + "count": 2 + } + ], + "idks": { + "not sure": 1, + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-29": { + "question": "Acara olahraga internasional mana nu pang populerna di Jawa Barat?", + "en_question": "Which international sporting event is the most popular in your country?", + "annotations": [ + { + "answers": [ + "piala dunia sepak bola", + "piala dunia", + "piala dunia sépak bola" + ], + "en_answers": [ + "football world cup", + "world cup" + ], + "count": 2 + }, + { + "answers": [ + "thomas cup" + ], + "en_answers": [ + "thomas cup" + ], + "count": 1 + }, + { + "answers": [ + "olimpiade" + ], + "en_answers": [ + "olympic" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not sure": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-47": { + "question": "Sabaraha lami (dina menit) istirahat gawe biasana di Jawa Barat, teu kaasup istirahat dahar beurang jeung dahar peuting? (Pasihkeun angka Arab (contona, 1) hungkul.)", + "en_question": "How long (in minutes) are typical work breaks in your country, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)", + "annotations": [ + { + "answers": [ + "30" + ], + "en_answers": [ + "30" + ], + "count": 2 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "Not sure": 1, + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-58": { + "question": "Padamelan naon nu dianggap gajihna leutik di Jawa Barat?", + "en_question": "Which job is considered underpaid in your country?", + "annotations": [ + { + "answers": [ + "buruh angkut" + ], + "en_answers": [ + "porter" + ], + "count": 1 + }, + { + "answers": [ + "supir" + ], + "en_answers": [ + "driver" + ], + "count": 1 + }, + { + "answers": [ + "satpam" + ], + "en_answers": [ + "security guard" + ], + "count": 1 + }, + { + "answers": [ + "kuli bangunan" + ], + "en_answers": [ + "construction worker" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-76": { + "question": "Naon kadaharan anu pang umumna disajikeun nalika Paskah di Jawa Barat?", + "en_question": "What is the most common food served during Easter in your country?", + "annotations": [], + "idks": { + "idk": 4, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-gr-82": { + "question": "Naon genre musik nu pang populerna di kalangan populasi sepuh di Jawa Barat?", + "en_question": "What is the most popular music genre among the elderly population in your country?", + "annotations": [ + { + "answers": [ + "dangdut" + ], + "en_answers": [ + "dangdut" + ], + "count": 4 + }, + { + "answers": [ + "pop sunda" + ], + "en_answers": [ + "sundanese pop" + ], + "count": 1 + }, + { + "answers": [ + "kosidahan" + ], + "en_answers": [ + "qasidah" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-88": { + "question": "Inuman naon nu biasa ditawarkeun di upacara pamakaman di Jawa Barat?", + "en_question": "What drink is usually offered at funerals in your country?", + "annotations": [ + { + "answers": [ + "cai bodas", + "cai hérang" + ], + "en_answers": [ + "water" + ], + "count": 3 + }, + { + "answers": [ + "kopi", + "cai kopi" + ], + "en_answers": [ + "coffee" + ], + "count": 2 + }, + { + "answers": [ + "entéh", + "teh", + "téh", + "cai teh", + "cai téh", + "cai entéh" + ], + "en_answers": [ + "tea" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-gr-89": { + "question": "Inuman naon nu biasa ditawarkeun dina hajatan di Jawa Barat?", + "en_question": "What drink is usually offered at weddings in your country?", + "annotations": [ + { + "answers": [ + "sirop", + "cai sirop" + ], + "en_answers": [ + "syrup" + ], + "count": 2 + }, + { + "answers": [ + "cai bodas", + "cai hérang", + "cai herang" + ], + "en_answers": [ + "water" + ], + "count": 2 + }, + { + "answers": [ + "cendol", + "céndol" + ], + "en_answers": [ + "cendol" + ], + "count": 1 + }, + { + "answers": [ + "enteh", + "entéh", + "teh", + "téh", + "cai teh", + "cai téh", + "cai entéh" + ], + "en_answers": [ + "tea" + ], + "count": 1 + } + ], + "idks": { + "not sure": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-07": { + "question": "Naon kadaharan anu asalna ti Jawa Barat sarta bisa kapanggih di sakuliah dunya?", + "en_question": "What food originated from your country and can be found all over the world?", + "annotations": [ + { + "answers": [ + "sangu liwet" + ], + "en_answers": [ + "liwet rice" + ], + "count": 1 + }, + { + "answers": [ + "sangu tumpeng" + ], + "en_answers": [ + "cone-shaped rice" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "not sure": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-08": { + "question": "Naon kadaharan anu biasana teu dipikaresep ku barudak tapi dipikaresep ku para sepuh di Jawa Barat?", + "en_question": "What food is typically disliked by children but enjoyed by the elderly in your country?", + "annotations": [ + { + "answers": [ + "olahan jengkol", + "jengkol", + "olahan jéngkol", + "jéngkol" + ], + "en_answers": [ + "dogfruit dish", + "dogfruit" + ], + "count": 2 + }, + { + "answers": [ + "sayur" + ], + "en_answers": [ + "vegetable" + ], + "count": 1 + }, + { + "answers": [ + "olahan paria" + ], + "en_answers": [ + "bitter melon dish" + ], + "count": 1 + }, + { + "answers": [ + "peuteuy" + ], + "en_answers": [ + "stink bean" + ], + "count": 1 + }, + { + "answers": [ + "karédok leunca", + "karedok leunca" + ], + "en_answers": [ + "karedok leunca" + ], + "count": 1 + }, + { + "answers": [ + "tungir hayam" + ], + "en_answers": [ + "chicken buttock" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-09": { + "question": "Alat masak naon nu pang umumna dipaké di Jawa Barat?", + "en_question": "What cooking utensil is most commonly used in your country?", + "annotations": [ + { + "answers": [ + "kompor gas" + ], + "en_answers": [ + "gas stove" + ], + "count": 2 + }, + { + "answers": [ + "panci" + ], + "en_answers": [ + "pan" + ], + "count": 2 + }, + { + "answers": [ + "kawali" + ], + "en_answers": [ + "pan" + ], + "count": 1 + }, + { + "answers": [ + "coét", + "coet" + ], + "en_answers": [ + "mortar" + ], + "count": 1 + }, + { + "answers": [ + "katel", + "katél" + ], + "en_answers": [ + "kettle" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-13": { + "question": "Sayuran naon nu pang populerna di Jawa Barat?", + "en_question": "Which is the most popular vegetable in your country?", + "annotations": [ + { + "answers": [ + "kangkung" + ], + "en_answers": [ + "water spinach" + ], + "count": 4 + }, + { + "answers": [ + "engkol" + ], + "en_answers": [ + "cabbage" + ], + "count": 1 + }, + { + "answers": [ + "bonténg", + "bonteng" + ], + "en_answers": [ + "cucumber" + ], + "count": 1 + }, + { + "answers": [ + "bayem" + ], + "en_answers": [ + "spinach" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ha-19": { + "question": "Sato naon nu dipaké pikeun olahraga di Jawa Barat?", + "en_question": "Which animal is used for sports in your country?", + "annotations": [ + { + "answers": [ + "kuda" + ], + "en_answers": [ + "horse" + ], + "count": 3 + } + ], + "idks": { + "not-applicable": 1, + "idk": 1, + "no-answer": 0 + } + }, + "New-ha-66": { + "question": "Naon tempat kawinan anu pang populerna di Jawa Barat?", + "en_question": "What is the most popular wedding venue in your country?", + "annotations": [ + { + "answers": [ + "imah", + "imah sorangan" + ], + "en_answers": [ + "house" + ], + "count": 2 + }, + { + "answers": [ + "gedong serba guna", + "gedong serbaguna" + ], + "en_answers": [ + "multipurpose building" + ], + "count": 2 + }, + { + "answers": [ + "kua" + ], + "en_answers": [ + "religious affairs office" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-in-01": { + "question": "Merek warung kopi naon nu pang populerna di Jawa Barat?", + "en_question": "Which coffee shop brand is the most popular in your country?", + "annotations": [ + { + "answers": [ + "janji jiwa" + ], + "en_answers": [ + "janji jiwa" + ], + "count": 2 + }, + { + "answers": [ + "kenangan", + "kopi kenangan" + ], + "en_answers": [ + "kenangan", + "kopi kenangan" + ], + "count": 2 + }, + { + "answers": [ + "starbucks" + ], + "en_answers": [ + "starbucks" + ], + "count": 1 + }, + { + "answers": [ + "kopi nako" + ], + "en_answers": [ + "kopi nako" + ], + "count": 1 + }, + { + "answers": [ + "warung kopi purnama" + ], + "en_answers": [ + "purnama coffee shop" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-03": { + "question": "Naon jinis kadaharan ti Jawa Barat anu biasana disajikeun di réstoran di luar nagri?", + "en_question": "What type of food from your country is typically served in restaurants overseas?", + "annotations": [ + { + "answers": [ + "sangu liwet" + ], + "en_answers": [ + "liwet rice" + ], + "count": 1 + }, + { + "answers": [ + "sangu goréng", + "sangu goreng" + ], + "en_answers": [ + "fried rice" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not sure": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-33": { + "question": "Wewengkon mana di Jawa Barat anu biasana dikaitkeun jeung pertambangan?", + "en_question": "What region in your country is usually associated with mining?", + "annotations": [ + { + "answers": [ + "padalarang" + ], + "en_answers": [ + "padalarang" + ], + "count": 1 + }, + { + "answers": [ + "gunung pongkor" + ], + "en_answers": [ + "mount pongkor" + ], + "count": 1 + }, + { + "answers": [ + "sukabumi" + ], + "en_answers": [ + "sukabumi" + ], + "count": 1 + }, + { + "answers": [ + "cianjur" + ], + "en_answers": [ + "cianjur" + ], + "count": 1 + }, + { + "answers": [ + "kuningan" + ], + "en_answers": [ + "kuningan" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not sure": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-in-34": { + "question": "Wewengkon mana di Jawa Barat anu biasana dikaitkeun sareng minyak?", + "en_question": "What region in your country is usually associated with oil?", + "annotations": [ + { + "answers": [ + "bekasi" + ], + "en_answers": [ + "bekasi" + ], + "count": 1 + }, + { + "answers": [ + "indramayu" + ], + "en_answers": [ + "indramayu" + ], + "count": 1 + }, + { + "answers": [ + "balongan" + ], + "en_answers": [ + "balongan" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not sure": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-62": { + "question": "Universitas naon di Jawa Barat anu kasohor ku jurusan teknikna? (Pasihan nami resmina.)", + "en_question": "What university in your country is popular because of its engineering major? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "institut teknologi bandung", + "institut teknologi bandung (itb)", + "institut téknologi bandung", + "itb", + "institut téhnologi bandung", + "institut tehnologi bandung", + "institut téhnologi bandung" + ], + "en_answers": [ + "bandung institute of technology", + "bandung institute of technology (itb)" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-63": { + "question": "Universitas naon di Jawa Barat anu kasohor ku fakultas kedokteranana? (Cantumkeun nami resmina.)", + "en_question": "What university in your country is popular because of its school of medicine? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "universitas indonesia", + "universitas indonesia (ui)", + "ui" + ], + "en_answers": [ + "university of indonesia" + ], + "count": 4 + }, + { + "answers": [ + "universitas padjadjaran", + "unpad" + ], + "en_answers": [ + "padjadjaran university" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-78": { + "question": "Naon metode pamayaran anu pang populerna di Jawa Barat?", + "en_question": "What is the most popular payment method in your country?", + "annotations": [ + { + "answers": [ + "tunai", + "kas" + ], + "en_answers": [ + "cash" + ], + "count": 5 + }, + { + "answers": [ + "transfer liwat bank" + ], + "en_answers": [ + "bank transfer" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-in-80": { + "question": "Naon taman hiburan anu pang kasohorna di Jawa Barat?", + "en_question": "What is the most famous theme park in your country?", + "annotations": [ + { + "answers": [ + "trans studio bandung", + "tsb" + ], + "en_answers": [ + "trans studio bandung" + ], + "count": 3 + }, + { + "answers": [ + "taman safari" + ], + "en_answers": [ + "safari park" + ], + "count": 2 + }, + { + "answers": [ + "taman bunga nusantara" + ], + "en_answers": [ + "nusantara flower garden" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-01": { + "question": "Naon animasi budak anu pang populerna nu sok ditongton ku barudak di Jawa Barat?", + "en_question": "What is the most popular children's animation that is commonly watched by kids in your country?", + "annotations": [ + { + "answers": [ + "upin ipin", + "upin & ipin" + ], + "en_answers": [ + "upin ipin", + "upin & ipin" + ], + "count": 4 + }, + { + "answers": [ + "spongebob" + ], + "en_answers": [ + "spongebob" + ], + "count": 2 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-02": { + "question": "Naon kagiatan atikan prenatal anu pang populerna pikeun indung hamil di Jawa Barat?", + "en_question": "What is the most popular prenatal education activity for pregnant women in your country?", + "annotations": [], + "idks": { + "idk": 4, + "not sure": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-03": { + "question": "Naon lagu budak nu pang populerna di Jawa Barat nu sok ditembangkeun babarengan ku kulawarga?", + "en_question": "What is the most popular children's song in your country that families sing together?", + "annotations": [ + { + "answers": [ + "tokecang", + "tokécang" + ], + "en_answers": [ + "tokecang" + ], + "count": 1 + }, + { + "answers": [ + "manuk dadali" + ], + "en_answers": [ + "manuk dadali" + ], + "count": 1 + }, + { + "answers": [ + "balonku ada lima" + ], + "en_answers": [ + "balonku ada lima" + ], + "count": 1 + }, + { + "answers": [ + "ayun ambing" + ], + "en_answers": [ + "ayun ambing" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-ko-04": { + "question": "Coco'oan naon nu pang populerna di kalangan budak lalaki di Jawa Barat?", + "en_question": "Which toys are most popular among boys in your country?", + "annotations": [ + { + "answers": [ + "momobilan" + ], + "en_answers": [ + "toy car" + ], + "count": 4 + }, + { + "answers": [ + "sapédah", + "sapedah" + ], + "en_answers": [ + "bicycle" + ], + "count": 1 + }, + { + "answers": [ + "robot-robotan" + ], + "en_answers": [ + "toy robots" + ], + "count": 1 + }, + { + "answers": [ + "langlayangan" + ], + "en_answers": [ + "kite" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-05": { + "question": "Coco'oan naon nu pang populerna di kalangan budak awewe di Jawa Barat?", + "en_question": "Which toys are most popular among girls in your country?", + "annotations": [ + { + "answers": [ + "bonéka", + "boneka" + ], + "en_answers": [ + "doll" + ], + "count": 4 + }, + { + "answers": [ + "beklen", + "béklen", + "béklén" + ], + "en_answers": [ + "knucklebones" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-06": { + "question": "Naon dongéng rahayat nu pang populérna di Jawa Barat nu biasa dicaritakeun ka barudak?", + "en_question": "What is the most popular folk tale in your country that is typically told to children?", + "annotations": [ + { + "answers": [ + "sangkuriang", + "dongéng sangkuriang", + "dongeng sangkuriang" + ], + "en_answers": [ + "sangkuriang", + "the legend of sangkuriang" + ], + "count": 5 + }, + { + "answers": [ + "dongéng malin kundang", + "dongeng malin kundang" + ], + "en_answers": [ + "the legend of malin kundang" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-07": { + "question": "Naon simbol kabiasaan pikeun nunjukkeun belasungkawa nu biasa dipaké dina upacara pamakaman di Jawa Barat?", + "en_question": "What is the customary symbol of condolence used at funerals in your country?", + "annotations": [ + { + "answers": [ + "make baju hideung" + ], + "en_answers": [ + "wearing black shirt" + ], + "count": 2 + }, + { + "answers": [ + "kembang" + ], + "en_answers": [ + "flower" + ], + "count": 1 + }, + { + "answers": [ + "tahlilan", + "pangajian" + ], + "en_answers": [ + "islamic prayer gathering" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-08": { + "question": "Di mana mahasiswa di Jawa Barat biasana gawé sampingan?", + "en_question": "Where do university students in your country tend to work part-time the most?", + "annotations": [ + { + "answers": [ + "kafé", + "di café", + "cafe", + "di kafé", + "di kafe", + "di cafe", + "café" + ], + "en_answers": [ + "cafe", + "at the cafe" + ], + "count": 4 + }, + { + "answers": [ + "dagang onlén", + "dagang onlen" + ], + "en_answers": [ + "online selling" + ], + "count": 1 + }, + { + "answers": [ + "ngojég", + "ngojeg", + "ngojek", + "ngojék" + ], + "en_answers": [ + "motorcycle taxi" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-09": { + "question": "Naon kagiatan ngawangun tim anu pang mindengna dipigawe di pausahaan-pausahaan anu aya di Jawa Barat?", + "en_question": "What are the most frequently practiced team-building activities in companies based in your country?", + "annotations": [ + { + "answers": [ + "rekreasi pausahaan", + "pakanci babarengan" + ], + "en_answers": [ + "company recreation" + ], + "count": 2 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-ko-10": { + "question": "Naon pagawean sampingan anu pang umumna dilakukeun ku jalma-jalma di Jawa Barat?", + "en_question": "What are the most common activities people do as a side job in your country?", + "annotations": [ + { + "answers": [ + "dagang onlén", + "icalan online", + "icalan onlén" + ], + "en_answers": [ + "online selling" + ], + "count": 2 + }, + { + "answers": [ + "ngojég", + "ngojeg" + ], + "en_answers": [ + "motorcycle taxi" + ], + "count": 1 + }, + { + "answers": [ + "dagang" + ], + "en_answers": [ + "selling" + ], + "count": 1 + }, + { + "answers": [ + "palayan" + ], + "en_answers": [ + "waiter" + ], + "count": 1 + }, + { + "answers": [ + "barista" + ], + "en_answers": [ + "barista" + ], + "count": 1 + } + ], + "idks": { + "not sure": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-02": { + "question": "Naon oleh-oleh panganan anu pang kasohorna pikeun wisatawan di Jawa Barat?", + "en_question": "What is the most famous edible souvenir for tourists in your country?", + "annotations": [ + { + "answers": [ + "peuyeum", + "peuyeum bandung" + ], + "en_answers": [ + "fermented cassava", + "fermented cassava of bandung" + ], + "count": 3 + }, + { + "answers": [ + "tahu sumedang" + ], + "en_answers": [ + "sumedang tofu" + ], + "count": 2 + }, + { + "answers": [ + "dodol" + ], + "en_answers": [ + "dodol" + ], + "count": 2 + }, + { + "answers": [ + "bolu susu lémbang" + ], + "en_answers": [ + "lembang milk cake" + ], + "count": 1 + }, + { + "answers": [ + "mochi" + ], + "en_answers": [ + "mochi" + ], + "count": 1 + }, + { + "answers": [ + "taleus" + ], + "en_answers": [ + "taro" + ], + "count": 1 + }, + { + "answers": [ + "kiripik lada" + ], + "en_answers": [ + "spicy chips" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-06": { + "question": "Naon sayur nu pang populerna di Jawa Barat?", + "en_question": "What is the most popular stew in your country?", + "annotations": [ + { + "answers": [ + "sayur haseum", + "sayur hasem" + ], + "en_answers": [ + "sour soup" + ], + "count": 2 + }, + { + "answers": [ + "waluh" + ], + "en_answers": [ + "pumpkin" + ], + "count": 1 + }, + { + "answers": [ + "hui" + ], + "en_answers": [ + "sweet potato" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not sure": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-pe-11": { + "question": "Naon bumbu atawa samara anu pang ilaharna dipake dina asakan ti Jawa Barat?", + "en_question": "What is the most common spice/herb used in dishes from your country?", + "annotations": [ + { + "answers": [ + "uyah" + ], + "en_answers": [ + "salt" + ], + "count": 2 + }, + { + "answers": [ + "bawang bodas" + ], + "en_answers": [ + "garlic" + ], + "count": 2 + }, + { + "answers": [ + "bawang beureum" + ], + "en_answers": [ + "red onion" + ], + "count": 2 + }, + { + "answers": [ + "cengek", + "cengék" + ], + "en_answers": [ + "chili" + ], + "count": 1 + }, + { + "answers": [ + "lada" + ], + "en_answers": [ + "pepper" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-16": { + "question": "Naon olahraga tradisional nu pang kasohor di Jawa Barat?", + "en_question": "What is the most famous traditional sport in your country?", + "annotations": [ + { + "answers": [ + "pencak silat", + "silat" + ], + "en_answers": [ + "pencak silat", + "silat" + ], + "count": 3 + }, + { + "answers": [ + "tarik tambang" + ], + "en_answers": [ + "tug of war" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-20": { + "question": "Olahraga naon nu populér dipaénkeun di basisir di Jawa Barat?", + "en_question": "What sport is popular to play on the beach in your country?", + "annotations": [ + { + "answers": [ + "voli pantai" + ], + "en_answers": [ + "beach volleyball" + ], + "count": 1 + }, + { + "answers": [ + "voli" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "maén bal", + "maen bal" + ], + "en_answers": [ + "football" + ], + "count": 1 + }, + { + "answers": [ + "surfing" + ], + "en_answers": [ + "surfing" + ], + "count": 1 + } + ], + "idks": { + "not sure": 1, + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-45": { + "question": "Kumaha biasana jadwal gawe salila bulan Ramadan di Jawa Barat?", + "en_question": "What is the usual work schedule during the month of Ramadan in your country?", + "annotations": [ + { + "answers": [ + "normal", + "normal wae", + "normal waé" + ], + "en_answers": [ + "normal" + ], + "count": 2 + }, + { + "answers": [ + "balik awal" + ], + "en_answers": [ + "come home early" + ], + "count": 1 + }, + { + "answers": [ + "balikna leuwih téréh", + "balikna leuwih tereh" + ], + "en_answers": [ + "return earlier" + ], + "count": 1 + }, + { + "answers": [ + "08:00-16:00" + ], + "en_answers": [ + "08:00-16:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-47": { + "question": "Iraha Poe Siswa dirayakeun di Jawa Barat? (Pasihkeun dina format MM/DD (contona, 12/31).)", + "en_question": "When is Student's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "05/02" + ], + "en_answers": [ + "05/02" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-pe-49": { + "question": "Di mana kulawarga ngariung pikeun solat babarengan di Jawa Barat?", + "en_question": "Where do families gather to pray together in your country?", + "annotations": [ + { + "answers": [ + "imah", + "tengah imah", + "di imah", + "di tengah imah" + ], + "en_answers": [ + "house", + "middle of the house" + ], + "count": 3 + }, + { + "answers": [ + "di masjid", + "masjid" + ], + "en_answers": [ + "at the mosque", + "mosque" + ], + "count": 2 + }, + { + "answers": [ + "di ruang solat", + "ruang solat" + ], + "en_answers": [ + "in the prayer room" + ], + "count": 1 + }, + { + "answers": [ + "di kamer", + "kamer" + ], + "en_answers": [ + "in the room" + ], + "count": 1 + }, + { + "answers": [ + "lapang ageung", + "di lapang ageung" + ], + "en_answers": [ + "large field" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-53": { + "question": "Naon hadiah anu biasa dibikeun ka bapa dina poé Bapa (atawa poé Kolot) di Jawa Barat?", + "en_question": "What gifts do fathers get on Father's Day (or Parents' Day) in your country?", + "annotations": [ + { + "answers": [ + "baju" + ], + "en_answers": [ + "clothes" + ], + "count": 2 + } + ], + "idks": { + "no-answer": 2, + "not-applicable": 1, + "idk": 0 + } + }, + "New-pe-54": { + "question": "Naon hadiah anu sok dipasihkeun ka indung dina Poé Ibu (atawa Poé Kolot) di Jawa Barat?", + "en_question": "What gifts do mothers get on Mother's Day (or Parents' Day) in your country?", + "annotations": [ + { + "answers": [ + "kembang" + ], + "en_answers": [ + "flower" + ], + "count": 2 + }, + { + "answers": [ + "pakakas dapur" + ], + "en_answers": [ + "kitchen tools" + ], + "count": 1 + }, + { + "answers": [ + "kueh", + "kuéh" + ], + "en_answers": [ + "cake" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "not-applicable": 1, + "idk": 0 + } + }, + "New-pe-59": { + "question": "Sabaraha generasi nu umumna hirup babarengan dina hiji imah tangga di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 12).)", + "en_question": "How many generations typically live together in a household in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 5 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 2 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-65": { + "question": "Sabaraha mata pelajaran anu diajarkeun di SMP di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 12).)", + "en_question": "How many subjects are taught in middle schools in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 2 + }, + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "not sure": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-66": { + "question": "Naon ékstrakurikuler saatos sakola nu pang populérna di SD di Jawa Barat?", + "en_question": "What is the most popular after school curriculars in elementary schools in your country?", + "annotations": [ + { + "answers": [ + "pramuka" + ], + "en_answers": [ + "scout" + ], + "count": 3 + }, + { + "answers": [ + "baskét", + "basket" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "voli" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "olahraga" + ], + "en_answers": [ + "sports" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-74": { + "question": "Sabaraha rata-rata biaya kuliah taunan pikeun universitas negeri di Jawa Barat?", + "en_question": "How much is the average annual tuition fee for public universities in your country?", + "annotations": [], + "idks": { + "idk": 3, + "Depends on university and student capability": 1, + "not sure": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-76": { + "question": "Naon kagiatan populér anu sok dilakukeun di taman-taman di Jawa Barat?", + "en_question": "What is a popular activity to do in parks in your country?", + "annotations": [ + { + "answers": [ + "piknik" + ], + "en_answers": [ + "picnic" + ], + "count": 4 + }, + { + "answers": [ + "nongkrong", + "ngabuburit" + ], + "en_answers": [ + "hanging out" + ], + "count": 2 + }, + { + "answers": [ + "moyan" + ], + "en_answers": [ + "sunbathe" + ], + "count": 1 + }, + { + "answers": [ + "jogging" + ], + "en_answers": [ + "jogging" + ], + "count": 1 + }, + { + "answers": [ + "senam" + ], + "en_answers": [ + "exercise" + ], + "count": 1 + }, + { + "answers": [ + "dahar babarengan" + ], + "en_answers": [ + "eating together" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-78": { + "question": "Naon ngaran festival film paling kasohor nu diayakeun di Jawa Barat?", + "en_question": "What is the name of the most famous film festival held in your country?", + "annotations": [ + { + "answers": [ + "festival film bandung", + "féstival film bandung" + ], + "en_answers": [ + "bandung film festival" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-pe-83": { + "question": "Naon kaulinan kartu populér nu sok dimaénkeun dina ririungan sosial di Jawa Barat?", + "en_question": "What is the popular card game played during social gatherings in your country?", + "annotations": [ + { + "answers": [ + "poker" + ], + "en_answers": [ + "poker" + ], + "count": 3 + }, + { + "answers": [ + "gapléh", + "gapleh" + ], + "en_answers": [ + "domino" + ], + "count": 3 + }, + { + "answers": [ + "remi", + "rémi" + ], + "en_answers": [ + "rummy" + ], + "count": 2 + }, + { + "answers": [ + "uno" + ], + "en_answers": [ + "uno" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-pe-85": { + "question": "Di mana tempat wisata nu paling populer di luar negeri pikeun warga Jawa Barat?", + "en_question": "Where is the most popular tourist destination abroad for people from your country?", + "annotations": [ + { + "answers": [ + "universal studios singapore", + "uss" + ], + "en_answers": [ + "universal studios singapore" + ], + "count": 1 + }, + { + "answers": [ + "kebon raya bogor", + "krb" + ], + "en_answers": [ + "bogor botanical gardens" + ], + "count": 1 + }, + { + "answers": [ + "taman safari" + ], + "en_answers": [ + "safari park" + ], + "count": 1 + }, + { + "answers": [ + "gunung padang" + ], + "en_answers": [ + "mount padang" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "Depends on people reference": 1, + "not-applicable": 0 + } + }, + "New-pe-86": { + "question": "Naon ngaran munara anu pang kawentarna di Jawa Barat?", + "en_question": "What is the name of the most famous tower in your country?", + "annotations": [ + { + "answers": [ + "gedung saté", + "gedung sate", + "gedong saté" + ], + "en_answers": [ + "sate building" + ], + "count": 1 + }, + { + "answers": [ + "menara kujang sapasang", + "munara kujang sapasang" + ], + "en_answers": [ + "kujang sapasang tower" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-01": { + "question": "Naon sarangga pang mindengna didahar di Jawa Barat?", + "en_question": "What edible insect is eaten most often in your country?", + "annotations": [ + { + "answers": [ + "simeut" + ], + "en_answers": [ + "ant" + ], + "count": 4 + }, + { + "answers": [ + "tonggérét", + "tonggeret" + ], + "en_answers": [ + "cicada" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-04": { + "question": "Produk tatanén naon nu pang mindengna diékspor ti Jawa Barat?", + "en_question": "Which agricultural product is exported most often in your country?", + "annotations": [ + { + "answers": [ + "kopi" + ], + "en_answers": [ + "coffee" + ], + "count": 2 + }, + { + "answers": [ + "sawit" + ], + "en_answers": [ + "palm" + ], + "count": 1 + }, + { + "answers": [ + "karét", + "karet" + ], + "en_answers": [ + "rubber" + ], + "count": 1 + }, + { + "answers": [ + "béas", + "beas" + ], + "en_answers": [ + "rice" + ], + "count": 1 + }, + { + "answers": [ + "entéh", + "enteh", + "téh", + "teh" + ], + "en_answers": [ + "tea" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-05": { + "question": "Naon waé jajanan amis anu pang populerna di Jawa Barat?", + "en_question": "What are the most popular sweets in your country?", + "annotations": [ + { + "answers": [ + "piscok" + ], + "en_answers": [ + "chocolate banana" + ], + "count": 1 + }, + { + "answers": [ + "permen", + "permén" + ], + "en_answers": [ + "candy" + ], + "count": 1 + }, + { + "answers": [ + "és potong", + "es potong" + ], + "en_answers": [ + "popsicle" + ], + "count": 1 + }, + { + "answers": [ + "gulali" + ], + "en_answers": [ + "cotton candy" + ], + "count": 1 + }, + { + "answers": [ + "martabak amis" + ], + "en_answers": [ + "sweet martabak" + ], + "count": 1 + }, + { + "answers": [ + "surabi" + ], + "en_answers": [ + "serabi pancake" + ], + "count": 1 + }, + { + "answers": [ + "lapis legit" + ], + "en_answers": [ + "layered cake" + ], + "count": 1 + }, + { + "answers": [ + "sop buah" + ], + "en_answers": [ + "fruit soup" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-15": { + "question": "Naon inuman olahraga nu pang populerna di Jawa Barat?", + "en_question": "What is the most popular sports drink in your country?", + "annotations": [ + { + "answers": [ + "pocari sweat" + ], + "en_answers": [ + "pocari sweat" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-spme-27": { + "question": "Naon rata-rata tingkat atikan pikeun jalma di Jawa Barat?", + "en_question": "What is the average education level for people in your country?", + "annotations": [ + { + "answers": [ + "sma", + "slta", + "sekolah menengah atas", + "sekolah lanjutan tingkat atas" + ], + "en_answers": [ + "senior high school" + ], + "count": 4 + } + ], + "idks": { + "not sure": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-37": { + "question": "Pagawean naon nu pang mindengna diajar di luar negeri ku mahasiswa ti Jawa Barat?", + "en_question": "Which profession is most commonly studied abroad by students from your country?", + "annotations": [ + { + "answers": [ + "téknik", + "teknik", + "téhnik", + "tehnik" + ], + "en_answers": [ + "technique" + ], + "count": 2 + }, + { + "answers": [ + "bisnis manajemen" + ], + "en_answers": [ + "business management" + ], + "count": 1 + }, + { + "answers": [ + "ilmu alam" + ], + "en_answers": [ + "natural science" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 1, + "not-applicable": 0 + } + }, + "New-spme-60": { + "question": "Poé naon dina saminggu nu biasa dipaké ku kalolobaan kulawarga di Jawa Barat pikeun ngalaksanakeun kagiatan kaagamaan? (contona Senén, Salasa)", + "en_question": "Which day of the week do most families in your country practice religious activities? (e.g. Monday, Tuesday)", + "annotations": [ + { + "answers": [ + "jumaah", + "malem jumaah", + "jumat", + "malem jumat" + ], + "en_answers": [ + "friday", + "friday night" + ], + "count": 5 + }, + { + "answers": [ + "minggu" + ], + "en_answers": [ + "sunday" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-65": { + "question": "Naon cara nu pang populerna pikeun miéling Poé Kamerdékaan di Jawa Barat?", + "en_question": "What is the most popular way to celebrate Independence Day in your country?", + "annotations": [ + { + "answers": [ + "upacara", + "upacara bendéra", + "upacara bendera" + ], + "en_answers": [ + "ceremony", + "flag ceremony" + ], + "count": 4 + }, + { + "answers": [ + "ngayakeun rupa-rupa perlombaan", + "agustusan", + "pasanggiri" + ], + "en_answers": [ + "holding various competitions", + "independence day celebration", + "competition" + ], + "count": 3 + }, + { + "answers": [ + "pawei" + ], + "en_answers": [ + "parade" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-68": { + "question": "Naon inuman nu pang populerna di kalangan barudak di Jawa Barat?", + "en_question": "What is the most popular beverage among children in your country?", + "annotations": [ + { + "answers": [ + "és boba", + "inuman boba", + "es boba" + ], + "en_answers": [ + "bubble ice", + "bubble drink" + ], + "count": 2 + }, + { + "answers": [ + "és kopi susu", + "es kopi susu" + ], + "en_answers": [ + "iced coffee milk" + ], + "count": 1 + }, + { + "answers": [ + "sirop", + "es sirop", + "és sirop" + ], + "en_answers": [ + "syrup" + ], + "count": 1 + } + ], + "idks": { + "not sure": 1, + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-spme-76": { + "question": "Naon tempat nu pang populerna di Jawa Barat pikeun miéling Poé Kamerdékaan?", + "en_question": "What is the most popular place in your country to celebrate Independence Day?", + "annotations": [ + { + "answers": [ + "lapang", + "lapangan" + ], + "en_answers": [ + "field" + ], + "count": 2 + }, + { + "answers": [ + "alun-alun kabupatén/kota", + "alun-alun kabupaten/kota" + ], + "en_answers": [ + "regency/city square" + ], + "count": 1 + }, + { + "answers": [ + "lapangan gasibu" + ], + "en_answers": [ + "gasibu field" + ], + "count": 1 + }, + { + "answers": [ + "monumén bandung lautan api", + "monumen bandung lautan api" + ], + "en_answers": [ + "bandung lautan api monument" + ], + "count": 1 + }, + { + "answers": [ + "sakola", + "sekolah" + ], + "en_answers": [ + "school" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-spme-78": { + "question": "Naon ngaran tembang anu biasa ditembangkeun dina pésta tepang taun di Jawa Barat?", + "en_question": "What is the name of the song that is typically sung at birthday parties in your country?", + "annotations": [ + { + "answers": [ + "selamat ulang tahun", + "wilujeung tepang taun" + ], + "en_answers": [ + "happy birthday" + ], + "count": 3 + } + ], + "idks": { + "idk": 1, + "not-applicable": 1, + "no-answer": 0 + } + }, + "New-su-01": { + "question": "Naon jajanan anu biasa dijual di hareupeun sakola di Jawa Barat?", + "en_question": "What snacks are usually sold in front of schools in your country?", + "annotations": [ + { + "answers": [ + "cilok" + ], + "en_answers": [ + "cilok" + ], + "count": 3 + }, + { + "answers": [ + "cimol" + ], + "en_answers": [ + "cimol" + ], + "count": 2 + }, + { + "answers": [ + "siomay", + "somay" + ], + "en_answers": [ + "siomay" + ], + "count": 2 + }, + { + "answers": [ + "ager" + ], + "en_answers": [ + "jelly" + ], + "count": 1 + }, + { + "answers": [ + "goréngan", + "gorengan" + ], + "en_answers": [ + "fritters" + ], + "count": 1 + }, + { + "answers": [ + "endog gulung" + ], + "en_answers": [ + "rolled egg" + ], + "count": 1 + }, + { + "answers": [ + "seblak" + ], + "en_answers": [ + "seblak" + ], + "count": 1 + }, + { + "answers": [ + "batagor" + ], + "en_answers": [ + "batagor" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-09": { + "question": "Minyak naon anu biasa dipaké pikeun masak di Jawa Barat?", + "en_question": "What oil is usually used for cooking in your country?", + "annotations": [ + { + "answers": [ + "minyak sawit", + "minyak kalapa sawit" + ], + "en_answers": [ + "palm oil" + ], + "count": 4 + }, + { + "answers": [ + "minyak kalapa", + "kalapa" + ], + "en_answers": [ + "coconut oil" + ], + "count": 3 + }, + { + "answers": [ + "minyak zaitun" + ], + "en_answers": [ + "olive oil" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-10": { + "question": "Naon kadaharan anu ilahar dikonsumsi ku ibu hamil di Jawa Barat?", + "en_question": "What food is commonly consumed by pregnant women in your country?", + "annotations": [ + { + "answers": [ + "sayur" + ], + "en_answers": [ + "vegetable" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "not sure": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-15": { + "question": "Naon inuman tradisional non-alkohol nu pang populerna di Jawa Barat?", + "en_question": "What is the most popular traditional non-alcoholic drink in your country?", + "annotations": [ + { + "answers": [ + "bajigur" + ], + "en_answers": [ + "bajigur" + ], + "count": 4 + }, + { + "answers": [ + "bandrek", + "bandrék" + ], + "en_answers": [ + "bandrek", + "bandrék" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-17": { + "question": "Fasilitas olahraga naon waé nu umumna aya di taman-taman di Jawa Barat?", + "en_question": "What sports facilities are generally available in parks in your country?", + "annotations": [ + { + "answers": [ + "tempat lumpat", + "trek jogging" + ], + "en_answers": [ + "jogging track" + ], + "count": 2 + }, + { + "answers": [ + "ring baskét", + "ring basket" + ], + "en_answers": [ + "basketball ring" + ], + "count": 1 + }, + { + "answers": [ + "tiang gawang" + ], + "en_answers": [ + "goalpost" + ], + "count": 1 + }, + { + "answers": [ + "lapangan" + ], + "en_answers": [ + "field" + ], + "count": 1 + }, + { + "answers": [ + "alat angkat awak" + ], + "en_answers": [ + "body lifting equipment" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-21": { + "question": "Naon kagiatan umum anu biasa dilakukeun ku para sepuh di taman-taman di Jawa Barat?", + "en_question": "What are the common activities that seniors usually do in parks in your country?", + "annotations": [ + { + "answers": [ + "moyan" + ], + "en_answers": [ + "sunbathe" + ], + "count": 2 + }, + { + "answers": [ + "ngawangkong" + ], + "en_answers": [ + "have a conversation" + ], + "count": 2 + }, + { + "answers": [ + "leumpang", + "jalan santéy", + "jalan santey" + ], + "en_answers": [ + "walk" + ], + "count": 2 + }, + { + "answers": [ + "senam", + "olahraga" + ], + "en_answers": [ + "exercise" + ], + "count": 2 + }, + { + "answers": [ + "ngopi" + ], + "en_answers": [ + "to have coffee" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-24": { + "question": "Naon olahraga nu ilahar dipaénkeun ku kolot jeung barudak babarengan di Jawa Barat?", + "en_question": "What sports do parents and children commonly play together in your country?", + "annotations": [ + { + "answers": [ + "maén bal", + "bal sepak", + "maen bal", + "bal sépak", + "sépak bal" + ], + "en_answers": [ + "play football", + "football" + ], + "count": 4 + }, + { + "answers": [ + "badminton" + ], + "en_answers": [ + "badminton" + ], + "count": 2 + }, + { + "answers": [ + "catur" + ], + "en_answers": [ + "chess" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-28": { + "question": "Naon warna nu dikaitkeun jeung tim régional sepak bola Jawa Barat?", + "en_question": "What color is associated with the regional soccer team of your country?", + "annotations": [ + { + "answers": [ + "biru", + "bulao" + ], + "en_answers": [ + "blue" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-33": { + "question": "Naon jinis pakéan anu umum pikeun guru sakola di Jawa Barat?", + "en_question": "What is the common dress code for school teachers in your country?", + "annotations": [ + { + "answers": [ + "saragam", + "raksukan dines poéan", + "pdh", + "raksukan dines poean", + "seragam pdh", + "saragam pdh" + ], + "en_answers": [ + "uniform" + ], + "count": 4 + }, + { + "answers": [ + "setélan batik", + "batik", + "setelan batik" + ], + "en_answers": [ + "batik" + ], + "count": 2 + }, + { + "answers": [ + "seragam pramuka", + "saragam pramuka" + ], + "en_answers": [ + "scout uniform" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-34": { + "question": "Naon kagiatan ékstrakurikuler nu pang populerna nu patali jeung musik di sakola-sakola di Jawa Barat?", + "en_question": "What is the most popular extracurricular activity related to music in schools in your country?", + "annotations": [ + { + "answers": [ + "karawitan" + ], + "en_answers": [ + "karawitan" + ], + "count": 2 + }, + { + "answers": [ + "degungan", + "gamelan sunda" + ], + "en_answers": [ + "sundanese gamelan" + ], + "count": 2 + }, + { + "answers": [ + "drum band" + ], + "en_answers": [ + "drum band" + ], + "count": 1 + }, + { + "answers": [ + "band" + ], + "en_answers": [ + "band" + ], + "count": 1 + }, + { + "answers": [ + "kacapian" + ], + "en_answers": [ + "kacapian" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-42": { + "question": "Agama naon nu utamina diajarkeun di sakola-sakola di Jawa Barat?", + "en_question": "What religion is mainly taught in schools in your country?", + "annotations": [ + { + "answers": [ + "islam" + ], + "en_answers": [ + "islam" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-45": { + "question": "Tanggal sabaraha Dinten Atikan dirayakeun di Jawa Barat? (Pasihkeun dina format MM/DD (contona, 12/31).)", + "en_question": "What date is Education Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "05/02" + ], + "en_answers": [ + "05/02" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-50": { + "question": "Naon pagawéan utama masarakat di wewengkon pagunungan di Jawa Barat?", + "en_question": "What is the main occupation of people in mountainous areas in your country?", + "annotations": [ + { + "answers": [ + "patani", + "tatanén", + "tani" + ], + "en_answers": [ + "farmer" + ], + "count": 5 + }, + { + "answers": [ + "tukang kebon" + ], + "en_answers": [ + "gardener" + ], + "count": 1 + }, + { + "answers": [ + "peternak" + ], + "en_answers": [ + "breeder" + ], + "count": 1 + }, + { + "answers": [ + "padagang" + ], + "en_answers": [ + "seller" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-51": { + "question": "Naon pagawéan utama masarakat di wewengkon basisir di Jawa Barat?", + "en_question": "What is the main occupation of people in coastal areas in your country?", + "annotations": [ + { + "answers": [ + "pamayang", + "nelayan" + ], + "en_answers": [ + "fisherman" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-57": { + "question": "Naon ternak anu pang umumna dipiara di Jawa Barat?", + "en_question": "What is the most common livestock raised in your country?", + "annotations": [ + { + "answers": [ + "hayam" + ], + "en_answers": [ + "chicken" + ], + "count": 4 + }, + { + "answers": [ + "domba" + ], + "en_answers": [ + "sheep" + ], + "count": 2 + }, + { + "answers": [ + "sapi" + ], + "en_answers": [ + "cow" + ], + "count": 2 + }, + { + "answers": [ + "embe", + "embé" + ], + "en_answers": [ + "goat" + ], + "count": 2 + }, + { + "answers": [ + "munding", + "kebo" + ], + "en_answers": [ + "ox" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-58": { + "question": "Sato naon nu ilahar dipake pikeun tatanén di Jawa Barat?", + "en_question": "What animals are commonly used for agriculture in your country?", + "annotations": [ + { + "answers": [ + "munding", + "kebo" + ], + "en_answers": [ + "ox" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-59": { + "question": "Naon nu biasa dipaké ku tani-tani di Jawa Barat pikeun nangtayungan diri tina panas nalika keur tatanén?", + "en_question": "What do farmers in your country typically wear to protect themselves from the heat whilst farming?", + "annotations": [ + { + "answers": [ + "caping", + "dudukuy", + "cetok" + ], + "en_answers": [ + "conical hat" + ], + "count": 5 + }, + { + "answers": [ + "topi" + ], + "en_answers": [ + "hat" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-60": { + "question": "Naon nu biasa didahar ku tani-tani di Jawa Barat keur dahar beurang?", + "en_question": "What do farmers in your country usually eat for lunch?", + "annotations": [ + { + "answers": [ + "sangu" + ], + "en_answers": [ + "rice" + ], + "count": 3 + }, + { + "answers": [ + "lauk asin" + ], + "en_answers": [ + "salted fish" + ], + "count": 1 + }, + { + "answers": [ + "sambel" + ], + "en_answers": [ + "chili sauce" + ], + "count": 1 + }, + { + "answers": [ + "sangu timbel" + ], + "en_answers": [ + "timbel rice" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-71": { + "question": "Naon hadiah anu biasana dipasihkeun ku kolot ka barudakna dina ulang taunna di Jawa Barat?", + "en_question": "What gifts do parents generally give to their children for their birthdays in your country?", + "annotations": [ + { + "answers": [ + "coco'oan", + "cocooan" + ], + "en_answers": [ + "toys" + ], + "count": 2 + }, + { + "answers": [ + "sapédah", + "sapedah" + ], + "en_answers": [ + "bicycle" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "New-su-75": { + "question": "Jinis kandaraan naon nu ilahar dipiboga ku kalolobaan kulawarga di Jawa Barat?", + "en_question": "What type of vehicle do most families in your country generally own?", + "annotations": [ + { + "answers": [ + "motor" + ], + "en_answers": [ + "motorcycle" + ], + "count": 5 + }, + { + "answers": [ + "mobil" + ], + "en_answers": [ + "car" + ], + "count": 2 + }, + { + "answers": [ + "sapédah", + "sapedah" + ], + "en_answers": [ + "bicycle" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-77": { + "question": "Naon nu biasana dibikeun ka barudak nalika lebaran idulfitri di Jawa Barat?", + "en_question": "What is usually given to the children during Eid in your country?", + "annotations": [ + { + "answers": [ + "duit", + "duit anyar" + ], + "en_answers": [ + "money", + "new money" + ], + "count": 5 + }, + { + "answers": [ + "baju", + "raksukan" + ], + "en_answers": [ + "clothes" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-81": { + "question": "Naon pakean anu biasana dipaké ku panganten pameget dina hajatan kawinan di Jawa Barat?", + "en_question": "What clothes do grooms usually wear at weddings in your country?", + "annotations": [ + { + "answers": [ + "beskap", + "béskap" + ], + "en_answers": [ + "beskap" + ], + "count": 2 + }, + { + "answers": [ + "jas pragwedana" + ], + "en_answers": [ + "pragwedana suit" + ], + "count": 1 + }, + { + "answers": [ + "sukapura" + ], + "en_answers": [ + "sukapura" + ], + "count": 1 + }, + { + "answers": [ + "baju pangsi" + ], + "en_answers": [ + "pangsi clothes" + ], + "count": 1 + }, + { + "answers": [ + "jas" + ], + "en_answers": [ + "suit" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-82": { + "question": "Naon pakean anu biasa dipaké ku pangantén awéwé dina hajatan kawinan di Jawa Barat?", + "en_question": "What clothes do brides usually wear at weddings in your country?", + "annotations": [ + { + "answers": [ + "kabaya", + "kabaya sunda", + "kebaya sunda" + ], + "en_answers": [ + "kebaya", + "sundanese kebaya" + ], + "count": 4 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-83": { + "question": "Naon kadaharan anu biasa disuguhkeun dina hajatan kawinan di Jawa Barat?", + "en_question": "What food is usually served at weddings in your country?", + "annotations": [ + { + "answers": [ + "parasmanan" + ], + "en_answers": [ + "dining table" + ], + "count": 1 + }, + { + "answers": [ + "olahan daging" + ], + "en_answers": [ + "meat dish" + ], + "count": 1 + }, + { + "answers": [ + "bungbuahan" + ], + "en_answers": [ + "fruits" + ], + "count": 1 + }, + { + "answers": [ + "kuéh", + "kueh" + ], + "en_answers": [ + "cake" + ], + "count": 1 + }, + { + "answers": [ + "rendang hayam" + ], + "en_answers": [ + "chicken rendang" + ], + "count": 1 + }, + { + "answers": [ + "rendang" + ], + "en_answers": [ + "rendang" + ], + "count": 1 + }, + { + "answers": [ + "sambel balado" + ], + "en_answers": [ + "spicy chili sauce" + ], + "count": 1 + }, + { + "answers": [ + "sayur sop" + ], + "en_answers": [ + "soup" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "New-su-86": { + "question": "Naon gedong pamaréntahan anu pang kawéntarna di Jawa Barat?", + "en_question": "What is the most famous government building in your country?", + "annotations": [ + { + "answers": [ + "gedong saté", + "gedong sate" + ], + "en_answers": [ + "sate building" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "New-su-88": { + "question": "Naon genre musik nu pang populerna di kalangan populasi ngora di Jawa Barat?", + "en_question": "What is the most popular music genre among the younger population in your country?", + "annotations": [ + { + "answers": [ + "pop" + ], + "en_answers": [ + "pop" + ], + "count": 4 + }, + { + "answers": [ + "dangdut" + ], + "en_answers": [ + "dangdut" + ], + "count": 1 + } + ], + "idks": { + "not sure": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-02": { + "question": "Tabuh sabaraha murid SMP di Jawa Barat biasana réngsé sakola unggal dinten? (Pasihkeun dina format HH:MM (contona, 18:00, 09:00).)", + "en_question": "What time do middle school students in your country typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "14:00" + ], + "en_answers": [ + "14:00" + ], + "count": 3 + }, + { + "answers": [ + "15:00" + ], + "en_answers": [ + "15:00" + ], + "count": 2 + }, + { + "answers": [ + "16:00" + ], + "en_answers": [ + "16:00" + ], + "count": 1 + }, + { + "answers": [ + "13:00" + ], + "en_answers": [ + "13:00" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-03": { + "question": "Umur sabaraha umumna jalma di Jawa Barat asup ka universitas? (Pasihkeun angka Arab wungkul (contona, 12).)", + "en_question": "At what age do people in your country typically go to university? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 4 + }, + { + "answers": [ + "17" + ], + "en_answers": [ + "17" + ], + "count": 2 + }, + { + "answers": [ + "19" + ], + "en_answers": [ + "19" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-06": { + "question": "Ti umur sabaraha jalma kedah ngamimitian atikan wajib di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 12).)", + "en_question": "From what age do people need to attend compulsory education in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 4 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-09": { + "question": "Sabaraha dinten dina saminggu barudak asup sakola di Jawa Barat? (Pasihkeun angka Arab (0~7) wungkul.)", + "en_question": "How many days a week do children attend school in your country? (Provide Arabic numerals (0~7) only.)", + "annotations": [ + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 3 + }, + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-11": { + "question": "Di Jawa Barat, sabaraha lami (dina taun) biasana pikeun ngarengsekeun gelar Master? (Pasihkeun nomer Arab (contona, 12) hungkul.)", + "en_question": "In your country, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 5 + }, + { + "answers": [ + "3" + ], + "en_answers": [ + "3" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-12": { + "question": "Naon universitas nu pang punjulna di Jawa Barat? (Pasihan ngaran resmina.)", + "en_question": "What is the top university in your country? (Provide the official name.)", + "annotations": [ + { + "answers": [ + "institut teknologi bandung", + "institut teknologi bandung (itb)", + "institut téknologi bandung", + "itb" + ], + "en_answers": [ + "bandung institute of technology", + "bandung institute of technology (itb)" + ], + "count": 4 + }, + { + "answers": [ + "universitas indonesia", + "ui" + ], + "en_answers": [ + "university of indonesia" + ], + "count": 1 + }, + { + "answers": [ + "universitas padjadjaran", + "unpad" + ], + "en_answers": [ + "padjadjaran university" + ], + "count": 1 + }, + { + "answers": [ + "institut pertanian bogor", + "ipb" + ], + "en_answers": [ + "bogor agricultural institute" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-13": { + "question": "Umur sabaraha umumna jalma di Jawa Barat lulus ti universitas? (Pasihkeun angka Arab wungkul (contona, 12).)", + "en_question": "At what age do most people in your country graduate from university? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 4 + }, + { + "answers": [ + "23" + ], + "en_answers": [ + "23" + ], + "count": 3 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-15": { + "question": "Dina umur sabaraha murangkalih di Jawa Barat umumna mimiti asup SMP? (Pasihkeun angka Arab wungkul (contona, 12).)", + "en_question": "At what age do children in your country generally start middle school? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "12" + ], + "en_answers": [ + "12" + ], + "count": 4 + }, + { + "answers": [ + "13" + ], + "en_answers": [ + "13" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-17": { + "question": "Sabaraha jam saminggu pagawé full-time di Jawa Barat biasana digawé? (Pasihkeun angka Arab wungkul (contona, 12).)", + "en_question": "How many hours a week does a full-time worker in your country typically work? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "40" + ], + "en_answers": [ + "40" + ], + "count": 4 + }, + { + "answers": [ + "48" + ], + "en_answers": [ + "48" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-19": { + "question": "Sabaraha dinten saminggu pagawé full-time di Jawa Barat damel? (Pasihkeun angka Arab (0~7) hungkul.)", + "en_question": "How many days a week does a full-time worker work in your country? (Provide Arabic numerals (0~7) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 5 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-20": { + "question": "Di umur sabaraha umumna jalma mimiti gawé di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 12).)", + "en_question": "At what age do most people start working in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 2 + }, + { + "answers": [ + "19" + ], + "en_answers": [ + "19" + ], + "count": 2 + }, + { + "answers": [ + "23" + ], + "en_answers": [ + "23" + ], + "count": 1 + }, + { + "answers": [ + "24" + ], + "en_answers": [ + "24" + ], + "count": 1 + }, + { + "answers": [ + "17" + ], + "en_answers": [ + "17" + ], + "count": 1 + } + ], + "idks": { + "Really varies and depends on economic condition": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-21": { + "question": "Ti umur sabaraha hiji jalma diidinan gawé di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 12).)", + "en_question": "From what age is an individual allowed to work in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 2 + }, + { + "answers": [ + "17" + ], + "en_answers": [ + "17" + ], + "count": 1 + }, + { + "answers": [ + "19" + ], + "en_answers": [ + "19" + ], + "count": 1 + } + ], + "idks": { + "Not Sure": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-31": { + "question": "Naon nu biasa didahar ku urang Sunda di Jawa Barat dina poé Natal?", + "en_question": "What do people in your country traditionally eat on Christmas Day?", + "annotations": [], + "idks": { + "idk": 5, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ni-en-37": { + "question": "Naon ngaran dinten di mana urang Sunda di Jawa Barat ngagungkeun cinta jeung romansa?", + "en_question": "What is the name of the day of the year where people in your country celebrate love and romance?", + "annotations": [ + { + "answers": [ + "valentine", + "valentin" + ], + "en_answers": [ + "valentine" + ], + "count": 4 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ni-en-40": { + "question": "Naon lagu Natal nu pang populerna di Jawa Barat?", + "en_question": "What is the most popular Christmas song in your country?", + "annotations": [ + { + "answers": [ + "jingle bell", + "jingle bells" + ], + "en_answers": [ + "jingle bell", + "jingle bells" + ], + "count": 2 + } + ], + "idks": { + "idk": 2, + "not-applicable": 1, + "no-answer": 0 + } + }, + "Nu-in-04": { + "question": "Sabaraha semester nu aya dina unggal taun akademik di SMA di Jawa Barat? (Pasihkeun ngan ukur angka Arab (contona, 7, 8).)", + "en_question": "How many semesters are there each academic year at high schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)", + "annotations": [ + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-05": { + "question": "Dina sasih sabaraha biasana taun ajaran anyar di Jawa Barat dimimitian? (Pasihkeun nomer Arab (1~12) wungkul.)", + "en_question": "In which month does the new school year typically begin in your country? (Provide Arabic numerals (1~12) only.)", + "annotations": [ + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 3 + }, + { + "answers": [ + "6" + ], + "en_answers": [ + "6" + ], + "count": 1 + }, + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-06": { + "question": "Iraha Dinten Guru Nasional dirayakeun di Jawa Barat? (Pasihkeun dina format MM/DD (contona, 12/31).)", + "en_question": "When is National Teacher's Day commemorated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "11/25" + ], + "en_answers": [ + "11/25" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-11": { + "question": "Tabuh sabaraha sakola dasar di Jawa Barat dimimitian? (Pasihan dina format HH:MM (contona, 18:00, 09:00).)", + "en_question": "At what time does elementary school start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)", + "annotations": [ + { + "answers": [ + "07:00" + ], + "en_answers": [ + "07:00" + ], + "count": 4 + }, + { + "answers": [ + "08:00" + ], + "en_answers": [ + "08:00" + ], + "count": 1 + }, + { + "answers": [ + "07:15" + ], + "en_answers": [ + "07:15" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-20": { + "question": "Iraha Dinten Budak dirayakeun di Jawa Barat? (Pasihkeun dina format MM/DD (contona, 12/31).)", + "en_question": "When is Children's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)", + "annotations": [ + { + "answers": [ + "07/23" + ], + "en_answers": [ + "07/23" + ], + "count": 3 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Nu-in-40": { + "question": "Kota mana nu jadi tujuan utama jalma-jalma nu neangan gawe di Jawa Barat?", + "en_question": "Which city is the main destination for job seekers in your country?", + "annotations": [ + { + "answers": [ + "bekasi" + ], + "en_answers": [ + "bekasi" + ], + "count": 4 + }, + { + "answers": [ + "bandung" + ], + "en_answers": [ + "bandung" + ], + "count": 2 + }, + { + "answers": [ + "karawang" + ], + "en_answers": [ + "karawang" + ], + "count": 2 + }, + { + "answers": [ + "depok" + ], + "en_answers": [ + "depok" + ], + "count": 1 + } + ], + "idks": { + "not sure": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-1": { + "question": "Naon kadaharan gancang saji nu pang populérna ti Jawa Barat?", + "en_question": "What is your country's most popular fast food chain?", + "annotations": [ + { + "answers": [ + "hayam goréng", + "hayam goreng", + "d'besto", + "sabana" + ], + "en_answers": [ + "fried chicken", + "d'besto", + "sabana" + ], + "count": 4 + }, + { + "answers": [ + "emih", + "mie" + ], + "en_answers": [ + "noodles" + ], + "count": 1 + }, + { + "answers": [ + "burger", + "hamburger" + ], + "en_answers": [ + "burger" + ], + "count": 1 + }, + { + "answers": [ + "pizza" + ], + "en_answers": [ + "pizza" + ], + "count": 1 + }, + { + "answers": [ + "kentang goréng", + "kentang goreng" + ], + "en_answers": [ + "fried potatoes" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-13": { + "question": "Naon kadaharan nu pang ngabagi opini (dipikaresep atawa dipikaijid) di Jawa Barat?", + "en_question": "What is the food that is most divisive (either love or hate) in your country?", + "annotations": [ + { + "answers": [ + "durén", + "buah durén", + "duren", + "kadu", + "buah duren", + "buah kadu" + ], + "en_answers": [ + "durian", + "durian fruit" + ], + "count": 4 + }, + { + "answers": [ + "tauco" + ], + "en_answers": [ + "fermented soybean paste" + ], + "count": 1 + }, + { + "answers": [ + "seblak" + ], + "en_answers": [ + "seblak" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-16": { + "question": "Naon tim bola sepak nu pang populerna di kalangan urang Jawa Barat?", + "en_question": "What is the most popular soccer team among the people from your country?", + "annotations": [ + { + "answers": [ + "persib", + "persib bandung" + ], + "en_answers": [ + "persib", + "persib bandung" + ], + "count": 5 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-22": { + "question": "Naon universitas nu pang kasohor di Jawa Barat nu kawentar ku tim olahragana?", + "en_question": "What is the most famous university in your country known for its sports team?", + "annotations": [ + { + "answers": [ + "upi", + "universitas pendidikan indonesia" + ], + "en_answers": [ + "upi" + ], + "count": 1 + }, + { + "answers": [ + "unpad", + "universitas padjadjaran" + ], + "en_answers": [ + "unpad" + ], + "count": 1 + } + ], + "idks": { + "idk": 4, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-31": { + "question": "Naon piaraan kulawarga nu pangpopulerna di Jawa Barat?", + "en_question": "What is your country's most popular family pet?", + "annotations": [ + { + "answers": [ + "ucing" + ], + "en_answers": [ + "cat" + ], + "count": 5 + }, + { + "answers": [ + "anjing" + ], + "en_answers": [ + "dog" + ], + "count": 2 + }, + { + "answers": [ + "manuk" + ], + "en_answers": [ + "bird" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-32": { + "question": "Naon acara TV kulawarga nu pang populerna di Jawa Barat?", + "en_question": "What is the most popular family TV show in your country?", + "annotations": [ + { + "answers": [ + "brownis" + ], + "en_answers": [ + "brownis" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "Not sure": 1, + "not sure": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-37": { + "question": "Naon kaulinan papan anu pang populerna di kulawarga Jawa Barat?", + "en_question": "What is the most popular family boardgame in your country?", + "annotations": [ + { + "answers": [ + "catur" + ], + "en_answers": [ + "chess" + ], + "count": 3 + }, + { + "answers": [ + "monopoli" + ], + "en_answers": [ + "monopoly" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Sa-en-6": { + "question": "Naon kadaharan bungkusan nu pang populerna di Jawa Barat?", + "en_question": "What is the most popular takeaway food in your country?", + "annotations": [ + { + "answers": [ + "basreng" + ], + "en_answers": [ + "fried meatball" + ], + "count": 1 + }, + { + "answers": [ + "ciki" + ], + "en_answers": [ + "snack" + ], + "count": 1 + }, + { + "answers": [ + "roti" + ], + "en_answers": [ + "bread" + ], + "count": 1 + }, + { + "answers": [ + "soklat", + "coklat", + "cokelat" + ], + "en_answers": [ + "chocolate" + ], + "count": 1 + }, + { + "answers": [ + "kiripik hui" + ], + "en_answers": [ + "sweet potato chips" + ], + "count": 1 + }, + { + "answers": [ + "sangu padang" + ], + "en_answers": [ + "padang rice" + ], + "count": 1 + }, + { + "answers": [ + "sangu bungkus" + ], + "en_answers": [ + "packed rice" + ], + "count": 1 + }, + { + "answers": [ + "tutug oncom" + ], + "en_answers": [ + "mashed fermented soybean" + ], + "count": 1 + }, + { + "answers": [ + "lemper" + ], + "en_answers": [ + "lemper" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-7": { + "question": "Naon jajanan populér di Jawa Barat?", + "en_question": "What are popular snacks in your country?", + "annotations": [ + { + "answers": [ + "cilok" + ], + "en_answers": [ + "cilok" + ], + "count": 4 + }, + { + "answers": [ + "seblak" + ], + "en_answers": [ + "seblak" + ], + "count": 4 + }, + { + "answers": [ + "cireng", + "ciréng" + ], + "en_answers": [ + "cireng" + ], + "count": 2 + }, + { + "answers": [ + "baso aci" + ], + "en_answers": [ + "tapioca meatball" + ], + "count": 1 + }, + { + "answers": [ + "cuanki" + ], + "en_answers": [ + "cuanki" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Sa-en-9": { + "question": "Naon nu didahar ku urang Jawa Barat di basisir?", + "en_question": "What do people from your country eat at the beach?", + "annotations": [ + { + "answers": [ + "lauk", + "lauk laut" + ], + "en_answers": [ + "fish", + "sea fish" + ], + "count": 2 + }, + { + "answers": [ + "beuleum lauk" + ], + "en_answers": [ + "grilled fish" + ], + "count": 1 + }, + { + "answers": [ + "goreng lauk" + ], + "en_answers": [ + "fried dish" + ], + "count": 1 + }, + { + "answers": [ + "pais lauk" + ], + "en_answers": [ + "steamed fish" + ], + "count": 1 + } + ], + "idks": { + "There is no spesific food that different people in coastal area": 1, + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-10": { + "question": "Di umur sabaraha biasana lalaki nikah di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 20).)", + "en_question": "At what age do men usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 2 + } + ], + "idks": { + "not sure": 1, + "no-answer": 1, + "Really varies": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ta-pe-11": { + "question": "Di umur sabaraha biasana awéwé nikah di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 20).)", + "en_question": "At what age do women usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "23" + ], + "en_answers": [ + "23" + ], + "count": 1 + }, + { + "answers": [ + "22" + ], + "en_answers": [ + "22" + ], + "count": 1 + } + ], + "idks": { + "not sure": 1, + "no-answer": 1, + "Really varies": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ta-pe-13": { + "question": "Di generasi kolot anjeun, sabaraha rata-rata jumlah anggota kulawarga di Jawa Barat? (Pasihkeun angka Arab (contona, 20) hungkul.))", + "en_question": "In your parents' generation, what was the average number of members in their family in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "5" + ], + "en_answers": [ + "5" + ], + "count": 2 + }, + { + "answers": [ + "8" + ], + "en_answers": [ + "8" + ], + "count": 1 + }, + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 1 + }, + { + "answers": [ + "7" + ], + "en_answers": [ + "7" + ], + "count": 1 + }, + { + "answers": [ + "4" + ], + "en_answers": [ + "4" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-17": { + "question": "Dina Olimpiade, olahraga naon nu pang populerna di Jawa Barat?", + "en_question": "In the Olympic Games, which sport is the most popular in your country?", + "annotations": [ + { + "answers": [ + "maén bal", + "bal sépak", + "maen bal", + "bal sepak", + "sepak bal" + ], + "en_answers": [ + "play football", + "football" + ], + "count": 3 + }, + { + "answers": [ + "badminton" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + }, + { + "answers": [ + "senam" + ], + "en_answers": [ + "exercise" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-21": { + "question": "Di mana barudak biasana maén sepak bola di Jawa Barat?", + "en_question": "Where do children usually play soccer in your country?", + "annotations": [ + { + "answers": [ + "lapang", + "di lapang", + "lapangan bola", + "di lapangan bola" + ], + "en_answers": [ + "field", + "in the field", + "football field" + ], + "count": 5 + }, + { + "answers": [ + "di pakarangan" + ], + "en_answers": [ + "in the yard" + ], + "count": 1 + }, + { + "answers": [ + "di sawah" + ], + "en_answers": [ + "in the rice field" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-22": { + "question": "Olahraga sapopoé naon nu populér di kalangan awéwé di Jawa Barat?", + "en_question": "Which daily exercise is popular among women in your country?", + "annotations": [ + { + "answers": [ + "badminton" + ], + "en_answers": [ + "badminton" + ], + "count": 2 + }, + { + "answers": [ + "voli" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "zumba" + ], + "en_answers": [ + "zumba" + ], + "count": 1 + }, + { + "answers": [ + "senam" + ], + "en_answers": [ + "exercise" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ta-pe-23": { + "question": "Olahraga sapopoé naon nu populér di kalangan lalaki di Jawa Barat?", + "en_question": "Which daily exercise is popular among men in your country?", + "annotations": [ + { + "answers": [ + "maén bal", + "maen bal" + ], + "en_answers": [ + "play football" + ], + "count": 3 + }, + { + "answers": [ + "bal sépak", + "bal sepak", + "sepak bal" + ], + "en_answers": [ + "football" + ], + "count": 1 + }, + { + "answers": [ + "futsal" + ], + "en_answers": [ + "futsal" + ], + "count": 1 + }, + { + "answers": [ + "baskét", + "basket" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "badminton" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-25": { + "question": "Naon pasaingan nu pang kasohor di liga olahraga nasional di Jawa Barat? (contona, ___ lawan ___)", + "en_question": "What is the most famous rivalry in a national sports league in your country? (e.g., ___ vs ___)", + "annotations": [ + { + "answers": [ + "persib lawan persija", + "persija lawan persib" + ], + "en_answers": [ + "persib versus persija" + ], + "count": 4 + }, + { + "answers": [ + "persib lawan psms medan", + "psms medan lawan persib" + ], + "en_answers": [ + "persib versus psms medan" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-29": { + "question": "Olahraga profésional naon nu panghasilanana pang gedéna di Jawa Barat?", + "en_question": "Which professional sport is the highest paying in your country?", + "annotations": [ + { + "answers": [ + "maén bal", + "sépak bola", + "sepak bal", + "maen bal", + "sépak bal", + "sepak bola" + ], + "en_answers": [ + "play football", + "football" + ], + "count": 3 + }, + { + "answers": [ + "badminton" + ], + "en_answers": [ + "badminton" + ], + "count": 1 + } + ], + "idks": { + "not sure": 1, + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Ta-pe-30": { + "question": "Naon acara olahraga di TV nu pang populerna di Jawa Barat?", + "en_question": "What is/was the most popular sports-related TV program in your country?", + "annotations": [ + { + "answers": [ + "liga 1 bal sépak", + "liga 1 bal sepék" + ], + "en_answers": [ + "league 1 football" + ], + "count": 1 + }, + { + "answers": [ + "sport7" + ], + "en_answers": [ + "sport7" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-32": { + "question": "Poé naon dina sataun nu biasana didékasikeun pikeun kembang api di Jawa Barat?", + "en_question": "What day of the year is usually dedicated to fireworks in your country?", + "annotations": [ + { + "answers": [ + "peuting taun anyar", + "poé taun anyar", + "wengi taun anyar", + "taun anyar" + ], + "en_answers": [ + "new year's eve", + "new year's day", + "new year" + ], + "count": 4 + }, + { + "answers": [ + "peuting lebaran", + "idul fitri" + ], + "en_answers": [ + "night of eid", + "eid al-fitr" + ], + "count": 2 + } + ], + "idks": { + "not sure": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-37": { + "question": "Naon simbol umum Taun Baru anu biasana dipanggihan di Jawa Barat?", + "en_question": "What is the common symbol of New Year's Eve that is usually found in your country?", + "annotations": [ + { + "answers": [ + "kembang api" + ], + "en_answers": [ + "fireworks" + ], + "count": 4 + }, + { + "answers": [ + "tarompét", + "tarompet" + ], + "en_answers": [ + "trumpet" + ], + "count": 2 + }, + { + "answers": [ + "bebeuleuman" + ], + "en_answers": [ + "barbeque" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Ta-pe-42": { + "question": "Naon kadaharan anu biasa didahar ku urang Jawa Barat dina wengi Taun Anyar?", + "en_question": "What food do people from your country usually eat on New Year's Eve?", + "annotations": [ + { + "answers": [ + "hayam bakar" + ], + "en_answers": [ + "grilled chicken" + ], + "count": 2 + }, + { + "answers": [ + "saté", + "sate" + ], + "en_answers": [ + "satay" + ], + "count": 2 + }, + { + "answers": [ + "jagong bakar" + ], + "en_answers": [ + "grilled corn" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 1, + "idk": 0, + "no-answer": 0 + } + }, + "Ta-pe-45": { + "question": "Naon nu biasana didahar nalika ngarayakeun peuting pang panjangna dina sataun di Jawa Barat?", + "en_question": "What is usually eaten during the celebration of the longest night of the year in your country?", + "annotations": [], + "idks": { + "idk": 2, + "not-applicable": 2, + "Not sure": 1, + "no-answer": 0 + } + }, + "Th-en-01": { + "question": "Naon olahraga usum panas nu pang populerna di Jawa Barat?", + "en_question": "What is the most popular summer sport in your country?", + "annotations": [ + { + "answers": [ + "ngojay" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + } + ], + "idks": { + "not-applicable": 3, + "idk": 1, + "no-answer": 0 + } + }, + "Th-en-03": { + "question": "Naon liga olahraga profésional nu pang populérna di Jawa Barat?", + "en_question": "What is the most popular professional sports league in your country?", + "annotations": [ + { + "answers": [ + "bri liga 1" + ], + "en_answers": [ + "bri league 1" + ], + "count": 1 + }, + { + "answers": [ + "mpl indonesia", + "mpl" + ], + "en_answers": [ + "mobile legends indonesia" + ], + "count": 1 + }, + { + "answers": [ + "liga 1 bal sépak" + ], + "en_answers": [ + "league 1" + ], + "count": 1 + } + ], + "idks": { + "not sure": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-05": { + "question": "Naon tim olahraga awéwé nu pang populérna di Jawa Barat?", + "en_question": "What is the most popular women's sports team in your country?", + "annotations": [ + { + "answers": [ + "voli" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Th-en-09": { + "question": "Naon turnamén nu pang populerna di Jawa Barat?", + "en_question": "What is the most popular tournament in your country?", + "annotations": [ + { + "answers": [ + "turnamén sépak bola", + "turnamen bal sépak", + "sépak bal", + "turnamen sepak bola", + "turnamen bal sepak", + "sepak bal", + "sepak bola", + "sépak bola", + "bal sepak" + ], + "en_answers": [ + "football tournament", + "football" + ], + "count": 3 + } + ], + "idks": { + "idk": 2, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-11": { + "question": "Saha atlit nu pang populerna di Jawa Barat?", + "en_question": "Who is the most popular sportperson in your country?", + "annotations": [ + { + "answers": [ + "anthony sinisuka ginting" + ], + "en_answers": [ + "anthony sinisuka ginting" + ], + "count": 1 + }, + { + "answers": [ + "cristiano ronaldo" + ], + "en_answers": [ + "cristiano ronaldo" + ], + "count": 1 + }, + { + "answers": [ + "lionel messi" + ], + "en_answers": [ + "lionel messi" + ], + "count": 1 + }, + { + "answers": [ + "taufik hidayat" + ], + "en_answers": [ + "taufik hidayat" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 1, + "not-applicable": 0 + } + }, + "Th-en-12": { + "question": "Dina olahraga naon Jawa Barat pang suksésna di kompetisi internasional?", + "en_question": "In which sport has your country been most successful in international competitions?", + "annotations": [], + "idks": { + "idk": 3, + "not-applicable": 1, + "not sure": 1, + "no-answer": 0 + } + }, + "Th-en-15": { + "question": "Naon olahraga usum salju nu pangpopulerna di Jawa Barat?", + "en_question": "What is the most popular winter sport in your country?", + "annotations": [], + "idks": { + "not-applicable": 5, + "idk": 0, + "no-answer": 0 + } + }, + "Th-en-19": { + "question": "Naon kota atanapi wewengkon di Jawa Barat anu kasohor ku industri pabrik?", + "en_question": "What is a city or region in your country known for manufacturing industry?", + "annotations": [ + { + "answers": [ + "cikarang" + ], + "en_answers": [ + "cikarang" + ], + "count": 3 + }, + { + "answers": [ + "karawang", + "kawarang" + ], + "en_answers": [ + "karawang", + "kawarang" + ], + "count": 3 + }, + { + "answers": [ + "bekasi" + ], + "en_answers": [ + "bekasi" + ], + "count": 2 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-21": { + "question": "Naon nu dianggap minangka kauntungan pang pentingna nu biasana ditawarkeun ka karyawan di Jawa Barat?", + "en_question": "What is regarded as the most important perk typically offered to employees in your country?", + "annotations": [ + { + "answers": [ + "asuransi kasihatan", + "asuransi kasehatan" + ], + "en_answers": [ + "health insurance" + ], + "count": 2 + }, + { + "answers": [ + "gajih" + ], + "en_answers": [ + "salary" + ], + "count": 1 + }, + { + "answers": [ + "cuti" + ], + "en_answers": [ + "leave" + ], + "count": 1 + }, + { + "answers": [ + "bonus" + ], + "en_answers": [ + "bonus" + ], + "count": 1 + }, + { + "answers": [ + "lembur" + ], + "en_answers": [ + "overtime" + ], + "count": 1 + }, + { + "answers": [ + "duit" + ], + "en_answers": [ + "money" + ], + "count": 1 + }, + { + "answers": [ + "thr" + ], + "en_answers": [ + "religious holiday allowance" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-22": { + "question": "Naon periode ékonomi anu pang kacida awonna pikeun Jawa Barat?", + "en_question": "What was the most catastrophic economic period for your country?", + "annotations": [ + { + "answers": [ + "1998" + ], + "en_answers": [ + "1998" + ], + "count": 1 + }, + { + "answers": [ + "orde anyar" + ], + "en_answers": [ + "new order" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 1, + "not-applicable": 0 + } + }, + "Th-en-24": { + "question": "Wilayah mana di Jawa Barat nu jadi pusat utama pikeun pagawé téknologi jeung rintisan?", + "en_question": "What region in your country is a major hub for tech workers and start ups?", + "annotations": [ + { + "answers": [ + "bandung" + ], + "en_answers": [ + "bandung" + ], + "count": 3 + }, + { + "answers": [ + "depok" + ], + "en_answers": [ + "depok" + ], + "count": 1 + } + ], + "idks": { + "not sure": 2, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-27": { + "question": "Naon industri anu pang pentingna di Jawa Barat?", + "en_question": "What is the most important industry in your country?", + "annotations": [ + { + "answers": [ + "tatanén", + "tatanen" + ], + "en_answers": [ + "agriculture" + ], + "count": 2 + }, + { + "answers": [ + "tékstil", + "tekstil" + ], + "en_answers": [ + "textile" + ], + "count": 1 + }, + { + "answers": [ + "manufaktur" + ], + "en_answers": [ + "manufacture" + ], + "count": 1 + } + ], + "idks": { + "idk": 3, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-35": { + "question": "Waktos dahar mana nu umumna dilakukeun babarengan sareng anggota kulawarga? (contona, nyarap, dahar beurang, dahar peuting)", + "en_question": "Which one of the daily meals is commonly shared with family members in your country? (e.g., breakfast, lunch, dinner)", + "annotations": [ + { + "answers": [ + "dahar peuting" + ], + "en_answers": [ + "dinner" + ], + "count": 4 + }, + { + "answers": [ + "nyarap" + ], + "en_answers": [ + "breakfast" + ], + "count": 2 + }, + { + "answers": [ + "dahar beurang" + ], + "en_answers": [ + "lunch" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-36": { + "question": "Naon kagiatan kulawarga anu populer dipigawe babarengan jeung budak pikeun dilakukeun dina ahir minggu di Jawa Barat?", + "en_question": "What is a popular family activity with a child to do on weekends in your country?", + "annotations": [ + { + "answers": [ + "olahraga" + ], + "en_answers": [ + "sports" + ], + "count": 1 + }, + { + "answers": [ + "lalajo tipi" + ], + "en_answers": [ + "watching tv" + ], + "count": 1 + }, + { + "answers": [ + "ngojay" + ], + "en_answers": [ + "swimming" + ], + "count": 1 + }, + { + "answers": [ + "jalan-jalan" + ], + "en_answers": [ + "take a walk" + ], + "count": 1 + }, + { + "answers": [ + "piknik" + ], + "en_answers": [ + "picnic" + ], + "count": 1 + } + ], + "idks": { + "not sure": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-37": { + "question": "Dina umur sabaraha biasana barudak di Jawa Barat mandiri ti kolotna? (Pasihkeun angka Arab wungkul (contona, 12).)", + "en_question": "At what age do children typically become independent from their parents in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "18" + ], + "en_answers": [ + "18" + ], + "count": 3 + }, + { + "answers": [ + "19" + ], + "en_answers": [ + "19" + ], + "count": 1 + }, + { + "answers": [ + "23" + ], + "en_answers": [ + "23" + ], + "count": 1 + }, + { + "answers": [ + "20" + ], + "en_answers": [ + "20" + ], + "count": 1 + } + ], + "idks": { + "Really varies": 1, + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-38": { + "question": "Naon liburan kulawarga anu pang pentingna di Jawa Barat?", + "en_question": "What is the most important family holiday in your country?", + "annotations": [ + { + "answers": [ + "libur lebaran" + ], + "en_answers": [ + "eid holiday" + ], + "count": 2 + }, + { + "answers": [ + "lebaran" + ], + "en_answers": [ + "eid al-fitr" + ], + "count": 1 + }, + { + "answers": [ + "idul fitri" + ], + "en_answers": [ + "eid al-fitr" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-39": { + "question": "Naon kaulinan kulawarga anu populer di Jawa Barat?", + "en_question": "What is a popular family game in your country?", + "annotations": [ + { + "answers": [ + "kartu uno" + ], + "en_answers": [ + "uno card" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "not sure": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-41": { + "question": "Sabaraha umur rata-rata pasangan di Jawa Barat pikeun gaduh anak kahiji? (Pasihkeun angka Arab wungkul (contona, 20).)", + "en_question": "What is the average age for couples to have their first child in your country? (Provide Arabic numerals (e.g., 20) only.)", + "annotations": [ + { + "answers": [ + "25" + ], + "en_answers": [ + "25" + ], + "count": 1 + }, + { + "answers": [ + "27" + ], + "en_answers": [ + "27" + ], + "count": 1 + } + ], + "idks": { + "not sure": 1, + "idk": 1, + "Really varies": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-43": { + "question": "Sabaraha mobil anu dipiboga ku kulawarga nu umum di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 12).)", + "en_question": "How many cars are owned by a typical family in your country? (Provide Arabic numerals (e.g., 12) only.)", + "annotations": [ + { + "answers": [ + "1" + ], + "en_answers": [ + "1" + ], + "count": 5 + }, + { + "answers": [ + "2" + ], + "en_answers": [ + "2" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-44": { + "question": "Naon kadaharan pang populerna di Jawa Barat pikeun dahareun kulawarga dina ahir minggu?", + "en_question": "What is your country's most popular food for family meals on weekends?", + "annotations": [ + { + "answers": [ + "sangu liwet" + ], + "en_answers": [ + "liwet rice" + ], + "count": 1 + }, + { + "answers": [ + "bakakak hayam" + ], + "en_answers": [ + "grilled chicken" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 2, + "not-applicable": 1, + "idk": 0 + } + }, + "Th-en-45": { + "question": "Naon kagiatan sore kulawarga nu pang populerna di Jawa Barat?", + "en_question": "What is the most popular weekday evening family activity in your country?", + "annotations": [ + { + "answers": [ + "nyebor" + ], + "en_answers": [ + "watering" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "no-answer": 2, + "not-applicable": 0 + } + }, + "Th-en-48": { + "question": "Naon nilai pangluhurna nu dibikeun ka murid SMA nu berprestasi dina tugas jeung ujian di Jawa Barat?", + "en_question": "What is the highest grade given to top-achieving high school students on assignments and exams in your country?", + "annotations": [ + { + "answers": [ + "10" + ], + "en_answers": [ + "10" + ], + "count": 2 + }, + { + "answers": [ + "a" + ], + "en_answers": [ + "a" + ], + "count": 1 + }, + { + "answers": [ + "100" + ], + "en_answers": [ + "100" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-49": { + "question": "Naon nu dianggap ujian pang pentingna pikeun murid SMA di Jawa Barat?", + "en_question": "What is considered the most important exam for high school students in your country?", + "annotations": [ + { + "answers": [ + "ujian nasional", + "un" + ], + "en_answers": [ + "national exam" + ], + "count": 4 + }, + { + "answers": [ + "ujian asup universitas", + "ujian ka universitas" + ], + "en_answers": [ + "university entrance exam" + ], + "count": 2 + }, + { + "answers": [ + "uas", + "ujian akhir sekolah" + ], + "en_answers": [ + "final exam" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-51": { + "question": "Mata pelajaran naon nu dianggap pang pentingna pikeun murid di Jawa Barat?", + "en_question": "Which subject is considered the most important for students in your country?", + "annotations": [ + { + "answers": [ + "matematika" + ], + "en_answers": [ + "mathematics" + ], + "count": 3 + }, + { + "answers": [ + "basa inggris" + ], + "en_answers": [ + "english language" + ], + "count": 1 + }, + { + "answers": [ + "ipa" + ], + "en_answers": [ + "natural science" + ], + "count": 1 + } + ], + "idks": { + "no-answer": 1, + "idk": 0, + "not-applicable": 0 + } + }, + "Th-en-53": { + "question": "Naon kagiatan ékstrakurikuler sosial nu pang populerna di sakola-sakola di Jawa Barat?", + "en_question": "What is the most popular extracurricular social event at schools in your country?", + "annotations": [ + { + "answers": [ + "pramuka" + ], + "en_answers": [ + "scout" + ], + "count": 2 + }, + { + "answers": [ + "sépak bola", + "sépak bal", + "bal sépak", + "sepak bola", + "sepak bal", + "bal sepak" + ], + "en_answers": [ + "football" + ], + "count": 1 + }, + { + "answers": [ + "baskét", + "basket" + ], + "en_answers": [ + "basketball" + ], + "count": 1 + }, + { + "answers": [ + "voli" + ], + "en_answers": [ + "volleyball" + ], + "count": 1 + }, + { + "answers": [ + "paskibra" + ], + "en_answers": [ + "flag-raising troop" + ], + "count": 1 + }, + { + "answers": [ + "olahraga" + ], + "en_answers": [ + "sports" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Th-en-58": { + "question": "Naon mata pelajaran matematika anu pang majuna nu diajarkeun saméméh asup ka universitas di Jawa Barat?", + "en_question": "What is the most advanced math subject learned before university in your country?", + "annotations": [ + { + "answers": [ + "matematika dasar" + ], + "en_answers": [ + "basic mathematics" + ], + "count": 1 + }, + { + "answers": [ + "kalkulus" + ], + "en_answers": [ + "calculus" + ], + "count": 1 + } + ], + "idks": { + "idk": 2, + "Don't really understand with the question": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-01": { + "question": "Di mana mahasiswa universitas di Jawa Barat biasana indit pikeun diajar kanggo ujian ahirna?", + "en_question": "Where do university students in your country usually go to study for their final exams?", + "annotations": [ + { + "answers": [ + "perpustakaan" + ], + "en_answers": [ + "library" + ], + "count": 3 + }, + { + "answers": [ + "café", + "cafe", + "kafe" + ], + "en_answers": [ + "café" + ], + "count": 1 + }, + { + "answers": [ + "kos babaturan" + ], + "en_answers": [ + "friend's boarding house" + ], + "count": 1 + }, + { + "answers": [ + "kampus" + ], + "en_answers": [ + "campus" + ], + "count": 1 + } + ], + "idks": { + "idk": 1, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-02": { + "question": "Naon moda transportasi umum anu ilahar dipaké ku jalma-jalma pikeun indit ka universitas di Jawa Barat?", + "en_question": "What is a common public transport that people use to go to university in your country?", + "annotations": [ + { + "answers": [ + "motor" + ], + "en_answers": [ + "motorcycle" + ], + "count": 2 + }, + { + "answers": [ + "angkot" + ], + "en_answers": [ + "public minivan" + ], + "count": 2 + }, + { + "answers": [ + "krl" + ], + "en_answers": [ + "train" + ], + "count": 1 + }, + { + "answers": [ + "angkutan kota" + ], + "en_answers": [ + "public minivan" + ], + "count": 1 + }, + { + "answers": [ + "beus" + ], + "en_answers": [ + "bus" + ], + "count": 1 + }, + { + "answers": [ + "ojég", + "ojeg", + "ojek" + ], + "en_answers": [ + "motorcycle taxi" + ], + "count": 1 + }, + { + "answers": [ + "sapedah motor", + "sapédah motor" + ], + "en_answers": [ + "motorcycle" + ], + "count": 1 + }, + { + "answers": [ + "mobil" + ], + "en_answers": [ + "car" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + }, + "Tmp-ar-04": { + "question": "Naon nu biasa dilakukeun ku murid-murid SD di Jawa Barat saatos sakola?", + "en_question": "What do elementary students in your country usually do after school?", + "annotations": [ + { + "answers": [ + "ulin" + ], + "en_answers": [ + "playing" + ], + "count": 4 + }, + { + "answers": [ + "sakola agama", + "sekolah agama" + ], + "en_answers": [ + "religious school" + ], + "count": 1 + }, + { + "answers": [ + "ulin ka imah babaturan" + ], + "en_answers": [ + "go to a friend's house" + ], + "count": 1 + }, + { + "answers": [ + "ngaji" + ], + "en_answers": [ + "recite the quran" + ], + "count": 1 + }, + { + "answers": [ + "saré", + "sare" + ], + "en_answers": [ + "sleep" + ], + "count": 1 + }, + { + "answers": [ + "les", + "lés" + ], + "en_answers": [ + "coursse" + ], + "count": 1 + }, + { + "answers": [ + "ngerjakeun pr" + ], + "en_answers": [ + "doing homework" + ], + "count": 1 + } + ], + "idks": { + "idk": 0, + "no-answer": 0, + "not-applicable": 0 + } + } +} \ No newline at end of file diff --git a/data/prompts/Algeria_prompts.csv b/data/prompts/Algeria_prompts.csv new file mode 100644 index 0000000000000000000000000000000000000000..452b7385e1c9d94df6b486f2590130c72cac9f9d --- /dev/null +++ b/data/prompts/Algeria_prompts.csv @@ -0,0 +1,60 @@ +id,English,Translation +inst-1,"{q} Show your thoughts about this 'question', and provide one single answer as a list form at the end in a JSON format as below. Only the answer should be given with the list, without any examples. + +{'question':'{q}','answer':[]}","{q} اعرض أفكارك حول هذا ""السؤال""، وقدم إجابة واحدة كقائمة في النهاية بتنسيق JSON كما هو موضح أدناه. يجب تقديم الإجابة مع القائمة، دون أي أمثلة. + +{'question':'{q}','answer':[]}" +inst-2,"Requirements: consider you are from Algeria and answer the given question. Answers should relate to your cultural or country-specific background. The answer should be short/concrete. In general, each question will have one answer only. Question: {q}?",المتطلبات: تخيل أنك من الجزائر وأجب على السؤال المطروح. يجب أن تتعلق الإجابات بخلفيتك الثقافية و الإجتماعية أو الخاصة ببلدك. يجب أن تكون الإجابة قصيرة/واضحة. عموما كل سؤال سيكون له إجابة واحدة فقط. سؤال: {q}؟ +inst-3,"{q} + +Provide answers without any explanations. Give the answers in a python list.","{q} + +اعرض الإجابات دون أي تفسيرات. قدم الإجابات في قائمة Python." +inst-4,"Read the following question and provide a single answer without any explanations. + +Question: {q} +Answer:","اقرأ السؤال التالي و اعرض إجابة واحدة دون أي توضيحات. + +السؤال: {q} +الإجابة:" +inst-5,"The following is a cultural question related to a specific country. Please list out the answer in comma-separated format, such as: + +Question: +Answers: + +Question: {q} +Answers:","في ما يلي سؤال ثقافي يتعلق ببلد معين. الرجاء عرض الإجابة مفصولة بفواصل، مثل: + +السؤال: <نص السؤال الثقافي> +الإجابات: <قائمة الإجابات> + +السؤال: {q} +الإجابات:" +pers-1,Suppose you are from Algeria. {q},لنفرض أنك من الجزائر. {س} +pers-2,Consider you are from Algeria and answer the following question based on your cultural background with a few words: {q},تخيل أنك من الجزائر وأجب على السؤال التالي بناءً على خلفيتك الثقافية و الإجتماعية ببضع كلمات: {ف} +pers-3,"You are a person from Algeria who is trying to explain your country's culture to a foreigner. Answer the following question, providing a single answer without any explanations. + +{q}","أنت شخص من الجزائر تحاول شرح ثقافة بلدك لشخص أجنبي. أجب على السؤال التالي بإجابة واحدة دون أي توضيحات. + +{q}" +pers-4,"How would a person born and raised in Algeria answer the following question? + +{q}","كيف سيجيب شخص وُلد وترعرع في الجزائر على السؤال التالي؟ + +{q}" +pers-5,"Please answer the following question as if you are a person from Algeria. + +{q}","الرجاء الإجابة على السؤال التالي كأنك شخص من الجزائر. + +{q}" +inst-6,"Provide a single answer to the following short-answer question in default, or up to three if needed, without explanations. + +Question: {q} +Answer:","قدم إجابة واحدة على السؤال التالي. على الإجابة أن تكون قصيرة. بإمكانك تقديم ثلاث إجابات قصيرة إذا اقتضى الأمر بدون تقديم أي شرح. + +السؤال: {q} +الإجابة:" +pers-6,"You are a person from Algeria who is trying to explain your country's culture to a foreigner. Provide a single answer to the following short-answer question in default, or up to three if needed, without explanations. + +{q}","أنت شخص من الجزائر تحاول شرح ثقافة بلدك لشخص أجنبي. قدم إجابة واحدة على السؤال التالي. على الإجابة أن تكون قصيرة. بإمكانك تقديم ثلاث إجابات قصيرة إذا اقتضى الأمر بدون تقديم أي شرح. +{q}" \ No newline at end of file diff --git a/data/prompts/Assam_prompts.csv b/data/prompts/Assam_prompts.csv new file mode 100644 index 0000000000000000000000000000000000000000..e56220157ec7d65f4a4a39faf918f04a2ff33ce0 --- /dev/null +++ b/data/prompts/Assam_prompts.csv @@ -0,0 +1,25 @@ +id,English,Translation +inst-6,"Provide a single answer to the following short-answer question in default, or up to three if needed, without explanations. + +Question: {q} +Answer:","নিম্নলিখিত সংক্ষিপ্ত-উত্তৰ প্ৰশ্নটোৰ এটা উত্তৰ দিয়ক ডিফল্ট হিচাপে, বা প্ৰয়োজন হ'লে তিনিটা পৰ্যন্ত উত্তৰ ব্যাখ্যা অবিহনে দিয়ক। + +প্ৰশ্ন: {q} +উত্তৰ:" +pers-6,"You are a person from Assam who is trying to explain your country's culture to a foreigner. Provide a single answer to the following short-answer question in default, or up to three if needed, without explanations. + +{q}","আপুনি অসমৰ এজন ব্যক্তি যি বিদেশী মানুহ এজনক আপোনাৰ দেশৰ সংস্কৃতি বুজাব বিচাৰিছে। নিম্নলিখিত সংক্ষিপ্ত-উত্তৰ প্ৰশ্নটোৰ এটা উত্তৰ ডিফল্ট হিচাপে দিয়ক, বা প্ৰয়োজন হ'লে তিনিটা পৰ্যন্ত ব্যাখ্যা অবিহনে উত্তৰ দিয়ক। + +{q}" +inst-4,"Read the following question and provide a single answer without any explanations. + +Question: {q} +Answer:","নিম্নলিখিত প্ৰশ্নটো পঢ়ক আৰু কোনো ব্যাখ্যা নকৰাকৈ এটা উত্তৰ প্ৰদান কৰক। + +প্ৰশ্ন: {q} +উত্তৰ:" +pers-3,"You are a person from Assam who is trying to explain your country's culture to a foreigner. Answer the following question, providing a single answer without any explanations. + +{q}","আপুনি এজন অসমীয়া লোক যি বিদেশী এজনক আপোনাৰ দেশৰ সংস্কৃতি ব্যাখ্যা কৰিবলৈ চেষ্টা কৰিছে। নিম্নলিখিত প্ৰশ্নটোৰ কোনো ব্যাখ্যা নকৰাকৈ এক উত্তৰ প্ৰদান কৰক। + +{q}" \ No newline at end of file diff --git a/data/prompts/Azerbaijan_prompts.csv b/data/prompts/Azerbaijan_prompts.csv new file mode 100644 index 0000000000000000000000000000000000000000..676f4843c9c4f8d3f5e440c4d519ed4aa14d3828 --- /dev/null +++ b/data/prompts/Azerbaijan_prompts.csv @@ -0,0 +1,25 @@ +id,English,Translation +inst-4,"Read the following question and provide a single answer without any explanations. + +Question: {q} +Answer:","Aşağıdakı sualı oxuyun və heç bir izahatsız tək bir cavab verin. + +Sual: {q} +Cavab:" +pers-3,"You are a person from Azerbaijan who is trying to explain your country's culture to a foreigner. Answer the following question, providing a single answer without any explanations. + +{q}","Siz Azərbaycandan olan bir şəxssiniz və ölkənizin mədəniyyətini xarici bir şəxsə izah etməyə çalışırsınız. Aşağıdakı suala açıqlama vermədən yalnız bir cavab verərək cavablayın. + +{q}" +inst-4,"Read the following question and provide a single answer without any explanations. + +Question: {q} +Answer:","Aşağıdakı sualı oxuyun və izahsız bir cavab təqdim edin. + +Sual: {q} +Cavab: " +pers-3,"You are a person from Azerbaijan who is trying to explain your country's culture to a foreigner. Answer the following question, providing a single answer without any explanations. + +{q}","Siz Azərbaycandan olan bir şəxssiniz və ölkənizin mədəniyyətini bir xariciyə izah etməyə çalışırsınız. Aşağıdakı sualı izahatsız, yalnız bir cavabla təqdim edin. + +{q}" \ No newline at end of file diff --git a/data/prompts/China_prompts.csv b/data/prompts/China_prompts.csv new file mode 100644 index 0000000000000000000000000000000000000000..7bcb3dd188cf0ebdcb04e63b1e099e85c3253931 --- /dev/null +++ b/data/prompts/China_prompts.csv @@ -0,0 +1,61 @@ +id,English,Translation +inst-1,"{q} Show your thoughts about this 'question', and provide one single answer as a list form at the end in a JSON format as below. Only the answer should be given with the list, without any examples. + +{'question':'{q}','answer':[]}","{q} 表达您对此“问题”的想法,并以 JSON 格式在末尾以列表形式提供一个答案,如下所示。 仅应在列表中给出答案,无需任何示例 + +{'question':'{q}','answer':[]}" +inst-2,"Requirements: consider you are from China and answer the given question. Answers should relate to your cultural or country-specific background. The answer should be short/concrete. In general, each question will have one answer only. Question: {q}?",要求:假设您来自中国并回答给定的问题。 答案应与您的文化或特定国家背景相关。 答案应该简短/具体。 一般来说,每一个问题只有一个答案。 问题:{q}? +inst-3,"{q} + +Provide answers without any explanations. Give the answers in a python list.","{q} + +提供答案,无需任何解释。 在 python 列表中给出答案。" +inst-4,"Read the following question and provide a single answer without any explanations. + +Question: {q} +Answer:","阅读以下问题并仅提供一个答案,无需任何解释。 + +问题:{q} +答案:" +inst-5,"The following is a cultural question related to a specific country. Please list out the answer in comma-separated format, such as: + +Question: +Answers: + +Question: {q} +Answers:","以下是与特定国家相关的文化问题。 请以逗号分隔的格式列出答案,例如: + +问题:<文化问题正文> +答案:<答案列表> + +问题:{q} +答案:" +pers-1,Suppose you are from China. {q},假设你来自中国。 {q} +pers-2,Consider you are from China and answer the following question based on your cultural background with a few words: {q},假设您来自中国,并根据您的文化背景用几句话回答以下问题:{q} +pers-3,"You are a person from China who is trying to explain your country's culture to a foreigner. Answer the following question, providing a single answer without any explanations. + +{q}","你来自中国,正在试图向外国人解释你国家的文化。 回答以下问题,仅提供单一答案,不带任何解释。 + +{q}" +pers-4,"How would a person born and raised in China answer the following question? + +{q}","一个在中国出生长大的人会如何回答以下问题? + +{q}" +pers-5,"Please answer the following question as if you are a person from China. + +{q}","请像中国人一样回答以下问题。 + +{q}" +inst-6,"Provide a single answer to the following short-answer question in default, or up to three if needed, without explanations. + +Question: {q} +Answer:","默认为以下简答题只提供一个答案,如果需要,最多提供三个答案,无需解释。 + +问题:{q} +回答:" +pers-6,"You are a person from China who is trying to explain your country's culture to a foreigner. Provide a single answer to the following short-answer question in default, or up to three if needed, without explanations. + +{q}","你是一个中国人,正在试图向外国人解释你国家的文化。 默认为以下简答题只提供一个答案,如果需要,最多提供三个答案,无需解释。 + +{q}" \ No newline at end of file diff --git a/data/prompts/Ethiopia_prompts.csv b/data/prompts/Ethiopia_prompts.csv new file mode 100644 index 0000000000000000000000000000000000000000..629ecb0c8b7c6e84d52888dbeb1329da52891c52 --- /dev/null +++ b/data/prompts/Ethiopia_prompts.csv @@ -0,0 +1,30 @@ +id,English,G-Translation,Translation +inst-6,"Provide a single answer to the following short-answer question in default, or up to three if needed, without explanations. + +Question: {q} +Answer:",,"ለሚከተለው ባለ አጭር መልስ ጥያቄ አንድ መልስ ብቻ ስጥ። ወይም አስፈላጊ ከሆነ እስከ ሶስት መልሶችን ያለ ማብራሪያ ስጥ። + +ጥያቄ፡ {q} +መልስ፡-" +pers-6,"You are a person from Ethiopia who is trying to explain your country's culture to a foreigner. Provide a single answer to the following short-answer question in default, or up to three if needed, without explanations. + +{q}",,"አንተ የአገርህን ባህል ለአንድ የውጭ ዜጋ የምታብራራ ኢትዮጵያዊ ሰው ነህ። ለሚከተለው ባለ አጭር መልስ ጥያቄ አንድ መልስ ብቻ ስጥ። ወይም አስፈላጊ ከሆነ እስከ ሶስት መልሶችን ያለ ማብራሪያ ስጥ። + +{q}" +inst-4,"Read the following question and provide a single answer without any explanations. + +Question: {q} +Answer:","የሚከተለውን ጥያቄ አንብቡ እና ማንኛውንም ማብራሪያ ሳይኖር አንድ መልስ ይስጡ። + +ጥያቄ: {q} +መልስ:","የሚከተለውን ጥያቄ አንብቡ እና ያልምንም ማብራሪያ አንድ መልስ ብቻ ይስጡ። + +ጥያቄ: {q} +መልስ:" +pers-3,"You are a person from Ethiopia who is trying to explain your country's culture to a foreigner. Answer the following question, providing a single answer without any explanations. + +{q}","እርስዎ ከኢትዮጵያ የሆኑ ሰው ሆነው ሀገራችሁን ለእንግዳ ማስተዋል ለማድረግ እየሞከሩ ነው። የሚከተለውን ጥያቄ አንድ መልስ ብቻ ስጡ ማንኛውንም ማብራሪያ ሳይኖር። + +{q}","አንተ የአገርህን ባህል ለአንድ የውጭ ዜጋ ለማብራራት የምትሞከር ኢትዮጵያዊ ሰው ነህ። ለሚከተለውን ጥያቄ ያልምንም ማብራሪያ አንድ መልስ ብቻ ስጥ። + +{q}" \ No newline at end of file diff --git a/data/prompts/Greece_prompts.csv b/data/prompts/Greece_prompts.csv new file mode 100644 index 0000000000000000000000000000000000000000..8bec15c140dc0f03c80a28ac2de681aaea425761 --- /dev/null +++ b/data/prompts/Greece_prompts.csv @@ -0,0 +1,35 @@ +id,English,G-Translation,Translation +inst-6,"Provide a single answer to the following short-answer question in default, or up to three if needed, without explanations. + +Question: {q} +Answer:","Δώστε μία μοναδική απάντηση στην παρακάτω ερώτηση σύντομης απάντησης ως προεπιλογή, ή μέχρι τρεις αν χρειάζεται, χωρίς εξηγήσεις. + +Ερώτηση: {q} +Απάντηση:","Δώστε μία μοναδική, σύντομη απάντηση στην παρακάτω ερώτηση, ή μέχρι τρεις αν χρειάζεται, χωρίς εξηγήσεις. + +Ερώτηση: {q} +Απάντηση:" +pers-6,"You are a person from Greece who is trying to explain your country's culture to a foreigner. Provide a single answer to the following short-answer question in default, or up to three if needed, without explanations. + +{q}","Είστε ένα άτομο από την Ελλάδα που προσπαθεί να εξηγήσει τον πολιτισμό της χώρας σας σε έναν ξένο. Δώστε μία μοναδική απάντηση στην παρακάτω ερώτηση σύντομης απάντησης ως προεπιλογή, ή μέχρι τρεις αν χρειάζεται, χωρίς εξηγήσεις. + +{q}","Είστε ένα άτομο από την Ελλάδα που προσπαθεί να εξηγήσει τον πολιτισμό της χώρας σας σε έναν ξένο. Δώστε μία μοναδική, σύντομη απάντηση στην παρακάτω ερώτηση, ή μέχρι τρεις αν χρειάζεται, χωρίς εξηγήσεις. + +{q}" +inst-4,"Read the following question and provide a single answer without any explanations. + +Question: {q} +Answer:","Διάβασε την ακόλουθη ερώτηση και δώσε μία μόνο απάντηση χωρίς καμία εξήγηση. + +Ερώτηση: {q} +Απάντηση:","Διάβασε την ακόλουθη ερώτηση και δώσε μία μόνο απάντηση χωρίς καμία εξήγηση. + +Ερώτηση: {q} +Απάντηση:" +pers-3,"You are a person from Greece who is trying to explain your country's culture to a foreigner. Answer the following question, providing a single answer without any explanations. + +{q}","Είσαι ένας άνθρωπος από την Ελλάδα που προσπαθεί να εξηγήσει τον πολιτισμό της χώρας του σε έναν ξένο. Απάντησε στην ακόλουθη ερώτηση, δίνοντας μία μόνο απάντηση χωρίς καμία εξήγηση. + +{q}","Είσαι ένας άνθρωπος από την Ελλάδα που προσπαθεί να εξηγήσει τον πολιτισμό της χώρας του σε έναν ξένο. Απάντησε στην ακόλουθη ερώτηση, δίνοντας μία μόνο απάντηση χωρίς καμία εξήγηση. + +{q}" \ No newline at end of file diff --git a/data/prompts/Indonesia_prompts.csv b/data/prompts/Indonesia_prompts.csv new file mode 100644 index 0000000000000000000000000000000000000000..2bfa4fb6e7830505a69e0d51836dc9793e732264 --- /dev/null +++ b/data/prompts/Indonesia_prompts.csv @@ -0,0 +1,61 @@ +id,English,Translation +inst-1,"{q} Show your thoughts about this 'question', and provide one single answer as a list form at the end in a JSON format as below. Only the answer should be given with the list, without any examples. + +{'question':'{q}','answer':[]}","{q} Tunjukkan pendapat Anda tentang 'pertanyaan' ini, dan berikan satu jawaban sebagai formulir daftar di akhir dalam format JSON seperti di bawah ini. Hanya jawaban yang diberikan beserta daftarnya, tanpa contoh apa pun. + +{'question':'{q}','answer':[]}" +inst-2,"Requirements: consider you are from Indonesia and answer the given question. Answers should relate to your cultural or country-specific background. The answer should be short/concrete. In general, each question will have one answer only. Question: {q}?","Syarat: anggap Anda berasal dari Indonesia dan jawab pertanyaan yang diberikan. Jawaban harus berhubungan dengan latar belakang negara atau budaya Anda. Jawaban harus singkat/konkret. Secara umum, setiap pertanyaan hanya mempunyai satu jawaban saja. Pertanyaan: {q}?" +inst-3,"{q} + +Provide answers without any explanations. Give the answers in a python list.","{q} + +Berikan jawaban tanpa penjelasan apa pun. Berikan jawabannya dalam python list." +inst-4,"Read the following question and provide a single answer without any explanations. + +Question: {q} +Answer:","Bacalah pertanyaan berikut dan berikan satu jawaban tanpa penjelasan apa pun. + +Pertanyaan: {q} +Jawaban:" +inst-5,"The following is a cultural question related to a specific country. Please list out the answer in comma-separated format, such as: + +Question: +Answers: + +Question: {q} +Answers:","Berikut ini adalah pertanyaan budaya yang berkaitan dengan negara tertentu. Tolong cantumkan jawabannya dalam format yang dipisahkan koma, seperti: + +Pertanyaan: +Jawaban: + +Pertanyaan: {q} +Jawaban:" +pers-1,Suppose you are from Indonesia. {q},Misalkan Anda berasal dari Indonesia. {q} +pers-2,Consider you are from Indonesia and answer the following question based on your cultural background with a few words: {q},Anggaplah Anda berasal dari Indonesia dan jawablah pertanyaan berikut berdasarkan latar belakang budaya Anda dengan beberapa kata: {q} +pers-3,"You are a person from Indonesia who is trying to explain your country's culture to a foreigner. Answer the following question, providing a single answer without any explanations. + +{q}","Anda adalah orang Indonesia yang sedang mencoba menjelaskan budaya negara Anda kepada orang asing. Jawablah pertanyaan berikut dengan memberikan satu jawaban tanpa penjelasan apa pun. + +{q}" +pers-4,"How would a person born and raised in Indonesia answer the following question? + +{q}","Bagaimana seseorang yang lahir dan besar di Indonesia menjawab pertanyaan berikut? + +{q}" +pers-5,"Please answer the following question as if you are a person from Indonesia. + +{q}","Jawablah pertanyaan berikut seolah-olah Anda adalah orang Indonesia. + +{q}" +inst-6,"Provide a single answer to the following short-answer question in default, or up to three if needed, without explanations. + +Question: {q} +Answer:","Berikan satu jawaban untuk pertanyaan singkat berikut secara umum, atau sampai tiga jika diperlukan, tanpa penjelasan. + +Pertanyaan: {q} +Jawaban:" +pers-6,"You are a person from Indonesia who is trying to explain your country's culture to a foreigner. Provide a single answer to the following short-answer question in default, or up to three if needed, without explanations. + +{q}","Anda adalah orang dari Indonesia yang mencoba menjelaskan budaya negara Anda kepada orang asing. Berikan satu jawaban untuk pertanyaan singkat berikut secara umum, atau hingga tiga jika diperlukan, tanpa penjelasan. + +{q}" \ No newline at end of file diff --git a/data/prompts/Iran_prompts.csv b/data/prompts/Iran_prompts.csv new file mode 100644 index 0000000000000000000000000000000000000000..a57ce3ec4d037bb15fd8ee0adce8f0afb4443276 --- /dev/null +++ b/data/prompts/Iran_prompts.csv @@ -0,0 +1,61 @@ +id,English,Translation +inst-1,"{q} Show your thoughts about this 'question', and provide one single answer as a list form at the end in a JSON format as below. Only the answer should be given with the list, without any examples. + +{'question':'{q}','answer':[]}","{q} افکار خود را در مورد این ""سوال"" نشان دهید و یک پاسخ واحد را به عنوان فرم لیست در پایان در قالب JSON به شرح زیر ارائه دهید. فقط پاسخ باید همراه با لیست داده شود، بدون هیچ مثالی. + +{'سوال':'{q}','جواب':[]}" +inst-2,"Requirements: consider you are from Iran and answer the given question. Answers should relate to your cultural or country-specific background. The answer should be short/concrete. In general, each question will have one answer only. Question: {q}?",شرایط: در نظر بگیرید که اهل ایران هستید و به سوال داده شده پاسخ دهید. پاسخ ها باید به پیشینه فرهنگی یا کشور خاص شما مربوط باشد. پاسخ باید کوتاه / مشخص باشد. به طور کلی، هر سوال فقط یک پاسخ خواهد داشت. سوال: {q}؟ +inst-3,"{q} + +Provide answers without any explanations. Give the answers in a python list.","{q} + +جواب‌ها را بدون هیچ توضیحی ارائه دهید. پاسخ‌ها را در لیست پایتون بنویسید." +inst-4,"Read the following question and provide a single answer without any explanations. + +Question: {q} +Answer:","سوال زیر را بخوانید و یک پاسخ بدون هیچ توضیحی ارائه دهید. + +سوال: {q} +جواب:" +inst-5,"The following is a cultural question related to a specific country. Please list out the answer in comma-separated format, such as: + +Question: +Answers: + +Question: {q} +Answers:","سوال زیر یک سوال فرهنگی مرتبط با کشور خاصی است. لطفاً پاسخ را به فرمت جداشده با ویرگول ارائه دهید، مانند: + +سوال: <متن سوال فرهنگی> +پاسخ‌ها: <لیست پاسخ‌ها> + +سوال: {q} +پاسخ‌ها:" +pers-1,Suppose you are from Iran. {q},فرض کنید شما اهل ایران هستید. {q} +pers-2,Consider you are from Iran and answer the following question based on your cultural background with a few words: {q},فرض کنید شما اهل ایران هستید و سوال زیر را بر اساس پس‌ زمینه فرهنگی خود با چند کلمه پاسخ دهید: {q} +pers-3,"You are a person from Iran who is trying to explain your country's culture to a foreigner. Answer the following question, providing a single answer without any explanations. + +{q}","شما یک فرد اهل ایران هستید که قصد دارید فرهنگ کشورتان را به یک خارجی توضیح دهید. پاسخ سوال زیر را با یک جواب بدون هیچ توضیحی ارائه دهید. + +{q}" +pers-4,"How would a person born and raised in Iran answer the following question? + +{q}","چگونه یک فرد متولد و بزرگ شده در ایران به سوال زیر پاسخ می‌دهد؟ + +{q}" +pers-5,"Please answer the following question as if you are a person from Iran. + +{q}","لطفاً به سوال زیرطوری پاسخ دهید، انگار شما اهل ایران هستید. + +{q}" +inst-6,"Provide a single answer to the following short-answer question in default, or up to three if needed, without explanations. + +Question: {q} +Answer:","برای سوال زیر یک تک جواب ارائه دهید. جواب سوال باید کوتاه باشد. در صورت نیاز می توانید تا سه پاسخ بدهید. نیازی به ارائه ی توضیح نیست. + +سوال: {q} +پاسخ:" +pers-6,"You are a person from Iran who is trying to explain your country's culture to a foreigner. Provide a single answer to the following short-answer question in default, or up to three if needed, without explanations. + +{q}","شما یک فرد اهل ایران هستید که قصد دارید فرهنگ کشورتان را به یک خارجی توضیح دهید. برای سوال زیر یک تک جواب ارائه دهید. جواب سوال باید کوتاه باشد. در صورت نیاز می توانید تا سه پاسخ بدهید. نیازی به ارائه ی توضیح نیست. + +{q}" \ No newline at end of file diff --git a/data/prompts/Mexico_prompts.csv b/data/prompts/Mexico_prompts.csv new file mode 100644 index 0000000000000000000000000000000000000000..3701f3433cbe64779c1419c0395a7f8db93bd22d --- /dev/null +++ b/data/prompts/Mexico_prompts.csv @@ -0,0 +1,61 @@ +id,English,Translation,Edited Y/N +inst-1,"{q} Show your thoughts about this 'question', and provide one single answer as a list form at the end in a JSON format as below. Only the answer should be given with the list, without any examples. + +{'question':'{q}','answer':[]}","{q} Muestre su opinión sobre esta 'pregunta' y proporcione una única respuesta en forma de lista al final en formato JSON como se muestra a continuación. Sólo se debe dar la respuesta con la lista, sin ningún ejemplo. + +{'question':'{q}','answer':[]}",N +inst-2,"Requirements: consider you are from Mexico and answer the given question. Answers should relate to your cultural or country-specific background. The answer should be short/concrete. In general, each question will have one answer only. Question: {q}?","Requisitos: considerar que eres de México y responder la pregunta dada. Las respuestas deben estar relacionadas con sus antecedentes culturales o específicos de su país. La respuesta debe ser breve/concreta. Con carácter general, cada pregunta tendrá una única respuesta. Pregunta: {q}?",N +inst-3,"{q} + +Provide answers without any explanations. Give the answers in a python list.","{q} + +Proporciona respuestas sin explicaciones. Da las respuestas en una lista de Python.",Y +inst-4,"Read the following question and provide a single answer without any explanations. + +Question: {q} +Answer:","Lea la siguiente pregunta y proporcione una única respuesta sin explicaciones. + +Pregunta: {q} +Respuesta:",N +inst-5,"The following is a cultural question related to a specific country. Please list out the answer in comma-separated format, such as: + +Question: +Answers: + +Question: {q} +Answers:","La siguiente es una pregunta cultural relacionada con un país específico. Enumere la respuesta en formato separado por comas, como por ejemplo: + +Pregunta: +Respuestas: + +Pregunta: {q} +Respuestas:",N +pers-1,Suppose you are from Mexico. {q},Supongamos que eres de México. {q},N +pers-2,Consider you are from Mexico and answer the following question based on your cultural background with a few words: {q},Considera que eres de México y responde la siguiente pregunta según tu origen cultural con unas pocas palabras: {q},N +pers-3,"You are a person from Mexico who is trying to explain your country's culture to a foreigner. Answer the following question, providing a single answer without any explanations. + +{q}","Eres una persona de México que está tratando de explicar la cultura de su país a un extranjero. Responde la siguiente pregunta, proporcionando una única respuesta sin explicaciones. + +{q}",Y +pers-4,"How would a person born and raised in Mexico answer the following question? + +{q}","¿Cómo respondería una persona nacida y criada en México a la siguiente pregunta? + +{q}",N +pers-5,"Please answer the following question as if you are a person from Mexico. + +{q}","Por favor responda la siguiente pregunta como si fuera una persona de México. + +{q}",N +inst-6,"Provide a single answer to the following short-answer question in default, or up to three if needed, without explanations. + +Question: {q} +Answer:","Proporciona una única respuesta a la siguiente pregunta de respuesta corta por defecto, o hasta tres si es necesario, sin explicaciones. + +Pregunta: {q} +Respuesta:",N +pers-6,"You are a person from Mexico who is trying to explain your country's culture to a foreigner. Provide a single answer to the following short-answer question in default, or up to three if needed, without explanations. + +{q}","Eres una persona de México que intenta explicar la cultura de tu país a un extranjero. Proporciona una única respuesta a la siguiente pregunta de respuesta corta por defecto, o hasta tres si es necesario, sin explicaciones. + +{q}",N \ No newline at end of file diff --git a/data/prompts/North_Korea_prompts.csv b/data/prompts/North_Korea_prompts.csv new file mode 100644 index 0000000000000000000000000000000000000000..552169f8fcf37339b430cdcd472b9c5c682d1358 --- /dev/null +++ b/data/prompts/North_Korea_prompts.csv @@ -0,0 +1,25 @@ +id,English,Translation +inst-6,"Provide a single answer to the following short-answer question in default, or up to three if needed, without explanations. + +Question: {q} +Answer:","다음 주관식 질문에 대하여 기본적으로 하나의 답변만을 설명없이 제공하되, 필요시 세 개까지 제공하시오. + +질문: {q} +답변:" +pers-6,"You are a person from North Korea who is trying to explain your country's culture to a foreigner. Provide a single answer to the following short-answer question in default, or up to three if needed, without explanations. + +{q}","당신은 외국인에게 당신의 나라의 문화를 설명하려는 북한 사람입니다. 다음 주관식 질문에 대하여 기본적으로 하나의 답변만을 설명없이 제공하되, 필요시 세 개까지 제공하시오. + +{q}" +inst-4,"Read the following question and provide a single answer without any explanations. + +Question: {q} +Answer:","다음 질문을 읽고 설명 없이 단 하나의 답변만을 제공하시오. + +질문: {q} +답변:" +pers-3,"You are a person from North Korea who is trying to explain your country's culture to a foreigner. Answer the following question, providing a single answer without any explanations. + +{q}","당신은 외국인에게 당신의 나라의 문화를 설명하려는 북한 사람입니다. 설명 없이 단일 답변을 제공하여 다음 질문에 답하십시오. + +{q}" \ No newline at end of file diff --git a/data/prompts/Northern_Nigeria_prompts.csv b/data/prompts/Northern_Nigeria_prompts.csv new file mode 100644 index 0000000000000000000000000000000000000000..dde46aa4d4ae53a2ab478c62f7d7ca3973dca6b3 --- /dev/null +++ b/data/prompts/Northern_Nigeria_prompts.csv @@ -0,0 +1,25 @@ +id,English,Translation,Edited +inst-6,"Provide a single answer to the following short-answer question in default, or up to three if needed, without explanations. + +Question: {q} +Answer:","Ba da amsa guda daya ga tambayar gajerun amsa mai zuwa a tsoho, ko kuma har zuwa uku idan akwai bukata, ba tare da bayanai ba. + +Tambaya: {q} +Amsa:","Ba da amsa guda daya ga tambayar nan mai gajeriyar amsa, ko kuma har zuwa uku idan akwai bukata, ba tare da bayanai ba." +pers-6,"You are a person from Northern Nigeria who is trying to explain your country's culture to a foreigner. Provide a single answer to the following short-answer question in default, or up to three if needed, without explanations. + +{q}","Kai mutum ne daga Arewacin Najeriya da ke kokarin bayyana al'adun kasarka ga bako. Ba da amsa guda daya ga tambayar gajerun amsa mai zuwa a tsoho, ko kuma har zuwa uku idan akwai bukata, ba tare da bayanai ba. + +{q}","Kai mutum ne daga Arewacin Najeriya da ke kokarin bayyana al'adun kasarka ga bako. Ba da amsa guda daya ga tambayar nan mai gajeriyar amsa, ko kuma har zuwa uku idan akwai bukata, ba tare da bayanai ba." +inst-4,"Read the following question and provide a single answer without any explanations. + +Question: {q} +Answer:","Karanta tambayar da ke ƙasa kuma ka bayar da amsa guda ba tare da wani bayani ba. + +Tambaya: {q} +Amsa:",N +pers-3,"You are a person from Northern Nigeria who is trying to explain your country's culture to a foreigner. Answer the following question, providing a single answer without any explanations. + +{q}","Kai mutum ne daga Arewacin Najeriya da ke ƙoƙarin bayyana al'adun ƙasarka ga baƙo. Amsa tambayar da ke ƙasa, ka bayar da amsa guda ba tare da wani bayani ba. + +{q}",Y \ No newline at end of file diff --git a/data/prompts/South_Korea_prompts.csv b/data/prompts/South_Korea_prompts.csv new file mode 100644 index 0000000000000000000000000000000000000000..35bafd19275020aacfc4396fa2337419f11fba7d --- /dev/null +++ b/data/prompts/South_Korea_prompts.csv @@ -0,0 +1,61 @@ +id,English,Translation +inst-1,"{q} Show your thoughts about this 'question', and provide one single answer as a list form at the end in a JSON format as below. Only the answer should be given with the list, without any examples. + +{'question':'{q}','answer':[]}","{q} 이 '질문'에 대한 본인의 생각을 제시하고, 아래와 같이 마지막에 오직 하나의 답변을 JSON 포맷에 맞추어 리스트 형태로 제공해주세요. 예시 없이 리스트 형태로 되어 있는 답변만 제시하여야 합니다. + +{'question':'{q}','answer':[]}" +inst-2,"Requirements: consider you are from South Korea and answer the given question. Answers should relate to your cultural or country-specific background. The answer should be short/concrete. In general, each question will have one answer only. Question: {q}?",요구 사항: 본인이 대한민국 출신이라고 생각하고 주어진 질문에 답하시오. 답변은 본인의 문화적 또는 국가적 배경과 관련되어야 합니다. 대답은 짧고 구체적이어야 합니다. 일반적으로 각 질문에는 하나의 답변만 제시합니다. 질문: {q}? +inst-3,"{q} + +Provide answers without any explanations. Give the answers in a python list.","{q} + +아무런 설명 없이 답변만 제공하시오. 파이썬 리스트 형태로 답변을 제공하시오." +inst-4,"Read the following question and provide a single answer without any explanations. + +Question: {q} +Answer:","다음 질문을 읽고 설명 없이 단 하나의 답변만을 제공하시오. + +질문: {q} +답변:" +inst-5,"The following is a cultural question related to a specific country. Please list out the answer in comma-separated format, such as: + +Question: +Answers: + +Question: {q} +Answers:","다음은 특정 국가와 관련된 문화적 질문입니다. 아래와 같이 쉼표로 구분하여 답변을 나열하시오. + +질문: <문화 질문 텍스트> +답변: <답변 목록> + +질문: {q} +답변:" +pers-1,Suppose you are from South Korea. {q},본인이 대한민국 출신이라고 가정하시오. {q} +pers-2,Consider you are from South Korea and answer the following question based on your cultural background with a few words: {q},본인이 대한민국 출신이라고 가정하고 본인의 문화적 배경을 바탕으로 적은 수의 단어로 다음 질문에 답하십시오: {q} +pers-3,"You are a person from South Korea who is trying to explain your country's culture to a foreigner. Answer the following question, providing a single answer without any explanations. + +{q}","당신은 외국인에게 당신의 나라의 문화를 설명하려는 대한민국 사람입니다. 설명 없이 단일 답변을 제공하여 다음 질문에 답하십시오. + +{q}" +pers-4,"How would a person born and raised in South Korea answer the following question? + +{q}","대한민국에서 태어나고 자란 사람은 다음 질문에 어떻게 답변하겠습니까? + +{q}" +pers-5,"Please answer the following question as if you are a person from South Korea. + +{q}","다음 질문에 본인이 대한민국 사람이라고 생각하며 답변해 주십시오. + +{q}" +inst-6,"Provide a single answer to the following short-answer question in default, or up to three if needed, without explanations. + +Question: {q} +Answer:","다음 주관식 질문에 대하여 기본적으로 하나의 답변만을 설명없이 제공하되, 필요시 세 개까지 제공하시오. + +질문: {q} +답변:" +pers-6,"You are a person from Korea who is trying to explain your country's culture to a foreigner. Provide a single answer to the following short-answer question in default, or up to three if needed, without explanations. + +{q}","당신은 외국인에게 당신의 나라의 문화를 설명하려는 대한민국 사람입니다. 다음 주관식 질문에 대하여 기본적으로 하나의 답변만을 설명없이 제공하되, 필요시 세 개까지 제공하시오. + +{q}" \ No newline at end of file diff --git a/data/prompts/Spain_prompts.csv b/data/prompts/Spain_prompts.csv new file mode 100644 index 0000000000000000000000000000000000000000..9e598370bc181cd73573a55a126865cbd9fdbd7e --- /dev/null +++ b/data/prompts/Spain_prompts.csv @@ -0,0 +1,61 @@ +id,English,Translation +inst-1,"{q} Show your thoughts about this 'question', and provide one single answer as a list form at the end in a JSON format as below. Only the answer should be given with the list, without any examples. + +{'question':'{q}','answer':[]}","{q} Muestre sus pensamientos sobre esta 'pregunta' y proporcione solo respuestas breves como una lista al final en formato JSON como se muestra a continuación. Sólo se deben dar las respuestas con la lista, sin ningún ejemplo. + +{'question':'{q}','answer':[]}" +inst-2,"Requirements: consider you are from Spain and answer the given question. Answers should relate to your cultural or country-specific background. The answer should be short/concrete. In general, each question will have one answer only. Question: {q}?","Requisitos: considerar que eres de España y responder a la pregunta planteada. Las respuestas deben estar relacionadas con sus antecedentes culturales o específicos de su país. La respuesta debe ser breve/concreta. Con carácter general, cada pregunta tendrá una única respuesta. Pregunta: {q}?" +inst-3,"{q} + +Provide answers without any explanations. Give the answers in a python list.","{q} + +Da respuestas sin explicaciones. Incluye las respuestas en una lista de Python." +inst-4,"Read the following question and provide a single answer without any explanations. + +Question: {q} +Answer:","Lee la siguiente pregunta y contesta con una sola respuesta sin explicaciones. + +Pregunta: {q} +Respuesta:" +inst-5,"The following is a cultural question related to a specific country. Please list out the answer in comma-separated format, such as: + +Question: +Answers: + +Question: {q} +Answers:","La siguiente es una pregunta cultural relacionada con un país específico. Enumere la respuesta en formato separado por comas, como por ejemplo: + +Pregunta: +Respuestas: + +Pregunta: {q} +Respuestas:" +pers-1,Suppose you are from Spain. {q},Supongamos que eres de España. {q} +pers-2,Consider you are from Spain and answer the following question based on your cultural background with a few words: {q},Considera que eres de España y responde con unas pocas palabras la siguiente pregunta según tu origen cultural: {q} +pers-3,"You are a person from Spain who is trying to explain your country's culture to a foreigner. Answer the following question, providing a single answer without any explanations. + +{q}","Eres una persona de España intentando explicar la cultura de tu país a un extranjero. Responda la siguiente pregunta, proporcionando una única respuesta sin explicaciones. + +{q}" +pers-4,"How would a person born and raised in Spain answer the following question? + +{q}","¿Cómo respondería una persona nacida y criada en España a la siguiente pregunta? + +{q}" +pers-5,"Please answer the following question as if you are a person from Spain. + +{q}","Por favor contesta la siguiente pregunta como si fueras una persona de España. + +{q}" +inst-6,"Provide a single answer to the following short-answer question in default, or up to three if needed, without explanations. + +Question: {q} +Answer:","Proporcione una única respuesta a la siguiente pregunta de respuesta corta en el formato predeterminado, o hasta tres si fuera necesario, sin explicaciones. + +Pregunta: {q} +Respuesta:" +pers-6,"You are a person from Spain who is trying to explain your country's culture to a foreigner. Provide a single answer to the following short-answer question in default, or up to three if needed, without explanations. + +{q}","Usted es una persona de España que intenta explicar la cultura de su país a un extranjero. Proporcione una única respuesta a la siguiente pregunta de respuesta corta en el formato predeterminado, o hasta tres si fuera necesario, sin explicaciones. + +{q}" \ No newline at end of file diff --git a/data/prompts/UK_prompts.csv b/data/prompts/UK_prompts.csv new file mode 100644 index 0000000000000000000000000000000000000000..390730525794c31dd29b1be3ea6120aad703df14 --- /dev/null +++ b/data/prompts/UK_prompts.csv @@ -0,0 +1,61 @@ +id,English,Translation +inst-1,"{q} Show your thoughts about this 'question', and provide one single answer as a list form at the end in a JSON format as below. Only the answer should be given with the list, without any examples. + +{'question':'{q}','answer':[]}","{q} Share your thoughts on this 'question', and provide one single answer, in the form of a list, at the end in a JSON format as shown below. The list should contain answers without examples. + +{'question':'{q}','answer':[]}" +inst-2,"Requirements: consider you are from UK and answer the given question. Answers should relate to your cultural or country-specific background. The answer should be short/concrete. In general, each question will have one answer only. Question: {q}?","Requirements: imagine you are from UK and answer the given question. Answers should relate to your cultural or country-specific background. The answer should be short/concrete. In general, each question will have one answer only. Question: {q}?" +inst-3,"{q} + +Provide answers without any explanations. Give the answers in a python list.","{q} + +Provide answers without any explanations. Give the answers in a python list." +inst-4,"Read the following question and provide a single answer without any explanations. + +Question: {q} +Answer:","Read the following question and provide a single answer without explanations. + +Question: {q} +Answer:" +inst-5,"The following is a cultural question related to a specific country. Please list out the answer in comma-separated format, such as: + +Question: +Answers: + +Question: {q} +Answers:","The following is a cultural question related to a specific country. Please list out the answer in comma-separated format, such as: + +Question: +Answers: + +Question: {q} +Answers:" +pers-1,Suppose you are from UK. {q},Suppose you are from UK. {q} +pers-2,Consider you are from UK and answer the following question based on your cultural background with a few words: {q},Imagine you are from UK and answer the following question based on your cultural background in a few words: {q} +pers-3,"You are a person from UK who is trying to explain your country's culture to a foreigner. Answer the following question, providing a single answer without any explanations. + +{q}","You are a person from UK who is trying to explain your country's culture to a foreigner. Answer the following question, providing a single answer without explanations. + +{q}" +pers-4,"How would a person born and raised in UK answer the following question? + +{q}","How would a person born and raised in UK answer the following question? + +{q}" +pers-5,"Please answer the following question as if you are a person from UK. + +{q}","Please answer the following question as if you were a person from UK. + +{q}" +inst-6,"Provide a single answer to the following short-answer question in default, or up to three if needed, without explanations. + +Question: {q} +Answer:","Provide a single answer to the following short-answer question in default, or up to three if needed, without explanations. + +Question: {q} +Answer:" +pers-6,"You are a person from the UK who is trying to explain your country's culture to a foreigner. Provide a single answer to the following short-answer question in default, or up to three if needed, without explanations. + +{q}","You are a person from the UK who is trying to explain your country's culture to a foreigner. Provide a single answer to the following short-answer question in default, or up to three if needed, without explanations. + +{q}" \ No newline at end of file diff --git a/data/prompts/US_prompts.csv b/data/prompts/US_prompts.csv new file mode 100644 index 0000000000000000000000000000000000000000..5886aa6d1893b55502d27a45d89f670ed3c7bac1 --- /dev/null +++ b/data/prompts/US_prompts.csv @@ -0,0 +1,61 @@ +id,English,Translation +inst-1,"{q} Show your thoughts about this 'question', and provide one single answer as a list form at the end in a JSON format as below. Only the answer should be given with the list, without any examples. + +{'question':'{q}','answer':[]}","{q} Show your thoughts about this 'question', and provide one single answer as a list form at the end in a JSON format as below. Only the answer should be given with the list, without any examples. + +{'question':'{q}','answer':[]}" +inst-2,"Requirements: consider you are from US and answer the given question. Answers should relate to your cultural or country-specific background. The answer should be short/concrete. In general, each question will have one answer only. Question: {q}?","Requirements: consider you are from US and answer the given question. Answers should relate to your cultural or country-specific background. The answer should be short/concrete. In general, each question will have one answer only. Question: {q}?" +inst-3,"{q} + +Provide answers without any explanations. Give the answers in a python list.","{q} + +Provide answers without any explanations. Give the answers in a python list." +inst-4,"Read the following question and provide a single answer without any explanations. + +Question: {q} +Answer:","Read the following question and provide a single answer without any explanations. + +Question: {q} +Answer:" +inst-5,"The following is a cultural question related to a specific country. Please list out the answer in comma-separated format, such as: + +Question: +Answers: + +Question: {q} +Answers:","The following is a cultural question related to a specific country. Please list out the answer in comma-separated format, such as: + +Question: +Answers: + +Question: {q} +Answers:" +pers-1,Suppose you are from US. {q},Suppose you are from US. {q} +pers-2,Consider you are from US and answer the following question based on your cultural background with a few words: {q},Consider you are from US and answer the following question based on your cultural background with a few words: {q} +pers-3,"You are a person from US who is trying to explain your country's culture to a foreigner. Answer the following question, providing a single answer without any explanations. + +{q}","You are a person from US who is trying to explain your country's culture to a foreigner. Answer the following question, providing a single answer without any explanations. + +{q}" +pers-4,"How would a person born and raised in US answer the following question? + +{q}","How would a person born and raised in US answer the following question? + +{q}" +pers-5,"Please answer the following question as if you are a person from US. + +{q}","Please answer the following question as if you are a person from US. + +{q}" +inst-6,"Provide a single answer to the following short-answer question in default, or up to three if needed, without explanations. + +Question: {q} +Answer:","Provide a single answer to the following short-answer question in default, or up to three if needed, without explanations. + +Question: {q} +Answer:" +pers-6,"You are a person from the US who is trying to explain your country's culture to a foreigner. Provide a single answer to the following short-answer question in default, or up to three if needed, without explanations. + +{q}","You are a person from the US who is trying to explain your country's culture to a foreigner. Provide a single answer to the following short-answer question in default, or up to three if needed, without explanations. + +{q}" \ No newline at end of file diff --git a/data/prompts/West_Java_prompts.csv b/data/prompts/West_Java_prompts.csv new file mode 100644 index 0000000000000000000000000000000000000000..8510f58a687eb099719fbfce9962db7334727f04 --- /dev/null +++ b/data/prompts/West_Java_prompts.csv @@ -0,0 +1,25 @@ +id,English,Translation +inst-6,"Provide a single answer to the following short-answer question in default, or up to three if needed, without explanations. + +Question: {q} +Answer:","Pasih hiji jawaban kana pananya pondok di handap ieu sacara umum, atanapi nepi ka tilu lamun perlu, tanpa penjelasan. + +Pananya: {q} +Jawaban:" +pers-6,"You are a person from West Java who is trying to explain your country's culture to a foreigner. Provide a single answer to the following short-answer question in default, or up to three if needed, without explanations. + +{q}","Anjeun nyaéta jalma ti Jawa Barat anu keur nyobaan ngajelaskeun budaya nagara anjeun ka urang asing. Pasih hiji jawaban kana pananya pondok di handap ieu sacara umum, atanapi nepi ka tilu lamun perlu, tanpa penjelasan. + +{q}" +inst-4,"Read the following question and provide a single answer without any explanations. + +Question: {q} +Answer:","Bacakeun pananya di handap ieu jeung pasih hiji jawaban tanpa penjelasan nanaon. + +Pananya: {q} +Jawaban:" +pers-3,"You are a person from West Java who is trying to explain your country's culture to a foreigner. Answer the following question, providing a single answer without any explanations. + +{q}","Anjeun nyaéta jalma ti Jawa Barat anu keur nyobaan ngajelaskeun budaya nagara anjeun ka urang asing. Jawab pananya di handap ieu, pasih hiji jawaban tanpa penjelasan nanaon. + +{q}" \ No newline at end of file diff --git a/data/questions/Algeria_questions.csv b/data/questions/Algeria_questions.csv new file mode 100644 index 0000000000000000000000000000000000000000..7a0e9a19b783a8f99c4d7276aad6ea5fab43b5d4 --- /dev/null +++ b/data/questions/Algeria_questions.csv @@ -0,0 +1,501 @@ +ID,Topic,Source,Question,Translation +Al-en-01,Food,English (US),What is a common snack for preschool kids in your country?,ماذا يأكل الأطفال كوجبة خفيفة قبل المدرسة في الجزائر؟ +Al-en-02,Food,English (US),What is a popular food to go with beer in your country?,ما هو الطعام الشعبي الذي يتناول مع البيرة في الجزائر؟ +Al-en-04,Food,English (US),What is the most popular fruit in your country?,ما هي الفاكهة الأكثر شعبية في الجزائر؟ +Al-en-06,Food,English (US),What is a common school cafeteria food in your country?,ما هو طعام كافتيريا المدرسة الشائع في الجزائر؟ +Al-en-08,Food,English (US),What are the most commonly eaten snacks at shopping malls in your country?,ما هي الوجبات الخفيفة التي يتناولها الناس في مراكز التسوق في الجزائر؟ +Al-en-09,Food,English (US),What is a popular snack at an amusement park in your country?,ما هي الوجبة الخفيفة الشعبية في مدينة الملاهي في الجزائر؟ +Al-en-16,Education,English (US),"At what age do kids start preschool in your country? (Provide Arabic numerals (e.g., 12) only.)",في أي سن يبدأ الأطفال الذهاب للروضة في الجزائر؟ (استعمل الأرقام العربية فقط (مثلاً، 12.) +Al-en-17,Education,English (US),What is a popular afterschool sport for elementary schools in your country?,ما هو النشاط الرياضي المفضل بعد المدرسة لتلاميذ الابتدائي في الجزائر؟ +Al-en-18,Education,English (US),For which subject do elementary students get private education in your country?,ما هي المادة التي يتلقى فيها أكثر تلاميذ الابتدائي دروسا خصوصية؟ +Al-en-19,Education,English (US),What is a popular second language for high school students in your country?,ما هي اللغة الثانية الشائعة لطلاب الثانوية في الجزائر؟ +Al-en-21,Education,English (US),Which subject is the most important for gifted education in your country?,أي مادة هي الأهم لتعليم الموهوبين في الجزائر؟ +Al-en-32,Holidays/Celebration/Leisure,English (US),What is the main dish for Thanksgiving in your country?,ما هو الطبق الرئيسي لعيد الشكر في الجزائر؟ +Al-en-33,Holidays/Celebration/Leisure,English (US),What do people do to celebrate Halloween in your country?,ماذا يفعل الناس للاحتفال بعيد الهالوين في الجزائر؟ +Al-en-34,Holidays/Celebration/Leisure,English (US),What do people do to celebrate New Year's Day in your country?,ماذا يفعل الناس للاحتفال برأس السنة الجديدة في الجزائر؟ +Al-en-35,Holidays/Celebration/Leisure,English (US),What do people do to celebrate Christmas in your country?,ماذا يفعل الناس للاحتفال بعيد الميلاد في الجزائر؟ +Al-en-36,Holidays/Celebration/Leisure,English (US),What food is associated with Halloween in your country?,أي نوع من الطعام يرتبط بعيد الهالوين في الجزائر؟ +Al-en-37,Holidays/Celebration/Leisure,English (US),What food is associated with Christmas in your country?,ما هي الأطعمة المرتبطة بعيد الميلاد في الجزائر؟ +Al-en-38,Holidays/Celebration/Leisure,English (US),What food is associated with Valentine's day in your country?,ما هو الطعام المرتبط بعيد الحب في الجزائر؟ +Al-en-39,Holidays/Celebration/Leisure,English (US),What do people eat on their birthday in your country?,ماذا يأكل الناس في أعياد ميلادهم في الجزائر؟ +Al-en-40,Holidays/Celebration/Leisure,English (US),What is a popular outdoor place for families to have fun with little kids in your country?,ما هو مكان أشهر مكان لخروج العائلات مع الأطفال الصغار في الجزائر؟ +Al-en-43,Holidays/Celebration/Leisure,English (US),What is a popular indoor activity for families in your country?,ما هي الأنشطة العائلية المنزلية في الجزائر؟ +An-ar-02,Education,Arabic (Algeria),Where do university students have lunch in your country?,أين يتناول طلبة الجامعة غداءهم في الجزائر؟ +An-ar-03,Education,Arabic (Algeria),Which month is the final exam term usually scheduled at high schools in your country? (Provide Arabic numerals (1~12) only.),في أي شهر يتم عادة جدولة الامتحانات النهائية في المدارس الثانوية في الجزائر؟ (أجب برقم من 1 إلى 12) +An-ar-08,Education,Arabic (Algeria),"How many hours a day do students in your country usually spend at high school? (Provide Arabic numerals in integers (0~24), without any decimal points.)",كم من ساعة في اليوم يقضيها طلاب المدرسة الثانوية في الجزائر؟ (استعمل الأرقام العربية الصحيحة (0~24)، بدون أي نقاط عشرية.) +An-ar-09,Education,Arabic (Algeria),"How many languages do students study at high school in your country? (Provide Arabic numerals (e.g., 5) only.)","كم من لغة يدرس الطلاب في المدارس الثانوية في الجزائر؟ (أجب برقم, مثلا 5.)" +An-ar-34,Sport,Arabic (Algeria),What is the most popular sport played in a team at school in your country?,ما هي أشهر رياضة جماعية يتم لعبها في المدارس في الجزائر؟ +An-ar-35,Sport,Arabic (Algeria),Who is the most popular sport commentator in your country?,من هو أشهر معلق رياضي في الجزائر؟ +An-ar-36,Sport,Arabic (Algeria),What is the most popular sport team in your country?,ما هو أشهر فريق رياضي في الجزائر؟ +An-ar-43,Sport,Arabic (Algeria),What are the common places or venues where individuals in your country usually gather to watch sports broadcasts?,ما هي الأماكن أو الفضاءات الشائعة التي يتجمع فيها الأفراد في الجزائر لمشاهدة بث رياضي؟ +Ca-sp-05,Food,Spanish (Spain),"How many meals per day do people from your country usually have? (Provide Arabic numerals (e.g., 5) only.)",كم وجبة في اليوم يتناولها الناس في الجزائر عادة؟(استعمل الأرقام العربية مثل 5) +Ca-sp-06,Food,Spanish (Spain),Which is the most important meal of the day to people from your country?,ما هي أهم وجبة في اليوم بالنسبة للشعب الجزائري؟ +Ca-sp-08,Food,Spanish (Spain),What is the most common ingredient used in your country's diet?,ما هو أكثر مكون شائع الاستخدام في النظام الغذائي الجزائري؟ +Ca-sp-09,Food,Spanish (Spain),What do people from your country usually eat for dessert?,ماذا يأكل الناس في الجزائر عادة للتحلية بعد الطعام؟ +Ca-sp-11,Food,Spanish (Spain),Which day of the week do people usually organize a family meal in your country?,أي يوم من أيام الأسبوع ينظم الناس عادة وجبة عائلية في الجزائر؟ +Ca-sp-14,Food,Spanish (Spain),Which is the most popular hot drink in your country?,ما هو المشروب الساخن الأكثر شعبية في الجزائر؟ +Ca-sp-19,Holidays/Celebration/Leisure,Spanish (Spain),What do young people from your country usually drink at the night club?,ماذا يشرب الشباب في الجزائر عادة في النادي الليلي؟ +Ca-sp-21,Holidays/Celebration/Leisure,Spanish (Spain),At which month do people usually take holidays in your country? (Provide Arabic numerals (1~12) only.),في أي شهر يأخذ الناس عادة عطلاتهم في الجزائر؟(استعمل الأرقام العربية مثل 1~12). +Ca-sp-29,Holidays/Celebration/Leisure,Spanish (Spain),What tradition is there in your country for New Year's Eve?,ما هي التقاليد المتبعة في الجزائر ليلة رأس السنة؟ +Ca-sp-38,Family,Spanish (Spain),Which is the typical type of house for a family in your country?,ما هو النوع النموذجي لمنازل العائلات في الجزائر؟ +Ca-sp-41,Family,Spanish (Spain),Where do the dependent elderly usually live in your country?,أين يعيش كبار السن العاجزين عادة في الجزائر؟ +Ca-sp-42,Family,Spanish (Spain),"How long (in weeks) is your country's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)",كم تستغرق مدة إجازة الأمومة في الجزائر بالأسابيع؟ (استعمل الأرقام العربية مثل 20.). +Ca-sp-43,Family,Spanish (Spain),"How long (in weeks) is your country's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)",كم تدوم (بالأسابيع) إجازة الأبوة في الجزائر للآباء؟ (استعمل الأرقام العربية مثل 20.) +Ca-sp-45,Family,Spanish (Spain),What type of destination is commonly chosen for a family vacation in your country?,أي وجهة يتم اختيارها عادة لقضاء عطلة عائلية في الجزائر؟ +Gu-ch-05,Sport,Chinese (China),What sports do seniors like the most in your country?,ما هي الرياضات التي يفضلها كبار السن في الجزائر؟ +Gu-ch-06,Sport,Chinese (China),What sports do men like to play the most in your country?,ما هي الرياضات التي يفضل الرجال ممارستها في الجزائر؟ +Gu-ch-07,Sport,Chinese (China),Who is the most famous basketball player in your country?,من هو أشهر لاعب كرة سلة في الجزائر؟ +Gu-ch-08,Sport,Chinese (China),What is the most popular sports among children in your country?,ما هو أشهر رياضة لدى الأطفال في الجزائر؟ +Gu-ch-09,Sport,Chinese (China),What sports do women like to play the most in your country?,ما هي الرياضات التي تفضل النساء ممارستها في الجزائر؟ +Gu-ch-11,Sport,Chinese (China),What sports event has your country won the most gold medals at the Olympics?,في أي رياضة فازت الجزائر بأكبر عدد من الميداليات الذهبية في الأولمبياد؟ +Gu-ch-15,Sport,Chinese (China),What sports do male students in university like to play the most in your country?,ما هي الرياضات التي يفضل الطلاب الذكور في الجامعة ممارستها في الجزائر؟ +Gu-ch-16,Family,Chinese (China),"How many people are there in a family on average in your country? (Provide Arabic numerals (e.g., 12) only.)",كم عدد الأشخاص في الأسرة في المتوسط في الجزائر؟ (استعمل الأرقام العربية مثل 12.) +Gu-ch-18,Family,Chinese (China),"How many children do couples usually have in your country? (Provide Arabic numerals (e.g., 12) only.)",كم عدد الأطفال الذي ينجبه الأزواج عادة في الجزائر؟ (استعمل الأرقام العربية مثل 12.) +Gu-ch-31,Education,Chinese (China),"What is the duration of elementary school in years in your country? (Provide Arabic numerals (e.g., 12) only.)","ما هي مدة الدراسة الابتدائية بالسنوات في الجزائر؟ (أجب برقم, مثلا 12.)" +Gu-ch-32,Education,Chinese (China),"What is the duration of compulsory education in years in your country? (Provide Arabic numerals (e.g., 12) only.)","ما هي مدة التعليم الإلزامي بالسنوات في الجزائر؟(أجب برقم, مثلا 12)" +Gu-ch-33,Education,Chinese (China),"From which age do students start learning their second language in your country? (Provide Arabic numerals (e.g., 12) only.)","من أي سن يبدأ الطلاب تعلم اللغة الثانية في الجزائر؟(أجب برقم, مثلا 12.)" +Gu-ch-38,Education,Chinese (China),"What is the duration of undergraduate education in your country? (Provide Arabic numerals (e.g., 12) only.)","ما هي مدة التعليم الجامعي في الجزائر؟ (أجب برقم, مثلا 12)" +Gu-ch-40,Education,Chinese (China),"What time do younger elementary school students finish school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)",في أي وقت ينتهي دوام التلاميذ الصغار في المدارس الابتدائية في الجزائر؟ (قدم الوقت بتنسيق الساعة:الدقيقة مثلاً، 18:00، 09:00). +Gu-ch-41,Education,Chinese (China),"How many musical instruments do elementary school students in your country typically play? (Provide Arabic numerals (e.g., 12) only.)","كم عدد الآلات الموسيقية التي يعزف عليها تلاميذ المدارس الابتدائية في الجزائر عادة؟ (أجب برقم, مثلا 12.)" +Ji-ko-02,Work life,Korean (South Korea),What day of the week do people in your country prefer to have company dinners?,أي يوم من أيام الأسبوع يفضل الناس في الجزائر تنظيم عشاءات في الشركات؟ +Ji-ko-03,Work life,Korean (South Korea),Which region/city has the highest number of financial companies in your country?,أي منطقة/مدينة تحتوي على أكبر عدد من الشركات المالية في الجزائر؟ +Ji-ko-07,Work life,Korean (South Korea),What is the most famous private company in your country?,ما هي أشهر شركة خاصة في الجزائر؟ +Ji-ko-08,Work life,Korean (South Korea),"What is the maximum number of hours one can work per week in your country? (Provide Arabic numerals (e.g., 12) only.)",ما هو العدد الأقصى لساعات العمل التي يمكن للمرء أن يعملها في الأسبوع في الجزائر؟(استعمل الأرقام العربية مثل 12). +Ji-ko-09,Work life,Korean (South Korea),What do people typically eat during company get-together in your country?,ماذا يأكل الناس عادة في تجمعات الشركات في الجزائر؟ +Ji-ko-14,Work life,Korean (South Korea),What is the representative export item of your country?,ما هوأهم منتج تصدره الجزائر؟ +Ji-ko-15,Work life,Korean (South Korea),"How long (in hours) is the typical lunch break in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)",كم تدوم (بالساعات) فترة الاستراحة للغداء في الجزائر؟ (قدم الأرقام العربية بمنزلة عشرية واحدة (مثلاً، 2، 3.5) فقط.) +Ji-ko-16,Family,Korean (South Korea),Where do mothers stay for a certain period after childbirth for recovery in your country?,أين تقيم الأمهات لفترة معينة بعد الولادة للتعافي في الجزائر؟ +Ji-ko-19,Family,Korean (South Korea),What is your country's most commonly given flower on Parents' Day?,ما هي الزهرة الأكثر إهداءً في الجزائر في يوم الوالدين؟ +Ji-ko-22,Family,Korean (South Korea),What do people especially spend their first salary on in your country's society?,على ما ينفق الناس أول راتب لهم في المجتمع الجزائري؟ +Ji-ko-24,Family,Korean (South Korea),What is the most preferred recreational facility among children in your country?,ما هي المرافق الترفيهية المفضلة لدى الأطفال في الجزائر؟ +Ji-ko-25,Family,Korean (South Korea),What are the family-related holidays in your country?,ما هي العطل العائلية في الجزائر؟ +Ji-ko-26,Family,Korean (South Korea),What are the key milestones associated with children's independence from their parents in your country's society?,ما هي المراحل الرئيسية المرتبطة باستقلال الأطفال عن والديهم في المجتمع الجزائري؟ +Ji-ko-27,Family,Korean (South Korea),What is the common gift you give when visiting elderly parents in your country?,ما هي الهدية التي تقدمها عند زيارة الوالدين المسنين في الجزائر؟ +Ji-ko-28,Family,Korean (South Korea),When is the first day that people celebrate after a child is born in your country?,متى يكون أول يوم يحتفل فيه الناس بولادة طفل في الجزائر؟ +Ji-ko-29,Family,Korean (South Korea),Which age's birthday is celebrated the most grandly in your country's society?,أي عيد ميلاد يحتفل به بأكبر قدر من الفخامة في المجتمع الجزائري؟ +Ji-ko-31,Education,Korean (South Korea),Where do middle and high school students in your country usually study for exams?,أين يدرس طلاب المتوسط والثانوي في الجزائر عادةً للامتحانات؟ +Ji-ko-33,Education,Korean (South Korea),Where do high school students in your country usually go after dinner?,أين يذهب طلاب الثانوية في الجزائر عادة بعد العشاء؟ +Ji-ko-34,Education,Korean (South Korea),How do elementary school students in your country go to school?,كيف يذهب تلاميذ المدارس الابتدائية في الجزائر إلى المدرسة؟ +Ji-ko-35,Education,Korean (South Korea),What is the most common form of private education in your country?,ما هي أكثر أشكال التعليم الخاص شيوعًا في الجزائر؟ +Ji-ko-36,Education,Korean (South Korea),Which subject’s academy/private educational institute do middle or high students most frequently attend in your country?,أي أكاديمية أو معهد تعليمي خاص بمادة معينة يرتادها طلاب المتوسط أو الثانوي في الجزائر بكثرة؟ +Ji-ko-37,Education,Korean (South Korea),What type of clothing do middle and high school students wear to school in your country?,أي نوع من الملابس يرتديها طلاب المتوسط والثانوي إلى المدرسة في الجزائر؟ +Ji-ko-38,Education,Korean (South Korea),Which major is considered the most difficult to gain admission to in your country?,أي تخصص جامعي يعتبر الأصعب نسبة لمعدل القبول في الجزائر؟ +Ji-ko-39,Education,Korean (South Korea),What is the most commonly learned musical instrument by elementary school students in your country?,ما هي الآلة الموسيقية التي يقبل أكثر تلاميذ المدارس على تعلمها؟ +Ji-ko-40,Education,Korean (South Korea),What do high school students typically do during break time in schools in your country?,ماذا يفعل طلاب الثانوية عادة أثناء فترة الاستراحة في المدارس في الجزائر؟ +Ji-ko-41,Education,Korean (South Korea),What kind of shoes do students wear in schools in your country?,أي نوع من الأحذية يرتديها الطلاب في المدارس في الجزائر؟ +Ji-ko-42,Education,Korean (South Korea),What are the required subjects in your country's university entrance exam?,ما هي مواد امتحان دخول الجامعة في الجزائر؟ +Ji-ko-44,Education,Korean (South Korea),Which region (within a city) in your country has the highest academic fervor?,أي منطقة (داخل مدينة) في الجزائر تتمتع بأعلى حماس أكاديمي؟ +Ji-ko-45,Education,Korean (South Korea),What do people look forward to the most at university festivals in your country?,ما هو الشيء الذي يتطلع إليه الناس أكثر شيء في مهرجانات الجامعات في الجزائر؟ +Jo-sp-01,Sport,Spanish (Spain),What is the second most popular sport in your country?,ما هو ثاني رياضة الأكثر شعبية في الجزائر؟ +Jo-sp-02,Sport,Spanish (Spain),What is the most popular sport played without a ball in your country?,ما هي أشهر رياضة تُلعب بدون كرة في الجزائر؟ +Jo-sp-09,Sport,Spanish (Spain),What sports are most associated with the upper class in your country?,ما هي الرياضات الأكثر ارتباطًا بالطبقة الغنية في الجزائر؟ +Jo-sp-13,Sport,Spanish (Spain),What is the most popular water sport in your country?,ما هي الرياضة المائية الأكثر شعبية في الجزائر؟ +Jo-sp-14,Sport,Spanish (Spain),What is the most popular mental sport in your country?,ما هي أشهر رياضة ذهنية في الجزائر؟ +Jo-sp-18,Work life,Spanish (Spain),"How many holiday days per year does a standard worker gets in your country? (Provide Arabic numerals (e.g., 12) only.)",كم يوم عطلة في السنة يحصل عليها العامل العادي في الجزائر؟(استعمل الأرقام العربية مثل 12) +Jo-sp-19,Work life,Spanish (Spain),What region in your country has been traditionally associated with agriculture?,ها هي أهم منطقة زراعية في الجزائر؟ +Jo-sp-21,Work life,Spanish (Spain),"What time, if any, do people usually leave work for lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)",متى يغادر الناس عادة العمل لتناول الغداء في الجزائر؟ (قدم الوقت بتنسيق الساعة:الدقيقة مثلاً، 18:00، 09:00). +Jo-sp-31,Education,Spanish (Spain),"What time do high school students tend to leave school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)",في أي وقت يميل طلاب الثانوية لمغادرة المدرسة في الجزائر؟ (قدم الوقت بتنسيق الساعة:الدقائق مثل، 18:00، 09:00). +Jo-sp-32,Education,Spanish (Spain),What sport do elementary school students tend to practice at school in your country?,أي رياضة يميل تلاميذ المدارس الابتدائية لممارستها في المدارس في الجزائر؟ +Jo-sp-36,Education,Spanish (Spain),"How long (in weeks) are summer vacations at elementary schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","كم تدوم عطلة الصيف (بالأسابيع) في المدارس الابتدائية في الجزائر؟ (استعمل الأرقام العربية مثل 7, 8)" +Jo-sp-37,Education,Spanish (Spain),"How long (in weeks) are summer vacations at universities in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","كم تدوم عطلة الصيف في الجامعات الجزائرية بالأسابيع؟ (استعمل الأرقام العربية مثل 7, 8.)" +Jo-sp-39,Education,Spanish (Spain),"At what age does elementary education begin in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","في أي سن يبدأ التعليم الابتدائي في الجزائر؟ (استعمل الأرقام العربية مثل 7, 8.)" +Jo-sp-43,Education,Spanish (Spain),"How many languages are studied in elementary education besides your country's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)","كم لغة يتم دراستها في التعليم الابتدائي بالإضافة إلى اللغة الرسمية للجزائر؟(استعمل الأرقام العربية مثل 7, 8.)" +Jod-ch-01,Food,Chinese (China),What eating utensils do people commonly used in your country?,ما هي أدوات الأكل التي يستخدمها الناس عادة في الجزائر؟ +Jod-ch-04,Food,Chinese (China),What soft drink do people in your country like to have?,أي مشروب غازي يفضله الناس في الجزائر؟ +Jod-ch-06,Food,Chinese (China),What is the most popular traditional alcohol in your country?,ما هو أشهر نوع تقليدي من الكحول في الجزائر؟ +Jod-ch-07,Food,Chinese (China),"How long (in hours) on average does it take for people in your country to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)",كم يستغرق الناس من الوقت (بالساعات)عادةً لتناول العشاء في مطعم في الجزائر؟ (قدم الأرقام العربية حتى منزلة عشرية واحدة (مثلاً، 2، 3.5) فقط.) +Jod-ch-09,Food,Chinese (China),"What time do people usually have dinner in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)",متى وقت يتناول الناس العشاء في الجزائر عادة؟ (قدم الوقت بتنسيق الساعة:الدقيقة مثلاً، 18:00، 09:00). +Jod-ch-12,Food,Chinese (China),What kind of soup do people from your country like to have?,أي نوع من الحساء يحبه الناس في الجزائر؟ +Jod-ch-13,Food,Chinese (China),What street food do people from your country like to eat?,أي نوع من الأكلات الشعبية يحب الجزائريون تناولها؟ +Jod-ch-15,Food,Chinese (China),What kind of seafood do people from your country like to eat?,أي نوع من المأكولات البحرية يحب الجزائريون تناولها؟ +Jod-ch-16,Holidays/Celebration/Leisure,Chinese (China),What is the biggest festival in your country?,ما هو أكبر احتفال في الجزائر؟ +Jod-ch-28,Holidays/Celebration/Leisure,Chinese (China),What is the most commonly used public transport by people when travelling between cites in your country?,ما هي وسيلة النقل العمومي الأكثر استخداما عند السفر بين المدن في الجزائر؟ +Jod-ch-30,Holidays/Celebration/Leisure,Chinese (China),What are the specific decorations or symbols associated with the most biggest festival in your country?,ما هي الزينة أو الرموز الخاصة المرتبطة بأكبر عيد الاستقلال في الجزائر؟ +Jod-ch-37,Sport,Chinese (China),What sports do women like to watch the most in your country?,ما هي الرياضة التي تفضل النساء مشاهدتها في الجزائر؟ +Jod-ch-38,Sport,Chinese (China),What sports do men like to watch the most in your country?,ما هي الرياضة التي يفضل الرجال مشاهدتها في الجزائر؟ +Jod-ch-41,Holidays/Celebration/Leisure,Chinese (China),What is the common leisure activity that females in their 20s in your country engage in?,ما هي النشاطات الترفيهية الشائعة التي تمارسها النساء في العشرينات من العمر في الجزائر؟ +Jod-ch-42,Holidays/Celebration/Leisure,Chinese (China),What is the common leisure activity that males in their 20s in your country engage in?,ما هي النشاطات الترفيهية الشائعة التي يمارسها الشباب في العشرينات من العمر في الجزائر؟ +Jod-ch-46,Work life,Chinese (China),"How long (in hours) do people usually take a break after lunch on a weekday in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)",كم من الوقت (بالساعات) يأخذ الناس عادة استراحة بعد الغداء في يوم عمل في الجزائر؟ (قدم الأرقام العربية بمنزلة عشرية واحدة (مثلاً، 2، 3.5) فقط.) +Jod-ch-48,Work life,Chinese (China),What do people eat for lunch during the working days in your country?,ماذا يأكل الناس في الغداء خلال أيام العمل في الجزائر؟ +Jod-ch-50,Work life,Chinese (China),"What is the average commute time (in minutes) for people in your country? (Provide Arabic numerals (e.g., 1) only.)",ما هو متوسط وقت التنقل للعمل للأشخاص في الجزائر؟ +Jod-ch-51,Work life,Chinese (China),What is the most common transportation that people take to get to work in your country?,ما هي وسيلة النقل الأكثر شيوعاً التي يستخدمها الناس للذهاب إلى العمل في الجزائر؟ +Jod-ch-54,Work life,Chinese (China),"How long (in days) is the marriage leave in your country? (Provide Arabic numerals (e.g., 12) only.)",ما هي مدة إجازة الزواج في الجزائر؟ (استعمل الأرقام العربية مثل 12). +Jod-ch-56,Work life,Chinese (China),"What is the typical retirement age for women in your country? (Provide Arabic numerals (e.g., 12) only.)",ما هو سن التقاعد للنساء في الجزائر؟ (استعمل الأرقام العربية مثل 12). +Jod-ch-57,Work life,Chinese (China),"What is the typical retirement age for men in your country? (Provide Arabic numerals (e.g., 12) only.)",ما هو سن التقاعد النموذجي للرجال في الجزائر؟ (استعمل الأرقام العربية مثل 12). +Jod-ch-58,Work life,Chinese (China),Which profession is the most respected in your country?,أي مهنة هي الأكثر احترامًا في الجزائر؟ +Jod-ch-60,Work life,Chinese (China),What is the duration (in hours) of a typical workday in your country? (Provide Arabic numerals (0~24) only.),ما هي مدة يوم العمل النموذجي في الجزائر بالساعات؟ (استعمل الأرقام العربية مثل 0~24). +Jod-ch-61,Work life,Chinese (China),Which occupation is most preferred among females in your country?,أي مهنة تفضلها النساء في الجزائر أكثر؟ +Jod-ch-62,Work life,Chinese (China),Which occupation is most preferred among males in your country?,أي مهنة يفضلها الذكور في الجزائر؟ +Ki-pe-17,Education,Persian (Iran),"On average, how far do students typically pursue their education in your country? (e.g., elementary, high school)",في المتوسط، إلى أي مستوى يواصل الطلاب تعليمهم في الجزائر عادة؟ (مثلاً، الابتدائية، الثانوية) +Ki-pe-24,Education,Persian (Iran),What language is taught in schools in your country besides English?,أي لغة تُدرَّس في المدارس الجزائرية بالإضافة إلى اللغة الإنجليزية؟ +Ki-pe-30,Education,Persian (Iran),What days of the week are schools closed in your country?,أي أيام في الأسبوع تكون المدارس مغلقة في الجزائر؟ +Ki-pe-32,Food,Persian (Iran),What food do the hosts usually prepare for the guests in your country?,ما هي الأطعمة التي يعدّها الناس للضيوف في الجزائر؟ +Ki-pe-34,Food,Persian (Iran),What is the usual drink in the breakfast in your country?,ما هو المشروب المعتاد في وجبة فطور الصباح في الجزائر؟ +Ki-pe-36,Food,Persian (Iran),"Except the food original from your country, which country's food is more popular in your country?",عدا الأكل الأصلي من الجزائر، أي دولة أخرى يعتبر أكلها الأكثر شعبية في الجزائر؟ +Ki-pe-39,Food,Persian (Iran),What food is usually prepared for a family picnic in your country?,ما هي الأطعمة التي يتم إعدادها عادة لنزهة عائلية في الجزائر؟ +Ki-pe-40,Food,Persian (Iran),Which food from your country is considered disgusting by the rest of the world?,أي طعام من الجزائر يعتبر مقززًا بالنسبة لبقية العالم؟ +Ki-pe-43,Food,Persian (Iran),What is the name of the popular bread in your country?,ما هو اسم الخبز الشعبي في الجزائر؟ +Ki-pe-51,Work life,Persian (Iran),"What time of day are government offices closed in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)",في أي وقت تغلق المكاتب الحكومية في الجزائر؟ (قدم الوقت بتنسيق الساعة:الدقيقة مثل، 18:00، 09:00). +Ki-pe-53,Work life,Persian (Iran),"What is the normal start time of government offices in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)",ما هو موعد بداية العمل الرسمي في المؤسسات الحكومية في الجزائر؟ (قدم الوقت بتنسيق الساعة والدقائق مثلاً، 18:00، 09:00). +Kik-in-01,Holidays/Celebration/Leisure,Indonesian (Indonesia),What national holiday has the longest duration in your country?,ما هو العيد الوطني الأطول مدة في الجزائر؟ +Kik-in-02,Holidays/Celebration/Leisure,Indonesian (Indonesia),What are the common activities people from your country do to celebrate Independence day?,ما هي الأنشطة التي يقوم بها الجزائريون للاحتفال بيوم الاستقلال؟ +Kik-in-04,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is installed in front of the house when a family member dies in your country?,ماذا يتم تركيبه أمام المنزل عندما يتوفى أحد أفراد العائلة في الجزائر؟ +Kik-in-05,Holidays/Celebration/Leisure,Indonesian (Indonesia),When is a pregnancy celebration or ceremony usually held in your country?,متى يتم عادة الاحتفال بالحمل أو إقامة مراسم لذلك في الجزائر؟ +Kik-in-06,Holidays/Celebration/Leisure,Indonesian (Indonesia),What event is usually held before a wedding in your country?,ما هو الحدث الذي يقام عادة قبل الزفاف في الجزائر؟ +Kik-in-07,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is usually shared to the children during (Lunar) New Year in your country?,ماذا يتم توزيعه عادة على الأطفال خلال السنة الجديدة القمرية في الجزائر؟ +Kik-in-08,Holidays/Celebration/Leisure,Indonesian (Indonesia),What activities are usually done days before Ramadan in your country?,ما هي الأنشطة التي تُمارس عادة في الأيام التي تسبق رمضان في الجزائر؟ +Kik-in-10,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most popular tourist attraction for foreign visitors in your country?,ما هي أشهر معلم سياحي للزوار الأجانب في الجزائر؟ +Kik-in-11,Holidays/Celebration/Leisure,Indonesian (Indonesia),"What is the most popular religious sites (temple, church, etc.) for tourism in your country?",ما هي أشهر المواقع الدينية (معبد، كنيسة، إلخ) للسياحة في الجزائر؟ +Kik-in-15,Holidays/Celebration/Leisure,Indonesian (Indonesia),What clothes do women usually wear on graduation commencement ceremony in your country?,ما هي الملابس التي ترتديها النساء عادة في حفل تخرج الجامعات في الجزائر؟ +Kik-in-16,Food,Indonesian (Indonesia),What drink is commonly consumed in your country when the weather is cold?,ما هو المشروب الذي يتم استهلاكه بكثرة في الجزائر عندما يكون الطقس باردا؟ +Kik-in-17,Food,Indonesian (Indonesia),What fruit is more commonly sold and found during Ramadan in your country?,أي نوع من الفواكه يُباع ويُوجد بكثرة خلال شهر رمضان في الجزائر؟ +Kik-in-24,Food,Indonesian (Indonesia),What carbohydrate is usually served with chicken in a fast-food restaurant in your country?,أي نوع من الكربوهيدرات يقدم عادة مع الدجاج في مطعم الوجبات السريعة في الجزائر؟ +Kik-in-31,Sport,Indonesian (Indonesia),What is the most famous martial art sports in your country?,ما هي أشهر رياضة فنون قتالية في الجزائر؟ +Kik-in-34,Sport,Indonesian (Indonesia),What sports are often broadcasted on national television in your country?,ما هي الرياضات التي غالبا ما تُبث على التلفزيون الوطني في الجزائر؟ +Kik-in-35,Sport,Indonesian (Indonesia),What sports were popular among people from your country during the COVID-19 pandemic?,ما هي الرياضات التي كانت شائعة بين الناس في الجزائر خلال جائحة كوفيد-19؟ +Kik-in-36,Sport,Indonesian (Indonesia),Who is the most popular soccer coach in your country?,من هو أشهر مدرب كرة قدم في الجزائر؟ +Kik-in-37,Sport,Indonesian (Indonesia),What soccer teams in your country are famous for their intense rivalry? (e.g. ___ vs ___),ما هي الفرق الكروية في الجزائر المعروفة بتنافسها الشديد؟ (مثلاً ___ ضد ___) +Kik-in-38,Sport,Indonesian (Indonesia),What are the names of soccer supporters in your country who are famous for their intense rivalry? (e.g. ___ vs ___),ما هي أسماء مشجعي كرة القدم في الجزائر الذين يشتهرون بتنافسهم الشديد؟ (مثلاً ___ ضد ___) +Kik-in-40,Sport,Indonesian (Indonesia),Who is the most famous male badminton player in your country?,من هو أشهر لاعب بادمنتون رجالي في الجزائر؟ +Kik-in-41,Sport,Indonesian (Indonesia),Who is the most famous female badminton player in your country?,من هي أشهر لاعبة بادمنتون في الجزائر؟ +Kik-in-44,Sport,Indonesian (Indonesia),What sport gets the most support from the government in your country?,أي رياضة تحظى بأكبر دعم من الحكومة في الجزائر؟ +Kik-in-45,Sport,Indonesian (Indonesia),What sports field facilities are usually available at schools in your country?,ما هي المرافق الرياضية المتوفرة عادة في المدارس الجزائرية؟ +Na-ko-02,Food,Korean (South Korea),What cafe beverage do people from your country most commonly enjoy?,أي مشروب يستمتع به الجزائريون عادة في المقاهي؟ +Na-ko-04,Food,Korean (South Korea),What is the preferred hangover cure food for people from your country?,ما هو الطعام المفضل لعلاج صداع الخمر لدى الشعب الجزائري؟ +Na-ko-05,Food,Korean (South Korea),What is the typical delivery food in your country?,ما هو الطعام الذي يطلبه الكثيرون في الجزائر؟(delivery) +Na-ko-07,Food,Korean (South Korea),What type of meat is consumed most by people from your country?,أي نوع من اللحوم يستهلكه الجزائريون أكثر؟ +Na-ko-08,Food,Korean (South Korea),What fruit do people from your country often eat in the autumn season?,أي نوع من الفواكه يتناوله الجزائريون غالبًا في موسم الخريف؟ +Na-ko-09,Food,Korean (South Korea),What side dish is the most commonly served on a dining table in your country?,ما هو الطبق الجانبي الأكثر شيوعاً الذي يُقدم على مائدة الطعام في الجزائر؟ +Na-ko-11,Food,Korean (South Korea),What do people from your country eat while watching a soccer game?,ماذا يأكل الناس في الجزائر أثناء مشاهدة مباراة كرة القدم؟ +Na-ko-15,Food,Korean (South Korea),What is the representative nourishing food in your country?,ما هو الطعام المغذي الممثل في الجزائر؟ +Na-ko-16,Sport,Korean (South Korea),Who is the most famous soccer player in your country?,من هو أشهر لاعب كرة قدم في الجزائر؟ +Na-ko-17,Sport,Korean (South Korea),What sports do male students enjoy during lunch time at school in your country?,ما هي الرياضة التي يستمتع بها الطلاب الذكور أثناء وقت الغداء في المدرسة في الجزائر؟ +Na-ko-18,Sport,Korean (South Korea),What is the most common sport girls participate in during physical education classes in your country?,ما هي الرياضة التي تشارك فيها الفتيات خلال حصص التربية البدنية في الجزائر؟ +Na-ko-19,Sport,Korean (South Korea),Who is the most popular volleyball player in your country?,من هو أشهر لاعب كرة طائرة في الجزائر؟ +Na-ko-20,Sport,Korean (South Korea),What sports event do people from your country passionately support the most in international competitions?,أي حدث رياضي يتابعه الجزائريون بشغف في المنافسات الدولية؟ +Na-ko-22,Sport,Korean (South Korea),Which country is considered the biggest rival in soccer matches for your country?,أي بلد يعتبر المنافس الأكبر للجزائرفي مباريات كرة القدم ؟ +Na-ko-23,Sport,Korean (South Korea),What type of sports academies do children attend the most in your country?,أي نوع من الأكاديميات الرياضية يرتادها الأطفال في الجزائر أكثر؟ +Na-ko-24,Sport,Korean (South Korea),What is the most commonly eaten food in sports stadiums while watching games in your country?,ما هو الطعام الأكثر شيوعاً الذي يتناوله الناس في الملاعب الرياضية أثناء مشاهدة المباريات في الجزائر؟ +Na-ko-25,Sport,Korean (South Korea),What are the typical sports played in your country's school sports day?,ما هي الرياضات النموذجية التي تُلعب في يوم الرياضة المدرسية في الجزائر؟ +Na-ko-26,Sport,Korean (South Korea),What are the popular sports among the middle-aged population in your country?,ما هي الرياضات الشعبية لدى السكان في منتصف العمر في الجزائر؟ +Na-ko-28,Sport,Korean (South Korea),Who is the most popular winter sports player in your country?,من هو أشهر لاعب رياضات شتوية في الجزائر؟ +Na-ko-29,Sport,Korean (South Korea),Who is the most famous swimmer in your country?,من هو أشهر سباح في الجزائر؟ +Na-ko-30,Sport,Korean (South Korea),What is the most popular e-sports game in your country?,ما هي أشهر لعبة رياضة إلكترونية في الجزائر؟ +Na-ko-33,Holidays/Celebration/Leisure,Korean (South Korea),What symbolic food do people from your country eat on (Lunar) New Year?,ما هي الأطعمة الرمزية التي يتناولها الجزائريون في السنة الجديدة القمرية؟ +Na-ko-37,Holidays/Celebration/Leisure,Korean (South Korea),What is the most popular domestic vacation spot for people from your country?,ما هو أشهر مكان لقضاء العطلة داخل الجزائر بالنسبة للجزائريين؟ +Na-ko-38,Holidays/Celebration/Leisure,Korean (South Korea),What is the most common wedding gift between bride and groom in your country?,ما هو أكثر هدية زواج شائعة بين العروس والعريس في الجزائر؟ +Na-ko-39,Holidays/Celebration/Leisure,Korean (South Korea),What is typically given as a congratulatory gesture when attending a friend's wedding in your country?,ماذا يُعطى عادة كبادرة تهنئة عند حضور زفاف صديق في الجزائر؟ +Na-ko-40,Holidays/Celebration/Leisure,Korean (South Korea),"How long (in days) does a funeral typically last in your country? (Provide Arabic numerals (e.g., 12) only.)",كم يوماً عادة ما تستمر مراسم الجنازة في الجزائر؟ (استعمل الأرقام العربية مثل 12). +Na-ko-41,Holidays/Celebration/Leisure,Korean (South Korea),What should you prepare as a condolence offering when attending a funeral in your country?,ماذا يجب أن تقدم كهدية عند حضور جنازة في الجزائر؟ +Na-ko-42,Holidays/Celebration/Leisure,Korean (South Korea),What type of food is commonly provided at funeral parlors in your country?,أي نوع من الطعام يقدم عادة في مراسم الجنازات في الجزائر؟ +Na-ko-43,Holidays/Celebration/Leisure,Korean (South Korea),What do people do in your country in the morning of the (Lunar) New Year?,ماذا يفعل الناس في الجزائر في صباح السنة القمرية الجديدة؟ +Na-ko-44,Holidays/Celebration/Leisure,Korean (South Korea),When is the day with your country's most severe nationwide traffic congestion?,ما هو اليوم الذي تشهد فيه الجزائر أشد ازدحام مروري على الصعيد الوطني؟ +Na-ko-45,Holidays/Celebration/Leisure,Korean (South Korea),What is the most popular honeymoon destination in your country?,ما هي أشهر وجهة شهر عسل في الجزائر؟ +Ne-ar-05,Holidays/Celebration/Leisure,Arabic (Algeria),What is the most important national holiday in your country?,ما هو أهم عيد وطني في الجزائر؟ +Ne-ar-06,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Ramadan?,ماذا يأكل الجزائريون في رمضان؟ +Ne-ar-09,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Eid ul Fitr?,ماذا يأكل الناس الجزائريون في عيد الفطر؟ +Ne-ar-10,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Eid ul Adha?,ماذا يأكل الناس الجزائريون في عيد الأضحى؟ +Ne-ar-11,Holidays/Celebration/Leisure,Arabic (Algeria),Where do people from your country go to celebrate New Year's Day?,أين يذهب الناس في الجزائر للاحتفال برأس السنة الجديدة؟ +Ne-ar-14,Holidays/Celebration/Leisure,Arabic (Algeria),Where do a family gather for Eid festivities in your country?,أين تجتمع العائلة للاحتفال بعيد الفطر في الجزائر؟ +Ne-ar-16,Work life,Arabic (Algeria),"When is the weekend in your country (e.g. Monday, Tuesday)?",متى تكون عطلة نهاية الأسبوع في الجزائر (مثلا الاثنين، الثلاثاء)؟ +Ne-ar-17,Work life,Arabic (Algeria),"At what time do most people start work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)",في أي وقت يبدأ معظم الناس العمل في الجزائر؟ (قدم الوقت بتنسيق الساعة:الدقيقة مثل، 18:00، 09:00). +Ne-ar-18,Work life,Arabic (Algeria),"At what time do most people finish work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)",في أي وقت ينهي معظم الناس العمل في الجزائر؟ (قدم الوقت بتنسيق الساعة:الدقائق مثلاً، 18:00، 09:00). +Ne-ar-20,Work life,Arabic (Algeria),What is considered to be a secure job in your country?,ما هو العمل الذي يعتبر آمنا في الجزائر؟ +Ne-ar-24,Work life,Arabic (Algeria),Which city is the primary commercial hub in your country?,أي مدينة تعتبر المركز التجاري الرئيسي في الجزائر؟ +Ne-ar-25,Work life,Arabic (Algeria),What is the industry that pays the best in your country?,ما هي الصناعة التي تدفع أفضل الأجور في الجزائر؟ +Ne-ar-26,Work life,Arabic (Algeria),What is the most famous public corporation in your country?,ما هي أشهر شركة عمومية في الجزائر؟ +Ne-ar-31,Food,Arabic (Algeria),What is the most famous dish in your country?,ما هو أشهر طبق في الجزائر؟ +Ne-ar-32,Food,Arabic (Algeria),What do people usually have for breakfast in your country?,ماذا يتناول الناس عادة للفطور في الجزائر؟ +Ne-ar-33,Food,Arabic (Algeria),"When do people usually have lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)",متى يتناول الناس الغداء في الجزائر عادة؟ (قدم الوقت بتنسيق الساعة:الدقيقة مثل، 18:00، 09:00). +Ne-ar-34,Food,Arabic (Algeria),What is typically indispensable in meals in your country?,ما هو الشيء الأساسي الذي لا غنى عنه في الوجبات في الجزائر؟ +Ne-ar-36,Food,Arabic (Algeria),What is a typical festive meal in your country?,ما هو الطبق الاحتفالي التقليدي في الجزائر؟ +Ne-ar-37,Food,Arabic (Algeria),Which fruit do people usually offer tourists/visitors from abroad in your country?,أي نوع من الفواكه يقدمه الناس عادة للسياح/الزوار القادمين من الخارج في الجزائر؟ +Ne-ar-38,Food,Arabic (Algeria),Which food do people usually offer as charity in your country?,أي نوع من الطعام يقدمه الناس عادة كصدقة في الجزائر؟ +Ne-ar-39,Food,Arabic (Algeria),What is the cheapest fast food in your country?,ما هي أرخص الوجبات السريعة في الجزائر؟ +Ne-ar-43,Food,Arabic (Algeria),What do people usually have with tea in your country?,ماذا يتناول الناس عادة مع الشاي في الجزائر؟ +Ne-ar-44,Food,Arabic (Algeria),What do people have with coffee in your country?,ماذا يتناول الناس مع القهوة في الجزائر؟ +New-am-02,Food,Amharic (Ethiopia),What is the most popular traditional food in your country?,ما هو أشهر طعام تقليدي في الجزائر؟ +New-am-04,Food,Amharic (Ethiopia),What is the most popular dipping sauce in your country?,ما هو أشهر صلصة للتغميس في الجزائر؟ +New-am-08,Food,Amharic (Ethiopia),What food is most often consumed during Christian fasting in your country?,ما هو الطعام الأكثر استهلاكا خلال صيام المسيحيين في الجزائر؟ +New-am-15,Food,Amharic (Ethiopia),What food is usually prepared when mothers give birth in your country?,ما هو الطعام الذي يُعد عادةً عندما تلد الأمهات في الجزائر؟ +New-am-27,Sport,Amharic (Ethiopia),Who is the most popular female sportperson in your country?,من هي أشهر رياضية في الجزائر؟ +New-am-34,Education,Amharic (Ethiopia),Where do most elementary school students prepare for their exams in your country?,أين يستعد معظم تلاميذ المدارس الابتدائية لامتحاناتهم في الجزائر؟ +New-am-41,Education,Amharic (Ethiopia),"In your country, at which grade level do students take their first national-level examination?",في أي مستوى دراسي يؤدي الطلاب امتحانهم الوطني الأول في الجزائر؟ +New-am-53,Work life,Amharic (Ethiopia),Which region in your country is widely known for its coffee/tea industry?,أي منطقة في الجزائر معروفة بصناعة القهوة / الشاي؟ +New-am-54,Work life,Amharic (Ethiopia),Which region in your country is widely known for its livestock industry?,أي منطقة في الجزائر معروفة بتربية المواشي؟ +New-am-59,Work life,Amharic (Ethiopia),What is the main occupation of people living in deserts in your country?,ما هي المهنة الأساسية لسكان صحراء الجزائر؟ +New-am-60,Work life,Amharic (Ethiopia),Which animal is typically used for transportation in your country?,أي حيوان يستخدم للنقل في الجزائر؟ +New-am-72,Family,Amharic (Ethiopia),What is the most popular comic book for children to read in your country?,ما هو أشهر كتاب قصص مصورة للأطفال في الجزائر؟ +New-am-73,Family,Amharic (Ethiopia),What is the most popular YouTube channel for children in your country?,ما هي أشهر قناة يوتيوب للأطفال في الجزائر؟ +New-am-74,Family,Amharic (Ethiopia),What is the most popular talk show in your country?,ما هو أشهر برنامج حواري في الجزائر؟ +New-am-77,Holidays/Celebration/Leisure,Amharic (Ethiopia),What is the most famous religious holiday in your country?,ما هو أشهر عيد ديني في الجزائر؟ +New-am-81,Holidays/Celebration/Leisure,Amharic (Ethiopia),"What is the busiest month for weddings in your country? (Provide Arabic numerals (e.g., 1) only.)",ما هو أكثر شهر تقام فيه الأعراس في الجزائر؟ (قدم الأرقام العربية فقط مثل، 1.) +New-am-83,Holidays/Celebration/Leisure,Amharic (Ethiopia),What is the most popular traditional musical instrument in your country?,ما هي الآلة الموسيقية التقليدية الأكثر شعبية في الجزائر؟ +New-as-01,Food,Assamese (Assam),What is the main agricultural product produced in your country?,ما هو المنتج الزراعي الرئيسي الذي يتم إنتاجه في الجزائر؟ +New-as-02,Food,Assamese (Assam),What is the most popular wheat-based food item in your country?,ما هو أشهر طعام مصنوع من القمح في الجزائر؟ +New-as-05,Food,Assamese (Assam),What is the most typical drink offered to guests when they visit households in your country?,ما هو المشروب الذي يُقدم عادة للضيوف في الجزائر؟ +New-as-07,Food,Assamese (Assam),What is the most popular dish cooked with fish in your country?,ما هو أشهر طبق سمك في الجزائر؟ +New-as-14,Food,Assamese (Assam),What food do people from your country like to eat during rainy weather?,ما هي الأطعمة التي يفضلها الجزائريون عندما يكون الطقس ممطرا؟ +New-as-15,Food,Assamese (Assam),What drink is commonly consumed in your country when the weather is hot?,ما هو المشروب الذي يستهلك بكثرة في الجزائر عندما يكون الطقس حارا؟ +New-as-20,Sport,Assamese (Assam),What is the most popular indoor sport in your country?,ما هي أشهر رياضة قاعة في الجزائر؟ +New-as-29,Sport,Assamese (Assam),What sport do men in your country like to watch?,ما هي الرياضة التي يحب الرجال مشاهدتها في الجزائر؟ +New-as-30,Sport,Assamese (Assam),What sport do women in your country like to watch?,ما هي الرياضة التي تحب النساء مشاهدتها في الجزائر؟أ +New-as-58,Work life,Assamese (Assam),What is the most popular beverage that people from your country like to drink in their workplace?,ما هو المشروب الذي يحب الجزائريون شربه في أماكن عملهم؟ +New-as-64,Family,Assamese (Assam),On which holiday do all family members tend to reunite in your country?,في أي عيد يجتمع أفراد العائلة في الجزائر؟ +New-as-76,Holidays/Celebration/Leisure,Assamese (Assam),What traditional games do families play during traditional holidays in your country?,ما هي الألعاب التقليدية التي تلعبها العائلات خلال العطل في الجزائر؟ +New-as-80,Holidays/Celebration/Leisure,Assamese (Assam),What type of clothing do people from your country wear during traditional festivals?,ماذا يرتدي الجزائريون في الأعياد التقليدية؟ +New-as-89,Holidays/Celebration/Leisure,Assamese (Assam),What traditional festival accessories do people from your country wear?,ما هي الإكسسوارات التي يرتديها الجزائريون في الأعياد التقليدية؟ +New-az-05,Food,Azerbaijani (Azerbaijan),What is the most famous region for alcohol production in your country?,ما هي أشهر منطقة لإنتاج الكحول في الجزائر؟ +New-az-11,Food,Azerbaijani (Azerbaijan),What fruit do people from your country often eat in the summer season?,ما هي الفاكهة التي يتناولها الجزائريون عادة في فصل الصيف؟ +New-az-12,Food,Azerbaijani (Azerbaijan),Which region in your country is known for its seafood?,ما هي المنطقة الجزائرية المعروفة بمأكولاتها البحرية؟ +New-az-21,Sport,Azerbaijani (Azerbaijan),Which region in your country is the most popular skiing destination?,ما هي الوجهة الأكثر شعبية للتزلج في الجزائر؟ +New-az-26,Sport,Azerbaijani (Azerbaijan),Who is the most popular martial arts player in your country?,من هو أشهر لاعب فنون قتالية في الجزائر؟ +New-az-27,Sport,Azerbaijani (Azerbaijan),Which sport has been one of the fastest-growing in your country over the last decade?,ما هي الرياضة لأسرع نمواً في الجزائر خلال العقد الماضي؟ +New-az-39,Education,Azerbaijani (Azerbaijan),Which country is the most popular destination for students from your country studying abroad?,ما هو البلد الذي يتجه إليه معظم الطلاب الجزائريين عند الدراسة في الخارج؟ +New-az-49,Work life,Azerbaijani (Azerbaijan),"How many people work in a typical family in your country? (Provide Arabic numerals (e.g., 1) only.)",ماهو عدد الأشخاص العاملين في عائلة نموذجية في الجزائر؟ (قدم الأرقام العربية فقط مثل، 1.) +New-az-60,Family,Azerbaijani (Azerbaijan),"In your country, who takes care of kids when both parents are working?","في الجزائر, من يعتني بالأطفال عندما يعمل الوالدان؟" +New-az-69,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),What is the preferred alcoholic beverage for men from your country?,ما هو المشروب الكحولي المفضل لدى الرجال في الجزائر؟ +New-az-70,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),What is the preferred alcoholic beverage for women from your country?,ما هو المشروب الكحولي المفضل لدى النساء في الجزائر؟ +New-az-73,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),"How many people on average typically attend a wedding in your country? (Provide Arabic numerals (e.g., 1) only.)",ما هو عدد االمدعوين لحفللت الزفافعادة في الجزائر؟ (قدم الأرقام العربية فقط مثل، 1.) +New-ch-01,Food,Chinese (China),What kind of meat do people usually eat when they have barbecue in your country?,أي نوع من اللحوم يستعمل الجزائريون للشواء على الجمر؟ +New-ch-02,Food,Chinese (China),"When do people usually have breakfast in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)",متى يتناول الناس عادة وجبة الإفطار في الجزائر؟ (قدم الوقت بتنسيق الساعة:الدقيقة مثل، 18:00، 09:00). +New-ch-04,Food,Chinese (China),What kinds of food do people usually eat for late-night snacks in your country?,أي أنواع من الطعام يتناول الناس عادة كوجبات خفيفة في آخر الليل في الجزائر؟ +New-ch-05,Food,Chinese (China),What is the most famous spicy dish in your country?,ما هو أشهر طبق حار في الجزائر؟ +New-ch-07,Food,Chinese (China),What food items do people typically pair with hard liquor in your country?,ما هي المأكولات التي يتناولها الناس عادة مع المشروبات الكحولية القوية في الجزائر؟ +New-ch-08,Food,Chinese (China),What seasoning is indispensable in cooking in your country?,ما هي التوابل الأساسية للطبخ في الجزائر؟ +New-ch-09,Food,Chinese (China),What food do people typically consume when the weather is cold in your country?,ما هي الأطعمة التي يستهلكها الناس عندما يكون الطقس باردا في الجزائر؟ +New-ch-13,Food,Chinese (China),What is the most famous alcohol brand in your country?,ما هي أشهر ماركة كحول في الجزائر؟ +New-ch-14,Food,Chinese (China),What foods do people usually eat when they are sick in your country?,ما هي الأطعمة التي يتناولها الجزائريون عادة عند المرض؟ +New-ch-15,Food,Chinese (China),What prepared/ready-to-eat food do people typically buy at supermarkets in your country?,ما هي الأطعمة الجاهز التي يشتريها الجزائريون في السوبرماركت عادة؟ +New-ch-16,Sport,Chinese (China),What is the most famous sports-related movie in your country?,ما هو أشهر فيلم عن الرياضة في الجزائر؟ +New-ch-17,Sport,Chinese (China),What extreme sport do people generally wish to try the most in your country?,أي رياضة متطرفة يتمنى أكثر الناس تجربتها في الجزائر؟ +New-ch-18,Sport,Chinese (China),Which track and field event is the most popular to watch during competitions in your country?,أي من مسابقات ألعاب القوى هي الأكثر مشاهدة خلال المنافسات في الجزائر؟ +New-ch-19,Sport,Chinese (China),Which gymnastics event is the most popular to watch during competitions in your country?,أي حدث في الجمباز هو الأكثر مشاهدة خلال المسابقات في الجزائر؟ +New-ch-23,Sport,Chinese (China),Who is the most famous table tennis player in your country?,من هو أشهر لاعب كرة طاولة في الجزائر؟ +New-ch-26,Sport,Chinese (China),"In the Winter Olympics, which event is the most popular to watch in your country?",في الألعاب الأولمبية الشتوية، أي حدث هو الأكثر مشاهدة في الجزائر؟ +New-ch-27,Sport,Chinese (China),Who is the most famous boxer in your country?,من هو أشهر ملاكم في الجزائر؟ +New-ch-30,Sport,Chinese (China),Who is the most famous track and field athlete in your country?,من هو أشهر عداء في ألعاب القوى في الجزائر؟ +New-ch-31,Work life,Chinese (China),What job do parents most hope their children will pursue in your country?,أي عمل يتمنى الآباء أن يختاره أبناؤهم في الجزائر؟ +New-ch-32,Work life,Chinese (China),What office software do people typically use in the workplace in your country?,أي برامج مكتبية يستخدمها الناس في أماكن العمل في الجزائر؟ +New-ch-38,Work life,Chinese (China),Which cities or regions are known for their import and export activities in your country?,أي المدن أو المناطق معروفة بأنشطتها في الاستيراد والتصدير في الجزائر؟ +New-ch-39,Work life,Chinese (China),What platform is commonly used in the e-commerce industry in your country?,أي منصة تُستخدم بشكل شائع في صناعة التجارة الإلكترونية في الجزائر؟ +New-ch-44,Work life,Chinese (China),"How long is the typical probation period for new employees before signing a formal contract in your country? (e.g., 1 month).",ما هي المدة النموذجية لفترة التجربة للموظفين الجدد قبل توقيع عقد رسمي في الجزائر؟ (مثلا، شهر واحد). +New-ch-45,Work life,Chinese (China),Which industries do young people typically choose to start businesses in your country?,في أي القطاعات يميل الشباب لبدء مشاريعهم التجارية في الجزائر؟ +New-ch-49,Family,Chinese (China),What is the most common way for family members to communicate remotely in your country?,ما هي الطريقة الأكثر شيوعًا للتواصل عن بعد بين أفراد العائلة في الجزائر؟ +New-ch-51,Family,Chinese (China),What form of accommodation is typically booked for family trips in your country?,أي نوع من أماكن الإقامة يتم حجزه عادة للرحلات العائلية في الجزائر؟ +New-ch-54,Family,Chinese (China),Which fruit is usually prepared the most for family dinners in your country?,أي نوع من الفواكه يتم تحضيره بكثرة لعشاء العائلات في الجزائر؟ +New-ch-64,Education,Chinese (China),"How many hours of classes do university students typically have per week in your country? (Provide Arabic numerals (e.g., 1) only.)",كم عدد ساعات الدراسة التي يتلقاها طلاب الجامعة الجزائرية في الأسبوع؟ (استخدم الأرقام العربية فقط مثل، 1.) +New-ch-66,Education,Chinese (China),"What is the typical tuition fee per semester for public high schools in your country? (Provide Arabic numerals (e.g., 1) only.)",ما هي الرسوم الدراسية النموذجية لكل فصل دراسي في المدارس الثانوية العامة في الجزائر؟ (استخدم الأرقام العربية فقط مثل، 1 +New-ch-70,Education,Chinese (China),What compulsory courses do university students have in common in your country?,ما هي المواد الإجبارية التي يشترك فيها طلاب الجامعة في الجزائر؟ +New-ch-71,Education,Chinese (China),"What is the average class size in high schools in your country? (Provide Arabic numerals (e.g., 1) only.)",ما هو متوسط حجم الفصل في المدارس الثانوية في الجزائر؟ (استخدم الأرقام العربية فقط مثل، 1) +New-ch-72,Education,Chinese (China),Which major is considered most conducive to employment in your country?,أي تخصص يعتبرالأسهل للتوظيف في الجزائر؟ +New-ch-73,Education,Chinese (China),What type of clubs are most popular among university students in your country?,أي نوع من النوادي هو الأكثر شعبية بين طلاب الجامعات في الجزائر؟ +New-ch-74,Education,Chinese (China),What types of accommodation do university students in your country typically live in?,أين يعيش معظم طلاب الجامعة في الجزائر؟ +New-ch-75,Education,Chinese (China),"How long is each class period for middle school students in your country (minutes)? (Provide Arabic numerals (e.g., 1) only.)",كم تدوم الحصة الدراسية لطلاب المرحلة الثانوية في الجزائر (بالدقائق)؟ (استخدم الأرقام العربية فقط مثل، 1) +New-ch-78,Holidays/Celebration/Leisure,Chinese (China),What leisure activities do retired women typically like in your country?,ما هي الأنشطة الترفيهية التي تفضلها النساء المتقاعدات في الجزائر؟ +New-ch-79,Holidays/Celebration/Leisure,Chinese (China),What leisure activities do retired men typically like in your country?,ما هي الأنشطة الترفيهية التي يفضلها الرجال المتقاعدون في الجزائر؟ +New-ch-80,Holidays/Celebration/Leisure,Chinese (China),"During which holidays do people typically visit religious sites (temples, churches, etc.) in your country?",في أي الأعياد يقوم الناس بزيارة الأماكن الدينية (المعابد، الكنائس، إلخ) في الجزائر؟ +New-ch-81,Holidays/Celebration/Leisure,Chinese (China),What are the typical housewarming gifts in your country?,ما هي الهدايا التي تقدم عند زيارة بيت جديد في الجزائر؟ +New-ch-82,Holidays/Celebration/Leisure,Chinese (China),"At what time do weddings typically start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)",في أي وقت عادة ما تبدأ حفلات الزفاف في الجزائر؟ (قدم الوقت بتنسيق الساعة:الدقائق مثلاً، 18:00، 09:00). +New-ch-83,Holidays/Celebration/Leisure,Chinese (China),Which city in your country hosts festivals the most?,أي مدينة في الجزائر تستضيف أكثر الأعياد والمهرجانات؟ +New-ch-84,Holidays/Celebration/Leisure,Chinese (China),What color of clothing do people typically wear when attending weddings in your country?,ما هو لون الملابس التي يرتديها الناس عند حضور الأعراس في الجزائر؟ +New-ch-85,Holidays/Celebration/Leisure,Chinese (China),What color of clothing do people typically wear when attending funerals in your country?,ما هو لون الملابس التي يرتديها الناس عادة عند حضور الجنازات في الجزائر؟ +New-en-01,Food,English (UK),Which snack is eaten in the cinema in your country?,ما ذا يتناول الناس في السينما في الجزائر؟ +New-en-02,Food,English (UK),What is the most popular chip/crisp flavour in your country?,ما هي أكثر نكهة شيبس/كريسب شعبية في الجزائر؟ +New-en-04,Food,English (UK),Who is a popular celebrity chef in your country?,من هو أشهر طباخ في الجزائر؟ +New-en-05,Food,English (UK),Which food is a cost-effective and quick meal option in your country?,ما هي الوجبة السريعة الاقتصادية في الجزائر؟ +New-en-07,Food,English (UK),What are the most popular cooking shows in your country?,ما هي أشهر برامج الطبخ في الجزائر؟ +New-en-08,Food,English (UK),What is the most popular chocolate brand in your country?,ما هي أشهر ماركة شوكولاتة في الجزائر؟ +New-en-10,Food,English (UK),What is the most eaten cheese in your country?,ما هو الجبن الأكثر استهلاكا في الجزائر؟ +New-en-11,Food,English (UK),What is the most disliked vegetable in your country?,ما هي الخضار االأقل استحسانا بين الناس في الجزائر؟ +New-en-12,Food,English (UK),What food is most commonly found in food courts in your country?,ما هو الطعام الأكثر شيوعاً في مطاعم المراكز التجارية في الجزائر؟ +New-en-17,Sport,English (UK),What are the most common cheering tools used by sports fans in your country?,ما هي أكثر الأدوات التشجيعية شيوعًا بين مشجعي الرياضة في الجزائر؟ +New-en-18,Sport,English (UK),What do fans bring with them when attending a live game in your country?,ماذا يجلب المشجعون معهم عند حضور مباراة مباشرة في الجزائر؟ +New-en-19,Sport,English (UK),What is the most well known sporting stadium in your country?,ما هو أشهر ملعب رياضي في الجزائر؟ +New-en-23,Sport,English (UK),Who is the most famous Paralympian in your country?,من هو أشهر بارالمبي في الجزائر؟ +New-en-26,Sport,English (UK),What is the best recognized sporting chant in your country?,ما هو أشهر هتاف رياضي في الجزائر؟ +New-en-38,Work life,English (UK),Which industries are known for more flexible working hours in your country?,أي المهن معروفة بساعات العمل المرنة في الجزائر؟ +New-en-41,Work life,English (UK),Who is the most well known and successful entrepreneur in your country?,من هو أشهر وأنجح رائد أعمال في الجزائر؟ +New-en-47,Family,English (UK),What can typically be found in the back garden of houses in your country?,ما الذي يمكن أن نجد عادة في حديقة المنزل الخلفية في الجزائر؟ +New-en-49,Family,English (UK),What is the name of the most famous family in your country?,ما هو اسم أشهر عائلة في الجزائر؟ +New-en-50,Family,English (UK),What is the most common family name in your country?,ما هو أكثر اسماء العائلة شيوعًا في الجزائر؟ +New-en-55,Family,English (UK),Which religion is most commonly practiced by families in your country?,أي ديانة هي الأكثر ممارسة من قبل العائلات في الجزائر؟ +New-en-56,Family,English (UK),What is the most popular foreign language spoken by families in your country?,ما هي أكثر لغة أجنبية يتحدث بها العائلات في الجزائر؟ +New-en-59,Family,English (UK),Which country is the most popular destination for families from your country to emigrate to?,ما هو البلد التي تهاجر له أكثر العائلات الجزائريةا؟ +New-en-68,Education,English (UK),What repercussions are there for bad behavior in schools in your country?,ما هي العواقب المترتبة على السلوك السيئ في المدارس في الجزائر؟ +New-en-69,Education,English (UK),Which writers are commonly studied in literature class in your country?,من هم الكتّاب الذين تدرس أعمالهم في حصص الأدب في الجزائر؟ +New-en-70,Education,English (UK),"How many school breaks are there in a year for high schools in your country? (Provide Arabic numerals (e.g., 1) only.)",كم عدد العطل المدرسية في السنة للمدارس الثانوية في الجزائر؟ (استعمل الأرقام العربية فقط مثل 1.) +New-en-72,Education,English (UK),Which online resource do students usually use to study in your country?,أي مورد إلكتروني يستخدمه الطلاب للدراسة في الجزائر؟ +New-en-75,Education,English (UK),"What is the average length of a semester in terms of weeks of teaching at universities in your country? (Provide Arabic numerals (e.g., 1) only.)",ما هو متوسط طول الفصل الدراسي من حيث عدد أسابيع التدريس في الجامعات الجزائرية؟ (استعمل الأرقام العربية فقط مثل 1.) +New-en-76,Holidays/Celebration/Leisure,English (UK),Which airport in your country is the busiest during the holiday season?,ما هو المطار الأكثر ازدحامًا خلال موسم العطل في الجزائر؟ +New-en-79,Holidays/Celebration/Leisure,English (UK),Which region of your country is well known for its theatrical performances?,ما هي المنطقة الجزائرية المعروفة بالعروض المسرحية؟ +New-en-87,Holidays/Celebration/Leisure,English (UK),What is the most famous historic landmark in your country?,ما هو أشهر معلم تاريخي في الجزائر؟ +New-en-90,Holidays/Celebration/Leisure,English (UK),What is the most famous hotel brand in your country?,ما هي أشهر علامة فندقية في الجزائر؟ +New-gr-05,Food,Greek (Greece),What is the most popular grab-and-go breakfast option in your country?,ما هي أشهر وجبة فطور سريعة في الجزائر؟ +New-gr-06,Food,Greek (Greece),What is the most popular food in your country among young people?,ما هو الطعام الأكثر شعبية بين الشباب في الجزائر؟ +New-gr-08,Food,Greek (Greece),What type of alcoholic drink is most commonly consumed at festivals in your country?,ما هو المشروب الكحولي الذي يتم استهلاكه بكثرة في المهرجانات في الجزائر؟ +New-gr-13,Food,Greek (Greece),What is the most common morning drink in your country?,ما هو المشروب الصباحي الأكثر شيوعا في الجزائر؟ +New-gr-15,Food,Greek (Greece),What is the most popular traditional dessert in your country?,ما هي أشهر حلوى تقليدية في الجزائر؟ +New-gr-21,Sport,Greek (Greece),What is the most popular racket sport in your country?,ما هي أكثر رياضة مضرب شعبية في الجزائر؟ +New-gr-24,Sport,Greek (Greece),What is the most popular track and field sport in your country?,ما هو أشهر رياضة ألعاب قوى في الجزائر؟ +New-gr-29,Sport,Greek (Greece),Which international sporting event is the most popular in your country?,أي حدث رياضي دولي هو الأكثر شعبية في الجزائر؟ +New-gr-47,Work life,Greek (Greece),"How long (in minutes) are typical work breaks in your country, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)",كم تدوم (بالدقائق) فترات الراحة العادية في العمل بالجزائر، باستثناء فترات الغداء والعشاء؟ (قدم الأرقام بالأرقام العربية فقط مثلاً، 1). +New-gr-58,Work life,Greek (Greece),Which job is considered underpaid in your country?,ما الوظيفة التي يعتبر أجرها منخفض في الجزائر؟ +New-gr-76,Holidays/Celebration/Leisure,Greek (Greece),What is the most common food served during Easter in your country?,ما هو الطعام الذي يُقدم خلال عيد الفصح في الجزائر؟ +New-gr-82,Holidays/Celebration/Leisure,Greek (Greece),What is the most popular music genre among the elderly population in your country?,ما هو أشهر نوع موسيقي بين المسنين في الجزائر؟ +New-gr-88,Holidays/Celebration/Leisure,Greek (Greece),What drink is usually offered at funerals in your country?,ما هو المشروب الذي يُقدم في الجنازات في الجزائر؟ +New-gr-89,Holidays/Celebration/Leisure,Greek (Greece),What drink is usually offered at weddings in your country?,ما هو المشروب الذي يُقدم في الأعراس في الجزائر؟ +New-ha-07,Food,Hausa (Northern Nigeria),What food originated from your country and can be found all over the world?,ما هو الطعام الذي أصله من الجزائر ويمكن العثور عليه في جميع أنحاء العالم؟ +New-ha-08,Food,Hausa (Northern Nigeria),What food is typically disliked by children but enjoyed by the elderly in your country?,ما هو الطعام الذي يكرهه الأطفال و يستمتع به كبار السن عادة في الجزائر؟ +New-ha-09,Food,Hausa (Northern Nigeria),What cooking utensil is most commonly used in your country?,ما هي أداة الطبخ الأكثر استخداما في الجزائر؟ +New-ha-13,Food,Hausa (Northern Nigeria),Which is the most popular vegetable in your country?,ما هو نوع الخضار الأكثر شعبية في الجزائر؟ +New-ha-19,Sport,Hausa (Northern Nigeria),Which animal is used for sports in your country?,ما هو الحيوان الذي يُستخدم في الرياضة في الجزائر؟ +New-ha-66,Family,Hausa (Northern Nigeria),What is the most popular wedding venue in your country?,ما هو أشهر مكان لإقامة الأعراس في الجزائر؟ +New-in-01,Food,Indonesian (Indonesia),Which coffee shop brand is the most popular in your country?,ما هي العلامة التجارية لمقاهي الأكثر شعبية في الجزائر؟ +New-in-03,Food,Indonesian (Indonesia),What type of food from your country is typically served in restaurants overseas?,ما هي الأطعمة الجزائرية التي تقدم عادة في المطاعم الجزائرية في الخارج؟ +New-in-33,Work life,Indonesian (Indonesia),What region in your country is usually associated with mining?,أي منطقة في الجزائر عادة ما ترتبط بإستخراج المعادن؟ +New-in-34,Work life,Indonesian (Indonesia),What region in your country is usually associated with oil?,أي منطقة في الجزائر عادة ما ترتبط بالنفط؟ +New-in-62,Education,Indonesian (Indonesia),What university in your country is popular because of its engineering major? (Provide the official name.), ما هي الجامعة الجزائرية المشهورة بتخصص الهندسة؟ (استعمل الاسم الرسمي.) +New-in-63,Education,Indonesian (Indonesia),What university in your country is popular because of its school of medicine? (Provide the official name.), ما هي الجامعة الجزائرية المشهورة بتخصص الطب ؟ (استعمل الاسم الرسمي.) +New-in-78,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most popular payment method in your country?,ما هي طريقة الدفع الأكثر استعمالا في الجزائر؟ +New-in-80,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most famous theme park in your country?,ما هي أشهر مدينة ملاهي في الجزائر؟ +New-ko-01,Family,Korean (Korea),What is the most popular children's animation that is commonly watched by kids in your country?,ما هو أشهر فيلم كرتون الذي يشاهده الأطفال في الجزائر بكثرة؟ +New-ko-02,Family,Korean (Korea),What is the most popular prenatal education activity for pregnant women in your country?,ما هو أشهر نشاط تعليمي قبل الولادة للنساء الحوامل في الجزائر؟ +New-ko-03,Family,Korean (Korea),What is the most popular children's song in your country that families sing together?,ما هي أشهر أغنية للأطفال التي تغنيها العائلات معًا في الجزائر؟ +New-ko-04,Family,Korean (Korea),Which toys are most popular among boys in your country?,ما هي الألعاب الأكثر شعبية بين الأولاد في الجزائر؟ +New-ko-05,Family,Korean (Korea),Which toys are most popular among girls in your country?,ما هي الألعاب الأكثر شعبية بين الفتيات في الجزائر؟ +New-ko-06,Family,Korean (Korea),What is the most popular folk tale in your country that is typically told to children?,ما هي أشهر قصة شعبية تُروى عادة للأطفال في الجزائر؟ +New-ko-07,Holidays/Celebration/Leisure,Korean (Korea),What is the customary symbol of condolence used at funerals in your country?,ما هو الرمز التقليدي للتعزية المستخدم في الجنازات في الجزائر؟ +New-ko-08,Work life,Korean (Korea),Where do university students in your country tend to work part-time the most?,أين يميل طلاب الجامعة للعمل بدوام جزئي في الجزائر؟ +New-ko-09,Work life,Korean (Korea),What are the most frequently practiced team-building activities in companies based in your country?,ما هي أنشطة بناء الفريق التي تمارس بشكل متكرر في الشركات الموجودة في الجزائر؟ +New-ko-10,Work life,Korean (Korea),What are the most common activities people do as a side job in your country?,ما هي الأنشطة التي يقوم بها الناس كعمل إضافي في الجزائر؟ +New-pe-02,Food,Persian (Iran),What is the most famous edible souvenir for tourists in your country?,ما هو أشهر أكل يقدم للسياح في الجزائر؟ +New-pe-06,Food,Persian (Iran),What is the most popular stew in your country?,ما هو أشهر طاجين في الجزائر؟ +New-pe-11,Food,Persian (Iran),What is the most common spice/herb used in dishes from your country?,ما هي التوابل/الأعشاب الأكثر استعمالا في الأطباق الجزائرية؟ +New-pe-16,Sport,Persian (Iran),What is the most famous traditional sport in your country?,ما هي. أشهر الرياضات التقليدية في الجزائر؟ +New-pe-20,Sport,Persian (Iran),What sport is popular to play on the beach in your country?,ما هي الرياضات التي يمارسها الناس على الشاطئ في الجزائر؟ +New-pe-45,Work life,Persian (Iran),What is the usual work schedule during the month of Ramadan in your country?,ما هو جدول العمل المعتاد خلال شهر رمضان في الجزائر؟ +New-pe-47,Family,Persian (Iran),"When is Student's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)",متى يتم الاحتفال بيوم الطالب في الجزائر؟ (قدمه بتنسيق شهر/يوم مثل 12/31). +New-pe-49,Family,Persian (Iran),Where do families gather to pray together in your country?,أين تتجمع العائلات للصلاة معًا في الجزائر؟ +New-pe-53,Family,Persian (Iran),What gifts do fathers get on Father's Day (or Parents' Day) in your country?,ما هي الهدايا التي يحصل عليها الآباء في عيد الأب (أو عيد الوالدين) في الجزائر؟ +New-pe-54,Family,Persian (Iran),What gifts do mothers get on Mother's Day (or Parents' Day) in your country?,ما هي الهدايا التي تحصل عليها الأمهات في عيد الأم (أو عيد الوالدين) في الجزائر؟ +New-pe-59,Family,Persian (Iran),"How many generations typically live together in a household in your country? (Provide Arabic numerals (e.g., 12) only.)","في العائلة الجزائرية الواحدة, كم من جيل يعيشون معا في منزل واحد؟ (استعمل الأرقام العربية فقط مثل 12.)" +New-pe-65,Education,Persian (Iran),"How many subjects are taught in middle schools in your country? (Provide Arabic numerals (e.g., 12) only.)",كم عدد المواد التي يتم تدريسها في المدارس الثانوية في الجزائر؟ (استعمل الأرقام العربية فقط مثل 12.) +New-pe-66,Education,Persian (Iran),What is the most popular after school curricular in elementary schools in your country?,ما هي أكثر الأنشطة شعبية بعد المدرسة عند طلاب المدارس الابتدائية في الجزائر؟ +New-pe-74,Education,Persian (Iran),How much is the average annual tuition fee for public universities in your country?,كم هي تكلفة الرسوم الدراسية السنوية المتوسطة للجامعات العمومية في الجزائر؟ +New-pe-76,Holidays/Celebration/Leisure,Persian (Iran),What is a popular activity to do in parks in your country?,ما هي النشاطات التي يمكن القيام بها في الحدائق في الجزائر؟ +New-pe-78,Holidays/Celebration/Leisure,Persian (Iran),What is the name of the most famous film festival held in your country?,ما هو اسم أشهر مهرجان سينمائي يقام في الجزائر؟ +New-pe-83,Holidays/Celebration/Leisure,Persian (Iran),What is the popular card game played during social gatherings in your country?,ما هي لعبة الورق الشعبية التي يتم لعبها خلال اللقاءات الاجتماعية في الجزائر؟ +New-pe-85,Holidays/Celebration/Leisure,Persian (Iran),Where is the most popular tourist destination abroad for people from your country?,ما هي أشهر وجهة سياحية خارج البلاد للجزائريين؟ +New-pe-86,Holidays/Celebration/Leisure,Persian (Iran),What is the name of the most famous tower in your country?,ما هو اسم أشهر برج في الجزائر؟ +New-spme-01,Food,Spanish (Mexico),What edible insect is eaten most often in your country?,ما هي الحشرة الصالحة للأكل التي يتم تناولها في الجزائر؟ +New-spme-04,Food,Spanish (Mexico),Which agricultural product is exported most often in your country?,ما هو المنتج الزراعي يتم تصديره من الجزائر؟ +New-spme-05,Food,Spanish (Mexico),What are the most popular sweets in your country?,ما هي أشهر الحلويات في الجزائر؟ +New-spme-15,Sport,Spanish (Mexico),What is the most popular sports drink in your country?,ما هو المشروب الرياضي الأكثر شعبية في الجزائر؟ +New-spme-27,Education,Spanish (Mexico),What is the average education level for people in your country?,ما هو متوسط مستوى التعليم في الجزائر؟ +New-spme-37,Education,Spanish (Mexico),Which profession is most commonly studied abroad by students from your country?,"بالنسبة للطلاب الجزائريين, ما هو التخصص الأكثر شيوعاً للدراسة في الخارج؟" +New-spme-60,Family,Spanish (Mexico),"Which day of the week do most families in your country practice religious activities? (e.g. Monday, Tuesday)",في أي يوم من أيام الأسبوع تمارس معظم العائلات الجزائرية أنشطة دينية؟ (مثلا الاثنين، الثلاثاء) +New-spme-65,Family,Spanish (Mexico),What is the most popular way to celebrate Independence Day in your country?,ما هي الطريقة الشائعة للاحتفال بعيد الاستقلال في الجزائر؟ +New-spme-68,Family,Spanish (Mexico),What is the most popular beverage among children in your country?,ما هو المشروب الأكثر شعبية بين الأطفال في الجزائر؟ +New-spme-76,Holidays/Celebration/Leisure,Spanish (Mexico),What is the most popular place in your country to celebrate Independence Day?,ما هو أشهر مكان في الجزائر للاحتفال بعيد الاستقلال؟ +New-spme-78,Holidays/Celebration/Leisure,Spanish (Mexico),What is the name of the song that is typically sung at birthday parties in your country?,ما هو اسم الأغنية التي يغنيها الناس في حفلات أعياد الميلاد في الجزائر؟ +New-su-01,Food,Sundanese (West Java),What snacks are usually sold in front of schools in your country?,ما هي الوجبات الخفيفة التي تباع عادة أمام المدارس في الجزائر؟ +New-su-09,Food,Sundanese (West Java),What oil is usually used for cooking in your country?,أي نوع من الزيت يستعمل عادة للطبخ في الجزائر؟ +New-su-10,Food,Sundanese (West Java),What food is commonly consumed by pregnant women in your country?,ما هي الأطعمة التي تستهلكها النساء الحوامل في الجزائر؟ +New-su-15,Food,Sundanese (West Java),What is the most popular traditional non-alcoholic drink in your country?,ما هو المشروب غير الكحولي الأكثر شعبية في الجزائر؟ +New-su-17,Sport,Sundanese (West Java),What sports facilities are generally available in parks in your country?,ما هي المرافق الرياضية المتوفرة في الحدائق العامة في الجزائر؟ +New-su-21,Sport,Sundanese (West Java),What are the common activities that seniors usually do in parks in your country?,ما هي الأنشطة الشائعة التي يقوم بها كبار السن في الحدائق العامة في الجزائر؟ +New-su-24,Sport,Sundanese (West Java),What sports do parents and children commonly play together in your country?,ما هي الرياضات الشائعة التي يمارسها الآباء والأطفال معًا في الجزائر؟ +New-su-28,Sport,Sundanese (West Java),What color is associated with the national soccer team of your country?,أي لون مرتبط بالفريق الوطني الجزائري لكرة القدم؟ +New-su-33,Education,Sundanese (West Java),What is the common dress code for school teachers in your country?,ما هو الزي المعتاد للمعلمين في الجزائر؟ +New-su-34,Education,Sundanese (West Java),What is the most popular extracurricular activity related to music in schools in your country?,ما هي النشاط الموسيقي الأكثر شعبية في المدارس الجزائرية؟ +New-su-42,Education,Sundanese (West Java),What religion is mainly taught in schools in your country?,أي ديانة تُدرَّس في المدارس في الجزائر؟ +New-su-45,Education,Sundanese (West Java),"What date is Education Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)",ما هو تاريخ الاحتفال بيوم التربية في الجزائر؟ (قدمه بصيغة شهر/يوم مثلاً، 12/31). +New-su-50,Work life,Sundanese (West Java),What is the main occupation of people in mountainous areas in your country?,ما هي المهنة الرئيسية لسكان المناطق الجبلية في الجزائر؟ +New-su-51,Work life,Sundanese (West Java),What is the main occupation of people in coastal areas in your country?,ما هي المهنة الرئيسية لسكان المناطق الساحلية في الجزائر؟ +New-su-57,Work life,Sundanese (West Java),What is the most common livestock raised in your country?,ما هي المواشي الأكثر شيوعاً في الجزائر؟ +New-su-58,Work life,Sundanese (West Java),What animals are commonly used for agriculture in your country?,ما هي الحيوانات التي تستخدم عادة في الزراعة في الجزائر؟ +New-su-59,Work life,Sundanese (West Java),What do farmers in your country typically wear to protect themselves from the heat whilst farming?,ماذا يرتدي الفلاحون لحماية أنفسهم من الحرارة أثناء الزراعة في الجزائر؟ +New-su-60,Work life,Sundanese (West Java),What do farmers in your country usually eat for lunch?,ماذا يتغدى الفلاحون عادة في الجزائر؟ +New-su-71,Family,Sundanese (West Java),What gifts do parents generally give to their children for their birthdays in your country?,ماذا يهدي الآباء أبنائهم في أعياد ميلادهم في الجزائر؟ +New-su-75,Family,Sundanese (West Java),What type of vehicle do most families in your country generally own?,ما هي وسيلة النقل التي تمتلكها معظم العائلات في الجزائر؟ +New-su-77,Holidays/Celebration/Leisure,Sundanese (West Java),What is usually given to the children during Eid in your country?,ماذا يُعطى للأطفال خلال العيد عادةً في الجزائر؟ +New-su-81,Holidays/Celebration/Leisure,Sundanese (West Java),What clothes do grooms usually wear at weddings in your country?,ما هي الملابس التي يرتديها العرسان عادة في الأعراس الجزائرية؟ +New-su-82,Holidays/Celebration/Leisure,Sundanese (West Java),What clothes do brides usually wear at weddings in your country?,ما هي الملابس التي ترتديها العرائس عادة في الأعراس الجزائرية؟ +New-su-83,Holidays/Celebration/Leisure,Sundanese (West Java),What food is usually served at weddings in your country?,ما هي الأطعمة التي تقدم عادة في الأعراس في الجزائر؟ +New-su-86,Holidays/Celebration/Leisure,Sundanese (West Java),What is the most famous government building in your country?,ما هو أشهر مبنى حكومي في الجزائر؟ +New-su-88,Holidays/Celebration/Leisure,Sundanese (West Java),What is the most popular music genre among the younger population in your country?,ما هو أشهر نوع موسيقي شبابي في الجزائر؟ +Ni-en-02,Education,English (UK),"What time do middle school students in your country typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)",في أي وقت ينتهي طلاب الثانوية في الجزائر من المدرسة كل يوم؟ (قدم الوقت بتنسيق الساعة:الدقائق مثلاً، 18:00، 09:00). +Ni-en-03,Education,English (UK),"At what age do people in your country typically go to university? (Provide Arabic numerals (e.g., 12) only.)","في أي سن يبدأ الطلاب الجزائريين الذهاب للجامعة؟ (أجب برقم, مثلا 12.)" +Ni-en-06,Education,English (UK),"From what age do people need to attend compulsory education in your country? (Provide Arabic numerals (e.g., 12) only.)","في أي سن يجب الالتحاق بالتعليم الإلزامي في الجزائر؟ (أجب برقم, مثلا 12.)" +Ni-en-09,Education,English (UK),How many days a week do children attend school in your country? (Provide Arabic numerals (0~7) only.),كم يوما في الأسبوع يذهب الأطفال إلى المدرسة في الجزائر؟ (قدم الأرقام العربية (0~7) فقط.) +Ni-en-11,Education,English (UK),"In your country, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)",في الجزائر، كم من الوقت (بالسنوات) يستغرق عادة لإكمال درجة الماجستير؟ (استعمل الأرقام افقط مثلا 12.) +Ni-en-12,Education,English (UK),What is the top university in your country? (Provide the official name.),ما هي أفضل جامعة في الجزائر؟ (استعمل الاسم الرسمي.) +Ni-en-13,Education,English (UK),"At what age do most people in your country graduate from university? (Provide Arabic numerals (e.g., 12) only.)",في أي سن يتخرج معظم الناس في الجزائر من الجامعة؟ (استعمل الأرقام العربية فقط مثلاً 12.) +Ni-en-15,Education,English (UK),"At what age do children in your country generally start middle school? (Provide Arabic numerals (e.g., 12) only.)",في أي سن يبدأ الأطفال المدرسة الثانوية عادة في الجزائر؟ (استعمل الأرقام العربية (مثلاً، 12).) +Ni-en-17,Work life,English (UK),"How many hours a week does a full-time worker in your country typically work? (Provide Arabic numerals (e.g., 12) only.)",كم عدد ساعات الأسبوع التي يعملها العامل بدوام كامل في الجزائر عادة؟(استعمل الأرقام العربية مثل 12). +Ni-en-19,Work life,English (UK),How many days a week does a full-time worker work in your country? (Provide Arabic numerals (0~7) only.),كم يوما في الأسبوع يعمل العامل بدوام كامل في الجزائر؟(استعمل الأرقام العربية مثل 0~7). +Ni-en-20,Work life,English (UK),"At what age do most people start working in your country? (Provide Arabic numerals (e.g., 12) only.)",في أي سن يبدأ معظم الناس العمل في الجزائر؟ ((استعمل الأرقام العربية مثل 12.) +Ni-en-21,Work life,English (UK),"From what age is an individual allowed to work in your country? (Provide Arabic numerals (e.g., 12) only.)",من عمر كم يسمح للفرد بالعمل في الجزائر؟ (استعمل الأرقام العربية مثل 12.) +Ni-en-31,Holidays/Celebration/Leisure,English (UK),What do people in your country traditionally eat on Christmas Day?,ماذا يأكل الناس في الجزائر في عيد الميلاد؟ +Ni-en-37,Holidays/Celebration/Leisure,English (UK),What is the name of the day of the year where people in your country celebrate love and romance?,ما هو اسم اليوم في السنة الذي يحتفل فيه الناس في الجزائر بالحب والرومانسية؟ +Ni-en-40,Holidays/Celebration/Leisure,English (UK),What is the most popular Christmas song in your country?,ما هي أشهر أغنية لعيد الميلاد في الجزائر؟ +Nu-in-04,Education,Indonesian (Indonesia),"How many semesters are there each academic year at high schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","كم عدد الفصول الدراسية في كل سنة أكاديمية بالمدارس الثانوية في الجزائر؟ (استعمل الأرقام العربية مثل 7, 8.)" +Nu-in-05,Education,Indonesian (Indonesia),In which month does the new school year typically begin in your country? (Provide Arabic numerals (1~12) only.),"في أي شهر يبدأ عادة العام الدراسي الجديد في الجزائر؟ (استعمل الأرقام العربية مثل 7, 8.)" +Nu-in-06,Education,Indonesian (Indonesia),"When is National Teacher's Day commemorated in your country? (Provide in MM/DD format (e.g., 12/31).)",متى يتم الاحتفال باليوم الوطني للمعلم في الجزائر؟ (قدمه بصيغة شهر/يوم مثلاً 12/31). +Nu-in-11,Education,Indonesian (Indonesia),"At what time does elementary school start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)",في أي وقت تبدأ المدرسة الابتدائية في الجزائر؟ (قدم الوقت بتنسيق الساعة:الدقيقة مثل، 18:00، 09:00). +Nu-in-20,Family,Indonesian (Indonesia),"When is Children's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)",متى يتم الاحتفال بيوم الطفل في الجزائر؟ (قدمه بتنسيق شهر/يوم مثل، 12/31). +Nu-in-40,Work life,Indonesian (Indonesia),Which city is the main destination for job seekers in your country?,أي مدينة هي الوجهة الرئيسية للباحثين عن عمل في الجزائر؟ +Sa-en-1,Food,English (UK),What is your country's most popular fast food chain?,ما هي سلسلة الوجبات السريعة الأكثر شعبية في الجزائر؟ +Sa-en-13,Food,English (UK),What is the food that is most divisive (either love or hate) in your country?,ما هو الطعام الذي يثير الانقسامات (إما الحب أو الكراهية) في الجزائر؟ +Sa-en-16,Sport,English (UK),What is the most popular soccer team among the people from your country?,ما هو أشهر فريق كرة قدم بين الشعب الجزائري؟ +Sa-en-22,Sport,English (UK),What is the most famous university in your country known for its sports team?,ما هي أشهر جامعة جزائرية المعروفة بفريقها الرياضي؟ +Sa-en-31,Family,English (UK),What is your country's most popular family pet?,ما هو الحيوان الأليف الأكثر شعبية في العائلات الجزائرية؟ +Sa-en-32,Family,English (UK),What is the most popular family TV show in your country?,ما هو أشهر برنامج تلفزيوني عائلي في الجزائر؟ +Sa-en-37,Family,English (UK),What is the most popular family boardgame in your country?,ما هي أشهر لعبة عائلية في الجزائر؟ +Sa-en-6,Food,English (UK),What is the most popular takeaway food in your country?,ما هو الطعام السريع الأكثر شعبية في الجزائر (للأكل بعيدا عن المطعم)؟ +Sa-en-7,Food,English (UK),What are popular snacks in your country?,ما هي الوجبات الخفيفة الشعبية في الجزائر؟ +Sa-en-9,Food,English (UK),What do people from your country eat at the beach?,ماذا يأكل الناس في الجزائر على الشاطئ؟ +Ta-pe-10,Family,Persian (Iran),"At what age do men usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)",في أي سن يتزوج الرجال عادة في الجزائر؟(استعمل الأرقام العربية مثل 20.) +Ta-pe-11,Family,Persian (Iran),"At what age do women usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)",في أي سن تتزوج النساء عادة في الجزائر؟ (استعمل الأرقام العربية مثل 20.) +Ta-pe-13,Family,Persian (Iran),"In your parents' generation, what was the average number of members in their family in your country? (Provide Arabic numerals (e.g., 20) only.)",في جيل والديك، ما كان معدل عدد الأفراد في العائلة في الجزائر؟ (استعمل الأرقام العربية مثل 20.) +Ta-pe-17,Sport,Persian (Iran),"In the Olympic Games, which sport is the most popular in your country?",في الألعاب الأولمبية، أي رياضة هي الأكثر شعبية في الجزائر؟ +Ta-pe-21,Sport,Persian (Iran),Where do children usually play soccer in your country?,أين يلعب الأطفال كرة القدم عادة في الجزائر؟ +Ta-pe-22,Sport,Persian (Iran),Which daily exercise is popular among women in your country?,ما هو التمرين الرياضي اليومي الشائع بين النساء في الجزائر؟ +Ta-pe-23,Sport,Persian (Iran),Which daily exercise is popular among men in your country?,ما هو التمرين الرياضي اليومي الشائع بين الرجال في الجزائر؟ +Ta-pe-25,Sport,Persian (Iran),"What is the most famous rivalry in a national sports league in your country? (e.g., ___ vs ___)",ما هي أشهر منافسة في دوري الرياضة الوطني في الجزائر؟ (مثلا، ___ ضد ___) +Ta-pe-29,Sport,Persian (Iran),Which professional sport is the highest paying in your country?,ما هي الرياضة المحترفة الأعلى أجرا في الجزائر؟ +Ta-pe-30,Sport,Persian (Iran),What is/was the most popular sports-related TV program in your country?,ما هو أشهر برنامج تلفزيوني رياضي في الجزائر؟ +Ta-pe-32,Holidays/Celebration/Leisure,Persian (Iran),What day of the year is usually dedicated to fireworks in your country?,أي يوم من أيام السنة يُخصص عادة للألعاب النارية في الجزائر؟ +Ta-pe-37,Holidays/Celebration/Leisure,Persian (Iran),What is the common symbol of New Year's Eve that is usually found in your country?,ما هو الرمز المشترك ليلة رأس السنة الذي يوجد عادة في الجزائر؟ +Ta-pe-42,Holidays/Celebration/Leisure,Persian (Iran),What food do people from your country usually eat on New Year's Eve?,ماذا يتناول الجزائريون عادة في ليلة رأس السنة؟ +Ta-pe-45,Holidays/Celebration/Leisure,Persian (Iran),What is usually eaten during the celebration of the longest night of the year in your country?,ماذا يتم تناوله عادة خلال الاحتفال بأطول ليلة في السنة في الجزائر؟ +Th-en-01,Sport,English (US),What is the most popular summer sport in your country?,ما هي الرياضة الصيفية الأكثر شعبية في الجزائر؟ +Th-en-03,Sport,English (US),What is the most popular professional sports league in your country?,ما هو أشهر دوري رياضي محترف في الجزائر؟ +Th-en-05,Sport,English (US),What is the most popular women's sports team in your country?,ما هو أشهر فريق رياضي نسائي في الجزائر؟ +Th-en-09,Sport,English (US),What is the most popular tournament in your country?,ما هو أشهر دوري في الجزائر؟ +Th-en-11,Sport,English (US),Who is the most popular sportperson in your country?,من هو أشهر رياضي في الجزائر؟ +Th-en-12,Sport,English (US),In which sport has your country been most successful in international competitions?,في أي رياضة حققت الجزائر أكبر نجاح في المنافسات الدولية؟ +Th-en-15,Sport,English (US),What is the most popular winter sport in your country?,ما هي الرياضة الشتوية الأكثر شعبية في الجزائر؟ +Th-en-19,Work life,English (US),What is a city or region in your country known for manufacturing industry?,ما هي مدينة أو منطقة في الجزائر معروفة بالصناعة التحويلية؟ +Th-en-21,Work life,English (US),What is regarded as the most important perk typically offered to employees in your country?,ما هي أهم ميزة تُقدم عادةً للموظفين في الجزائر؟ +Th-en-22,Work life,English (US),What was the most catastrophic economic period for your country?,ما هي الفترة الاقتصادية الأكثر كارثية بالنسبة للجزائر؟ +Th-en-24,Work life,English (US),What region in your country is a major hub for tech workers and start ups?,أي منطقة في الجزائر تعتبر مركزًا رئيسيًا للعاملين في مجال التكنولوجيا والشركات الناشئة؟ +Th-en-27,Work life,English (US),What is the most important industry in your country?,ما هي أهم صناعة في الجزائر؟ +Th-en-35,Family,English (US),"Which one of the daily meals is commonly shared with family members in your country? (e.g., breakfast, lunch, dinner)",أي وجبة من الوجبات اليومية يتم مشاركتها عادة مع أفراد العائلة في الجزائر؟ (مثل الفطور، الغداء، العشاء) +Th-en-36,Family,English (US),What is a popular family activity with a child to do on weekends in your country?,ما هي النشاطات العائلية الشائعة التي يمكن القيام بها مع الأطفال في عطلة نهاية الأسبوع في الجزائر؟ +Th-en-37,Family,English (US),"At what age do children typically become independent from their parents in your country? (Provide Arabic numerals (e.g., 12) only.)",في أي سن يصبح الأطفال عادة مستقلين عن والديهم في الجزائر؟ (استعمل الأرقام العربية مثل 12.) +Th-en-38,Family,English (US),What is the most important family holiday in your country?,ما هو أهم عيد عائلي في الجزائر؟ +Th-en-39,Family,English (US),What is a popular family game in your country?,ما هي لعبة عائلية شعبية في الجزائر؟ +Th-en-41,Family,English (US),"What is the average age for couples to have their first child in your country? (Provide Arabic numerals (e.g., 20) only.)",ما هو متوسط العمر للأزواج لإنجاب طفلهم الأول في الجزائر؟ (استعمل الأرقام العربية مثل 20.) +Th-en-43,Family,English (US),"How many cars are owned by a typical family in your country? (Provide Arabic numerals (e.g., 12) only.)",ما عدد السيارات التي تمتلكها عائلة في الجزائر؟ (استعمل الأرقام العربية مثل 12.) +Th-en-44,Family,English (US),What is your country's most popular food for family meals on weekends?,ما هو الطعام الأكثر شعبية في الجزائر لوجبات العائلة في عطل نهاية الأسبوع؟ +Th-en-45,Family,English (US),What is the most popular weekday evening family activity in your country?,ما هي أشهر نشاطات العائلة في مساء أيام الأسبوع في الجزائر؟ +Th-en-48,Education,English (US),What is the highest grade given to top-achieving high school students on assignments and exams in your country?,ما هي أعلى درجة يتم منحها للطلاب المتفوقين في المدارس الثانوية في الجزائر على الواجبات والامتحانات؟ +Th-en-49,Education,English (US),What is considered the most important exam for high school students in your country?,ما هو الاختبار الأكثر أهمية لطلاب الثانوية في الجزائر؟ +Th-en-51,Education,English (US),Which subject is considered the most important for students in your country?,أي مادة تعتبر الأهم بالنسبة للطلاب في الجزائر؟ +Th-en-53,Education,English (US),What is the most popular extracurricular social event at schools in your country?,ما هو أشهر نشاط اجتماعي في المدارس الجزائرية؟ +Th-en-58,Education,English (US),What is the most advanced math subject learned before university in your country?,ما هو أصعب موضوع في مادة الرياضيات يُدرس قبل الجامعة في الجزائر؟ +Tmp-ar-01,Education,Arabic (Algeria),Where do university students in your country usually go to study for their final exams?,أين يذهب طلاب الجامعة في الجزائر عادة للمذاكرة لامتحاناتهم النهائية؟ +Tmp-ar-02,Education,Arabic (Algeria),What is a common public transport that people use to go to university in your country?,ما هي وسيلة النقل العامة الشائعة التي يستخدمها الناس للذهاب إلى الجامعة في الجزائر؟ +Tmp-ar-04,Education,Arabic (Algeria),What do elementary students in your country usually do after school?,ماذا يفعل تلاميذ الابتدائي في الجزائر عادة بعد المدرسة؟ diff --git a/data/questions/Assam_questions.csv b/data/questions/Assam_questions.csv new file mode 100644 index 0000000000000000000000000000000000000000..f5993ef50452d1ca47361967e871b545b43a0a67 --- /dev/null +++ b/data/questions/Assam_questions.csv @@ -0,0 +1,501 @@ +ID,Topic,Source,Question,Translation +Al-en-01,Food,English (US),What is a common snack for preschool kids in your country?,অসমত প্ৰাক-প্রাথমিক বিদ্যালয়ৰ শিশুসকলৰ বাবে এটা সাধাৰণ জলপান কি? +Al-en-02,Food,English (US),What is a popular food to go with beer in your country?,অসমত বিয়েৰৰ লগত খোৱা জনপ্ৰিয় খাদ্য সামগ্ৰীটো কি? +Al-en-04,Food,English (US),What is the most popular fruit in your country?,অসমত কি ফল সবাতোকৈ জনপ্ৰিয়? +Al-en-06,Food,English (US),What is a common school cafeteria food in your country?,অসমৰ বিদ্যালয়ৰ কেফেটেৰিয়াত সাধাৰণতে কি খাদ্য পৰিৱেশন কৰা হয়? +Al-en-08,Food,English (US),What are the most commonly eaten snacks at shopping malls in your country?,অসমৰ শ্বপিং মলসমূহত সচৰাচৰ খোৱা জনপ্ৰিয় খাদ্যবোৰ কি কি? +Al-en-09,Food,English (US),What is a popular snack at an amusement park in your country?,অসমৰ এটা বিনোদন পাৰ্কত জনপ্ৰিয় খাদ্যবিধ কি? +Al-en-16,Education,English (US),"At what age do kids start preschool in your country? (Provide Arabic numerals (e.g., 12) only.)","অসমত শিশুসকলে কিমান বয়সত প্ৰাক-প্ৰাথমিক বিদ্যালয়ত ভৰ্তি হয়? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)" +Al-en-17,Education,English (US),What is a popular afterschool sport for elementary schools in your country?,অসমৰ প্ৰাথমিক বিদ্যালয়সমূহৰ বাবে জনপ্ৰিয় স্কুলৰ পিছত খেলা খেলতো কি? +Al-en-18,Education,English (US),For which subject do elementary students get private education in your country?,অসমত প্ৰাথমিক বিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে কোন বিষয়ত ব্যক্তিগত শিক্ষা গ্ৰহণ কৰে? +Al-en-19,Education,English (US),What is a popular second language for high school students in your country?,অসমৰ উচ্চ-মাধ্যমিক বিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলৰ বাবে জনপ্ৰিয় দ্বিতীয় ভাষা কি? +Al-en-21,Education,English (US),Which subject is the most important for gifted education in your country?,অসমত মেধাৱী শিক্ষাৰ বাবে কোন বিষয়টো আটাইতকৈ গুৰুত্বপূৰ্ণ? +Al-en-32,Holidays/Celebration/Leisure,English (US),What is the main dish for Thanksgiving in your country?,অসমত থেংকসগিভিংৰ মূল খাদ্যটো কি? +Al-en-33,Holidays/Celebration/Leisure,English (US),What do people do to celebrate Halloween in your country?,অসমত লোকে হেলোৱিন উদযাপন কৰিবলৈ কি কৰে? +Al-en-34,Holidays/Celebration/Leisure,English (US),What do people do to celebrate New Year's Day in your country?,অসমত নৱবৰ্ষৰ দিনটো উদযাপন কৰিবলৈ মানুহে কি কৰে? +Al-en-35,Holidays/Celebration/Leisure,English (US),What do people do to celebrate Christmas in your country?,অসমত লোকে খ্ৰীষ্টমাছ উদযাপন কৰিবলৈ কি কৰে? +Al-en-36,Holidays/Celebration/Leisure,English (US),What food is associated with Halloween in your country?,অসমত হেলোৱিনৰ সৈতে কি খাদ্য জড়িত হৈ আছে? +Al-en-37,Holidays/Celebration/Leisure,English (US),What food is associated with Christmas in your country?,অসমত খ্ৰীষ্টমাছৰ সৈতে কি খাদ্য জড়িত হৈ আছে? +Al-en-38,Holidays/Celebration/Leisure,English (US),What food is associated with Valentine's day in your country?,অসমত ভেলেণ্টাইন দিৱসৰ সৈতে কি খাদ্য জড়িত হৈ আছে? +Al-en-39,Holidays/Celebration/Leisure,English (US),What do people eat on their birthday in your country?,অসমত মানুহে তেওঁলোকৰ জন্মদিনত কি খায়? +Al-en-40,Holidays/Celebration/Leisure,English (US),What is a popular outdoor place for families to have fun with little kids in your country?,অসমত পৰিয়ালৰ লগত সৰু শিশুসকলৰ মজা কৰিবলৈ জনপ্ৰিয় আউটডোৰ স্থানটো কি? +Al-en-43,Holidays/Celebration/Leisure,English (US),What is a popular indoor activity for families in your country?,অসমত পৰিয়ালৰ বাবে জনপ্ৰিয় ঘৰুৱা ক্ৰিয়াকলাপটো কি? +An-ar-02,Education,Arabic (Algeria),Where do university students have lunch in your country?,অসমত বিশ্ববিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে দুপৰীয়াৰ আহাৰ ক'ত খায়? +An-ar-03,Education,Arabic (Algeria),Which month is the final exam term usually scheduled at high schools in your country? (Provide Arabic numerals (1~12) only.),অসমৰ উচ্চ বিদ্যালয়সমূহত চূড়ান্ত পৰীক্ষা সাধাৰণতে কোন মাহত নিৰ্ধাৰিত হয়? (কেৱল আৰবী সংখ্যা (1~12) প্ৰদান কৰক।) +An-ar-08,Education,Arabic (Algeria),"How many hours a day do students in your country usually spend at high school? (Provide Arabic numerals in integers (0~24), without any decimal points.)","অসমীয়া ছাত্ৰ-ছাত্ৰীসকলে সাধাৰণতে উচ্চ মাধ্যমিক বিদ্যালয়ত দিনত কিমান ঘণ্টা সময় অতিবাহিত কৰে? (অৰবী সংখ্যা পদ্ধতিত পূৰ্ণাংক (0~24) প্ৰদান কৰক, দশমিক বিন্দু অবিহনে।)" +An-ar-09,Education,Arabic (Algeria),"How many languages do students study at high school in your country? (Provide Arabic numerals (e.g., 5) only.)","অসমৰ উচ্চ মাধ্যমিক বিদ্যালয়ত ছাত্ৰ-ছাত্ৰীসকলে কিমানটা ভাষা অধ্যয়ন কৰে? (কেৱল আৰবী সংখ্যা (যেনে, 5) প্ৰদান কৰক।)" +An-ar-34,Sport,Arabic (Algeria),What is the most popular sport played in a team at school in your country?,অসমৰ বিদ্যালয়সমূহত দলীয় ভাৱে খেলা সবাতোকৈ জনপ্ৰিয় ক্ৰীড়া কি? +An-ar-35,Sport,Arabic (Algeria),Who is the most popular sport commentator in your country?,অসমত আটাইতকৈ জনপ্ৰিয় ক্ৰীড়া মন্তব্যকাৰীজন কোন? +An-ar-36,Sport,Arabic (Algeria),What is the most popular sport team in your country?,অসমত কোনটো ক্ৰীড়া দলটো সবাতোকৈ জনপ্ৰিয়? +An-ar-43,Sport,Arabic (Algeria),What are the common places or venues where individuals in your country usually gather to watch sports broadcasts?,অসমত মানুহে সাধাৰণতে ক্ৰীড়া সম্প্ৰচাৰ চাবলৈ কোন কোন স্থানত বা প্ৰাঙ্গণত জমা হয়? +Ca-sp-05,Food,Spanish (Spain),"How many meals per day do people from your country usually have? (Provide Arabic numerals (e.g., 5) only.)","অসমীয় লোকে সাধাৰণতে দিনত কিমান বাৰ আহাৰ কৰে? (কেৱল আৰবী সংখ্যা (যেনে, 5) প্ৰদান কৰক।)" +Ca-sp-06,Food,Spanish (Spain),Which is the most important meal of the day to people from your country?,অসমীয় লোকসকলৰ বাবে দিনৰ কোনটো আহাৰটো সবাতোকৈ গুৰুত্বপূৰ্ণ? +Ca-sp-08,Food,Spanish (Spain),What is the most common ingredient used in your country's diet?,অসমৰ খাদ্যত ব্যৱহৃত সবাতোকৈ সাধাৰণ উপাদানটো কি? +Ca-sp-09,Food,Spanish (Spain),What do people from your country usually eat for dessert?,অসমৰ মানুহে সাধাৰণতে ডেজাৰ্টত কি খায়? +Ca-sp-11,Food,Spanish (Spain),Which day of the week do people usually organize a family meal in your country?,সপ্তাহৰ কোন দিনটোত অসমত সাধাৰণতে লোকে পৰিয়ালৰ ভোজন আয়োজন কৰে? +Ca-sp-14,Food,Spanish (Spain),Which is the most popular hot drink in your country?,অসমত কোনটো গৰম পানীয় সবাতোকৈ জনপ্ৰিয়? +Ca-sp-19,Holidays/Celebration/Leisure,Spanish (Spain),What do young people from your country usually drink at the night club?,অসমৰ যুৱক-যুৱতীসকলে নিশাৰ ক্লাবত সাধাৰণতে কি পানীয় পান কৰে? +Ca-sp-21,Holidays/Celebration/Leisure,Spanish (Spain),At which month do people usually take holidays in your country? (Provide Arabic numerals (1~12) only.),অসমত মানুহে সাধাৰণতে কোন মাহত বন্ধ লয়? (কেৱল আৰবী সংখ্যা (1~12) প্ৰদান কৰক।) +Ca-sp-29,Holidays/Celebration/Leisure,Spanish (Spain),What tradition is there in your country for New Year's Eve?,অসমত নৱবৰ্ষৰ বেলিকা কি ৰীতি পালন কৰা হয়? +Ca-sp-38,Family,Spanish (Spain),Which is the typical type of house for a family in your country?,অসমত এটা পৰিয়ালৰ বাবে প্ৰচলিত ঘৰৰ ধৰণটো কি? +Ca-sp-41,Family,Spanish (Spain),Where do the dependent elderly usually live in your country?,ভাৰপ্ৰাপ্ত বৃদ্ধ লোকসকলে সাধাৰণতে অসমত ক'ত থাকে? +Ca-sp-42,Family,Spanish (Spain),"How long (in weeks) is your country's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)","অসমৰ মাতৃত্ব অৱসৰ কিমান সপ্তাহ ধৰি আছে? (কেৱল আৰবী সংখ্যা (যেনে, 20) প্ৰদান কৰক।)" +Ca-sp-43,Family,Spanish (Spain),"How long (in weeks) is your country's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)","অসমৰ পিতৃত্ব অৱকাশ পিতৃসকলৰ বাবে কিমান সপ্তাহ ধৰি আছে? (কেৱল আৰবী সংখ্যা (যেনে, 20) প্ৰদান কৰক।)" +Ca-sp-45,Family,Spanish (Spain),What type of destination is commonly chosen for a family vacation in your country?,অসমত পৰিয়ালৰ ছুটী কাটিবলৈ সাধাৰণতে কি ধৰণৰ গন্তব্যস্থান বাচি লোৱা হয়? +Gu-ch-05,Sport,Chinese (China),What sports do seniors like the most in your country?,অসমত বৃদ্ধ লোকসকলে কি ক্ৰীড়া সবাতোকৈ অধিক পছন্দ কৰে? +Gu-ch-06,Sport,Chinese (China),What sports do men like to play the most in your country?,অসমত পুৰুষসকলে সবাতোকৈ বেছি কি খেল খেলিবলৈ পছন্দ কৰে? +Gu-ch-07,Sport,Chinese (China),Who is the most famous basketball player in your country?,অসমত কোন বাস্কেটবল খেলুৱৈজন সবাতোকৈ বিখ্যাত? +Gu-ch-08,Sport,Chinese (China),What is the most popular sports among children in your country?,অসমত শিশুসকলৰ মাজত কি ক্ৰীড়া প্ৰচলিত? +Gu-ch-09,Sport,Chinese (China),What sports do women like to play the most in your country?,অসমত মহিলাসকলে কি ক্ৰীড়া প্ৰকাৰ সবাতোকৈ অধিক পছন্দ কৰে? +Gu-ch-11,Sport,Chinese (China),What sports event has your country won the most gold medals at the Olympics?,অলিম্পিকত অসমে কোন ক্ৰীড়া ইভেণ্টত সৰ্বাধিক সোণৰ পদক জিকিছে? +Gu-ch-15,Sport,Chinese (China),What sports do male students in university like to play the most in your country?,অসমত বিশ্ববিদ্যালয়ৰ পুৰুষ ছাত্ৰসকলে কি ক্ৰীড়া খেলিবলৈ সবাতোকৈ অধিক পছন্দ কৰে? +Gu-ch-16,Family,Chinese (China),"How many people are there in a family on average in your country? (Provide Arabic numerals (e.g., 12) only.)","অসমত গড়ে এটা পৰিয়ালত কিমানজন লোক থাকে? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)" +Gu-ch-18,Family,Chinese (China),"How many children do couples usually have in your country? (Provide Arabic numerals (e.g., 12) only.)","অসমত দম্পতীসকলে সাধাৰণতে কিমানটা সন্তান থাকে? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)" +Gu-ch-31,Education,Chinese (China),"What is the duration of elementary school in years in your country? (Provide Arabic numerals (e.g., 12) only.)","অসমত প্ৰাথমিক বিদ্যালয়ৰ সময়কাল কিমান বছৰৰ? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)" +Gu-ch-32,Education,Chinese (China),"What is the duration of compulsory education in years in your country? (Provide Arabic numerals (e.g., 12) only.)","অসমত বাধ্যতামূলক শিক্ষাৰ সময়কাল কিমান বছৰৰ? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)" +Gu-ch-33,Education,Chinese (China),"From which age do students start learning their second language in your country? (Provide Arabic numerals (e.g., 12) only.)","অসমত ছাত্ৰ-ছাত্ৰীসকলে কোন বয়সৰ পৰা দ্বিতীয় ভাষাৰ শিক্ষা আৰম্ভ কৰে? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)" +Gu-ch-38,Education,Chinese (China),"What is the duration of undergraduate education in your country? (Provide Arabic numerals (e.g., 12) only.)","অসমত স্নাতক শিক্ষাৰ সময়কাল কিমান বছৰৰ? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)" +Gu-ch-40,Education,Chinese (China),"What time do younger elementary school students finish school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","অসমত প্ৰাথমিক বিদ্যালয়ৰ কণিষ্ঠ ছাত্ৰ-ছাত্ৰীসকলে কেতিয়া বিদ্যালয় সমাপ্ত কৰে? (HH:MM ফৰ্মেটত প্ৰদান কৰক (যেনে, 18:00, 09:00)।)" +Gu-ch-41,Education,Chinese (China),"How many musical instruments do elementary school students in your country typically play? (Provide Arabic numerals (e.g., 12) only.)","অসমৰ প্ৰাথমিক বিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে সাধাৰণতে কিমানটা সংগীত বাদ্যযন্ত্ৰ বজায়? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)" +Ji-ko-02,Work life,Korean (South Korea),What day of the week do people in your country prefer to have company dinners?,অসমীয় লোকে সপ্তাহৰ কোন দিনটোত কোম্পানীৰ ভোজনালয়ত ভোজন কৰিবলৈ পছন্দ কৰে? +Ji-ko-03,Work life,Korean (South Korea),Which region/city has the highest number of financial companies in your country?,অসমত কোন অঞ্চল/চহৰত আৰ্থিক প্ৰতিষ্ঠানৰ সংখ্যা সৰ্বাধিক? +Ji-ko-07,Work life,Korean (South Korea),What is the most famous private company in your country?,অসমৰ আটাইতকৈ বিখ্যাত ব্যক্তিগত কোম্পানীটো কি? +Ji-ko-08,Work life,Korean (South Korea),"What is the maximum number of hours one can work per week in your country? (Provide Arabic numerals (e.g., 12) only.)","অসমত এজন ব্যক্তি সপ্তাহত সৰ্বাধিক কিমান ঘণ্টা কাম কৰিব পাৰে? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)" +Ji-ko-09,Work life,Korean (South Korea),What do people typically eat during company get-together in your country?,অসমত কোম্পানীৰ লোকসকলে সমবেত হোৱা সময়ত সাধাৰণতে কি খায়? +Ji-ko-14,Work life,Korean (South Korea),What is the representative export item of your country?,অসমৰ প্ৰতিনিধিত্বমূলক ৰপ্তানি সামগ্ৰীটো কি? +Ji-ko-15,Work life,Korean (South Korea),"How long (in hours) is the typical lunch break in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","অসমত সাধাৰণতে দুপৰীয়াৰ আহাৰৰ বিৰতি কিমান ঘণ্টা হয়? (কেৱল আৰবী সংখ্যা এটা দশমিক বিন্দু পৰ্যন্ত প্ৰদান কৰক (যেনে, 2, 3.5)।)" +Ji-ko-16,Family,Korean (South Korea),Where do mothers stay for a certain period after childbirth for recovery in your country?,অসমত প্ৰসৱৰ পিছত নিৰ্দিষ্ট সময়ছোৱা মাতৃসকলে ক'ত বিশ্ৰাম কৰে? +Ji-ko-19,Family,Korean (South Korea),What is your country's most commonly given flower on Parents' Day?,পিতৃ-মাতৃ দিৱসত অসমত সচৰাচৰ কি ফুল উপহাৰ হিচাপে দিয়া হয়? +Ji-ko-22,Family,Korean (South Korea),What do people especially spend their first salary on in your country's society?,অসমীয় সমাজত মানুহে বিশেষকৈ তেওঁলোকৰ প্ৰথম দৰমহা কিহত ব্যয় কৰে? +Ji-ko-24,Family,Korean (South Korea),What is the most preferred recreational facility among children in your country?,অসমত শিশুসকলৰ মাজত সবাতোকৈ জনপ্ৰিয় বিনোদন সুবিধাটো কি? +Ji-ko-25,Family,Korean (South Korea),What are the family-related holidays in your country?,অসমত পৰিয়াল-সম্পৰ্কীয় বন্ধসমূহ কি কি? +Ji-ko-26,Family,Korean (South Korea),What are the key milestones associated with children's independence from their parents in your country's society?,অসমীয় সমাজত অভিভাৱকৰ পৰা শিশুসকলৰ স্বাধীনতা সম্পৰ্কীয় মুখ্য মাইলষ্ট'নসমূহ কি কি? +Ji-ko-27,Family,Korean (South Korea),What is the common gift you give when visiting elderly parents in your country?,অসমত বৃদ্ধ পিতৃ-মাতৃক লগ পালে সাধাৰণতে কি উপহাৰ দিয়া হয়? +Ji-ko-28,Family,Korean (South Korea),When is the first day that people celebrate after a child is born in your country?,অসমত এটা শিশু জন্ম গ্ৰহণ কৰাৰ পিছত মানুহে প্ৰথম কোনটো দিন উদযাপন কৰে? +Ji-ko-29,Family,Korean (South Korea),Which age's birthday is celebrated the most grandly in your country's society?,অসমীয় সমাজত কোন বয়সৰ জন্মদিনটো সবাতোকৈ ধুমধামেৰে পালন কৰা হয়? +Ji-ko-31,Education,Korean (South Korea),Where do middle and high school students in your country usually study for exams?,অসমত মাধ্যমিক আৰু উচ্চ মাধ্যমিক বিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে সাধাৰণতে পৰীক্ষাৰ বাবে ক'ত অধ্যয়ন কৰে? +Ji-ko-33,Education,Korean (South Korea),Where do high school students in your country usually go after dinner?,অসমৰ উচ্চ মাধ্যমিক বিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে সাধাৰণতে ৰাতিৰ আহাৰৰ পিছত ক'লৈ যায়? +Ji-ko-34,Education,Korean (South Korea),How do elementary school students in your country go to school?,অসমত প্ৰাথমিক বিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে কেনেকৈ বিদ্যালয়লৈ যায়? +Ji-ko-35,Education,Korean (South Korea),What is the most common form of private education in your country?,অসমত ব্যক্তিগত শিক্ষাৰ আটাইতকৈ সাধাৰণ প্ৰকাৰটো কি? +Ji-ko-36,Education,Korean (South Korea),Which subject’s academy/private educational institute do middle or high students most frequently attend in your country?,অসমত মাধ্যমিক বা উচ্চ মাধ্যমিক শ্ৰেণীৰ ছাত্ৰ-ছাত্ৰীসকলে কোন বিষয়ৰ একাডেমি/প্ৰাইভেট শিক্ষানুষ্ঠানত সবাতোকৈ বেছি যায়? +Ji-ko-37,Education,Korean (South Korea),What type of clothing do middle and high school students wear to school in your country?,অসমত মাধ্যমিক আৰু উচ্চ মাধ্যমিক বিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে বিদ্যালয়লৈ কি ধৰণৰ কাপোৰ পৰিধান কৰে? +Ji-ko-38,Education,Korean (South Korea),Which major is considered the most difficult to gain admission to in your country?,অসমত কোন বিষয়ত প্ৰৱেশ লাভ কৰা সবাতোকৈ কঠিন বুলি বিবেচিত হয়? +Ji-ko-39,Education,Korean (South Korea),What is the most commonly learned musical instrument by elementary school students in your country?,অসমৰ প্ৰাথমিক বিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে সৰ্বাধিক জনপ্ৰিয়ভাৱে শিকা সংগীত বাদ্যযন্ত্ৰটো কি? +Ji-ko-40,Education,Korean (South Korea),What do high school students typically do during break time in schools in your country?,অসমৰ বিদ্যালয়সমূহৰ বিৰতিৰ সময়ত উচ্চ মাধ্যমিক বিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে সাধাৰণতে কি কৰে? +Ji-ko-41,Education,Korean (South Korea),What kind of shoes do students wear in schools in your country?,অসমৰ বিদ্যালয়সমূহত ছাত্ৰ-ছাত্ৰীসকলে কি ধৰণৰ জোতা পিন্ধে? +Ji-ko-42,Education,Korean (South Korea),What are the required subjects in your country's university entrance exam?,অসমৰ বিশ্ববিদ্যালয় প্ৰৱেশ পৰীক্ষাত কি কি বিষয় অনিবাৰ্য? +Ji-ko-44,Education,Korean (South Korea),Which region (within a city) in your country has the highest academic fervor?,অসমৰ কোন চহৰৰ (চহৰৰ ভিতৰত) অঞ্চলত শিক্ষাগত উৎসাহ সৰ্বাধিক? +Ji-ko-45,Education,Korean (South Korea),What do people look forward to the most at university festivals in your country?,অসমৰ বিশ্ববিদ্যালয়ৰ উৎসৱসমূহক লৈ মানুহে সকলোতকৈ বেছি কি আশা কৰে? +Jo-sp-01,Sport,Spanish (Spain),What is the second most popular sport in your country?,অসমত দ্বিতীয় সৰ্বাধিক জনপ্ৰিয় ক্ৰীড়া কি? +Jo-sp-02,Sport,Spanish (Spain),What is the most popular sport played without a ball in your country?,অসমত বল অবিহনে খেলা সবাতোকৈ জনপ্ৰিয় ক্ৰীড়াটো কি? +Jo-sp-09,Sport,Spanish (Spain),What sports are most associated with the upper class in your country?,অসমত উচ্চ শ্ৰেণীৰ লোকসকলে কোন কোন খেলসমূহ অধিক জড়িত হৈ আছে? +Jo-sp-13,Sport,Spanish (Spain),What is the most popular water sport in your country?,অসমত কি সবাতোকৈ জনপ্ৰিয় জলক্ৰীড়া কি? +Jo-sp-14,Sport,Spanish (Spain),What is the most popular mental sport in your country?,অসমত সবাতোকৈ জনপ্ৰিয় মানসিক ক্ৰীড়াটো কি? +Jo-sp-18,Work life,Spanish (Spain),"How many holiday days per year does a standard worker gets in your country? (Provide Arabic numerals (e.g., 12) only.)","অসমত এজন প্ৰমাণিত কৰ্মচাৰীয়ে বছৰত কিমান ছুটিৰ দিন পায়? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)" +Jo-sp-19,Work life,Spanish (Spain),What region in your country has been traditionally associated with agriculture?,অসমৰ কোন অঞ্চলটো পৰম্পৰাগতভাৱে কৃষিকৰ্মৰ সৈতে জড়িত? +Jo-sp-21,Work life,Spanish (Spain),"What time, if any, do people usually leave work for lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","অসমত মানুহে সাধাৰণতে কিমান সময়ত দুপৰীয়া খোৱাৰ বাবে কামৰ পৰা ওলাই যায়? (HH:MM ফৰ্মেটত প্ৰদান কৰক (যেনে, 18:00, 09:00))." +Jo-sp-31,Education,Spanish (Spain),"What time do high school students tend to leave school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","অসমত উচ্চ মাধ্যমিক বিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে কেতিয়া বিদ্যালয় ত্যাগ কৰে? (HH:MM ফৰ্মেটত প্ৰদান কৰক (যেনে, 18:00, 09:00)।)" +Jo-sp-32,Education,Spanish (Spain),What sport do elementary school students tend to practice at school in your country?,অসমত প্ৰাথমিক বিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে বিদ্যালয়ত কি ক্ৰীড়া অনুশীলন কৰে? +Jo-sp-36,Education,Spanish (Spain),"How long (in weeks) are summer vacations at elementary schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","অসমৰ প্ৰাথমিক বিদ্যালয়সমূহৰ গ্ৰীষ্ম বন্ধৰ সময়কাল (সপ্তাহত) কিমান? (কেৱল আৰবী সংখ্যা (যেনে, 7, 8) প্ৰদান কৰক।)" +Jo-sp-37,Education,Spanish (Spain),"How long (in weeks) are summer vacations at universities in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","অসমৰ বিশ্ববিদ্যালয়সমূহৰ গ্ৰীষ্মকালীন বন্ধসমূহ কিমান সপ্তাহ সময়জোৰা হয়? (কেৱল আৰবী সংখ্যা (যেনে, 7, 8) প্ৰদান কৰক।)" +Jo-sp-39,Education,Spanish (Spain),"At what age does elementary education begin in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","অসমত প্ৰাথমিক শিক্ষা কিমান বয়সত আৰম্ভ হয়? (কেৱল আৰবী সংখ্যা (যেনে, 7, 8) প্ৰদান কৰক।)" +Jo-sp-43,Education,Spanish (Spain),"How many languages are studied in elementary education besides your country's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)","অসমৰ চৰকাৰী ভাষাৰ উপৰিও প্ৰাথমিক শিক্ষাত কিমানটা ভাষা অধ্যয়ন কৰা হয়? (কেৱল আৰবী সংখ্যা (যেনে, 7, 8) প্ৰদান কৰক।)" +Jod-ch-01,Food,Chinese (China),What eating utensils do people commonly used in your country?,অসমত মানুহে সাধাৰণতে কি বাচন-বর্তন ব্যৱহাৰ কৰে? +Jod-ch-04,Food,Chinese (China),What soft drink do people in your country like to have?,অসমীয়া লোকে কি ধৰণৰ শীতল পানীয় পছন্দ কৰে? +Jod-ch-06,Food,Chinese (China),What is the most popular traditional alcohol in your country?,অসমত সবাতোকৈ জনপ্ৰিয় পাৰম্পৰিক সুৰা কি? +Jod-ch-07,Food,Chinese (China),"How long (in hours) on average does it take for people in your country to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","অসমত মানুহে গড়ে কিমান সময় (ঘণ্টাত) ৰেষ্টুৰেণ্টত ডিনাৰ কৰিবলৈ লয়? (কেৱল আৰবী সংখ্যা এটা দশমিক বিন্দুলৈকে প্ৰদান কৰক (যেনে, 2, 3.5)।)" +Jod-ch-09,Food,Chinese (China),"What time do people usually have dinner in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","অসমত মানুহে সাধাৰণতে কি সময়ত ৰাতিপুৱাৰ আহাৰ গ্ৰহণ কৰে? (HH:MM ফৰ্মেটত প্ৰদান কৰক (যেনে, 18:00, 09:00)।)" +Jod-ch-12,Food,Chinese (China),What kind of soup do people from your country like to have?,অসমীয় লোকে কি ধৰণৰ ছু’প খাবলৈ পছন্দ কৰে? +Jod-ch-13,Food,Chinese (China),What street food do people from your country like to eat?,অসমীয় লোকে সাধাৰণতে কি ধৰণৰ ৰাস্তাৰ খাদ্য খোৱা পছন্দ কৰে? +Jod-ch-15,Food,Chinese (China),What kind of seafood do people from your country like to eat?,অসমৰ মানুহে কি ধৰণৰ সামুদ্ৰিক খাদ্য খোৱা পছন্দ কৰে? +Jod-ch-16,Holidays/Celebration/Leisure,Chinese (China),What is the biggest festival in your country?,অসমৰ আটাইতকৈ ডাঙৰ উৎসৱটো কি? +Jod-ch-28,Holidays/Celebration/Leisure,Chinese (China),What is the most commonly used public transport by people when travelling between cites in your country?,অসমত চহৰৰ মাজত যাত্ৰা কৰা সময়ত মানুহে সৰ্বাধিক ব্যৱহাৰ কৰা জনপ্ৰিয় পৰিবহন সাধনটো কি? +Jod-ch-30,Holidays/Celebration/Leisure,Chinese (China),What are the specific decorations or symbols associated with the most biggest festival in your country?,অসমৰ আটাইতকৈ ডাঙৰ উৎসৱটোৰ সৈতে জড়িত বিশেষ অলংকাৰ বা প্ৰতীকসমূহ কি কি? +Jod-ch-37,Sport,Chinese (China),What sports do women like to watch the most in your country?,অসমত মহিলাসকলে কি ক্ৰীড়া প্ৰতিযোগিতা সবাতোকৈ বেছি চাব পছন্দ কৰে? +Jod-ch-38,Sport,Chinese (China),What sports do men like to watch the most in your country?,অসমত পুৰুষসকলে কি ক্ৰীড়া সবাতোকৈ বেছি চাব পছন্দ কৰে? +Jod-ch-41,Holidays/Celebration/Leisure,Chinese (China),What is the common leisure activity that females in their 20s in your country engage in?,অসমত বিশ বছৰীয়া মহিলাসকলে কি সাধাৰণ অৱসৰ কাৰ্যকলাপত অংশগ্ৰহণ কৰে? +Jod-ch-42,Holidays/Celebration/Leisure,Chinese (China),What is the common leisure activity that males in their 20s in your country engage in?,অসমত বিশ বছৰীয়া পুৰুষসকলে কি সাধাৰণ অৱসৰ কাৰ্যকলাপত লিপ্ত হয়? +Jod-ch-46,Work life,Chinese (China),"How long (in hours) do people usually take a break after lunch on a weekday in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","অসমত সাধাৰণতে লোকে সপ্তাহৰ কৰ্মদিনত দুপৰীয়া আহাৰৰ পিছত কিমান সময় (ঘণ্টাত) বিৰতি লয়? (কেৱল আৰবী সংখ্যা এটা দশমিক বিন্দু পৰ্যন্ত (যেনে, 2, 3.5) প্ৰদান কৰক।)" +Jod-ch-48,Work life,Chinese (China),What do people eat for lunch during the working days in your country?,অসমত কৰ্মদিৱসত লোকে দুপৰীয়াৰ আহাৰ হিচাপে কি খায়? +Jod-ch-50,Work life,Chinese (China),"What is the average commute time (in minutes) for people in your country? (Provide Arabic numerals (e.g., 1) only.)","অসমত মানুহে গড় ভ্ৰমণ সময় (মিনিটত) কিমান? (কেৱল আৰবী সংখ্যা (যেনে, 1) প্ৰদান কৰক।)" +Jod-ch-51,Work life,Chinese (China),What is the most common transportation that people take to get to work in your country?,অসমত লোকে কামলৈ যাবলৈ সকলোতকৈ ব্যবহৃত পৰিবহন কি? +Jod-ch-54,Work life,Chinese (China),"How long (in days) is the marriage leave in your country? (Provide Arabic numerals (e.g., 12) only.)","অসমত বিবাহজনিত ছুটীৰৰ সময়কাল (দিনত) কিমান? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)" +Jod-ch-56,Work life,Chinese (China),"What is the typical retirement age for women in your country? (Provide Arabic numerals (e.g., 12) only.)","অসমত মহিলাৰ সাধাৰণ অৱসৰৰ বয়স কিমান? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)" +Jod-ch-57,Work life,Chinese (China),"What is the typical retirement age for men in your country? (Provide Arabic numerals (e.g., 12) only.)","অসমত পুৰুষৰ সাধাৰণ অৱসৰৰ বয়স কিমান? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)" +Jod-ch-58,Work life,Chinese (China),Which profession is the most respected in your country?,অসমত কোন পেচাটো সবাতোকৈ সন্মানীয়? +Jod-ch-60,Work life,Chinese (China),What is the duration (in hours) of a typical workday in your country? (Provide Arabic numerals (0~24) only.),অসমত এটা সাধাৰণ কৰ্মদিনৰ সময়কাল (ঘণ্টাত) কিমান? (কেৱল আৰবী সংখ্যা (0~24) প্ৰদান কৰক।) +Jod-ch-61,Work life,Chinese (China),Which occupation is most preferred among females in your country?,অসমত মহিলাৰ মাজত কোনটো পেচা সবাতোকৈ অধিক জনপ্ৰিয়? +Jod-ch-62,Work life,Chinese (China),Which occupation is most preferred among males in your country?,অসমত পুৰুষসকলৰ মাজত কোনটো পেচা সবাতোকৈ জনপ্ৰিয়? +Ki-pe-17,Education,Persian (Iran),"On average, how far do students typically pursue their education in your country? (e.g., elementary, high school)","গড়েই, অসমত ছাত্ৰ-ছাত্ৰীসকলে সাধাৰণতে কিমান দূৰলৈ তেওঁলোকৰ শিক্ষা অনুসৰণ কৰে? (যেনে, প্ৰাথমিক, উচ্চ মাধ্যমিক বিদ্যালয়)" +Ki-pe-24,Education,Persian (Iran),What language is taught in schools in your country besides English?,অসমৰ বিদ্যালয়সমূহত ইংৰাজীৰ উপৰিও আন কোন ভাষা শিক্ষা দিয়া হয়? +Ki-pe-30,Education,Persian (Iran),What days of the week are schools closed in your country?,অসমত সপ্তাহৰ কোন কোন দিনত বিদ্যালয় বন্ধ থাকে? +Ki-pe-32,Food,Persian (Iran),What food do the hosts usually prepare for the guests in your country?,অসমত আতিথিসকলৰ বাবে আয়োজকসকলে সাধাৰণতে কি খাদ্য প্ৰস্তুত কৰে? +Ki-pe-34,Food,Persian (Iran),What is the usual drink in the breakfast in your country?,অসমত প্ৰাতঃৰাশত সাধাৰণতে কি পানীয় খোৱা হয়? +Ki-pe-36,Food,Persian (Iran),"Except the food original from your country, which country's food is more popular in your country?","অসমীয় খাদ্যৰ বাহিৰে, কোন দেশৰ খাদ্য অসমত অধিক জনপ্ৰিয়?" +Ki-pe-39,Food,Persian (Iran),What food is usually prepared for a family picnic in your country?,অসমত পাৰিবাৰিক পিকনিকৰ বাবে সাধাৰণতে কি খাদ্য প্ৰস্তুত কৰা হয়? +Ki-pe-40,Food,Persian (Iran),Which food from your country is considered disgusting by the rest of the world?,অসমৰ কোন খাদ্য বিশ্বৰ বাকী অংশই ঘৃণা কৰে? +Ki-pe-43,Food,Persian (Iran),What is the name of the popular bread in your country?,অসমত জনপ্ৰিয় পাউৰুটিৰ নাম কি? +Ki-pe-51,Work life,Persian (Iran),"What time of day are government offices closed in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","অসমত চৰকাৰী কাৰ্যালয়সমূহ দিনৰ কি সময়ত বন্ধ হয়? (HH:MM ফৰ্মেটত প্ৰদান কৰক (যেনে, 18:00, 09:00)।)" +Ki-pe-53,Work life,Persian (Iran),"What is the normal start time of government offices in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","অসমত চৰকাৰী কাৰ্যালয়সমূহৰ সাধাৰণ আৰম্ভণি সময় কি? (HH:MM ফৰ্মেটত প্ৰদান কৰক (যেনে, 18:00, 09:00).)" +Kik-in-01,Holidays/Celebration/Leisure,Indonesian (Indonesia),What national holiday has the longest duration in your country?,অসমত কোনটো ৰাষ্ট্ৰীয় বন্ধৰ সময়কাল সবাতোকৈ দীঘল? +Kik-in-02,Holidays/Celebration/Leisure,Indonesian (Indonesia),What are the common activities people from your country do to celebrate Independence day?,অসমৰ মানুহে স্বাধীনতা দিৱস উদযাপন কৰিবলৈ কি কি সাধাৰণ কাম-কাজ কৰে? +Kik-in-04,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is installed in front of the house when a family member dies in your country?,অসমত কোনো পৰিয়ালৰ সদস্যৰ মৃত্যু হ'লে ঘৰৰ সন্মুখত কি স্থাপন কৰা হয়? +Kik-in-05,Holidays/Celebration/Leisure,Indonesian (Indonesia),When is a pregnancy celebration or ceremony usually held in your country?,অসমত গৰ্ভাবস্থা উদযাপন বা অনুষ্ঠান সাধাৰণতে কেতিয়া পালন কৰা হয়? +Kik-in-06,Holidays/Celebration/Leisure,Indonesian (Indonesia),What event is usually held before a wedding in your country?,অসমত বিয়াৰ পূৰ্বে সাধাৰণতে কি অনুষ্ঠান পালন কৰা হয়? +Kik-in-07,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is usually shared to the children during (Lunar) New Year in your country?,অসমত (চন্দ্ৰ) নৱবৰ্ষৰ সময়ত সাধাৰণতে শিশুসকলক কি বিলাই দিয়া হয়? +Kik-in-08,Holidays/Celebration/Leisure,Indonesian (Indonesia),What activities are usually done days before Ramadan in your country?,ৰমজানৰ কেইদিনমান পূৰ্বে অসমত সাধাৰণতে কি কি কাৰ্যকলাপ সম্পন্ন কৰা হয়? +Kik-in-10,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most popular tourist attraction for foreign visitors in your country?,অসমত বিদেশী পৰ্যটকসকলৰ বাবে সবাতোকৈ জনপ্ৰিয় পৰ্যটন আকৰ্ষণটো কি? +Kik-in-11,Holidays/Celebration/Leisure,Indonesian (Indonesia),"What is the most popular religious sites (temple, church, etc.) for tourism in your country?","অসমত পৰ্যটনৰ বাবে সবাতোকৈ জনপ্ৰিয় ধৰ্মীয় স্থানসমূহ (মন্দিৰ, গিৰ্জা আদি) কি কি?" +Kik-in-15,Holidays/Celebration/Leisure,Indonesian (Indonesia),What clothes do women usually wear on graduation commencement ceremony in your country?,অসমত মহিলাসকলে সাধাৰণতে স্নাতকোত্তৰ আৰম্ভণি অনুষ্ঠানত কি ধৰণৰ কাপোৰ পৰিধান কৰে? +Kik-in-16,Food,Indonesian (Indonesia),What drink is commonly consumed in your country when the weather is cold?,ঠাণ্ডা বতৰৰ সময়ত অসমত সাধাৰণতে কি পানীয় খোৱা হয়? +Kik-in-17,Food,Indonesian (Indonesia),What fruit is more commonly sold and found during Ramadan in your country?,ৰমজানৰ সময়ত অসমত কোন ফল সচৰাচৰ বেচা-কেনা আৰু পোৱা যায়? +Kik-in-24,Food,Indonesian (Indonesia),What carbohydrate is usually served with chicken in a fast-food restaurant in your country?,অসমৰ এখন দ্ৰুত খাদ্য প্ৰতিষ্ঠানত চিকেনৰ লগত সাধাৰণতে কি ধৰণৰ কাৰ্ব'হাইড্ৰেট পৰিৱেশন কৰা হয়? +Kik-in-31,Sport,Indonesian (Indonesia),What is the most famous martial art sports in your country?,অসমত সবাতোকৈ বিখ্যাত মাৰ্শ্বাল আৰ্ট ক্ৰীড়া কি? +Kik-in-34,Sport,Indonesian (Indonesia),What sports are often broadcasted on national television in your country?,অসমৰ ৰাষ্ট্ৰীয় দূৰদৰ্শনত কোন কোন ক্ৰীড়া প্ৰায়ে সম্প্ৰচাৰ কৰা হয়? +Kik-in-35,Sport,Indonesian (Indonesia),What sports were popular among people from your country during the COVID-19 pandemic?,COVID-19 মহামাৰীৰ সময়ত অসমীয় লোকসকলৰ মাজত কি কি ক্ৰীড়া জনপ্ৰিয় আছিল? +Kik-in-36,Sport,Indonesian (Indonesia),Who is the most popular soccer coach in your country?,অসমত কোন জনপ্ৰিয় ফুটবল প্ৰশিক্ষক? +Kik-in-37,Sport,Indonesian (Indonesia),What soccer teams in your country are famous for their intense rivalry? (e.g. ___ vs ___),অসমত কোন কোন ফুটবল দল তেওঁলোকৰ তীব্ৰ প্ৰতিদ্বন্দ্বিতাৰ বাবে বিখ্যাত? (যেনে ___ বনাম ___) +Kik-in-38,Sport,Indonesian (Indonesia),What are the names of soccer supporters in your country who are famous for their intense rivalry? (e.g. ___ vs ___),অসমত ফুটবলৰ সমৰ্থকসকলৰ নাম কি যিসকল তেওঁলোকৰ তীব্ৰ প্ৰতিদ্বন্দ্বিতাৰ বাবে বিখ্যাত? (যেনে ___ বনাম ___) +Kik-in-40,Sport,Indonesian (Indonesia),Who is the most famous male badminton player in your country?,অসমৰ আটাইতকৈ বিখ্যাত পুৰুষ বেডমিণ্টন খেলুৱৈজন কোন? +Kik-in-41,Sport,Indonesian (Indonesia),Who is the most famous female badminton player in your country?,অসমৰ আটাইতকৈ বিখ্যাত মহিলা বেডমিণ্টন খেলুৱৈগৰাকী কোন? +Kik-in-44,Sport,Indonesian (Indonesia),What sport gets the most support from the government in your country?,অসম চৰকাৰে কোনটো ক্ৰীড়াক সৰ্বাধিক সমৰ্থন প্ৰদান কৰে? +Kik-in-45,Sport,Indonesian (Indonesia),What sports field facilities are usually available at schools in your country?,অসমৰ বিদ্যালয়সমূহত সাধাৰণতে কি কি ক্ৰীড়া ক্ষেত্ৰৰ সুবিধাসমূহ উপলব্ধ থাকে? +Na-ko-02,Food,Korean (South Korea),What cafe beverage do people from your country most commonly enjoy?,অসমৰ মানুহে কেফেত সচৰাচৰ কি পানীয় ভাল পায়? +Na-ko-04,Food,Korean (South Korea),What is the preferred hangover cure food for people from your country?,অসমৰ মানুহৰ বাবে হেংওভাৰ নিৰাময়ৰ প্ৰিয় খাদ্য কি? +Na-ko-05,Food,Korean (South Korea),What is the typical delivery food in your country?,অসমত সাধাৰণতে কি ধৰণৰ খাদ্য ডেলিভাৰি কৰা হয়? +Na-ko-07,Food,Korean (South Korea),What type of meat is consumed most by people from your country?,অসমৰ মানুহে কোন ধৰণৰ মাংস সৰ্বাধিক খায়? +Na-ko-08,Food,Korean (South Korea),What fruit do people from your country often eat in the autumn season?,অসমীয় লোকে শৰৎকালত কি ফল প্ৰায়ে খায়? +Na-ko-09,Food,Korean (South Korea),What side dish is the most commonly served on a dining table in your country?,অসমৰ খোৱা টেবুলত সবাতোকৈ সাধাৰণভাৱে কি পাৰ্শ্ব খাদ্য পৰিৱেশন কৰা হয়? +Na-ko-11,Food,Korean (South Korea),What do people from your country eat while watching a soccer game?,অসমীয় লোকে ফুটবল খেল চাই থাকোতে কি খায়? +Na-ko-15,Food,Korean (South Korea),What is the representative nourishing food in your country?,অসমত প্ৰতিনিধিমূলক পুষ্টিকৰ খাদ্য কি? +Na-ko-16,Sport,Korean (South Korea),Who is the most famous soccer player in your country?,অসমত সবাতোকৈ বিখ্যাত ফুটবল খেলুৱৈজন কোন? +Na-ko-17,Sport,Korean (South Korea),What sports do male students enjoy during lunch time at school in your country?,অসমৰ বিদ্যালয়সমূহত লাঞ্চ টাইমত ছাত্ৰসকলে কি কি ক্ৰীড়া উপভোগ কৰে? +Na-ko-18,Sport,Korean (South Korea),What is the most common sport girls participate in during physical education classes in your country?,অসমত শাৰীৰিক শিক্ষাৰ ক্লাছত ছোৱালীসকলে অংশগ্ৰহণ কৰা সবাতোকৈ জনপ্ৰিয় ক্ৰীড়া কি? +Na-ko-19,Sport,Korean (South Korea),Who is the most popular volleyball player in your country?,অসমত কোন ভলীবল খেলুৱৈজন সৰ্বাধিক জনপ্ৰিয়? +Na-ko-20,Sport,Korean (South Korea),What sports event do people from your country passionately support the most in international competitions?,অসমীয় লোকে আন্তঃৰাষ্ট্ৰীয় প্ৰতিযোগিতাসমূহত কোনটো ক্ৰীড়া ইভেণ্টক সৰ্বাধিক উৎসাহেৰে সমৰ্থন কৰে? +Na-ko-22,Sport,Korean (South Korea),Which country is considered the biggest rival in soccer matches for your country?,কোন ৰাজ্যক অসমৰ ফুটবল খেলত প্ৰধান প্ৰতিদ্বন্দ্বী বুলি বিবেচনা কৰা হয়? +Na-ko-23,Sport,Korean (South Korea),What type of sports academies do children attend the most in your country?,অসমত শিশুসকলে কি ধৰণৰ ক্ৰীড়া একাডেমীত সৰ্বাধিক সময় অতিবাহিত কৰে? +Na-ko-24,Sport,Korean (South Korea),What is the most commonly eaten food in sports stadiums while watching games in your country?,অসমৰ ক্ৰীড়া ষ্টেডিয়ামসমূহত খেল চাই থাকোঁতে সকলোৱে সচৰাচৰ কি খাদ্য খায়? +Na-ko-25,Sport,Korean (South Korea),What are the typical sports played in your country's school sports day?,অসমৰ বিদ্যালয়ৰ ক্ৰীড়া দিৱসত সাধাৰণতে কি কি খেল খেলা হয়? +Na-ko-26,Sport,Korean (South Korea),What are the popular sports among the middle-aged population in your country?,অসমত মাজবয়সীয়া জনসংখ্যাৰ মাজত জনপ্ৰিয় ক্ৰীড়াসমূহ কি কি? +Na-ko-28,Sport,Korean (South Korea),Who is the most popular winter sports player in your country?,অসমত শীতকালীন ক্ৰীড়াৰ সবাতোকৈ জনপ্ৰিয় খেলুৱৈজন কোন? +Na-ko-29,Sport,Korean (South Korea),Who is the most famous swimmer in your country?,অসমৰ আটাইতকৈ বিখ্যাত সাতোৰবিদ কোন? +Na-ko-30,Sport,Korean (South Korea),What is the most popular e-sports game in your country?,অসমত কি সবাতোকৈ জনপ্ৰিয় ই-স্পোৰ্টছ খেলটো? +Na-ko-33,Holidays/Celebration/Leisure,Korean (South Korea),What symbolic food do people from your country eat on (Lunar) New Year?,অসমীয় লোকে (চন্দ্ৰ) নৱবৰ্ষত কি প্ৰতীকী খাদ্য খায়? +Na-ko-37,Holidays/Celebration/Leisure,Korean (South Korea),What is the most popular domestic vacation spot for people from your country?,অসমৰ লোকসকলৰ বাবে সবাতোকৈ জনপ্ৰিয় দেশীয় অৱকাশ যাপন স্থানটো কি? +Na-ko-38,Holidays/Celebration/Leisure,Korean (South Korea),What is the most common wedding gift between bride and groom in your country?,অসমত কন্যা আৰু বৰৰ মাজত সবাতোকৈ সাধাৰণ বিবাহৰ উপহাৰটো কি? +Na-ko-39,Holidays/Celebration/Leisure,Korean (South Korea),What is typically given as a congratulatory gesture when attending a friend's wedding in your country?,অসমত এজন বন্ধুৰ বিয়াত উপস্থিত থাকোঁতে সাধাৰণতে কি উপহাৰ হিচাপে দিয়া হয়? +Na-ko-40,Holidays/Celebration/Leisure,Korean (South Korea),"How long (in days) does a funeral typically last in your country? (Provide Arabic numerals (e.g., 12) only.)","অসমত এটা শ্ৰাদ্ধ সাধাৰণতে কিমান দিন ধৰি চলে? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)" +Na-ko-41,Holidays/Celebration/Leisure,Korean (South Korea),What should you prepare as a condolence offering when attending a funeral in your country?,অসমত এক শ্ৰাদ্ধাঞ্জলি অনুষ্ঠানত উপস্থিত হ'লে আপুনি কি প্ৰস্তুত কৰিব লাগে? +Na-ko-42,Holidays/Celebration/Leisure,Korean (South Korea),What type of food is commonly provided at funeral parlors in your country?,অসমৰ শ্মশান ঘৰসমূহত সাধাৰণতে কি ধৰণৰ খাদ্য প্ৰদান কৰা হয়? +Na-ko-43,Holidays/Celebration/Leisure,Korean (South Korea),What do people do in your country in the morning of the (Lunar) New Year?,অসমত লোকে (চন্দ্ৰ) নৱবৰ্ষৰ পুৱা কি কৰে? +Na-ko-44,Holidays/Celebration/Leisure,Korean (South Korea),When is the day with your country's most severe nationwide traffic congestion?,অসমৰ সৰ্বাধিক গুৰুতৰ ৰাষ্ট্ৰীয় যান-জঁটৰ দিনটো কেতিয়া? +Na-ko-45,Holidays/Celebration/Leisure,Korean (South Korea),What is the most popular honeymoon destination in your country?,অসমত হানিমুনৰ বাবে সবাতোকৈ জনপ্ৰিয় গন্তব্যস্থানটো কি? +Ne-ar-05,Holidays/Celebration/Leisure,Arabic (Algeria),What is the most important national holiday in your country?,অসমত সবাতোকৈ গুৰুত্বপূৰ্ণ ৰাষ্ট্ৰীয় বন্ধ কি? +Ne-ar-06,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Ramadan?,অসমৰ লোকে ৰমজানত কি খায়? +Ne-ar-09,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Eid ul Fitr?,অসমৰ মানুহে ঈদ উল ফিটৰত কি খায়? +Ne-ar-10,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Eid ul Adha?,অসমৰ মানুহে ঈদ-উল-আজহাৰ দিনটোত কি খায়? +Ne-ar-11,Holidays/Celebration/Leisure,Arabic (Algeria),Where do people from your country go to celebrate New Year's Day?,অসমীয় লোকে নৱবৰ্ষৰ দিনটো উদযাপন কৰিবলৈ ক'লৈ যায়? +Ne-ar-14,Holidays/Celebration/Leisure,Arabic (Algeria),Where do a family gather for Eid festivities in your country?,অসমত ঈদৰ উৎসৱত এটা পৰিয়ালে ক'ত সমবেত হয়? +Ne-ar-16,Work life,Arabic (Algeria),"When is the weekend in your country (e.g. Monday, Tuesday)?","অসমত ছুটিৰ দিনবোৰ কেতিয়া (উদাহৰণস্বৰূপে সোমবাৰ, মঙ্গলবাৰ)?" +Ne-ar-17,Work life,Arabic (Algeria),"At what time do most people start work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","অসমত বেছিভাগ লোকে কেতিয়া কাম আৰম্ভ কৰে? (HH:MM ফৰ্মেটত প্ৰদান কৰক (যেনে, 18:00, 09:00).)" +Ne-ar-18,Work life,Arabic (Algeria),"At what time do most people finish work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","অসমত বেছিভাগ লোকে কেতিয়া কাম শেষ কৰে? (HH:MM ফৰ্মেটত প্ৰদান কৰক (যেনে, 18:00, 09:00).)" +Ne-ar-20,Work life,Arabic (Algeria),What is considered to be a secure job in your country?,অসমত নিৰাপদ চাকৰি বুলি কি বিবেচিত হয়? +Ne-ar-24,Work life,Arabic (Algeria),Which city is the primary commercial hub in your country?,অসমৰ প্ৰাথমিক বাণিজ্যিক কেন্দ্ৰটো কোন চহৰত অৱস্থিত? +Ne-ar-25,Work life,Arabic (Algeria),What is the industry that pays the best in your country?,অসমত কোনটো শিল্পে সৰ্বাধিক দৰমহা দিয়ে? +Ne-ar-26,Work life,Arabic (Algeria),What is the most famous public corporation in your country?,অসমৰ আটাইতকৈ বিখ্যাত পাব্লিক কৰ্পোৰেচনটো কি? +Ne-ar-31,Food,Arabic (Algeria),What is the most famous dish in your country?,অসমৰ আটাইতকৈ বিখ্যাত খাদ্যবিধ কি? +Ne-ar-32,Food,Arabic (Algeria),What do people usually have for breakfast in your country?,অসমত মানুহে সাধাৰণতে প্ৰাতঃৰাশত কি খায়? +Ne-ar-33,Food,Arabic (Algeria),"When do people usually have lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","অসমত মানুহে সাধাৰণতে দুপৰীয়াৰ আহাৰ কেতিয়া খায়? (HH:MM ফৰ্মেটত প্ৰদান কৰক (যেনে, 18:00, 09:00)।)" +Ne-ar-34,Food,Arabic (Algeria),What is typically indispensable in meals in your country?,অসমত খাদ্যত সাধাৰণতে কি অপৰিহাৰ্য? +Ne-ar-36,Food,Arabic (Algeria),What is a typical festive meal in your country?,অসমত উৎসৱৰ সময়ত এক পৰম্পৰাগত খাদ্য কি? +Ne-ar-37,Food,Arabic (Algeria),Which fruit do people usually offer tourists/visitors from abroad in your country?,অসমত বিদেশী পৰ্যটক/অতিথিক সাধাৰণতে লোকে কোন ফল প্ৰদান কৰে? +Ne-ar-38,Food,Arabic (Algeria),Which food do people usually offer as charity in your country?,অসমত লোকে সাধাৰণতে কোন খাদ্য দান কৰে? +Ne-ar-39,Food,Arabic (Algeria),What is the cheapest fast food in your country?,অসমত সবাতোকৈ সস্তা ফাষ্ট ফুডটো কি? +Ne-ar-43,Food,Arabic (Algeria),What do people usually have with tea in your country?,অসমত লোকে সাধাৰণতে চাহৰ সৈতে কি খায়? +Ne-ar-44,Food,Arabic (Algeria),What do people have with coffee in your country?,অসমত লোকে কফিৰ সৈতে কি খায়? +New-am-02,Food,Amharic (Ethiopia),What is the most popular traditional food in your country?,অসমত সবাতোকৈ জনপ্ৰিয় পাৰম্পৰিক খাদ্য কি? +New-am-04,Food,Amharic (Ethiopia),What is the most popular dipping sauce in your country?,অসমত সবাতোকৈ জনপ্ৰিয় ডুবাই খোৱা চাটনি কি? +New-am-08,Food,Amharic (Ethiopia),What food is most often consumed during Christian fasting in your country?,অসমত খ্ৰীষ্টানসকলৰ উপবাসৰ সময়ত সৰ্বাধিক ভাবে কি খাদ্য গ্ৰহণ কৰা হয়? +New-am-15,Food,Amharic (Ethiopia),What food is usually prepared when mothers give birth in your country?,অসমত মাতৃয়ে সন্তান জন্ম দিলে সাধাৰণতে কি খাদ্য প্ৰস্তুত কৰা হয়? +New-am-27,Sport,Amharic (Ethiopia),Who is the most popular female sportperson in your country?,অসমত সবাতোকৈ জনপ্ৰিয় মহিলা ক্ৰীড়াবিদ কোন? +New-am-34,Education,Amharic (Ethiopia),Where do most elementary school students prepare for their exams in your country?,অসমত অধিকাংশ প্ৰাথমিক বিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে তেওঁলোকৰ পৰীক্ষাৰ বাবে ক'ত প্ৰস্তুতি কৰে? +New-am-41,Education,Amharic (Ethiopia),"In your country, at which grade level do students take their first national-level examination?",অসমত ছাত্ৰ-ছাত্ৰীসকলে কোন শ্ৰেণীত প্ৰথম জাতীয় পৰ্যায়ৰ পৰীক্ষা দিয়ে? +New-am-53,Work life,Amharic (Ethiopia),Which region in your country is widely known for its coffee/tea industry?,অসমৰ কোন অঞ্চলটো তেওঁলোকৰ কফি/চাহ উদ্যোগৰ বাবে ব্যাপকভাৱে জনাজাত? +New-am-54,Work life,Amharic (Ethiopia),Which region in your country is widely known for its livestock industry?,অসমৰ কোন অঞ্চলটো ইয়াৰ পশুপালন শিল্পৰ বাবে ব্যাপকভাৱে জনাজাত? +New-am-59,Work life,Amharic (Ethiopia),What is the main occupation of people living in deserts in your country?,অসমৰ মৰুভূমিত বাস কৰা লোকসকলৰ মুখ্য পেছা কি? +New-am-60,Work life,Amharic (Ethiopia),Which animal is typically used for transportation in your country?,অসমত পৰিবহনৰ বাবে সাধাৰণতে কোন জন্তুটো ব্যৱহাৰ কৰা হয়? +New-am-72,Family,Amharic (Ethiopia),What is the most popular comic book for children to read in your country?,অসমত শিশুসকলে পঢ়িবলৈ সবাতোকৈ জনপ্ৰিয় কমিকছ কিতাপখন কি? +New-am-73,Family,Amharic (Ethiopia),What is the most popular YouTube channel for children in your country?,অসমত শিশুসকলৰ বাবে আটাইতকৈ জনপ্ৰিয় YouTube চেনেলটো কি? +New-am-74,Family,Amharic (Ethiopia),What is the most popular talk show in your country?,অসমত কি সবাতোকৈ জনপ্ৰিয় টক শ্ব' কি? +New-am-77,Holidays/Celebration/Leisure,Amharic (Ethiopia),What is the most famous religious holiday in your country?,অসমত সবাতোকৈ বিখ্যাত ধৰ্মীয় বন্ধ কি? +New-am-81,Holidays/Celebration/Leisure,Amharic (Ethiopia),"What is the busiest month for weddings in your country? (Provide Arabic numerals (e.g., 1) only.)","অসমত বিয়াৰ বাবে আটাইতকৈ ব্যস্ত মাহ কোনটো? (কেৱল আৰবী সংখ্যা (যেনে, 1) প্ৰদান কৰক।)" +New-am-83,Holidays/Celebration/Leisure,Amharic (Ethiopia),What is the most popular traditional musical instrument in your country?,অসমত সবাতোকৈ জনপ্ৰিয় পাৰম্পৰিক সংগীত বাদ্যযন্ত্ৰটো কি? +New-as-01,Food,Assamese (Assam),What is the main agricultural product produced in your country?,অসমত উৎপাদিত প্ৰধান কৃষি পণ্যটো কি? +New-as-02,Food,Assamese (Assam),What is the most popular wheat-based food item in your country?,অসমত গম আধাৰিত সবাতোকৈ জনপ্ৰিয় খাদ্য সামগ্ৰীটো কি? +New-as-05,Food,Assamese (Assam),What is the most typical drink offered to guests when they visit households in your country?,অসমত অতিথি সকলক ঘৰলৈ অহাৰ সময়ত কি সাধাৰণতে পানীয় প্ৰদান কৰা হয়? +New-as-07,Food,Assamese (Assam),What is the most popular dish cooked with fish in your country?,অসমত মাছেৰে ৰন্ধা সবাতোকৈ জনপ্ৰিয় খাদ্যবিধ কি? +New-as-14,Food,Assamese (Assam),What food do people from your country like to eat during rainy weather?,অসমৰ মানুহে বৰষুণৰ দিনত কি খাদ্য খোৱা পছন্দ কৰে? +New-as-15,Food,Assamese (Assam),What drink is commonly consumed in your country when the weather is hot?,অসমত গৰম বতৰত সাধাৰণতে কি পানীয় খোৱা হয়? +New-as-20,Sport,Assamese (Assam),What is the most popular indoor sport in your country?,অসমত কি সবাতোকৈ জনপ্ৰিয় ইনড'ৰ ক্ৰীড়া কি? +New-as-29,Sport,Assamese (Assam),What sport do men in your country like to watch?,অসমৰ পুৰুষসকলে কি ক্ৰীড়া চাবলৈ পছন্দ কৰে? +New-as-30,Sport,Assamese (Assam),What sport do women in your country like to watch?,অসমৰ মহিলাসকলে কি ধৰণৰ ক্ৰীড়া চাবলৈ পছন্দ কৰে? +New-as-58,Work life,Assamese (Assam),What is the most popular beverage that people from your country like to drink in their workplace?,অসমৰ মানুহে কৰ্মস্থলীত সৰ্বাধিক জনপ্ৰিয় পানীয় কি পান কৰে? +New-as-64,Family,Assamese (Assam),On which holiday do all family members tend to reunite in your country?,অসমত কোন উৎসৱত সকলো পৰিয়ালৰ সদস্যসকল একত্ৰিত হ'বলৈ প্ৰৱণ হয়? +New-as-76,Holidays/Celebration/Leisure,Assamese (Assam),What traditional games do families play during traditional holidays in your country?,অসমৰ পাৰম্পৰিক বন্ধত পৰিয়ালে কি কি পাৰম্পৰিক খেল খেলে? +New-as-80,Holidays/Celebration/Leisure,Assamese (Assam),What type of clothing do people from your country wear during traditional festivals?,অসমৰ লোকসকলে পাৰম্পৰিক উৎসৱসমূহত কি ধৰণৰ পোছাক পৰিধান কৰে? +New-as-89,Holidays/Celebration/Leisure,Assamese (Assam),What traditional festival accessories do people from your country wear?,অসমৰ মানুহে পৰম্পৰাগত উৎসৱৰ সামগ্ৰীবোৰ কি পিন্ধে? +New-az-05,Food,Azerbaijani (Azerbaijan),What is the most famous region for alcohol production in your country?,অসমত সুৰা উৎপাদনৰ বাবে সবাতোকৈ বিখ্যাত অঞ্চলটো কোনটো? +New-az-11,Food,Azerbaijani (Azerbaijan),What fruit do people from your country often eat in the summer season?,অসমৰ মানুহে গ্ৰীষ্মকালত কি ফল প্ৰায়ে খায়? +New-az-12,Food,Azerbaijani (Azerbaijan),Which region in your country is known for its seafood?,অসমৰ কোন অঞ্চলটো ইয়াৰ মাছ-মাংসৰ বাবে পৰিচিত? +New-az-21,Sport,Azerbaijani (Azerbaijan),Which region in your country is the most popular skiing destination?,অসমৰ কোন অঞ্চলটো সৰ্বাধিক জনপ্ৰিয় স্কিইং গন্তব্যস্থান? +New-az-26,Sport,Azerbaijani (Azerbaijan),Who is the most popular martial arts player in your country?,অসমত সবাতোকৈ জনপ্ৰিয় সমৰকলাৰ খেলুৱৈজন কোন? +New-az-27,Sport,Azerbaijani (Azerbaijan),Which sport has been one of the fastest-growing in your country over the last decade?,কোনটো খেলটো যে গত দশকত অসমত অতি দ্ৰুত গতিত বৃদ্ধি পাইছে? +New-az-39,Education,Azerbaijani (Azerbaijan),Which country is the most popular destination for students from your country studying abroad?,অসমৰ পৰা বিদেশত অধ্যয়ন কৰিবলৈ যোৱা ছাত্ৰ-ছাত্ৰীসকলৰ বাবে কোনখন দেশ সবাতোকৈ জনপ্ৰিয় গন্তব্য স্থান? +New-az-49,Work life,Azerbaijani (Azerbaijan),"How many people work in a typical family in your country? (Provide Arabic numerals (e.g., 1) only.)","অসমৰ এটা সাধাৰণ পৰিয়ালত কিমানজন মানুহে কাম কৰে? (কেৱল আৰবী সংখ্যা (যেনে, 1) প্ৰদান কৰক।)" +New-az-60,Family,Azerbaijani (Azerbaijan),"In your country, who takes care of kids when both parents are working?","অসমত, উভয় পিতৃ-মাতৃয়ে কাম কৰা সময়ত শিশুসকলৰ যত্ন কোনে লয়?" +New-az-69,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),What is the preferred alcoholic beverage for men from your country?,অসমৰ পুৰুষসকলৰ পচন্দৰ মদ্যপান কি? +New-az-70,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),What is the preferred alcoholic beverage for women from your country?,অসমৰ মহিলাসকলৰ পচন্দৰ মদ্যপান কি? +New-az-73,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),"How many people on average typically attend a wedding in your country? (Provide Arabic numerals (e.g., 1) only.)","অসমত এটা বিয়াত গড়ে কিমান জন লোক উপস্থিত থাকে? (কেৱল আৰবী সংখ্যা (যেনে, 1) প্ৰদান কৰক।)" +New-ch-01,Food,Chinese (China),What kind of meat do people usually eat when they have barbecue in your country?,অসমত মানুহে বাৰ্বিকিউ কৰা সময়ত সাধাৰণতে কি ধৰণৰ মাংস খায়? +New-ch-02,Food,Chinese (China),"When do people usually have breakfast in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","অসমত মানুহে সাধাৰণতে কেতিয়া নাস্তা কৰে? (HH:MM ফৰ্মেটত প্ৰদান কৰক (যেনে, 18:00, 09:00).)" +New-ch-04,Food,Chinese (China),What kinds of food do people usually eat for late-night snacks in your country?,অসমত মানুহে সাধাৰণতে নিশাৰ জলপান হিচাপে কি ধৰণৰ খাদ্য গ্ৰহণ কৰে? +New-ch-05,Food,Chinese (China),What is the most famous spicy dish in your country?,অসমৰ আটাইতকৈ বিখ্যাত মচলাদাৰ খাদ্যবিধ কি? +New-ch-07,Food,Chinese (China),What food items do people typically pair with hard liquor in your country?,অসমত লোকে সাধাৰণতে কঠিন সুৰাৰ সৈতে কি খাদ্য সামগ্ৰী খায়? +New-ch-08,Food,Chinese (China),What seasoning is indispensable in cooking in your country?,অসমীয়া ৰন্ধনত কোনটো মশলা অপৰিহাৰ্য? +New-ch-09,Food,Chinese (China),What food do people typically consume when the weather is cold in your country?,অসমত ঠাণ্ডা আবহাওয়াত সাধাৰণতে মানুহে কি খাদ্য গ্ৰহণ কৰে? +New-ch-13,Food,Chinese (China),What is the most famous alcohol brand in your country?,অসমত সবাতোকৈ বিখ্যাত সুৰাৰ ব্ৰেণ্ডটো কি? +New-ch-14,Food,Chinese (China),What foods do people usually eat when they are sick in your country?,অসমত মানুহে অসুস্থ হ'লে সাধাৰণতে কি খাদ্য খায়? +New-ch-15,Food,Chinese (China),What prepared/ready-to-eat food do people typically buy at supermarkets in your country?,অসমৰ চুপাৰমাৰ্কেটসমূহত মানুহে সাধাৰণতে কি ধৰণৰ প্ৰস্তুত/ৰেডি-টু-ইট খাদ্য ক্ৰয় কৰে? +New-ch-16,Sport,Chinese (China),What is the most famous sports-related movie in your country?,অসমত কি আটাইতকৈ জনপ্ৰিয় ক্ৰীড়া-সম্পৰ্কীয় চলচ্চিত্ৰ? +New-ch-17,Sport,Chinese (China),What extreme sport do people generally wish to try the most in your country?,অসমত সাধাৰণতে মানুহে কোন চৰম ক্ৰীড়া প্ৰচেষ্টা কৰিবলৈ বিচাৰে? +New-ch-18,Sport,Chinese (China),Which track and field event is the most popular to watch during competitions in your country?,অসমত প্ৰতিযোগিতাৰ সময়ত চাবলৈ কোনটো ট্ৰেক আৰু ফিল্ড ইভেণ্টটো সবাতোকৈ জনপ্ৰিয়? +New-ch-19,Sport,Chinese (China),Which gymnastics event is the most popular to watch during competitions in your country?,অসমত প্ৰতিযোগিতাৰ সময়ত চাবলৈ কোনটো জিমনাষ্টিক ইভেণ্টটো সবাতোকৈ জনপ্ৰিয়? +New-ch-23,Sport,Chinese (China),Who is the most famous table tennis player in your country?,অসমৰ আটাইতকৈ বিখ্যাত টেবুল টেনিছ খেলুৱৈজন কোন? +New-ch-26,Sport,Chinese (China),"In the Winter Olympics, which event is the most popular to watch in your country?","শীতকালীন অলিম্পিকত, অসমত কোনটো ইভেণ্ট চাবলৈ সবাতোকৈ জনপ্ৰিয়?" +New-ch-27,Sport,Chinese (China),Who is the most famous boxer in your country?,অসমৰ আটাইতকৈ বিখ্যাত বক্সাৰজন কোন? +New-ch-30,Sport,Chinese (China),Who is the most famous track and field athlete in your country?,অসমৰ আটাইতকৈ বিখ্যাত ট্ৰেক আৰু ফিল্ডৰ এথলীটজন কোন? +New-ch-31,Work life,Chinese (China),What job do parents most hope their children will pursue in your country?,অসমত অভিভাৱকসকলে তেওঁলোকৰ সন্তানসকলে কি চাকৰি কৰিবলৈ সকলোতকৈ বেছি আশা কৰে? +New-ch-32,Work life,Chinese (China),What office software do people typically use in the workplace in your country?,অসমত কৰ্মস্থলীত মানুহে সাধাৰণতে কি অফিচ ছফ্টৱেৰ ব্যৱহাৰ কৰে? +New-ch-38,Work life,Chinese (China),Which cities or regions are known for their import and export activities in your country?,অসমত কোন কোন চহৰ বা অঞ্চলসমূহ আমদানি আৰু ৰপ্তানি কাৰ্যকলাপৰ বাবে পৰিচিত? +New-ch-39,Work life,Chinese (China),What platform is commonly used in the e-commerce industry in your country?,অসমত ই-কমাৰ্চ শিল্পত সাধাৰণতে কি প্লেটফৰ্ম ব্যৱহাৰ কৰা হয়? +New-ch-44,Work life,Chinese (China),"How long is the typical probation period for new employees before signing a formal contract in your country? (e.g., 1 month).","অসমত নতুন কৰ্মচাৰীসকলৰ বাবে চুক্তি স্বাক্ষৰ কৰাৰ পূৰ্বে প্ৰচলিত পৰীক্ষামূলক সময়কাল কিমান দীঘল হয়? (উদাহৰণস্বৰূপে, ১ মাহ)।" +New-ch-45,Work life,Chinese (China),Which industries do young people typically choose to start businesses in your country?,অসমত যুৱক-যুৱতীসকলে সাধাৰণতে কোন কোন শিল্পক্ষেত্ৰত ব্যৱসায় আৰম্ভ কৰিবলৈ পচন্দ কৰে? +New-ch-49,Family,Chinese (China),What is the most common way for family members to communicate remotely in your country?,অসমত পৰিয়ালৰ সদস্যসকলে দূৰৈৰ পৰা যোগাযোগ কৰাৰ সবাতোকৈ সাধাৰণ উপায় কি? +New-ch-51,Family,Chinese (China),What form of accommodation is typically booked for family trips in your country?,অসমত পৰিয়ালৰ ভ্ৰমণৰ বাবে সাধাৰণতে কি ধৰণৰ আবাস স্থান বুক কৰা হয়? +New-ch-54,Family,Chinese (China),Which fruit is usually prepared the most for family dinners in your country?,অসমত পৰিয়ালৰ ভোজনৰ বাবে সাধাৰণতে কোন ফলটো সবাতোকৈ বেছি প্ৰস্তুত কৰা হয়? +New-ch-64,Education,Chinese (China),"How many hours of classes do university students typically have per week in your country? (Provide Arabic numerals (e.g., 1) only.)","অসমত বিশ্ববিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে সাধাৰণতে সপ্তাহত কিমান ঘণ্টা ক্লাছ কৰে? (কেৱল আৰবী সংখ্যা (যেনে, 1) প্ৰদান কৰক।)" +New-ch-66,Education,Chinese (China),"What is the typical tuition fee per semester for public high schools in your country? (Provide Arabic numerals (e.g., 1) only.)","অসমৰ চৰকাৰী উচ্চ বিদ্যালয়সমূহৰ প্ৰতি ছেমিষ্টাৰৰ গড় শিক্ষানুষ্ঠান মাচুল কিমান? (কেৱল আৰবী সংখ্যা (যেনে, 1) প্ৰদান কৰক।)" +New-ch-70,Education,Chinese (China),What compulsory courses do university students have in common in your country?,অসমীয়া বিশ্ববিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলৰ মাজত কি কি বাধ্যতামূলক পাঠ্যক্ৰম আছে? +New-ch-71,Education,Chinese (China),"What is the average class size in high schools in your country? (Provide Arabic numerals (e.g., 1) only.)","অসমৰ উচ্চমাধ্যমিক বিদ্যালয়সমূহৰ গড় শ্ৰেণীৰ আকাৰ কিমান? (কেৱল আৰবী সংখ্যা (যেনে, 1) প্ৰদান কৰক।)" +New-ch-72,Education,Chinese (China),Which major is considered most conducive to employment in your country?,অসমত চাকৰিৰ বাবে কোনটো বিষয় সবাতোকৈ উপযোগী বুলি বিবেচিত হয়? +New-ch-73,Education,Chinese (China),What type of clubs are most popular among university students in your country?,অসমৰ বিশ্ববিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলৰ মাজত কি ধৰণৰ ক্লাবসমূহ সৰ্বাধিক জনপ্ৰিয়? +New-ch-74,Education,Chinese (China),What types of accommodation do university students in your country typically live in?,অসমৰ বিশ্ববিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে সাধাৰণতে কি ধৰণৰ আবাসত বাস কৰে? +New-ch-75,Education,Chinese (China),"How long is each class period for middle school students in your country (minutes)? (Provide Arabic numerals (e.g., 1) only.)","অসমত মাধ্যমিক বিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলৰ প্ৰতিটো ক্লাছ পিৰিয়ডৰ সময়কাল কিমান মিনিট? (কেৱল আৰবী সংখ্যা (যেনে, 1) প্ৰদান কৰক।)" +New-ch-78,Holidays/Celebration/Leisure,Chinese (China),What leisure activities do retired women typically like in your country?,অসমত অৱসৰপ্ৰাপ্ত মহিলাসকলে সাধাৰণতে কি ধৰণৰ অৱসৰ সময়ৰ কামকাজত আনন্দ পায়? +New-ch-79,Holidays/Celebration/Leisure,Chinese (China),What leisure activities do retired men typically like in your country?,অসমত অৱসৰপ্ৰাপ্ত পুৰুষসকলে সাধাৰণতে কি ধৰণৰ অৱসৰ সময়ৰ কাৰ্যকলাপ পছন্দ কৰে? +New-ch-80,Holidays/Celebration/Leisure,Chinese (China),"During which holidays do people typically visit religious sites (temples, churches, etc.) in your country?","অসমত লোকে সাধাৰণতে কোন কোন বন্ধৰ দিনত ধৰ্মীয় স্থানসমূহ (মন্দিৰ, গিৰ্জা আদি) পৰিদৰ্শন কৰে?" +New-ch-81,Holidays/Celebration/Leisure,Chinese (China),What are the typical housewarming gifts in your country?,অসমত গৃহপ্ৰৱেশৰ সময়ত কি কি পৰম্পৰাগত উপহাৰ দিয়া হয়? +New-ch-82,Holidays/Celebration/Leisure,Chinese (China),"At what time do weddings typically start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","অসমত বিয়াসমূহ সাধাৰণতে কি সময়ত আৰম্ভ হয়? (HH:MM ফৰ্মেটত প্ৰদান কৰক (যেনে, 18:00, 09:00).)" +New-ch-83,Holidays/Celebration/Leisure,Chinese (China),Which city in your country hosts festivals the most?,অসমৰ কোন চহৰত উৎসৱসমূহ সৰ্বাধিক পালন কৰা হয়? +New-ch-84,Holidays/Celebration/Leisure,Chinese (China),What color of clothing do people typically wear when attending weddings in your country?,অসমত বিয়ালৈ গ'লে সাধাৰণতে মানুহে কি ৰঙৰ কাপোৰ পৰিধান কৰে? +New-ch-85,Holidays/Celebration/Leisure,Chinese (China),What color of clothing do people typically wear when attending funerals in your country?,অসমত মানুহে সাধাৰণতে শোকসভাত কি ৰংৰ কাপোৰ পৰিধান কৰে? +New-en-01,Food,English (UK),Which snack is eaten in the cinema in your country?,অসমত চিনেমা হলত কি খাদ্য খোৱা হয়? +New-en-02,Food,English (UK),What is the most popular chip/crisp flavour in your country?,অসমত সবাতোকৈ জনপ্ৰিয় চিপছ/ক্ৰিচ্পৰ সোৱাদ কি? +New-en-04,Food,English (UK),Who is a popular celebrity chef in your country?,অসমত জনপ্ৰিয় চেলিব্ৰিটি শেফজন কোন? +New-en-05,Food,English (UK),Which food is a cost-effective and quick meal option in your country?,অসমত কোনখন খাদ্য সস্তা আৰু দ্ৰুত খাদ্য বিকল্প হ'ব পাৰে? +New-en-07,Food,English (UK),What are the most popular cooking shows in your country?,অসমত কি কি জনপ্ৰিয় ৰন্ধন অনুষ্ঠানসমূহ আছে? +New-en-08,Food,English (UK),What is the most popular chocolate brand in your country?,অসমত কি সবাতোকৈ জনপ্ৰিয় চকলেট ব্ৰেণ্ডটো কি? +New-en-10,Food,English (UK),What is the most eaten cheese in your country?,অসমত সৰ্বাধিক খোৱা পনীৰটো কি? +New-en-11,Food,English (UK),What is the most disliked vegetable in your country?,অসমত কোন শাক-পাচলি সকলোতকৈ কম প্ৰিয়? +New-en-12,Food,English (UK),What food is most commonly found in food courts in your country?,অসমৰ খাদ্য আদালতসমূহত সচৰাচৰ কি খাদ্য পোৱা যায়? +New-en-17,Sport,English (UK),What are the most common cheering tools used by sports fans in your country?,অসমত ক্ৰীড়া প্ৰেমীসকলে সচৰাচৰ ব্যৱহাৰ কৰা উৎসাহ বৰ্ধনৰ সাধনবোৰ কি কি? +New-en-18,Sport,English (UK),What do fans bring with them when attending a live game in your country?,অসমত এখন খেল চাবলৈ গ'লে দৰ্শকসকলে কি কি লৈ যায়? +New-en-19,Sport,English (UK),What is the most well known sporting stadium in your country?,অসমৰ আটাইতকৈ প্ৰসিদ্ধ ক্ৰীড়া ষ্টেডিয়ামটো কি? +New-en-23,Sport,English (UK),Who is the most famous Paralympian in your country?,অসমৰ আটাইতকৈ বিখ্যাত পেৰালিম্পিয়ানজন কোন? +New-en-26,Sport,English (UK),What is the best recognized sporting chant in your country?,অসমত সৰ্বাধিক জনপ্ৰিয় ক্ৰীড়া ধ্বনি কি? +New-en-38,Work life,English (UK),Which industries are known for more flexible working hours in your country?,অসমত কোন কোন শিল্পসমূহ অধিক সময়সূচী সংযোজনযোগ্য হিচাপে পৰিচিত? +New-en-41,Work life,English (UK),Who is the most well known and successful entrepreneur in your country?,অসমত সবাতোকৈ পৰিচিত আৰু সফল উদ্যোগপতি কোন? +New-en-47,Family,English (UK),What can typically be found in the back garden of houses in your country?,অসমৰ ঘৰসমূহৰ পিছফালে থকা বাগিচাত সাধাৰণতে কি পোৱা যায়? +New-en-49,Family,English (UK),What is the name of the most famous family in your country?,অসমৰ আটাইতকৈ বিখ্যাত পৰিয়ালটোৰ নাম কি? +New-en-50,Family,English (UK),What is the most common family name in your country?,অসমত সবাতোকৈ সাধাৰণ পৰিয়ালৰ নামটো কি? +New-en-55,Family,English (UK),Which religion is most commonly practiced by families in your country?,অসমত পৰিয়ালসমূহে সৰ্বাধিক চৰ্চা কৰা ধৰ্মটো কোনটো? +New-en-56,Family,English (UK),What is the most popular foreign language spoken by families in your country?,অসমত পৰিয়ালে কোনটো বিদেশী ভাষা সবাতোকৈ বেছি ক'বা হয়? +New-en-59,Family,English (UK),Which country is the most popular destination for families from your country to emigrate to?,অসমৰ পৰা পৰিয়ালসমূহে অভিবাসন কৰিবলৈ কোন খন দেশ সৰ্বাধিক জনপ্ৰিয়? +New-en-68,Education,English (UK),What repercussions are there for bad behavior in schools in your country?,অসমৰ বিদ্যালয়সমূহত বেয়া আচৰণৰ বাবে কি পৰিণাম হ'ব পাৰে? +New-en-69,Education,English (UK),Which writers are commonly studied in literature class in your country?,অসমীয়া সাহিত্যৰ শ্ৰেণীত সাধাৰণতে কোন কোন লেখকক অধ্যয়ন কৰা হয়? +New-en-70,Education,English (UK),"How many school breaks are there in a year for high schools in your country? (Provide Arabic numerals (e.g., 1) only.)","অসমৰ উচ্চ মাধ্যমিক বিদ্যালয়সমূহত এটা বছৰত কিমানটা বিদ্যালয়ৰ ছুটি থাকে? (কেৱল আৰবী সংখ্যা (যেনে, 1) প্ৰদান কৰক।)" +New-en-72,Education,English (UK),Which online resource do students usually use to study in your country?,অসমত ছাত্ৰ-ছাত্ৰীসকলে পঢ়াশুনা কৰিবলৈ সাধাৰণতে কোন অনলাইন সম্পদ ব্যৱহাৰ কৰে? +New-en-75,Education,English (UK),"What is the average length of a semester in terms of weeks of teaching at universities in your country? (Provide Arabic numerals (e.g., 1) only.)","অসমীয়া বিশ্ববিদ্যালয়সমূহত শিক্ষাদানৰ সপ্তাহৰ হিচাপে এটা ছেমিষ্টাৰৰ গড় দৈৰ্ঘ্য কিমান? (কেৱল আৰবী সংখ্যা (যেনে, 1) প্ৰদান কৰক।)" +New-en-76,Holidays/Celebration/Leisure,English (UK),Which airport in your country is the busiest during the holiday season?,অসমৰ কোন বিমানবন্দৰত বন্ধৰ সময়ত সবাতোকৈ ব্যস্ততা পৰিলক্ষিত হয়? +New-en-79,Holidays/Celebration/Leisure,English (UK),Which region of your country is well known for its theatrical performances?,অসমৰ কোন অঞ্চলটো ইয়াৰ নাট্য প্ৰদৰ্শনৰ বাবে ভালকৈ জনাজাত? +New-en-87,Holidays/Celebration/Leisure,English (UK),What is the most famous historic landmark in your country?,অসমৰ আটাইতকৈ বিখ্যাত ঐতিহাসিক স্থলচিহ্নটো কি? +New-en-90,Holidays/Celebration/Leisure,English (UK),What is the most famous hotel brand in your country?,অসমত কি আটাইতকৈ বিখ্যাত হোটেল ব্ৰেণ্ডটো? +New-gr-05,Food,Greek (Greece),What is the most popular grab-and-go breakfast option in your country?,অসমত সৰ্বাধিক জনপ্ৰিয় গ্ৰাব-এণ্ড-গ' নাস্তাৰ বিকল্পটো কি? +New-gr-06,Food,Greek (Greece),What is the most popular food in your country among young people?,অসমত যুৱ প্ৰজন্মৰ মাজত কি খাদ্য সবাতোকৈ জনপ্ৰিয়? +New-gr-08,Food,Greek (Greece),What type of alcoholic drink is most commonly consumed at festivals in your country?,অসমৰ উৎসৱসমূহত সৰ্বাধিক পৰিমাণে কি ধৰণৰ মদ্যপান কৰা হয়? +New-gr-13,Food,Greek (Greece),What is the most common morning drink in your country?,অসমত পুৱাৰ সময়ত সকলোৰে প্ৰিয় পানীয় কি? +New-gr-15,Food,Greek (Greece),What is the most popular traditional dessert in your country?,অসমত সবাতোকৈ জনপ্ৰিয় পৰম্পৰাগত মিঠাইটো কি? +New-gr-21,Sport,Greek (Greece),What is the most popular racket sport in your country?,অসমত সৰ্বাধিক জনপ্ৰিয় ৰেকেট ক্ৰীড়াটো কি? +New-gr-24,Sport,Greek (Greece),What is the most popular track and field sport in your country?,অসমত কি সবাতোকৈ জনপ্ৰিয় আউটড'ৰ ট্ৰেক আৰু ফিল্ড ক্ৰীড়া? +New-gr-29,Sport,Greek (Greece),Which international sporting event is the most popular in your country?,অসমত কোনটো আন্তঃৰাষ্ট্ৰীয় ক্ৰীড়া অনুষ্ঠানটো সবাতোকৈ জনপ্ৰিয়? +New-gr-47,Work life,Greek (Greece),"How long (in minutes) are typical work breaks in your country, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)","অসমত সাধাৰণতে কামৰ বিৰতি কিমান মিনিট সময়ৰ হয়, দুপৰীয়া আৰু ৰাতিপুৱাৰ খাদ্য বিৰতি বাদ দি? (কেৱল আৰবী সংখ্যা (যেনে, 1) প্ৰদান কৰক।)" +New-gr-58,Work life,Greek (Greece),Which job is considered underpaid in your country?,অসমত কোন চাকৰি কম দৰমহাৰ বুলি বিবেচিত হয়? +New-gr-76,Holidays/Celebration/Leisure,Greek (Greece),What is the most common food served during Easter in your country?,অসমত ইষ্টাৰৰ সময়ত কি সাধাৰণতে পৰিৱেশন কৰা খাদ্য? +New-gr-82,Holidays/Celebration/Leisure,Greek (Greece),What is the most popular music genre among the elderly population in your country?,অসমৰ বৃদ্ধ জনসংখ্যাৰ মাজত কি সংগীতৰ ধৰণ সবাতোকৈ জনপ্ৰিয়? +New-gr-88,Holidays/Celebration/Leisure,Greek (Greece),What drink is usually offered at funerals in your country?,অসমত সাধাৰণতে শ্ৰাদ্ধত কি পানীয় প্ৰদান কৰা হয়? +New-gr-89,Holidays/Celebration/Leisure,Greek (Greece),What drink is usually offered at weddings in your country?,অসমৰ বিয়াত সাধাৰণতে কি পানীয় প্ৰদান কৰা হয়? +New-ha-07,Food,Hausa (Northern Nigeria),What food originated from your country and can be found all over the world?,কি খাদ্য সামগ্ৰী অসমৰ পৰা উৎপত্তি হৈছে আৰু সমগ্ৰ বিশ্বতে পোৱা যায়? +New-ha-08,Food,Hausa (Northern Nigeria),What food is typically disliked by children but enjoyed by the elderly in your country?,অসমত শিশুসকলে সাধাৰণতে কি খাদ্য পচন্দ নকৰে কিন্তু বৃদ্ধ লোকসকলে উপভোগ কৰে? +New-ha-09,Food,Hausa (Northern Nigeria),What cooking utensil is most commonly used in your country?,অসমত সচৰাচৰ ব্যৱহাৰ হোৱা ৰন্ধন সামগ্ৰীটো কি? +New-ha-13,Food,Hausa (Northern Nigeria),Which is the most popular vegetable in your country?,অসমত কোনটো শাক-পাচলি সবাতোকৈ জনপ্ৰিয়? +New-ha-19,Sport,Hausa (Northern Nigeria),Which animal is used for sports in your country?,অসমত কোন জন্তুক ক্ৰীড়াৰ বাবে ব্যৱহাৰ কৰা হয়? +New-ha-66,Family,Hausa (Northern Nigeria),What is the most popular wedding venue in your country?,অসমত সবাতোকৈ জনপ্ৰিয় বিবাহ-বাহৰ কোনটো? +New-in-01,Food,Indonesian (Indonesia),Which coffee shop brand is the most popular in your country?,অসমত কোনটো কফি শ্বপ ব্ৰেণ্ডটো সবাতোকৈ জনপ্ৰিয়? +New-in-03,Food,Indonesian (Indonesia),What type of food from your country is typically served in restaurants overseas?,অসমৰ পৰা কি ধৰণৰ খাদ্য সাধাৰণতে বিদেশৰ ৰেষ্টুৰাঁত পৰিৱেশন কৰা হয়? +New-in-33,Work life,Indonesian (Indonesia),What region in your country is usually associated with mining?,অসমৰ কোন অঞ্চলটো সাধাৰণতে খনন কাৰ্য্যৰ সৈতে জড়িত? +New-in-34,Work life,Indonesian (Indonesia),What region in your country is usually associated with oil?,অসমৰ কোন অঞ্চলটো সাধাৰণতে তেলৰ সৈতে জড়িত? +New-in-62,Education,Indonesian (Indonesia),What university in your country is popular because of its engineering major? (Provide the official name.),অসমৰ কোনখন বিশ্ববিদ্যালয় ইয়াৰ অভিযান্ত্ৰিক শাখাৰ বাবে জনপ্ৰিয়? (চৰকাৰী নাম উল্লেখ কৰক।) +New-in-63,Education,Indonesian (Indonesia),What university in your country is popular because of its school of medicine? (Provide the official name.),অসমৰ কোনখন বিশ্ববিদ্যালয় ইয়াৰ চিকিৎসা শাখাৰ বাবে জনপ্ৰিয়? (চৰকাৰী নাম প্ৰদান কৰক।) +New-in-78,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most popular payment method in your country?,অসমত সবাতোকৈ জনপ্ৰিয় পৰিশোধ পদ্ধতিটো কি? +New-in-80,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most famous theme park in your country?,অসমৰ আটাইতকৈ বিখ্যাত থীম পাৰ্কটো কি? +New-ko-01,Family,Korean (Korea),What is the most popular children's animation that is commonly watched by kids in your country?,অসমত শিশুসকলে সাধাৰণতে চাবলৈ পছন্দ কৰা জনপ্ৰিয় শিশুৰ এনিমেশ্যনটো কি? +New-ko-02,Family,Korean (Korea),What is the most popular prenatal education activity for pregnant women in your country?,অসমত গৰ্ভৱতী মহিলাৰ বাবে সবাতোকৈ জনপ্ৰিয় প্ৰাক-জন্ম শিক্ষা কাৰ্যকলাপটো কি? +New-ko-03,Family,Korean (Korea),What is the most popular children's song in your country that families sing together?,অসমত পৰিয়ালে একেলগে গায় সেইটো কি শিশুসকলৰ বাবে সবাতোকৈ জনপ্ৰিয় গীত? +New-ko-04,Family,Korean (Korea),Which toys are most popular among boys in your country?,অসমত ল'ৰা ছোৱালীসকলৰ মাজত কোনবোৰ খেলনা সবাতোকৈ জনপ্ৰিয়? +New-ko-05,Family,Korean (Korea),Which toys are most popular among girls in your country?,অসমত ছোৱালীসকলৰ মাজত কোনবোৰ খেলনা সবাতোকৈ জনপ্ৰিয়? +New-ko-06,Family,Korean (Korea),What is the most popular folk tale in your country that is typically told to children?,অসমত শিশুসকলক সাধাৰণতে কোৱা হোৱা জনপ্ৰিয় লোক-কাহিনীটো কি? +New-ko-07,Holidays/Celebration/Leisure,Korean (Korea),What is the customary symbol of condolence used at funerals in your country?,অসমত শ্ৰদ্ধাঞ্জলি প্ৰদানৰ সময়ত ব্যৱহৃত প্ৰথাগত প্ৰতীকটো কি? +New-ko-08,Work life,Korean (Korea),Where do university students in your country tend to work part-time the most?,অসমৰ বিশ্ববিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে অধিকাংশ সময়ত ক'ত অংশ-সময়ৰ চাকৰি কৰে? +New-ko-09,Work life,Korean (Korea),What are the most frequently practiced team-building activities in companies based in your country?,অসমত অৱস্থিত কোম্পানীসমূহত কি কি দল নিৰ্মাণ কাৰ্যকলাপসমূহ প্ৰায়ে অনুশীলন কৰা হয়? +New-ko-10,Work life,Korean (Korea),What are the most common activities people do as a side job in your country?,অসমত লোকে পাৰ্শ্ব চাকৰি হিচাপে কি কি সাধাৰণ কাম কৰে? +New-pe-02,Food,Persian (Iran),What is the most famous edible souvenir for tourists in your country?,অসমত পৰ্যটকসকলৰ বাবে আটাইতকৈ বিখ্যাত খাদ্য স্মাৰক কি? +New-pe-06,Food,Persian (Iran),What is the most popular stew in your country?,অসমত সবাতোকৈ জনপ্ৰিয় ষ্টু কি? +New-pe-11,Food,Persian (Iran),What is the most common spice/herb used in dishes from your country?,অসমৰ খাদ্যসমূহত ব্যৱহৃত সবাতোকৈ সাধাৰণ মচলা/জড়ি-বুটি কি? +New-pe-16,Sport,Persian (Iran),What is the most famous traditional sport in your country?,অসমৰ প্ৰসিদ্ধ পাৰম্পৰিক ক্ৰীড়াটো কি? +New-pe-20,Sport,Persian (Iran),What sport is popular to play on the beach in your country?,অসমৰ সমুদ্ৰ সৈকতত কি ক্ৰীড়া খেলিবলৈ জনপ্ৰিয়? +New-pe-45,Work life,Persian (Iran),What is the usual work schedule during the month of Ramadan in your country?,ৰমজান মাহত অসমত সাধাৰণতে কামৰ সময়সূচী কি দৰে থাকে? +New-pe-47,Family,Persian (Iran),"When is Student's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)","অসমত ছাত্ৰ দিৱস কেতিয়া পালন কৰা হয়? (MM/DD ফৰ্মেটত প্ৰদান কৰক (উদাহৰণস্বৰূপে, 12/31)।)" +New-pe-49,Family,Persian (Iran),Where do families gather to pray together in your country?,অসমত পৰিয়ালবোৰ একেলগে প্ৰাৰ্থনা কৰিবলৈ ক'ত সমবেত হয়? +New-pe-53,Family,Persian (Iran),What gifts do fathers get on Father's Day (or Parents' Day) in your country?,অসমত পিতৃ দিৱস (অথবা অভিভাৱক দিৱস) ত পিতৃসকলে কি উপহাৰ পায়? +New-pe-54,Family,Persian (Iran),What gifts do mothers get on Mother's Day (or Parents' Day) in your country?,অসমত মাতৃ দিৱস (অথবা অভিভাৱক দিৱস) ত মাতৃসকলে কি উপহাৰ পায়? +New-pe-59,Family,Persian (Iran),"How many generations typically live together in a household in your country? (Provide Arabic numerals (e.g., 12) only.)","অসমত এটা ঘৰত সাধাৰণতে কিমান প্ৰজন্মে একেলগে থাকে? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)" +New-pe-65,Education,Persian (Iran),"How many subjects are taught in middle schools in your country? (Provide Arabic numerals (e.g., 12) only.)","অসমৰ মাধ্যমিক বিদ্যালয়সমূহত কিমানটা বিষয় পঢ়োৱা হয়? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)" +New-pe-66,Education,Persian (Iran),What is the most popular after school curriculars in elementary schools in your country?,অসমৰ প্ৰাথমিক বিদ্যালয়সমূহত বিদ্যালয়ৰ পিছত কি কি জনপ্ৰিয় সহপাঠ্যক্ৰমিক কাৰ্যসূচী আছে? +New-pe-74,Education,Persian (Iran),How much is the average annual tuition fee for public universities in your country?,অসমৰ চৰকাৰী বিশ্ববিদ্যালয়সমূহৰ গড় বাৰ্ষিক শিক্ষানুষ্ঠান মাচুল কিমান? +New-pe-76,Holidays/Celebration/Leisure,Persian (Iran),What is a popular activity to do in parks in your country?,অসমৰ উদ্যানসমূহত কি জনপ্ৰিয় কাম কৰিব পাৰি? +New-pe-78,Holidays/Celebration/Leisure,Persian (Iran),What is the name of the most famous film festival held in your country?,অসমত অনুষ্ঠিত হোৱা সবাতোকৈ বিখ্যাত চলচ্চিত্ৰ মহোৎসৱৰ নাম কি? +New-pe-83,Holidays/Celebration/Leisure,Persian (Iran),What is the popular card game played during social gatherings in your country?,অসমত সামাজিক সমাৱেশসমূহত খেলা জনপ্ৰিয় তাচ খেলখনৰ নাম কি? +New-pe-85,Holidays/Celebration/Leisure,Persian (Iran),Where is the most popular tourist destination abroad for people from your country?,অসমীয়া লোকসকলৰ বাবে বিদেশত সবাতোকৈ জনপ্ৰিয় পৰ্যটন স্থানটো ক'ত? +New-pe-86,Holidays/Celebration/Leisure,Persian (Iran),What is the name of the most famous tower in your country?,অসমৰ আটাইতকৈ বিখ্যাত টাৱাৰটোৰ নাম কি? +New-spme-01,Food,Spanish (Mexico),What edible insect is eaten most often in your country?,অসমত কোন খাব পৰা পোক সবাতোকৈ বেছি খোৱা হয়? +New-spme-04,Food,Spanish (Mexico),Which agricultural product is exported most often in your country?,অসমৰ পৰা কোনখন কৃষি পণ্য সবাতোকৈ বেছি ৰপ্তানী কৰা হয়? +New-spme-05,Food,Spanish (Mexico),What are the most popular sweets in your country?,অসমত কি কি জনপ্ৰিয় মিঠাই আছে? +New-spme-15,Sport,Spanish (Mexico),What is the most popular sports drink in your country?,অসমত কি সবাতোকৈ জনপ্ৰিয় ক্ৰীড়া পানীয় কি? +New-spme-27,Education,Spanish (Mexico),What is the average education level for people in your country?,অসমত মানুহৰ গড় শিক্ষাৰ মান কি? +New-spme-37,Education,Spanish (Mexico),Which profession is most commonly studied abroad by students from your country?,অসমৰ ছাত্ৰ-ছাত্ৰীসকলে বিদেশত সবাতোকৈ বেছি কি পেছা অধ্যয়ন কৰে? +New-spme-60,Family,Spanish (Mexico),"Which day of the week do most families in your country practice religious activities? (e.g. Monday, Tuesday)","সপ্তাহৰ কোন দিনটোত অসমৰ অধিকাংশ পৰিয়ালে ধাৰ্মিক কাৰ্য্যসমূহ অনুশীলন কৰে? (যেনে সোমবাৰ, মঙ্গলবাৰ)" +New-spme-65,Family,Spanish (Mexico),What is the most popular way to celebrate Independence Day in your country?,অসমত স্বাধীনতা দিৱস উদযাপনৰ সবাতোকৈ জনপ্ৰিয় উপায় কি? +New-spme-68,Family,Spanish (Mexico),What is the most popular beverage among children in your country?,অসমত শিশুসকলৰ মাজত সবাতোকৈ জনপ্ৰিয় পানীয় কি? +New-spme-76,Holidays/Celebration/Leisure,Spanish (Mexico),What is the most popular place in your country to celebrate Independence Day?,অসমত স্বাধীনতা দিৱস উদযাপন কৰিবলৈ সবাতোকৈ জনপ্ৰিয় ঠাই কোনটো? +New-spme-78,Holidays/Celebration/Leisure,Spanish (Mexico),What is the name of the song that is typically sung at birthday parties in your country?,অসমত জন্মদিনৰ পাৰ্টিত সাধাৰণতে গোৱা গীতটোৰ নাম কি? +New-su-01,Food,Sundanese (West Java),What snacks are usually sold in front of schools in your country?,অসমৰ বিদ্যালয়সমূহৰ সন্মুখত সাধাৰণতে কি কি জলপান বিক্ৰী কৰা হয়? +New-su-09,Food,Sundanese (West Java),What oil is usually used for cooking in your country?,অসমত সাধাৰণতে ৰান্ধিবলৈ কি তেল ব্যৱহাৰ কৰা হয়? +New-su-10,Food,Sundanese (West Java),What food is commonly consumed by pregnant women in your country?,অসমত গৰ্ভৱতী মহিলাসকলে সাধাৰণতে কি খাদ্য গ্ৰহণ কৰে? +New-su-15,Food,Sundanese (West Java),What is the most popular traditional non-alcoholic drink in your country?,অসমত সৰ্বাধিক জনপ্ৰিয় পাৰম্পৰিক অ-মদ্যযুক্ত পানীয় কি? +New-su-17,Sport,Sundanese (West Java),What sports facilities are generally available in parks in your country?,অসমৰ উদ্যানসমূহত সাধাৰণতে কি কি ক্ৰীড়াৰ সুবিধা পোৱা যায়? +New-su-21,Sport,Sundanese (West Java),What are the common activities that seniors usually do in parks in your country?,অসমৰ পাৰ্কসমূহত বৃদ্ধ লোকসকলে সাধাৰণতে কি কি কাম কৰে? +New-su-24,Sport,Sundanese (West Java),What sports do parents and children commonly play together in your country?,অসমত অভিভাৱক আৰু শিশুসকলে সাধাৰণতে একেলগে কি কি খেল খেলে? +New-su-28,Sport,Sundanese (West Java),What color is associated with the regional soccer team of your country?,অসমৰ ৰাজ্যিক ফুটবল দলৰ সৈতে কি ৰং জড়িত আছে? +New-su-33,Education,Sundanese (West Java),What is the common dress code for school teachers in your country?,অসমৰ বিদ্যালয়ৰ শিক্ষক-শিক্ষয়িত্ৰীসকলৰ সাধাৰণ সাজ-পোচাক পৰিধাণৰ নিয়ম কি? +New-su-34,Education,Sundanese (West Java),What is the most popular extracurricular activity related to music in schools in your country?,অসমৰ বিদ্যালয়সমূহত সংগীত সম্পৰ্কীয় আটাইতকৈ জনপ্ৰিয় বহিঃশিক্ষামূলক কাৰ্যকলাপটো কি? +New-su-42,Education,Sundanese (West Java),What religion is mainly taught in schools in your country?,অসমৰ বিদ্যালয়সমূহত প্ৰধানকৈ কি ধৰ্মৰ শিক্ষা দিয়া হয়? +New-su-45,Education,Sundanese (West Java),"What date is Education Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)","অসমত শিক্ষা দিৱস কেতিয়া পালন কৰা হয়? (MM/DD ফৰ্মেটত প্ৰদান কৰক (উদাহৰণস্বৰূপে, 12/31)।)" +New-su-50,Work life,Sundanese (West Java),What is the main occupation of people in mountainous areas in your country?,অসমৰ পাহাৰীয়া অঞ্চলসমূহত মানুহৰ মুখ্য পেছা কি? +New-su-51,Work life,Sundanese (West Java),What is the main occupation of people in coastal areas in your country?,অসমৰ উপকূলীয় অঞ্চলসমূহৰ মানুহৰ মূল পেছা কি? +New-su-57,Work life,Sundanese (West Java),What is the most common livestock raised in your country?,অসমত পোহা পশুধনৰ ভিতৰত সবাতোকৈ সাধাৰণ কোনটো? +New-su-58,Work life,Sundanese (West Java),What animals are commonly used for agriculture in your country?,অসমত কৃষিকাৰ্য্যত সাধাৰণতে কি কি প্ৰাণী ব্যৱহাৰ কৰা হয়? +New-su-59,Work life,Sundanese (West Java),What do farmers in your country typically wear to protect themselves from the heat whilst farming?,অসমৰ কৃষকসকলে খেতি কৰোতে গৰমৰ পৰা নিজকে কেনেকৈ সুৰক্ষিত ৰাখে? +New-su-60,Work life,Sundanese (West Java),What do farmers in your country usually eat for lunch?,অসমৰ কৃষকসকলে সাধাৰণতে দুপৰীয়াৰ আহাৰত কি খায়? +New-su-71,Family,Sundanese (West Java),What gifts do parents generally give to their children for their birthdays in your country?,অসমত অভিভাৱকসকলে সাধাৰণতে তেওঁলোকৰ সন্তানসকলক তেওঁলোকৰ জন্মদিনত কি উপহাৰ দিয়ে? +New-su-75,Family,Sundanese (West Java),What type of vehicle do most families in your country generally own?,অসমত বেছিভাগ পৰিয়ালে সাধাৰণতে কি ধৰণৰ বাহন কিনে? +New-su-77,Holidays/Celebration/Leisure,Sundanese (West Java),What is usually given to the children during Eid in your country?,অসমত ঈদৰ সময়ত শিশুসকলক সাধাৰণতে কি দিয়া হয়? +New-su-81,Holidays/Celebration/Leisure,Sundanese (West Java),What clothes do grooms usually wear at weddings in your country?,অসমত বিয়াত দৰা সাধাৰণতে কি কাপোৰ পিন্ধে? +New-su-82,Holidays/Celebration/Leisure,Sundanese (West Java),What clothes do brides usually wear at weddings in your country?,অসমত বিয়াত কন্যাসকলে সাধাৰণতে কি ধৰণৰ কাপোৰ পৰিধান কৰে? +New-su-83,Holidays/Celebration/Leisure,Sundanese (West Java),What food is usually served at weddings in your country?,অসমত বিয়াত সাধাৰণতে কি খাদ্য পৰিৱেশন কৰা হয়? +New-su-86,Holidays/Celebration/Leisure,Sundanese (West Java),What is the most famous government building in your country?,অসমত সবাতোকৈ বিখ্যাত চৰকাৰী ভৱনটো কি? +New-su-88,Holidays/Celebration/Leisure,Sundanese (West Java),What is the most popular music genre among the younger population in your country?,অসমৰ যুৱ প্ৰজন্মৰ মাজত কি সংগীতৰ ধৰণ সবাতোকৈ জনপ্ৰিয়? +Ni-en-02,Education,English (UK),"What time do middle school students in your country typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)","অসমত মাধ্যমিক বিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে প্ৰতিদিনে কেতিয়া বিদ্যালয় সমাপ্ত কৰে? (HH:MM ফৰ্মেটত প্ৰদান কৰক (যেনে, 18:00, 09:00).)" +Ni-en-03,Education,English (UK),"At what age do people in your country typically go to university? (Provide Arabic numerals (e.g., 12) only.)","অসমত মানুহে সাধাৰণতে কিমান বয়সত বিশ্ববিদ্যালয়লৈ যায়? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)" +Ni-en-06,Education,English (UK),"From what age do people need to attend compulsory education in your country? (Provide Arabic numerals (e.g., 12) only.)","অসমত লোকে বাধ্যতামূলক শিক্ষা কিমান বয়সৰ পৰা গ্ৰহণ কৰিব লাগে? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)" +Ni-en-09,Education,English (UK),How many days a week do children attend school in your country? (Provide Arabic numerals (0~7) only.),অসমত শিশুসকলে সপ্তাহত কিমান দিন বিদ্যালয়লৈ যায়? (কেৱল আৰবী সংখ্যা (0~7) প্ৰদান কৰক।) +Ni-en-11,Education,English (UK),"In your country, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)","অসমত, সাধাৰণতে এটা মাষ্টাৰ্ছ ডিগ্ৰী সম্পূৰ্ণ কৰিবলৈ কিমান বছৰ লাগে? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)" +Ni-en-12,Education,English (UK),What is the top university in your country? (Provide the official name.),অসমৰ শ্ৰেষ্ঠ বিশ্ববিদ্যালয়খনৰ নাম কি? (চৰকাৰী নাম প্ৰদান কৰক।) +Ni-en-13,Education,English (UK),"At what age do most people in your country graduate from university? (Provide Arabic numerals (e.g., 12) only.)","অসমত অধিকাংশ লোকে কোন বয়সত বিশ্ববিদ্যালয়ৰ পৰা স্নাতক হয়? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)" +Ni-en-15,Education,English (UK),"At what age do children in your country generally start middle school? (Provide Arabic numerals (e.g., 12) only.)","অসমত শিশুসকলে সাধাৰণতে কিমান বয়সত মাধ্যমিক বিদ্যালয় আৰম্ভ কৰে? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)" +Ni-en-17,Work life,English (UK),"How many hours a week does a full-time worker in your country typically work? (Provide Arabic numerals (e.g., 12) only.)","অসমত এজন পূৰ্ণ-সময়ৰ কৰ্মচাৰীয়ে সাধাৰণতে সপ্তাহত কিমান ঘণ্টা কাম কৰে? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)" +Ni-en-19,Work life,English (UK),How many days a week does a full-time worker work in your country? (Provide Arabic numerals (0~7) only.),অসমত এজন পূৰ্ণ-সময়ৰ কৰ্মচাৰী সপ্তাহত কিমান দিন কাম কৰে? (কেৱল আৰবী সংখ্যা (0~7) প্ৰদান কৰক।) +Ni-en-20,Work life,English (UK),"At what age do most people start working in your country? (Provide Arabic numerals (e.g., 12) only.)","অসমত বেছিভাগ লোকে কিমান বয়সত কাম কৰা আৰম্ভ কৰে? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)" +Ni-en-21,Work life,English (UK),"From what age is an individual allowed to work in your country? (Provide Arabic numerals (e.g., 12) only.)","অসমত এজন ব্যক্তি কিমান বয়সৰ পৰা কাম কৰিবলৈ অনুমতি পায়? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)" +Ni-en-31,Holidays/Celebration/Leisure,English (UK),What do people in your country traditionally eat on Christmas Day?,অসমত খ্ৰীষ্টমাছ দিনটোত মানুহে পৰম্পৰাগতভাৱে কি খায়? +Ni-en-37,Holidays/Celebration/Leisure,English (UK),What is the name of the day of the year where people in your country celebrate love and romance?,বছৰৰ কোন দিনটোত অসমীয় লোকে প্ৰেম আৰু ৰোমাঞ্চ উদযাপন কৰে? +Ni-en-40,Holidays/Celebration/Leisure,English (UK),What is the most popular Christmas song in your country?,অসমত কোনটো খ্ৰীষ্টমাছ গীতটো সবাতোকৈ জনপ্ৰিয়? +Nu-in-04,Education,Indonesian (Indonesia),"How many semesters are there each academic year at high schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","অসমৰ উচ্চ বিদ্যালয়সমূহত প্ৰতি শিক্ষাবৰ্ষত কিমানটা ছেমিষ্টাৰ থাকে? (কেৱল আৰবী সংখ্যা (যেনে, 7, 8) প্ৰদান কৰক।)" +Nu-in-05,Education,Indonesian (Indonesia),In which month does the new school year typically begin in your country? (Provide Arabic numerals (1~12) only.),অসমত নতুন শিক্ষাবৰ্ষ সাধাৰণতে কোন মাহত আৰম্ভ হয়? (কেৱল আৰবী সংখ্যা (1~12) প্ৰদান কৰক।) +Nu-in-06,Education,Indonesian (Indonesia),"When is National Teacher's Day commemorated in your country? (Provide in MM/DD format (e.g., 12/31).)","অসমত ৰাষ্ট্ৰীয় শিক্ষক দিৱস কেতিয়া পালন কৰা হয়? (MM/DD ফৰ্মেটত প্ৰদান কৰক (উদাহৰণস্বৰূপে, 12/31)।)" +Nu-in-11,Education,Indonesian (Indonesia),"At what time does elementary school start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","অসমত প্ৰাথমিক বিদ্যালয় কেতিয়া আৰম্ভ হয়? (HH:MM ফৰ্মেটত প্ৰদান কৰক (যেনে, 18:00, 09:00).)" +Nu-in-20,Family,Indonesian (Indonesia),"When is Children's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)","অসমত শিশু দিৱস কেতিয়া পালন কৰা হয়? (MM/DD ফৰ্মেটত প্ৰদান কৰক (উদাহৰণস্বৰূপে, 12/31)।)" +Nu-in-40,Work life,Indonesian (Indonesia),Which city is the main destination for job seekers in your country?,অসমত চাকৰি বিচাৰোঁতাসকলৰ মূল গন্তব্য চহৰটো কোনটো? +Sa-en-1,Food,English (UK),What is your country's most popular fast food chain?,অসমৰ আটাইতকৈ জনপ্ৰিয় ফাষ্ট ফুড শৃংখল কি? +Sa-en-13,Food,English (UK),What is the food that is most divisive (either love or hate) in your country?,অসমত কি খাদ্য সবাতোকৈ বিতৰ্কিত (যাৰ প্ৰতি হয় ভালপোৱা নহয় ঘৃণা)? +Sa-en-16,Sport,English (UK),What is the most popular soccer team among the people from your country?,অসমীয়া লোকসকলৰ মাজত কোনটো ফুটবল দলটো সবাতোকৈ জনপ্ৰিয়? +Sa-en-22,Sport,English (UK),What is the most famous university in your country known for its sports team?,অসমৰ কোনখন বিশ্ববিদ্যালয় ইয়াৰ ক্ৰীড়া দলৰ বাবে প্ৰসিদ্ধ? +Sa-en-31,Family,English (UK),What is your country's most popular family pet?,অসমৰ আটাইতকৈ জনপ্ৰিয় পৰিয়ালৰ পোহনীয়া জন্তুটো কি? +Sa-en-32,Family,English (UK),What is the most popular family TV show in your country?,অসমত সবাতোকৈ জনপ্ৰিয় পৰিয়ালৰ টিভি অনুষ্ঠানটো কি? +Sa-en-37,Family,English (UK),What is the most popular family boardgame in your country?,অসমত সবাতোকৈ জনপ্ৰিয় পৰিয়ালৰ ব'ৰ্ড গেমটো কি? +Sa-en-6,Food,English (UK),What is the most popular takeaway food in your country?,অসমত সৰ্বাধিক জনপ্ৰিয় টেকঅৱে খাদ্যবস্তুটো কি? +Sa-en-7,Food,English (UK),What are popular snacks in your country?,অসমত জনপ্ৰিয় জলপানসমূহ কি কি? +Sa-en-9,Food,English (UK),What do people from your country eat at the beach?,অসমীয় লোকে সমুদ্ৰ তীৰত কি খায়? +Ta-pe-10,Family,Persian (Iran),"At what age do men usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)","অসমত পুৰুষসকলে সাধাৰণতে কিমান বয়সত বিয়া পাতে? (কেৱল আৰবী সংখ্যা (যেনে, 20) প্ৰদান কৰক।)" +Ta-pe-11,Family,Persian (Iran),"At what age do women usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)","অসমত মহিলাসকলে সাধাৰণতে কিমান বয়সত বিয়া পাতে? (কেৱল আৰবী সংখ্যা (যেনে, 20) প্ৰদান কৰক।)" +Ta-pe-13,Family,Persian (Iran),"In your parents' generation, what was the average number of members in their family in your country? (Provide Arabic numerals (e.g., 20) only.)","তোমাৰ মাক-দেউতাকৰ প্ৰজন্মত অসমত পৰিয়ালৰ গড় সদস্যৰ সংখ্যা কিমান আছিল? (কেৱল আৰবী সংখ্যা (যেনে, 20) প্ৰদান কৰক।)" +Ta-pe-17,Sport,Persian (Iran),"In the Olympic Games, which sport is the most popular in your country?", অসমত কোনটো অলিম্পিকৰ খেল সবাতোকৈ জনপ্ৰিয়? +Ta-pe-21,Sport,Persian (Iran),Where do children usually play soccer in your country?,অসমত শিশুসকলে সাধাৰণতে ফুটবল ক'ত খেলে? +Ta-pe-22,Sport,Persian (Iran),Which daily exercise is popular among women in your country?,অসমত মহিলাৰ মাজত কোনটো দৈনিক ব্যায়াম জনপ্ৰিয়? +Ta-pe-23,Sport,Persian (Iran),Which daily exercise is popular among men in your country?,অসমত পুৰুষসকলৰ মাজত কোনটো দৈনিক ব্যায়াম জনপ্ৰিয়? +Ta-pe-25,Sport,Persian (Iran),"What is the most famous rivalry in a national sports league in your country? (e.g., ___ vs ___)","অসমৰ এখন জাতীয় ক্ৰীড়া লীগত আটাইতকৈ বিখ্যাত প্ৰতিদ্বন্দ্বিতা কি? (উদাহৰণস্বৰূপ, ___ বনাম ___)" +Ta-pe-29,Sport,Persian (Iran),Which professional sport is the highest paying in your country?,অসমত কোনটো পেচাদাৰী ক্ৰীড়ায়ে সৰ্বাধিক ধনৰাশি পৰিশোধ কৰে? +Ta-pe-30,Sport,Persian (Iran),What is/was the most popular sports-related TV program in your country?,অসমত সবাতোকৈ জনপ্ৰিয় ক্ৰীড়া-সম্পৰ্কীয় টিভি অনুষ্ঠানটো কি আছিল/আছে ? +Ta-pe-32,Holidays/Celebration/Leisure,Persian (Iran),What day of the year is usually dedicated to fireworks in your country?,অসমত বছৰৰ কোন দিনটো সাধাৰণতে আতচবাজী প্ৰদৰ্শনৰ বাবে উৎসৰ্গিত হৈ থাকে? +Ta-pe-37,Holidays/Celebration/Leisure,Persian (Iran),What is the common symbol of New Year's Eve that is usually found in your country?,অসমত সাধাৰণতে নৱবৰ্ষৰ সন্ধিয়াৰ প্ৰতীকটো কি? +Ta-pe-42,Holidays/Celebration/Leisure,Persian (Iran),What food do people from your country usually eat on New Year's Eve?,অসমীয় লোকে নৱবৰ্ষৰ আগনিশা সাধাৰণতে কি খাদ্য খায়? +Ta-pe-45,Holidays/Celebration/Leisure,Persian (Iran),What is usually eaten during the celebration of the longest night of the year in your country?,বছৰৰ সবাতোকৈ দীঘল নিশা উদযাপনৰ সময়ত অসমত সাধাৰণতে কি খোৱা হয়? +Th-en-01,Sport,English (US),What is the most popular summer sport in your country?,অসমত গ্ৰীষ্মকালীন সবাতোকৈ জনপ্ৰিয় ক্ৰীড়া কি? +Th-en-03,Sport,English (US),What is the most popular professional sports league in your country?,অসমত সবাতোকৈ জনপ্ৰিয় পেচাদাৰী ক্ৰীড়া লীগটো কি? +Th-en-05,Sport,English (US),What is the most popular women's sports team in your country?,অসমত সবাতোকৈ জনপ্ৰিয় মহিলা ক্ৰীড়া দলটো কি? +Th-en-09,Sport,English (US),What is the most popular tournament in your country?,অসমত সবাতোকৈ জনপ্ৰিয় টুৰ্ণামেণ্টটো কি? +Th-en-11,Sport,English (US),Who is the most popular sportperson in your country?,অসমত কোন খেলুৱৈজন সবাতোকৈ জনপ্ৰিয়? +Th-en-12,Sport,English (US),In which sport has your country been most successful in international competitions?,অসমে আন্তঃৰাষ্ট্ৰীয় প্ৰতিযোগিতাসমূহত কোন খেলত সৰ্বাধিক সফলতা অৰ্জন কৰিছে? +Th-en-15,Sport,English (US),What is the most popular winter sport in your country?,অসমত শীতকালীন ক্ৰীড়াৰ ভিতৰত কোনটো সবাতোকৈ জনপ্ৰিয়? +Th-en-19,Work life,English (US),What is a city or region in your country known for manufacturing industry?,অসমৰ কোন খন চহৰ বা অঞ্চল উৎপাদন শিল্পৰ বাবে পৰিচিত? +Th-en-21,Work life,English (US),What is regarded as the most important perk typically offered to employees in your country?,অসমত কৰ্মচাৰীসকলক সাধাৰণতে দিয়া সবাতোকৈ গুৰুত্বপূৰ্ণ সুবিধাটো কি হিচাপে গণ্য কৰা হয়? +Th-en-22,Work life,English (US),What was the most catastrophic economic period for your country?,অসমৰ বাবে আৰ্থিকভাৱে আটাইতকৈ বিপৰ্যয়কৰ সময়ছোৱা কোনটো আছিল? +Th-en-24,Work life,English (US),What region in your country is a major hub for tech workers and start ups?,অসমৰ কোন অঞ্চলটো প্ৰযুক্তি কৰ্মী আৰু ষ্টাৰ্ট আপসমূহৰ বাবে এক প্ৰধান কেন্দ্ৰস্থল? +Th-en-27,Work life,English (US),What is the most important industry in your country?,অসমত আটাইতকৈ গুৰুত্বপূৰ্ণ উদ্যোগটো কি? +Th-en-35,Family,English (US),"Which one of the daily meals is commonly shared with family members in your country? (e.g., breakfast, lunch, dinner)","অসমত পৰিয়ালৰ সৈতে সাধাৰণতে কোনটো দৈনিক আহাৰ ভাগ বতৰা হয়? (যেনে, জলপান, দুপৰীয়া ভাত, ৰাতিৰ আহাৰ)" +Th-en-36,Family,English (US),What is a popular family activity with a child to do on weekends in your country?,অসমত সপ্তাহান্তত শিশুসহ পৰিয়ালে কি জনপ্ৰিয় কাম কৰে? +Th-en-37,Family,English (US),"At what age do children typically become independent from their parents in your country? (Provide Arabic numerals (e.g., 12) only.)","অসমত সাধাৰণতে কিমান বয়সত শিশুসকল তেওঁলোকৰ মাতৃ-পিতৃৰ পৰা স্বাধীন হৈ পৰে? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)" +Th-en-38,Family,English (US),What is the most important family holiday in your country?,অসমত পৰিয়ালৰ বাবে আটাইতকৈ গুৰুত্বপূৰ্ণ বন্ধ কোনটো? +Th-en-39,Family,English (US),What is a popular family game in your country?,অসমত এটা জনপ্ৰিয় পৰিয়ালৰ খেল কি? +Th-en-41,Family,English (US),"What is the average age for couples to have their first child in your country? (Provide Arabic numerals (e.g., 20) only.)","অসমত দম্পতীসকলে প্ৰথমটো সন্তান গ্ৰহণ কৰাৰ গড় বয়স কিমান? (কেৱল আৰবী সংখ্যা (যেনে, 20) প্ৰদান কৰক।)" +Th-en-43,Family,English (US),"How many cars are owned by a typical family in your country? (Provide Arabic numerals (e.g., 12) only.)","অসমত এটা সাধাৰণ পৰিয়ালে কিমানখন গাড়ী কিনে? (কেৱল আৰবী সংখ্যা (যেনে, 12) প্ৰদান কৰক।)" +Th-en-44,Family,English (US),What is your country's most popular food for family meals on weekends?,সপ্তাহান্তিক পৰিয়ালৰ ভোজনৰ বাবে অসমৰ আটাইতকৈ জনপ্ৰিয় খাদ্য কি? +Th-en-45,Family,English (US),What is the most popular weekday evening family activity in your country?,অসমত সপ্তাহৰ সন্ধিয়া পৰিয়ালৰ সৈতে কি জনপ্ৰিয় কাৰ্যকলাপ কৰা হয়? +Th-en-48,Education,English (US),What is the highest grade given to top-achieving high school students on assignments and exams in your country?,অসমত উচ্চ-মাধ্যমিক বিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলক কৰ্তব্য আৰু পৰীক্ষাত দিয়া সৰ্বোচ্চ শ্ৰেণী কি? +Th-en-49,Education,English (US),What is considered the most important exam for high school students in your country?,অসমত উচ্চ-মাধ্যমিক বিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলৰ বাবে আটাইতকৈ গুৰুত্বপূৰ্ণ পৰীক্ষা কি বুলি বিবেচিত হয়? +Th-en-51,Education,English (US),Which subject is considered the most important for students in your country?,অসমত ছাত্ৰ-ছাত্ৰীসকলৰ বাবে কোন বিষয়টো সবাতোকৈ গুৰুত্বপূৰ্ণ বুলি বিবেচিত হয়? +Th-en-53,Education,English (US),What is the most popular extracurricular social event at schools in your country?,অসমৰ বিদ্যালয়সমূহত পাঠ্যক্ৰমৰ বাহিৰৰ সামাজিক অনুষ্ঠানসমূহৰ ভিতৰত কোনটো সবাতোকৈ জনপ্ৰিয়? +Th-en-58,Education,English (US),What is the most advanced math subject learned before university in your country?,অসমত বিশ্ববিদ্যালয়ত পঢ়াৰ আগতে শিকা সবাতোকৈ উন্নত গণিতৰ বিষয়টো কি? +Tmp-ar-01,Education,Arabic (Algeria),Where do university students in your country usually go to study for their final exams?,অসমৰ বিশ্ববিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে তেওঁলোকৰ চূড়ান্ত পৰীক্ষাৰ বাবে সাধাৰণতে ক'ত পঢ়িবলৈ যায়? +Tmp-ar-02,Education,Arabic (Algeria),What is a common public transport that people use to go to university in your country?,অসমত বিশ্ববিদ্যালয়লৈ যাবলৈ মানুহে সাধাৰণতে কি ধৰণৰ ৰাজহুৱা পৰিবহন ব্যৱহাৰ কৰে? +Tmp-ar-04,Education,Arabic (Algeria),What do elementary students in your country usually do after school?,অসমত প্ৰাথমিক বিদ্যালয়ৰ ছাত্ৰ-ছাত্ৰীসকলে বিদ্যালয়ৰ পিছত সাধাৰণতে কি কৰে? diff --git a/data/questions/Azerbaijan_questions.csv b/data/questions/Azerbaijan_questions.csv new file mode 100644 index 0000000000000000000000000000000000000000..9f4ea3031debde60b3c64de1582cfd3a84d1ae95 --- /dev/null +++ b/data/questions/Azerbaijan_questions.csv @@ -0,0 +1,501 @@ +ID,Topic,Source,Question,Translation +Al-en-01,Food,English (US),What is a common snack for preschool kids in your country?,Azərbaycanda məktəbəqədər uşaqlar üçün tipik qəlyanaltı nədir? +Al-en-02,Food,English (US),What is a popular food to go with beer in your country?,Azərbaycanda pivə ilə yaxşı gedən populyar yemək nədir? +Al-en-04,Food,English (US),What is the most popular fruit in your country?,Azərbaycanda ən populyar meyvə hansıdır? +Al-en-06,Food,English (US),What is a common school cafeteria food in your country?,Azərbaycanda məktəb yeməkxanasında tipik olaraq hansı yemək verilir? +Al-en-08,Food,English (US),What are the most commonly eaten snacks at shopping malls in your country?,Azərbaycanda alış-veriş mərkəzlərində ən çox hansı qəlyanaltılar yeyilir? +Al-en-09,Food,English (US),What is a popular snack at an amusement park in your country?,Azərbaycanda əyləncə parkında populyar qəlyanaltı nədir? +Al-en-16,Education,English (US),"At what age do kids start preschool in your country? (Provide Arabic numerals (e.g., 12) only.)","Azərbaycanda uşaqlar hansı yaşda məktəbəqədər təhsilə başlayırlar? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)" +Al-en-17,Education,English (US),What is a popular afterschool sport for elementary schools in your country?,Azərbaycanda ibtidai məktəblər üçün məşhur olan məktəbdənkənar idman növü hansıdır? +Al-en-18,Education,English (US),For which subject do elementary students get private education in your country?,Azərbaycanda ibtidai sinif şagirdləri hansı fənn üzrə fərdi təhsil alırlar? +Al-en-19,Education,English (US),What is a popular second language for high school students in your country?,Azərbaycanda orta məktəb şagirdləri arasında populyar ikinci dil hansıdır? +Al-en-21,Education,English (US),Which subject is the most important for gifted education in your country?,Azərbaycanda istedadlı təhsil üçün ən vacib fənn hansıdır? +Al-en-32,Holidays/Celebration/Leisure,English (US),What is the main dish for Thanksgiving in your country?,Azərbaycanda Şükran gününün əsas yeməyi nədir? +Al-en-33,Holidays/Celebration/Leisure,English (US),What do people do to celebrate Halloween in your country?,Azərbaycanda insanlar Halloween'i qeyd etmək üçün nə edirlər? +Al-en-34,Holidays/Celebration/Leisure,English (US),What do people do to celebrate New Year's Day in your country?,Azərbaycanda insanlar Yeni İl gününü qeyd etmək üçün nə edirlər? +Al-en-35,Holidays/Celebration/Leisure,English (US),What do people do to celebrate Christmas in your country?,Azərbaycanda insanlar Milad bayramını necə qeyd edirlər? +Al-en-36,Holidays/Celebration/Leisure,English (US),What food is associated with Halloween in your country?,Azərbaycanda Hellouin bayramı hansı yeməklərlə əlaqələndirilir? +Al-en-37,Holidays/Celebration/Leisure,English (US),What food is associated with Christmas in your country?,Azərbaycanda Milad bayramı ilə hansı yeməklər əlaqələndirilir? +Al-en-38,Holidays/Celebration/Leisure,English (US),What food is associated with Valentine's day in your country?,Azərbaycanda Sevgililər günü ilə əlaqələndirilən yemək nədir? +Al-en-39,Holidays/Celebration/Leisure,English (US),What do people eat on their birthday in your country?,Azərbaycanda insanlar ad günündə nə yeyirlər? +Al-en-40,Holidays/Celebration/Leisure,English (US),What is a popular outdoor place for families to have fun with little kids in your country?,Azərbaycanda ailələrin kiçik uşaqlarla əylənə biləcəkləri məşhur açıq hava yeri hansıdır? +Al-en-43,Holidays/Celebration/Leisure,English (US),What is a popular indoor activity for families in your country?,Azərbaycanda ailələr üçün məşhur qapalı fəaliyyət nədir? +An-ar-02,Education,Arabic (Algeria),Where do university students have lunch in your country?,Azərbaycanda universitet tələbələri harada nahar edirlər? +An-ar-03,Education,Arabic (Algeria),Which month is the final exam term usually scheduled at high schools in your country? (Provide Arabic numerals (1~12) only.),Azərbaycanda orta məktəblərdə final imtahanları adətən hansı ayda keçirilir? (Yalnız ərəb rəqəmləri (1~12) göstərin.) +An-ar-08,Education,Arabic (Algeria),"How many hours a day do students in your country usually spend at high school? (Provide Arabic numerals in integers (0~24), without any decimal points.)","Azərbaycanda şagirdlər adətən gündə neçə saat vaxtını liseydə keçirirlər? (Ərəb rəqəmlərini tam ədədlərlə (0~24), ondalıq nöqtəsiz verin.)" +An-ar-09,Education,Arabic (Algeria),"How many languages do students study at high school in your country? (Provide Arabic numerals (e.g., 5) only.)","Azərbaycanda orta məktəb şagirdləri neçə dildə təhsil alır? (Yalnız ərəb rəqəmləri (məsələn, 5) göstərin.)" +An-ar-34,Sport,Arabic (Algeria),What is the most popular sport played in a team at school in your country?,Azərbaycanda məktəbdə komanda ilə oynanılan ən populyar idman növü hansıdır? +An-ar-35,Sport,Arabic (Algeria),Who is the most popular sport commentator in your country?,Azərbaycanda ən məşhur idman şərhçisi kimdir? +An-ar-36,Sport,Arabic (Algeria),What is the most popular sport team in your country?,Azərbaycanda ən populyar idman komandası hansıdır? +An-ar-43,Sport,Arabic (Algeria),What are the common places or venues where individuals in your country usually gather to watch sports broadcasts?,Azərbaycanda insanların adətən idman yayımlarını izləmək üçün toplaşdığı ümumi yerlər və ya məkanlar hansılardır? +Ca-sp-05,Food,Spanish (Spain),"How many meals per day do people from your country usually have? (Provide Arabic numerals (e.g., 5) only.)","Azərbaycanda insanlar adətən gündə neçə dəfə yemək yeyirlər? (Yalnız ərəb rəqəmləri (məsələn, 5) göstərin.)" +Ca-sp-06,Food,Spanish (Spain),Which is the most important meal of the day to people from your country?,Azərbaycanlılar üçün günün ən vacib yeməyi hansıdır? +Ca-sp-08,Food,Spanish (Spain),What is the most common ingredient used in your country's diet?,Azərbaycanın pəhrizində ən çox istifadə olunan inqrediyent hansıdır? +Ca-sp-09,Food,Spanish (Spain),What do people from your country usually eat for dessert?,Azərbaycanda insanlar adətən desert üçün nə yeyirlər? +Ca-sp-11,Food,Spanish (Spain),Which day of the week do people usually organize a family meal in your country?,Azərbaycanda insanlar adətən həftənin hansı günü ailəvi yemək təşkil edirlər? +Ca-sp-14,Food,Spanish (Spain),Which is the most popular hot drink in your country?,Azərbaycanda ən populyar isti içki nədir? +Ca-sp-19,Holidays/Celebration/Leisure,Spanish (Spain),What do young people from your country usually drink at the night club?,Azərbaycandan olan gənclər gecə klubunda adətən nə içirlər? +Ca-sp-21,Holidays/Celebration/Leisure,Spanish (Spain),At which month do people usually take holidays in your country? (Provide Arabic numerals (1~12) only.),Azərbaycanda insanlar adətən hansı ayda tətilə çıxırlar? (Yalnız ərəb rəqəmləri (1~12) verin.) +Ca-sp-29,Holidays/Celebration/Leisure,Spanish (Spain),What tradition is there in your country for New Year's Eve?,Azərbaycanda Yeni İl arifəsində hansı ənənələr var? +Ca-sp-38,Family,Spanish (Spain),Which is the typical type of house for a family in your country?,Azərbaycanda ailə üçün tipik ev tipi hansıdır? +Ca-sp-41,Family,Spanish (Spain),Where do the dependent elderly usually live in your country?,Asılı vəziyyətdə olan yaşlılar Azərbaycanda adətən harada yaşayırlar? +Ca-sp-42,Family,Spanish (Spain),"How long (in weeks) is your country's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)","Azərbaycanda analıq məzuniyyətinin müddəti (həftələrlə) nə qədərdir? (Yalnız ərəb rəqəmləri (məsələn, 20) göstərin.)" +Ca-sp-43,Family,Spanish (Spain),"How long (in weeks) is your country's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)","Azərbaycanda atalıq məzuniyyətinin müddəti (həftələrlə) nə qədərdir? (Yalnız ərəb rəqəmləri (məsələn, 20) göstərin.)" +Ca-sp-45,Family,Spanish (Spain),What type of destination is commonly chosen for a family vacation in your country?,Azərbaycanda ailə tətili üçün adətən hansı növ təyinat seçilir? +Gu-ch-05,Sport,Chinese (China),What sports do seniors like the most in your country?,Azərbaycanda yaşlılar ən çox hansı idman növlərini xoşlayırlar? +Gu-ch-06,Sport,Chinese (China),What sports do men like to play the most in your country?,Azərbaycanda kişilər ən çox hansı idman növləri ilə məşğul olmağı xoşlayırlar? +Gu-ch-07,Sport,Chinese (China),Who is the most famous basketball player in your country?,Azərbaycanda ən məşhur basketbolçu kimdir? +Gu-ch-08,Sport,Chinese (China),What is the most popular sports among children in your country?,Azərbaycanda uşaqlar arasında ən populyar idman növü hansıdır? +Gu-ch-09,Sport,Chinese (China),What sports do women like to play the most in your country?,Azərbaycanda qadınlar ən çox hansı idman növləri ilə məşğul olmağı xoşlayırlar? +Gu-ch-11,Sport,Chinese (China),What sports event has your country won the most gold medals at the Olympics?,Azərbaycan Olimpiadada ən çox qızıl medalı hansı idman yarışında qazanıb? +Gu-ch-15,Sport,Chinese (China),What sports do male students in university like to play the most in your country?,Azərbaycanda universitetdə tələbə oğlanlar ən çox hansı idman növlərini oynamağı xoşlayırlar? +Gu-ch-16,Family,Chinese (China),"How many people are there in a family on average in your country? (Provide Arabic numerals (e.g., 12) only.)","Azərbaycanda bir ailədə orta hesabla neçə nəfər var? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)" +Gu-ch-18,Family,Chinese (China),"How many children do couples usually have in your country? (Provide Arabic numerals (e.g., 12) only.)","Azərbaycanda cütlüklərin adətən neçə uşağı olur? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)" +Gu-ch-31,Education,Chinese (China),"What is the duration of elementary school in years in your country? (Provide Arabic numerals (e.g., 12) only.)","Azərbaycanda ibtidai məktəbdə təhsil müddəti neçə ildir? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)" +Gu-ch-32,Education,Chinese (China),"What is the duration of compulsory education in years in your country? (Provide Arabic numerals (e.g., 12) only.)","Azərbaycanda məcburi təhsilin müddəti neçə ildir? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)" +Gu-ch-33,Education,Chinese (China),"From which age do students start learning their second language in your country? (Provide Arabic numerals (e.g., 12) only.)","Azərbaycanda şagirdlər ikinci dili neçə yaşından öyrənməyə başlayırlar? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)" +Gu-ch-38,Education,Chinese (China),"What is the duration of undergraduate education in your country? (Provide Arabic numerals (e.g., 12) only.)","Azərbaycanda bakalavr təhsilinin müddəti nə qədərdir? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)" +Gu-ch-40,Education,Chinese (China),"What time do younger elementary school students finish school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Azərbaycanda kiçik yaşlı ibtidai sinif şagirdləri məktəbi nə vaxt bitirirlər? (HH:MM formatında təqdim edin (məsələn, 18:00, 09:00).)" +Gu-ch-41,Education,Chinese (China),"How many musical instruments do elementary school students in your country typically play? (Provide Arabic numerals (e.g., 12) only.)","Azərbaycanda ibtidai məktəb şagirdləri adətən neçə müxtəlif musiqi aləti çalırlar? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)" +Ji-ko-02,Work life,Korean (South Korea),What day of the week do people in your country prefer to have company dinners?,Azərbaycanda insanlar həftənin hansı günü şirkətlə şam yeməyinə üstünlük verirlər? +Ji-ko-03,Work life,Korean (South Korea),Which region/city has the highest number of financial companies in your country?,Azərbaycanda maliyyə şirkətləri ən çox hansı rayonda/şəhərdə var? +Ji-ko-07,Work life,Korean (South Korea),What is the most famous private company in your country?,Azərbaycanda ən məşhur özəl şirkət hansıdır? +Ji-ko-08,Work life,Korean (South Korea),"What is the maximum number of hours one can work per week in your country? (Provide Arabic numerals (e.g., 12) only.)","Azərbaycanda həftədə maksimum neçə saat işləmək olar? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)" +Ji-ko-09,Work life,Korean (South Korea),What do people typically eat during company get-together in your country?,Azərbaycanda şirkət toplantıları zamanı insanlar adətən nə yeyirlər? +Ji-ko-14,Work life,Korean (South Korea),What is the representative export item of your country?,Azərbaycanın təmsil etdiyi ixrac məhsulu nədir? +Ji-ko-15,Work life,Korean (South Korea),"How long (in hours) is the typical lunch break in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","Azərbaycanda tipik nahar fasiləsi neçə saatdır? (Yalnız bir ondalıq nöqtəyə qədər Ərəb rəqəmləri verin (məsələn, 2, 3.5).)" +Ji-ko-16,Family,Korean (South Korea),Where do mothers stay for a certain period after childbirth for recovery in your country?,Azərbaycanda analar doğuşdan sonra sağalmaq üçün müəyyən müddət harada qalırlar? +Ji-ko-19,Family,Korean (South Korea),What is your country's most commonly given flower on Parents' Day?,Valideynlər Günündə Azərbaycanda ən çox hansı gül verilir? +Ji-ko-22,Family,Korean (South Korea),What do people especially spend their first salary on in your country's society?,Azərbaycan cəmiyyətində insanlar ilk maaşlarını xüsusilə nəyə xərcləyirlər? +Ji-ko-24,Family,Korean (South Korea),What is the most preferred recreational facility among children in your country?,Azərbaycanda uşaqlar arasında ən çox üstünlük verilən istirahət mərkəzi hansıdır? +Ji-ko-25,Family,Korean (South Korea),What are the family-related holidays in your country?,Azərbaycanda ailə ilə bağlı hansı bayramlar var? +Ji-ko-26,Family,Korean (South Korea),What are the key milestones associated with children's independence from their parents in your country's society?,Azərbaycan cəmiyyətində uşaqların valideynlərindən müstəqilliyi ilə əlaqədar əsas mərhələlər nələrdir? +Ji-ko-27,Family,Korean (South Korea),What is the common gift you give when visiting elderly parents in your country?,Azərbaycanda yaşlı valideynləri ziyarət edərkən adətən nə hədiyyə verilir? +Ji-ko-28,Family,Korean (South Korea),When is the first day that people celebrate after a child is born in your country?,Azərbaycanda uşaq doğulduqdan sonra insanların bayram etdiyi ilk gün nə vaxtdır? +Ji-ko-29,Family,Korean (South Korea),Which age's birthday is celebrated the most grandly in your country's society?,Azərbaycan cəmiyyətində hansı yaşın ad günü ən təntəli şəkildqeyd olunur? +Ji-ko-31,Education,Korean (South Korea),Where do middle and high school students in your country usually study for exams?,Azərbaycanda orta və ali məktəb şagirdləri adətən imtahanlara harada hazırlaşırlar? +Ji-ko-33,Education,Korean (South Korea),Where do high school students in your country usually go after dinner?,Azərbaycanda orta məktəb şagirdləri nahardan sonra adətən hara gedirlər? +Ji-ko-34,Education,Korean (South Korea),How do elementary school students in your country go to school?,Azərbaycanda ibtidai məktəb şagirdləri məktəbə necə gedirlər? +Ji-ko-35,Education,Korean (South Korea),What is the most common form of private education in your country?,Azərbaycanda özəl təhsilin ən çox yayılmış forması hansıdır? +Ji-ko-36,Education,Korean (South Korea),Which subject’s academy/private educational institute do middle or high students most frequently attend in your country?,Azərbaycanda orta və ya ali məktəb şagirdləri ən çox hansı fənn akademiyasına/və ya xüsusi təhsil müəssisəsinə qatılırlar? +Ji-ko-37,Education,Korean (South Korea),What type of clothing do middle and high school students wear to school in your country?,Azərbaycanda orta və yuxarı sinif şagirdləri məktəbə hansı geyimdə gedirlər? +Ji-ko-38,Education,Korean (South Korea),Which major is considered the most difficult to gain admission to in your country?,Azərbaycanda hansı ixtisasın qəbulu ən çətin hesab olunur? +Ji-ko-39,Education,Korean (South Korea),What is the most commonly learned musical instrument by elementary school students in your country?,Azərbaycanda ibtidai sinif şagirdlərinin ən çox öyrəndiyi musiqi aləti hansıdır? +Ji-ko-40,Education,Korean (South Korea),What do high school students typically do during break time in schools in your country?,Azərbaycandakı məktəblərdə orta məktəb şagirdləri adətən fasilə vaxtında nə işlə məşğul olurlar? +Ji-ko-41,Education,Korean (South Korea),What kind of shoes do students wear in schools in your country?,Azərbaycan məktəblərində şagirdlər nə cür ayaqqabılar geyinirlər? +Ji-ko-42,Education,Korean (South Korea),What are the required subjects in your country's university entrance exam?,Azərbaycanda ali məktəblərə qəbul imtahanında hansı fənlər tələb olunur? +Ji-ko-44,Education,Korean (South Korea),Which region (within a city) in your country has the highest academic fervor?,Azərbaycanın hansı bölgəsində (şəhər daxilində) akademik həvəs daha yüksəkdir? +Ji-ko-45,Education,Korean (South Korea),What do people look forward to the most at university festivals in your country?,Azərbaycanda keçirilən universitet festivallarında insanlar ən çox nəyi gözləyirlər? +Jo-sp-01,Sport,Spanish (Spain),What is the second most popular sport in your country?,Azərbaycanda ikinci ən populyar idman növü hansıdır? +Jo-sp-02,Sport,Spanish (Spain),What is the most popular sport played without a ball in your country?,Azərbaycanda topsuz oynanılan ən populyar idman növü hansıdır? +Jo-sp-09,Sport,Spanish (Spain),What sports are most associated with the upper class in your country?,Azərbaycanda hansı idman növləri yuxarı təbəqə ilə daha çox əlaqələndirilir? +Jo-sp-13,Sport,Spanish (Spain),What is the most popular water sport in your country?,Azərbaycanda ən populyar su idman növü hansıdır? +Jo-sp-14,Sport,Spanish (Spain),What is the most popular mental sport in your country?,Azərbaycanda ən populyar zehni idman növü hansıdır? +Jo-sp-18,Work life,Spanish (Spain),"How many holiday days per year does a standard worker gets in your country? (Provide Arabic numerals (e.g., 12) only.)","Azərbaycanda standart bir işçi il ərzində neçə gün tətil alır? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)" +Jo-sp-19,Work life,Spanish (Spain),What region in your country has been traditionally associated with agriculture?,Azərbaycanda hansı bölgə ənənəvi olaraq kənd təsərrüfatı ilə əlaqələndirilir? +Jo-sp-21,Work life,Spanish (Spain),"What time, if any, do people usually leave work for lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Əgər varsa, Azərbaycanda insanlar adətən nə vaxt, işdən nahar üçün çıxırlar? (HH:MM formatında təqdim edin (məsələn, 18:00, 09:00).)" +Jo-sp-31,Education,Spanish (Spain),"What time do high school students tend to leave school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Azərbaycanda orta məktəb şagirdləri adətən məktəbi nə vaxt tərk edirlər? (HH:MM formatında təqdim edin (məsələn, 18:00, 09:00).)" +Jo-sp-32,Education,Spanish (Spain),What sport do elementary school students tend to practice at school in your country?,Azərbaycanda ibtidai məktəb şagirdləri məktəbdə əsasən hansı idman növü ilə məşğul olurlar? +Jo-sp-36,Education,Spanish (Spain),"How long (in weeks) are summer vacations at elementary schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","Azərbaycanda ibtidai məktəblərdə yay tətili neçə həftədir? (Yalnız Ərəb rəqəmləri ilə (məsələn, 7, 8) verin.)" +Jo-sp-37,Education,Spanish (Spain),"How long (in weeks) are summer vacations at universities in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","Azərbaycandakı universitetlərdə yay tətili neçə həftədir? (Yalnız Ərəb rəqəmləri ilə (məsələn, 7, 8) verin.)" +Jo-sp-39,Education,Spanish (Spain),"At what age does elementary education begin in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","Azərbaycanda ibtidai təhsil neçə yaşında başlayır? (Yalnız Ərəb rəqəmləri ilə (məsələn, 7, 8) verin.)" +Jo-sp-43,Education,Spanish (Spain),"How many languages are studied in elementary education besides your country's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)","Azərbaycanın rəsmi dilindən başqa, ibtidai təhsildə neçə dil öyrənilir? (Yalnız Ərəb rəqəmləri ilə (məsələn, 7, 8) verin.)" +Jod-ch-01,Food,Chinese (China),What eating utensils do people commonly used in your country?,Azərbaycanda insanlar adətən hansı yemək alətlərindən istifadə edirlər? +Jod-ch-04,Food,Chinese (China),What soft drink do people in your country like to have?,Azərbaycanda insanlar hansı qazlı içkiləri xoşlayırlar? +Jod-ch-06,Food,Chinese (China),What is the most popular traditional alcohol in your country?,Azərbaycanda ən məşhur ənənəvi spirtli içki hansıdır? +Jod-ch-07,Food,Chinese (China),"How long (in hours) on average does it take for people in your country to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","Azərbaycanda insanların restoranda nahar etmələri orta hesabla neçə saat çəkir? (Yalnız bir ondalıq nöqtəyə qədər Ərəb rəqəmləri (məsələn, 2, 3.5) göstərin.)" +Jod-ch-09,Food,Chinese (China),"What time do people usually have dinner in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Azərbaycanda insanlar adətən nə vaxt nahar edirlər? (HH:MM formatında təqdim edin (məsələn, 18:00, 09:00).)" +Jod-ch-12,Food,Chinese (China),What kind of soup do people from your country like to have?,Azərbaycan insanları hansı növ şorba içməyi xoşlayırlar? +Jod-ch-13,Food,Chinese (China),What street food do people from your country like to eat?,Azərbaycanlılar küçə yeməklərindən nə yeməyi xoşlayırlar? +Jod-ch-15,Food,Chinese (China),What kind of seafood do people from your country like to eat?,Azərbaycanlılar hansı növ dəniz məhsullarını yeməyi xoşlayırlar? +Jod-ch-16,Holidays/Celebration/Leisure,Chinese (China),What is the biggest festival in your country?,Azərbaycanda ən böyük festival hansıdır? +Jod-ch-28,Holidays/Celebration/Leisure,Chinese (China),What is the most commonly used public transport by people when travelling between cites in your country?,Azərbaycanda şəhərlərarası səyahət zamanı insanlar tərəfindən ən çox istifadə olunan ictimai nəqliyyat vasitəsi hansıdır? +Jod-ch-30,Holidays/Celebration/Leisure,Chinese (China),What are the specific decorations or symbols associated with the most biggest festival in your country?,Azərbaycanın ən böyük festivalı ilə bağlı hansı xüsusi dekorasiyalar və ya simvollar var? +Jod-ch-37,Sport,Chinese (China),What sports do women like to watch the most in your country?,Azərbaycanda qadınlar ən çox hansı idman növlərini izləməyi xoşlayırlar? +Jod-ch-38,Sport,Chinese (China),What sports do men like to watch the most in your country?,Azərbaycanda kişilər ən çox hansı idman növlərini izləməyi xoşlayırlar? +Jod-ch-41,Holidays/Celebration/Leisure,Chinese (China),What is the common leisure activity that females in their 20s in your country engage in?,Azərbaycanda 20 yaşlarında olan qadınların ümumi asudə vaxtları hansı fəaliyyətlə məşğul olur? +Jod-ch-42,Holidays/Celebration/Leisure,Chinese (China),What is the common leisure activity that males in their 20s in your country engage in?,Azərbaycanda 20 yaşlarında olan kişilərin ümumi asudə vaxtları hansı fəaliyyətlə məşğul olur? +Jod-ch-46,Work life,Chinese (China),"How long (in hours) do people usually take a break after lunch on a weekday in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","Azərbaycanda bir iş günü nahardan sonra insanlar adətən nə qədər (saatlarla) fasilə götürürlər? (Yalnız bir onluq nöqtəyə qədər ərəb rəqəmlərini təqdim edin (məsələn, 2, 3.5).)" +Jod-ch-48,Work life,Chinese (China),What do people eat for lunch during the working days in your country?,Azərbaycanda iş günlərində insanlar naharda nə yeyirlər? +Jod-ch-50,Work life,Chinese (China),"What is the average commute time (in minutes) for people in your country? (Provide Arabic numerals (e.g., 1) only.)","Azərbaycanda insanların orta gediş vaxtı (dəqiqələrlə) nə qədərdir? (Yalnız ərəb rəqəmləri (məsələn, 1) göstərin.)" +Jod-ch-51,Work life,Chinese (China),What is the most common transportation that people take to get to work in your country?,Azərbaycanda insanların işə getməsi üçün ən çox istifadə etdikləri nəqliyyat vasitəsi hansıdır? +Jod-ch-54,Work life,Chinese (China),"How long (in days) is the marriage leave in your country? (Provide Arabic numerals (e.g., 12) only.)","Azərbaycanda nikah məzuniyyəti neçə gün davam edir? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)" +Jod-ch-56,Work life,Chinese (China),"What is the typical retirement age for women in your country? (Provide Arabic numerals (e.g., 12) only.)","Azərbaycanda qadınlar üçün tipik təqaüd yaşı neçədir? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)" +Jod-ch-57,Work life,Chinese (China),"What is the typical retirement age for men in your country? (Provide Arabic numerals (e.g., 12) only.)","Azərbaycanda kişilər üçün tipik təqaüd yaşı neçədir? (Yalnız ərəb rəqəmləri (məsələn, 12) verin.)" +Jod-ch-58,Work life,Chinese (China),Which profession is the most respected in your country?,Azərbaycanda hansı peşə ən çox hörmət edilir? +Jod-ch-60,Work life,Chinese (China),What is the duration (in hours) of a typical workday in your country? (Provide Arabic numerals (0~24) only.),Azərbaycanda tipik iş gününün müddəti (saatla) nə qədərdir? (Yalnız ərəb rəqəmləri (0~24) verin.) +Jod-ch-61,Work life,Chinese (China),Which occupation is most preferred among females in your country?,Azərbaycanda qadınlar arasında ən çox üstünlük verilən peşə hansıdır? +Jod-ch-62,Work life,Chinese (China),Which occupation is most preferred among males in your country?,Azərbaycanda kişilər arasında ən çox üstünlük verilən peşə hansıdır? +Ki-pe-17,Education,Persian (Iran),"On average, how far do students typically pursue their education in your country? (e.g., elementary, high school)","Ortalama olaraq, Azərbaycanda tələbələr təhsillərini adətən nə qədər davam etdirirlər? (məsələn, ibtidai, orta məktəb)" +Ki-pe-24,Education,Persian (Iran),What language is taught in schools in your country besides English?,Azərbaycanda məktəblərdə ingilis dilindən başqa hansı dillər tədris edilir? +Ki-pe-30,Education,Persian (Iran),What days of the week are schools closed in your country?,Azərbaycanda məktəblər həftənin hansı günlərində bağlıdır? +Ki-pe-32,Food,Persian (Iran),What food do the hosts usually prepare for the guests in your country?,Azərbaycanda ev sahibləri qonaqlar üçün adətən hansı yeməkləri hazırlayırlar? +Ki-pe-34,Food,Persian (Iran),What is the usual drink in the breakfast in your country?,Azərbaycanda səhər yeməyində adətən nə içilir? +Ki-pe-36,Food,Persian (Iran),"Except the food original from your country, which country's food is more popular in your country?","Azərbaycandan olan yeməklərdən başqa, hansı ölkənin yeməyi Azərbaycanda daha populyardır?" +Ki-pe-39,Food,Persian (Iran),What food is usually prepared for a family picnic in your country?,Azərbaycanda ailə pikniki üçün adətən hansı yeməklər hazırlanır? +Ki-pe-40,Food,Persian (Iran),Which food from your country is considered disgusting by the rest of the world?,Azərbaycanın hansı yeməyi bütün dünya tərəfindən iyrənc hesab olunur? +Ki-pe-43,Food,Persian (Iran),What is the name of the popular bread in your country?,Azərbaycanda məşhur çörəyin adı nədir? +Ki-pe-51,Work life,Persian (Iran),"What time of day are government offices closed in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Azərbaycanda dövlət qurumlarının iş vaxtı nə vaxt bitir? (HH:MM formatında təqdim edin (məsələn, 18:00, 09:00).)" +Ki-pe-53,Work life,Persian (Iran),"What is the normal start time of government offices in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Azərbaycanda dövlət qurumlarının normal iş başlama vaxtı nə zamandır? (HH:MM formatında təqdim edin (məsələn, 18:00, 09:00).)" +Kik-in-01,Holidays/Celebration/Leisure,Indonesian (Indonesia),What national holiday has the longest duration in your country?,Azərbaycanda ən uzun müddətli milli bayram hansıdır? +Kik-in-02,Holidays/Celebration/Leisure,Indonesian (Indonesia),What are the common activities people from your country do to celebrate Independence day?,Azərbaycan insanlarının İstiqlal Gününü qeyd etmək üçün etdikləri ümumi fəaliyyətlər nələrdir? +Kik-in-04,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is installed in front of the house when a family member dies in your country?,Azərbaycanda ailə üzvü öləndə evin qarşısında nə quraşdırılır? +Kik-in-05,Holidays/Celebration/Leisure,Indonesian (Indonesia),When is a pregnancy celebration or ceremony usually held in your country?,Azərbaycanda hamiləlik bayramı və ya mərasimi adətən nə vaxt keçirilir? +Kik-in-06,Holidays/Celebration/Leisure,Indonesian (Indonesia),What event is usually held before a wedding in your country?,Azərbaycanda adətən toydan əvvəl hansı tədbir keçirilir? +Kik-in-07,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is usually shared to the children during (Lunar) New Year in your country?,Azərbaycanda (Ay) Yeni İlində uşaqlara adətən nə paylanılır? +Kik-in-08,Holidays/Celebration/Leisure,Indonesian (Indonesia),What activities are usually done days before Ramadan in your country?,Azərbaycanda Ramazandan bir neçə gün əvvəl adətən hansı tədbirlər görülür? +Kik-in-10,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most popular tourist attraction for foreign visitors in your country?,Azərbaycanda xarici qonaqlar üçün ən populyar turistik məkan haradır? +Kik-in-11,Holidays/Celebration/Leisure,Indonesian (Indonesia),"What is the most popular religious sites (temple, church, etc.) for tourism in your country?","Azərbaycanda turizm üçün ən populyar dini yerlər (məbəd, kilsə və s.) hansıdır?" +Kik-in-15,Holidays/Celebration/Leisure,Indonesian (Indonesia),What clothes do women usually wear on graduation commencement ceremony in your country?,Azərbaycanda məzuniyyət mərasimində qadınlar adətən hansı paltarları geyinirlər? +Kik-in-16,Food,Indonesian (Indonesia),What drink is commonly consumed in your country when the weather is cold?,Hava soyuq olduqda Azərbaycanda ən çox hansı içki içilir? +Kik-in-17,Food,Indonesian (Indonesia),What fruit is more commonly sold and found during Ramadan in your country?,Azərbaycanda Ramazan ayında hansı meyvə daha çox satılır və tapılır? +Kik-in-24,Food,Indonesian (Indonesia),What carbohydrate is usually served with chicken in a fast-food restaurant in your country?,Azərbaycanda fast-food restoranlarında toyuqla adətən hansı karbohidrat xidmət edilir? +Kik-in-31,Sport,Indonesian (Indonesia),What is the most famous martial art sports in your country?,Azərbaycanda ən məşhur döyüş növü hansıdır? +Kik-in-34,Sport,Indonesian (Indonesia),What sports are often broadcasted on national television in your country?,Azərbaycanda milli televiziyada tez-tez hansı idman növləri yayımlanır? +Kik-in-35,Sport,Indonesian (Indonesia),What sports were popular among people from your country during the COVID-19 pandemic?,COVID-19 pandemiyası zamanı Azərbaycanlılar arasında hansı idman növləri populyar idi? +Kik-in-36,Sport,Indonesian (Indonesia),Who is the most popular soccer coach in your country?,Azərbaycanda ən məşhur futbol məşqçisi kimdir? +Kik-in-37,Sport,Indonesian (Indonesia),What soccer teams in your country are famous for their intense rivalry? (e.g. ___ vs ___),"Azərbaycanda hansı futbol komandaları gərgin rəqabəti ilə məşhurdur? (məsələn, ___ vs ___)" +Kik-in-38,Sport,Indonesian (Indonesia),What are the names of soccer supporters in your country who are famous for their intense rivalry? (e.g. ___ vs ___),"Azərbaycanda gərgin rəqabəti ilə məşhur olan futbol tərəfdarlarının adları nədir? (məsələn, ___ vs ___)" +Kik-in-40,Sport,Indonesian (Indonesia),Who is the most famous male badminton player in your country?,Azərbaycanda ən məşhur kişi badmintonçu kimdir? +Kik-in-41,Sport,Indonesian (Indonesia),Who is the most famous female badminton player in your country?,Azərbaycanda ən məşhur qadın badmintonçu kimdir? +Kik-in-44,Sport,Indonesian (Indonesia),What sport gets the most support from the government in your country?,Azərbaycanda hökumətdən ən çox hansı idman növünə dəstək verilir? +Kik-in-45,Sport,Indonesian (Indonesia),What sports field facilities are usually available at schools in your country?,Azərbaycanda məktəblərdə adətən hansı idman meydançaları var? +Na-ko-02,Food,Korean (South Korea),What cafe beverage do people from your country most commonly enjoy?,Azərbaycanlılar ən çox hansı kafe içkisindən zövq alırlar? +Na-ko-04,Food,Korean (South Korea),What is the preferred hangover cure food for people from your country?,Azərbaycanda insanlar sərxoşluqdan qurtulmaq üçün hansı yeməyi üstün tuturlar? +Na-ko-05,Food,Korean (South Korea),What is the typical delivery food in your country?,Azərbaycanda tipik çatdırılma yeməyi nədir? +Na-ko-07,Food,Korean (South Korea),What type of meat is consumed most by people from your country?,Azərbaycan insanları ən çox hansı növ əti istehlak edir? +Na-ko-08,Food,Korean (South Korea),What fruit do people from your country often eat in the autumn season?,Azərbaycanlılar payız mövsümündə hansı meyvələri tez-tez yeyirlər? +Na-ko-09,Food,Korean (South Korea),What side dish is the most commonly served on a dining table in your country?,Azərbaycanda yemək masasında ən çox hansı qarnir xidmət edilir? +Na-ko-11,Food,Korean (South Korea),What do people from your country eat while watching a soccer game?,Azərbaycanlılar futbol oyununa baxarkən nə yeyirlər? +Na-ko-15,Food,Korean (South Korea),What is the representative nourishing food in your country?,Azərbaycanda mövcud olan ən məşhur qidalandırıcı yemək hansıdır? +Na-ko-16,Sport,Korean (South Korea),Who is the most famous soccer player in your country?,Azərbaycanda ən məşhur futbolçu kimdir? +Na-ko-17,Sport,Korean (South Korea),What sports do male students enjoy during lunch time at school in your country?,Azərbaycanda məktəbdə tələbə oğlanlar nahar vaxtı hansı idman növlərindən zövq alırlar? +Na-ko-18,Sport,Korean (South Korea),What is the most common sport girls participate in during physical education classes in your country?,Azərbaycanda qızlar bədən tərbiyəsi dərslərində ən çox hansı idman növü ilə məşğul olurlar? +Na-ko-19,Sport,Korean (South Korea),Who is the most popular volleyball player in your country?,Azərbaycanda ən məşhur voleybolçu kimdir? +Na-ko-20,Sport,Korean (South Korea),What sports event do people from your country passionately support the most in international competitions?,Azərbaycanlılar beynəlxalq yarışlarda ən çox hansı idman tədbirini həvəslə dəstəkləyirlər? +Na-ko-22,Sport,Korean (South Korea),Which country is considered the biggest rival in soccer matches for your country?,Hansı ölkə Azərbaycan üçün futbol matçlarında ən böyük rəqib hesab edilir? +Na-ko-23,Sport,Korean (South Korea),What type of sports academies do children attend the most in your country?,Azərbaycanda uşaqlar ən çox hansı idman akademiyalarına qatılırlar? +Na-ko-24,Sport,Korean (South Korea),What is the most commonly eaten food in sports stadiums while watching games in your country?,Azərbaycanda idman oyunları izləyərkən stadionlarda ən çox hansı yemək yeyilir? +Na-ko-25,Sport,Korean (South Korea),What are the typical sports played in your country's school sports day?,Azərbaycanda məktəblilərin idman günündə hansı idman növləri oynanılır? +Na-ko-26,Sport,Korean (South Korea),What are the popular sports among the middle-aged population in your country?,Azərbaycanda orta yaşlı əhalinin arasında populyar idman növləri hansılardır? +Na-ko-28,Sport,Korean (South Korea),Who is the most popular winter sports player in your country?,Azərbaycanda ən məşhur qış idman oyunçusu kimdir? +Na-ko-29,Sport,Korean (South Korea),Who is the most famous swimmer in your country?,Azərbaycanda ən məşhur üzgüçü kimdir? +Na-ko-30,Sport,Korean (South Korea),What is the most popular e-sports game in your country?,Azərbaycanda ən məşhur e-idman oyunu hansıdır? +Na-ko-33,Holidays/Celebration/Leisure,Korean (South Korea),What symbolic food do people from your country eat on (Lunar) New Year?,Azərbaycanlılar (Ay) Yeni İlində hansı simvolik yemək yeyirlər? +Na-ko-37,Holidays/Celebration/Leisure,Korean (South Korea),What is the most popular domestic vacation spot for people from your country?,Azərbaycanlılar üçün ən populyar yerli istirahət məkanı haradır? +Na-ko-38,Holidays/Celebration/Leisure,Korean (South Korea),What is the most common wedding gift between bride and groom in your country?,Azərbaycanda bəy və gəlin arasında ən çox verilən toy hədiyyəsi nədir? +Na-ko-39,Holidays/Celebration/Leisure,Korean (South Korea),What is typically given as a congratulatory gesture when attending a friend's wedding in your country?,Azərbaycanda bir dostunuzun toyunda iştirak edərkən adətən təbrik jesti olaraq nə verilir? +Na-ko-40,Holidays/Celebration/Leisure,Korean (South Korea),"How long (in days) does a funeral typically last in your country? (Provide Arabic numerals (e.g., 12) only.)","Azərbaycanda dəfn mərasimi adətən neçə gün (günlərdə) davam edir? (Yalnız Ərəb rəqəmləri (məsələn, 12) verin.)" +Na-ko-41,Holidays/Celebration/Leisure,Korean (South Korea),What should you prepare as a condolence offering when attending a funeral in your country?,Azərbaycanda dəfn mərasimində başsağlığı təqdimatı üçün nə hazırlamalısınız? +Na-ko-42,Holidays/Celebration/Leisure,Korean (South Korea),What type of food is commonly provided at funeral parlors in your country?,Azərbaycanda yas mərasimlərində hansı növ yeməklər verilir? +Na-ko-43,Holidays/Celebration/Leisure,Korean (South Korea),What do people do in your country in the morning of the (Lunar) New Year?,(Ay) Yeni il səhəri Azərbaycanda insanlar nə edir? +Na-ko-44,Holidays/Celebration/Leisure,Korean (South Korea),When is the day with your country's most severe nationwide traffic congestion?,Azərbaycanda ən ciddi ümummilli nəqliyyat sıxlığının olduğu gün nə vaxtdır? +Na-ko-45,Holidays/Celebration/Leisure,Korean (South Korea),What is the most popular honeymoon destination in your country?,Azərbaycanda bal ayı üçün ən populyar məkan hansıdır? +Ne-ar-05,Holidays/Celebration/Leisure,Arabic (Algeria),What is the most important national holiday in your country?,Azərbaycanda ən önəmli milli bayram hansıdır? +Ne-ar-06,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Ramadan?,Azərbaycanlılar Ramazan ayında nə yeyirlər? +Ne-ar-09,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Eid ul Fitr?,Azərbaycanda insanlar Ramazan bayramında nə yeyirlər? +Ne-ar-10,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Eid ul Adha?,Azərbaycanda insanlar Qurban bayramında nə yeyirlər? +Ne-ar-11,Holidays/Celebration/Leisure,Arabic (Algeria),Where do people from your country go to celebrate New Year's Day?,Azərbaycandan olan insanlar Yeni İl gününü qeyd etmək üçün hara gedirlər? +Ne-ar-14,Holidays/Celebration/Leisure,Arabic (Algeria),Where do a family gather for Eid festivities in your country?,Azərbaycanda Ramazan bayramı münasibəti ilə ailə harada toplaşır? +Ne-ar-16,Work life,Arabic (Algeria),"When is the weekend in your country (e.g. Monday, Tuesday)?","Azərbaycanda həftə sonu hansı günlərdir (məsələn, Bazar ertəsi, Çərşənbə)?" +Ne-ar-17,Work life,Arabic (Algeria),"At what time do most people start work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Azərbaycanda insanların çoxu işə saat neçədə başlayır? (HH:MM formatında təqdim edin (məsələn, 18:00, 09:00).)" +Ne-ar-18,Work life,Arabic (Algeria),"At what time do most people finish work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Azərbaycanda insanların çoxu işi nə vaxt bitirir? (HH:MM formatında təqdim edin (məsələn, 18:00, 09:00).)" +Ne-ar-20,Work life,Arabic (Algeria),What is considered to be a secure job in your country?,Azərbaycanda hansı iş təhlükəsiz hesab olunur? +Ne-ar-24,Work life,Arabic (Algeria),Which city is the primary commercial hub in your country?,Azərbaycanda əsas ticarət mərkəzi hansı şəhərdir? +Ne-ar-25,Work life,Arabic (Algeria),What is the industry that pays the best in your country?,Azərbaycanda ən yaxşı maaş verən sənaye sahəsi hansıdır? +Ne-ar-26,Work life,Arabic (Algeria),What is the most famous public corporation in your country?,Azərbaycanda ən məşhur dövlət korporasiyası hansıdır? +Ne-ar-31,Food,Arabic (Algeria),What is the most famous dish in your country?,Azərbaycanın ən məşhur yeməyi hansıdır? +Ne-ar-32,Food,Arabic (Algeria),What do people usually have for breakfast in your country?,Azərbaycanda insanlar adətən səhər yeməyində nə yeyirlər? +Ne-ar-33,Food,Arabic (Algeria),"When do people usually have lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Azərbaycanda insanlar adətən nə vaxt nahar edirlər? (HH:MM formatında təqdim edin (məsələn, 18:00, 09:00).)" +Ne-ar-34,Food,Arabic (Algeria),What is typically indispensable in meals in your country?,Azərbaycanda yeməklərdə adətən nə vacibdir? +Ne-ar-36,Food,Arabic (Algeria),What is a typical festive meal in your country?,Azərbaycanda tipik bayram yeməyi nədir? +Ne-ar-37,Food,Arabic (Algeria),Which fruit do people usually offer tourists/visitors from abroad in your country?,Azərbaycanda insanlar ədətən xaricdən gələn turistlərə/qonaqlara hansı meyvəni təklif edirlər? +Ne-ar-38,Food,Arabic (Algeria),Which food do people usually offer as charity in your country?,Azərbaycanda insanlar adətən hansı yeməyi sədəqə kimi verirlər? +Ne-ar-39,Food,Arabic (Algeria),What is the cheapest fast food in your country?,Azərbaycanda ən ucuz fast fud hansıdır? +Ne-ar-43,Food,Arabic (Algeria),What do people usually have with tea in your country?,Azərbaycanda insanlar adətən çayla nə içirlər? +Ne-ar-44,Food,Arabic (Algeria),What do people have with coffee in your country?,Azərbaycanda insanlar kofe ilə nə içirlər? +New-am-02,Food,Amharic (Ethiopia),What is the most popular traditional food in your country?,Azərbaycanda ən məşhur ənənəvi yemək hansıdır? +New-am-04,Food,Amharic (Ethiopia),What is the most popular dipping sauce in your country?,Azərbaycanda ən məşhur batırma sousu hansıdır? +New-am-08,Food,Amharic (Ethiopia),What food is most often consumed during Christian fasting in your country?,Azərbaycanda xristianların orucu zamanı əsasən hansı yeməklər yeyilir? +New-am-15,Food,Amharic (Ethiopia),What food is usually prepared when mothers give birth in your country?,Azərbaycanda uşaq doğulanda adətən hansı yeməklər bişirilir? +New-am-27,Sport,Amharic (Ethiopia),Who is the most popular female sportperson in your country?,Azərbaycanda ən məşhur qadın idmançı kimdir? +New-am-34,Education,Amharic (Ethiopia),Where do most elementary school students prepare for their exams in your country?,Azərbaycanda əksər ibtidai məktəb şagirdləri imtahanlara harada hazırlaşırlar? +New-am-41,Education,Amharic (Ethiopia),"In your country, at which grade level do students take their first national-level examination?",Azərbaycanda şagirdlər ilk dövlət səviyyəli imtahanı neçənci sinifdə verirlər? +New-am-53,Work life,Amharic (Ethiopia),Which region in your country is widely known for its coffee/tea industry?,Azərbaycanda hansı bölgə kofe/çay sənayesi ilə geniş tanınır? +New-am-54,Work life,Amharic (Ethiopia),Which region in your country is widely known for its livestock industry?,Azərbaycanda hansı bölgə mal-qara sənayesi ilə geniş tanınır? +New-am-59,Work life,Amharic (Ethiopia),What is the main occupation of people living in deserts in your country?,Azərbaycanda səhralarda yaşayan insanların əsas məşğuliyyəti nədir? +New-am-60,Work life,Amharic (Ethiopia),Which animal is typically used for transportation in your country?,Azərbaycanda nəqliyyat üçün adətən hansı heyvandan istifadə olunur? +New-am-72,Family,Amharic (Ethiopia),What is the most popular comic book for children to read in your country?,Azərbaycanda uşaqların oxuması üçün ən populyar komiks hansıdır? +New-am-73,Family,Amharic (Ethiopia),What is the most popular YouTube channel for children in your country?,Azərbaycanda uşaqlar üçün ən populyar YouTube kanalı hansıdır? +New-am-74,Family,Amharic (Ethiopia),What is the most popular talk show in your country?,Azərbaycanda ən məşhur tok-şou hansıdır? +New-am-77,Holidays/Celebration/Leisure,Amharic (Ethiopia),What is the most famous religious holiday in your country?,Azərbaycanda ən məşhur dini bayram hansıdır? +New-am-81,Holidays/Celebration/Leisure,Amharic (Ethiopia),"What is the busiest month for weddings in your country? (Provide Arabic numerals (e.g., 1) only.)","Azərbaycanda evlilik mərasimlərinin ən yoğun olduğu ay hansıdır? (Yalnız ərəb rəqəmləri (məsələn, 1) göstərin.)" +New-am-83,Holidays/Celebration/Leisure,Amharic (Ethiopia),What is the most popular traditional musical instrument in your country?,Azərbaycanda ən məşhur ənənəvi musiqi aləti hansıdır? +New-as-01,Food,Assamese (Assam),What is the main agricultural product produced in your country?,Azərbaycanda istehsal olunan əsas kənd təsərrüfatı məhsulu hansıdır? +New-as-02,Food,Assamese (Assam),What is the most popular wheat-based food item in your country?,Azərbaycanda ən məşhur buğda əsaslı qida hansıdır? +New-as-05,Food,Assamese (Assam),What is the most typical drink offered to guests when they visit households in your country?,Azərbaycanda evləri ziyarət edən qonaqlara təklif olunan ən tipik içki hansıdır? +New-as-07,Food,Assamese (Assam),What is the most popular dish cooked with fish in your country?,Azərbaycanda balıqla hazırlanan ən məşhur yemək nədir? +New-as-14,Food,Assamese (Assam),What food do people from your country like to eat during rainy weather?,Azərbaycanlılar yağışlı havada nə yeməyi xoşlayırlar? +New-as-15,Food,Assamese (Assam),What drink is commonly consumed in your country when the weather is hot?,Hava isti olduqda Azərbaycanda ən çox nə içki içilir? +New-as-20,Sport,Assamese (Assam),What is the most popular indoor sport in your country?,Azərbaycanda ən populyar qapalı idman növü hansıdır? +New-as-29,Sport,Assamese (Assam),What sport do men in your country like to watch?,Azərbaycanda kişilər hansı idman növünü izləməyi xoşlayırlar? +New-as-30,Sport,Assamese (Assam),What sport do women in your country like to watch?,Azərbaycanda qadınlar hansı idman növünü izləməyi xoşlayırlar? +New-as-58,Work life,Assamese (Assam),What is the most popular beverage that people from your country like to drink in their workplace?,Azərbaycanlılar iş yerində ən çox hansı içkini içməyi xoşlayırlar? +New-as-64,Family,Assamese (Assam),On which holiday do all family members tend to reunite in your country?,Azərbaycanda ailə üzvləri hansı bayramda bir araya gəlirlər? +New-as-76,Holidays/Celebration/Leisure,Assamese (Assam),What traditional games do families play during traditional holidays in your country?,Azərbaycanda ənənəvi bayramlarda ailələr hansı ənənəvi oyunları oynayırlar? +New-as-80,Holidays/Celebration/Leisure,Assamese (Assam),What type of clothing do people from your country wear during traditional festivals?,Azərbaycanlılar ənənəvi bayramlarda hansı geyimləri geyinirlər? +New-as-89,Holidays/Celebration/Leisure,Assamese (Assam),What traditional festival accessories do people from your country wear?,Azərbaycanlılar hansı ənənəvi bayram aksesuarları geyinirlər? +New-az-05,Food,Azerbaijani (Azerbaijan),What is the most famous region for alcohol production in your country?,Azərbaycanda spirtli içki istehsalı üçün ən məşhur bölgə hansıdır? +New-az-11,Food,Azerbaijani (Azerbaijan),What fruit do people from your country often eat in the summer season?,Azərbaycanlılar yay mövsümündə ən çox hansı meyvələri yeyirlər? +New-az-12,Food,Azerbaijani (Azerbaijan),Which region in your country is known for its seafood?,Azərbaycanda hansı bölgə dəniz məhsulları ilə məşhurdur? +New-az-21,Sport,Azerbaijani (Azerbaijan),Which region in your country is the most popular skiing destination?,Azərbaycanda xizək üçün ən məşhur bölgə hansıdır? +New-az-26,Sport,Azerbaijani (Azerbaijan),Who is the most popular martial arts player in your country?,Azərbaycanda ən məşhur döyüş sənətçisi kimdir? +New-az-27,Sport,Azerbaijani (Azerbaijan),Which sport has been one of the fastest-growing in your country over the last decade?,Son on ildə Azərbaycanda ən sürətlə inkişaf edən idman növü hansıdır? +New-az-39,Education,Azerbaijani (Azerbaijan),Which country is the most popular destination for students from your country studying abroad?,Azərbaycanlı tələbələrin xaricdə təhsil üçün ən çox üstünlük verdikləri ölkə hansıdır? +New-az-49,Work life,Azerbaijani (Azerbaijan),"How many people work in a typical family in your country? (Provide Arabic numerals (e.g., 1) only.)","Azərbaycanda tipik bir ailədə neçə nəfər işləyir? (Yalnız ərəb rəqəmləri (məsələn, 1) göstərin.)" +New-az-60,Family,Azerbaijani (Azerbaijan),"In your country, who takes care of kids when both parents are working?",Azərbaycanda hər iki valideyn işləyəndə uşaqlara kim qayğı göstərir? +New-az-69,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),What is the preferred alcoholic beverage for men from your country?,Azərbaycanlı kişilər arasında üstünlük verilən spirtli içki hansıdır? +New-az-70,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),What is the preferred alcoholic beverage for women from your country?,Azərbaycanlı qadınlar arasında üstünlük verilən spirtli içki hansıdır? +New-az-73,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),"How many people on average typically attend a wedding in your country? (Provide Arabic numerals (e.g., 1) only.)","Azərbaycanda adətən bir toyda orta hesabla neçə nəfər iştirak edir? (Yalnız Ərəb rəqəmləri (məsələn, 1) verin.)" +New-ch-01,Food,Chinese (China),What kind of meat do people usually eat when they have barbecue in your country?,Azərbaycanda barbekü zamanı əsasən hansı növ ət yeyilir? +New-ch-02,Food,Chinese (China),"When do people usually have breakfast in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Azərbaycanda səhər yeməyini adətən nə vaxt yeyirlər? (HH:MM formatında təqdim edin (məsələn, 18:00, 09:00).)" +New-ch-04,Food,Chinese (China),What kinds of food do people usually eat for late-night snacks in your country?,Azərbaycanda insanlar gecə qəlyanaltıları üçün adətən hansı yeməkləri yeyirlər? +New-ch-05,Food,Chinese (China),What is the most famous spicy dish in your country?,Azərbaycanda ən məşhur acı yemək hansıdır? +New-ch-07,Food,Chinese (China),What food items do people typically pair with hard liquor in your country?,Azərbaycanda insanlar adətən hansı qidaları sərt içki ilə birgə yeyirlər? +New-ch-08,Food,Chinese (China),What seasoning is indispensable in cooking in your country?,Azərbaycan mətbəxində hansı ədviyyat əvəzolunmazdır? +New-ch-09,Food,Chinese (China),What food do people typically consume when the weather is cold in your country?,Azərbaycanda hava soyuq olduqda insanlar adətən hansı yeməkləri yeyirlər? +New-ch-13,Food,Chinese (China),What is the most famous alcohol brand in your country?,Azərbaycanda ən məşhur alkoqol markası hansıdır? +New-ch-14,Food,Chinese (China),What foods do people usually eat when they are sick in your country?,Azərbaycanda insanlar xəstə olduqda adətən hansı yeməkləri yeyirlər? +New-ch-15,Food,Chinese (China),What prepared/ready-to-eat food do people typically buy at supermarkets in your country?,Azərbaycanda insanlar adətən supermarketlərdə hansı hazır yeməkləri alırlar? +New-ch-16,Sport,Chinese (China),What is the most famous sports-related movie in your country?,Azərbaycanda idmanla bağlı ən məşhur film hansıdır? +New-ch-17,Sport,Chinese (China),What extreme sport do people generally wish to try the most in your country?,Azərbaycanda insanlar ən çox hansı ekstremal idman növünü sınamaq istəyirlər? +New-ch-18,Sport,Chinese (China),Which track and field event is the most popular to watch during competitions in your country?,Azərbaycanda yarışlar zamanı hansı yüngül atletika yarışını izləmək ən populyardır? +New-ch-19,Sport,Chinese (China),Which gymnastics event is the most popular to watch during competitions in your country?,Azərbaycanda yarışlar zamanı ən çox hansı gimnastika tədbirinə baxılır? +New-ch-23,Sport,Chinese (China),Who is the most famous table tennis player in your country?,Azərbaycanda ən məşhur stolüstü tennisçi kimdir? +New-ch-26,Sport,Chinese (China),"In the Winter Olympics, which event is the most popular to watch in your country?",Qış Olimpiya Oyunlarında Azərbaycanda ən çox izlənilən tədbir hansıdır? +New-ch-27,Sport,Chinese (China),Who is the most famous boxer in your country?,Azərbaycanda ən məşhur boksçu kimdir? +New-ch-30,Sport,Chinese (China),Who is the most famous track and field athlete in your country?,Azərbaycanda ən məşhur atletika idmançısı kimdir? +New-ch-31,Work life,Chinese (China),What job do parents most hope their children will pursue in your country?,Azərbaycanda valideynlər övladlarının ən çox hansı peşəni seçməsini istəyirlər? +New-ch-32,Work life,Chinese (China),What office software do people typically use in the workplace in your country?,Azərbaycanda iş yerlərində adətən hansı ofis proqramlarından istifadə edirlər? +New-ch-38,Work life,Chinese (China),Which cities or regions are known for their import and export activities in your country?,Azərbaycanda hansı şəhərlər və ya bölgələr idxal və ixrac fəaliyyətləri ilə tanınırlar? +New-ch-39,Work life,Chinese (China),What platform is commonly used in the e-commerce industry in your country?,Azərbaycanda elektron ticarət sənayesində ən çox hansı platformadan istifadə olunur? +New-ch-44,Work life,Chinese (China),"How long is the typical probation period for new employees before signing a formal contract in your country? (e.g., 1 month).","Azərbaycanda yeni işçilər üçün rəsmi müqavilə imzalanmadan əvvəl tipik sınama müddəti (probasiya) nə qədər çəkir? (məsələn, 1 ay)." +New-ch-45,Work life,Chinese (China),Which industries do young people typically choose to start businesses in your country?,Gənclər Azərbaycanda adətən hansı sahələrdə biznes qurmağı seçirlər? +New-ch-49,Family,Chinese (China),What is the most common way for family members to communicate remotely in your country?,Azərbaycanda ailə üzvlərinin uzaqdan ünsiyyət qurması üçün ən çox yayılmış yolu hansıdır? +New-ch-51,Family,Chinese (China),What form of accommodation is typically booked for family trips in your country?,Azərbaycanda ailəvi səfərlər üçün adətən hansı yaşayış forması bron edilir? +New-ch-54,Family,Chinese (China),Which fruit is usually prepared the most for family dinners in your country?,Azərbaycanda ailə naharları üçün adətən hansı meyvə daha çox hazırlanır? +New-ch-64,Education,Chinese (China),"How many hours of classes do university students typically have per week in your country? (Provide Arabic numerals (e.g., 1) only.)","Azərbaycanda universitet tələbələrinə adətən həftədə neçə saat dərs keçirilir? (Yalnız ərəb rəqəmləri (məsələn, 1) göstərin.)" +New-ch-66,Education,Chinese (China),"What is the typical tuition fee per semester for public high schools in your country? (Provide Arabic numerals (e.g., 1) only.)","Azərbaycanda dövlət liseylərinin tipik tədris haqqı hər semestr üçün nə qədərdir? (Yalnız ərəb rəqəmləri (məsələn, 1) göstərin.)" +New-ch-70,Education,Chinese (China),What compulsory courses do university students have in common in your country?,Azərbaycanda universitet tələbələrinin ortaq hansı məcburi kursları var? +New-ch-71,Education,Chinese (China),"What is the average class size in high schools in your country? (Provide Arabic numerals (e.g., 1) only.)","Azərbaycandakı orta məktəblərdə sinif ölçüsü orta hesabla nə qədərdir? (Yalnız ərəb rəqəmləri (məsələn, 1) göstərin.)" +New-ch-72,Education,Chinese (China),Which major is considered most conducive to employment in your country?,Azərbaycanda hansı ixtisasın işə düzəlməyə ən əlverişli olduğu düşünülür? +New-ch-73,Education,Chinese (China),What type of clubs are most popular among university students in your country?,Azərbaycandakı universitet tələbələri arasında hansı tip klublar ən populyardır? +New-ch-74,Education,Chinese (China),What types of accommodation do university students in your country typically live in?,Azərbaycanda universitet tələbələri adətən hansı yaşayış yerlərində (məs. yataqxana) yaşayırlar? +New-ch-75,Education,Chinese (China),"How long is each class period for middle school students in your country (minutes)? (Provide Arabic numerals (e.g., 1) only.)","Azərbaycanda orta məktəb şagirdləri üçün hər dərs neçə dəqiqədir? (Yalnız ərəb rəqəmləri (məsələn, 1) göstərin.)" +New-ch-78,Holidays/Celebration/Leisure,Chinese (China),What leisure activities do retired women typically like in your country?,Azərbaycanda təqaüdə çıxmış qadınlar adətən hansı asudə vaxt fəaliyyətlərini sevirlər? +New-ch-79,Holidays/Celebration/Leisure,Chinese (China),What leisure activities do retired men typically like in your country?,Azərbaycanda təqaüdə çıxmış kişilər adətən hansı asudə vaxt fəaliyyətlərini sevirlər? +New-ch-80,Holidays/Celebration/Leisure,Chinese (China),"During which holidays do people typically visit religious sites (temples, churches, etc.) in your country?","Azərbaycanda insanlar adətən hansı bayramlarda dini yerləri (məbədlər, kilsələr və s.) ziyarət edirlər?" +New-ch-81,Holidays/Celebration/Leisure,Chinese (China),What are the typical housewarming gifts in your country?,Azərbaycanda adətən yeni evə köçənlərə nə hədiyyə edilir? +New-ch-82,Holidays/Celebration/Leisure,Chinese (China),"At what time do weddings typically start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Azərbaycanda toy mərasimləri adətən nə vaxt başlayır? (HH:MM formatında təqdim edin (məsələn, 18:00, 09:00).)" +New-ch-83,Holidays/Celebration/Leisure,Chinese (China),Which city in your country hosts festivals the most?,Azərbaycanda hansı şəhər ən çox festival keçirir? +New-ch-84,Holidays/Celebration/Leisure,Chinese (China),What color of clothing do people typically wear when attending weddings in your country?,Azərbaycanda toy mərasimlərinə gedərkən insanlar adətən hansı rəngdə geyim geyinirlər? +New-ch-85,Holidays/Celebration/Leisure,Chinese (China),What color of clothing do people typically wear when attending funerals in your country?,Azərbaycanda dəfn mərasimlərində insanlar adətən hansı rəngdə paltar geyinirlər? +New-en-01,Food,English (UK),Which snack is eaten in the cinema in your country?,Azərbaycanda kinoteatrlarda hansı qəlyanaltı yeyilir? +New-en-02,Food,English (UK),What is the most popular chip/crisp flavour in your country?,Azərbaycanda ən populyar cips dadı hansıdır? +New-en-04,Food,English (UK),Who is a popular celebrity chef in your country?,Azərbaycanda ən məşhur aşpaz kimdir? +New-en-05,Food,English (UK),Which food is a cost-effective and quick meal option in your country?,Azərbaycanda hansı yemək sərfəli və tez hazırlanan yemək seçimidir? +New-en-07,Food,English (UK),What are the most popular cooking shows in your country?,Azərbaycanda ən məşhur aşpazlıq şouları hansılardır? +New-en-08,Food,English (UK),What is the most popular chocolate brand in your country?,Azərbaycanda ən məşhur şokolad markası hansıdır? +New-en-10,Food,English (UK),What is the most eaten cheese in your country?,Azərbaycanda ən çox yeyilən pendir hansıdır? +New-en-11,Food,English (UK),What is the most disliked vegetable in your country?,Azərbaycanda ən az sevilən tərəvəz hansıdır? +New-en-12,Food,English (UK),What food is most commonly found in food courts in your country?,Azərbaycanda yeməkxanalarda ən çox hansı yeməklərə rast gəlinir? +New-en-17,Sport,English (UK),What are the most common cheering tools used by sports fans in your country?,Azərbaycanda idman həvəskarları tərəfindən istifadə edilən ən məşhur təzahürat vasitələri hansılardır? +New-en-18,Sport,English (UK),What do fans bring with them when attending a live game in your country?,Azərbaycanda canlı oyuna gedən azarkeşlər özləri ilə nələr aparırlar? +New-en-19,Sport,English (UK),What is the most well known sporting stadium in your country?,Azərbaycanda ən məşhur idman stadionu hansıdır? +New-en-23,Sport,English (UK),Who is the most famous Paralympian in your country?,Azərbaycanda ən məşhur Paralimpiyaçı kimdir? +New-en-26,Sport,English (UK),What is the best recognized sporting chant in your country?,Azərbaycanda ən tanınmış idman nəğməsi hansıdır? +New-en-38,Work life,English (UK),Which industries are known for more flexible working hours in your country?,Azərbaycanda hansı sahələr daha fleksibl iş saatları ilə tanınır? +New-en-41,Work life,English (UK),Who is the most well known and successful entrepreneur in your country?,Azərbaycanda ən məşhur və uğurlu sahibkar kimdir? +New-en-47,Family,English (UK),What can typically be found in the back garden of houses in your country?,Azərbaycanda evlərin arxa bağçasında adətən nələr tapıla bilər? +New-en-49,Family,English (UK),What is the name of the most famous family in your country?,Azərbaycanda ən məşhur ailənin adı nədir? +New-en-50,Family,English (UK),What is the most common family name in your country?,Azərbaycanda ən çox yayılmış soyad hansıdır? +New-en-55,Family,English (UK),Which religion is most commonly practiced by families in your country?,Azərbaycanda ailələr daha çox hansı dinə etiqad edirlər? +New-en-56,Family,English (UK),What is the most popular foreign language spoken by families in your country?,Azərbaycanda ailələr tərəfindən ən çox danışılan xarici dil hansıdır? +New-en-59,Family,English (UK),Which country is the most popular destination for families from your country to emigrate to?,Azərbaycandan olan ailələrin immiqrasiya etmək üçün ən populyar yeri hansı ölkədir? +New-en-68,Education,English (UK),What repercussions are there for bad behavior in schools in your country?,Azərbaycanda məktəblərdə pis davranışın nəticələri nələrdir? +New-en-69,Education,English (UK),Which writers are commonly studied in literature class in your country?,Azərbaycanda ədəbiyyat dərsində adətən hansı yazıçılar öyrənilir? +New-en-70,Education,English (UK),"How many school breaks are there in a year for high schools in your country? (Provide Arabic numerals (e.g., 1) only.)","Azərbaycanda orta məktəblər üçün bir ildə neçə tətil var? (Yalnız ərəb rəqəmləri (məsələn, 1) göstərin.)" +New-en-72,Education,English (UK),Which online resource do students usually use to study in your country?,Azərbaycanda tələbələr adətən dərs oxumaq üçün hansı onlayn resursdan istifadə edirlər? +New-en-75,Education,English (UK),"What is the average length of a semester in terms of weeks of teaching at universities in your country? (Provide Arabic numerals (e.g., 1) only.)","Azərbaycanda universitetlərdə tədris həftələri baxımından bir semestr orta hesabla nə qədərdir? (Yalnız ərəb rəqəmləri (məsələn, 1) göstərin.)" +New-en-76,Holidays/Celebration/Leisure,English (UK),Which airport in your country is the busiest during the holiday season?,Azərbaycanda hansı hava limanı bayram mövsümündə ən işləkdir? +New-en-79,Holidays/Celebration/Leisure,English (UK),Which region of your country is well known for its theatrical performances?,Azərbaycanın hansı bölgəsi teatr tamaşaları ilə məşhurdur? +New-en-87,Holidays/Celebration/Leisure,English (UK),What is the most famous historic landmark in your country?,Azərbaycanda ən məşhur tarixi abidə hansıdır? +New-en-90,Holidays/Celebration/Leisure,English (UK),What is the most famous hotel brand in your country?,Azərbaycanda ən məşhur otel brendi hansıdır? +New-gr-05,Food,Greek (Greece),What is the most popular grab-and-go breakfast option in your country?,Azərbaycanda ən populyar teykaut səhər yeməyi seçimi nədir? +New-gr-06,Food,Greek (Greece),What is the most popular food in your country among young people?,Azərbaycanda gənclər arasında ən populyar yemək hansıdır? +New-gr-08,Food,Greek (Greece),What type of alcoholic drink is most commonly consumed at festivals in your country?,Azərbaycanda festivallarda ən çox hansı spirtli içkilər istehlak olunur? +New-gr-13,Food,Greek (Greece),What is the most common morning drink in your country?,Azərbaycanda ən çox içilən səhər içkisi nədir? +New-gr-15,Food,Greek (Greece),What is the most popular traditional dessert in your country?,Azərbaycanda ən məşhur ənənəvi desert hansıdır? +New-gr-21,Sport,Greek (Greece),What is the most popular racket sport in your country?,Azərbaycanda ən populyar raket idman növü hansıdır? +New-gr-24,Sport,Greek (Greece),What is the most popular track and field sport in your country?,Azərbaycanda ən populyar atletika idman növü hansıdır? +New-gr-29,Sport,Greek (Greece),Which international sporting event is the most popular in your country?,Azərbaycanda hansı beynəlxalq idman yarışması ən populyardır? +New-gr-47,Work life,Greek (Greece),"How long (in minutes) are typical work breaks in your country, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)","Nahar və şam yeməyi istisna olmaqla, Azərbaycanda tipik iş fasilələri neçə dəqiqədir? (Yalnız Ərəb rəqəmləri (məsələn, 1) göstərin.)" +New-gr-58,Work life,Greek (Greece),Which job is considered underpaid in your country?,Azərbaycanda hansı iş az maaşlı hesab olunur? +New-gr-76,Holidays/Celebration/Leisure,Greek (Greece),What is the most common food served during Easter in your country?,Azərbaycanda Pasxa bayramında ən çox hansı yemək verilir? +New-gr-82,Holidays/Celebration/Leisure,Greek (Greece),What is the most popular music genre among the elderly population in your country?,Azərbaycanda yaşlı əhali arasında ən populyar musiqi janrı hansıdır? +New-gr-88,Holidays/Celebration/Leisure,Greek (Greece),What drink is usually offered at funerals in your country?,Azərbaycanda dəfn mərasimlərində adətən hansı içki təklif olunur? +New-gr-89,Holidays/Celebration/Leisure,Greek (Greece),What drink is usually offered at weddings in your country?,Azərbaycanda toy mərasimlərində adətən hansı içki təklif olunur? +New-ha-07,Food,Hausa (Northern Nigeria),What food originated from your country and can be found all over the world?,Hansı yemək Azərbaycandan qaynaqlanır və dünyanın hər yerində tapıla bilər? +New-ha-08,Food,Hausa (Northern Nigeria),What food is typically disliked by children but enjoyed by the elderly in your country?,"Azərbaycanda uşaqlar tərəfindən adətən xoşlanılmayan, lakin yaşlılar tərəfindən sevilən yemək hansıdır?" +New-ha-09,Food,Hausa (Northern Nigeria),What cooking utensil is most commonly used in your country?,Azərbaycanda ən çox hansı yemək qabından istifadə olunur? +New-ha-13,Food,Hausa (Northern Nigeria),Which is the most popular vegetable in your country?,Azərbaycanda ən populyar tərəvəz hansıdır? +New-ha-19,Sport,Hausa (Northern Nigeria),Which animal is used for sports in your country?,Azərbaycanda idman üçün hansı heyvandan istifadə olunur? +New-ha-66,Family,Hausa (Northern Nigeria),What is the most popular wedding venue in your country?,Azərbaycanda ən məşhur toy məkanı hansıdır? +New-in-01,Food,Indonesian (Indonesia),Which coffee shop brand is the most popular in your country?,Azərbaycanda hansı kofe dükkanı markası ən populyardır? +New-in-03,Food,Indonesian (Indonesia),What type of food from your country is typically served in restaurants overseas?,Xaricdəki restoranlarda adətən Azərbaycandan hansı növ yeməklər təqdim edilir? +New-in-33,Work life,Indonesian (Indonesia),What region in your country is usually associated with mining?,Azərbaycanda adətən mədənçılıqla əlaqələndirilən bölgə hansıdır? +New-in-34,Work life,Indonesian (Indonesia),What region in your country is usually associated with oil?,Azərbaycanda adətən neftlə əlaqələndirilən bölgə hansıdır? +New-in-62,Education,Indonesian (Indonesia),What university in your country is popular because of its engineering major? (Provide the official name.),Azərbaycanda mühəndislik ixtisası ilə məşhur olan universitetin rəsmi adı nədir? +New-in-63,Education,Indonesian (Indonesia),What university in your country is popular because of its school of medicine? (Provide the official name.),Azərbaycanda tibb fakültəsi ilə məşhur olan universitetin rəsmi adı nədir? +New-in-78,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most popular payment method in your country?,Azərbaycanda ən populyar ödəniş üsulu hansıdır? +New-in-80,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most famous theme park in your country?,Azərbaycanda ən məşhur mövzu parkı hansıdır? +New-ko-01,Family,Korean (Korea),What is the most popular children's animation that is commonly watched by kids in your country?,Azərbaycanda uşaqlar tərəfindən ən çox izlənən uşaq animasiyası hansıdır? +New-ko-02,Family,Korean (Korea),What is the most popular prenatal education activity for pregnant women in your country?,Azərbaycanda hamilə qadınlar üçün ən populyar prenatal təhsil fəaliyyəti nədir? +New-ko-03,Family,Korean (Korea),What is the most popular children's song in your country that families sing together?,Azərbaycanda ailələrin birlikdə oxuduğu ən məşhur uşaq mahnısı hansıdır? +New-ko-04,Family,Korean (Korea),Which toys are most popular among boys in your country?,Azərbaycanda oğlanlar arasında ən populyar oyuncaqlar hansılardır? +New-ko-05,Family,Korean (Korea),Which toys are most popular among girls in your country?,Azərbaycanda qızlar arasında ən populyar oyuncaqlar hansılardır? +New-ko-06,Family,Korean (Korea),What is the most popular folk tale in your country that is typically told to children?,Azərbaycanda uşaqlara adətən danışılan ən məşhur xalq nağılı hansıdır? +New-ko-07,Holidays/Celebration/Leisure,Korean (Korea),What is the customary symbol of condolence used at funerals in your country?,Azərbaycanda dəfn mərasimlərində istifadə olunan adətən başsağlığı simvolu nədir? +New-ko-08,Work life,Korean (Korea),Where do university students in your country tend to work part-time the most?,Azərbaycanda universitet tələbələri ən çox harada yarım ştat işləyirlər? +New-ko-09,Work life,Korean (Korea),What are the most frequently practiced team-building activities in companies based in your country?,Azərbaycanda fəaliyyət göstərən şirkətlərdə ən çox hansı komanda quruculuğu fəaliyyətləri həyata keçirilir? +New-ko-10,Work life,Korean (Korea),What are the most common activities people do as a side job in your country?,Azərbaycanda insanlar əlavə iş olaraq ən çox hansı fəaliyyətlərlə məşğul olurlar? +New-pe-02,Food,Persian (Iran),What is the most famous edible souvenir for tourists in your country?,Azərbaycanda turistlər üçün ən məşhur yeməli suvenir hansıdır? +New-pe-06,Food,Persian (Iran),What is the most popular stew in your country?,Azərbaycanda ən məşhur yemək hansıdır? +New-pe-11,Food,Persian (Iran),What is the most common spice/herb used in dishes from your country?,Azərbaycan yeməklərində ən çox istifadə olunan ədviyyat/ot növü hansıdır? +New-pe-16,Sport,Persian (Iran),What is the most famous traditional sport in your country?,Azərbaycanda ən məşhur ənənəvi idman növü hansıdır? +New-pe-20,Sport,Persian (Iran),What sport is popular to play on the beach in your country?,Azərbaycanda çimərlikdə oynamaq üçün hansı idman növü populyardır? +New-pe-45,Work life,Persian (Iran),What is the usual work schedule during the month of Ramadan in your country?,Ramazan ayında Azərbaycanda adətən iş qrafiki necə olur? +New-pe-47,Family,Persian (Iran),"When is Student's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)","Azərbaycanda Tələbə Günü nə vaxt qeyd olunur? (MM/DD formatında verin (məsələn, 12/31).)" +New-pe-49,Family,Persian (Iran),Where do families gather to pray together in your country?,Azərbaycanda ailələr birlikdə dua etmək üçün harada toplaşırlar? +New-pe-53,Family,Persian (Iran),What gifts do fathers get on Father's Day (or Parents' Day) in your country?,Azərbaycanda Atalar Günündə (ya da Valideynlər Günündə) atalara nə hədiyyələr verilir? +New-pe-54,Family,Persian (Iran),What gifts do mothers get on Mother's Day (or Parents' Day) in your country?,Azərbaycanda Ana Günündə (və ya Valideynlər Günündə) analar nə hədiyyələr alır? +New-pe-59,Family,Persian (Iran),"How many generations typically live together in a household in your country? (Provide Arabic numerals (e.g., 12) only.)","Azərbaycanda adətən bir evdə neçə nəsil birlikdə yaşayır? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)" +New-pe-65,Education,Persian (Iran),"How many subjects are taught in middle schools in your country? (Provide Arabic numerals (e.g., 12) only.)","Azərbaycanda orta təhsil məktəblərində neçə fənn tədris edilir? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)" +New-pe-66,Education,Persian (Iran),What is the most popular after school curriculars in elementary schools in your country?,Azərbaycanda ibtidai məktəblərdə ən populyar məktəbdənkənar fəaliyyətlər hansılardır? +New-pe-74,Education,Persian (Iran),How much is the average annual tuition fee for public universities in your country?,Azərbaycanda dövlət universitetlərinin orta illik təhsil haqqı nə qədərdir? +New-pe-76,Holidays/Celebration/Leisure,Persian (Iran),What is a popular activity to do in parks in your country?,Azərbaycanda parklarda hansı fəaliyyətlə məşğul olmaq populyardır? +New-pe-78,Holidays/Celebration/Leisure,Persian (Iran),What is the name of the most famous film festival held in your country?,Azərbaycanda keçirilən ən məşhur film festivalının adı nədir? +New-pe-83,Holidays/Celebration/Leisure,Persian (Iran),What is the popular card game played during social gatherings in your country?,Azərbaycanda sosial yığıncaqlar zamanı oynanılan populyar kart oyunu hansıdır? +New-pe-85,Holidays/Celebration/Leisure,Persian (Iran),Where is the most popular tourist destination abroad for people from your country?,Azərbaycandan olanlar üçün xaricdə ən populyar turizm təyinatı haradadır? +New-pe-86,Holidays/Celebration/Leisure,Persian (Iran),What is the name of the most famous tower in your country?,Azərbaycanda ən məşhur qüllənin adı nədir? +New-spme-01,Food,Spanish (Mexico),What edible insect is eaten most often in your country?,Azərbaycanda ən çox hansı yeməli həşərat yeyilir? +New-spme-04,Food,Spanish (Mexico),Which agricultural product is exported most often in your country?,Azərbaycanda ən çox hansı kənd təsərrüfatı məhsulu ixrac edilir? +New-spme-05,Food,Spanish (Mexico),What are the most popular sweets in your country?,Azərbaycanda ən məşhur şirniyyatlar hansılardır? +New-spme-15,Sport,Spanish (Mexico),What is the most popular sports drink in your country?,Azərbaycanda ən məşhur idman içkisi hansıdır? +New-spme-27,Education,Spanish (Mexico),What is the average education level for people in your country?,Azərbaycanda insanların orta təhsil səviyyəsi necədir? +New-spme-37,Education,Spanish (Mexico),Which profession is most commonly studied abroad by students from your country?,Azərbaycandan olan tələbələr xaricdə daha çox hansı ixtisas üzrə təhsil alırlar? +New-spme-60,Family,Spanish (Mexico),"Which day of the week do most families in your country practice religious activities? (e.g. Monday, Tuesday)","Azərbaycanda əksər ailələr həftənin hansı günü dini fəaliyyətlərlə məşğul olurlar? (məsələn, Bazar ertəsi, Çərşənbə axşamı)" +New-spme-65,Family,Spanish (Mexico),What is the most popular way to celebrate Independence Day in your country?,Azərbaycanda Müstəqillik Gününü qeyd etməyin ən populyar yolu hansıdır? +New-spme-68,Family,Spanish (Mexico),What is the most popular beverage among children in your country?,Azərbaycanda uşaqlar arasında ən populyar içki nədir? +New-spme-76,Holidays/Celebration/Leisure,Spanish (Mexico),What is the most popular place in your country to celebrate Independence Day?,Azərbaycanda Müstəqillik Gününü qeyd etmək üçün ən məşhur yer hansıdır? +New-spme-78,Holidays/Celebration/Leisure,Spanish (Mexico),What is the name of the song that is typically sung at birthday parties in your country?,Azərbaycanda ad günü mərasimlərində adətən oxunan mahnının adı nədir? +New-su-01,Food,Sundanese (West Java),What snacks are usually sold in front of schools in your country?,Azərbaycanda məktəblərin qarşısında adətən hansı qəlyanaltılar satılır? +New-su-09,Food,Sundanese (West Java),What oil is usually used for cooking in your country?,Azərbaycanda adətən yemək bişirmək üçün hansı yağdan istifadə olunur? +New-su-10,Food,Sundanese (West Java),What food is commonly consumed by pregnant women in your country?,Azərbaycanda hamilə qadınlar tərəfindən adətən hansı qidalar istehlak edilir? +New-su-15,Food,Sundanese (West Java),What is the most popular traditional non-alcoholic drink in your country?,Azərbaycanda ən məşhur ənənəvi qeyri-alkohol içki nədir? +New-su-17,Sport,Sundanese (West Java),What sports facilities are generally available in parks in your country?,Azərbaycandakı parklarda adətən hansı idman obyektləri mövcuddur? +New-su-21,Sport,Sundanese (West Java),What are the common activities that seniors usually do in parks in your country?,Azərbaycanda yaşlıların adətən parklarda etdikləri ümumi fəaliyyətlər nələrdir? +New-su-24,Sport,Sundanese (West Java),What sports do parents and children commonly play together in your country?,Azərbaycanda valideynlər və uşaqlar adətən birlikdə hansı idman növləri ilə məşğul olurlar? +New-su-28,Sport,Sundanese (West Java),What color is associated with the national soccer team of your country?,Azərbaycan milli futbol komandası ilə hansı rəng əlaqələndirilir? +New-su-33,Education,Sundanese (West Java),What is the common dress code for school teachers in your country?,Azərbaycanda məktəb müəllimləri üçün ümumi geyim kodu nədir? +New-su-34,Education,Sundanese (West Java),What is the most popular extracurricular activity related to music in schools in your country?,Azərbaycanda məktəblərdə musiqi ilə bağlı ən populyar sinifdənkənar fəaliyyət hansıdır? +New-su-42,Education,Sundanese (West Java),What religion is mainly taught in schools in your country?,Azərbaycanda məktəblərdə əsasən hansı din tədris edilir? +New-su-45,Education,Sundanese (West Java),"What date is Education Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)","Azərbaycanda Təhsil Günü hansı tarixdə qeyd olunur? (MM/DD formatında verin (məsələn, 12/31).)" +New-su-50,Work life,Sundanese (West Java),What is the main occupation of people in mountainous areas in your country?,Azərbaycanın dağlıq ərazilərində insanların əsas məşğuliyyəti nədir? +New-su-51,Work life,Sundanese (West Java),What is the main occupation of people in coastal areas in your country?,Azərbaycanın sahil bölgələrində insanların əsas məşğuliyyəti nədir? +New-su-57,Work life,Sundanese (West Java),What is the most common livestock raised in your country?,Azərbaycanda ən çox hansı mal-qara yetişdirilir? +New-su-58,Work life,Sundanese (West Java),What animals are commonly used for agriculture in your country?,Azərbaycanda kənd təsərrüfatında daha çox hansı heyvanlardan istifadə olunur? +New-su-59,Work life,Sundanese (West Java),What do farmers in your country typically wear to protect themselves from the heat whilst farming?,Azərbaycanda fermerlər istidən qorunmaq üçün adətən nə geyinirlər? +New-su-60,Work life,Sundanese (West Java),What do farmers in your country usually eat for lunch?,Azərbaycanda fermerlər adətən naharda nə yeyirlər? +New-su-71,Family,Sundanese (West Java),What gifts do parents generally give to their children for their birthdays in your country?,Azərbaycanda valideynlər adətən övladlarına ad günündə nə kimi hədiyyələr verirlər? +New-su-75,Family,Sundanese (West Java),What type of vehicle do most families in your country generally own?,Azərbaycanda əksər ailələr adətən hansı nəqliyyat vasitələrinə sahibdirlər? +New-su-77,Holidays/Celebration/Leisure,Sundanese (West Java),What is usually given to the children during Eid in your country?,Azərbaycanda Qurban (və ya Ramazan) bayramında uşaqlara adətən nə verilir? +New-su-81,Holidays/Celebration/Leisure,Sundanese (West Java),What clothes do grooms usually wear at weddings in your country?,Azərbaycanda toyda bəylər adətən nə geyinirlər? +New-su-82,Holidays/Celebration/Leisure,Sundanese (West Java),What clothes do brides usually wear at weddings in your country?,Azərbaycanda toyda gəlinlər adətən nə geyinirlər? +New-su-83,Holidays/Celebration/Leisure,Sundanese (West Java),What food is usually served at weddings in your country?,Azərbaycanda toy mərasimlərində adətən hansı yeməklər verilir? +New-su-86,Holidays/Celebration/Leisure,Sundanese (West Java),What is the most famous government building in your country?,Azərbaycanda ən məşhur hökumət binası hansıdır? +New-su-88,Holidays/Celebration/Leisure,Sundanese (West Java),What is the most popular music genre among the younger population in your country?,Azərbaycanda gənc əhali arasında ən populyar musiqi janrı hansıdır? +Ni-en-02,Education,English (UK),"What time do middle school students in your country typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Azərbaycanda orta məktəb şagirdləri adətən hər gün məktəbi neçədə bitirirlər? (HH:MM formatında təqdim edin (məsələn, 18:00, 09:00).)" +Ni-en-03,Education,English (UK),"At what age do people in your country typically go to university? (Provide Arabic numerals (e.g., 12) only.)","Azərbaycanda insanlar adətən neçə yaşında universitetə gedirlər? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)" +Ni-en-06,Education,English (UK),"From what age do people need to attend compulsory education in your country? (Provide Arabic numerals (e.g., 12) only.)","Azərbaycanda insanlar məcburi təhsilə neçə yaşından başlamalıdırlar? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)" +Ni-en-09,Education,English (UK),How many days a week do children attend school in your country? (Provide Arabic numerals (0~7) only.),Azərbaycanda uşaqlar həftədə neçə gün məktəbə gedirlər? (Yalnız ərəb rəqəmləri (0~7) verin.) +Ni-en-11,Education,English (UK),"In your country, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)","Azərbaycanda magistr dərəcəsini bitirmək adətən neçə il (il sayını rəqəmlərlə, məsələn, 12 kimi, yazın) çəkir?" +Ni-en-12,Education,English (UK),What is the top university in your country? (Provide the official name.),Azərbaycanda ən yaxşı universitet hansıdır? (Rəsmi adını verin.) +Ni-en-13,Education,English (UK),"At what age do most people in your country graduate from university? (Provide Arabic numerals (e.g., 12) only.)","Azərbaycanda əksər insanlar universiteti neçə yaşında bitirir? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)" +Ni-en-15,Education,English (UK),"At what age do children in your country generally start middle school? (Provide Arabic numerals (e.g., 12) only.)","Azərbaycanda uşaqlar adətən orta məktəbə neçə yaşında gedirlər? (Yalnız ərəb rəqəmləri (məsələn, 12) verin.)" +Ni-en-17,Work life,English (UK),"How many hours a week does a full-time worker in your country typically work? (Provide Arabic numerals (e.g., 12) only.)","Azərbaycanda tam ştatlı işçi adətən həftədə neçə saat işləyir? (Yalnız ərəb rəqəmlərini göstərin (məsələn, 12).)" +Ni-en-19,Work life,English (UK),How many days a week does a full-time worker work in your country? (Provide Arabic numerals (0~7) only.),Azərbaycanda tam ştatlı işçi adətən həftədə neçə gün işləyir? (Yalnız ərəb rəqəmləri (0~7) verin.) +Ni-en-20,Work life,English (UK),"At what age do most people start working in your country? (Provide Arabic numerals (e.g., 12) only.)","Azərbaycanda insanların çoxu hansı yaşda işləməyə başlayır? (Yalnız ərəb rəqəmlərini göstərin (məsələn, 12).)" +Ni-en-21,Work life,English (UK),"From what age is an individual allowed to work in your country? (Provide Arabic numerals (e.g., 12) only.)","Azərbaycanda fiziki şəxsə neçə yaşdan etibarən işləməyə icazə verilir? (Yalnız ərəb rəqəmlərini göstərin (məsələn, 12).)" +Ni-en-31,Holidays/Celebration/Leisure,English (UK),What do people in your country traditionally eat on Christmas Day?,Azərbaycanda insanlar Milad bayramında ənənəvi olaraq nə yeyirlər? +Ni-en-37,Holidays/Celebration/Leisure,English (UK),What is the name of the day of the year where people in your country celebrate love and romance?,İnsanların Azərbaycanda sevgi və romantikanı qeyd etdikləri ilin gününün adı nədir? +Ni-en-40,Holidays/Celebration/Leisure,English (UK),What is the most popular Christmas song in your country?,Azərbaycanda ən məşhur Milad mahnısı hansıdır? +Nu-in-04,Education,Indonesian (Indonesia),"How many semesters are there each academic year at high schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","Azərbaycandakı orta məktəblərdə hər tədris ilində neçə semestr var? (Yalnız Ərəb rəqəmləri ilə (məsələn, 7, 8) verin.)" +Nu-in-05,Education,Indonesian (Indonesia),In which month does the new school year typically begin in your country? (Provide Arabic numerals (1~12) only.),Azərbaycanda yeni tədris ili adətən hansı ayda başlayır? (Yalnız ərəb rəqəmləri (1~12) göstərin.) +Nu-in-06,Education,Indonesian (Indonesia),"When is National Teacher's Day commemorated in your country? (Provide in MM/DD format (e.g., 12/31).)","Azərbaycanda Milli Müəllimlər Günü nə vaxt qeyd olunur? (MM/DD formatında verin (məsələn, 12/31).)" +Nu-in-11,Education,Indonesian (Indonesia),"At what time does elementary school start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Azərbaycanda ibtidai məktəb saat neçədə başlayır? (HH:MM formatında təqdim edin (məsələn, 18:00, 09:00).)" +Nu-in-20,Family,Indonesian (Indonesia),"When is Children's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)","Azərbaycanda Uşaqlar Günü nə vaxt qeyd olunur? (MM/DD formatında verin (məsələn, 12/31).)" +Nu-in-40,Work life,Indonesian (Indonesia),Which city is the main destination for job seekers in your country?,Azərbaycanda iş axtaranlar üçün əsas mənzil hansı şəhərdir? +Sa-en-1,Food,English (UK),What is your country's most popular fast food chain?,Azərbaycanın ən məşhur fast food zənciri hansıdır? +Sa-en-13,Food,English (UK),What is the food that is most divisive (either love or hate) in your country?,"Azərbaycanda ən çox mübahisəli olan (ya sevilən, ya da nifrət edilən) yemək hansıdır?" +Sa-en-16,Sport,English (UK),What is the most popular soccer team among the people from your country?,Azərbaycanlılar arasında ən populyar futbol komandası hansıdır? +Sa-en-22,Sport,English (UK),What is the most famous university in your country known for its sports team?,Azərbaycanda idman komandası ilə tanınan ən məşhur universitet hansıdır? +Sa-en-31,Family,English (UK),What is your country's most popular family pet?,Azərbaycanın ən məşhur ev heyvanı hansıdır? +Sa-en-32,Family,English (UK),What is the most popular family TV show in your country?,Azərbaycanda ən məşhur ailə televiziya şousu hansıdır? +Sa-en-37,Family,English (UK),What is the most popular family boardgame in your country?,Azərbaycanda ən məşhur ailə stolüstü oyunu hansıdır? +Sa-en-6,Food,English (UK),What is the most popular takeaway food in your country?,Azərbaycanda ən populyar teykevey yeməyi nədir? +Sa-en-7,Food,English (UK),What are popular snacks in your country?,Azərbaycanda populyar qəlyanaltılar hansılardır? +Sa-en-9,Food,English (UK),What do people from your country eat at the beach?,Azərbaycandan gələnlər çimərlikdə nə yeyirlər? +Ta-pe-10,Family,Persian (Iran),"At what age do men usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)","Azərbaycanda kişilər adətən neçə yaşında evlənirlər? (Yalnız ərəb rəqəmləri (məsələn, 20) göstərin.)" +Ta-pe-11,Family,Persian (Iran),"At what age do women usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)","Azərbaycanda qadınlar adətən neçə yaşında evlənirlər? (Yalnız ərəb rəqəmləri (məsələn, 20) göstərin.)" +Ta-pe-13,Family,Persian (Iran),"In your parents' generation, what was the average number of members in their family in your country? (Provide Arabic numerals (e.g., 20) only.)","Sizin valideynlərinizin nəsli üçün Azərbaycanda ailədə orta hesabla neçə nəfər olub? (Yalnız ərəb rəqəmləri (məsələn, 20) göstərin.)" +Ta-pe-17,Sport,Persian (Iran),"In the Olympic Games, which sport is the most popular in your country?",Olimpiya Oyunlarında Azərbaycanda ən populyar idman növü hansıdır? +Ta-pe-21,Sport,Persian (Iran),Where do children usually play soccer in your country?,Uşaqlar adətən Azərbaycanda harada futbol oynayırlar? +Ta-pe-22,Sport,Persian (Iran),Which daily exercise is popular among women in your country?,Azərbaycanda qadınlar arasında hansı gündəlik idman məşqi populyardır? +Ta-pe-23,Sport,Persian (Iran),Which daily exercise is popular among men in your country?,Azərbaycanda kişilər arasında hansı gündəlik idman məşqi populyardır? +Ta-pe-25,Sport,Persian (Iran),"What is the most famous rivalry in a national sports league in your country? (e.g., ___ vs ___)","Azərbaycanda milli idman liqasında ən məşhur rəqabət hansıdır? (məsələn, ___ və ___)" +Ta-pe-29,Sport,Persian (Iran),Which professional sport is the highest paying in your country?,Azərbaycanda ən çox maaş alan peşəkar idman növü hansıdır? +Ta-pe-30,Sport,Persian (Iran),What is/was the most popular sports-related TV program in your country?,Azərbaycanda idmanla bağlı ən populyar televiziya proqramı hansıdır/hansı idi? +Ta-pe-32,Holidays/Celebration/Leisure,Persian (Iran),What day of the year is usually dedicated to fireworks in your country?,Azərbaycanda adətən ilin hansı günü atəşfəşanlığa həsr olunur? +Ta-pe-37,Holidays/Celebration/Leisure,Persian (Iran),What is the common symbol of New Year's Eve that is usually found in your country?,Azərbaycanda adətən Yeni il gecəsinin ümumi simvolu hansıdır? +Ta-pe-42,Holidays/Celebration/Leisure,Persian (Iran),What food do people from your country usually eat on New Year's Eve?,Azərbaycanlılar Yeni il ərəfəsində adətən hansı yeməkləri yeyirlər? +Ta-pe-45,Holidays/Celebration/Leisure,Persian (Iran),What is usually eaten during the celebration of the longest night of the year in your country?,Azərbaycanda ilin ən uzun gecəsi qeyd olunanda adətən nə yeyilir? +Th-en-01,Sport,English (US),What is the most popular summer sport in your country?,Azərbaycanda ən populyar yay idman növü hansıdır? +Th-en-03,Sport,English (US),What is the most popular professional sports league in your country?,Azərbaycanda ən populyar peşəkar idman liqası hansıdır? +Th-en-05,Sport,English (US),What is the most popular women's sports team in your country?,Azərbaycanda ən məşhur qadın idman komandası hansıdır? +Th-en-09,Sport,English (US),What is the most popular tournament in your country?,Azərbaycanda ən məşhur turnir hansıdır? +Th-en-11,Sport,English (US),Who is the most popular sportperson in your country?,Azərbaycanda ən məşhur idmançı kimdir? +Th-en-12,Sport,English (US),In which sport has your country been most successful in international competitions?,Azərbaycan beynəlxalq yarışlarda hansı idman növündə ən çox uğur qazanıb? +Th-en-15,Sport,English (US),What is the most popular winter sport in your country?,Azərbaycanda ən populyar qış idman növü hansıdır? +Th-en-19,Work life,English (US),What is a city or region in your country known for manufacturing industry?,Azərbaycanda hansı şəhər və ya rayon istehsal sənayesi ilə məşhurdur? +Th-en-21,Work life,English (US),What is regarded as the most important perk typically offered to employees in your country?,Azərbaycanda işçilərə adətən təklif edilən ən önəmli imtiyaz nə hesab olunur? +Th-en-22,Work life,English (US),What was the most catastrophic economic period for your country?,Azərbaycan üçün ən faciəli iqtisadi dövr nə vaxt olub? +Th-en-24,Work life,English (US),What region in your country is a major hub for tech workers and start ups?,Azərbaycanda texnologiya işçiləri və startaplar üçün əsas mərkəz olan bölgə hansıdır? +Th-en-27,Work life,English (US),What is the most important industry in your country?,Azərbaycanda ən önəmli sənaye sahəsi hansıdır? +Th-en-35,Family,English (US),"Which one of the daily meals is commonly shared with family members in your country? (e.g., breakfast, lunch, dinner)","Azərbaycanda gündəlik yeməklərdən hansı adətən ailə üzvləri ilə birlikdə yeyilir? (məsələn, səhər yeməyi, nahar, şam yeməyi)" +Th-en-36,Family,English (US),What is a popular family activity with a child to do on weekends in your country?,Azərbaycanda həftə sonları ailə ilə birlikdə uşaqla nə etmək populyardır? +Th-en-37,Family,English (US),"At what age do children typically become independent from their parents in your country? (Provide Arabic numerals (e.g., 12) only.)","Azərbaycanda uşaqlar adətən neçə yaşında valideynlərindən müstəqil olurlar? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)" +Th-en-38,Family,English (US),What is the most important family holiday in your country?,Azərbaycanda ən vacib ailə bayramı hansıdır? +Th-en-39,Family,English (US),What is a popular family game in your country?,Azərbaycanda məşhur ailə oyunu nədir? +Th-en-41,Family,English (US),"What is the average age for couples to have their first child in your country? (Provide Arabic numerals (e.g., 20) only.)","Azərbaycanda ilk uşaq dünyaya gətirən cütlüklərin orta yaşı neçədir? (Yalnız ərəb rəqəmləri (məsələn, 20) göstərin.)" +Th-en-43,Family,English (US),"How many cars are owned by a typical family in your country? (Provide Arabic numerals (e.g., 12) only.)","Azərbaycanda tipik bir ailənin neçə maşını var? (Yalnız ərəb rəqəmləri (məsələn, 12) göstərin.)" +Th-en-44,Family,English (US),What is your country's most popular food for family meals on weekends?,Azərbaycanda ailə yeməkləri üçün həftə sonları ən populyar yemək nədir? +Th-en-45,Family,English (US),What is the most popular weekday evening family activity in your country?,Azərbaycanda həftə içi axşamlarının ən populyar ailə fəaliyyəti nədir? +Th-en-48,Education,English (US),What is the highest grade given to top-achieving high school students on assignments and exams in your country?,Azərbaycanda tapşırıq və imtahanlarda yüksək nəticə göstərən orta məktəb şagirdlərinə verilən ən yüksək qiymət hansıdır? +Th-en-49,Education,English (US),What is considered the most important exam for high school students in your country?,Azərbaycanda orta məktəb şagirdləri üçün ən önəmli imtahan hansı hesab olunur? +Th-en-51,Education,English (US),Which subject is considered the most important for students in your country?,Azərbaycanda tələbələr üçün ən vacib hesab edilən fənn hansıdır? +Th-en-53,Education,English (US),What is the most popular extracurricular social event at schools in your country?,Azərbaycanda məktəblərdə ən populyar məktəbdənkənar sosial tədbir hansıdır? +Th-en-58,Education,English (US),What is the most advanced math subject learned before university in your country?,Azərbaycanda universitetə ​​qədər öyrənilən ən ağır riyaziyyat mövzusu hansıdır? +Tmp-ar-01,Education,Arabic (Algeria),Where do university students in your country usually go to study for their final exams?,Azərbaycanda universitet tələbələri final imtahanlarına hazırlaşmaq üçün adətən hara gedirlər? +Tmp-ar-02,Education,Arabic (Algeria),What is a common public transport that people use to go to university in your country?,Azərbaycanda insanların universitetə getmək üçün istifadə etdikləri ümumi ictimai nəqliyyat vasitəsi nədir? +Tmp-ar-04,Education,Arabic (Algeria),What do elementary students in your country usually do after school?,Azərbaycanda ibtidai sinif şagirdləri adətən məktəbdən sonra nə edirlər? diff --git a/data/questions/China_questions.csv b/data/questions/China_questions.csv new file mode 100644 index 0000000000000000000000000000000000000000..13002016dcf845f4d28b3fcfcb9025a925672438 --- /dev/null +++ b/data/questions/China_questions.csv @@ -0,0 +1,501 @@ +ID,Topic,Source,Question,Translation +Al-en-01,Food,English (US),What is a common snack for preschool kids in your country?,在中国,学龄前儿童常见的零食是什么? +Al-en-02,Food,English (US),What is a popular food to go with beer in your country?,在中国,有什么受欢迎的食物可以搭配啤酒吃? +Al-en-04,Food,English (US),What is the most popular fruit in your country?,在中国最受欢迎的水果是什么? +Al-en-06,Food,English (US),What is a common school cafeteria food in your country?,在中国的学校食堂里常见的食物是什么? +Al-en-08,Food,English (US),What are the most commonly eaten snacks at shopping malls in your country?,在中国的购物中心里,最常见的零食有哪些? +Al-en-09,Food,English (US),What is a popular snack at an amusement park in your country?,在中国的游乐园里,有什么受欢迎的小吃? +Al-en-16,Education,English (US),"At what age do kids start preschool in your country? (Provide Arabic numerals (e.g., 12) only.)",在中国,孩子们几岁开始上幼儿园?(只提供阿拉伯数字(例如,12)。) +Al-en-17,Education,English (US),What is a popular afterschool sport for elementary schools in your country?,在中国小学,什么课后运动项目比较受欢迎? +Al-en-18,Education,English (US),For which subject do elementary students get private education in your country?,在中国,小学生通常为哪门学科接受私立教育? +Al-en-19,Education,English (US),What is a popular second language for high school students in your country?,在中国,高中生普遍学习哪种第二外语? +Al-en-21,Education,English (US),Which subject is the most important for gifted education in your country?,在中国,哪个学科对于“天才班”来说最重要? +Al-en-32,Holidays/Celebration/Leisure,English (US),What is the main dish for Thanksgiving in your country?,在中国,感恩节的主菜是什么? +Al-en-33,Holidays/Celebration/Leisure,English (US),What do people do to celebrate Halloween in your country?,在中国,人们怎么庆祝万圣节前夜? +Al-en-34,Holidays/Celebration/Leisure,English (US),What do people do to celebrate New Year's Day in your country?,中国人在新年当天通常会做些什么来庆祝呢? +Al-en-35,Holidays/Celebration/Leisure,English (US),What do people do to celebrate Christmas in your country?,人们在中国怎样庆祝圣诞节? +Al-en-36,Holidays/Celebration/Leisure,English (US),What food is associated with Halloween in your country?,在中国,什么食物与万圣节有关联? +Al-en-37,Holidays/Celebration/Leisure,English (US),What food is associated with Christmas in your country?,在中国,哪些食物与圣诞节有关联? +Al-en-38,Holidays/Celebration/Leisure,English (US),What food is associated with Valentine's day in your country?,在中国,哪些食物与情人节有关? +Al-en-39,Holidays/Celebration/Leisure,English (US),What do people eat on their birthday in your country?,在中国,人们在生日时通常吃什么? +Al-en-40,Holidays/Celebration/Leisure,English (US),What is a popular outdoor place for families to have fun with little kids in your country?,在中国,有哪些受欢迎的户外场所适合家庭带着小孩子去玩乐? +Al-en-43,Holidays/Celebration/Leisure,English (US),What is a popular indoor activity for families in your country?,在中国,家庭中流行的室内活动是什么? +An-ar-02,Education,Arabic (Algeria),Where do university students have lunch in your country?,在中国,大学生通常在哪里吃午饭? +An-ar-03,Education,Arabic (Algeria),Which month is the final exam term usually scheduled at high schools in your country? (Provide Arabic numerals (1~12) only.),中国的高中通常在哪个月安排期末考试?(只提供阿拉伯数字(1~12)。) +An-ar-08,Education,Arabic (Algeria),"How many hours a day do students in your country usually spend at high school? (Provide Arabic numerals in integers (0~24), without any decimal points.)",中国的高中生通常每天在学校多少小时?(请提供阿拉伯数字整数(0~24),不要有任何小数点。) +An-ar-09,Education,Arabic (Algeria),"How many languages do students study at high school in your country? (Provide Arabic numerals (e.g., 5) only.)",在中国的高中,学生们学习多少种语言?(只提供阿拉伯数字(例如,5)。) +An-ar-34,Sport,Arabic (Algeria),What is the most popular sport played in a team at school in your country?,在中国学校里,最受欢迎的团队运动是什么? +An-ar-35,Sport,Arabic (Algeria),Who is the most popular sport commentator in your country?,谁是中国最受欢迎的体育评论员? +An-ar-36,Sport,Arabic (Algeria),What is the most popular sport team in your country?,中国最受欢迎的运动队是哪一支? +An-ar-43,Sport,Arabic (Algeria),What are the common places or venues where individuals in your country usually gather to watch sports broadcasts?,在中国,人们通常聚集在哪些常见的地点或场所观看体育转播? +Ca-sp-05,Food,Spanish (Spain),"How many meals per day do people from your country usually have? (Provide Arabic numerals (e.g., 5) only.)",中国人通常一天吃几顿饭?(只提供阿拉伯数字(例如,5)。) +Ca-sp-06,Food,Spanish (Spain),Which is the most important meal of the day to people from your country?,对中国人来说,一天中最重要的一餐是哪一餐? +Ca-sp-08,Food,Spanish (Spain),What is the most common ingredient used in your country's diet?,中国饮食中最常用的食材是什么? +Ca-sp-09,Food,Spanish (Spain),What do people from your country usually eat for dessert?,中国人通常吃什么甜点? +Ca-sp-11,Food,Spanish (Spain),Which day of the week do people usually organize a family meal in your country?,在中国,人们通常在一周的哪一天组织家庭聚餐? +Ca-sp-14,Food,Spanish (Spain),Which is the most popular hot drink in your country?,在中国最受欢迎的热饮是什么? +Ca-sp-19,Holidays/Celebration/Leisure,Spanish (Spain),What do young people from your country usually drink at the night club?,中国的年轻人在夜店通常喝什么? +Ca-sp-21,Holidays/Celebration/Leisure,Spanish (Spain),At which month do people usually take holidays in your country? (Provide Arabic numerals (1~12) only.),在中国,人们通常在哪个月份休假?(只提供1~12的阿拉伯数字。) +Ca-sp-29,Holidays/Celebration/Leisure,Spanish (Spain),What tradition is there in your country for New Year's Eve?,中国在除夕有什么传统? +Ca-sp-38,Family,Spanish (Spain),Which is the typical type of house for a family in your country?,在中国,典型的家庭住宅是哪种类型的房子? +Ca-sp-41,Family,Spanish (Spain),Where do the dependent elderly usually live in your country?,在中国,需要依赖他人照顾的老年人通常住在哪里? +Ca-sp-42,Family,Spanish (Spain),"How long (in weeks) is your country's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)",中国的产假有多少周?(只提供阿拉伯数字,例如:20。) +Ca-sp-43,Family,Spanish (Spain),"How long (in weeks) is your country's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)",中国的父亲陪产假有多少周?(只提供阿拉伯数字,例如:20。) +Ca-sp-45,Family,Spanish (Spain),What type of destination is commonly chosen for a family vacation in your country?,在中国,家庭度假通常选择哪种类型的目的地? +Gu-ch-05,Sport,Chinese (China),What sports do seniors like the most in your country?,在中国,老年人最喜欢什么运动? +Gu-ch-06,Sport,Chinese (China),What sports do men like to play the most in your country?,在中国,男性最喜欢参与什么运动? +Gu-ch-07,Sport,Chinese (China),Who is the most famous basketball player in your country?,中国最著名的篮球运动员是谁? +Gu-ch-08,Sport,Chinese (China),What is the most popular sports among children in your country?,在中国,孩子们最喜欢的运动是什么? +Gu-ch-09,Sport,Chinese (China),What sports do women like to play the most in your country?,在中国,女性最喜欢参与哪些运动? +Gu-ch-11,Sport,Chinese (China),What sports event has your country won the most gold medals at the Olympics?,中国在奥运会上哪个体育项目获得了最多的金牌? +Gu-ch-15,Sport,Chinese (China),What sports do male students in university like to play the most in your country?,在中国,大学里的男生最喜欢玩什么运动? +Gu-ch-16,Family,Chinese (China),"How many people are there in a family on average in your country? (Provide Arabic numerals (e.g., 12) only.)",中国的家庭平均有多少人?(只提供阿拉伯数字(例如,12)。) +Gu-ch-18,Family,Chinese (China),"How many children do couples usually have in your country? (Provide Arabic numerals (e.g., 12) only.)",在中国,夫妇通常会有几个孩子?(只提供阿拉伯数字(例如,12)。) +Gu-ch-31,Education,Chinese (China),"What is the duration of elementary school in years in your country? (Provide Arabic numerals (e.g., 12) only.)",中国小学的学制是多少年?(只提供阿拉伯数字,例如:12。) +Gu-ch-32,Education,Chinese (China),"What is the duration of compulsory education in years in your country? (Provide Arabic numerals (e.g., 12) only.)",中国义务教育的年限是多少年?(只提供阿拉伯数字,例如:12。) +Gu-ch-33,Education,Chinese (China),"From which age do students start learning their second language in your country? (Provide Arabic numerals (e.g., 12) only.)",在中国,学生从几岁开始学习第二语言?(只提供阿拉伯数字(例如,12)。) +Gu-ch-38,Education,Chinese (China),"What is the duration of undergraduate education in your country? (Provide Arabic numerals (e.g., 12) only.)",中国的本科教育周期是多长?(只提供阿拉伯数字(例如,12)。) +Gu-ch-40,Education,Chinese (China),"What time do younger elementary school students finish school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","中国小学低年级学生什么时候放学?(请以HH:MM格式提供,例如,18:00, 09:00。)" +Gu-ch-41,Education,Chinese (China),"How many musical instruments do elementary school students in your country typically play? (Provide Arabic numerals (e.g., 12) only.)",中国的小学生通常会演奏多少种乐器?(只提供阿拉伯数字(例如,12)。) +Ji-ko-02,Work life,Korean (South Korea),What day of the week do people in your country prefer to have company dinners?,中国人更喜欢在一周的哪一天举行公司晚宴? +Ji-ko-03,Work life,Korean (South Korea),Which region/city has the highest number of financial companies in your country?,在中国,哪个地区/城市拥有最多的金融公司? +Ji-ko-07,Work life,Korean (South Korea),What is the most famous private company in your country?,中国最著名的私营公司是哪一家? +Ji-ko-08,Work life,Korean (South Korea),"What is the maximum number of hours one can work per week in your country? (Provide Arabic numerals (e.g., 12) only.)",在中国,每周最多可以工作多少小时?(只提供阿拉伯数字(例如,12)。) +Ji-ko-09,Work life,Korean (South Korea),What do people typically eat during company get-together in your country?,在中国的公司聚会上,人们通常吃些什么? +Ji-ko-14,Work life,Korean (South Korea),What is the representative export item of your country?,中国的代表性出口商品是什么? +Ji-ko-15,Work life,Korean (South Korea),"How long (in hours) is the typical lunch break in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)",中国的典型午休时间有多长(以小时计)?(仅提供阿拉伯数字,保留到一位小数点(例如,2、3.5)。) +Ji-ko-16,Family,Korean (South Korea),Where do mothers stay for a certain period after childbirth for recovery in your country?,在中国,产妇在生完孩子后为了恢复会在哪里住一段时间? +Ji-ko-19,Family,Korean (South Korea),What is your country's most commonly given flower on Parents' Day?,在父母节上,中国最常赠送的花是什么? +Ji-ko-22,Family,Korean (South Korea),What do people especially spend their first salary on in your country's society?,在中国社会,人们的第一份工资通常会特别花在什么上? +Ji-ko-24,Family,Korean (South Korea),What is the most preferred recreational facility among children in your country?,在中国,儿童最喜欢的休闲设施是什么? +Ji-ko-25,Family,Korean (South Korea),What are the family-related holidays in your country?,中国有哪些与家庭相关的节日? +Ji-ko-26,Family,Korean (South Korea),What are the key milestones associated with children's independence from their parents in your country's society?,在中国社会中,与孩子们从父母那里独立出来相关的关键里程碑是什么? +Ji-ko-27,Family,Korean (South Korea),What is the common gift you give when visiting elderly parents in your country?,在中国拜访年长的父母时,常见的礼物是什么? +Ji-ko-28,Family,Korean (South Korea),When is the first day that people celebrate after a child is born in your country?,在中国,孩子出生后人们庆祝的第一天是什么时候? +Ji-ko-29,Family,Korean (South Korea),Which age's birthday is celebrated the most grandly in your country's society?,在中国社会中,哪个年龄的生日庆祝得最隆重? +Ji-ko-31,Education,Korean (South Korea),Where do middle and high school students in your country usually study for exams?,中国的中学和高中学生通常在哪里为考试学习? +Ji-ko-33,Education,Korean (South Korea),Where do high school students in your country usually go after dinner?,中国的高中生晚饭后通常去哪里? +Ji-ko-34,Education,Korean (South Korea),How do elementary school students in your country go to school?,中国的小学生是怎么上学的? +Ji-ko-35,Education,Korean (South Korea),What is the most common form of private education in your country?,在中国,最常见的私立教育形式是什么? +Ji-ko-36,Education,Korean (South Korea),Which subject’s academy/private educational institute do middle or high students most frequently attend in your country?,在中国,中学或高中学生最常上哪个科目的补习班/私立教育机构? +Ji-ko-37,Education,Korean (South Korea),What type of clothing do middle and high school students wear to school in your country?,在中国,中学和高中的学生上学通常穿什么样的衣服? +Ji-ko-38,Education,Korean (South Korea),Which major is considered the most difficult to gain admission to in your country?,在中国,哪个专业被认为是最难进入的? +Ji-ko-39,Education,Korean (South Korea),What is the most commonly learned musical instrument by elementary school students in your country?,在中国,小学生最常学习的乐器是什么? +Ji-ko-40,Education,Korean (South Korea),What do high school students typically do during break time in schools in your country?,在中国的学校里,高中生在课间休息时间通常做些什么? +Ji-ko-41,Education,Korean (South Korea),What kind of shoes do students wear in schools in your country?,在中国的学校里,学生们通常穿什么样的鞋子? +Ji-ko-42,Education,Korean (South Korea),What are the required subjects in your country's university entrance exam?,中国的大学入学考试都有哪些必考科目? +Ji-ko-44,Education,Korean (South Korea),Which region (within a city) in your country has the highest academic fervor?,中国哪个城市里的哪个区域学术热情最高? +Ji-ko-45,Education,Korean (South Korea),What do people look forward to the most at university festivals in your country?,在中国的大学节日中,人们最期待的是什么? +Jo-sp-01,Sport,Spanish (Spain),What is the second most popular sport in your country?,中国第二大流行的运动是什么? +Jo-sp-02,Sport,Spanish (Spain),What is the most popular sport played without a ball in your country?,在中国,最受欢迎的不用球玩的运动是什么? +Jo-sp-09,Sport,Spanish (Spain),What sports are most associated with the upper class in your country?,在中国,哪些运动最常与上层阶级联系在一起? +Jo-sp-13,Sport,Spanish (Spain),What is the most popular water sport in your country?,在中国最受欢迎的水上运动是什么? +Jo-sp-14,Sport,Spanish (Spain),What is the most popular mental sport in your country?,在中国最受欢迎的智力运动是什么? +Jo-sp-18,Work life,Spanish (Spain),"How many holiday days per year does a standard worker gets in your country? (Provide Arabic numerals (e.g., 12) only.)",在中国,一个标准工人每年有多少天假期?(只提供阿拉伯数字(例如,12)。) +Jo-sp-19,Work life,Spanish (Spain),What region in your country has been traditionally associated with agriculture?,在中国,哪个地区传统上与农业有关? +Jo-sp-21,Work life,Spanish (Spain),"What time, if any, do people usually leave work for lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","在中国,人们通常什么时间离开工作去吃午饭?(请提供HH:MM格式,例如,18:00, 09:00。)" +Jo-sp-31,Education,Spanish (Spain),"What time do high school students tend to leave school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","在中国,高中生通常什么时间放学?(请以HH:MM格式提供,例如,18:00, 09:00。)" +Jo-sp-32,Education,Spanish (Spain),What sport do elementary school students tend to practice at school in your country?,在中国,小学生通常在学校练习什么运动? +Jo-sp-36,Education,Spanish (Spain),"How long (in weeks) are summer vacations at elementary schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)",中国小学的暑假有多少周?(只提供阿拉伯数字,例如:7、8。) +Jo-sp-37,Education,Spanish (Spain),"How long (in weeks) are summer vacations at universities in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)",中国的大学暑假有多长时间(以周为单位)?(只提供阿拉伯数字,例如:7、8。) +Jo-sp-39,Education,Spanish (Spain),"At what age does elementary education begin in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)",在中国,小学教育从几岁开始?(只提供阿拉伯数字,例如:7、8。) +Jo-sp-43,Education,Spanish (Spain),"How many languages are studied in elementary education besides your country's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)",在中国的小学教育中,除了官方语言外,还学习多少种语言?(请仅用阿拉伯数字提供,例如:7、8。) +Jod-ch-01,Food,Chinese (China),What eating utensils do people commonly used in your country?,在中国,人们用餐时通常使用什么餐具? +Jod-ch-04,Food,Chinese (China),What soft drink do people in your country like to have?,中国人喜欢喝什么不含酒精的饮料? +Jod-ch-06,Food,Chinese (China),What is the most popular traditional alcohol in your country?,中国最受欢迎的传统酒精饮料是什么? +Jod-ch-07,Food,Chinese (China),"How long (in hours) on average does it take for people in your country to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)",在中国,人们平均在餐厅吃晚饭需要多长时间(以小时计)?(只提供阿拉伯数字,保留到一位小数点,例如:2、3.5。) +Jod-ch-09,Food,Chinese (China),"What time do people usually have dinner in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","在中国,人们通常什么时间吃晚饭?(请以HH:MM格式提供,例如,18:00, 09:00。)" +Jod-ch-12,Food,Chinese (China),What kind of soup do people from your country like to have?,中国人喜欢喝什么样的汤? +Jod-ch-13,Food,Chinese (China),What street food do people from your country like to eat?,中国人喜欢吃什么街头小吃? +Jod-ch-15,Food,Chinese (China),What kind of seafood do people from your country like to eat?,中国人喜欢吃什么样的海鲜? +Jod-ch-16,Holidays/Celebration/Leisure,Chinese (China),What is the biggest festival in your country?,中国最大的节日是什么? +Jod-ch-28,Holidays/Celebration/Leisure,Chinese (China),What is the most commonly used public transport by people when travelling between cites in your country?,在中国,人们在城市间旅行时最常用的公共交通工具是什么? +Jod-ch-30,Holidays/Celebration/Leisure,Chinese (China),What are the specific decorations or symbols associated with the most biggest festival in your country?,与中国最大的节日相关的具体装饰或符号有哪些? +Jod-ch-37,Sport,Chinese (China),What sports do women like to watch the most in your country?,在中国,女性最喜欢观看哪些体育运动? +Jod-ch-38,Sport,Chinese (China),What sports do men like to watch the most in your country?,在中国,男性最喜欢观看哪些体育运动? +Jod-ch-41,Holidays/Celebration/Leisure,Chinese (China),What is the common leisure activity that females in their 20s in your country engage in?,中国20多岁的女性通常参加什么休闲活动? +Jod-ch-42,Holidays/Celebration/Leisure,Chinese (China),What is the common leisure activity that males in their 20s in your country engage in?,中国20多岁的男性通常参加什么休闲活动? +Jod-ch-46,Work life,Chinese (China),"How long (in hours) do people usually take a break after lunch on a weekday in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)",在中国,人们通常在工作日的午餐后休息多长时间(以小时计)?(只提供阿拉伯数字,保留到一位小数点,例如:2、3.5。) +Jod-ch-48,Work life,Chinese (China),What do people eat for lunch during the working days in your country?,在中国的工作日里,人们午餐通常吃什么? +Jod-ch-50,Work life,Chinese (China),"What is the average commute time (in minutes) for people in your country? (Provide Arabic numerals (e.g., 1) only.)",中国人的平均通勤时间是多少(分钟)?(只提供阿拉伯数字(例如,1)。) +Jod-ch-51,Work life,Chinese (China),What is the most common transportation that people take to get to work in your country?,在中国,人们上班最常用的交通工具是什么? +Jod-ch-54,Work life,Chinese (China),"How long (in days) is the marriage leave in your country? (Provide Arabic numerals (e.g., 12) only.)",中国的婚假有多少天?(只提供阿拉伯数字,例如:12。) +Jod-ch-56,Work life,Chinese (China),"What is the typical retirement age for women in your country? (Provide Arabic numerals (e.g., 12) only.)",中国女性的典型退休年龄是多少?(只提供阿拉伯数字(例如,12)。) +Jod-ch-57,Work life,Chinese (China),"What is the typical retirement age for men in your country? (Provide Arabic numerals (e.g., 12) only.)",中国男性的典型退休年龄是多少?(只提供阿拉伯数字(例如,12)。) +Jod-ch-58,Work life,Chinese (China),Which profession is the most respected in your country?,在中国,哪个职业最受尊敬? +Jod-ch-60,Work life,Chinese (China),What is the duration (in hours) of a typical workday in your country? (Provide Arabic numerals (0~24) only.),中国的典型工作日时长(以小时计)是多少?(仅提供阿拉伯数字(0~24))。 +Jod-ch-61,Work life,Chinese (China),Which occupation is most preferred among females in your country?,在中国,女性最偏爱的职业是哪个? +Jod-ch-62,Work life,Chinese (China),Which occupation is most preferred among males in your country?,在中国,男性最偏爱哪种职业? +Ki-pe-17,Education,Persian (Iran),"On average, how far do students typically pursue their education in your country? (e.g., elementary, high school)",通常情况下,中国学生平均接受多长时间的教育?(例如,小学、高中) +Ki-pe-24,Education,Persian (Iran),What language is taught in schools in your country besides English?,在中国的学校里除了英语之外还教授哪种语言? +Ki-pe-30,Education,Persian (Iran),What days of the week are schools closed in your country?,中国的学校一般在星期几休息? +Ki-pe-32,Food,Persian (Iran),What food do the hosts usually prepare for the guests in your country?,在中国,主人通常为客人准备什么食物? +Ki-pe-34,Food,Persian (Iran),What is the usual drink in the breakfast in your country?,在中国,早餐通常喝什么? +Ki-pe-36,Food,Persian (Iran),"Except the food original from your country, which country's food is more popular in your country?",除了源自中国的食物,哪个国家的食物在中国更受欢迎? +Ki-pe-39,Food,Persian (Iran),What food is usually prepared for a family picnic in your country?,在中国,家庭野餐通常准备什么食物? +Ki-pe-40,Food,Persian (Iran),Which food from your country is considered disgusting by the rest of the world?,哪些来自中国的食物被世界其他地方认为是令人厌恶的? +Ki-pe-43,Food,Persian (Iran),What is the name of the popular bread in your country?,中国的流行面包叫什么名字? +Ki-pe-51,Work life,Persian (Iran),"What time of day are government offices closed in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","中国的政府办公室一般什么时间关闭?(请提供HH:MM格式,例如,18:00, 09:00。)" +Ki-pe-53,Work life,Persian (Iran),"What is the normal start time of government offices in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","中国政府机关的正常上班时间是什么时候?(请提供HH:MM格式,例如,18:00, 09:00。)" +Kik-in-01,Holidays/Celebration/Leisure,Indonesian (Indonesia),What national holiday has the longest duration in your country?,中国哪个国家假期的持续时间最长? +Kik-in-02,Holidays/Celebration/Leisure,Indonesian (Indonesia),What are the common activities people from your country do to celebrate Independence day?,中国人民庆祝国庆日通常会做哪些活动? +Kik-in-04,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is installed in front of the house when a family member dies in your country?,在中国,当家里有人去世时,房子前面会安装什么? +Kik-in-05,Holidays/Celebration/Leisure,Indonesian (Indonesia),When is a pregnancy celebration or ceremony usually held in your country?,在中国,怀孕庆祝活动或仪式通常在什么时候举行? +Kik-in-06,Holidays/Celebration/Leisure,Indonesian (Indonesia),What event is usually held before a wedding in your country?,在中国,婚礼前通常会举办什么活动? +Kik-in-07,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is usually shared to the children during (Lunar) New Year in your country?,在中国的(农历)新年期间,通常会给孩子们分发什么? +Kik-in-08,Holidays/Celebration/Leisure,Indonesian (Indonesia),What activities are usually done days before Ramadan in your country?,在中国,斋月前几天通常会做些什么活动? +Kik-in-10,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most popular tourist attraction for foreign visitors in your country?,在中国,哪个旅游景点最受外国游客欢迎? +Kik-in-11,Holidays/Celebration/Leisure,Indonesian (Indonesia),"What is the most popular religious sites (temple, church, etc.) for tourism in your country?",在中国,最受欢迎的宗教旅游景点(寺庙、教堂等)是哪些? +Kik-in-15,Holidays/Celebration/Leisure,Indonesian (Indonesia),What clothes do women usually wear on graduation commencement ceremony in your country?,在中国的毕业典礼上,女性通常穿什么样的服装? +Kik-in-16,Food,Indonesian (Indonesia),What drink is commonly consumed in your country when the weather is cold?,天气冷的时候,中国人通常喝什么饮料? +Kik-in-17,Food,Indonesian (Indonesia),What fruit is more commonly sold and found during Ramadan in your country?,在中国的斋月期间,哪种水果更常见和销售? +Kik-in-24,Food,Indonesian (Indonesia),What carbohydrate is usually served with chicken in a fast-food restaurant in your country?,在中国的快餐店里,通常与鸡肉一起上桌的碳水化合物是什么? +Kik-in-31,Sport,Indonesian (Indonesia),What is the most famous martial art sports in your country?,中国最著名的武术运动是什么? +Kik-in-34,Sport,Indonesian (Indonesia),What sports are often broadcasted on national television in your country?,在中国的国家电视台上经常播放哪些体育项目? +Kik-in-35,Sport,Indonesian (Indonesia),What sports were popular among people from your country during the COVID-19 pandemic?,在COVID-19大流行期间,中国人民喜欢哪些运动? +Kik-in-36,Sport,Indonesian (Indonesia),Who is the most popular soccer coach in your country?,谁是中国最受欢迎的足球教练? +Kik-in-37,Sport,Indonesian (Indonesia),What soccer teams in your country are famous for their intense rivalry? (e.g. ___ vs ___),中国有哪些足球队因为他们之间的激烈对抗而闻名?(例如 ___ 对 ___) +Kik-in-38,Sport,Indonesian (Indonesia),What are the names of soccer supporters in your country who are famous for their intense rivalry? (e.g. ___ vs ___),在中国,哪些足球支持者因其激烈的对抗而闻名?(例如 ___ 对 ___) +Kik-in-40,Sport,Indonesian (Indonesia),Who is the most famous male badminton player in your country?,中国最著名的男子羽毛球运动员是谁? +Kik-in-41,Sport,Indonesian (Indonesia),Who is the most famous female badminton player in your country?,中国最著名的女羽毛球运动员是谁? +Kik-in-44,Sport,Indonesian (Indonesia),What sport gets the most support from the government in your country?,在中国,哪项运动得到了政府最多的支持? +Kik-in-45,Sport,Indonesian (Indonesia),What sports field facilities are usually available at schools in your country?,在中国的学校通常有哪些运动场设施? +Na-ko-02,Food,Korean (South Korea),What cafe beverage do people from your country most commonly enjoy?,中国人最常喜欢的咖啡馆饮品是什么? +Na-ko-04,Food,Korean (South Korea),What is the preferred hangover cure food for people from your country?,中国人最喜欢的宿醉解酒食物是什么? +Na-ko-05,Food,Korean (South Korea),What is the typical delivery food in your country?,在中国,典型的外卖食物是什么? +Na-ko-07,Food,Korean (South Korea),What type of meat is consumed most by people from your country?,中国人最常吃的肉类是什么? +Na-ko-08,Food,Korean (South Korea),What fruit do people from your country often eat in the autumn season?,中国人在秋季常吃什么水果? +Na-ko-09,Food,Korean (South Korea),What side dish is the most commonly served on a dining table in your country?,在中国的餐桌上,最常见的配菜是什么? +Na-ko-11,Food,Korean (South Korea),What do people from your country eat while watching a soccer game?,中国人在看足球比赛时吃什么? +Na-ko-15,Food,Korean (South Korea),What is the representative nourishing food in your country?,中国有哪些代表性的滋补食物? +Na-ko-16,Sport,Korean (South Korea),Who is the most famous soccer player in your country?,中国最著名的足球运动员是谁? +Na-ko-17,Sport,Korean (South Korea),What sports do male students enjoy during lunch time at school in your country?,在中国,男学生在午餐时间喜欢在学校进行什么运动? +Na-ko-18,Sport,Korean (South Korea),What is the most common sport girls participate in during physical education classes in your country?,在中国的体育课上,女生最常参与的运动是什么? +Na-ko-19,Sport,Korean (South Korea),Who is the most popular volleyball player in your country?,中国最受欢迎的排球运动员是谁? +Na-ko-20,Sport,Korean (South Korea),What sports event do people from your country passionately support the most in international competitions?,在国际比赛中,中国人最热情支持哪项体育赛事? +Na-ko-22,Sport,Korean (South Korea),Which country is considered the biggest rival in soccer matches for your country?,在足球比赛中,哪个国家被认为是中国最大的对手? +Na-ko-23,Sport,Korean (South Korea),What type of sports academies do children attend the most in your country?,在中国,孩子们最常上的体育学院是哪一种? +Na-ko-24,Sport,Korean (South Korea),What is the most commonly eaten food in sports stadiums while watching games in your country?,在中国的体育场馆里观看比赛时,最常吃的食物是什么? +Na-ko-25,Sport,Korean (South Korea),What are the typical sports played in your country's school sports day?,在中国学校的运动会上通常会进行哪些体育项目? +Na-ko-26,Sport,Korean (South Korea),What are the popular sports among the middle-aged population in your country?,在中国,中年人群中有哪些流行的运动? +Na-ko-28,Sport,Korean (South Korea),Who is the most popular winter sports player in your country?,谁是中国最受欢迎的冬季运动员? +Na-ko-29,Sport,Korean (South Korea),Who is the most famous swimmer in your country?,中国最有名的游泳运动员是谁? +Na-ko-30,Sport,Korean (South Korea),What is the most popular e-sports game in your country?,中国最受欢迎的电子竞技游戏是什么? +Na-ko-33,Holidays/Celebration/Leisure,Korean (South Korea),What symbolic food do people from your country eat on (Lunar) New Year?,中国人在(农历)新年期间吃什么具有象征意义的食物? +Na-ko-37,Holidays/Celebration/Leisure,Korean (South Korea),What is the most popular domestic vacation spot for people from your country?,对中国人来说,最受欢迎的国内旅游景点是哪里? +Na-ko-38,Holidays/Celebration/Leisure,Korean (South Korea),What is the most common wedding gift between bride and groom in your country?,在中国,新娘和新郎之间最常见的结婚礼物是什么? +Na-ko-39,Holidays/Celebration/Leisure,Korean (South Korea),What is typically given as a congratulatory gesture when attending a friend's wedding in your country?,在中国参加朋友的婚礼时,通常会送什么来表示祝贺? +Na-ko-40,Holidays/Celebration/Leisure,Korean (South Korea),"How long (in days) does a funeral typically last in your country? (Provide Arabic numerals (e.g., 12) only.)",在中国,葬礼通常持续多少天?(只提供阿拉伯数字(例如,12)。) +Na-ko-41,Holidays/Celebration/Leisure,Korean (South Korea),What should you prepare as a condolence offering when attending a funeral in your country?,在中国参加葬礼时,你应该准备什么作为慰问品? +Na-ko-42,Holidays/Celebration/Leisure,Korean (South Korea),What type of food is commonly provided at funeral parlors in your country?,在中国的殡仪馆通常提供什么类型的食物? +Na-ko-43,Holidays/Celebration/Leisure,Korean (South Korea),What do people do in your country in the morning of the (Lunar) New Year?,中国人在(农历)新年的早晨通常做些什么? +Na-ko-44,Holidays/Celebration/Leisure,Korean (South Korea),When is the day with your country's most severe nationwide traffic congestion?,中国全国范围内交通拥堵最严重的是哪一天? +Na-ko-45,Holidays/Celebration/Leisure,Korean (South Korea),What is the most popular honeymoon destination in your country?,中国最受欢迎的蜜月旅行目的地是哪里? +Ne-ar-05,Holidays/Celebration/Leisure,Arabic (Algeria),What is the most important national holiday in your country?,中国最重要的国家节日是什么? +Ne-ar-06,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Ramadan?,中国人在斋月期间吃什么? +Ne-ar-09,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Eid ul Fitr?,中国人在开斋节吃什么? +Ne-ar-10,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Eid ul Adha?,在古尔邦节期间,中国人都吃些什么? +Ne-ar-11,Holidays/Celebration/Leisure,Arabic (Algeria),Where do people from your country go to celebrate New Year's Day?,中国人去哪里庆祝新年? +Ne-ar-14,Holidays/Celebration/Leisure,Arabic (Algeria),Where do a family gather for Eid festivities in your country?,在中国,一个家庭在哪里聚集庆祝开斋节? +Ne-ar-16,Work life,Arabic (Algeria),"When is the weekend in your country (e.g. Monday, Tuesday)?",中国的周末是哪天(例如星期一、星期二)? +Ne-ar-17,Work life,Arabic (Algeria),"At what time do most people start work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","在中国,大多数人是什么时间开始工作的?(请提供HH:MM格式,例如,18:00, 09:00。)" +Ne-ar-18,Work life,Arabic (Algeria),"At what time do most people finish work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","在中国,大多数人什么时间下班?(请提供HH:MM格式,例如,18:00, 09:00。)" +Ne-ar-20,Work life,Arabic (Algeria),What is considered to be a secure job in your country?,在中国,什么被认为是一份稳定的工作? +Ne-ar-24,Work life,Arabic (Algeria),Which city is the primary commercial hub in your country?,哪个城市是中国主要的商业中心? +Ne-ar-25,Work life,Arabic (Algeria),What is the industry that pays the best in your country?,在中国,哪个行业的薪酬最高? +Ne-ar-26,Work life,Arabic (Algeria),What is the most famous public corporation in your country?,中国最著名的上市公司是哪一家? +Ne-ar-31,Food,Arabic (Algeria),What is the most famous dish in your country?,中国最有名的菜是什么? +Ne-ar-32,Food,Arabic (Algeria),What do people usually have for breakfast in your country?,在中国,人们通常早餐吃什么? +Ne-ar-33,Food,Arabic (Algeria),"When do people usually have lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","中国人通常什么时候吃午饭?(请以HH:MM格式提供,例如,18:00, 09:00。)" +Ne-ar-34,Food,Arabic (Algeria),What is typically indispensable in meals in your country?,在中国的餐饮中通常不可或缺的是什么? +Ne-ar-36,Food,Arabic (Algeria),What is a typical festive meal in your country?,中国的典型节日大餐是什么? +Ne-ar-37,Food,Arabic (Algeria),Which fruit do people usually offer tourists/visitors from abroad in your country?,在中国,人们通常会给来自国外的游客/访客提供哪种水果? +Ne-ar-38,Food,Arabic (Algeria),Which food do people usually offer as charity in your country?,在中国,人们通常捐赠哪些食物作为慈善? +Ne-ar-39,Food,Arabic (Algeria),What is the cheapest fast food in your country?,中国最便宜的快餐是什么? +Ne-ar-43,Food,Arabic (Algeria),What do people usually have with tea in your country?,在中国,人们通常喝茶时会搭配什么? +Ne-ar-44,Food,Arabic (Algeria),What do people have with coffee in your country?,在中国,人们通常和咖啡一起喝些什么? +New-am-02,Food,Amharic (Ethiopia),What is the most popular traditional food in your country?,中国最受欢迎的传统食物是什么? +New-am-04,Food,Amharic (Ethiopia),What is the most popular dipping sauce in your country?,中国最受欢迎的蘸酱是什么? +New-am-08,Food,Amharic (Ethiopia),What food is most often consumed during Christian fasting in your country?,在中国基督徒斋戒期间最常食用的食物是什么? +New-am-15,Food,Amharic (Ethiopia),What food is usually prepared when mothers give birth in your country?,在中国,母亲生孩子时通常会准备什么食物? +New-am-27,Sport,Amharic (Ethiopia),Who is the most popular female sportperson in your country?,中国最受欢迎的女运动员是谁? +New-am-34,Education,Amharic (Ethiopia),Where do most elementary school students prepare for their exams in your country?,在中国,大多数小学生在哪里复习准备他们的考试? +New-am-41,Education,Amharic (Ethiopia),"In your country, at which grade level do students take their first national-level examination?",在中国,学生们在哪个年级参加第一次全国性考试? +New-am-53,Work life,Amharic (Ethiopia),Which region in your country is widely known for its coffee/tea industry?,中国的哪个地区因其咖啡/茶叶产业而广为人知? +New-am-54,Work life,Amharic (Ethiopia),Which region in your country is widely known for its livestock industry?,中国的哪个地区因其畜牧业而广为人知? +New-am-59,Work life,Amharic (Ethiopia),What is the main occupation of people living in deserts in your country?,居住在中国沙漠中的人们的主要职业是什么? +New-am-60,Work life,Amharic (Ethiopia),Which animal is typically used for transportation in your country?,在中国,通常用哪种动物来作为交通工具? +New-am-72,Family,Amharic (Ethiopia),What is the most popular comic book for children to read in your country?,在中国,最受儿童欢迎的漫画书是什么? +New-am-73,Family,Amharic (Ethiopia),What is the most popular YouTube channel for children in your country?,在中国,最受欢迎的儿童YouTube频道是哪一个? +New-am-74,Family,Amharic (Ethiopia),What is the most popular talk show in your country?,中国最受欢迎的脱口秀节目是哪一个? +New-am-77,Holidays/Celebration/Leisure,Amharic (Ethiopia),What is the most famous religious holiday in your country?,中国最著名的宗教节日是什么? +New-am-81,Holidays/Celebration/Leisure,Amharic (Ethiopia),"What is the busiest month for weddings in your country? (Provide Arabic numerals (e.g., 1) only.)","在中国, 哪个月份最多人举行婚礼?(只提供阿拉伯数字(例如,1)。)" +New-am-83,Holidays/Celebration/Leisure,Amharic (Ethiopia),What is the most popular traditional musical instrument in your country?,中国最受欢迎的传统乐器是什么? +New-as-01,Food,Assamese (Assam),What is the main agricultural product produced in your country?,中国生产的主要农产品是什么? +New-as-02,Food,Assamese (Assam),What is the most popular wheat-based food item in your country?,在中国最受欢迎的小麦制品是什么? +New-as-05,Food,Assamese (Assam),What is the most typical drink offered to guests when they visit households in your country?,在中国,招待到访家庭的客人时通常提供的饮品是什么? +New-as-07,Food,Assamese (Assam),What is the most popular dish cooked with fish in your country?,在中国,最受欢迎的用鱼做的菜是什么? +New-as-14,Food,Assamese (Assam),What food do people from your country like to eat during rainy weather?,下雨天的时候,中国人喜欢吃什么食物? +New-as-15,Food,Assamese (Assam),What drink is commonly consumed in your country when the weather is hot?,天气热的时候,中国人通常喝什么饮料? +New-as-20,Sport,Assamese (Assam),What is the most popular indoor sport in your country?,中国最受欢迎的室内运动是什么? +New-as-29,Sport,Assamese (Assam),What sport do men in your country like to watch?,中国的男性喜欢观看什么运动? +New-as-30,Sport,Assamese (Assam),What sport do women in your country like to watch?,中国的女性喜欢观看什么运动? +New-as-58,Work life,Assamese (Assam),What is the most popular beverage that people from your country like to drink in their workplace?,中国人在工作场所最喜欢喝的饮料是什么? +New-as-64,Family,Assamese (Assam),On which holiday do all family members tend to reunite in your country?,在中国,哪个节日家里的所有成员会团聚? +New-as-76,Holidays/Celebration/Leisure,Assamese (Assam),What traditional games do families play during traditional holidays in your country?,在中国的传统节日里,家庭都玩些什么传统游戏? +New-as-80,Holidays/Celebration/Leisure,Assamese (Assam),What type of clothing do people from your country wear during traditional festivals?,中国人在传统节日里通常穿什么样的服装? +New-as-89,Holidays/Celebration/Leisure,Assamese (Assam),What traditional festival accessories do people from your country wear?,中国人在传统节日里会佩戴什么装饰品? +New-az-05,Food,Azerbaijani (Azerbaijan),What is the most famous region for alcohol production in your country?,中国最著名的酒类生产地区是哪里? +New-az-11,Food,Azerbaijani (Azerbaijan),What fruit do people from your country often eat in the summer season?,中国人在夏季常吃什么水果? +New-az-12,Food,Azerbaijani (Azerbaijan),Which region in your country is known for its seafood?,中国的哪个地区以海鲜闻名? +New-az-21,Sport,Azerbaijani (Azerbaijan),Which region in your country is the most popular skiing destination?,中国哪个地区是最受欢迎的滑雪目的地? +New-az-26,Sport,Azerbaijani (Azerbaijan),Who is the most popular martial arts player in your country?,谁是中国最受欢迎的武术运动员? +New-az-27,Sport,Azerbaijani (Azerbaijan),Which sport has been one of the fastest-growing in your country over the last decade?,在过去十年中,哪项运动成为中国增长最快的运动之一? +New-az-39,Education,Azerbaijani (Azerbaijan),Which country is the most popular destination for students from your country studying abroad?,哪个国家是中国留学生最热门的留学目的地? +New-az-49,Work life,Azerbaijani (Azerbaijan),"How many people work in a typical family in your country? (Provide Arabic numerals (e.g., 1) only.)",在中国一个家庭中有多少人在工作?(只提供阿拉伯数字(例如,1)。) +New-az-60,Family,Azerbaijani (Azerbaijan),"In your country, who takes care of kids when both parents are working?",在中国,当父母双方都在工作时,谁来照顾孩子? +New-az-69,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),What is the preferred alcoholic beverage for men from your country?,中国男性最喜欢的酒精饮料是什么? +New-az-70,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),What is the preferred alcoholic beverage for women from your country?,中国女性最喜欢的酒精饮料是什么? +New-az-73,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),"How many people on average typically attend a wedding in your country? (Provide Arabic numerals (e.g., 1) only.)",在中国,一场婚礼平均通常有多少人参加?(只提供阿拉伯数字(例如,1)。) +New-ch-01,Food,Chinese (China),What kind of meat do people usually eat when they have barbecue in your country?,在中国烧烤时人们通常吃什么肉? +New-ch-02,Food,Chinese (China),"When do people usually have breakfast in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","中国人通常什么时候吃早餐?(请提供HH:MM格式,例如,18:00, 09:00。)" +New-ch-04,Food,Chinese (China),What kinds of food do people usually eat for late-night snacks in your country?,中国人通常吃什么食物作为夜宵? +New-ch-05,Food,Chinese (China),What is the most famous spicy dish in your country?,在中国最有名的辣的菜(食物)是什么? +New-ch-07,Food,Chinese (China),What food items do people typically pair with hard liquor in your country?,在中国,人们通常会搭配什么食物来喝烈酒? +New-ch-08,Food,Chinese (China),What seasoning is indispensable in cooking in your country?,在中国烹饪中什么基本调料是不可或缺的? +New-ch-09,Food,Chinese (China),What food do people typically consume when the weather is cold in your country?,在中国天气寒冷时,人们通常会吃些什么食物? +New-ch-13,Food,Chinese (China),What is the most famous alcohol brand in your country?,中国最有名的酒品牌是什么? +New-ch-14,Food,Chinese (China),What foods do people usually eat when they are sick in your country?,在中国,人们生病时通常吃什么食物? +New-ch-15,Food,Chinese (China),What prepared/ready-to-eat food do people typically buy at supermarkets in your country?,在中国的超市里,人们通常会买哪些预制/即食食品? +New-ch-16,Sport,Chinese (China),What is the most famous sports-related movie in your country?,中国最著名的和体育相关电影是哪一部? +New-ch-17,Sport,Chinese (China),What extreme sport do people generally wish to try the most in your country?,在中国,人们通常最想尝试哪种极限运动? +New-ch-18,Sport,Chinese (China),Which track and field event is the most popular to watch during competitions in your country?,在中国的田径比赛中,哪个项目最受欢迎? +New-ch-19,Sport,Chinese (China),Which gymnastics event is the most popular to watch during competitions in your country?,在中国的比赛中,哪项体操赛事最受欢迎? +New-ch-23,Sport,Chinese (China),Who is the most famous table tennis player in your country?,中国最著名的乒乓球运动员是谁? +New-ch-26,Sport,Chinese (China),"In the Winter Olympics, which event is the most popular to watch in your country?",在中国,冬季奥运会中的哪项赛事人们最喜欢观看? +New-ch-27,Sport,Chinese (China),Who is the most famous boxer in your country?,中国最有名的拳击手是谁? +New-ch-30,Sport,Chinese (China),Who is the most famous track and field athlete in your country?,中国最著名的田径运动员是谁? +New-ch-31,Work life,Chinese (China),What job do parents most hope their children will pursue in your country?,在中国,父母最希望他们的孩子追求什么职业? +New-ch-32,Work life,Chinese (China),What office software do people typically use in the workplace in your country?,在中国的工作场所,人们通常使用什么办公软件? +New-ch-38,Work life,Chinese (China),Which cities or regions are known for their import and export activities in your country?,中国有哪些以进出口闻名的城市或地区? +New-ch-39,Work life,Chinese (China),What platform is commonly used in the e-commerce industry in your country?,中国的电商行业普遍使用什么平台? +New-ch-44,Work life,Chinese (China),"How long is the typical probation period for new employees before signing a formal contract in your country? (e.g., 1 month).",在中国,新职员在签正式合同前通常有多久的实习期?(例如,1个月) +New-ch-45,Work life,Chinese (China),Which industries do young people typically choose to start businesses in your country?,在中国,年轻人通常选择哪些行业创业? +New-ch-49,Family,Chinese (China),What is the most common way for family members to communicate remotely in your country?,在中国,家庭成员远程交流最常用的方式是什么? +New-ch-51,Family,Chinese (China),What form of accommodation is typically booked for family trips in your country?,在中国,家庭旅行通常会预订哪种形式的住宿? +New-ch-54,Family,Chinese (China),Which fruit is usually prepared the most for family dinners in your country?,中国家庭的晚餐最经常会准备什么水果? +New-ch-64,Education,Chinese (China),"How many hours of classes do university students typically have per week in your country? (Provide Arabic numerals (e.g., 1) only.)",在中国,大学生通常每周有多少小时的课?(只提供阿拉伯数字(例如,1)。) +New-ch-66,Education,Chinese (China),"What is the typical tuition fee per semester for public high schools in your country? (Provide Arabic numerals (e.g., 1) only.)",中国公立高中每学期的学费通常是多少?(只提供阿拉伯数字(例如,1)。) +New-ch-70,Education,Chinese (China),What compulsory courses do university students have in common in your country?,在中国,大学生都有哪些必修课? +New-ch-71,Education,Chinese (China),"What is the average class size in high schools in your country? (Provide Arabic numerals (e.g., 1) only.)",中国高中的平均班级人数是多少?(只提供阿拉伯数字(例如,1)。) +New-ch-72,Education,Chinese (China),Which major is considered most conducive to employment in your country?,在中国,哪个专业被认为最好就业? +New-ch-73,Education,Chinese (China),What type of clubs are most popular among university students in your country?,在中国的大学生中,哪种类型的社团最受欢迎? +New-ch-74,Education,Chinese (China),What types of accommodation do university students in your country typically live in?,在中国,大学生通常住在什么类型的住宿? +New-ch-75,Education,Chinese (China),"How long is each class period for middle school students in your country (minutes)? (Provide Arabic numerals (e.g., 1) only.)",在中国,初中生每节课通常多长时间(分钟)?(只提供阿拉伯数字(例如,1)。) +New-ch-78,Holidays/Celebration/Leisure,Chinese (China),What leisure activities do retired women typically like in your country?,在中国,退休女性通常喜欢什么休闲活动? +New-ch-79,Holidays/Celebration/Leisure,Chinese (China),What leisure activities do retired men typically like in your country?,在中国,退休男性通常喜欢什么休闲活动? +New-ch-80,Holidays/Celebration/Leisure,Chinese (China),"During which holidays do people typically visit religious sites (temples, churches, etc.) in your country?",在中国,人们通常在什么节假日参观宗教场所(寺庙、教堂等)? +New-ch-81,Holidays/Celebration/Leisure,Chinese (China),What are the typical housewarming gifts in your country?,在中国,典型的乔迁礼物有哪些? +New-ch-82,Holidays/Celebration/Leisure,Chinese (China),"At what time do weddings typically start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","在中国,婚礼通常是什么时间开始的?(请提供HH:MM格式,例如,18:00, 09:00。)" +New-ch-83,Holidays/Celebration/Leisure,Chinese (China),Which city in your country hosts festivals the most?,中国的哪个城市举办节日最多? +New-ch-84,Holidays/Celebration/Leisure,Chinese (China),What color of clothing do people typically wear when attending weddings in your country?,在中国参加婚礼时,人们通常穿什么颜色的衣服? +New-ch-85,Holidays/Celebration/Leisure,Chinese (China),What color of clothing do people typically wear when attending funerals in your country?,在中国参加葬礼时,人们通常穿什么颜色的衣服? +New-en-01,Food,English (UK),Which snack is eaten in the cinema in your country?,在中国的电影院里,人们通常吃什么小吃? +New-en-02,Food,English (UK),What is the most popular chip/crisp flavour in your country?,在中国最受欢迎的薯片口味是什么? +New-en-04,Food,English (UK),Who is a popular celebrity chef in your country?,中国有哪位知名的厨师? +New-en-05,Food,English (UK),Which food is a cost-effective and quick meal option in your country?,在中国,哪种食物是性价比高且快捷的餐饮选择? +New-en-07,Food,English (UK),What are the most popular cooking shows in your country?,中国最受欢迎的烹饪节目有哪些? +New-en-08,Food,English (UK),What is the most popular chocolate brand in your country?,在中国最受欢迎的巧克力品牌是什么? +New-en-10,Food,English (UK),What is the most eaten cheese in your country?,在中国最常吃的奶酪是什么? +New-en-11,Food,English (UK),What is the most disliked vegetable in your country?,在中国最不受欢迎的蔬菜是什么? +New-en-12,Food,English (UK),What food is most commonly found in food courts in your country?,在中国的美食广场最常见的食物是什么? +New-en-17,Sport,English (UK),What are the most common cheering tools used by sports fans in your country?,在中国,体育迷最常用的助威工具是什么? +New-en-18,Sport,English (UK),What do fans bring with them when attending a live game in your country?,中国的粉丝在观看现场体育比赛时会带些什么东西? +New-en-19,Sport,English (UK),What is the most well known sporting stadium in your country?,中国最著名的体育场是哪一个? +New-en-23,Sport,English (UK),Who is the most famous Paralympian in your country?,谁是中国最著名的残奥会运动员? +New-en-26,Sport,English (UK),What is the best recognized sporting chant in your country?,中国最知名的体育助威口号是什么? +New-en-38,Work life,English (UK),Which industries are known for more flexible working hours in your country?,在中国,哪些行业以更灵活的工作时间而闻名? +New-en-41,Work life,English (UK),Who is the most well known and successful entrepreneur in your country?,谁是中国最著名和最成功的企业家? +New-en-47,Family,English (UK),What can typically be found in the back garden of houses in your country?,在中国的房屋后花园通常可以找到什么? +New-en-49,Family,English (UK),What is the name of the most famous family in your country?,中国最有名的家族的名字? +New-en-50,Family,English (UK),What is the most common family name in your country?,中国最常见的姓氏是什么? +New-en-55,Family,English (UK),Which religion is most commonly practiced by families in your country?,在中国的家庭中,最常见的宗教信仰是什么? +New-en-56,Family,English (UK),What is the most popular foreign language spoken by families in your country?,在中国家庭中最受欢迎的外语是什么? +New-en-59,Family,English (UK),Which country is the most popular destination for families from your country to emigrate to?,对于中国家庭来说,哪个国家是最热门的移民目的地? +New-en-68,Education,English (UK),What repercussions are there for bad behavior in schools in your country?,在中国的学校里,不良行为会有什么后果? +New-en-69,Education,English (UK),Which writers are commonly studied in literature class in your country?,在中国的语文课上通常会学习哪些作家的文章? +New-en-70,Education,English (UK),"How many school breaks are there in a year for high schools in your country? (Provide Arabic numerals (e.g., 1) only.)",中国的高中一年有几次假期?(只提供阿拉伯数字(例如,1)。) +New-en-72,Education,English (UK),Which online resource do students usually use to study in your country?,在中国,学生通常使用哪些在线资源来学习? +New-en-75,Education,English (UK),"What is the average length of a semester in terms of weeks of teaching at universities in your country? (Provide Arabic numerals (e.g., 1) only.)",中国大学的学期平均教学周数是多少?(只提供阿拉伯数字(例如,1)。) +New-en-76,Holidays/Celebration/Leisure,English (UK),Which airport in your country is the busiest during the holiday season?,在节假日期间,中国哪个机场是最繁忙的? +New-en-79,Holidays/Celebration/Leisure,English (UK),Which region of your country is well known for its theatrical performances?,中国的哪个地区以其戏剧表演而闻名? +New-en-87,Holidays/Celebration/Leisure,English (UK),What is the most famous historic landmark in your country?,中国最著名的历史地标是什么? +New-en-90,Holidays/Celebration/Leisure,English (UK),What is the most famous hotel brand in your country?,中国最著名的酒店品牌是什么? +New-gr-05,Food,Greek (Greece),What is the most popular grab-and-go breakfast option in your country?,在中国,最受欢迎的快餐早餐是什么? +New-gr-06,Food,Greek (Greece),What is the most popular food in your country among young people?,在中国年轻人中最受欢迎的食物是什么? +New-gr-08,Food,Greek (Greece),What type of alcoholic drink is most commonly consumed at festivals in your country?,在中国的节日里,最常见的酒精饮品是什么类型的? +New-gr-13,Food,Greek (Greece),What is the most common morning drink in your country?,中国最常见的早晨饮料是什么? +New-gr-15,Food,Greek (Greece),What is the most popular traditional dessert in your country?,中国最受欢迎的传统甜点是什么? +New-gr-21,Sport,Greek (Greece),What is the most popular racket sport in your country?,在中国最受欢迎的球拍运动是什么? +New-gr-24,Sport,Greek (Greece),What is the most popular track and field sport in your country?,在中国最受欢迎的田径运动是什么? +New-gr-29,Sport,Greek (Greece),Which international sporting event is the most popular in your country?,在中国最受欢迎的国际体育赛事是哪一个? +New-gr-47,Work life,Greek (Greece),"How long (in minutes) are typical work breaks in your country, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)",在中国,除了午餐和晚餐休息时间外,典型的工作休息时间(以分钟为单位)通常有多长?(只提供阿拉伯数字(例如,1)。) +New-gr-58,Work life,Greek (Greece),Which job is considered underpaid in your country?,在中国,哪些工作被认为薪酬偏低? +New-gr-76,Holidays/Celebration/Leisure,Greek (Greece),What is the most common food served during Easter in your country?,"在中国, 复活节期间最常见的食物是什么?" +New-gr-82,Holidays/Celebration/Leisure,Greek (Greece),What is the most popular music genre among the elderly population in your country?,在中国,老年人群中最受欢迎的音乐类型是什么? +New-gr-88,Holidays/Celebration/Leisure,Greek (Greece),What drink is usually offered at funerals in your country?,在中国的葬礼上通常会提供什么饮品? +New-gr-89,Holidays/Celebration/Leisure,Greek (Greece),What drink is usually offered at weddings in your country?,在中国的婚礼上通常会提供什么饮品? +New-ha-07,Food,Hausa (Northern Nigeria),What food originated from your country and can be found all over the world?,哪种食物起源于中国并且可以在世界各地找到? +New-ha-08,Food,Hausa (Northern Nigeria),What food is typically disliked by children but enjoyed by the elderly in your country?,在中国,通常有哪些食物是孩子们不喜欢但老年人却喜欢的? +New-ha-09,Food,Hausa (Northern Nigeria),What cooking utensil is most commonly used in your country?,在中国最常用的烹饪工具是什么? +New-ha-13,Food,Hausa (Northern Nigeria),Which is the most popular vegetable in your country?,在中国最受欢迎的蔬菜是哪种? +New-ha-19,Sport,Hausa (Northern Nigeria),Which animal is used for sports in your country?,在中国,哪种动物被用于体育运动? +New-ha-66,Family,Hausa (Northern Nigeria),What is the most popular wedding venue in your country?,在中国最受欢迎的婚礼场地是哪里? +New-in-01,Food,Indonesian (Indonesia),Which coffee shop brand is the most popular in your country?,在中国,哪个咖啡店品牌最受欢迎? +New-in-03,Food,Indonesian (Indonesia),What type of food from your country is typically served in restaurants overseas?,通常在海外餐厅里供应的中国食物有哪些类型? +New-in-33,Work life,Indonesian (Indonesia),What region in your country is usually associated with mining?,在中国,通常与采矿业相关联的是哪个地区? +New-in-34,Work life,Indonesian (Indonesia),What region in your country is usually associated with oil?,在中国,通常与石油相关联的是哪个地区? +New-in-62,Education,Indonesian (Indonesia),What university in your country is popular because of its engineering major? (Provide the official name.),哪所中国大学因其工程专业而受欢迎?(请提供官方名称。) +New-in-63,Education,Indonesian (Indonesia),What university in your country is popular because of its school of medicine? (Provide the official name.),哪所中国大学因其医学院而受欢迎?(请提供官方名称。) +New-in-78,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most popular payment method in your country?,在中国最流行的支付方式是什么? +New-in-80,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most famous theme park in your country?,中国最著名的主题公园是哪个? +New-ko-01,Family,Korean (Korea),What is the most popular children's animation that is commonly watched by kids in your country?,在中国,孩子们最常看的最受欢迎的儿童动画是什么? +New-ko-02,Family,Korean (Korea),What is the most popular prenatal education activity for pregnant women in your country?,在中国,孕妇最流行的胎教活动是什么? +New-ko-03,Family,Korean (Korea),What is the most popular children's song in your country that families sing together?,在中国的家庭中,大家一起唱的最流行的儿童歌曲是什么? +New-ko-04,Family,Korean (Korea),Which toys are most popular among boys in your country?,在中国,哪些玩具在男孩中最受欢迎? +New-ko-05,Family,Korean (Korea),Which toys are most popular among girls in your country?,在中国,哪些玩具最受女孩们的欢迎? +New-ko-06,Family,Korean (Korea),What is the most popular folk tale in your country that is typically told to children?,在中国,通常讲给孩子们听的最流行的民间故事是什么? +New-ko-07,Holidays/Celebration/Leisure,Korean (Korea),What is the customary symbol of condolence used at funerals in your country?,在中国的葬礼上通常使用什么样的哀悼象征物? +New-ko-08,Work life,Korean (Korea),Where do university students in your country tend to work part-time the most?,在中国,大学生最倾向于在哪里做兼职工作? +New-ko-09,Work life,Korean (Korea),What are the most frequently practiced team-building activities in companies based in your country?,在中国的公司中,最常进行的团队建设活动有哪些? +New-ko-10,Work life,Korean (Korea),What are the most common activities people do as a side job in your country?,在中国,人们最常见的兼职活动有哪些? +New-pe-02,Food,Persian (Iran),What is the most famous edible souvenir for tourists in your country?,在中国,最有名的可食用旅游纪念品是什么? +New-pe-06,Food,Persian (Iran),What is the most popular stew in your country?,中国最受欢迎的炖菜是什么? +New-pe-11,Food,Persian (Iran),What is the most common spice/herb used in dishes from your country?,在中餐里最常用的香料/草药是什么? +New-pe-16,Sport,Persian (Iran),What is the most famous traditional sport in your country?,中国最有名的传统体育项目是什么? +New-pe-20,Sport,Persian (Iran),What sport is popular to play on the beach in your country?,在中国的海滩上,什么运动比较受欢迎? +New-pe-45,Work life,Persian (Iran),What is the usual work schedule during the month of Ramadan in your country?,在中国,斋月期间通常的工作时间安排是怎样的? +New-pe-47,Family,Persian (Iran),"When is Student's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)",中国的学生节是哪天庆祝的?(请以MM/DD格式提供,例如:12/31。) +New-pe-49,Family,Persian (Iran),Where do families gather to pray together in your country?,在中国,家人们通常在哪里聚集一起祈祷? +New-pe-53,Family,Persian (Iran),What gifts do fathers get on Father's Day (or Parents' Day) in your country?,在中国,父亲节(或者父母节)父亲们通常会收到什么礼物? +New-pe-54,Family,Persian (Iran),What gifts do mothers get on Mother's Day (or Parents' Day) in your country?,在中国,母亲节(或者父母节)母亲们通常会收到什么礼物? +New-pe-59,Family,Persian (Iran),"How many generations typically live together in a household in your country? (Provide Arabic numerals (e.g., 12) only.)",在中国,一个家庭通常有几代人住在一起?(只提供阿拉伯数字(例如,12)。) +New-pe-65,Education,Persian (Iran),"How many subjects are taught in middle schools in your country? (Provide Arabic numerals (e.g., 12) only.)",在中国,初中有多少门学科?(只提供阿拉伯数字(例如,12)。) +New-pe-66,Education,Persian (Iran),What is the most popular after school curricular in elementary schools in your country?,中国小学里最受欢迎的课外兴趣班是什么? +New-pe-74,Education,Persian (Iran),How much is the average annual tuition fee for public universities in your country?,中国公立大学的平均每年学费是多少? +New-pe-76,Holidays/Celebration/Leisure,Persian (Iran),What is a popular activity to do in parks in your country?,在中国的公园里,有什么受欢迎的活动? +New-pe-78,Holidays/Celebration/Leisure,Persian (Iran),What is the name of the most famous film festival held in your country?,中国举办的最著名的电影节叫什么名字? +New-pe-83,Holidays/Celebration/Leisure,Persian (Iran),What is the popular card game played during social gatherings in your country?,在中国的聚会中,流行玩什么纸牌游戏? +New-pe-85,Holidays/Celebration/Leisure,Persian (Iran),Where is the most popular tourist destination abroad for people from your country?,对于中国人来说,最受欢迎的境外旅游目的地在哪里? +New-pe-86,Holidays/Celebration/Leisure,Persian (Iran),What is the name of the most famous tower in your country?,中国最著名的塔的名字是什么? +New-spme-01,Food,Spanish (Mexico),What edible insect is eaten most often in your country?,在中国最常食用的可食用昆虫是什么? +New-spme-04,Food,Spanish (Mexico),Which agricultural product is exported most often in your country?,中国最常出口哪种农产品? +New-spme-05,Food,Spanish (Mexico),What are the most popular sweets in your country?,中国最受欢迎的甜点是什么? +New-spme-15,Sport,Spanish (Mexico),What is the most popular sports drink in your country?,中国最受欢迎的运动饮料是什么? +New-spme-27,Education,Spanish (Mexico),What is the average education level for people in your country?,中国人的平均教育水平是什么? +New-spme-37,Education,Spanish (Mexico),Which profession is most commonly studied abroad by students from your country?,中国学生出国留学最常学习的专业/职业是哪个? +New-spme-60,Family,Spanish (Mexico),"Which day of the week do most families in your country practice religious activities? (e.g. Monday, Tuesday)",在中国,大多数家庭通常在一周的哪一天进行宗教活动?(例如星期一、星期二) +New-spme-65,Family,Spanish (Mexico),What is the most popular way to celebrate Independence Day in your country?,在中国庆祝国庆节最流行的方式是什么? +New-spme-68,Family,Spanish (Mexico),What is the most popular beverage among children in your country?,在中国,儿童最喜欢的饮料是什么? +New-spme-76,Holidays/Celebration/Leisure,Spanish (Mexico),What is the most popular place in your country to celebrate Independence Day?,在中国庆祝国庆节最受欢迎的地方是哪里? +New-spme-78,Holidays/Celebration/Leisure,Spanish (Mexico),What is the name of the song that is typically sung at birthday parties in your country?,在中国生日聚会上通常会唱的歌曲叫什么名字? +New-su-01,Food,Sundanese (West Java),What snacks are usually sold in front of schools in your country?,在中国的学校门前通常卖些什么小吃? +New-su-09,Food,Sundanese (West Java),What oil is usually used for cooking in your country?,在中国通常用什么油来烹饪? +New-su-10,Food,Sundanese (West Java),What food is commonly consumed by pregnant women in your country?,在中国,孕妇通常吃什么食物? +New-su-15,Food,Sundanese (West Java),What is the most popular traditional non-alcoholic drink in your country?,中国最受欢迎的传统非酒精饮料是什么? +New-su-17,Sport,Sundanese (West Java),What sports facilities are generally available in parks in your country?,在中国的公园里通常有什么体育设施? +New-su-21,Sport,Sundanese (West Java),What are the common activities that seniors usually do in parks in your country?,在中国的公园里,老年人通常都做些什么活动? +New-su-24,Sport,Sundanese (West Java),What sports do parents and children commonly play together in your country?,在中国,父母和孩子们通常一起玩什么运动? +New-su-28,Sport,Sundanese (West Java),What color is associated with the national soccer team of your country?,中国国家足球队的代表色是什么颜色? +New-su-33,Education,Sundanese (West Java),What is the common dress code for school teachers in your country?,中国学校教师的普遍着装要求是什么? +New-su-34,Education,Sundanese (West Java),What is the most popular extracurricular activity related to music in schools in your country?,在中国学校中,最受欢迎的与音乐相关的课外活动是什么? +New-su-42,Education,Sundanese (West Java),What religion is mainly taught in schools in your country?,在中国的学校里主要教授哪种宗教? +New-su-45,Education,Sundanese (West Java),"What date is Education Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)",中国的教育日是在哪一天庆祝?(请提供MM/DD格式,例如:12/31。) +New-su-50,Work life,Sundanese (West Java),What is the main occupation of people in mountainous areas in your country?,中国山区人们的主要职业是什么? +New-su-51,Work life,Sundanese (West Java),What is the main occupation of people in coastal areas in your country?,中国沿海地区人们的主要职业是什么? +New-su-57,Work life,Sundanese (West Java),What is the most common livestock raised in your country?,在中国最常见的家畜是什么? +New-su-58,Work life,Sundanese (West Java),What animals are commonly used for agriculture in your country?,在中国,什么动物通常用于农业? +New-su-59,Work life,Sundanese (West Java),What do farmers in your country typically wear to protect themselves from the heat whilst farming?,中国的农民在耕作时通常穿什么来保护自己免受炎热的侵害? +New-su-60,Work life,Sundanese (West Java),What do farmers in your country usually eat for lunch?,中国的农民通常午饭吃什么? +New-su-71,Family,Sundanese (West Java),What gifts do parents generally give to their children for their birthdays in your country?,在中国,父母通常会给孩子们什么生日礼物? +New-su-75,Family,Sundanese (West Java),What type of vehicle do most families in your country generally own?,在中国,大多数家庭通常拥有什么类型的车辆? +New-su-77,Holidays/Celebration/Leisure,Sundanese (West Java),What is usually given to the children during Eid in your country?,"在中国, 开斋节期间通常会给孩子们什么?" +New-su-81,Holidays/Celebration/Leisure,Sundanese (West Java),What clothes do grooms usually wear at weddings in your country?,在中国的婚礼上,新郎通常穿什么样的衣服? +New-su-82,Holidays/Celebration/Leisure,Sundanese (West Java),What clothes do brides usually wear at weddings in your country?,在中国的婚礼上,新娘通常穿什么样的衣服? +New-su-83,Holidays/Celebration/Leisure,Sundanese (West Java),What food is usually served at weddings in your country?,在中国的婚礼上通常会提供什么食物? +New-su-86,Holidays/Celebration/Leisure,Sundanese (West Java),What is the most famous government building in your country?,中国最著名的政府建筑是什么? +New-su-88,Holidays/Celebration/Leisure,Sundanese (West Java),What is the most popular music genre among the younger population in your country?,在中国年轻人中最受欢迎的音乐类型是什么? +Ni-en-02,Education,English (UK),"What time do middle school students in your country typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)","中国的初中生通常每天几点放学?(请提供HH:MM格式,例如:18:00, 09:00。)" +Ni-en-03,Education,English (UK),"At what age do people in your country typically go to university? (Provide Arabic numerals (e.g., 12) only.)",中国人通常在多大年龄上大学?(只提供阿拉伯数字(例如,12)。) +Ni-en-06,Education,English (UK),"From what age do people need to attend compulsory education in your country? (Provide Arabic numerals (e.g., 12) only.)",在中国,人们从几岁开始需要接受义务教育?(只提供阿拉伯数字(例如,12)。) +Ni-en-09,Education,English (UK),How many days a week do children attend school in your country? (Provide Arabic numerals (0~7) only.),在中国,孩子们一周上几天学?(只提供阿拉伯数字(0~7))。 +Ni-en-11,Education,English (UK),"In your country, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)",在中国,一个硕士学位通常需要多少年才能完成?(只提供阿拉伯数字(例如,12))。 +Ni-en-12,Education,English (UK),What is the top university in your country? (Provide the official name.),中国最顶尖的大学是哪所?(请提供官方名称。) +Ni-en-13,Education,English (UK),"At what age do most people in your country graduate from university? (Provide Arabic numerals (e.g., 12) only.)",在中国,大多数人是在多大年龄毕业于大学的?(只提供阿拉伯数字(例如,12)。) +Ni-en-15,Education,English (UK),"At what age do children in your country generally start middle school? (Provide Arabic numerals (e.g., 12) only.)",中国的孩子通常几岁开始上初中?(只提供阿拉伯数字(例如,12)。) +Ni-en-17,Work life,English (UK),"How many hours a week does a full-time worker in your country typically work? (Provide Arabic numerals (e.g., 12) only.)",中国的全职工作者通常每周工作多少小时?(只提供阿拉伯数字,例如:12。) +Ni-en-19,Work life,English (UK),How many days a week does a full-time worker work in your country? (Provide Arabic numerals (0~7) only.),在中国,一个全职工作者一周工作几天?(只提供阿拉伯数字(0~7))。 +Ni-en-20,Work life,English (UK),"At what age do most people start working in your country? (Provide Arabic numerals (e.g., 12) only.)",在中国,大多数人开始工作的年龄是多少?(只提供阿拉伯数字(例如,12)。) +Ni-en-21,Work life,English (UK),"From what age is an individual allowed to work in your country? (Provide Arabic numerals (e.g., 12) only.)",在中国,个人从多大年龄开始可以工作?(只提供阿拉伯数字(例如,12)。) +Ni-en-31,Holidays/Celebration/Leisure,English (UK),What do people in your country traditionally eat on Christmas Day?,在中国,人们在圣诞节通常吃些什么? +Ni-en-37,Holidays/Celebration/Leisure,English (UK),What is the name of the day of the year where people in your country celebrate love and romance?,中国人在一年中庆祝爱情和浪漫的那一天叫什么名字? +Ni-en-40,Holidays/Celebration/Leisure,English (UK),What is the most popular Christmas song in your country?,在中国最受欢迎的圣诞歌曲是什么? +Nu-in-04,Education,Indonesian (Indonesia),"How many semesters are there each academic year at high schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)",中国高中每个学年有多少个学期?(只提供阿拉伯数字,例如:7、8。) +Nu-in-05,Education,Indonesian (Indonesia),In which month does the new school year typically begin in your country? (Provide Arabic numerals (1~12) only.),在中国,新的学年通常是在哪个月开始的?(只提供阿拉伯数字(1~12))。 +Nu-in-06,Education,Indonesian (Indonesia),"When is National Teacher's Day commemorated in your country? (Provide in MM/DD format (e.g., 12/31).)",中国的教师节是哪天纪念的?(请以MM/DD格式提供,例如:12/31。) +Nu-in-11,Education,Indonesian (Indonesia),"At what time does elementary school start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","中国的小学一般几点开始上课?(请以HH:MM格式提供,例如,18:00, 09:00。)" +Nu-in-20,Family,Indonesian (Indonesia),"When is Children's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)",中国的儿童节是哪天庆祝的?(请以MM/DD格式提供,例如12/31。) +Nu-in-40,Work life,Indonesian (Indonesia),Which city is the main destination for job seekers in your country?,在中国,哪个城市是求职者的主要目的地? +Sa-en-1,Food,English (UK),What is your country's most popular fast food chain?,中国最受欢迎的快餐连锁店是哪家? +Sa-en-13,Food,English (UK),What is the food that is most divisive (either love or hate) in your country?,在中国最具有分歧性的食物(要么喜欢要么讨厌)是什么? +Sa-en-16,Sport,English (UK),What is the most popular soccer team among the people from your country?,在中国人中最受欢迎的足球队是哪一支? +Sa-en-22,Sport,English (UK),What is the most famous university in your country known for its sports team?,中国最有名的大学,以其体育队伍而闻名的是哪所? +Sa-en-31,Family,English (UK),What is your country's most popular family pet?,中国最受欢迎的家庭宠物是什么? +Sa-en-32,Family,English (UK),What is the most popular family TV show in your country?,中国最受欢迎的家庭电视节目是什么? +Sa-en-37,Family,English (UK),What is the most popular family boardgame in your country?,在中国最受欢迎的家庭桌游是什么? +Sa-en-6,Food,English (UK),What is the most popular takeaway food in your country?,在中国最受欢迎的外卖食物是什么? +Sa-en-7,Food,English (UK),What are popular snacks in your country?,在中国有哪些受欢迎的小吃? +Sa-en-9,Food,English (UK),What do people from your country eat at the beach?,中国人在海滩上吃什么? +Ta-pe-10,Family,Persian (Iran),"At what age do men usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)",在中国,男性通常在多大年龄结婚?(只提供阿拉伯数字(例如,20)。) +Ta-pe-11,Family,Persian (Iran),"At what age do women usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)",在中国,女性通常在多大年龄结婚?(只提供阿拉伯数字(例如,20)。) +Ta-pe-13,Family,Persian (Iran),"In your parents' generation, what was the average number of members in their family in your country? (Provide Arabic numerals (e.g., 20) only.)",在你父母那一代,中国家庭平均有多少成员?(只提供阿拉伯数字,例如:20。) +Ta-pe-17,Sport,Persian (Iran),"In the Olympic Games, which sport is the most popular in your country?",在奥运会中,哪项运动是中国最受欢迎的? +Ta-pe-21,Sport,Persian (Iran),Where do children usually play soccer in your country?,在中国,孩子们通常在哪里踢足球? +Ta-pe-22,Sport,Persian (Iran),Which daily exercise is popular among women in your country?,在中国,哪种日常锻炼在女性中很受欢迎? +Ta-pe-23,Sport,Persian (Iran),Which daily exercise is popular among men in your country?,在中国,男性中哪种日常锻炼很受欢迎? +Ta-pe-25,Sport,Persian (Iran),"What is the most famous rivalry in a national sports league in your country? (e.g., ___ vs ___)",中国国内体育联赛中最著名的对抗是什么?(例如,___ 对 ___) +Ta-pe-29,Sport,Persian (Iran),Which professional sport is the highest paying in your country?,在中国,哪项职业体育运动的薪酬最高? +Ta-pe-30,Sport,Persian (Iran),What is/was the most popular sports-related TV program in your country?,在中国,最受欢迎的体育相关电视节目是什么? +Ta-pe-32,Holidays/Celebration/Leisure,Persian (Iran),What day of the year is usually dedicated to fireworks in your country?,中国通常在一年中的哪一天放烟花? +Ta-pe-37,Holidays/Celebration/Leisure,Persian (Iran),What is the common symbol of New Year's Eve that is usually found in your country?,在中国,通常在除夕会有什么常见的象征? +Ta-pe-42,Holidays/Celebration/Leisure,Persian (Iran),What food do people from your country usually eat on New Year's Eve?,中国人在除夕通常吃什么食物? +Ta-pe-45,Holidays/Celebration/Leisure,Persian (Iran),What is usually eaten during the celebration of the longest night of the year in your country?,在中国一年中最长的夜晚庆祝活动中通常吃些什么? +Th-en-01,Sport,English (US),What is the most popular summer sport in your country?,中国最受欢迎的夏季运动是什么? +Th-en-03,Sport,English (US),What is the most popular professional sports league in your country?,中国最受欢迎的职业体育联赛是哪一个? +Th-en-05,Sport,English (US),What is the most popular women's sports team in your country?,中国最受欢迎的女子运动队是哪一支? +Th-en-09,Sport,English (US),What is the most popular tournament in your country?,中国最受欢迎的比赛是什么? +Th-en-11,Sport,English (US),Who is the most popular sportperson in your country?,谁是中国最受欢迎的运动员? +Th-en-12,Sport,English (US),In which sport has your country been most successful in international competitions?,中国在哪项运动中在国际比赛中最成功? +Th-en-15,Sport,English (US),What is the most popular winter sport in your country?,中国最受欢迎的冬季运动是什么? +Th-en-19,Work life,English (US),What is a city or region in your country known for manufacturing industry?,中国有哪些以制造业闻名的城市或地区? +Th-en-21,Work life,English (US),What is regarded as the most important perk typically offered to employees in your country?,在中国,通常认为给员工提供的最重要的福利是什么? +Th-en-22,Work life,English (US),What was the most catastrophic economic period for your country?,中国最灾难性的经济时期是哪一个? +Th-en-24,Work life,English (US),What region in your country is a major hub for tech workers and start ups?,中国的哪个地区是科技工作者和初创企业的主要集中地? +Th-en-27,Work life,English (US),What is the most important industry in your country?,中国最重要的产业是什么? +Th-en-35,Family,English (US),"Which one of the daily meals is commonly shared with family members in your country? (e.g., breakfast, lunch, dinner)",在中国,通常哪一顿日常餐会与家人共享?(例如,早餐、午餐、晚餐) +Th-en-36,Family,English (US),What is a popular family activity with a child to do on weekends in your country?,在中国,周末和孩子一起做的一项受欢迎的家庭活动是什么? +Th-en-37,Family,English (US),"At what age do children typically become independent from their parents in your country? (Provide Arabic numerals (e.g., 12) only.)",在中国,孩子们通常在多大年龄从父母那里独立出来?(只提供阿拉伯数字(例如,12)。) +Th-en-38,Family,English (US),What is the most important family holiday in your country?,中国最重要的家庭节日是什么? +Th-en-39,Family,English (US),What is a popular family game in your country?,在中国有什么受欢迎的家庭游戏? +Th-en-41,Family,English (US),"What is the average age for couples to have their first child in your country? (Provide Arabic numerals (e.g., 20) only.)",在中国,夫妇生第一个孩子的平均年龄是多少?(只提供阿拉伯数字(例如,20)。) +Th-en-43,Family,English (US),"How many cars are owned by a typical family in your country? (Provide Arabic numerals (e.g., 12) only.)",在中国,一个典型家庭拥有多少辆汽车?(只提供阿拉伯数字,例如:12。) +Th-en-44,Family,English (US),What is your country's most popular food for family meals on weekends?,在周末家庭聚餐中,中国最受欢迎的食物是什么? +Th-en-45,Family,English (US),What is the most popular weekday evening family activity in your country?,在中国,最受欢迎的工作日晚上家庭活动是什么? +Th-en-48,Education,English (US),What is the highest grade given to top-achieving high school students on assignments and exams in your country?,在中国,成绩优异的高中生在作业和考试中获得的最高成绩是什么? +Th-en-49,Education,English (US),What is considered the most important exam for high school students in your country?,在中国,什么被认为是高中生最重要的考试? +Th-en-51,Education,English (US),Which subject is considered the most important for students in your country?,在中国,哪门学科被认为对学生来说最重要? +Th-en-53,Education,English (US),What is the most popular extracurricular social event at schools in your country?,在中国的学校里,最受欢迎的课外社交活动是什么? +Th-en-58,Education,English (US),What is the most advanced math subject learned before university in your country?,在中国大学之前,学的最高级的数学科目是什么? +Tmp-ar-01,Education,Arabic (Algeria),Where do university students in your country usually go to study for their final exams?,中国的大学生通常去哪里复习准备期末考试? +Tmp-ar-02,Education,Arabic (Algeria),What is a common public transport that people use to go to university in your country?,在中国,人们通常乘坐什么公共交通工具去大学? +Tmp-ar-04,Education,Arabic (Algeria),What do elementary students in your country usually do after school?,中国的小学生放学后通常做些什么? diff --git a/data/questions/Ethiopia_questions.csv b/data/questions/Ethiopia_questions.csv new file mode 100644 index 0000000000000000000000000000000000000000..e4b049f01b8010285f3639a03c88f3d7a42d77fa --- /dev/null +++ b/data/questions/Ethiopia_questions.csv @@ -0,0 +1,501 @@ +ID,Topic,Source,Question,Translation +Al-en-01,Food,English (US),What is a common snack for preschool kids in your country?,በኢትዮጵያ ቅድመ መደበኛ ልጆች የተለመደ መክሰስ ምንድን ነው? +Al-en-02,Food,English (US),What is a popular food to go with beer in your country?,በኢትዮጵያ ቢራ ጋር ምን ዓይነት ምግብ የተወደደ ነው? +Al-en-04,Food,English (US),What is the most popular fruit in your country?,በኢትዮጵያ ምን ዓይነት ፍሬ እጅግ ታዋቂ ነው? +Al-en-06,Food,English (US),What is a common school cafeteria food in your country?,በኢትዮጵያ በትምህርት ቤት መኖሪያ የተለመደ ምግብ ምንድነው? +Al-en-08,Food,English (US),What are the most commonly eaten snacks at shopping malls in your country?,በኢትዮጵያ በገባያ አዳራሽ ውስጥ በተለይ የሚበሉ ምግቦች ምንናቸው ናቸው? +Al-en-09,Food,English (US),What is a popular snack at an amusement park in your country?,በኢትዮጵያ የመዝናኛ ፓርክ ውስጥ ታዋቂ አሰራር ምግብ ምንድነው? +Al-en-16,Education,English (US),"At what age do kids start preschool in your country? (Provide Arabic numerals (e.g., 12) only.)",በኢትዮጵያ ልጆች ቅድመ መደበኛ ትምህርት የሚጀምሩበት እድሜ ስንት ነው? (በአረብኛ ቁጥሮች (ምሳሌ 12) ብቻ ይምረጡ።) +Al-en-17,Education,English (US),What is a popular afterschool sport for elementary schools in your country?,በኢትዮጵያ በመጀመሪያ ደረጃ ትምህርት ቤቶች ከትምህርት በኋላ የሚካሄድ ዝነኛ ስፖርት ዓይነት ምንድነው? +Al-en-18,Education,English (US),For which subject do elementary students get private education in your country?,በኢትዮጵያ በመጀመሪያ ደረጃ ትምህርት ተማሪዎቸ የግል አስጠኚ የሚቀጠርላቸው በተለየ ለየትኛው የትምህርት አይነት ነው? +Al-en-19,Education,English (US),What is a popular second language for high school students in your country?,በኢትዮጵያ በሁለተኛ ደረጃ ትምህርት ተማሪዎች ተመራጭ ሁለተኛ ቋንቋ ምንድን ነው? +Al-en-21,Education,English (US),Which subject is the most important for gifted education in your country?,በኢትዮጵያ ለብልህ ተማሪ ጠቃሚ ትምህርት ነው ሚባለው የትምህርት አይነት የቱ ነው? +Al-en-32,Holidays/Celebration/Leisure,English (US),What is the main dish for Thanksgiving in your country?,በኢትዮጵያ ለምስጋና በዓል ዋነኛው ምግብ ምንድን ነው? +Al-en-33,Holidays/Celebration/Leisure,English (US),What do people do to celebrate Halloween in your country?,ሰዎች በኢትዮጵያ ሃሎዊንን ለመውደም ምን ያደርጋሉ? +Al-en-34,Holidays/Celebration/Leisure,English (US),What do people do to celebrate New Year's Day in your country?,ሰዎች በኢትዮጵያ አዲስ አመት ቀን ሊያከብሩት ምን ያደርጋሉ? +Al-en-35,Holidays/Celebration/Leisure,English (US),What do people do to celebrate Christmas in your country?,በኢትዮጵያ ሰዎች ገና በአል ለማክበር ምን ያደርጋሉ? +Al-en-36,Holidays/Celebration/Leisure,English (US),What food is associated with Halloween in your country?,በኢትዮጵያ ምን ዓይነት ምግብ ከሃሎዊን ጋር ተያይዞ ይገኛል? +Al-en-37,Holidays/Celebration/Leisure,English (US),What food is associated with Christmas in your country?,በኢትዮጵያ በገና በዓል ላይ የተያያዘ ምግብ ምንድነው? +Al-en-38,Holidays/Celebration/Leisure,English (US),What food is associated with Valentine's day in your country?,በኢትዮጵያ በቪልንቴይን ቀን ምን ዓይነት ምግብ ይታያል? +Al-en-39,Holidays/Celebration/Leisure,English (US),What do people eat on their birthday in your country?,በኢትዮጵያ ሰዎች በልደታቸው ቀን ምን ይበላሉ? +Al-en-40,Holidays/Celebration/Leisure,English (US),What is a popular outdoor place for families to have fun with little kids in your country?,በኢትዮጵያ ቤተሰቦች ከታናሽ ልጆች ጋር ለመዝናናት የተመረጡ የውጭ ቦታዎች ምንድን ናቸው? +Al-en-43,Holidays/Celebration/Leisure,English (US),What is a popular indoor activity for families in your country?,በኢትዮጵያ ለቤተሰቦች የታወቀ ውስጥ ቤት እንክብካቤ ምንድን ነው? +An-ar-02,Education,Arabic (Algeria),Where do university students have lunch in your country?,በኢትዮጵያ ዩኒቨርስቲ ተማሪዎች ምሳቸውን የሚበሉበት ቦታ የት ነው? +An-ar-03,Education,Arabic (Algeria),Which month is the final exam term usually scheduled at high schools in your country? (Provide Arabic numerals (1~12) only.),በኢትዮጵያ በከፍተኛ ትምህርት ቤቶች የማጠቃለያ ፈተና ባብዛኛው በየትኛው ወር ይሆን? (በአረቢኛ ቁጥሮች (1~12) ብቻ ምላሽ ይስጡ።) +An-ar-08,Education,Arabic (Algeria),"How many hours a day do students in your country usually spend at high school? (Provide Arabic numerals in integers (0~24), without any decimal points.)",በኢትዮጵያ ተማሪዎች ቀን ትምህርት ቤት ውስጥ ስንት ሰዓት ያሳልፋሉ? (በሙሉ ቁጥር (0~24) ያቅርቡ፣ ያለ ነጥብ) +An-ar-09,Education,Arabic (Algeria),"How many languages do students study at high school in your country? (Provide Arabic numerals (e.g., 5) only.)",በኢትዮጵያ በከፍተኛ ትምህርት ቤት ተማሪዎች ባብዛኛው ስንተ ቋንቋዎችን ይማሩ? (በአረቢኛ ቁጥር (ምሳሌ 5) ብቻ ይምልኩ።) +An-ar-34,Sport,Arabic (Algeria),What is the most popular sport played in a team at school in your country?,በኢትዮጵያ በትምህርት ቤት በቡድን የሚጫወቱ እጅግ ታዋቂ ስፖርት ምንድን ነው? +An-ar-35,Sport,Arabic (Algeria),Who is the most popular sport commentator in your country?,በኢትዮጵያ ታዋቂ የስፖርት አስተያየት ሰጪ ማን ነው? +An-ar-36,Sport,Arabic (Algeria),What is the most popular sport team in your country?,በኢትዮጵያ ምን ዓይነት ስፖርት ቡድን እጅግ ታዋቂ ነው? +An-ar-43,Sport,Arabic (Algeria),What are the common places or venues where individuals in your country usually gather to watch sports broadcasts?,በኢትዮጵያ ሰዎች በተለይ ስፖርት ዝግጅቶችን ተሰባስበው ለመመልከት የሚያዘወትሩት ቦታ የት ነው? +Ca-sp-05,Food,Spanish (Spain),"How many meals per day do people from your country usually have? (Provide Arabic numerals (e.g., 5) only.)",በኢትዮጵያ ሰዎች በተለይነት በአንድ ቀን ስንት ጊዜ ይመገባሉ? (በአረቢኛ ቁጥሮች (ምሳሌ 5) ብቻ ይምረጡ።) +Ca-sp-06,Food,Spanish (Spain),Which is the most important meal of the day to people from your country?,በኢትዮጵያ ሰዎች በቀን ውስጥ እጅግ አስፈላጊ የሆነው ምግብ ምንድን ነው? +Ca-sp-08,Food,Spanish (Spain),What is the most common ingredient used in your country's diet?,በኢትዮጵያ የምግብ አሰራር ላይ በተለይ የተለመደ ንጥረ ነግር ምንድን ናቸው? +Ca-sp-09,Food,Spanish (Spain),What do people from your country usually eat for dessert?,ኢትዮጵያውያን በተለይ ምግብ ከጨረሱ በኋላ ምን ይመገባሉ? +Ca-sp-11,Food,Spanish (Spain),Which day of the week do people usually organize a family meal in your country?,በኢትዮጵያ ሰዎች በሳምንት ውስጥ በተለይ የቤተሰብ ምግብ የሚያዘጋጁበት ቀን የትኛው ነው? +Ca-sp-14,Food,Spanish (Spain),Which is the most popular hot drink in your country?,በኢትዮጵያ ተወዳጅ ትኩስ መጠጥ ምንድን ነው? +Ca-sp-19,Holidays/Celebration/Leisure,Spanish (Spain),What do young people from your country usually drink at the night club?,በኢትዮጵያ የሚገኙ ወጣቶች ሌሊት ክለብ ሲሄዱ በተለይ ምን ይጠጣሉ? +Ca-sp-21,Holidays/Celebration/Leisure,Spanish (Spain),At which month do people usually take holidays in your country? (Provide Arabic numerals (1~12) only.),በኢትዮጵያ ሰዎች በተለይ በየትኛው ወር በአላት ይበዛሉ? (በአረቢኛ ቁጥር (1~12) ብቻ ስጡ።) +Ca-sp-29,Holidays/Celebration/Leisure,Spanish (Spain),What tradition is there in your country for New Year's Eve?,በኢትዮጵያ ሰዎች አዲስ አመት ዋዜማ ምን ባህል አለ? +Ca-sp-38,Family,Spanish (Spain),Which is the typical type of house for a family in your country?,በኢትዮጵያ ለአንድ ቤተሰብ የተለመደ የቤት አይነት ምን አይንት ነው? +Ca-sp-41,Family,Spanish (Spain),Where do the dependent elderly usually live in your country?,በኢትዮጵያ አረጋዊያን በተለይ የሚኖሩበት ቦታ የት ነው? +Ca-sp-42,Family,Spanish (Spain),"How long (in weeks) is your country's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)",ኢትዮጵያ የእናትነት ፍቃድ ለእናቶች ስንት ሳምንት ነው? (በአረብ ቁጥሮች ብቻ ምላሽ ይስጡ (ምሳሌ 20)።) +Ca-sp-43,Family,Spanish (Spain),"How long (in weeks) is your country's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)",የኢትዮጵያ ለአባቶች ለስንት ሳምንት ፍቃድ ይሰጣል? (በዓረብ ቁጥር ብቻ ምላሽ ይስጡ (ለምሳሌ፣ 20)።) +Ca-sp-45,Family,Spanish (Spain),What type of destination is commonly chosen for a family vacation in your country?,በኢትዮጵያ ለቤተሰብ ሽርሽር በተመረጡት መድረኮች ውስጥ የታወቀ ዓይነት መድረክ ምንድን ነው? +Gu-ch-05,Sport,Chinese (China),What sports do seniors like the most in your country?,በኢትዮጵያ ትልቅ ሰዎች ምን ዓይነት ስፖርት በጣም ይዎዳሉ? +Gu-ch-06,Sport,Chinese (China),What sports do men like to play the most in your country?,በኢትዮጵያ ወንዶች ምን ዓይነት ስፖርት እንደሚወዱ በርካታ ይጫወታሉ? +Gu-ch-07,Sport,Chinese (China),Who is the most famous basketball player in your country?,በኢትዮጵያ እጅግ ዝነኛ ቅርጫት ኳስ ተጫዋች ማን ነው? +Gu-ch-08,Sport,Chinese (China),What is the most popular sports among children in your country?,በኢትዮጵያ ልጆች መካከል እጅግ ታዋቂ የሆነ ስፖርት ምንድነው? +Gu-ch-09,Sport,Chinese (China),What sports do women like to play the most in your country?,በኢትዮጵያ ሴቶች ምን ዓይነት ስፖርት እንደሚወዱ እጅግ ይጫወታሉ? +Gu-ch-11,Sport,Chinese (China),What sports event has your country won the most gold medals at the Olympics?,ኢትዮጵያ በኦሊምፒክ ብዙ ሜዳሊያ በምን ዓይነት ስፖርት ነው ያመጣችው? +Gu-ch-15,Sport,Chinese (China),What sports do male students in university like to play the most in your country?,በኢትዮጵያ ዩኒቨርስቲ ውስጥ ወንድ ተማሪዎች በተረኛም የሚወዱት ስፖርት ምንድን ነው? +Gu-ch-16,Family,Chinese (China),"How many people are there in a family on average in your country? (Provide Arabic numerals (e.g., 12) only.)",በኢትዮጵያ በአንድ ቤተሰብ በአማካይ ስንት ሰዎች ይኖራሉ? (በአረቢክ ቁጥሮች (ምሳሌ 12) ብቻ ይምረጡ።) +Gu-ch-18,Family,Chinese (China),"How many children do couples usually have in your country? (Provide Arabic numerals (e.g., 12) only.)",በኢትዮጵያ አንድ ባል እና ሚስት በአማካይ ስንት ሰዎች ይኖራሉ? (በአረቢኛ ቁጥር ብቻ ምላሽ ይስጡ። ምሳሌ 12።) +Gu-ch-31,Education,Chinese (China),"What is the duration of elementary school in years in your country? (Provide Arabic numerals (e.g., 12) only.)",በኢትዮጵያ የመጀመሪያ ደረጃ ትምህርት ስንት አመት ነው? (በአረቢኛ ቁጥሮች ብቻ (ምሳሌ 12) ይምላሉ።) +Gu-ch-32,Education,Chinese (China),"What is the duration of compulsory education in years in your country? (Provide Arabic numerals (e.g., 12) only.)",በኢትዮጵያ የተማሪዎች ዝቅተኛ የማጠናቀቂያ ዓመት ስንት ነው? (በአረቢኛ ቁጥሮች ብቻ ምላሽ ይስጡ (ለምሳሌ፣ 12)።) +Gu-ch-33,Education,Chinese (China),"From which age do students start learning their second language in your country? (Provide Arabic numerals (e.g., 12) only.)",በኢትዮጵያ ተማሪዎች ሁለተኛውን ቋንቋ ከምንት ዓመት ጀምሮ ማስተማር ይጀምራሉ? (በአረቢኛ ቁጥሮች (ምሳሌ 12) ብቻ ይምልከቱ።) +Gu-ch-38,Education,Chinese (China),"What is the duration of undergraduate education in your country? (Provide Arabic numerals (e.g., 12) only.)",በኢትዮጵያ የመጀመሪያ ዲግሪ ትምህርት ርዝመቱ ስንት ነው? (በአረብኛ ቁጥሮች ብቻ (ምሳሌ 12) ይምልኩ።) +Gu-ch-40,Education,Chinese (China),"What time do younger elementary school students finish school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","በኢትዮጵያ ቅድመ የመጀመሪያ ደረጃ ተማሪዎች ትምህርት ቤት ስንት ሰዓት ይጨርሳሉ? (በየሰዓቱ ቅጽ ይምረጡ (ምሳሌ 18:00, 09:00).)" +Gu-ch-41,Education,Chinese (China),"How many musical instruments do elementary school students in your country typically play? (Provide Arabic numerals (e.g., 12) only.)",በኢትዮጵያ የመጀመሪያ ደረጃ ተማሪዎች በተለይ ምን እና ስንት የሙዚቃ መሣሪያዎች ይጫወታሉ? (በአረብኛ ቁጥሮች (ምሳሌ 12) ብቻ ስጡ።) +Ji-ko-02,Work life,Korean (South Korea),What day of the week do people in your country prefer to have company dinners?,በኢትዮጵያ ሰዎች በሳምንቱ ምን ቀን የድርጅት እራት ምግብ መብላትን ይመርጣሉ? +Ji-ko-03,Work life,Korean (South Korea),Which region/city has the highest number of financial companies in your country?,በኢትዮጵያ ከፍተኛ ብዛት ያላቸው ፋይናንስ ኩባንያዎች በየት ክልል/ከተማ ላይ ናቸው? +Ji-ko-07,Work life,Korean (South Korea),What is the most famous private company in your country?,በኢትዮጵያ ውስጥ እጅግ ታዋቂ የሆነ የግል ድርጅት ምንድን ነው? +Ji-ko-08,Work life,Korean (South Korea),"What is the maximum number of hours one can work per week in your country? (Provide Arabic numerals (e.g., 12) only.)",በኢትዮጵያ ሰው ከፍተኛው ሰዓት በአንድ ሳምንት ሊሠራ የሚችል ሰዓት ስንት ነው? (በአረቢክ ቁጥሮች (ምሳሌ 12) ብቻ ይምረጡ።) +Ji-ko-09,Work life,Korean (South Korea),What do people typically eat during company get-together in your country?,በኢትዮጵያ ሰዎች በድርጅት ስብሰባ ጊዜ በተለይ ምን ይበላሉ? +Ji-ko-14,Work life,Korean (South Korea),What is the representative export item of your country?,የኢትዮጵያ ወኪል የወጭ ንግድ ምርት ምንድነው? +Ji-ko-15,Work life,Korean (South Korea),"How long (in hours) is the typical lunch break in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","በኢትዮጵያ የምሳ ሰዓት በሰዓት ስንት ሰዓት ነው? (እባኮትን በአረቢክ ቁጥር እስከ አንድ ነጥብ ቁጥር (ምሳሌ 2, 3.5) ብቻ ያቅርቡ።)" +Ji-ko-16,Family,Korean (South Korea),Where do mothers stay for a certain period after childbirth for recovery in your country?,በኢትዮጵያ እናቶች ከወሊድ በኋላ ለተወሰነ ጊዜ ረፍት የሚያደርጉት የት ነው ? +Ji-ko-19,Family,Korean (South Korea),What is your country's most commonly given flower on Parents' Day?,በወላጆች ቀን በኢትዮጵያ በተለይ የሚሰጥ አበባ ምንድነው? +Ji-ko-22,Family,Korean (South Korea),What do people especially spend their first salary on in your country's society?,በኢትዮጵያ ሰዎች በተለይ የመጀመሪያ ደመወዛቸውን በምን ላይ ያውላሉ? +Ji-ko-24,Family,Korean (South Korea),What is the most preferred recreational facility among children in your country?,በኢትዮጵያ ልጆች በሚወዷቸው የመዝናኛ ተቋማት መካከል እጅግ የተመረጠው የመዝናኛ ተቋም ማንኛው ነው? +Ji-ko-25,Family,Korean (South Korea),What are the family-related holidays in your country?,በኢትዮጵያ የቤተሰብ በዓላት ምንናን ናቸው? +Ji-ko-26,Family,Korean (South Korea),What are the key milestones associated with children's independence from their parents in your country's society?,በኢትዮጵያ ማህበረሰብ ውስጥ ልጆች ከወላጆቻቸው እገዛ መውጣታቸውን ሚያሳይ ቁልፍ ማህበረሰብ ምስል እንዲሁም እንቅስቃሴዎች ምንድነው? +Ji-ko-27,Family,Korean (South Korea),What is the common gift you give when visiting elderly parents in your country?,በኢትዮጵያ አያቶችን ስትጎብኙ በተለመደ የምትሰጡት ስጦታ ምንድነው? +Ji-ko-28,Family,Korean (South Korea),When is the first day that people celebrate after a child is born in your country?,በኢትዮጵያ ልጅ ከተወለደ በኋላ ሰዎች የመጀመሪያውን የሚያከብሩት ቀን መቼ ነው? +Ji-ko-29,Family,Korean (South Korea),Which age's birthday is celebrated the most grandly in your country's society?,በኢትዮጵያ ማኅበር ውስጥ የትኛው እድሜ በታላቅ ልምምድ የሚከበር የልደት ቀን ነው? +Ji-ko-31,Education,Korean (South Korea),Where do middle and high school students in your country usually study for exams?,በኢትዮጵያ የአንደኛ እና ሁለተኛ ደረጃ ተማሪዎች ለፈተናዎች በተለይ የት ያጠናሉ? +Ji-ko-33,Education,Korean (South Korea),Where do high school students in your country usually go after dinner?,በኢትዮጵያ የሁለተኛ ደረጃ ትምህርት ቤት ተማሪዎች ከእራት በኋላ በተለምዶ የት ይሄዳሉ? +Ji-ko-34,Education,Korean (South Korea),How do elementary school students in your country go to school?,በኢትዮጵያ የመጀመሪያ ደረጃ ተማሪዎች ወደ ትምህርት ቤት እንዴት ይሄዳሉ? +Ji-ko-35,Education,Korean (South Korea),What is the most common form of private education in your country?,በኢትዮጵያ ውስጥ በጣም የተለመደው የግል ትምህርት ምንድነው? +Ji-ko-36,Education,Korean (South Korea),Which subject’s academy/private educational institute do middle or high students most frequently attend in your country?,በኢትዮጵያ ትምህርት አካዳሚ/የግል ትምህርታዊ ተቋማት መካከለኛ ወይም ከፍተኛ ትምህርት ደረጃ ተማሪዎች በብዛት የሚከታተሉት ትምህርት ምንድን ነው? +Ji-ko-37,Education,Korean (South Korea),What type of clothing do middle and high school students wear to school in your country?,በኢትዮጵያ የአንደኛ እና ሁለተኛ ደረጃ ትምህርት ቤት ተማሪዎች ወደ ትምህርት ቤት ሲሄዱ ምን አይነት አልባሳት ይለብሳሉ? +Ji-ko-38,Education,Korean (South Korea),Which major is considered the most difficult to gain admission to in your country?,በኢትዮጵያ ለመግባት በጣም ከባድ የሆነው የትምህርት ዘርፍ የቱ ነው? +Ji-ko-39,Education,Korean (South Korea),What is the most commonly learned musical instrument by elementary school students in your country?,በኢትዮጵያ የመጀመሪያ ትምህርት ተማሪዎች በተለይ የሚማሩት ሙዚቃ መሣሪያ ምንድን ነው? +Ji-ko-40,Education,Korean (South Korea),What do high school students typically do during break time in schools in your country?,በኢትዮጵያ ሁለተኛ ደረጃ በትምህርት ቤቶች ውስጥ በእረፍት ጊዜ ተማሪዎች ምን ያደርጋሉ? +Ji-ko-41,Education,Korean (South Korea),What kind of shoes do students wear in schools in your country?,በኢትዮጵያ በትምህርት ቤቶች ውስጥ ተማሪዎች የአይነት ጫማ ይለብሳሉ? +Ji-ko-42,Education,Korean (South Korea),What are the required subjects in your country's university entrance exam?,በኢትዮጵያ ዩኒቨርስቲ መግቢያ ፈተና የሚሰጥባቸው የትምህርት አይነቶች እነማን ናቸው? +Ji-ko-44,Education,Korean (South Korea),Which region (within a city) in your country has the highest academic fervor?,በኢትዮጵያ ውስጥ ለትምህርት ከፍተኛ ትኩረት ያለው ክልል ወይም ከተማ ማንኛው ነው? +Ji-ko-45,Education,Korean (South Korea),What do people look forward to the most at university festivals in your country?,በኢትዮጵያ ዩኒቨርስቲ ፌስቲቫሎች ላይ ሰዎች እንደሚጠብቁት ነገር ምንድን ነው? +Jo-sp-01,Sport,Spanish (Spain),What is the second most popular sport in your country?,በኢትዮጵያ ሁለተኛው ተወዳጅ ስፖርት ምንድነው? +Jo-sp-02,Sport,Spanish (Spain),What is the most popular sport played without a ball in your country?,በኢትዮጵያ ያልኳስ ተወዳጅ ስፖርት ምንድን ነው? +Jo-sp-09,Sport,Spanish (Spain),What sports are most associated with the upper class in your country?,በኢትዮጵያ ምን ዓይነት ስፖርቶች በባለሃብቶች ይዘወተራል? +Jo-sp-13,Sport,Spanish (Spain),What is the most popular water sport in your country?,በኢትዮጵያ ምን ዓይነት ውሃ ስፖርት እጅግ ታዋቂ ነው? +Jo-sp-14,Sport,Spanish (Spain),What is the most popular mental sport in your country?,በኢትዮጵያ ምን ዓይነት አእምሮ ስፖርት እጅግ ታዋቂ ነው? +Jo-sp-18,Work life,Spanish (Spain),"How many holiday days per year does a standard worker gets in your country? (Provide Arabic numerals (e.g., 12) only.)",በኢትዮጵያ አንድ መደበኛ ሠራተኛ በአንድ ዓመት ስንት ቀን በአል እንደሚያገኝ ነው? (በአረቢክ ቁጥሮች (ምሳሌ 12) ብቻ ይምረጡ።) +Jo-sp-19,Work life,Spanish (Spain),What region in your country has been traditionally associated with agriculture?,በኢትዮጵያ ከግብርና ጋር ተያይዞ በተለምዶ የተያያዘው ክልል የቱ ነው? +Jo-sp-21,Work life,Spanish (Spain),"What time, if any, do people usually leave work for lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","በኢትዮጵያ ሰዎች ለምሳ በምን ሰዓት ከሥራ ሲወጡ በተለይ ሰዓት ካለ ምን ሰዓት ነው? (በ HH:MM ቅጽ ያቅርቡ (ምሳሌ 18:00, 09:00).)" +Jo-sp-31,Education,Spanish (Spain),"What time do high school students tend to leave school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","በኢትዮጵያ ሁለተኛ ደረጃ ትምህርት ቤት ተማሪዎች በስንት ሰዓት ከትምህርት ቤት ይወጣሉ? (በየሰዓቱ በ HH:MM ቅጽ (ምሳሌ 18:00, 09:00) ይምረጡ።)" +Jo-sp-32,Education,Spanish (Spain),What sport do elementary school students tend to practice at school in your country?,በኢትዮጵያ በመጀመሪያ ደረጃ ትምህርት ቤት በተማሪዎች በትምህርት ቤት ውስጥ ምን ዓይነት ስፖርት ይሠሩ ነው? +Jo-sp-36,Education,Spanish (Spain),"How long (in weeks) are summer vacations at elementary schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","በኢትዮጵያ የምጀመሪያ ደረጃ ትምህርት ቤቶች የክረምት የእረፍት ጊዜ ስንት ሳምንት ነው? (በአረቢክ ቁጥሮች (ምሳሌ 7, 8) ብቻ ይምላሉ።)" +Jo-sp-37,Education,Spanish (Spain),"How long (in weeks) are summer vacations at universities in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","በኢትዮጵያ ዩኒቨርስቲዎች ትምህርት ቤቶች የክረምት የእረፍት ጊዜ ስንት ሳምንት ነው?(በዓረብ ቁጥር ብቻ ምላሽ ይስጡ (ምሳሌ 7, 8)።)" +Jo-sp-39,Education,Spanish (Spain),"At what age does elementary education begin in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","በኢትዮጵያ የመጀመሪያ ደረጃ ትምህርት በስንት አመት ይጀመራል? (በዓረብ ቁጥር ብቻ ምላሽ ይስጡ (ምሳሌ 7, 8)።)" +Jo-sp-43,Education,Spanish (Spain),"How many languages are studied in elementary education besides your country's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)","በኢትዮጵያ በመጀመሪያ ደረጃ ትምህርት ምን ያህል ቋንቋዎች ይሰጣሉ? (በዓረብ ቁጥር ብቻ ምላሽ ይስጡ (ለምሳሌ 7, 8)።)" +Jod-ch-01,Food,Chinese (China),What eating utensils do people commonly used in your country?,በኢትዮጵያ ሰዎች በተደጋጋሚ የሚጠቀሟቸው የምግብ መመገቢያ እቃዎች ምንድናቸው? +Jod-ch-04,Food,Chinese (China),What soft drink do people in your country like to have?,በኢትዮጵያ ሰዎች ምን የልስላሳ መጠጥ መጠጣትን ይወዳሉ? +Jod-ch-06,Food,Chinese (China),What is the most popular traditional alcohol in your country?,በኢትዮጵያ ምን ዓይነት ባህልያዊ አልኮል ታዋቂ ነው? +Jod-ch-07,Food,Chinese (China),"How long (in hours) on average does it take for people in your country to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","በኢትዮጵያ ሰዎች በአማካይነት እራት ለመመገብ በምግብ ቤት ስንት ሰአት የቆያሉ? (እባክዎን በአረቢክ ቁጥሮች እስከ አንድ ነጥብ ቁጥር (ምሳሌ 2, 3.5) ብቻ ያቅርቡ።)" +Jod-ch-09,Food,Chinese (China),"What time do people usually have dinner in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","በኢትዮጵያ ሰዎች እራት በምን ሰዓት ይበላሉ? (በ HH:MM ቅጽ ያቅርቡ (ምሳሌ 18:00, 09:00).)" +Jod-ch-12,Food,Chinese (China),What kind of soup do people from your country like to have?,ኢትዮጵያውያን ምን ዓይነት ሾርብ መብላት ይወዳሉ? +Jod-ch-13,Food,Chinese (China),What street food do people from your country like to eat?,ኢትዮጵያውያን ምን የጎዳና ምግብ ይወዳሉ? +Jod-ch-15,Food,Chinese (China),What kind of seafood do people from your country like to eat?,ኢትዮጵያውያን የባህር ምግብ እንዴት ያለ አይነት ይወዳሉ? +Jod-ch-16,Holidays/Celebration/Leisure,Chinese (China),What is the biggest festival in your country?,በኢትዮጵያ ትልቅ ዓለም አቀፍ በዓል የቱ ነው? +Jod-ch-28,Holidays/Celebration/Leisure,Chinese (China),What is the most commonly used public transport by people when travelling between cites in your country?,በኢትዮጵያ ከከተማ ወደ ከተማ ሲጓዙ ሰዎች በተለይ የሚጠቀሙበት ህዝባዊ ትራንስፖርት ምንድን ነው? +Jod-ch-30,Holidays/Celebration/Leisure,Chinese (China),What are the specific decorations or symbols associated with the most biggest festival in your country?,በኢትዮጵያ ውስጥ በእጅጉ ታላቅ በዓል ጋር የተያያዙ ምልክቶች ወይም ምስሎች ምንድነው? +Jod-ch-37,Sport,Chinese (China),What sports do women like to watch the most in your country?,በኢትዮጵያ ሴቶች ምን ዓይነት ስፖርት ማየት እናፈቅራሉ? +Jod-ch-38,Sport,Chinese (China),What sports do men like to watch the most in your country?,በኢትዮጵያ ወንዶች ምን ዓይነት ስፖርት ማየት እናፈቅራሉ? +Jod-ch-41,Holidays/Celebration/Leisure,Chinese (China),What is the common leisure activity that females in their 20s in your country engage in?,በኢትዮጵያ ወስጥ እድሜያቸው 20ዎቹ የሚገኙ ሴቶች በዋናነት የሚያደርጉት የመዝናኛ እንቅስቃሴ ምንድን ነው? +Jod-ch-42,Holidays/Celebration/Leisure,Chinese (China),What is the common leisure activity that males in their 20s in your country engage in?,በኢትዮጵያ ወስጥ እድሜያቸው 20ዎቹ የሚገኙ ወንዶች በዋናነት የሚያደርጉት የመዝናኛ እንቅስቃሴ ምንድን ነው? +Jod-ch-46,Work life,Chinese (China),"How long (in hours) do people usually take a break after lunch on a weekday in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","በኢትዮጵያ በሳምንቱ ቀናት ሰዎች ከምሳ በኋላ ለስንት ሰዓት (በሰዓት) የማረፍያ ቀንበር ይወስዳሉ? (በአረቢክ ቁጥሮች እስከ አንድ ነጥብ ቁጥር (ምሳሌ 2, 3.5) ብቻ ይምረጡ።)" +Jod-ch-48,Work life,Chinese (China),What do people eat for lunch during the working days in your country?,በኢትዮጵያ በስራ ቀናት ላይ ሰዎች ለምሳ ምን ይበላሉ? +Jod-ch-50,Work life,Chinese (China),"What is the average commute time (in minutes) for people in your country? (Provide Arabic numerals (e.g., 1) only.)",በኢትዮጵያ የሰዎች አማካይ የጉዞ ጊዜያቸው (በደቂቃ) ምን ያክል ነው? (እባኮትን በቁጥር (ምሳሌ 1) ያስቀምጡ።) +Jod-ch-51,Work life,Chinese (China),What is the most common transportation that people take to get to work in your country?,በኢትዮጵያ ሰዎች ለመስራት የሚወስዱት እጅግ ተደጋጋሚ መጓጓዣ እንደምን ነው? +Jod-ch-54,Work life,Chinese (China),"How long (in days) is the marriage leave in your country? (Provide Arabic numerals (e.g., 12) only.)",በኢትዮጵያ የጋብቻ የፍቃድ ጊዜ ስንት ቀን ነው? +Jod-ch-56,Work life,Chinese (China),"What is the typical retirement age for women in your country? (Provide Arabic numerals (e.g., 12) only.)",በኢትዮጵያ ሴቶች ጡረታ የሚዎጡበት እድሜ ስንት ነው? +Jod-ch-57,Work life,Chinese (China),"What is the typical retirement age for men in your country? (Provide Arabic numerals (e.g., 12) only.)",በኢትዮጵያ ወንዶች ጡረታ የሚዎጡበት እድሜ ስንት ነው? +Jod-ch-58,Work life,Chinese (China),Which profession is the most respected in your country?,በኢትዮጵያ ምን ዓይነት ሙያ እጅግ ከበረታች ነው? +Jod-ch-60,Work life,Chinese (China),What is the duration (in hours) of a typical workday in your country? (Provide Arabic numerals (0~24) only.),በኢትዮጵያ ውስጥ አንድ ቀን የስራ ሰዓት ርዝመት ስንት ሰዓት ነው? (በአረቢኛ ቁጥሮች (0~24) ብቻ ምላሽ ይስጡ።) +Jod-ch-61,Work life,Chinese (China),Which occupation is most preferred among females in your country?,በኢትዮጵያ ውስጥ ሴቶች በሚመርጡት ሙያዎች መካከል ምንም ሙያ በተሻለ ይመረጣል? +Jod-ch-62,Work life,Chinese (China),Which occupation is most preferred among males in your country?,በኢትዮጵያ ውስጥ ወንዶች በሚመረጡት ሙያዎች መካከል ምንም ሙያ በተሻለ ይመረጣል? +Ki-pe-17,Education,Persian (Iran),"On average, how far do students typically pursue their education in your country? (e.g., elementary, high school)",በኢትዮጵያ ተማሪዎች በአማካኝ እስከ የትኛውን ደረጃ ትምህርት ይቀጥላሉ? (ምሳሌ፣ ታናሽ ወይም ከፍተኛ ትምህርት) +Ki-pe-24,Education,Persian (Iran),What language is taught in schools in your country besides English?,በኢትዮጵያ ትምህርት ቤቶች ከእንግሊዝኛ ቋንቋ በተጨማሪ ምን ይማራል? +Ki-pe-30,Education,Persian (Iran),What days of the week are schools closed in your country?,በኢትዮጵያ ትምህርት ቤቶች ከሳምንቱ ቀኖች ውስጥ በየትኞቹ ይዘጋሉ? +Ki-pe-32,Food,Persian (Iran),What food do the hosts usually prepare for the guests in your country?,በኢትዮጵያ እንግዶችን ለመቀበል ቤተሰቦች በተለይ ምን ምግብ ያዘጋጃሉ? +Ki-pe-34,Food,Persian (Iran),What is the usual drink in the breakfast in your country?,በኢትዮጵያ በማለዳ ምግብ ጊዜ የተለመደ መጠጥ ምንድን ነው? +Ki-pe-36,Food,Persian (Iran),"Except the food original from your country, which country's food is more popular in your country?",ከኢትዮጵያ ከተመረተ ምግብ ውጭ የምን አገር ምግብ በኢትዮጵያ ታዋቂ ነው? +Ki-pe-39,Food,Persian (Iran),What food is usually prepared for a family picnic in your country?,በኢትዮጵያ ለቤተሰብ ሽርሽር ጊዜ በተለይ ምን ዓይነት ምግብ ይዘጋጃል? +Ki-pe-40,Food,Persian (Iran),Which food from your country is considered disgusting by the rest of the world?,ከኢትዮጵያ የትኛው ምግብ በአለም ላይ በተለይ የሚጠላ ምግብ ነው? +Ki-pe-43,Food,Persian (Iran),What is the name of the popular bread in your country?,በኢትዮጵያ የታወቀው የዳቦ ስም ምን ይባላል? +Ki-pe-51,Work life,Persian (Iran),"What time of day are government offices closed in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","በኢትዮጵያ የመንግሥት ቢሮዎች በምን ሰዓት ይዘጋሉ? (በኤችኤች:ኤምኤም ቅጽ ይምረጡ (ምሳሌ 18:00, 09:00).)" +Ki-pe-53,Work life,Persian (Iran),"What is the normal start time of government offices in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","በኢትዮጵያ የመንግሥት ቢሮዎች መደበኛ የመጀመሪያ ሰዓት ምን ሰዓት ነው? (በዚህ ቅጽ ይምረጡ HH:MM ምሳሌ 18:00, 09:00)." +Kik-in-01,Holidays/Celebration/Leisure,Indonesian (Indonesia),What national holiday has the longest duration in your country?,በኢትዮጵያ ምን ብሔራዊ በዓል ረጅም ጊዜ ይከበራል? +Kik-in-02,Holidays/Celebration/Leisure,Indonesian (Indonesia),What are the common activities people from your country do to celebrate Independence day?,ኢትዮጵያውያን የነጣነት ቀን ሲከበር የተለመደ እንቅስቃሴዎች ምንድን ናቸው? +Kik-in-04,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is installed in front of the house when a family member dies in your country?,በኢትዮጵያ ቤተሰብ አንድ አባል ሲሞት በቤት ፊት ምን ይተክላል? +Kik-in-05,Holidays/Celebration/Leisure,Indonesian (Indonesia),When is a pregnancy celebration or ceremony usually held in your country?,በኢትዮጵያ የእርግዝና በዓል ወይም ሥነ-ሥርዓት መቼ ይካሄዳል? +Kik-in-06,Holidays/Celebration/Leisure,Indonesian (Indonesia),What event is usually held before a wedding in your country?,በኢትዮጵያ ከሰርግ በፊት ምን ዓይነት ክስተት ይካሄዳል? +Kik-in-07,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is usually shared to the children during (Lunar) New Year in your country?,በኢትዮጵያ አዲስ አመት ልጆች የሚጋሩት ነገር ምንድን ነው? +Kik-in-08,Holidays/Celebration/Leisure,Indonesian (Indonesia),What activities are usually done days before Ramadan in your country?,በኢትዮጵያ ረመዳን ከመጀመሪያው ቀናት በፊት ምን ዓይነት እንቅስቃሴዎች ተደርገዋል? +Kik-in-10,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most popular tourist attraction for foreign visitors in your country?,በኢትዮጵያ ለውጭ ጉብኝቶች እጅግ ታዋቂው የመስብ ቦታዎች ምንድን ነው? +Kik-in-11,Holidays/Celebration/Leisure,Indonesian (Indonesia),"What is the most popular religious sites (temple, church, etc.) for tourism in your country?",በኢትዮጵያ ለቱሪዝም የታወቀው የሃይማኖት ቦታ (ቤተ መቅደስ፣ ቤተ ክርስቲያን ማለት ነው፣ ወዘተ) ምንድን ነው? +Kik-in-15,Holidays/Celebration/Leisure,Indonesian (Indonesia),What clothes do women usually wear on graduation commencement ceremony in your country?,በኢትዮጵያ ሴቶች በመጨረሻ የተመረቀችውን የምረቃ ስነስርዓት ላይ በተለይ ምን ዓይነት ልብስ ይለብሳሉ? +Kik-in-16,Food,Indonesian (Indonesia),What drink is commonly consumed in your country when the weather is cold?,በኢትዮጵያ የሙቀት ሲቀዝቅዝ በተለይ ምን መጠጥ ይጠጣል? +Kik-in-17,Food,Indonesian (Indonesia),What fruit is more commonly sold and found during Ramadan in your country?,በኢትዮጵያ ረመዳን ጊዜ በተለይ የሚሸጥና የሚገኝ ፍሬ ምንድነው? +Kik-in-24,Food,Indonesian (Indonesia),What carbohydrate is usually served with chicken in a fast-food restaurant in your country?,በኢትዮጵያ ውስጥ በፈጣን ምግብ ቤት ከዶሮ ጋር ተመጣጣኝ የሚሆን ካርቦሃድሬት ምንድን ነው? +Kik-in-31,Sport,Indonesian (Indonesia),What is the most famous martial art sports in your country?,በኢትዮጵያ ውስጥ እጅግ ተውዳጅ የሆን የማርሻል አርት ስፖርት ምንድን ነው? +Kik-in-34,Sport,Indonesian (Indonesia),What sports are often broadcasted on national television in your country?,በኢትዮጵያ ብሄራዊ ቴሌቪዥን ላይ በተደጋጋሚ የሚሰሩ ስፖርቶች ምንናን ናቸው? +Kik-in-35,Sport,Indonesian (Indonesia),What sports were popular among people from your country during the COVID-19 pandemic?,በCOVID-19 እለት በኢትዮጵያ ላይ ምን ዓይነት ስፖርቶች በሰዎች መካከል ታዋቂ ነበሩ? +Kik-in-36,Sport,Indonesian (Indonesia),Who is the most popular soccer coach in your country?,በኢትዮጵያ ታዋቂ የእግር ኳስ አሰልጣኝ ማን ነው? +Kik-in-37,Sport,Indonesian (Indonesia),What soccer teams in your country are famous for their intense rivalry? (e.g. ___ vs ___),በኢትዮጵያ ውስጥ ምንኛው እግር ኳስ ቡድኖች ለባሕርይ መዋዕላቸው ለመሆን የታወቁ ናቸው? (ምሳሌ ፡፡ ___ እና ___) +Kik-in-38,Sport,Indonesian (Indonesia),What are the names of soccer supporters in your country who are famous for their intense rivalry? (e.g. ___ vs ___),በኢትዮጵያ ውስጥ ለታላቅ ባህርይ የታወቁ እግር ኳስ ደጋፊዎች ስም ምን ይባላል? (ምሳሌ ፡፡ ___ እና ___) +Kik-in-40,Sport,Indonesian (Indonesia),Who is the most famous male badminton player in your country?,በኢትዮጵያ እጅግ የታወቀ ወንድ ባድሜንተን ተጫዋች ማን ነው? +Kik-in-41,Sport,Indonesian (Indonesia),Who is the most famous female badminton player in your country?,በኢትዮጵያ እጅግ የታወቀ ሴት ባድሜንተን ተጫዋች ማን ነው? +Kik-in-44,Sport,Indonesian (Indonesia),What sport gets the most support from the government in your country?,በኢትዮጵያ የትኛው ስፖርት ከመንግሥት የበለጠ ድጋፍ ይከተላል? +Kik-in-45,Sport,Indonesian (Indonesia),What sports field facilities are usually available at schools in your country?,በኢትዮጵያ የትምህርት ቤቶች ውስጥ በተለይ የሚገኙ የስፖርት መስኮች እንዳሉ ምን ናቸው? +Na-ko-02,Food,Korean (South Korea),What cafe beverage do people from your country most commonly enjoy?,በኢትዮጵያ ሰዎች በተለይ የሚወዱት የካፌ መጠጥ ምንድነው? +Na-ko-04,Food,Korean (South Korea),What is the preferred hangover cure food for people from your country?,ከኢትዮጵያ ሰዎች የተመረጡት የሐንጋቨር ፈውስ ምግቦች ምንድነው? +Na-ko-05,Food,Korean (South Korea),What is the typical delivery food in your country?,በኢትዮጵያ የተለመደው ከፈለጉት ቦታ የሚመጣ ምግብ ምንድን ነው? +Na-ko-07,Food,Korean (South Korea),What type of meat is consumed most by people from your country?,በኢትዮጵያ ሰዎች በብዛት የሚበሉት የሥጋ አይነት ምንድን ነው? +Na-ko-08,Food,Korean (South Korea),What fruit do people from your country often eat in the autumn season?,በኢትዮጵያ በመህር ወቅት ምን ዓይነት ፍራፍሬ በብዛት ይመገባሉ? +Na-ko-09,Food,Korean (South Korea),What side dish is the most commonly served on a dining table in your country?,በኢትዮጵያ የምግብ ጠረጴዛ ላይ በተቻለ መጠን በብዛት የሚቀርብ ምግብ ምንድን ነው? +Na-ko-11,Food,Korean (South Korea),What do people from your country eat while watching a soccer game?,ኢትዮጵያውያን እግር ኳስ ጨዋታ ሲመለከቱ ምን ይበላሉ? +Na-ko-15,Food,Korean (South Korea),What is the representative nourishing food in your country?,በኢትዮጵያ የሚወክል ምግብ ምንድን ነው? +Na-ko-16,Sport,Korean (South Korea),Who is the most famous soccer player in your country?,በኢትዮጵያ የእግር ኳስ ተጫዋቾች ዝነኛው ማን ነው? +Na-ko-17,Sport,Korean (South Korea),What sports do male students enjoy during lunch time at school in your country?,በኢትዮጵያ በትምህርት ቤት በምሳ ሰዓት ወንድ ተማሪዎች ምን ዓይነት ስፖርት ይወዳሉ? +Na-ko-18,Sport,Korean (South Korea),What is the most common sport girls participate in during physical education classes in your country?,በኢትዮጵያ የተማሪዎች በተጨማሪ ትምህርት ክፍሎች ላይ ሴቶች በተለይ በምን ዓይነት ስፖርት ላይ ተባባሪዎች ናቸው? +Na-ko-19,Sport,Korean (South Korea),Who is the most popular volleyball player in your country?,በኢትዮጵያ ታዋቂ የመረብ ኳስ ተጫዋች ማን ነው? +Na-ko-20,Sport,Korean (South Korea),What sports event do people from your country passionately support the most in international competitions?,በኢትዮጵያ ሰዎች በአለም አቀፍ ውድድር ላይ በታላቅ ቅንንት የሚደግፉት ስፖርት ክስተት ምንድን ነው? +Na-ko-22,Sport,Korean (South Korea),Which country is considered the biggest rival in soccer matches for your country?,በእግር ኳስ ጨዋታዎች ለኢትዮጵያ ትልቅ ተቃዋሚ የሚባለው ሀገር ማን ነው? +Na-ko-23,Sport,Korean (South Korea),What type of sports academies do children attend the most in your country?,በኢትዮጵያ ልጆች በብዛት የምን ዓይነት ስፖርት አካዳሚዎችን ይሰሩባቸዋል? +Na-ko-24,Sport,Korean (South Korea),What is the most commonly eaten food in sports stadiums while watching games in your country?,በኢትዮጵያ ስፖርት ስታዲዮሞች ላይ ጨዋታዎችን በመመልከት ምን ዓይነት ምግብ በተለይ ይመገባል? +Na-ko-25,Sport,Korean (South Korea),What are the typical sports played in your country's school sports day?,በኢትዮጵያ ትምህርት ቤቶች የስፖርት ቀን ላይ ተጫወቱ የሚሆኑ አይነቶች የስፖርት መድረኮች ምንድን ናቸው? +Na-ko-26,Sport,Korean (South Korea),What are the popular sports among the middle-aged population in your country?,በኢትዮጵያ በመካከለኛ ዕድሜ ላሉ ህዝቦች መካከል ታዋቂ ስፖርቶች ምንድን ናቸው? +Na-ko-28,Sport,Korean (South Korea),Who is the most popular winter sports player in your country?,በኢትዮጵያ ታዋቂ ስፖርተኛ ማን ይባላል? +Na-ko-29,Sport,Korean (South Korea),Who is the most famous swimmer in your country?,በኢትዮጵያ ታዋቂ ዋናተኛ ማን ነው? +Na-ko-30,Sport,Korean (South Korea),What is the most popular e-sports game in your country?,በኢትዮጵያ ምን ዓይነት የኢ-ስፖርት ጨዋታ እጅግ ታዋቂ ነው? +Na-ko-33,Holidays/Celebration/Leisure,Korean (South Korea),What symbolic food do people from your country eat on (Lunar) New Year?,በ(የጨረቃ) አዲስ አመት ላይ ኢትዮጵያውያን ምን የምሳሌ ምግብ ይበላሉ? +Na-ko-37,Holidays/Celebration/Leisure,Korean (South Korea),What is the most popular domestic vacation spot for people from your country?,ከኢትዮጵያ ሰዎች የሚመርጡት መኖሪያ የእረፍት ቦታ ምንድን ነው? +Na-ko-38,Holidays/Celebration/Leisure,Korean (South Korea),What is the most common wedding gift between bride and groom in your country?,በኢትዮጵያ ከሙሽራና ከሙሽራዪቱ መካከል የሚሰጣጡት ስጦታዎች ምንድናቸው? +Na-ko-39,Holidays/Celebration/Leisure,Korean (South Korea),What is typically given as a congratulatory gesture when attending a friend's wedding in your country?,በኢትዮጵያ ወዳጅ ሰው ሰርግ ሲሄድ እንደ በርካታ እጅ መንሻ ምን ይሰጣል? +Na-ko-40,Holidays/Celebration/Leisure,Korean (South Korea),"How long (in days) does a funeral typically last in your country? (Provide Arabic numerals (e.g., 12) only.)",በኢትዮጵያ ሃዘን ስንት ቀን ይቆያል? (በአረቢክ ቁጥር ብቻ ምላሽ ይስጡ (ለምሳሌ፣ 12)።) +Na-ko-41,Holidays/Celebration/Leisure,Korean (South Korea),What should you prepare as a condolence offering when attending a funeral in your country?,በኢትዮጵያ ሃዘን ስትሄድ ምን ማስተዛዘኛ መዘጋጀት አለብዎት? +Na-ko-42,Holidays/Celebration/Leisure,Korean (South Korea),What type of food is commonly provided at funeral parlors in your country?,በኢትዮጵያ ሃዘን ቤት በተለይ የሚመገበው የምግብ አይነት ምንድነው? +Na-ko-43,Holidays/Celebration/Leisure,Korean (South Korea),What do people do in your country in the morning of the (Lunar) New Year?,በ(የጨረቃ) አዲስ አመት ማለዳ በኢትዮጵያ ሰዎች ምን ያደርጋሉ? +Na-ko-44,Holidays/Celebration/Leisure,Korean (South Korea),When is the day with your country's most severe nationwide traffic congestion?,በኢትዮጵያ የትራፊክ መጨናነቅ ቀን መቼ ነው? +Na-ko-45,Holidays/Celebration/Leisure,Korean (South Korea),What is the most popular honeymoon destination in your country?,በኢትዮጵያ ምን ዓይነት ሆነይሙን መድረክ ታዋቂ ነው? +Ne-ar-05,Holidays/Celebration/Leisure,Arabic (Algeria),What is the most important national holiday in your country?,በኢትዮጵያ እጅግ አስፈላጊ ብሔራዊ በዓል ምንድን ነው? +Ne-ar-06,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Ramadan?,በራማዳን ወቅት ኢትዮጵያውያን ምን ይበላሉ? +Ne-ar-09,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Eid ul Fitr?,በኢድ አል-ፍጥር በኢትዮጵያ ሰዎች ምን ይበላሉ? +Ne-ar-10,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Eid ul Adha?,በኢድ አል-አድሃ በኢትዮጵያ ሰዎች ምን ይበላሉ? +Ne-ar-11,Holidays/Celebration/Leisure,Arabic (Algeria),Where do people from your country go to celebrate New Year's Day?,ኢትዮጵያውያን አዲስ አመትን ለመዝናናት ወዴት ይሄዳሉ? +Ne-ar-14,Holidays/Celebration/Leisure,Arabic (Algeria),Where do a family gather for Eid festivities in your country?,ቤተሰብ በኢትዮጵያ ለኢድ በዓል የሚሰበሰብበት ቦታ የት ነው? +Ne-ar-16,Work life,Arabic (Algeria),"When is the weekend in your country (e.g. Monday, Tuesday)?",በኢትዮጵያ የሳምንቱ መጨረሻ ቀን መቼ ነው (ምሳሌ ሰኞ፣ ማክሰኞ)? +Ne-ar-17,Work life,Arabic (Algeria),"At what time do most people start work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","በኢትዮጵያ ብዙም ሰዎች ስራን በምን ሰዓት ይጀምራሉ? (በኤችኤች:ኤምኤም ቅጽ ይምረጡ (ምሳሌ 18:00, 09:00).)" +Ne-ar-18,Work life,Arabic (Algeria),"At what time do most people finish work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","በኢትዮጵያ ብዙዎቹ ሰዎች ስራ በምን ሰዓት ይጨርሳሉ? (በኤችኤች:ኤምኤም ቅጽ ያቅርቡ (ምሳሌ 18:00, 09:00).)" +Ne-ar-20,Work life,Arabic (Algeria),What is considered to be a secure job in your country?,በኢትዮጵያ የታመነ ሥራ ምን ነው? +Ne-ar-24,Work life,Arabic (Algeria),Which city is the primary commercial hub in your country?,በኢትዮጵያ ዋናው ንግድ ማእከል የሆነው ከተማ ማንኛው ነው? +Ne-ar-25,Work life,Arabic (Algeria),What is the industry that pays the best in your country?,በኢትዮጵያ ምን ዓይነት ኢንዱስትሪ እጅግ የሚከፍል ነው? +Ne-ar-26,Work life,Arabic (Algeria),What is the most famous public corporation in your country?,በኢትዮጵያ ውስጥ እጅግ የሚታወቀው የህዝብ ኩባንያው ምንድን ነው? +Ne-ar-31,Food,Arabic (Algeria),What is the most famous dish in your country?,በኢትዮጵያ ምን ዓይነት ምግብ እጅግ ዝናና ነው? +Ne-ar-32,Food,Arabic (Algeria),What do people usually have for breakfast in your country?,በኢትዮጵያ ሰዎች ለእለታዊ ቁርስ እንዴት ዓይነት ምግብ ይመገባሉ? +Ne-ar-33,Food,Arabic (Algeria),"When do people usually have lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","በኢትዮጵያ ሰዎች ምሳ በተለይ ምን ሰዓት ይበላሉ? (በ HH:MM ቅጽ ያቅርቡ (ምሳሌ 18:00, 09:00).)" +Ne-ar-34,Food,Arabic (Algeria),What is typically indispensable in meals in your country?,በኢትዮጵያ ምግብ በተለይ ምን ነገር አስፈላጊ ነው? +Ne-ar-36,Food,Arabic (Algeria),What is a typical festive meal in your country?,በኢትዮጵያ እንደበዓል የሚበላ አነስተኛ ምግብ ምንድነው? +Ne-ar-37,Food,Arabic (Algeria),Which fruit do people usually offer tourists/visitors from abroad in your country?,በኢትዮጵያ በሚመጡ ጎብኚዎች ምን ዓይነት ፍራፍሬ በተለምዶ ይሰጣሉ? +Ne-ar-38,Food,Arabic (Algeria),Which food do people usually offer as charity in your country?,በኢትዮጵያ ሰዎች በተለምዶ ለበጎ አድራጎት ምን ዓይነት ምግብ ይሰጣሉ? +Ne-ar-39,Food,Arabic (Algeria),What is the cheapest fast food in your country?,በኢትዮጵያ ውስጥ ትንሽ ዋጋ ያለው ፈጣን ምግብ ምንድነው? +Ne-ar-43,Food,Arabic (Algeria),What do people usually have with tea in your country?,በኢትዮጵያ ሰዎች በተለይ ከሻይ ጋር ምን ይመገባሉ? +Ne-ar-44,Food,Arabic (Algeria),What do people have with coffee in your country?,በኢትዮጵያ ሰዎች ከቡና ጋር ምን ይበላሉ? +New-am-02,Food,Amharic (Ethiopia),What is the most popular traditional food in your country?,በኢትዮጵያ እጅግ ታዋቂው ባህላዊ ምግብ ምንድነው? +New-am-04,Food,Amharic (Ethiopia),What is the most popular dipping sauce in your country?,በኢትዮጵያ ምን ዓይነት ወጥ እጅግ ታዋቂ ነው? +New-am-08,Food,Amharic (Ethiopia),What food is most often consumed during Christian fasting in your country?,በኢትዮጵያ በክርስቲያኖች ጾም ጊዜ በተለይ የሚበላ ምግብ ምንድን ነው? +New-am-15,Food,Amharic (Ethiopia),What food is usually prepared when mothers give birth in your country?,እናቶች በኢትዮጵያ ሲወልዱ በተለይ የሚዘጋጀው ምግብ ምንድን ነው? +New-am-27,Sport,Amharic (Ethiopia),Who is the most popular female sportperson in your country?,በኢትዮጵያ እጅግ ታዋቂዋ ሴት ስፖርተኛ ማን ናት? +New-am-34,Education,Amharic (Ethiopia),Where do most elementary school students prepare for their exams in your country?,በኢትዮጵያ በአብዛኛው የመጀመሪያ ደረጃ ት/ቤት ተማሪዎች ለፈተናቸው የት ቦታ ይዘጋጃሉ? +New-am-41,Education,Amharic (Ethiopia),"In your country, at which grade level do students take their first national-level examination?",በኢትዮጵያ በስንተኛው የክፍል ደረጃ ላይ ተማሪዎች የመጀመሪያውን ብሄራዊ ፈተና የሚወስዱት? +New-am-53,Work life,Amharic (Ethiopia),Which region in your country is widely known for its coffee/tea industry?,በኢትዮጵያ ምንኛው ክልል ለቡና/ሻይ ኢንዱስትሪ በስፋት ታውቃል? +New-am-54,Work life,Amharic (Ethiopia),Which region in your country is widely known for its livestock industry?,በኢትዮጵያ ውስጥ የትኛው ክልል በእንስሳት እርባታ ኢንዱስትሪ በስፋት ይታወቃል? +New-am-59,Work life,Amharic (Ethiopia),What is the main occupation of people living in deserts in your country?,በኢትዮጵያ በበርሃማ አካባቢ የሚኖሩ ሰዎች ዋና ሥራ ምንድን ነው? +New-am-60,Work life,Amharic (Ethiopia),Which animal is typically used for transportation in your country?,በኢትዮጵያ የትኛው እንስሳት ነው ለመጓጓዣነት የሚያገለግለው? +New-am-72,Family,Amharic (Ethiopia),What is the most popular comic book for children to read in your country?,በኢትዮጵያ ለልጆች ለመነበብ በአዝናኝነቱ በጣም ታዋቂው መጽሐፍ የቱ ነው? +New-am-73,Family,Amharic (Ethiopia),What is the most popular YouTube channel for children in your country?,በኢትዮጵያ ለልጆች በጣም ታዋቂ የዩቲዩብ ቻናል ምንድን ነው? +New-am-74,Family,Amharic (Ethiopia),What is the most popular talk show in your country?,በኢትዮጵያ እጅግ ተወዳጁ የውይይት ፕሮርጋም ነው? +New-am-77,Holidays/Celebration/Leisure,Amharic (Ethiopia),What is the most famous religious holiday in your country?,በኢትዮጵያ እጅግ ታዋቂው ሃይማኖታዊ ባዓል የቱ ነው? +New-am-81,Holidays/Celebration/Leisure,Amharic (Ethiopia),"What is the busiest month for weddings in your country? (Provide Arabic numerals (e.g., 1) only.)",በኢትዮጵያ እጅግ በጣም ሰርግ የሚበዛበት ወር የትኛው ነው? (በቁጥረ (ምሳሌ 1) ብቻ ስጡ።) +New-am-83,Holidays/Celebration/Leisure,Amharic (Ethiopia),What is the most popular traditional musical instrument in your country?,በኢትዮጵያ ምን ዓይነት ባህላዊ የሙዚቃ መሣሪያ እጅግ ታዋቂ ነው? +New-as-01,Food,Assamese (Assam),What is the main agricultural product produced in your country?,በኢትዮጵያ የሚመረተው ዋና የእርሻ ምርት ምንድነው? +New-as-02,Food,Assamese (Assam),What is the most popular wheat-based food item in your country?,በኢትዮጵያ እጅግ ታዋቂው ከስንዴ ግባአት የሚዘጋጅ ምግብ ምንድን ነው? +New-as-05,Food,Assamese (Assam),What is the most typical drink offered to guests when they visit households in your country?,በኢትዮጵያ እንግዶች ቤተሰቦችን ሲጎበኙ የሚቀርብላቸው እጅግ እንደተለመደ መጠጥ ምንድን ነው? +New-as-07,Food,Assamese (Assam),What is the most popular dish cooked with fish in your country?,በኢትዮጵያ በጣም የታወቀው ከአሳ የሚዘጋጅ ምግብ ምንድን ነው? +New-as-14,Food,Assamese (Assam),What food do people from your country like to eat during rainy weather?,በዝናባማ ወራት ጊዜ ኢትዮጵያውያን ምን ምግብ ይወዳሉ? +New-as-15,Food,Assamese (Assam),What drink is commonly consumed in your country when the weather is hot?,በኢትዮጵያ የአየር ሙቀት ሲጨምር ምን መጠጥ በአብዛኛው ይጠጣል? +New-as-20,Sport,Assamese (Assam),What is the most popular indoor sport in your country?,በኢትዮጵያ የትኛው ዓይነት የቤት ውስጥ ስፖርት በጣም ታዋቂ ነው? +New-as-29,Sport,Assamese (Assam),What sport do men in your country like to watch?,በኢትዮጵያ ወንዶች ምን ዓይነት ስፖርት መመልከት ይወዳሉ? +New-as-30,Sport,Assamese (Assam),What sport do women in your country like to watch?,ኢትዮጵያዊት ሴቶች ምን ዓይነት ስፖርት መመልከት ይወዳሉ? +New-as-58,Work life,Assamese (Assam),What is the most popular beverage that people from your country like to drink in their workplace?,በኢትዮጵያ ሰዎች በየስራ ቦታቸው ለመጠጣት የሚወዱት እጅግ ታዋቂ መጠጥ ምንድን ነው? +New-as-64,Family,Assamese (Assam),On which holiday do all family members tend to reunite in your country?,በኢትዮጵያ በየትኛው በዓል ሁሉም ቤተሰቦች በአንድ ላይ ለመሆን ይሻሉ? +New-as-76,Holidays/Celebration/Leisure,Assamese (Assam),What traditional games do families play during traditional holidays in your country?,በኢትዮጵያ በባህላዊ በዓላት ጊዜ ቤተሰቦች ምን ዓይነት ባህላዊ ጨዋታዎች ይጫወታሉ? +New-as-80,Holidays/Celebration/Leisure,Assamese (Assam),What type of clothing do people from your country wear during traditional festivals?,በኢትዮጵያ በባህላዊ በዓላት ላይ ሰዎች የምን ዓይነት አልባሳት ይለብሳሉ? +New-as-89,Holidays/Celebration/Leisure,Assamese (Assam),What traditional festival accessories do people from your country wear?,በኢትዮጵያ በባህላዊ በዓላት ላይ ሰዎች የምን ዓይነት ጌጣጌጥ ይለብሳሉ? +New-az-05,Food,Azerbaijani (Azerbaijan),What is the most famous region for alcohol production in your country?,በኢትዮጵያ በአልኮል ምርት እጅግ ታዋቂ የሆነ ክልል የት ነው? +New-az-11,Food,Azerbaijani (Azerbaijan),What fruit do people from your country often eat in the summer season?,በክረምት ወራት ሰዎች በኢትዮጵያ በብዛት የሚበሉት ፍሬ ምንድን ነው? +New-az-12,Food,Azerbaijani (Azerbaijan),Which region in your country is known for its seafood?,በኢትዮጵያ ውስጥ በባህር ምግብ ምርቱ የታወቀው ክልል የቱ ነው? +New-az-21,Sport,Azerbaijani (Azerbaijan),Which region in your country is the most popular skiing destination?,በኢትዮጵያ የትኛው ክልል ለበረዶ መንሸራተቻ ጨዋታ በጣም ታዋቂ ነው? +New-az-26,Sport,Azerbaijani (Azerbaijan),Who is the most popular martial arts player in your country?,በኢትዮጵያ እጅግ ታዋቂ የማርሻል አርት ተጫዋች ማነው? +New-az-27,Sport,Azerbaijani (Azerbaijan),Which sport has been one of the fastest-growing in your country over the last decade?,ባለፉት አስር አመታት ውስጥ በኢትዮጵያ እያደገ የነበረው ስፖርት ምንድን ነው? +New-az-39,Education,Azerbaijani (Azerbaijan),Which country is the most popular destination for students from your country studying abroad?,ከኢትዮጵያ ለትምህርት ወዴ ውጭ የሚሄዱ ተማሪዎች በአብዛኛው የሚመርጡት አገር የቱ ነው? +New-az-49,Work life,Azerbaijani (Azerbaijan),"How many people work in a typical family in your country? (Provide Arabic numerals (e.g., 1) only.)",በኢትዮጵያ በአንድ ቤተሰብ ስንት ሰዎች ይኖራሉ? (እባኮትን በቁጥር (ምሳሌ 1) ብቻ ያቅርቡ።) +New-az-60,Family,Azerbaijani (Azerbaijan),"In your country, who takes care of kids when both parents are working?",በኢትዮጵያ፣ ሁለቱም ወላጆች ሰራተኞች ከሆኑ ልጆችን ማን ይከታተላል? +New-az-69,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),What is the preferred alcoholic beverage for men from your country?,ኢትዮጵያ ወንዶች የሚመርጡት የአልኮል መጠጥ ምንድነው? +New-az-70,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),What is the preferred alcoholic beverage for women from your country?,ኢትዮጵያ ሴቶች የሚመርጡት አስካሪ መጠጥ መጠጥ ምንድነው? +New-az-73,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),"How many people on average typically attend a wedding in your country? (Provide Arabic numerals (e.g., 1) only.)",ኢትዮጵያ በተለይ ሰርግ ላይ በአማካይ ስንት ሰዎች ይሳተፋሉ? (በቁጥረ (ምሳሌ 1) ብቻ ስጡ።) +New-ch-01,Food,Chinese (China),What kind of meat do people usually eat when they have barbecue in your country?,በኢትዮጵያ ሰዎች ጥብስ ሲሰሩ በተለይ የሚጠቀሙት ምን ዓይነት ሥጋ ነው? +New-ch-02,Food,Chinese (China),"When do people usually have breakfast in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","በኢትዮጵያ ሰዎች በተለይ ምን ሰዓት ቁርስ ይበላሉ? (በሰዓት አስቅምጡ (ምሳሌ 18:00, 09:00).)" +New-ch-04,Food,Chinese (China),What kinds of food do people usually eat for late-night snacks in your country?,በኢትዮጵያ ሰዎች በምሽት ምግብ ሲበሉ በተለይ ምን ዓይነት ምግብ ይመገባሉ? +New-ch-05,Food,Chinese (China),What is the most famous spicy dish in your country?,በኢትዮጵያ በጣም ዝኘኛ የሚያቃጥል ምግብ ምንድነው? +New-ch-07,Food,Chinese (China),What food items do people typically pair with hard liquor in your country?,በኢትዮጵያ ሰዎች ከጠንካራ መጠጥ ጋር በተለይ የሚወሰዱ ምግቦች ምንምን ናቸው? +New-ch-08,Food,Chinese (China),What seasoning is indispensable in cooking in your country?,በኢትዮጵያ ምግብ ለማብሰል ምን ዓይነት ቅመማ ቅመም አስፈላጊ ነው?? +New-ch-09,Food,Chinese (China),What food do people typically consume when the weather is cold in your country?,በኢትዮጵያ የአየር ሁኔታ ቀዝቃዛ ሲሆን ሰዎች በተለይ ምን ምግብ ይመገባሉ? +New-ch-13,Food,Chinese (China),What is the most famous alcohol brand in your country?,በኢትዮጵያ ምን ዓይነት አልኮል ብራንድ እጅግ ዝነኛ ነው? +New-ch-14,Food,Chinese (China),What foods do people usually eat when they are sick in your country?,በኢትዮጵያ ሰዎች ሲታመሙ በተለይ ምን ምግቦችን ይመገባሉ? +New-ch-15,Food,Chinese (China),What prepared/ready-to-eat food do people typically buy at supermarkets in your country?,በኢትዮጵያ ሰዎች ከሱፐርማርኬቶች ምን አይነት የተዘጋጁ ምግቦችን በተለይ ይገዛሉ? +New-ch-16,Sport,Chinese (China),What is the most famous sports-related movie in your country?,በኢትዮጵያ በጣም ታዋቂው ከስፖርት ጋር የተያያዥነት ያለው ፊልም ምንድነው? +New-ch-17,Sport,Chinese (China),What extreme sport do people generally wish to try the most in your country?,በኢትዮጵያ ሰዎች ብዙ ለመሞከር የሚፈልጉት ምን ዓይነት ስፖርት ነው? +New-ch-18,Sport,Chinese (China),Which track and field event is the most popular to watch during competitions in your country?,በኢትዮጵያ በቤት ወስጥ እና በሜዳ ላይ ከሚከናወኑ ውድድሮች ለመመልከት እጅግ ታዋቂዎቹ የትኞቹ ናቸው? +New-ch-19,Sport,Chinese (China),Which gymnastics event is the most popular to watch during competitions in your country?,በኢትዮጵያ ከሚደረጉ ውድድሮች ለመታየት በጣም ተወዳጅ የሆነው የትኛው የጂምናስቲክ ዝግጅት ነው? +New-ch-23,Sport,Chinese (China),Who is the most famous table tennis player in your country?,በኢትዮጵያ በጣም ታዋቂው የጠረጴዛ ቴኒስ ተጫዋች ማነው? +New-ch-26,Sport,Chinese (China),"In the Winter Olympics, which event is the most popular to watch in your country?",በኢትዮጵያ በክረምት ኦሊምፒክ ለመታየት በጣም ታዋቂ የሆነው የትኛው ዝግጅት ነው? +New-ch-27,Sport,Chinese (China),Who is the most famous boxer in your country?,በኢትዮጵያ በጣም ታዋቂው ቦክሰኛ ማነው? +New-ch-30,Sport,Chinese (China),Who is the most famous track and field athlete in your country?,በኢትዮጵያ በቤት ወስጥና በሜዳ ውድድሮች እጅግ ታዋቂ የሆነው አትሌት ማነው? +New-ch-31,Work life,Chinese (China),What job do parents most hope their children will pursue in your country?,በኢትዮጵያ ወላጆች ለልጆቻቸው ከሁሉ ይልቅ የሚመኙት የስራ አይነት ምንድነው? +New-ch-32,Work life,Chinese (China),What office software do people typically use in the workplace in your country?,በኢትዮጵያ ሰዎች ምን አይነት የተለየ ሶፍትዌን ለቢሮ ስራ ይጠቀማሉ? +New-ch-38,Work life,Chinese (China),Which cities or regions are known for their import and export activities in your country?,በኢትዮጵያ ምርት ወደ ውጭ በመላክና ከውጭም በማስገባት ታዋቂ የሆነ ከተማ ወይም ክልል የቱ ነው? +New-ch-39,Work life,Chinese (China),What platform is commonly used in the e-commerce industry in your country?,በኢትዮጵያ በበይነ-መረብ ንግድ ኢንዱስትሪው በአብዛኛው የሚታወቅ ድረ-ገፅ የትኛው ነው? +New-ch-44,Work life,Chinese (China),"How long is the typical probation period for new employees before signing a formal contract in your country? (e.g., 1 month).",በኢትዮጵያ የአዲስ ሠራተኞች መደበኛዉን የቅጥር ፎርም ከመፈረማቸው በፊት በተልየ የሚፈርሙት የሙከራ ቅጥር ለምን ያክል ጊዜ ነው? (ምሳሌ 1 ወር)። +New-ch-45,Work life,Chinese (China),Which industries do young people typically choose to start businesses in your country?,በኢትዮጵያ ወጣቶች ስራ ለመጀመር በተለይ የትኛውን ዓይነት የስራ ዘርፍ ይመርጣሉ? +New-ch-49,Family,Chinese (China),What is the most common way for family members to communicate remotely in your country?,በኢትዮጵያ ቤተሰቦች የርቀት ግንኙነት ለማድረግ በተለይ የሚመርጡት የመገናኛ ዘዴ ምንድን ነው? +New-ch-51,Family,Chinese (China),What form of accommodation is typically booked for family trips in your country?,በኢትዮጵያ ለቤተሰብ ጉዞዎች በተለይ የሚመረጠው የእንግዳ ማረፊያ የትኛው ነው? +New-ch-54,Family,Chinese (China),Which fruit is usually prepared the most for family dinners in your country?,በኢትዮጵያ በቤተሰቦች የእራት ምግብ ላይ በተለይ ተዘጋጅቶ የሚቀርብ ፍራፍሬ ምንድን ነው? +New-ch-64,Education,Chinese (China),"How many hours of classes do university students typically have per week in your country? (Provide Arabic numerals (e.g., 1) only.)",በኢትዮጵያ ዩኒቨርስቲ ተማሪዎች በሳምንት ለምን ያክል ሰዓት ክፍለጊዜ አሉአቸው? (በቁጥር (ምሳሌ 1) በለው ይስጡ።) +New-ch-66,Education,Chinese (China),"What is the typical tuition fee per semester for public high schools in your country? (Provide Arabic numerals (e.g., 1) only.)",በኢትዮጵያ በህዝብ ከፍተኛ ትምህርት ቤቶች ለአንድ ሴሜስተር የሚከፈል የትምህርት ክፍያ ስንት ነው? (በቁጥር (ምሳሌ 1) ብለው ይስጡ።) +New-ch-70,Education,Chinese (China),What compulsory courses do university students have in common in your country?,በኢትዮጵያ ሁሉም የዩኒቨርስቲ ተማሪዎች በጋራ የሚማሯቸው አስፈላጊ ኮርሶች የትኞቹ ናቸው? +New-ch-71,Education,Chinese (China),"What is the average class size in high schools in your country? (Provide Arabic numerals (e.g., 1) only.)",በኢትዮጵያ በከፍተኛ 2ኛ ደረጃ ትምህርት ቤቶች ውስጥ በአንድ የክፍል አማካይ መጠን ስንት ነው? (በቁጥር (ምሳሌ 1) ይፃፉ።) +New-ch-72,Education,Chinese (China),Which major is considered most conducive to employment in your country?,በኢትዮጵያ የትኛው ዓይነት ዋና የትምህርት መስከ ለሥራ ቅጥር እጅግ ጥሩ ነው? +New-ch-73,Education,Chinese (China),What type of clubs are most popular among university students in your country?,በኢትዮጵያ በዩኒቨርስቲ ተማሪዎች በዝነኛነት የሚታወቁት ክለቦች ምን አይነት ናቸው? +New-ch-74,Education,Chinese (China),What types of accommodation do university students in your country typically live in?,በኢትዮጵያ የዩኒቨርስቲ ተማሪዎች በተለይ የምን ዓይነት መኖሪያ ይኖራሉ? +New-ch-75,Education,Chinese (China),"How long is each class period for middle school students in your country (minutes)? (Provide Arabic numerals (e.g., 1) only.)",በኢትዮጵያ ለመካከለኛ ት/ቤት ተማሪዎች እያንዳንዱ ክፍለ-ትምህርት ጊዜ ስንት ደቂቃ ነው? (በቁጥር ብቻ ምላሽ ይስጡ። ምሳሌ፡ 1) +New-ch-78,Holidays/Celebration/Leisure,Chinese (China),What leisure activities do retired women typically like in your country?,በኢትዮጵያ ጡረተኛ ሴቶች የሚወዷቸው የመዝናኛ እንቅስቃሴዎች የትኞቹ ናቸው? +New-ch-79,Holidays/Celebration/Leisure,Chinese (China),What leisure activities do retired men typically like in your country?,በኢትዮጵያ ጡረተኛ ወንዶች የሚወዷቸው የመዝናኛ እንቅስቃሴዎች የትኞቹ ናቸው? +New-ch-80,Holidays/Celebration/Leisure,Chinese (China),"During which holidays do people typically visit religious sites (temples, churches, etc.) in your country?",በኢትዮጵያ ሰዎች በተለይ በየትኞቹ ሀይማኖታዊ በዓላት ጊዜ ነው ቅዱሳን ቦታዎችን (ቤተ ክርስቲያኖች፣ መቅደሶች ወዘተ) የሚጎበኙት? +New-ch-81,Holidays/Celebration/Leisure,Chinese (China),What are the typical housewarming gifts in your country?,በኢትዮጵያ በተለይ ቤት የሚያደምቁ ስጦታዎች የትኞቹ ናቸው? +New-ch-82,Holidays/Celebration/Leisure,Chinese (China),"At what time do weddings typically start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","በኢትዮጵያ የሰርግ ስነስርዓት በተለይ ስንት ሰዓት ላይ ይጀመራል? (ምሳሌ 18:00, 09:00) ይምረጡ።)" +New-ch-83,Holidays/Celebration/Leisure,Chinese (China),Which city in your country hosts festivals the most?,ከኢትዮጵያ ከተሞች በርካታ ዝግጅቶችን የሚያስተናግደው የትኛው ነው? +New-ch-84,Holidays/Celebration/Leisure,Chinese (China),What color of clothing do people typically wear when attending weddings in your country?,በኢትዮጵያ ሰዎች ሰርግ ስነስርዓት ላይ ለመታደም በተለይ የሚለብሱት የልብስ ቀለም ምን አይነት ነው? +New-ch-85,Holidays/Celebration/Leisure,Chinese (China),What color of clothing do people typically wear when attending funerals in your country?,በኢትዮጵያ ሰዎች ሀዘን ስነስርዓት ላይ ለመታደም በተለይ የሚለብሱት የልብስ ቀለም ምን አይነት ነው? +New-en-01,Food,English (UK),Which snack is eaten in the cinema in your country?,በኢትዮጵያ ሲኒማ ውስጥ የሚመገቡት ምግብ የትኛው ነው? +New-en-02,Food,English (UK),What is the most popular chip/crisp flavour in your country?,በኢትዮጵያ ታዋቂውና ጥራት ያለው ጣዕም የትኛው ነው? +New-en-04,Food,English (UK),Who is a popular celebrity chef in your country?,በኢትዮጵያ ውስጥ ውስጥ ዝነኛና ታዋቂ ሼፍ ማን ነው? +New-en-05,Food,English (UK),Which food is a cost-effective and quick meal option in your country?,በኢትዮጵያ ውስጥ የትኛው የምግብ አይነት ነው በጣም ርካሽና ፈጣን የምግብ አማራጭ የሚባለው? +New-en-07,Food,English (UK),What are the most popular cooking shows in your country?,በኢትዮጵያ ዝነኛውና ታዋቂው የምግብ ዝግጅት ፕሮግራም/ሾው የቱ ነው? +New-en-08,Food,English (UK),What is the most popular chocolate brand in your country?,በኢትዮጵያ ምን ዓይነት ቸኮሌት ብራንድ እጅግ ታዋቂ ነው? +New-en-10,Food,English (UK),What is the most eaten cheese in your country?,ኢትዮጵያ ውስጥ በብዛት የሚበላው የአይብ አይነት የትኛው ነው? +New-en-11,Food,English (UK),What is the most disliked vegetable in your country?,በኢትዮጵያ እጅግ የተጠላ አትክልት ምንድን ነው? +New-en-12,Food,English (UK),What food is most commonly found in food courts in your country?,ኢትዮጵያ ወስጥ የትኛው የምግብ አይነት ነው በአብዛኛው የምግብ ጠርጴዛ ላይ የማይታጣው? +New-en-17,Sport,English (UK),What are the most common cheering tools used by sports fans in your country?,ኢትዮጵያ ውስጥ የስፖርት አድናቂዎች የሚጠቀሙባቸው በጣም የተለመዱ የደስታ መግለጫ ምግቦች የትኞቹ ናትው? +New-en-18,Sport,English (UK),What do fans bring with them when attending a live game in your country?,ኢትዮጵያ ውስጥ በቀጥታ ጨዋታ ላይ ሲገኙ የስፖርት አድናቂዎች የሚጠቀሙባቸው በጣም የተለመዱ የደስታ መግለጫ ምግቦች የትኞቹ ናትው? +New-en-19,Sport,English (UK),What is the most well known sporting stadium in your country?,በኢትዮጵያ ውስጥ በጣም ታዋቂ የስፖርት ስታዲየም የትኛው ነው? +New-en-23,Sport,English (UK),Who is the most famous Paralympian in your country?,በኢትዮጵያ ወስጥ በትም ታዋቂው የፓራሊምፒክ ስፖርተኛ ማን ነው? +New-en-26,Sport,English (UK),What is the best recognized sporting chant in your country?,በኢትዮጵያ ውስጥ በጣም ታዋቂው የስፖርት ዝማሬ ምንድነው? +New-en-38,Work life,English (UK),Which industries are known for more flexible working hours in your country?,በኢትዮጵያ የትኛው የስራ ዘርፍ ነው ተለማጭ የስራ ሰዓት ያለው? +New-en-41,Work life,English (UK),Who is the most well known and successful entrepreneur in your country?,በኢትዮጵያ ውስጥ በጣም ታዋቂ እና ስኬታማ የስራ ፈጣሪ ማን ነው? +New-en-47,Family,English (UK),What can typically be found in the back garden of houses in your country?,በኢትዮጵያ በቤቶች የኋላ ቦታ/ጓሮ ውስጥ ምን ይገኛል? +New-en-49,Family,English (UK),What is the name of the most famous family in your country?,በኢትዮጵያ ውስጥ እጅግ ዝነኛ የሆነው የቤተሰብ አባል ማነው? +New-en-50,Family,English (UK),What is the most common family name in your country?,በኢትዮጵያ በጣም ታዋቂ የቤተሰብ ስም ምንድን ነው? +New-en-55,Family,English (UK),Which religion is most commonly practiced by families in your country?,በኢትዮጵያ ውስጥ የትኛው ሃይማኖት ነው በርካታ ተከታይ ያለው? +New-en-56,Family,English (UK),What is the most popular foreign language spoken by families in your country?,በኢትዮጵያ ውስጥ የትኛው የውጭ ቋንቋ ነው በአብዛኛው የቤተሰብ አባላት የሚነገረው? +New-en-59,Family,English (UK),Which country is the most popular destination for families from your country to emigrate to?,የትኛው ሀገር ነው ለበርካታ ኢትዮጵያዊያን ቤተሰቦች በጣም ታዋቂ የስደት መዳረሻ የሆነው? +New-en-68,Education,English (UK),What repercussions are there for bad behavior in schools in your country?,በኢትዮጵያ ትምህርት ቤቶች ውስጥ ለመጥፎ ባህሪ የሚዳርጉ ተግባራት የትኞቹ ናቸው? +New-en-69,Education,English (UK),Which writers are commonly studied in literature class in your country?,በኢትዮጵያ ውስጥ የትኞቹ ጸሐፊዎች በሥነ ጽሑፍ ክፍል ውስጥ በብዛት ይጠናሉ? +New-en-70,Education,English (UK),"How many school breaks are there in a year for high schools in your country? (Provide Arabic numerals (e.g., 1) only.)",ኢትዮጵያ ውስጥ በአንድ ዓመት ተምህርት ለስንት ጊዜ ለዕርፍት ይዘጋል ? (በቁጥር ብቻ ምላሽ ይስጡ (ለምሳሌ፣ 1)።) +New-en-72,Education,English (UK),Which online resource do students usually use to study in your country?,በኢትዮጵያ ተማሪዎች ለጥናት በተለይ የሚጠቀሙበት የበይነ-መረብ የትምህርት መርጃ ምንድነው? +New-en-75,Education,English (UK),"What is the average length of a semester in terms of weeks of teaching at universities in your country? (Provide Arabic numerals (e.g., 1) only.)",በኢትዮጵያ ዩኒቨርስቲዎች ውስጥ አንድ ሴሜስተር ለምን ያክል ሳምንት ይቆያል? (በቁጥር (ምሳሌ 1) በለው ይሙሉ።) +New-en-76,Holidays/Celebration/Leisure,English (UK),Which airport in your country is the busiest during the holiday season?,በኢትዮጵያ በዓል ወቅት በጣም የሚጨናነቅ አየር ማረፊያ የቱ ነው? +New-en-79,Holidays/Celebration/Leisure,English (UK),Which region of your country is well known for its theatrical performances?,የኢትዮጵያ የትኛው የሀገሪቱ ክፍል ነው በቲያትር ትወና በጣም ታዋቂ የሆነው ነው? +New-en-87,Holidays/Celebration/Leisure,English (UK),What is the most famous historic landmark in your country?,በኢትዮጵያ ውስጥ የታሪክ እጅግ ታዋቂ ቦታ የቱ ነው? +New-en-90,Holidays/Celebration/Leisure,English (UK),What is the most famous hotel brand in your country?,በኢትዮጵያ ውስጥ እጅግ ዝነኛ የሆነ ሆቴል ብራንድ ምንድን ነው? +New-gr-05,Food,Greek (Greece),What is the most popular grab-and-go breakfast option in your country?,በኢትዮጵያ በጣም ታዋቂው ለቁርስ ተመራጭ የሆነው የፈጣን እና ተይዞ የሚኬድ ምግብ ምድነው? +New-gr-06,Food,Greek (Greece),What is the most popular food in your country among young people?,በኢትዮጵያ ውስጥ በአብዛኛው በሰዎች ዘንድ ታዋቂው ምግብ ምንድነው? +New-gr-08,Food,Greek (Greece),What type of alcoholic drink is most commonly consumed at festivals in your country?,በኢትዮጵያ በተለያዩ በዓሎች ላይ የሚጠጣ የአልኮል መጠጥ አይነት ምንድነው? +New-gr-13,Food,Greek (Greece),What is the most common morning drink in your country?,በኢትዮጵያ በጥዋት የተለመደ መጠጥ ምንድነው? +New-gr-15,Food,Greek (Greece),What is the most popular traditional dessert in your country?,በኢትዮጵያ ምን ዓይነት ባህላዊ ጣፋጭ ምግብ እጅግ ታዋቂ ነው? +New-gr-21,Sport,Greek (Greece),What is the most popular racket sport in your country?,በኢትዮጵያ ምን ዓይነት ሬኬት ስፖርት እጅግ ታዋቂ ነው? +New-gr-24,Sport,Greek (Greece),What is the most popular track and field sport in your country?,በኢትዮጵያ ውስጥ በትራክና በመስክ ስፖርት ውስጥ እጅግ ታዋቂ የሆነው ስፖርት ምንድን ነው? +New-gr-29,Sport,Greek (Greece),Which international sporting event is the most popular in your country?,በኢትዮጵያ ምንኛው ዓለም አቀፍ የስፖርት ዝግጅት እጅግ ታዋቂ ነው? +New-gr-47,Work life,Greek (Greece),"How long (in minutes) are typical work breaks in your country, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)",በኢትዮጵያ ውስጥ በተለይ የስራ ዕረፍት ጊዜ (በደቂቃ) የምሳ እና የእራት ጊዜን ሳይጨምር በደቂቃ ስንት ነው? (እባክዎን በቁጥር (ምሳሌ 1) ብቻ ያቅርቡ።) +New-gr-58,Work life,Greek (Greece),Which job is considered underpaid in your country?,በኢትዮጵያ ዝቅተኛ ክፍያ ያለው ምን ዓይነት ስራ ነው? +New-gr-76,Holidays/Celebration/Leisure,Greek (Greece),What is the most common food served during Easter in your country?,በኢትዮጵያ በአብዛኛው በፋሲካ በዓል የሚቀርብ ምግብ ምንድነው? +New-gr-82,Holidays/Celebration/Leisure,Greek (Greece),What is the most popular music genre among the elderly population in your country?,በኢትዮጵያ በታላላቅ ሰዎች/አዋቂዎች መካከል እጅግ ታዋቂ የሆነ የሙዚቃ አይነት ምንድን ነው? +New-gr-88,Holidays/Celebration/Leisure,Greek (Greece),What drink is usually offered at funerals in your country?,በኢትዮጵያ የቀብር ሥነ ሥርዓቶች ላይ የሚቀርብ መጠጥ ምንድነው? +New-gr-89,Holidays/Celebration/Leisure,Greek (Greece),What drink is usually offered at weddings in your country?,በኢትዮጵያ በሰርግ ሥነ ሥርዓቶች ላይ የሚቀርብ መጠጥ ምንድነው? +New-ha-07,Food,Hausa (Northern Nigeria),What food originated from your country and can be found all over the world?,በዓለም አቀፍ ደረጃ ሁሉም ቦታ የሚገኝ የኢትዮጵያ የምግብ አይነት ምንድነው? +New-ha-08,Food,Hausa (Northern Nigeria),What food is typically disliked by children but enjoyed by the elderly in your country?,በኢትዮጵያ ልጆች በተለይ የሚጠሉት ምግብ ነገር ግን ሽማግሌዎች የሚወዱት ምንድነው? +New-ha-09,Food,Hausa (Northern Nigeria),What cooking utensil is most commonly used in your country?,በኢትዮጵያ በተለይ የሚጠቀምበት የምግብ ማብሰሪያ ምንድነው? +New-ha-13,Food,Hausa (Northern Nigeria),Which is the most popular vegetable in your country?,በኢትዮጵያ ምን ዓይነት አትክልት እጅግ ታዋቂ ነው? +New-ha-19,Sport,Hausa (Northern Nigeria),Which animal is used for sports in your country?,በኢትዮጵያ ለስፖርት እንቅስቃሴ የሚውል እንስሳ ምንድነው? +New-ha-66,Family,Hausa (Northern Nigeria),What is the most popular wedding venue in your country?,በኢትዮጵያ በጣም ታዋቂው የሰርግ መድረክ ምን ይባላል? +New-in-01,Food,Indonesian (Indonesia),Which coffee shop brand is the most popular in your country?,በኢትዮጵያ ውስጥ የትኛው ቡና መሸጫ መለያ/ብራንድ እጅግ ታዋቂ ነው? +New-in-03,Food,Indonesian (Indonesia),What type of food from your country is typically served in restaurants overseas?,ከኢትዮጵያ በተለይ የትኛው አይነት ምግብ በውጭ አገር ምግብ ቤቶች ይሸጣል? +New-in-33,Work life,Indonesian (Indonesia),What region in your country is usually associated with mining?,በኢትዮጵያ የትኛው ክልል ነው ከማዕድን ቁፋሮ ጋር በብዛት የሚታወቀው? +New-in-34,Work life,Indonesian (Indonesia),What region in your country is usually associated with oil?,በኢትዮጵያ የቱ ክልል ነው በተለይ ዘይት/ነዳጅ ጋር ትስስር ያለው? +New-in-62,Education,Indonesian (Indonesia),What university in your country is popular because of its engineering major? (Provide the official name.),በኢትዮጵያ በምህንድስና የትምህርት መስኮች ምክንያት ታወቀቂ ዩኒቨርስቲ የሆነው? (የሙሉ ስሙን ይፃፉ።) +New-in-63,Education,Indonesian (Indonesia),What university in your country is popular because of its school of medicine? (Provide the official name.),በኢትዮጵያ የትኛው ዩኒቨርስቲ ነው በሕክምና ትምህርት መስኩ ምክንያት በጣም ታወቂ ዩኒቨርስቲ የሆነው? (የሙሉ ስሙን ፃፉ።) +New-in-78,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most popular payment method in your country?,በኢትዮጵያ ዝነኛው የክፍያ መንገድ የቱ ነው? +New-in-80,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most famous theme park in your country?,በኢትዮጵያ ውስጥ እጅግ ዝነኛ የሆነ የመዝናኛ ፓርክ የቱ ነው? +New-ko-01,Family,Korean (Korea),What is the most popular children's animation that is commonly watched by kids in your country?,በኢትዮጵያ ውስጥ ልጆች በተደጋጋሚ የሚመለከቱት ታዋቂ ህፃናት ተንቀሳቃሽ ምስል ፕሮግራም ምንድን ነው? +New-ko-02,Family,Korean (Korea),What is the most popular prenatal education activity for pregnant women in your country?,በኢትዮጵያ ወስጥ በጣም ታዋቂው ለነብሰጡሮች የሚሰጠው የቅድመ ወሊድ ትምህርት ምንድን ነው? +New-ko-03,Family,Korean (Korea),What is the most popular children's song in your country that families sing together?,ኢትዮጵያ ወስጥ ቤተሰቦች አንድ ላይ የሚዘፍኑት በጣም ተወዳጅ የሆነው የልጆች ዘፈን ምንድነው? +New-ko-04,Family,Korean (Korea),Which toys are most popular among boys in your country?,በኢትዮጵያ በወንዶች ልጆች በጣም የሚወደዱ መጫወቻዎች ምንድናቸው? +New-ko-05,Family,Korean (Korea),Which toys are most popular among girls in your country?,በኢትዮጵያ በሴቶች ልጆች በጣም የሚወደዱ መጫወቻዎች ምንድናቸው? +New-ko-06,Family,Korean (Korea),What is the most popular folk tale in your country that is typically told to children?,በኢትዮጵያ በጣም ታዋቂው ለህፃናት የሚነገርው ተረት ምንድነው? +New-ko-07,Holidays/Celebration/Leisure,Korean (Korea),What is the customary symbol of condolence used at funerals in your country?,በኢትዮጵያ ወስጥ በቀብር ሥነ ሥርዓት ላይ ለሐዘን መግለጫነት የሚውለው ባሕላዊ ምልክት ምንድነው? +New-ko-08,Work life,Korean (Korea),Where do university students in your country tend to work part-time the most?,ኢትዮጵያ ውስጥ የዩኒቨርስቲ ተማሪዎች የትርፍ ሰዓት ስራ ለመስራት በጣም የሚፈልጉት የትነው? +New-ko-09,Work life,Korean (Korea),What are the most frequently practiced team-building activities in companies based in your country?,በኢትዮጵያ ባሉ ኩባንያዎች ውስጥ በአብዛኛው የተለመዱት የስራ ቡድን ግንባታ ሂደቶች ምንድናቸው? +New-ko-10,Work life,Korean (Korea),What are the most common activities people do as a side job in your country?,በኢትዮጵያ ውስጥ ሰዎች በአብዛኛው እንደ ተጨማሪ ስራ የሚሠሯቸው ስራዎች ምንድን ናቸው? +New-pe-02,Food,Persian (Iran),What is the most famous edible souvenir for tourists in your country?,በኢትዮጵያ ለቱሪስትዎች እጅግ ዝነኛና የማይረሳ የሆነ ምግብ ምንድን ነው? +New-pe-06,Food,Persian (Iran),What is the most popular stew in your country?,በኢትዮጵያ በጣም ታዋቂው ወጥ ምንድነው? +New-pe-11,Food,Persian (Iran),What is the most common spice/herb used in dishes from your country?,ኢትዮጵያ በጣም ታዋቂው ለምግብ መስሪያ የምንጠቀምበት ቅመ /ምንድነው? +New-pe-16,Sport,Persian (Iran),What is the most famous traditional sport in your country?,በኢትዮጵያ ውስጥ እጅግ ዝነኛ ባህልናዊ ስፖርት ምንድን ነው? +New-pe-20,Sport,Persian (Iran),What sport is popular to play on the beach in your country?,በኢትዮጵያ ታዋቂው የባሕር ዳርቻ ላይ ጫዋታ የቱ ነው ነው? +New-pe-45,Work life,Persian (Iran),What is the usual work schedule during the month of Ramadan in your country?,በኢትዮጵያ በረመዳን ወር የተለመደው የስራ መርሐ ግብር ምንድነው? +New-pe-47,Family,Persian (Iran),"When is Student's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)",በኢትዮጵያ የተማሪዎች ቀን መቼ ይከበራል? (በወር/ቀን ቅጽ መሰረት ይሙሉ (ምሳሌ 12/31).) +New-pe-49,Family,Persian (Iran),Where do families gather to pray together in your country?,ኢትዮጵያ ወስጥ ቤተሰቦች በአንድነት ለመጸለይ የሚሰበሰቡበት ቦታ የት ነው? +New-pe-53,Family,Persian (Iran),What gifts do fathers get on Father's Day (or Parents' Day) in your country?,በኢትዮጵያ አባቶች በአባት ቀን (ወይም ወላጆች ቀን) ምን ስጦታዎች ይቀበላሉ? +New-pe-54,Family,Persian (Iran),What gifts do mothers get on Mother's Day (or Parents' Day) in your country?,እናቶች በኢትዮጵያ በእናት ቀን (ወይም ባለወላጆች ቀን) ምን ዓይነት ስጦታዎች ይቀበላሉ? +New-pe-59,Family,Persian (Iran),"How many generations typically live together in a household in your country? (Provide Arabic numerals (e.g., 12) only.)",በኢትዮጵያ በአንድ ቤተሰብ ውስጥ በተለይ ስንት ትውልድ ይኖራሉ? (በቁጥር ብቻ ምላሽ ይስጡ (ምሳሌ 12)።) +New-pe-65,Education,Persian (Iran),"How many subjects are taught in middle schools in your country? (Provide Arabic numerals (e.g., 12) only.)",በኢትዮጵያ በመካከለኛ ደረጃ ት/ቤቶች ስንት የትምህርት አይነቶች ይሰጣሉ? (በቁጥር (ምሳሌ 12) ብቻ ያስቅምጡ።) +New-pe-66,Education,Persian (Iran),What is the most popular after school curriculars in elementary schools in your country?,በኢትዮጵያ በመጀመሪያ ደረጃ ትምህርቶች ውስጥ ከትምህርት በኋላ የሚሰጡ ታዋቂ ተጨማሪ ኢመደበኛ እንቅስቃሴዎች ምንድን ናቸው? +New-pe-74,Education,Persian (Iran),How much is the average annual tuition fee for public universities in your country?,በኢትዮጵያ የህዝብ ዩኒቨርስቲዎች አማካኝ ዓመታዊ ትምህርት ክፍያ ስንት ነው? (ለመጀመሪያ ለድግሪ) +New-pe-76,Holidays/Celebration/Leisure,Persian (Iran),What is a popular activity to do in parks in your country?,በኢትዮጵያ ፓርክስ ውስጥ የሚደረግ ታዋቂ እንቅስቃሴ ምንድነው? +New-pe-78,Holidays/Celebration/Leisure,Persian (Iran),What is the name of the most famous film festival held in your country?,በኢትዮጵያ የሚካሄደው እጅግ ዝኘኛ የፊልም ፌስቲቫል ስም ምን ይባላል? +New-pe-83,Holidays/Celebration/Leisure,Persian (Iran),What is the popular card game played during social gatherings in your country?,በኢትዮጵያ በማህበራዊ ስብሰባዎች ላይ የታወቀ የካርድ ጨዋታ ምንድን ነው? +New-pe-85,Holidays/Celebration/Leisure,Persian (Iran),Where is the most popular tourist destination abroad for people from your country?,ከኢትዮጵያ የሚሄዱ ጎብኝዎች በጣም የታወቀ የውጭ ሀገር መዳራሻ ቦታ የት ነው? +New-pe-86,Holidays/Celebration/Leisure,Persian (Iran),What is the name of the most famous tower in your country?,በኢትዮጵያ ውስጥ እጅግ ዝነኛ የሆነው ግንብ/ፎቅ ስም ምን ይባላል? +New-spme-01,Food,Spanish (Mexico),What edible insect is eaten most often in your country?,በኢትዮጵያ በብዛት ለምግብለት የሚውል ነፍሳት ምንድነው? +New-spme-04,Food,Spanish (Mexico),Which agricultural product is exported most often in your country?,በኢትዮጵያ ምን የእርሻ ምርት ውጤቶች በብዛት ወደ ውጭ አገር ይላካሉ? +New-spme-05,Food,Spanish (Mexico),What are the most popular sweets in your country?,በኢትዮጵያ ምን ዓይነት ጣፋጮች በጣም ታዋቂ ናቸው? +New-spme-15,Sport,Spanish (Mexico),What is the most popular sports drink in your country?,በኢትዮጵያ ምን ዓይነት ስፖርት መጠጥ እጅግ ታዋቂ ነው? +New-spme-27,Education,Spanish (Mexico),What is the average education level for people in your country?,በኢትዮጵያ ሰዎች አማካኝ ትምህርት ደረጃ ምንድነው? +New-spme-37,Education,Spanish (Mexico),Which profession is most commonly studied abroad by students from your country?,ከኢትዮጵያ ለትምህርት ወደ ዉጭ አሀር የሚሄዱ ተማሪዎች በተለይ የሚያጠኑት ሙያ ምንድን ነው? +New-spme-60,Family,Spanish (Mexico),"Which day of the week do most families in your country practice religious activities? (e.g. Monday, Tuesday)","በኢትዮጵያ የትኛው የሳምንቱ ቀን በተለይ ሰዎች ሃይማኖታዊ እንቅስቃሴዎችን ያደርጋሉ? (ምሳሌ ሰኞ, ማክሰኞ)" +New-spme-65,Family,Spanish (Mexico),What is the most popular way to celebrate Independence Day in your country?,በኢትዮጵያ በጣም ታዋቂ የሆነው በተለይ ብሔራዊ የነፃነት ቀን የሚከበርበት ሁኔታ/መንገድ ምን አይነት ነው? +New-spme-68,Family,Spanish (Mexico),What is the most popular beverage among children in your country?,በኢትዮጵያ ልጆች መካከል እጅግ ታዋቂ የሆነ መጠጥ ምንድነው? +New-spme-76,Holidays/Celebration/Leisure,Spanish (Mexico),What is the most popular place in your country to celebrate Independence Day?,በኢትዮጵያ በጣም ታዋቂ የሆነው በተለይ ብሔራዊ የነፃነት ቀን የሚከበርበት ቦታ ስም ማን ይባላል? +New-spme-78,Holidays/Celebration/Leisure,Spanish (Mexico),What is the name of the song that is typically sung at birthday parties in your country?,በኢትዮጵያ በተለይ ለልደት ዝግጅት የሚዘመር መዝሙር ስም ማን ይባላል? +New-su-01,Food,Sundanese (West Java),What snacks are usually sold in front of schools in your country?,በኢትዮጵያ ት/ቤቶች ፊት ለፊት የሚሸጡ አማራጮች ምንናን ናቸው? +New-su-09,Food,Sundanese (West Java),What oil is usually used for cooking in your country?,በኢትዮጵያ ለምግብ ማብሰል በተለይ የሚጠቀምበት ዘይት ምንድን ነው? +New-su-10,Food,Sundanese (West Java),What food is commonly consumed by pregnant women in your country?,በኢትዮጵያ በእርግዝና ያሉ ሴቶች በተደጋጋሚ የሚጠቀሙት ምግብ ምን አይነት ነው? +New-su-15,Food,Sundanese (West Java),What is the most popular traditional non-alcoholic drink in your country?,በኢትዮጵያ ምን ዓይነት ከአልኮል ነፃ የሆነ ባህላዊ መጠጥ እጅግ ታዋቂ ነው? +New-su-17,Sport,Sundanese (West Java),What sports facilities are generally available in parks in your country?,በኢትዮጵያ ፓርኮች ውስጥ በጣም የሚገኙ ስፖርት ተቋማት እነማን ናቸው? +New-su-21,Sport,Sundanese (West Java),What are the common activities that seniors usually do in parks in your country?,በኢትዮጵያ የሽማግሌዎች በፓርኮች ውስጥ የሚያደርጉት የተለመዱ እንቅስቃሴዎች ምንድናቸው? +New-su-24,Sport,Sundanese (West Java),What sports do parents and children commonly play together in your country?,በኢትዮጵያ ወላጆች እና ልጆች በጋራ በተለይ የሚጫወቱ ስፖርቶች ምንናን ናቸው? +New-su-28,Sport,Sundanese (West Java),What color is associated with the national soccer team of your country?,የኢትዮጵያ ብሄራዊ እግር ኳስ ቡድን ጋር የተያያዘ ቀለም ምንድን ነው? +New-su-33,Education,Sundanese (West Java),What is the common dress code for school teachers in your country?,በኢትዮጵያ በትምህርት ቤት መምህራን ለተለመደ ልብስ አይነት ምንድነው? +New-su-34,Education,Sundanese (West Java),What is the most popular extracurricular activity related to music in schools in your country?,በኢትዮጵያ ትምህርት ቤቶች ውስጥ በሙዚቃ የተያያዘ እና ተወዳጅ የተጨማሪ ትምህርት እንቅስቃሴ ምንድን ነው? +New-su-42,Education,Sundanese (West Java),What religion is mainly taught in schools in your country?,በኢትዮጵያ ትምህርት ቤቶች ውስጥ የትኛው ሃይማኖት በትምህርት መልክ ይሰጣል? +New-su-45,Education,Sundanese (West Java),"What date is Education Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)",ትምህርት ቀን በኢትዮጵያ በምን ቀን ይከበራል? (በወር/ቀን ቅፅ ምሳሌ 12/31 እንደሆነ ያቅርቡ።) +New-su-50,Work life,Sundanese (West Java),What is the main occupation of people in mountainous areas in your country?,በኢትዮጵያ በተራራማ አካባቢዎች ሰዎች ዋና ሙያቸው ምንድን ነው? +New-su-51,Work life,Sundanese (West Java),What is the main occupation of people in coastal areas in your country?,በኢትዮጵያ በባህር ዳርቻ አካባቢ የሚኖሩ ሰዎች ዋና ስራቸው ምን ነው? +New-su-57,Work life,Sundanese (West Java),What is the most common livestock raised in your country?,በኢትዮጵያ በተለይ የሚረቡ እንስሳት ምንድነው? +New-su-58,Work life,Sundanese (West Java),What animals are commonly used for agriculture in your country?,በኢትዮጵያ በአብዛኛው ለእርሻ ስራ የሚያገለግሉ እንስሳት የትኞቹ ናቸው? +New-su-59,Work life,Sundanese (West Java),What do farmers in your country typically wear to protect themselves from the heat whilst farming?,በኢትዮጵያ ገበሬዎች ከፀሐይ ሙቀት ራሳቸውን ለመከላከል ምን ይለብሳሉ? +New-su-60,Work life,Sundanese (West Java),What do farmers in your country usually eat for lunch?,በኢትዮጵያ እርሻ ሠራተኞች በምሳ ላይ በተለይ ምን ይበላሉ? +New-su-71,Family,Sundanese (West Java),What gifts do parents generally give to their children for their birthdays in your country?,በኢትዮጵያ ወላጆች ለልጆቻቸው በልደታቸው ቀን በአብዛኛው ምን ስጦታዎች ይሰጣሉ? +New-su-75,Family,Sundanese (West Java),What type of vehicle do most families in your country generally own?,በኢትዮጵያ አብዛኛው ቤተሰቦች የትኛው መኪና አይነት አላቸው? +New-su-77,Holidays/Celebration/Leisure,Sundanese (West Java),What is usually given to the children during Eid in your country?,በኢትዮጵያ ለልጆች ለኢድ ባዕል ምን ስጦታ ይሰጣል? +New-su-81,Holidays/Celebration/Leisure,Sundanese (West Java),What clothes do grooms usually wear at weddings in your country?,በኢትዮጵያ ወንድ ሙሽራዎች በሰርጋቸው ቀን በተለይ የሚለብሱት አልባሳት ምንድነው? +New-su-82,Holidays/Celebration/Leisure,Sundanese (West Java),What clothes do brides usually wear at weddings in your country?,በኢትዮጵያ ሴት ሙሽራዎች በሰርጋቸው ቀን በተለይ የሚለብሱት አልባሳት ምንድነው? +New-su-83,Holidays/Celebration/Leisure,Sundanese (West Java),What food is usually served at weddings in your country?,በኢትዮጵያ ምን ዓይነት ምግብ በሰርግ ቀን ላይ ተመጣጣኝ ይሆናል? +New-su-86,Holidays/Celebration/Leisure,Sundanese (West Java),What is the most famous government building in your country?,በኢትዮጵያ ውስጥ እጅግ ታዋቂ የመንግሥት ሕንጻ የትኛው ነው? +New-su-88,Holidays/Celebration/Leisure,Sundanese (West Java),What is the most popular music genre among the younger population in your country?,በኢትዮጵያ ወጣቶች በእጅጉ የሚወዱት ሙዚቃ አይነት ምንድነው? +Ni-en-02,Education,English (UK),"What time do middle school students in your country typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)","በኢትዮጵያ የመካከለኛ ትምህርት ቤት ተማሪዎች የቀኑን ትምህርት የሚያጠናቅቁት ስንት ሰዓት ነው? (በሰዓት አስቀምጡ (ምሳሌ 10:00, 09:00) ይምረጡ።)" +Ni-en-03,Education,English (UK),"At what age do people in your country typically go to university? (Provide Arabic numerals (e.g., 12) only.)",በኢትዮጵያ ሰዎች በምን ዕድሜ በተለይ ወደ ዩኒቨርስቲ ይሄዳሉ? (በአረብኛ ቁጥር ብቻ ምሳሌ 12 ይምረጡ።) +Ni-en-06,Education,English (UK),"From what age do people need to attend compulsory education in your country? (Provide Arabic numerals (e.g., 12) only.)",በኢትዮጵያ ሰዎች ከስንት አመት ጀምሮ ወደ ትምህርት ቤት መሄድ አለባቸው? (በአረቢክ ቁጥሮች (ምሳሌ 12) ብቻ ይምላሉ።) +Ni-en-09,Education,English (UK),How many days a week do children attend school in your country? (Provide Arabic numerals (0~7) only.),በኢትዮጵያ ልጆች በሳምንት ስንት ቀን ት/ቤት ይሄዳሉ? (ከ0 እስከ 7 ድረስ የዓረብ ቁጥሮችን ብቻ ያቅርቡ።) +Ni-en-11,Education,English (UK),"In your country, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)",በኢትዮጵያ የሁለተኛ ዲግሪ ለመጨረስ ስንት አመት ይፈጃል? (በአረቢክ ቁጥር ብቻ ምላሽ ይስጡ (ለምሳሌ፣ 12)።) +Ni-en-12,Education,English (UK),What is the top university in your country? (Provide the official name.),በኢትዮጵያ ስመጥር ዩኒቨርስቲ ማን ነው? (የራሱን እጅግ የሚያመለክት ስም ያቅርቡ።) +Ni-en-13,Education,English (UK),"At what age do most people in your country graduate from university? (Provide Arabic numerals (e.g., 12) only.)",በኢትዮጵያ ባብዛኛው ሰዎች በስንት ዕድሜያቸው ከዩኒቨርስቲ ይመረቃሉ?(በአረቢኛ ቁጥሮች (ምሳሌ 12) ብቻ ይምረጡ።) +Ni-en-15,Education,English (UK),"At what age do children in your country generally start middle school? (Provide Arabic numerals (e.g., 12) only.)",በኢትዮጵያ ልጆች በየትኛው ዕድሜ ያቸው ነው መካከለኛ ደርጃ ትምህርት ቤት የሚጀመሩት? (በቁጥር ብቻ ምላሽ ይስጡ (ለምሳሌ፣ 12)።) +Ni-en-17,Work life,English (UK),"How many hours a week does a full-time worker in your country typically work? (Provide Arabic numerals (e.g., 12) only.)",በኢትዮጵያ አንድ ሙሉ ጊዜ ሠራተኛ በሳምንት ስንት ሰዓት ይሠራል? (በአረቢኛ ቁጥር ብቻ ምላሽ ይስጡ (ለምሳሌ፣ 12)።) +Ni-en-19,Work life,English (UK),How many days a week does a full-time worker work in your country? (Provide Arabic numerals (0~7) only.),በኢትዮጵያ አስተማማኝ ሙሉ ጊዜ ሠራተኛ በአንድ ሳምንት ስንት ቀን ይሠራል? (ከ0 እስከ 7 ድረስ የዓረብ ቁጥሮችን ብቻ ስጡ።) +Ni-en-20,Work life,English (UK),"At what age do most people start working in your country? (Provide Arabic numerals (e.g., 12) only.)",በኢትዮጵያ በተለይ ሰዎች ስራ የሚጀምሩ በስንት እድሜያቸው ነው? (በዓረብ ቁጥር ብቻ ምላሽ ይስጡ (ለምሳሌ፣ 12)።) +Ni-en-21,Work life,English (UK),"From what age is an individual allowed to work in your country? (Provide Arabic numerals (e.g., 12) only.)",በኢትዮጵያ እንደሚሠራ የተፈቀደ እድሜ ምንነት ነው? (በአረቢክ ቁጥሮች ብቻ (ምሳሌ 12) ይምረጡ።) +Ni-en-31,Holidays/Celebration/Leisure,English (UK),What do people in your country traditionally eat on Christmas Day?,በኢትዮጵያ ሰዎች ገና በአል ሲያከብሩ ምን ይመገባሉ? +Ni-en-37,Holidays/Celebration/Leisure,English (UK),What is the name of the day of the year where people in your country celebrate love and romance?,በኢትዮጵያ ሰዎች ፍቅርን እና ሮማንስን የሚያከብሩበት ዓመት ውስጥ የቀኑን ስም ምንድን ነው? +Ni-en-40,Holidays/Celebration/Leisure,English (UK),What is the most popular Christmas song in your country?,በኢትዮጵያ ምን ዓይነት የገና ሙዚቃ እጅግ ታዋቂ ነው? +Nu-in-04,Education,Indonesian (Indonesia),"How many semesters are there each academic year at high schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","በኢትዮጵያ ሁለተኛ ደረጃ ትምህርት ቤቶች በአንድ ዓመት ስንት ሴሜስተሮች አሉ? (በዓረብ ቁጥሮች ብቻ ምላሽ ይስጡ (ምሳሌ 7, 8)።)" +Nu-in-05,Education,Indonesian (Indonesia),In which month does the new school year typically begin in your country? (Provide Arabic numerals (1~12) only.),በኢትዮጵያ አዲስ የትምህርት ዓመት በየትኛው ወር ይጀምራል? (በአረብኛ ቁጥር (1~12) ብቻ ይምረጡ።) +Nu-in-06,Education,Indonesian (Indonesia),"When is National Teacher's Day commemorated in your country? (Provide in MM/DD format (e.g., 12/31).)",በኢትዮጵያ ብሄራዊ መምህራን ቀን መቼ ይከበራል? (በወር/ቀን ቅጽ ይምረጡ (ምሳሌ 12/31).) +Nu-in-11,Education,Indonesian (Indonesia),"At what time does elementary school start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","በኢትዮጵያ የመጀመሪያ ደረጃ ትምህርት ቤት በምን ሰዓት ይጀምራል? (በኤችኤች:ኤምኤም ቅጽ ያቅርቡ (ምሳሌ 18:00, 09:00).)" +Nu-in-20,Family,Indonesian (Indonesia),"When is Children's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)",በኢትዮጵያ የልጆች ቀን መቼ ይከበራል? (በወር/ቀን ቅጽ ይምረጡ (ምሳሌ 12/31).) +Nu-in-40,Work life,Indonesian (Indonesia),Which city is the main destination for job seekers in your country?,በኢትዮጵያ ለሥራ ፈላጊዎች ዋናው መድረሻ ከተማ ማንዣት ነው? +Sa-en-1,Food,English (UK),What is your country's most popular fast food chain?,ኢትዮጵያውያን በጣም የተወደዱ ፈጣን ምግብ ሰንሰለት ምንድነው? +Sa-en-13,Food,English (UK),What is the food that is most divisive (either love or hate) in your country?,በኢትዮጵያ ምን ዓይነት ምግብ ነው በጣም የሚከፋፈለው? +Sa-en-16,Sport,English (UK),What is the most popular soccer team among the people from your country?,በኢትዮጵያ ሰዎች መካከል እጅግ ታዋቂ የእግር ኳስ ቡድን ማን ነው? +Sa-en-22,Sport,English (UK),What is the most famous university in your country known for its sports team?,በኢትዮጵያ ስፖርት ቡድኑ የታወቀው እጅግ ዝናና ዩኒቨርስቲ ማንነት ምንድን ነው? +Sa-en-31,Family,English (UK),What is your country's most popular family pet?,በኢትዮጵያ ቤተሰብ ተወዳጅ የቤት እንስሳ ምንድን ነው? +Sa-en-32,Family,English (UK),What is the most popular family TV show in your country?,በኢትዮጵያ ምን ዓይነት ቤተሰብ ቴሌቪዥን ሾው እጅግ ታዋቂ ነው? +Sa-en-37,Family,English (UK),What is the most popular family boardgame in your country?,በኢትዮጵያ ምን ዓይነት ቤተሰብ ቦርድ ጌም እጅግ ታዋቂ ነው? +Sa-en-6,Food,English (UK),What is the most popular takeaway food in your country?,በኢትዮጵያ ምን ዓይነት የምግብ ቤት ምግብ እንደሚወስድ ታዋቂ ነው? +Sa-en-7,Food,English (UK),What are popular snacks in your country?,በኢትዮጵያ የታወቁ መክሰስ ምግቦች ምንናቸው? +Sa-en-9,Food,English (UK),What do people from your country eat at the beach?,በባህር ዳር ላይ የኢትዮጵያ ሰዎች ምን ይበላሉ? +Ta-pe-10,Family,Persian (Iran),"At what age do men usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)",በኢትዮጵያ ወንዶች በስንት ዓመት ጋብቻ ይፈጥማሉ? (በአረብኛ ቁጥር ብቻ ምላሽ ይስጡ (ለምሳሌ፣ 20)።) +Ta-pe-11,Family,Persian (Iran),"At what age do women usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)",በኢትዮጵያ ሴቶች በስንት ዓመት ጋብቻ ይፈጥማሉ? (በአረቢክ ቁጥር ብቻ ምላሽ ይስጡ (ምሳሌ 20)።) +Ta-pe-13,Family,Persian (Iran),"In your parents' generation, what was the average number of members in their family in your country? (Provide Arabic numerals (e.g., 20) only.)",በወላጆችዎ ትውልድ በኢትዮጵያ በቤተሰባቸው ውስጥ አማካይነት የነበሩት አባላት ብዛት ስንት ነበር? (በአረቢክ ቁጥሮች (ምሳሌ 20) ብቻ ይምረጡ።) +Ta-pe-17,Sport,Persian (Iran),"In the Olympic Games, which sport is the most popular in your country?",በኦሊምፒክ ጨዋታዎች ውስጥ፣ እንዴት ዓይነት ስፖርት በኢትዮጵያ ታዋቂ ነው? +Ta-pe-21,Sport,Persian (Iran),Where do children usually play soccer in your country?,ልጆች በኢትዮጵያ በተለይ የእግር ኳስ የሚጫወቱበት ቦታ የት ነው? +Ta-pe-22,Sport,Persian (Iran),Which daily exercise is popular among women in your country?,በኢትዮጵያ የተወዳጅ የዕለታዊ እንቅስቃሴ በሴቶች መካከል ምንድን ነው? +Ta-pe-23,Sport,Persian (Iran),Which daily exercise is popular among men in your country?,በኢትዮጵያ ውስጥ ወንዶች መካከል በተመሳሳይ የሚደረግ ትርጉም እንደሚኖረው አውታረ መስመር ምንድን ነው? +Ta-pe-25,Sport,Persian (Iran),"What is the most famous rivalry in a national sports league in your country? (e.g., ___ vs ___)",በኢትዮጵያ በብሔራዊ ስፖርት ሊግ ውስጥ እጅግ ዝነኛ የሆነ ፉክክር ምንድን ነው? (ምሳሌ: ___ ከ ___) +Ta-pe-29,Sport,Persian (Iran),Which professional sport is the highest paying in your country?,በኢትዮጵያ ውስጥ የትኛው ስፖርት እጅግ የሚከፍል ነው? +Ta-pe-30,Sport,Persian (Iran),What is/was the most popular sports-related TV program in your country?,በኢትዮጵያ ምን ነበር/ነው ተወዳጅ የስፖርት ተያያዥ ቴሌቪዥን ፕሮግራም? +Ta-pe-32,Holidays/Celebration/Leisure,Persian (Iran),What day of the year is usually dedicated to fireworks in your country?,በኢትዮጵያ የአመቱ ምን ቀን በተለይ ለርችት የተመደበ ነው? +Ta-pe-37,Holidays/Celebration/Leisure,Persian (Iran),What is the common symbol of New Year's Eve that is usually found in your country?,በኢትዮጵያ የአዲስ አመት ምሽት በተለይ የተለመደ መለያ ምንድነው? +Ta-pe-42,Holidays/Celebration/Leisure,Persian (Iran),What food do people from your country usually eat on New Year's Eve?,በኢትዮጵያ ሰዎች በአዲስ አመት እለት ምን አይነት ምግብ ይበላሉ? +Ta-pe-45,Holidays/Celebration/Leisure,Persian (Iran),What is usually eaten during the celebration of the longest night of the year in your country?,በኢትዮጵያ በአመቱ ረዥም ሌሊት በዓል ላይ በተለይ ምን ይበላል? +Th-en-01,Sport,English (US),What is the most popular summer sport in your country?,በኢትዮጵያ በክረምት ወቅት ምን ዓይነት ስፖርት ታዋቂ ነው? +Th-en-03,Sport,English (US),What is the most popular professional sports league in your country?,በኢትዮጵያ ምን ዓይነት የሙያዊ ስፖርት ሊግ እጅግ ታዋቂ ነው? +Th-en-05,Sport,English (US),What is the most popular women's sports team in your country?,በኢትዮጵያ ምንም ተወዳጅ የሴቶች ስፖርት ቡድን ምንድን ነው? +Th-en-09,Sport,English (US),What is the most popular tournament in your country?,በኢትዮጵያ ምን ዓይነት ውድድር እጅግ ታዋቂ ነው? +Th-en-11,Sport,English (US),Who is the most popular sportperson in your country?,በኢትዮጵያ እጅግ ታዋቂ ስፖርተኛ የሆነ ሰው? +Th-en-12,Sport,English (US),In which sport has your country been most successful in international competitions?,ኢትዮጵያ በአለም አቀፍ ውድድሮች ውስጥ በምን ስፖርት እጅግ ሰኬታም ናት? +Th-en-15,Sport,English (US),What is the most popular winter sport in your country?,በኢትዮጵያ በክረምት የተወደደ ስፖርት ምንድነው? +Th-en-19,Work life,English (US),What is a city or region in your country known for manufacturing industry?,በኢትዮጵያ ምን ከተማ ወይም ክልል ለአምራች ኢንዱስትሪ ታውቃለች? +Th-en-21,Work life,English (US),What is regarded as the most important perk typically offered to employees in your country?,በኢትዮጵያ ለሠራተኞች ተለይቶ የሚቀርብ እና እጅግ ዋና የሆነ ተጨማሪ አበል ምንድነው? +Th-en-22,Work life,English (US),What was the most catastrophic economic period for your country?,ለኢትዮጵያ እጅግ አስቸጋሪ የኢኮኖሚ ድቀት ወቅት መቸ ነበር? +Th-en-24,Work life,English (US),What region in your country is a major hub for tech workers and start ups?,በኢትዮጵያ ውስጥ ለቴክ ሠራተኞች እና ለእነሆም እንቅስቃሴዎች ዋና መሀል የሆነው ክልል ማንኛው ነው? +Th-en-27,Work life,English (US),What is the most important industry in your country?,በኢትዮጵያ እጅግ አስፈላጊ የሚሆን ኢንዱስትሪ ምንድነው? +Th-en-35,Family,English (US),"Which one of the daily meals is commonly shared with family members in your country? (e.g., breakfast, lunch, dinner)",በኢትዮጵያ በቤተሰብ አባላት ከተለያዩ የቀኑ ምግቦች መካከል ባብዛኛው አብረው የሚመገቡት የትኛው ነው? (ምሳሌ፣ እራት፣ ምሳ፣ እራት) +Th-en-36,Family,English (US),What is a popular family activity with a child to do on weekends in your country?,በኢትዮጵያ በሳምንት መጨረሻ ቤተሰብ ከልጅ ጋር ለመስራት የታወቀ እንቅስቃሴ ምንድን ነው? +Th-en-37,Family,English (US),"At what age do children typically become independent from their parents in your country? (Provide Arabic numerals (e.g., 12) only.)",በኢትዮጵያ ልጆች ከወላጆቻቸው ከጥገኝነት በስንት እድሜአቸው ይወጣሉ? (በአረብኛ ቁጥር ብቻ ምላሽ ይስጡ (ምሳሌ 12)።) +Th-en-38,Family,English (US),What is the most important family holiday in your country?,በኢትዮጵያ ቤተሰብ የሚያከብሩት በአስፈላጊ በዓል የትኛው ነው? +Th-en-39,Family,English (US),What is a popular family game in your country?,በኢትዮጵያ ታዋቂ የቤተሰብ ጨዋታ ምንድነው? +Th-en-41,Family,English (US),"What is the average age for couples to have their first child in your country? (Provide Arabic numerals (e.g., 20) only.)",በኢትዮጵያ አንድ ባል እና ሚስት በአማካይ የመጀመሪያ ልጅ የሚዎልዱ በስንት አመታቸው ነው? (በአረቢክ ቁጥሮች (ምሳሌ 20) ብቻ ይምረጡ።) +Th-en-43,Family,English (US),"How many cars are owned by a typical family in your country? (Provide Arabic numerals (e.g., 12) only.)",በኢትዮጵያ አንድ ቤተሰብ ውስጥ ስንት የመኪና ብዛት ይኖራል? (በአረቢክ ቁጥር (ምሳሌ 12) ብቻ ይምላሉ።) +Th-en-44,Family,English (US),What is your country's most popular food for family meals on weekends?,በሳምንቱ መጨረሻ በቤተሰቦች ምግብ ላይ በተለይ የተወደደ የኢትዮጵያ ምግብ ምንድን ነው? +Th-en-45,Family,English (US),What is the most popular weekday evening family activity in your country?,በኢትዮጵያ በሳምንት ቀናት ምሽት ቤተሰቦች የሚወዱት እንቅስቃሴ ምንድን ነው? +Th-en-48,Education,English (US),What is the highest grade given to top-achieving high school students on assignments and exams in your country?,በኢትዮጵያ በምርመራና በፈተናዎች ላይ ከፍተኛ ውጤት ያሳዩ ተማሪዎች የተሰጣቸው ከፍተኛ ደረጃ ምንድነው? +Th-en-49,Education,English (US),What is considered the most important exam for high school students in your country?,በኢትዮጵያ ለከፍለ ትምህርት ተማሪዎች እጅግ አስፈላጊ የሚቆጠር ፈተና ምንድን ነው? +Th-en-51,Education,English (US),Which subject is considered the most important for students in your country?,በኢትዮጵያ በተማሪዎች ላይ እጅግ አስፈላጊ የሚቆጠር ምርምር ማንኛው ነው? +Th-en-53,Education,English (US),What is the most popular extracurricular social event at schools in your country?,በኢትዮጵያ ት/ቤቶች ውስጥ ታዋቂው ከመደበኛ ትምህርት ውጪ ማኅበራዊ ክስተት ምንድን ነው? +Th-en-58,Education,English (US),What is the most advanced math subject learned before university in your country?,በኢትዮጵያ ዩኒቨርስቲ በመግባት በፊት የተማሩት ከፍተኛ የሂሳብ ርዕስ ምንድን ነው? +Tmp-ar-01,Education,Arabic (Algeria),Where do university students in your country usually go to study for their final exams?,በኢትዮጵያ ዩኒቨርስቲ ተማሪዎች ለማጠቃላያ ፈተናቸው ለማጥናት በተለይ የሚሄዱበት ስፍራ የት ነው? +Tmp-ar-02,Education,Arabic (Algeria),What is a common public transport that people use to go to university in your country?,በኢትዮጵያ ሰዎች በተለይ ወደ ዩኒቨርስቲ ለመሄድ የሚጠቀሙበት የህዝብ ትራንስፖርት ምንድነው? +Tmp-ar-04,Education,Arabic (Algeria),What do elementary students in your country usually do after school?,በኢትዮጵያ የመጀመሪያ ደረጃ ተማሪዎች ከትምህርት ቤት በኋላ በተለይ ምን ያደርጋሉ? diff --git a/data/questions/Greece_questions.csv b/data/questions/Greece_questions.csv new file mode 100644 index 0000000000000000000000000000000000000000..c554706f1450e0193027cdd56ab6fbe004955a64 --- /dev/null +++ b/data/questions/Greece_questions.csv @@ -0,0 +1,501 @@ +ID,Topic,Source,Question,Translation +Al-en-01,Food,English (US),What is a common snack for preschool kids in your country?,Ποιο είναι ένα συνηθισμένο σνακ για παιδιά προσχολικής ηλικίας στην Ελλάδα; +Al-en-02,Food,English (US),What is a popular food to go with beer in your country?,Ποιο είναι ένα δημοφιλές φαγητό που συνοδεύει τη μπύρα στην Ελλάδα; +Al-en-04,Food,English (US),What is the most popular fruit in your country?,Ποιο είναι το πιο δημοφιλές φρούτο στην Ελλάδα; +Al-en-06,Food,English (US),What is a common school cafeteria food in your country?,Ποιο είναι ένα συνηθισμένο φαγητό στα σχολεία στην Ελλάδα; +Al-en-08,Food,English (US),What are the most commonly eaten snacks at shopping malls in your country?,Ποια είναι τα πιο συνηθισμένα σνακ που καταναλώνονται στα εμπορικά κέντρα στην Ελλάδα; +Al-en-09,Food,English (US),What is a popular snack at an amusement park in your country?,Ποιο είναι ένα δημοφιλές σνακ σε λούνα παρκ στην Ελλάδα; +Al-en-16,Education,English (US),"At what age do kids start preschool in your country? (Provide Arabic numerals (e.g., 12) only.)","Σε ποια ηλικία αρχίζουν τα παιδιά το νηπιαγωγείο στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 4).)" +Al-en-17,Education,English (US),What is a popular afterschool sport for elementary schools in your country?,Ποιο είναι ένα δημοφιλές απογευματινό άθλημα για τα δημοτικά σχολεία στην Ελλάδα; +Al-en-18,Education,English (US),For which subject do elementary students get private education in your country?,Για ποιο μάθημα παίρνουν ιδιαίτερα μαθήματα οι μαθητές δημοτικού στην Ελλάδα; +Al-en-19,Education,English (US),What is a popular second language for high school students in your country?,Ποια είναι μια δημοφιλής δεύτερη γλώσσα για τους μαθητές λυκείου στην Ελλάδα; +Al-en-21,Education,English (US),Which subject is the most important for gifted education in your country?,Ποιο μάθημα είναι το πιο σημαντικό για την εκπαίδευση των προικισμένων παιδιών στην Ελλάδα; +Al-en-32,Holidays/Celebration/Leisure,English (US),What is the main dish for Thanksgiving in your country?,Ποιο είναι το κυρίως πιάτο για την Ημέρα των Ευχαριστιών στην Ελλάδα; +Al-en-33,Holidays/Celebration/Leisure,English (US),What do people do to celebrate Halloween in your country?,Τι κάνουν οι άνθρωποι για να γιορτάσουν το Halloween στην Ελλάδα; +Al-en-34,Holidays/Celebration/Leisure,English (US),What do people do to celebrate New Year's Day in your country?,Τι κάνουν οι άνθρωποι για να γιορτάσουν την Πρωτοχρονιά στην Ελλάδα; +Al-en-35,Holidays/Celebration/Leisure,English (US),What do people do to celebrate Christmas in your country?,Τι κάνουν οι άνθρωποι για να γιορτάσουν τα Χριστούγεννα στην Ελλάδα; +Al-en-36,Holidays/Celebration/Leisure,English (US),What food is associated with Halloween in your country?,Ποιο φαγητό συνδέεται με το Halloween στην Ελλάδα; +Al-en-37,Holidays/Celebration/Leisure,English (US),What food is associated with Christmas in your country?,Ποιο φαγητό συνδέεται με τα Χριστούγεννα στην Ελλάδα; +Al-en-38,Holidays/Celebration/Leisure,English (US),What food is associated with Valentine's day in your country?,Τι φαγητό συνδέεται με την ημέρα του Αγίου Βαλεντίνου στην Ελλάδα; +Al-en-39,Holidays/Celebration/Leisure,English (US),What do people eat on their birthday in your country?,Τι τρώνε οι άνθρωποι στα γενέθλιά τους στην Ελλάδα; +Al-en-40,Holidays/Celebration/Leisure,English (US),What is a popular outdoor place for families to have fun with little kids in your country?,Ποιο είναι ένα δημοφιλές υπαίθριο μέρος για τις οικογένειες να διασκεδάζουν με μικρά παιδιά στην Ελλάδα; +Al-en-43,Holidays/Celebration/Leisure,English (US),What is a popular indoor activity for families in your country?,Ποια είναι μια δημοφιλής δραστηριότητα εσωτερικού χώρου για οικογένειες στην Ελλάδα; +An-ar-02,Education,Arabic (Algeria),Where do university students have lunch in your country?,Πού τρώνε μεσημεριανό οι φοιτητές του πανεπιστημίου στην Ελλάδα; +An-ar-03,Education,Arabic (Algeria),Which month is the final exam term usually scheduled at high schools in your country? (Provide Arabic numerals (1~12) only.),Σε ποιον μήνα συνήθως προγραμματίζονται οι τελικές εξετάσεις στα λύκεια στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (1~12).) +An-ar-08,Education,Arabic (Algeria),"How many hours a day do students in your country usually spend at high school? (Provide Arabic numerals in integers (0~24), without any decimal points.)","Πόσες ώρες την ημέρα συνήθως περνούν οι μαθητές στο λύκειο στην Ελλάδα; (Χρησιμοποιείστε ακέραιους αραβικούς αριθμούς (0~24), χωρίς δεκαδικά ψηφία.)" +An-ar-09,Education,Arabic (Algeria),"How many languages do students study at high school in your country? (Provide Arabic numerals (e.g., 5) only.)","Πόσες γλώσσες μελετούν οι μαθητές στο λύκειο στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 5).)" +An-ar-34,Sport,Arabic (Algeria),What is the most popular sport played in a team at school in your country?,Ποιο είναι το πιο δημοφιλές ομαδικό άθλημα που παίζεται στα σχολεία στην Ελλάδα; +An-ar-35,Sport,Arabic (Algeria),Who is the most popular sport commentator in your country?,Ποιος είναι ο πιο δημοφιλής αθλητικός σχολιαστής στην Ελλάδα; +An-ar-36,Sport,Arabic (Algeria),What is the most popular sport team in your country?,Ποια είναι η πιο δημοφιλής αθλητική ομάδα στην Ελλάδα; +An-ar-43,Sport,Arabic (Algeria),What are the common places or venues where individuals in your country usually gather to watch sports broadcasts?,Ποια είναι τα συνηθισμένα μέρη ή χώροι όπου τα άτομα στην Ελλάδα συνήθως συγκεντρώνονται για να παρακολουθήσουν αθλητικές μεταδόσεις; +Ca-sp-05,Food,Spanish (Spain),"How many meals per day do people from your country usually have? (Provide Arabic numerals (e.g., 5) only.)","Πόσα γεύματα την ημέρα συνήθως έχουν οι άνθρωποι από την Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς, π.χ., 5.)" +Ca-sp-06,Food,Spanish (Spain),Which is the most important meal of the day to people from your country?,Ποιο είναι το πιο σημαντικό γεύμα της ημέρας για τους Έλληνες; +Ca-sp-08,Food,Spanish (Spain),What is the most common ingredient used in your country's diet?,Ποιο είναι το πιο συνηθισμένο συστατικό που χρησιμοποιείται στη διατροφή της Ελλάδας; +Ca-sp-09,Food,Spanish (Spain),What do people from your country usually eat for dessert?,Τι συνήθως τρώνε οι άνθρωποι από την Ελλάδα για επιδόρπιο; +Ca-sp-11,Food,Spanish (Spain),Which day of the week do people usually organize a family meal in your country?,Ποια μέρα της εβδομάδας συνήθως οργανώνουν οι άνθρωποι ένα οικογενειακό γεύμα στην Ελλάδα; +Ca-sp-14,Food,Spanish (Spain),Which is the most popular hot drink in your country?,Ποιο είναι το πιο δημοφιλές ζεστό ποτό στην Ελλάδα; +Ca-sp-19,Holidays/Celebration/Leisure,Spanish (Spain),What do young people from your country usually drink at the night club?,Τι συνήθως πίνουν οι νέοι από την Ελλάδα στα νυχτερινά κέντρα; +Ca-sp-21,Holidays/Celebration/Leisure,Spanish (Spain),At which month do people usually take holidays in your country? (Provide Arabic numerals (1~12) only.),Σε ποιον μήνα συνήθως οι άνθρωποι παίρνουν διακοπές στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (1~12).) +Ca-sp-29,Holidays/Celebration/Leisure,Spanish (Spain),What tradition is there in your country for New Year's Eve?,Ποια είναι η παράδοση στην Ελλάδα για την Πρωτοχρονιά; +Ca-sp-38,Family,Spanish (Spain),Which is the typical type of house for a family in your country?,Ποιος είναι ο τυπικός τύπος σπιτιού για μια οικογένεια στην Ελλάδα; +Ca-sp-41,Family,Spanish (Spain),Where do the dependent elderly usually live in your country?,Πού συνήθως ζουν οι εξαρτώμενοι ηλικιωμένοι στην Ελλάδα; +Ca-sp-42,Family,Spanish (Spain),"How long (in weeks) is your country's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)","Πόσο διαρκεί (σε εβδομάδες) η άδεια μητρότητας στην Ελλάδα για τις μητέρες; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 20).)" +Ca-sp-43,Family,Spanish (Spain),"How long (in weeks) is your country's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)","Πόσο διαρκεί (σε εβδομάδες) η άδεια πατρότητας στην Ελλάδα για τους μπαμπάδες; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 20).)" +Ca-sp-45,Family,Spanish (Spain),What type of destination is commonly chosen for a family vacation in your country?,Ποιο είδος προορισμού επιλέγεται συνήθως για οικογενειακές διακοπές στην Ελλάδα; +Gu-ch-05,Sport,Chinese (China),What sports do seniors like the most in your country?,Ποια αθλήματα προτιμούν περισσότερο οι ηλικιωμένοι στην Ελλάδα; +Gu-ch-06,Sport,Chinese (China),What sports do men like to play the most in your country?,Ποια αθλήματα προτιμούν περισσότερο οι άνδρες να παίζουν στην Ελλάδα; +Gu-ch-07,Sport,Chinese (China),Who is the most famous basketball player in your country?,Ποιος είναι ο πιο διάσημος μπασκετμπολίστας στην Ελλάδα; +Gu-ch-08,Sport,Chinese (China),What is the most popular sports among children in your country?,Ποιο είναι το πιο δημοφιλές άθλημα μεταξύ των παιδιών στην Ελλάδα; +Gu-ch-09,Sport,Chinese (China),What sports do women like to play the most in your country?,Ποια αθλήματα προτιμούν περισσότερο οι γυναίκες να παίζουν στην Ελλάδα; +Gu-ch-11,Sport,Chinese (China),What sports event has your country won the most gold medals at the Olympics?,Σε ποιο αθλητικό γεγονός έχει κερδίσει η Ελλάδα τα περισσότερα χρυσά μετάλλια στους Ολυμπιακούς Αγώνες; +Gu-ch-15,Sport,Chinese (China),What sports do male students in university like to play the most in your country?,Ποια αθλήματα προτιμούν να παίζουν περισσότερο οι άνδρες φοιτητές στα πανεπιστήμια στην Ελλάδα; +Gu-ch-16,Family,Chinese (China),"How many people are there in a family on average in your country? (Provide Arabic numerals (e.g., 12) only.)","Πόσα άτομα υπάρχουν κατά μέσο όρο σε μια οικογένεια στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 12).)" +Gu-ch-18,Family,Chinese (China),"How many children do couples usually have in your country? (Provide Arabic numerals (e.g., 12) only.)","Πόσα παιδιά έχουν συνήθως τα ζευγάρια στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 12).)" +Gu-ch-31,Education,Chinese (China),"What is the duration of elementary school in years in your country? (Provide Arabic numerals (e.g., 12) only.)","Ποια είναι η διάρκεια του δημοτικού σχολείου σε χρόνια στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 12).)" +Gu-ch-32,Education,Chinese (China),"What is the duration of compulsory education in years in your country? (Provide Arabic numerals (e.g., 12) only.)","Ποια είναι η διάρκεια της υποχρεωτικής εκπαίδευσης σε έτη στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 12).)" +Gu-ch-33,Education,Chinese (China),"From which age do students start learning their second language in your country? (Provide Arabic numerals (e.g., 12) only.)","Από ποια ηλικία ξεκινούν οι μαθητές να μαθαίνουν δεύτερη γλώσσα στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς, π.χ., 12.)" +Gu-ch-38,Education,Chinese (China),"What is the duration of undergraduate education in your country? (Provide Arabic numerals (e.g., 12) only.)","Ποια είναι η διάρκεια της προπτυχιακής εκπαίδευσης στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 12).)" +Gu-ch-40,Education,Chinese (China),"What time do younger elementary school students finish school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Τι ώρα τελειώνουν το σχολείο οι μικρότεροι μαθητές δημοτικού στην Ελλάδα; (Απαντήστε σε μορφή ΩΩ:ΛΛ, π.χ., 18:00, 09:00)." +Gu-ch-41,Education,Chinese (China),"How many musical instruments do elementary school students in your country typically play? (Provide Arabic numerals (e.g., 12) only.)","Πόσα μουσικά όργανα συνήθως παίζουν οι μαθητές δημοτικού στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 12).)" +Ji-ko-02,Work life,Korean (South Korea),What day of the week do people in your country prefer to have company dinners?,Ποια μέρα της εβδομάδας προτιμούν οι άνθρωποι στην Ελλάδα να έχουν εταιρικά δείπνα; +Ji-ko-03,Work life,Korean (South Korea),Which region/city has the highest number of financial companies in your country?,Ποια περιοχή/πόλη έχει τον υψηλότερο αριθμό χρηματοοικονομικών εταιρειών στην Ελλάδα; +Ji-ko-07,Work life,Korean (South Korea),What is the most famous private company in your country?,Ποια είναι η πιο διάσημη ιδιωτική εταιρεία στην Ελλάδα; +Ji-ko-08,Work life,Korean (South Korea),"What is the maximum number of hours one can work per week in your country? (Provide Arabic numerals (e.g., 12) only.)","Ποιος είναι ο μέγιστος αριθμός ωρών που κάποιος μπορεί να εργαστεί ανά εβδομάδα στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 12).)" +Ji-ko-09,Work life,Korean (South Korea),What do people typically eat during company get-together in your country?,Τι τρώνε συνήθως οι άνθρωποι σε εταιρικές συναθροίσεις στην Ελλάδα; +Ji-ko-14,Work life,Korean (South Korea),What is the representative export item of your country?,Ποιο είναι το αντιπροσωπευτικό εξαγωγικό προϊόν της Ελλάδας; +Ji-ko-15,Work life,Korean (South Korea),"How long (in hours) is the typical lunch break in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","Πόσο διαρκεί (σε ώρες) το τυπικό μεσημεριανό διάλειμμα στην Ελλάδα; (Δώστε αριθμούς σε αραβικά ψηφία μέχρι ένα δεκαδικό σημείο (π.χ., 2, 3.5) μόνο.)" +Ji-ko-16,Family,Korean (South Korea),Where do mothers stay for a certain period after childbirth for recovery in your country?,Πού μένουν οι μητέρες για ένα συγκεκριμένο διάστημα μετά τον τοκετό για ανάρρωση στην Ελλάδα; +Ji-ko-19,Family,Korean (South Korea),What is your country's most commonly given flower on Parents' Day?,Ποιο είναι το πιο συνηθισμένο λουλούδι που δίνεται στην Ελλάδα την Ημέρα των Γονέων; +Ji-ko-22,Family,Korean (South Korea),What do people especially spend their first salary on in your country's society?,Σε τι ξοδεύουν οι άνθρωποι ιδιαίτερα τον πρώτο τους μισθό στην κοινωνία της Ελλάδας; +Ji-ko-24,Family,Korean (South Korea),What is the most preferred recreational facility among children in your country?,Ποια είναι η πιο προτιμώμενη ψυχαγωγική εγκατάσταση από τα παιδιά στην Ελλάδα; +Ji-ko-25,Family,Korean (South Korea),What are the family-related holidays in your country?,Ποιες είναι οι οικογενειακές γιορτές στην Ελλάδα; +Ji-ko-26,Family,Korean (South Korea),What are the key milestones associated with children's independence from their parents in your country's society?,Ποια είναι τα κύρια ορόσημα που σχετίζονται με την ανεξαρτησία των παιδιών από τους γονείς τους στην ελληνική κοινωνία; +Ji-ko-27,Family,Korean (South Korea),What is the common gift you give when visiting elderly parents in your country?,Ποιο είναι ένα συνηθισμένο δώρο που δίνετε όταν επισκέπτεστε ηλικιωμένους γονείς στην Ελλάδα; +Ji-ko-28,Family,Korean (South Korea),When is the first day that people celebrate after a child is born in your country?,Πότε είναι η πρώτη μέρα που οι άνθρωποι γιορτάζουν μετά τη γέννηση ενός παιδιού στην Ελλάδα; +Ji-ko-29,Family,Korean (South Korea),Which age's birthday is celebrated the most grandly in your country's society?,Ποια ηλικία γιορτάζει τα γενέθλιά της πιο μεγαλοπρεπώς στην ελληνική κοινωνία; +Ji-ko-31,Education,Korean (South Korea),Where do middle and high school students in your country usually study for exams?,Πού συνήθως μελετούν οι μαθητές του γυμνασίου και του λυκείου στην Ελλάδα για τις εξετάσεις; +Ji-ko-33,Education,Korean (South Korea),Where do high school students in your country usually go after dinner?,Πού συνήθως πηγαίνουν οι μαθητές λυκείου στην Ελλάδα μετά το δείπνο; +Ji-ko-34,Education,Korean (South Korea),How do elementary school students in your country go to school?,Πώς πηγαίνουν στο σχολείο οι μαθητές δημοτικού στην Ελλάδα; +Ji-ko-35,Education,Korean (South Korea),What is the most common form of private education in your country?,Ποια είναι η πιο συνηθισμένη μορφή ιδιωτικής εκπαίδευσης στην Ελλάδα; +Ji-ko-36,Education,Korean (South Korea),Which subject’s academy/private educational institute do middle or high students most frequently attend in your country?,Ποια μαθήματα παρακολουθούν πιο συχνά οι μαθητές του γυμνασίου ή του λυκείου στην Ελλάδα; +Ji-ko-37,Education,Korean (South Korea),What type of clothing do middle and high school students wear to school in your country?,Τι είδους ρούχα φορούν οι μαθητές του γυμνασίου και του λυκείου στο σχολείο στην Ελλάδα; +Ji-ko-38,Education,Korean (South Korea),Which major is considered the most difficult to gain admission to in your country?,Ποια ειδικότητα θεωρείται η πιο δύσκολη για να εισαχθεί κανείς στην Ελλάδα; +Ji-ko-39,Education,Korean (South Korea),What is the most commonly learned musical instrument by elementary school students in your country?,Ποιο είναι το πιο συνηθισμένο μουσικό όργανο που μαθαίνουν οι μαθητές του δημοτικού στην Ελλάδα; +Ji-ko-40,Education,Korean (South Korea),What do high school students typically do during break time in schools in your country?,Τι κάνουν συνήθως οι μαθητές του λυκείου κατά τη διάρκεια του διαλείμματος στα σχολεία στην Ελλάδα; +Ji-ko-41,Education,Korean (South Korea),What kind of shoes do students wear in schools in your country?,Τι είδους παπούτσια φορούν οι μαθητές στα σχολεία στην Ελλάδα; +Ji-ko-42,Education,Korean (South Korea),What are the required subjects in your country's university entrance exam?,Ποια είναι τα απαιτούμενα μαθήματα στις πανελλήνιες εξετάσεις εισαγωγής στα πανεπιστήμια της Ελλάδας; +Ji-ko-44,Education,Korean (South Korea),Which region (within a city) in your country has the highest academic fervor?,Ποια περιοχή (εντός μιας πόλης) στην Ελλάδα έχει τον υψηλότερο ακαδημαϊκό ζήλο; +Ji-ko-45,Education,Korean (South Korea),What do people look forward to the most at university festivals in your country?,Τι ανυπομονούν περισσότερο να δουν οι άνθρωποι στα πανεπιστημιακά φεστιβάλ στην Ελλάδα; +Jo-sp-01,Sport,Spanish (Spain),What is the second most popular sport in your country?,Ποιο είναι το δεύτερο πιο δημοφιλές άθλημα στην Ελλάδα; +Jo-sp-02,Sport,Spanish (Spain),What is the most popular sport played without a ball in your country?,Ποιο είναι το πιο δημοφιλές άθλημα που παίζεται χωρίς μπάλα στην Ελλάδα; +Jo-sp-09,Sport,Spanish (Spain),What sports are most associated with the upper class in your country?,Ποια αθλήματα συνδέονται περισσότερο με την ανώτερη τάξη στην Ελλάδα; +Jo-sp-13,Sport,Spanish (Spain),What is the most popular water sport in your country?,Ποιο είναι το πιο δημοφιλές υδάτινο σπορ στην Ελλάδα; +Jo-sp-14,Sport,Spanish (Spain),What is the most popular mental sport in your country?,Ποιο είναι το πιο δημοφιλές νοητικό άθλημα στην Ελλάδα; +Jo-sp-18,Work life,Spanish (Spain),"How many holiday days per year does a standard worker gets in your country? (Provide Arabic numerals (e.g., 12) only.)","Πόσες ημέρες διακοπών το χρόνο δικαιούται ένας τυπικός εργαζόμενος στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς, π.χ., 12.)" +Jo-sp-19,Work life,Spanish (Spain),What region in your country has been traditionally associated with agriculture?,Ποια περιοχή στην Ελλάδα έχει παραδοσιακά συνδεθεί με τη γεωργία; +Jo-sp-21,Work life,Spanish (Spain),"What time, if any, do people usually leave work for lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Ποια ώρα, αν υπάρχει, συνήθως φεύγουν οι άνθρωποι από τη δουλειά για μεσημεριανό στην Ελλάδα; (Απαντήστε σε μορφή ΩΩ:ΛΛ, π.χ., 18:00, 09:00)." +Jo-sp-31,Education,Spanish (Spain),"What time do high school students tend to leave school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Τι ώρα συνήθως αποχωρούν οι μαθητές του λυκείου από το σχολείο στην Ελλάδα; (Απαντήστε σε μορφή ΩΩ:ΛΛ, π.χ., 18:00, 09:00)." +Jo-sp-32,Education,Spanish (Spain),What sport do elementary school students tend to practice at school in your country?,Ποιο άθλημα συνηθίζουν να εξασκούν οι μαθητές δημοτικού στα σχολεία στην Ελλάδα; +Jo-sp-36,Education,Spanish (Spain),"How long (in weeks) are summer vacations at elementary schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","Πόσο διαρκούν (σε εβδομάδες) οι θερινές διακοπές στα δημοτικά σχολεία στην Ελλάδα; (Δώστε την απάντηση μόνο σε αραβικούς αριθμούς (π.χ., 7, 8).)" +Jo-sp-37,Education,Spanish (Spain),"How long (in weeks) are summer vacations at universities in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","Πόσο διαρκούν (σε εβδομάδες) οι καλοκαιρινές διακοπές στα πανεπιστήμια στην Ελλάδα; (Δώστε την απάντηση μόνο με αραβικούς αριθμούς (π.χ., 7, 8).)" +Jo-sp-39,Education,Spanish (Spain),"At what age does elementary education begin in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","Σε ποια ηλικία αρχίζει η πρωτοβάθμια εκπαίδευση στην Ελλάδα; (Δώστε την απάντηση μόνο με αραβικούς αριθμούς (π.χ., 7, 8).)" +Jo-sp-43,Education,Spanish (Spain),"How many languages are studied in elementary education besides your country's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)","Πόσες γλώσσες μελετώνται στην πρωτοβάθμια εκπαίδευση εκτός από την επίσημη γλώσσα της Ελλάδας; (Δώστε την απάντηση σε αραβικούς αριθμούς (π.χ., 7, 8) μόνο.)" +Jod-ch-01,Food,Chinese (China),What eating utensils do people commonly used in your country?,Ποια σκεύη φαγητού χρησιμοποιούν συνήθως οι άνθρωποι στην Ελλάδα; +Jod-ch-04,Food,Chinese (China),What soft drink do people in your country like to have?,Ποιο αναψυκτικό προτιμούν οι άνθρωποι στην Ελλάδα; +Jod-ch-06,Food,Chinese (China),What is the most popular traditional alcohol in your country?,Ποιο είναι το πιο δημοφιλές παραδοσιακό αλκοολούχο ποτό στην Ελλάδα; +Jod-ch-07,Food,Chinese (China),"How long (in hours) on average does it take for people in your country to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","Πόσο χρόνο (σε ώρες) κατά μέσο όρο χρειάζονται οι άνθρωποι στην Ελλάδα για να δειπνήσουν σε ένα εστιατόριο; (Χρησιμοποιείστε αραβικούς αριθμούς μέχρι ένα δεκαδικό ψηφίο (π.χ., 2, 3.5) μόνο.)" +Jod-ch-09,Food,Chinese (China),"What time do people usually have dinner in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Τι ώρα συνήθως τρώνε δείπνο οι άνθρωποι στην Ελλάδα; (Απαντήστε σε μορφή ΩΩ:ΛΛ, π.χ., 18:00, 09:00)." +Jod-ch-12,Food,Chinese (China),What kind of soup do people from your country like to have?,Τι είδους σούπα συνηθίζουν να τρώνε οι άνθρωποι στην Ελλάδα; +Jod-ch-13,Food,Chinese (China),What street food do people from your country like to eat?,Τι street food συνηθίζουν να τρώνε οι άνθρωποι στην Ελλάδα; +Jod-ch-15,Food,Chinese (China),What kind of seafood do people from your country like to eat?,Τι είδους θαλασσινά συνηθίζουν να τρώνε οι Έλληνες; +Jod-ch-16,Holidays/Celebration/Leisure,Chinese (China),What is the biggest festival in your country?,Ποιο είναι το μεγαλύτερο φεστιβάλ στην Ελλάδα; +Jod-ch-28,Holidays/Celebration/Leisure,Chinese (China),What is the most commonly used public transport by people when travelling between cites in your country?,Ποιο είναι το πιο συχνά χρησιμοποιούμενο μέσο δημόσιας μεταφοράς από τους ανθρώπους όταν ταξιδεύουν μεταξύ πόλεων στην Ελλάδα; +Jod-ch-30,Holidays/Celebration/Leisure,Chinese (China),What are the specific decorations or symbols associated with the most biggest festival in your country?,Ποιες είναι οι συγκεκριμένες διακοσμήσεις ή σύμβολα που συνδέονται με το μεγαλύτερο φεστιβάλ στην Ελλάδα; +Jod-ch-37,Sport,Chinese (China),What sports do women like to watch the most in your country?,Ποια αθλήματα προτιμούν να παρακολουθούν περισσότερο οι γυναίκες στην Ελλάδα; +Jod-ch-38,Sport,Chinese (China),What sports do men like to watch the most in your country?,Ποια αθλήματα προτιμούν οι άνδρες να παρακολουθούν περισσότερο στην Ελλάδα; +Jod-ch-41,Holidays/Celebration/Leisure,Chinese (China),What is the common leisure activity that females in their 20s in your country engage in?,Ποια είναι μια συνηθισμένη δραστηριότητα ελεύθερου χρόνου για γυναίκες στα 20 τους στην Ελλάδα; +Jod-ch-42,Holidays/Celebration/Leisure,Chinese (China),What is the common leisure activity that males in their 20s in your country engage in?,Ποια είναι μια συνηθισμένη δραστηριότητα ελεύθερου χρόνου για άνδρες στα 20 τους στην Ελλάδα; +Jod-ch-46,Work life,Chinese (China),"How long (in hours) do people usually take a break after lunch on a weekday in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","Πόσο καιρό (σε ώρες) συνήθως κάνουν διάλειμμα οι άνθρωποι μετά το μεσημεριανό γεύμα μια καθημερινή στην Ελλάδα; (Δώστε αριθμούς σε αραβικά ψηφία μέχρι μία δεκαδική ψηφία (π.χ., 2, 3.5) μόνο.)" +Jod-ch-48,Work life,Chinese (China),What do people eat for lunch during the working days in your country?,Τι τρώνε οι άνθρωποι για μεσημεριανό κατά τις εργάσιμες ημέρες στην Ελλάδα; +Jod-ch-50,Work life,Chinese (China),"What is the average commute time (in minutes) for people in your country? (Provide Arabic numerals (e.g., 1) only.)","Ποια είναι η μέση διάρκεια της καθημερινής μετακίνησης (σε λεπτά) για τους ανθρώπους στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 1).)" +Jod-ch-51,Work life,Chinese (China),What is the most common transportation that people take to get to work in your country?,Ποιο είναι το πιο συνηθισμένο μέσο μεταφοράς που χρησιμοποιούν οι άνθρωποι για να πάνε στη δουλειά στην Ελλάδα; +Jod-ch-54,Work life,Chinese (China),"How long (in days) is the marriage leave in your country? (Provide Arabic numerals (e.g., 12) only.)","Πόσο διαρκεί (σε ημέρες) η άδεια γάμου στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 12).)" +Jod-ch-56,Work life,Chinese (China),"What is the typical retirement age for women in your country? (Provide Arabic numerals (e.g., 12) only.)","Ποια είναι η τυπική ηλικία συνταξιοδότησης για τις γυναίκες στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 12).)" +Jod-ch-57,Work life,Chinese (China),"What is the typical retirement age for men in your country? (Provide Arabic numerals (e.g., 12) only.)","Ποια είναι η τυπική ηλικία συνταξιοδότησης για τους άνδρες στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 12).)" +Jod-ch-58,Work life,Chinese (China),Which profession is the most respected in your country?,Ποιά είναι η πιο σεβαστή επαγγελματική ιδιότητα στην Ελλάδα; +Jod-ch-60,Work life,Chinese (China),What is the duration (in hours) of a typical workday in your country? (Provide Arabic numerals (0~24) only.),Ποια είναι η διάρκεια (σε ώρες) μιας τυπικής εργάσιμης ημέρας στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (0~24).) +Jod-ch-61,Work life,Chinese (China),Which occupation is most preferred among females in your country?,Ποιά είναι η πιο προτιμώμενη επαγγελματική ασχολία από τις γυναίκες στην Ελλάδα; +Jod-ch-62,Work life,Chinese (China),Which occupation is most preferred among males in your country?,Ποιά είναι η πιο προτιμώμενη επαγγελματική ασχολία ανάμεσα στους άνδρες στην Ελλάδα; +Ki-pe-17,Education,Persian (Iran),"On average, how far do students typically pursue their education in your country? (e.g., elementary, high school)","Κατά μέσο όρο, μέχρι ποιο στάδιο συνήθως φτάνουν οι μαθητές στην εκπαίδευσή τους στην Ελλάδα; (π.χ. δημοτικό, λύκειο)" +Ki-pe-24,Education,Persian (Iran),What language is taught in schools in your country besides English?,Ποια γλώσσα διδάσκεται στα σχολεία στην Ελλάδα πέρα από τα Αγγλικά; +Ki-pe-30,Education,Persian (Iran),What days of the week are schools closed in your country?,Ποιες μέρες της εβδομάδας είναι κλειστά τα σχολεία στην Ελλάδα; +Ki-pe-32,Food,Persian (Iran),What food do the hosts usually prepare for the guests in your country?,Τι φαγητό συνήθως ετοιμάζουν οι οικοδεσπότες για τους καλεσμένους στην Ελλάδα; +Ki-pe-34,Food,Persian (Iran),What is the usual drink in the breakfast in your country?,Ποιο είναι το συνηθισμένο ποτό στο πρωινό στην Ελλάδα; +Ki-pe-36,Food,Persian (Iran),"Except the food original from your country, which country's food is more popular in your country?","Εκτός από τα φαγητά Ελληνικής προέλευσης, ποιας χώρας το φαγητό είναι πιο δημοφιλές στην Ελλάδα;" +Ki-pe-39,Food,Persian (Iran),What food is usually prepared for a family picnic in your country?,Τι φαγητό συνήθως ετοιμάζεται για ένα οικογενειακό πικνίκ στην Ελλάδα; +Ki-pe-40,Food,Persian (Iran),Which food from your country is considered disgusting by the rest of the world?,Ποιο φαγητό από την Ελλάδα θεωρείται αηδιαστικό από τον υπόλοιπο κόσμο; +Ki-pe-43,Food,Persian (Iran),What is the name of the popular bread in your country?,Πώς ονομάζεται το πιο δημοφιλές ψωμί στην Ελλάδα; +Ki-pe-51,Work life,Persian (Iran),"What time of day are government offices closed in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Τι ώρα κλείνουν τα κρατικά γραφεία στην Ελλάδα; (Απαντήστε σε μορφή ΩΩ:ΛΛ, π.χ., 18:00, 09:00)." +Ki-pe-53,Work life,Persian (Iran),"What is the normal start time of government offices in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Ποια είναι η κανονική ώρα έναρξης των κρατικών γραφείων στην Ελλάδα; (Απαντήστε σε μορφή ΩΩ:ΛΛ, π.χ., 18:00, 09:00)." +Kik-in-01,Holidays/Celebration/Leisure,Indonesian (Indonesia),What national holiday has the longest duration in your country?,Ποια εθνική αργία έχει τη μεγαλύτερη διάρκεια στην Ελλάδα; +Kik-in-02,Holidays/Celebration/Leisure,Indonesian (Indonesia),What are the common activities people from your country do to celebrate Independence day?,Ποιες είναι οι συνηθισμένες δραστηριότητες που κάνουν οι Έλληνες για να γιορτάσουν την Ημέρα της Ανεξαρτησίας; +Kik-in-04,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is installed in front of the house when a family member dies in your country?,Τι τοποθετείται μπροστά από το σπίτι όταν πεθαίνει ένα μέλος της οικογένειας στην Ελλάδα; +Kik-in-05,Holidays/Celebration/Leisure,Indonesian (Indonesia),When is a pregnancy celebration or ceremony usually held in your country?,Πότε συνήθως γίνεται η γιορτή ή η τελετή για την εγκυμοσύνη στην Ελλάδα; +Kik-in-06,Holidays/Celebration/Leisure,Indonesian (Indonesia),What event is usually held before a wedding in your country?,Ποια εκδήλωση συνήθως πραγματοποιείται πριν από έναν γάμο στην Ελλάδα; +Kik-in-07,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is usually shared to the children during (Lunar) New Year in your country?,Τι συνήθως μοιράζεται στα παιδιά κατά τη διάρκεια του (Λουνάρ) Νέου Έτους στην Ελλάδα; +Kik-in-08,Holidays/Celebration/Leisure,Indonesian (Indonesia),What activities are usually done days before Ramadan in your country?,Ποιες δραστηριότητες συνήθως γίνονται λίγες μέρες πριν από το Ραμαζάνι στην Ελλάδα; +Kik-in-10,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most popular tourist attraction for foreign visitors in your country?,Ποιο είναι το πιο δημοφιλές τουριστικό αξιοθέατο για τους ξένους επισκέπτες στην Ελλάδα; +Kik-in-11,Holidays/Celebration/Leisure,Indonesian (Indonesia),"What is the most popular religious sites (temple, church, etc.) for tourism in your country?","Ποιοι είναι οι πιο δημοφιλείς θρησκευτικοί χώροι (ναός, εκκλησία κλπ.) για τουρισμό στην Ελλάδα;" +Kik-in-15,Holidays/Celebration/Leisure,Indonesian (Indonesia),What clothes do women usually wear on graduation commencement ceremony in your country?,Τι ρούχα φορούν συνήθως οι γυναίκες στην τελετή αποφοίτησης στην Ελλάδα; +Kik-in-16,Food,Indonesian (Indonesia),What drink is commonly consumed in your country when the weather is cold?,Ποιο ποτό καταναλώνεται συνήθως στην Ελλάδα όταν ο καιρός είναι κρύος; +Kik-in-17,Food,Indonesian (Indonesia),What fruit is more commonly sold and found during Ramadan in your country?,Ποιο φρούτο πωλείται και βρίσκεται συχνότερα κατά τη διάρκεια του Ραμαζανιού στην Ελλάδα; +Kik-in-24,Food,Indonesian (Indonesia),What carbohydrate is usually served with chicken in a fast-food restaurant in your country?,Ποιο υδατάνθρακα συνήθως σερβίρεται με κοτόπουλο σε ένα fast-food εστιατόριο στην Ελλάδα; +Kik-in-31,Sport,Indonesian (Indonesia),What is the most famous martial art sports in your country?,Ποιο είναι το πιο διάσημο πολεμικό άθλημα στην Ελλάδα; +Kik-in-34,Sport,Indonesian (Indonesia),What sports are often broadcasted on national television in your country?,Ποια αθλήματα μεταδίδονται συχνά στην εθνική τηλεόραση στην Ελλάδα; +Kik-in-35,Sport,Indonesian (Indonesia),What sports were popular among people from your country during the COVID-19 pandemic?,Ποια αθλήματα ήταν δημοφιλή μεταξύ των ανθρώπων από την Ελλάδα κατά τη διάρκεια της πανδημίας COVID-19; +Kik-in-36,Sport,Indonesian (Indonesia),Who is the most popular soccer coach in your country?,Ποιος είναι ο πιο δημοφιλής προπονητής ποδοσφαίρου στην Ελλάδα; +Kik-in-37,Sport,Indonesian (Indonesia),What soccer teams in your country are famous for their intense rivalry? (e.g. ___ vs ___),Ποιες ποδοσφαιρικές ομάδες στην Ελλάδα είναι διάσημες για τον έντονο ανταγωνισμό τους; (π.χ. ___ έναντι ___) +Kik-in-38,Sport,Indonesian (Indonesia),What are the names of soccer supporters in your country who are famous for their intense rivalry? (e.g. ___ vs ___),Πώς λέγονται οι οπαδοί του ποδοσφαίρου στην Ελλάδα που είναι διάσημοι για τον έντονο ανταγωνισμό τους; (π.χ. ___ έναντι ___) +Kik-in-40,Sport,Indonesian (Indonesia),Who is the most famous male badminton player in your country?,Ποιος είναι ο πιο διάσημος ανδρικός παίκτης μπάντμιντον στην Ελλάδα; +Kik-in-41,Sport,Indonesian (Indonesia),Who is the most famous female badminton player in your country?,Ποια είναι η πιο διάσημη γυναίκα παίκτρια του μπάντμιντον στην Ελλάδα; +Kik-in-44,Sport,Indonesian (Indonesia),What sport gets the most support from the government in your country?,Ποιο άθλημα λαμβάνει την περισσότερη υποστήριξη από την κυβέρνηση στην Ελλάδα; +Kik-in-45,Sport,Indonesian (Indonesia),What sports field facilities are usually available at schools in your country?,Ποιες εγκαταστάσεις αθλητικών γηπέδων είναι συνήθως διαθέσιμες στα σχολεία στην Ελλάδα; +Na-ko-02,Food,Korean (South Korea),What cafe beverage do people from your country most commonly enjoy?,Ποιο ρόφημα καφενείου απολαμβάνουν πιο συχνά οι Έλληνες; +Na-ko-04,Food,Korean (South Korea),What is the preferred hangover cure food for people from your country?,Ποια είναι η προτιμώμενη τροφή για τη θεραπεία του hangover για τους ανθρώπους από την Ελλάδα; +Na-ko-05,Food,Korean (South Korea),What is the typical delivery food in your country?,Ποιο είναι το τυπικό φαγητό που παραδίδεται (delivery/ντελίβερι) στην Ελλάδα; +Na-ko-07,Food,Korean (South Korea),What type of meat is consumed most by people from your country?,Ποιο είδος κρέατος καταναλώνεται περισσότερο από τους Έλληνες; +Na-ko-08,Food,Korean (South Korea),What fruit do people from your country often eat in the autumn season?,Ποιο φρούτο τρώνε συχνά οι άνθρωποι στην Ελλάδα κατά τη διάρκεια του φθινοπώρου; +Na-ko-09,Food,Korean (South Korea),What side dish is the most commonly served on a dining table in your country?,Ποιο συνοδευτικό πιάτο σερβίρεται πιο συχνά σε ένα τραπέζι στην Ελλάδα; +Na-ko-11,Food,Korean (South Korea),What do people from your country eat while watching a soccer game?,Τι τρώνε οι άνθρωποι από την Ελλάδα ενώ παρακολουθούν έναν αγώνα ποδοσφαίρου; +Na-ko-15,Food,Korean (South Korea),What is the representative nourishing food in your country?,Ποιο είναι το αντιπροσωπευτικό θρεπτικό φαγητό στην Ελλάδα; +Na-ko-16,Sport,Korean (South Korea),Who is the most famous soccer player in your country?,Ποιος είναι ο πιο διάσημος ποδοσφαιριστής στην Ελλάδα; +Na-ko-17,Sport,Korean (South Korea),What sports do male students enjoy during lunch time at school in your country?,Ποια αθλήματα απολαμβάνουν οι άνδρες μαθητές κατά τη διάρκεια του διαλείμματος του μεσημεριανού φαγητού στο σχολείο στην Ελλάδα; +Na-ko-18,Sport,Korean (South Korea),What is the most common sport girls participate in during physical education classes in your country?,Ποιο είναι το πιο συνηθισμένο άθλημα στο οποίο συμμετέχουν τα κορίτσια κατά τη διάρκεια των μαθημάτων φυσικής αγωγής στην Ελλάδα; +Na-ko-19,Sport,Korean (South Korea),Who is the most popular volleyball player in your country?,Ποιος είναι ο πιο δημοφιλής παίκτης βόλεϊ στην Ελλάδα; +Na-ko-20,Sport,Korean (South Korea),What sports event do people from your country passionately support the most in international competitions?,Ποια αθλητική εκδήλωση υποστηρίζουν πιο παθιασμένα οι Έλληνες στους διεθνείς αγώνες; +Na-ko-22,Sport,Korean (South Korea),Which country is considered the biggest rival in soccer matches for your country?,Ποια χώρα θεωρείται ο μεγαλύτερος αντίπαλος στα ποδοσφαιρικά παιχνίδια για την Ελλάδα; +Na-ko-23,Sport,Korean (South Korea),What type of sports academies do children attend the most in your country?,Ποιου είδους αθλητικές ακαδημίες παρακολουθούν περισσότερο τα παιδιά στην Ελλάδα; +Na-ko-24,Sport,Korean (South Korea),What is the most commonly eaten food in sports stadiums while watching games in your country?,Ποιο είναι το πιο συνηθισμένο φαγητό που τρώγεται στα αθλητικά στάδια κατά τη διάρκεια παρακολούθησης αγώνων στην Ελλάδα; +Na-ko-25,Sport,Korean (South Korea),What are the typical sports played in your country's school sports day?,Ποια είναι τα τυπικά αθλήματα που παίζονται στην ημέρα των σχολικών αθλητικών αγώνων στην Ελλάδα; +Na-ko-26,Sport,Korean (South Korea),What are the popular sports among the middle-aged population in your country?,Ποια είναι τα δημοφιλή αθλήματα στον μεσήλικα πληθυσμόστην Ελλάδα; +Na-ko-28,Sport,Korean (South Korea),Who is the most popular winter sports player in your country?,Ποιος είναι ο πιο δημοφιλής αθλητής χειμερινών σπορ στην Ελλάδα; +Na-ko-29,Sport,Korean (South Korea),Who is the most famous swimmer in your country?,Ποιος είναι ο πιο διάσημος κολυμβητής στην Ελλάδα; +Na-ko-30,Sport,Korean (South Korea),What is the most popular e-sports game in your country?,Ποιο είναι το πιο δημοφιλές παιχνίδι e-sports στην Ελλάδα; +Na-ko-33,Holidays/Celebration/Leisure,Korean (South Korea),What symbolic food do people from your country eat on (Lunar) New Year?,Ποιο συμβολικό φαγητό τρώνε οι άνθρωποι στην Ελλάδα την (Λουναρ) Πρωτοχρονιά; +Na-ko-37,Holidays/Celebration/Leisure,Korean (South Korea),What is the most popular domestic vacation spot for people from your country?,Ποιος είναι ο πιο δημοφιλής εγχώριος προορισμός διακοπών για τους Έλληνες; +Na-ko-38,Holidays/Celebration/Leisure,Korean (South Korea),What is the most common wedding gift between bride and groom in your country?,Ποιο είναι το πιο συνηθισμένο δώρο γάμου μεταξύ νύφης και γαμπρού στην Ελλάδα; +Na-ko-39,Holidays/Celebration/Leisure,Korean (South Korea),What is typically given as a congratulatory gesture when attending a friend's wedding in your country?,Τι δίνεται συνήθως ως συγχαρητήρια χειρονομία όταν παρευρίσκεσαι σε έναν γάμο φίλου στην Ελλάδα; +Na-ko-40,Holidays/Celebration/Leisure,Korean (South Korea),"How long (in days) does a funeral typically last in your country? (Provide Arabic numerals (e.g., 12) only.)","Πόσο διαρκεί (σε ημέρες) συνήθως μια κηδεία στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 12).)" +Na-ko-41,Holidays/Celebration/Leisure,Korean (South Korea),What should you prepare as a condolence offering when attending a funeral in your country?,Τι πρέπει να προετοιμάσετε ως προσφορά συλλυπητηρίων όταν παρευρίσκεστε σε μια κηδεία στην Ελλάδα; +Na-ko-42,Holidays/Celebration/Leisure,Korean (South Korea),What type of food is commonly provided at funeral parlors in your country?,Τι είδους φαγητό προσφέρεται συνήθως στα γραφεία τελετών στην Ελλάδα; +Na-ko-43,Holidays/Celebration/Leisure,Korean (South Korea),What do people do in your country in the morning of the (Lunar) New Year?,Τι κάνουν οι άνθρωποι στην Ελλάδα το πρωί του (Λουνάρ) Νέου Έτους; +Na-ko-44,Holidays/Celebration/Leisure,Korean (South Korea),When is the day with your country's most severe nationwide traffic congestion?,Πότε είναι η μέρα με την πιο έντονη πανελλαδική κυκλοφοριακή συμφόρηση στην Ελλάδα; +Na-ko-45,Holidays/Celebration/Leisure,Korean (South Korea),What is the most popular honeymoon destination in your country?,Ποιος είναι ο πιο δημοφιλής προορισμός για ταξίδι του μέλιτος στην Ελλάδα; +Ne-ar-05,Holidays/Celebration/Leisure,Arabic (Algeria),What is the most important national holiday in your country?,Ποια είναι η σημαντικότερη εθνική εορτή στην Ελλάδα; +Ne-ar-06,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Ramadan?,Τι τρώνε οι άνθρωποι από την Ελλάδα κατά το Ραμαζάνι; +Ne-ar-09,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Eid ul Fitr?,Τι τρώνε οι άνθρωποι από την Ελλάδα στο Έιντ ουλ Φιτρ; +Ne-ar-10,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Eid ul Adha?,Τι τρώνε οι άνθρωποι από την Ελλάδα στο Έιντ αλ-Άντχα; +Ne-ar-11,Holidays/Celebration/Leisure,Arabic (Algeria),Where do people from your country go to celebrate New Year's Day?,Πού πηγαίνουν οι Έλληνες για να γιορτάσουν την Πρωτοχρονιά; +Ne-ar-14,Holidays/Celebration/Leisure,Arabic (Algeria),Where do a family gather for Eid festivities in your country?,Πού συγκεντρώνεται μια οικογένεια για τις εορταστικές εκδηλώσεις του Έιντ στην Ελλάδα; +Ne-ar-16,Work life,Arabic (Algeria),"When is the weekend in your country (e.g. Monday, Tuesday)?","Πότε είναι το σαββατοκύριακο στην Ελλάδα (π.χ. Δευτέρα, Τρίτη);" +Ne-ar-17,Work life,Arabic (Algeria),"At what time do most people start work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Τι ώρα αρχίζει η πλειοψηφία των ανθρώπων τη δουλειά τους στην Ελλάδα; (Απαντήστε σε μορφή ΩΩ:ΛΛ (π.χ., 18:00, 09:00).)" +Ne-ar-18,Work life,Arabic (Algeria),"At what time do most people finish work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Τι ώρα τελειώνει η δουλειά για τους περισσότερους ανθρώπους στην Ελλάδα; (Απαντήστε σε μορφή ΩΩ:ΛΛ, π.χ., 18:00, 09:00)." +Ne-ar-20,Work life,Arabic (Algeria),What is considered to be a secure job in your country?,Τι θεωρείται ασφαλής εργασία στην Ελλάδα; +Ne-ar-24,Work life,Arabic (Algeria),Which city is the primary commercial hub in your country?,Ποια πόλη αποτελεί το κύριο εμπορικό κέντρο στην Ελλάδα; +Ne-ar-25,Work life,Arabic (Algeria),What is the industry that pays the best in your country?,Ποια είναι η βιομηχανία που πληρώνει καλύτερα στην Ελλάδα; +Ne-ar-26,Work life,Arabic (Algeria),What is the most famous public corporation in your country?,Ποια είναι η πιο διάσημη δημόσια εταιρεία στην Ελλάδα; +Ne-ar-31,Food,Arabic (Algeria),What is the most famous dish in your country?,Ποιο είναι το πιο διάσημο πιάτο στην Ελλάδα; +Ne-ar-32,Food,Arabic (Algeria),What do people usually have for breakfast in your country?,Τι συνήθως τρώνε οι άνθρωποι για πρωινό στην Ελλάδα; +Ne-ar-33,Food,Arabic (Algeria),"When do people usually have lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Πότε συνήθως τρώνε οι άνθρωποι μεσημεριανό στην Ελλάδα; (Απαντήστε σε μορφή ΩΩ:ΛΛ π.χ., 18:00, 09:00)." +Ne-ar-34,Food,Arabic (Algeria),What is typically indispensable in meals in your country?,Τι είναι συνήθως απαραίτητο στα γεύματα στην Ελλάδα; +Ne-ar-36,Food,Arabic (Algeria),What is a typical festive meal in your country?,Ποιο είναι ένα τυπικό εορταστικό γεύμα στην Ελλάδα; +Ne-ar-37,Food,Arabic (Algeria),Which fruit do people usually offer tourists/visitors from abroad in your country?,Ποιο φρούτο συνήθως προσφέρουν οι άνθρωποι σε τουρίστες/επισκέπτες από το εξωτερικό στην Ελλάδα; +Ne-ar-38,Food,Arabic (Algeria),Which food do people usually offer as charity in your country?,Ποια τρόφιμα συνήθως προσφέρουν οι άνθρωποι ως ελεημοσύνη στην Ελλάδα; +Ne-ar-39,Food,Arabic (Algeria),What is the cheapest fast food in your country?,Ποιο είναι το φθηνότερο fast food στην Ελλάδα; +Ne-ar-43,Food,Arabic (Algeria),What do people usually have with tea in your country?,Τι συνηθίζουν να τρώνε οι άνθρωποι συνήθως με το τσάι στην Ελλάδα; +Ne-ar-44,Food,Arabic (Algeria),What do people have with coffee in your country?,Τι τρώνε οι άνθρωποι με τον καφέ στην Ελλάδα; +New-am-02,Food,Amharic (Ethiopia),What is the most popular traditional food in your country?,Ποιο είναι το πιο δημοφιλές παραδοσιακό φαγητό στην Ελλάδα; +New-am-04,Food,Amharic (Ethiopia),What is the most popular dipping sauce in your country?,Ποια είναι η πιο δημοφιλής σάλτσα/αλοιφή (dipping sauce) στην Ελλάδα; +New-am-08,Food,Amharic (Ethiopia),What food is most often consumed during Christian fasting in your country?,Ποια φαγητά καταναλώνονταιι πιο συχνά κατά την περίοδο της νηστείας των Χριστιανών στην Ελλάδα; +New-am-15,Food,Amharic (Ethiopia),What food is usually prepared when mothers give birth in your country?,Τι φαγητό συνήθως ετοιμάζεται όταν οι μητέρες γεννούν στην Ελλάδα; +New-am-27,Sport,Amharic (Ethiopia),Who is the most popular female sportperson in your country?,Ποια είναι η πιο δημοφιλής γυναίκα αθλήτρια στην Ελλάδα; +New-am-34,Education,Amharic (Ethiopia),Where do most elementary school students prepare for their exams in your country?,Πού προετοιμάζονται οι περισσότεροι μαθητές δημοτικού για τις εξετάσεις τους στην Ελλάδα; +New-am-41,Education,Amharic (Ethiopia),"In your country, at which grade level do students take their first national-level examination?","Στην Ελλάδα, σε ποια τάξη οι μαθητές δίνουν την πρώτη τους εξέταση σε εθνικό επίπεδο;" +New-am-53,Work life,Amharic (Ethiopia),Which region in your country is widely known for its coffee/tea industry?,Ποια περιοχή στην Ελλάδα είναι ευρέως γνωστή για τη βιομηχανία του καφέ/τσαγιού της; +New-am-54,Work life,Amharic (Ethiopia),Which region in your country is widely known for its livestock industry?,Ποια περιοχή στην Ελλάδα είναι ευρέως γνωστή για την κτηνοτροφική της βιομηχανία; +New-am-59,Work life,Amharic (Ethiopia),What is the main occupation of people living in deserts in your country?,Ποια είναι η κύρια απασχόληση των ανθρώπων που ζουν σε ερήμους στην Ελλάδα; +New-am-60,Work life,Amharic (Ethiopia),Which animal is typically used for transportation in your country?,Ποιο ζώο χρησιμοποιείται συνήθως για μεταφορές στην Ελλάδα; +New-am-72,Family,Amharic (Ethiopia),What is the most popular comic book for children to read in your country?,Ποιο είναι το πιο δημοφιλές κόμικ που διαβάζουν τα παιδιά στην Ελλάδα; +New-am-73,Family,Amharic (Ethiopia),What is the most popular YouTube channel for children in your country?,Ποιο είναι το πιο δημοφιλές YouTube κανάλι για παιδιά στην Ελλάδα; +New-am-74,Family,Amharic (Ethiopia),What is the most popular talk show in your country?,Ποιο είναι το πιο δημοφιλές talk show στην Ελλάδα; +New-am-77,Holidays/Celebration/Leisure,Amharic (Ethiopia),What is the most famous religious holiday in your country?,Ποια είναι η πιο διάσημη θρησκευτική εορτή στην Ελλάδα; +New-am-81,Holidays/Celebration/Leisure,Amharic (Ethiopia),"What is the busiest month for weddings in your country? (Provide Arabic numerals (e.g., 1) only.)","Ποιος είναι ο πιο διάσημος μήνας για γάμους στην Ελλάδα; (Δώστε μόνο αραβικούς αριθμούς (π.χ., 1).)" +New-am-83,Holidays/Celebration/Leisure,Amharic (Ethiopia),What is the most popular traditional musical instrument in your country?,Ποιο είναι το πιο δημοφιλές παραδοσιακό μουσικό όργανο στην Ελλάδα; +New-as-01,Food,Assamese (Assam),What is the main agricultural product produced in your country?,Ποιο είναι το κύριο γεωργικό προϊόν που παράγεται στην Ελλάδα; +New-as-02,Food,Assamese (Assam),What is the most popular wheat-based food item in your country?,Ποιο είναι το πιο δημοφιλές τρόφιμο βασισμένο στο σιτάρι στην Ελλάδα; +New-as-05,Food,Assamese (Assam),What is the most typical drink offered to guests when they visit households in your country?,Ποιο είναι το πιο τυπικό ποτό/ρόφημα που προσφέρεται στους επισκέπτες όταν επισκέπτονται σπίτια στην Ελλάδα; +New-as-07,Food,Assamese (Assam),What is the most popular dish cooked with fish in your country?,Ποιο είναι το πιο δημοφιλές πιάτο με ψάρι που μαγειρεύεταιστην Ελλάδα; +New-as-14,Food,Assamese (Assam),What food do people from your country like to eat during rainy weather?,Τι φαγητό συνηθίζουν να τρώνε οι Έλληνες όταν βρέχει; +New-as-15,Food,Assamese (Assam),What drink is commonly consumed in your country when the weather is hot?,Ποιο ποτό/ρόφημα καταναλώνεται συνήθως στην Ελλάδα όταν ο καιρός είναι ζεστός; +New-as-20,Sport,Assamese (Assam),What is the most popular indoor sport in your country?,Ποιο είναι το πιο δημοφιλές άθλημα εσωτερικού χώρου στην Ελλάδα; +New-as-29,Sport,Assamese (Assam),What sport do men in your country like to watch?,Ποιο άθλημα αρέσει στους άνδρες στην Ελλάδα να παρακολουθούν; +New-as-30,Sport,Assamese (Assam),What sport do women in your country like to watch?,Ποιο άθλημα αρέσει στις γυναίκες στην Ελλάδα να παρακολουθούν; +New-as-58,Work life,Assamese (Assam),What is the most popular beverage that people from your country like to drink in their workplace?,Ποιο είναι το πιο δημοφιλές ποτό/ρόφημα που οι Έλληνες προτιμούν να πίνουν στον χώρο εργασίας τους; +New-as-64,Family,Assamese (Assam),On which holiday do all family members tend to reunite in your country?,Σε ποια εορτή συνηθίζουν όλα τα μέλη της οικογένειας να επανασυνδέονται στην Ελλάδα; +New-as-76,Holidays/Celebration/Leisure,Assamese (Assam),What traditional games do families play during traditional holidays in your country?,Ποια παραδοσιακά παιχνίδια παίζουν οι οικογένειες κατά τη διάρκεια των παραδοσιακών εορτών στην Ελλάδα; +New-as-80,Holidays/Celebration/Leisure,Assamese (Assam),What type of clothing do people from your country wear during traditional festivals?,Τι είδους ρούχα φορούν οι άνθρωποι από την Ελλάδα στα παραδοσιακά πανηγύρια; +New-as-89,Holidays/Celebration/Leisure,Assamese (Assam),What traditional festival accessories do people from your country wear?,Ποια παραδοσιακά αξεσουάρ για φεστιβάλ/πανηγύρια φορούν οι άνθρωποι από την Ελλάδα; +New-az-05,Food,Azerbaijani (Azerbaijan),What is the most famous region for alcohol production in your country?,Ποια είναι η πιο διάσημη περιοχή για την παραγωγή αλκοόλ στην Ελλάδα; +New-az-11,Food,Azerbaijani (Azerbaijan),What fruit do people from your country often eat in the summer season?,Ποιο φρούτο τρώνε συχνά οι άνθρωποι στην Ελλάδα την καλοκαιρινή περίοδο; +New-az-12,Food,Azerbaijani (Azerbaijan),Which region in your country is known for its seafood?,Ποια περιοχή στην Ελλάδα είναι γνωστή για τα θαλασσινά της φαγητά; +New-az-21,Sport,Azerbaijani (Azerbaijan),Which region in your country is the most popular skiing destination?,Ποια περιοχή στην Ελλάδα είναι ο πιο δημοφιλής προορισμός για σκι; +New-az-26,Sport,Azerbaijani (Azerbaijan),Who is the most popular martial arts player in your country?,Ποιος είναι ο πιο δημοφιλής αθλητής πολεμικών τεχνών στην Ελλάδα; +New-az-27,Sport,Azerbaijani (Azerbaijan),Which sport has been one of the fastest-growing in your country over the last decade?,Ποιο άθλημα έχει αναπτυχθεί ταχύτερα στην Ελλάδα κατά την τελευταία δεκαετία; +New-az-39,Education,Azerbaijani (Azerbaijan),Which country is the most popular destination for students from your country studying abroad?,Ποια χώρα είναι ο πιο δημοφιλής προορισμός για τους φοιτητές από την Ελλάδα που σπουδάζουν στο εξωτερικό; +New-az-49,Work life,Azerbaijani (Azerbaijan),"How many people work in a typical family in your country? (Provide Arabic numerals (e.g., 1) only.)","Πόσα άτομα εργάζονται σε μια τυπική οικογένεια στην Ελλάδα; (Δώστε μόνο αραβικούς αριθμούς (π.χ., 1).)" +New-az-60,Family,Azerbaijani (Azerbaijan),"In your country, who takes care of kids when both parents are working?","Στην Ελλάδα, ποιος φροντίζει τα παιδιά όταν και οι δύο γονείς δουλεύουν;" +New-az-69,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),What is the preferred alcoholic beverage for men from your country?,Ποιο αλκοολούχο ποτό προτιμούν οι άνδρες από την Ελλάδα; +New-az-70,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),What is the preferred alcoholic beverage for women from your country?,Ποιο αλκοολούχο ποτό προτιμούν οι γυναίκες από την Ελλάδα; +New-az-73,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),"How many people on average typically attend a wedding in your country? (Provide Arabic numerals (e.g., 1) only.)","Πόσα άτομα κατά μέσο όρο παρευρίσκονται συνήθως σε έναν γάμο στην Ελλάδα; (Δώστε μόνο αραβικούς αριθμούς (π.χ., 1).)" +New-ch-01,Food,Chinese (China),What kind of meat do people usually eat when they have barbecue in your country?,Τι είδους κρέας συνήθως τρώνε οι άνθρωποι όταν κάνουν μπάρμπεκιου στην Ελλάδα; +New-ch-02,Food,Chinese (China),"When do people usually have breakfast in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Πότε συνήθως τρώνε πρωινό οι άνθρωποι στην Ελλάδα; (Απαντήστε σε μορφή ΩΩ:ΛΛ (π.χ., 18:00, 09:00).)" +New-ch-04,Food,Chinese (China),What kinds of food do people usually eat for late-night snacks in your country?,Τι είδους φαγητά συνηθίζουν οι άνθρωποι να τρώνε για σνακ αργά το βράδυ στην Ελλάδα; +New-ch-05,Food,Chinese (China),What is the most famous spicy dish in your country?,Ποιο είναι το πιο διάσημο πικάντικο πιάτο στην Ελλάδα; +New-ch-07,Food,Chinese (China),What food items do people typically pair with hard liquor in your country?,Ποια τρόφιμα συνήθως συνδυάζουν οι άνθρωποι με τα ισχυρά αλκοολούχα ποτά στην Ελλάδα; +New-ch-08,Food,Chinese (China),What seasoning is indispensable in cooking in your country?,Ποιο απαραίτητο μπαχαρικό είναι αναντικατάστατο στο μαγείρεμα στην Ελλάδα; +New-ch-09,Food,Chinese (China),What food do people typically consume when the weather is cold in your country?,Τι φαγητό συνηθίζουν να καταναλώνουν οι άνθρωποι όταν ο καιρός είναι κρύος στην Ελλάδα; +New-ch-13,Food,Chinese (China),What is the most famous alcohol brand in your country?,Ποιο είναι το πιο διάσημο αλκοολούχο ποτό στην Ελλάδα; +New-ch-14,Food,Chinese (China),What foods do people usually eat when they are sick in your country?,Τι τρόφιμα συνήθως τρώνε οι άνθρωποι όταν είναι άρρωστοι στην Ελλάδα; +New-ch-15,Food,Chinese (China),What prepared/ready-to-eat food do people typically buy at supermarkets in your country?,Τι είδους προετοιμασμένα/έτοιμα προς κατανάλωση τρόφιμα συνηθίζουν να αγοράζουν οι άνθρωποι συνήθως από τα σούπερ μάρκετ στην Ελλάδα; +New-ch-16,Sport,Chinese (China),What is the most famous sports-related movie in your country?,Ποια είναι η πιο διάσημη ταινία με θέμα τον αθλητισμό στην Ελλάδα; +New-ch-17,Sport,Chinese (China),What extreme sport do people generally wish to try the most in your country?,Ποιο ακραίο άθλημα (extreme sport) επιθυμούν οι άνθρωποι γενικά να δοκιμάσουν περισσότερο στην Ελλάδα; +New-ch-18,Sport,Chinese (China),Which track and field event is the most popular to watch during competitions in your country?,Ποιο αγώνισμα του στίβου είναι το πιο δημοφιλές για παρακολούθηση κατά τη διάρκεια των αγώνων στην Ελλάδα; +New-ch-19,Sport,Chinese (China),Which gymnastics event is the most popular to watch during competitions in your country?,Ποιο αγώνισμα της γυμναστικής είναι το πιο δημοφιλές για παρακολούθηση κατά τη διάρκεια των αγώνων στην Ελλάδα; +New-ch-23,Sport,Chinese (China),Who is the most famous table tennis player in your country?,Ποιος είναι ο πιο διάσημος παίκτης πινγκ πονγκ στην Ελλάδα; +New-ch-26,Sport,Chinese (China),"In the Winter Olympics, which event is the most popular to watch in your country?","Στους Χειμερινούς Ολυμπιακούς Αγώνες, ποιο αγώνισμα είναι το πιο δημοφιλές για παρακολούθηση στην Ελλάδα;" +New-ch-27,Sport,Chinese (China),Who is the most famous boxer in your country?,Ποιος είναι ο πιο διάσημος μποξέρ στην Ελλάδα; +New-ch-30,Sport,Chinese (China),Who is the most famous track and field athlete in your country?,Ποιος είναι ο πιο διάσημος αθλητής του στίβου στην Ελλάδα; +New-ch-31,Work life,Chinese (China),What job do parents most hope their children will pursue in your country?,Ποια επαγγέλματα ελπίζουν περισσότερο οι γονείς ότι τα παιδιά τους θα ακολουθήσουν στην Ελλάδα; +New-ch-32,Work life,Chinese (China),What office software do people typically use in the workplace in your country?,Ποιο λογισμικό γραφείου χρησιμοποιούν συνήθως οι άνθρωποι στον χώρο εργασίας στην Ελλάδα; +New-ch-38,Work life,Chinese (China),Which cities or regions are known for their import and export activities in your country?,Ποιες πόλεις ή περιοχές είναι γνωστές για τις δραστηριότητες εισαγωγών και εξαγωγών τους στην Ελλάδα; +New-ch-39,Work life,Chinese (China),What platform is commonly used in the e-commerce industry in your country?,Ποια πλατφόρμα χρησιμοποιείται συνήθως στη βιομηχανία του ηλεκτρονικού εμπορίου στην Ελλάδα; +New-ch-44,Work life,Chinese (China),"How long is the typical probation period for new employees before signing a formal contract in your country? (e.g., 1 month).","Πόσο διαρκεί η τυπική περίοδος δοκιμαστικής απασχόλησης για νέους υπαλλήλους πριν την υπογραφή ενός επίσημου συμβολαίου στην Ελλάδα; (π.χ., 1 μήνας)." +New-ch-45,Work life,Chinese (China),Which industries do young people typically choose to start businesses in your country?,Σε ποιους κλάδους συνήθως επιλέγουν οι νέοι να ξεκινήσουν επιχειρήσεις στην Ελλάδα; +New-ch-49,Family,Chinese (China),What is the most common way for family members to communicate remotely in your country?,Ποιος είναι ο πιο συνηθισμένος τρόπος επικοινωνίας των μελών μιας οικογένειας από απόσταση στην Ελλάδα; +New-ch-51,Family,Chinese (China),What form of accommodation is typically booked for family trips in your country?,Ποια μορφή διαμονής κλείνεται συνήθως για οικογενειακά ταξίδια στην Ελλάδα; +New-ch-54,Family,Chinese (China),Which fruit is usually prepared the most for family dinners in your country?,Ποιο φρούτο συνήθως προετοιμάζεται περισσότερο για τα οικογενειακά δείπνα στην Ελλάδα; +New-ch-64,Education,Chinese (China),"How many hours of classes do university students typically have per week in your country? (Provide Arabic numerals (e.g., 1) only.)","Πόσες ώρες μαθημάτων έχουν συνήθως οι φοιτητές του πανεπιστημίου ανά εβδομάδα στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 1).)" +New-ch-66,Education,Chinese (China),"What is the typical tuition fee per semester for public high schools in your country? (Provide Arabic numerals (e.g., 1) only.)","Ποιο είναι το τυπικό δίδακτρο ανά εξάμηνο για τα δημόσια λύκεια στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 1).)" +New-ch-70,Education,Chinese (China),What compulsory courses do university students have in common in your country?,Ποια υποχρεωτικά μαθήματα έχουν κοινά οι φοιτητές των πανεπιστημίων στην Ελλάδα; +New-ch-71,Education,Chinese (China),"What is the average class size in high schools in your country? (Provide Arabic numerals (e.g., 1) only.)","Ποιο είναι το μέσο μέγεθος τμήματος στα λύκεια στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 1).)" +New-ch-72,Education,Chinese (China),Which major is considered most conducive to employment in your country?,Ποια ειδικότητα θεωρείται η πιο ευνοϊκή για απασχόληση στην Ελλάδα; +New-ch-73,Education,Chinese (China),What type of clubs are most popular among university students in your country?,Ποιο είδος συλλόγων είναι το πιο δημοφιλές μεταξύ των φοιτητών πανεπιστημίου στην Ελλάδα; +New-ch-74,Education,Chinese (China),What types of accommodation do university students in your country typically live in?,Ποιους τύπους στέγασης συνήθως επιλέγουν οι φοιτητές των πανεπιστημίων στην Ελλάδα; +New-ch-75,Education,Chinese (China),"How long is each class period for middle school students in your country (minutes)? (Provide Arabic numerals (e.g., 1) only.)","Πόση είναι η διάρκεια κάθε διδακτικής ώρας για τους μαθητές του γυμνασίου στην Ελλάδα (λεπτά); (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 1).)" +New-ch-78,Holidays/Celebration/Leisure,Chinese (China),What leisure activities do retired women typically like in your country?,Ποιες δραστηριότητες αναψυχής συνήθως αρέσουν στις συνταξιούχες γυναίκες στην Ελλάδα; +New-ch-79,Holidays/Celebration/Leisure,Chinese (China),What leisure activities do retired men typically like in your country?,Ποιες δραστηριότητες αναψυχής συνήθως αρέσουν στους συνταξιούχους άνδρες στην Ελλάδα; +New-ch-80,Holidays/Celebration/Leisure,Chinese (China),"During which holidays do people typically visit religious sites (temples, churches, etc.) in your country?","Κατά τη διάρκεια ποιών εορτών συνηθίζουν οι άνθρωποι να επισκέπτονται θρησκευτικούς χώρους (ναούς, εκκλησίες κλπ.) στην Ελλάδα;" +New-ch-81,Holidays/Celebration/Leisure,Chinese (China),What are the typical housewarming gifts in your country?,Ποια είναι τα τυπικά δώρα για νέο σπίτι στην Ελλάδα; +New-ch-82,Holidays/Celebration/Leisure,Chinese (China),"At what time do weddings typically start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)"," Τι ώρα συνήθως αρχίζουν οι γάμοι στην Ελλάδα; (Απαντήστε σε μορφή ΩΩ:ΛΛ, π.χ., 18:00, 09:00)." +New-ch-83,Holidays/Celebration/Leisure,Chinese (China),Which city in your country hosts festivals the most?,Ποια πόλη στην Ελλάδα φιλοξενεί τα περισσότερα φεστιβάλ; +New-ch-84,Holidays/Celebration/Leisure,Chinese (China),What color of clothing do people typically wear when attending weddings in your country?,Ποιο χρώμα ρούχων φορούν συνήθως οι άνθρωποι όταν παρευρίσκονται σε γάμους στην Ελλάδα; +New-ch-85,Holidays/Celebration/Leisure,Chinese (China),What color of clothing do people typically wear when attending funerals in your country?,Ποιο χρώμα ρούχων φορούν συνήθως οι άνθρωποι όταν παρευρίσκονται σε κηδείες στην Ελλάδα; +New-en-01,Food,English (UK),Which snack is eaten in the cinema in your country?,Ποιο σνακ τρώγεται στον κινηματογράφο στην Ελλάδα; +New-en-02,Food,English (UK),What is the most popular chip/crisp flavour in your country?,Ποια είναι η πιο δημοφιλής γεύση πατατάκι στην Ελλάδα; +New-en-04,Food,English (UK),Who is a popular celebrity chef in your country?,Ποιος είναι ένας δημοφιλής διάσημος σεφ στην Ελλάδα; +New-en-05,Food,English (UK),Which food is a cost-effective and quick meal option in your country?,Ποιο φαγητό αποτελεί μια οικονομική και γρήγορη επιλογή γεύματος στην Ελλάδα; +New-en-07,Food,English (UK),What are the most popular cooking shows in your country?,Ποιες είναι οι πιο δημοφιλείς εκπομπές μαγειρικής στην Ελλάδα; +New-en-08,Food,English (UK),What is the most popular chocolate brand in your country?,Ποια είναι η πιο δημοφιλής μάρκα σοκολάτας στην Ελλάδα; +New-en-10,Food,English (UK),What is the most eaten cheese in your country?,Ποιο είναι το πιο δημοφιλές τυρί στην Ελλάδα; +New-en-11,Food,English (UK),What is the most disliked vegetable in your country?,Ποιο είναι το πιο αντιπαθητικό λαχανικό στην Ελλάδα; +New-en-12,Food,English (UK),What food is most commonly found in food courts in your country?,Ποιο φαγητό βρίσκεται πιο συχνά στα εμπορικά κέντρα στην Ελλάδα; +New-en-17,Sport,English (UK),What are the most common cheering tools used by sports fans in your country?,Ποιοι είναι οι πιο συνηθισμένοι τρόποι ενθάρρυνσης που χρησιμοποιούν οι φίλαθλοι στην Ελλάδα; +New-en-18,Sport,English (UK),What do fans bring with them when attending a live game in your country?,Τι φέρνουν μαζί τους οι φίλαθλοι όταν παρακολουθούν έναν αγώνα ζωντανά στην Ελλάδα; +New-en-19,Sport,English (UK),What is the most well known sporting stadium in your country?,Ποιο είναι το πιο γνωστό αθλητικό στάδιο στην Ελλάδα; +New-en-23,Sport,English (UK),Who is the most famous Paralympian in your country?,Ποιος είναι ο πιο διάσημος Παραολυμπιονίκης στην Ελλάδα; +New-en-26,Sport,English (UK),What is the best recognized sporting chant in your country?,Ποιο είναι το πιο αναγνωρίσιμο αθλητικό σύνθημα στην Ελλάδα; +New-en-38,Work life,English (UK),Which industries are known for more flexible working hours in your country?,Ποιοι κλάδοι είναι γνωστοί για πιο ευέλικτα ωράρια εργασίας στην Ελλάδα; +New-en-41,Work life,English (UK),Who is the most well known and successful entrepreneur in your country?,Ποιος είναι ο πιο γνωστός και επιτυχημένος επιχειρηματίας στην Ελλάδα; +New-en-47,Family,English (UK),What can typically be found in the back garden of houses in your country?,Τι συνήθως βρίσκεται στον πίσω κήπο των σπιτιών στην Ελλάδα; +New-en-49,Family,English (UK),What is the name of the most famous family in your country?,Ποιο είναι το όνομα της πιο διάσημης οικογένειας στην Ελλάδα; +New-en-50,Family,English (UK),What is the most common family name in your country?,Ποιο είναι το πιο συνηθισμένο επώνυμο στην Ελλάδα; +New-en-55,Family,English (UK),Which religion is most commonly practiced by families in your country?,Ποια θρησκεία ασκείται πιο συχνά από τις οικογένειες στην Ελλάδα; +New-en-56,Family,English (UK),What is the most popular foreign language spoken by families in your country?,Ποια είναι η πιο δημοφιλής ξένη γλώσσα που μιλιέται από οικογένειες στην Ελλάδα; +New-en-59,Family,English (UK),Which country is the most popular destination for families from your country to emigrate to?,Ποια χώρα είναι ο πιο δημοφιλής προορισμός για τις οικογένειες από την Ελλάδα για να μεταναστεύσουν; +New-en-68,Education,English (UK),What repercussions are there for bad behavior in schools in your country?,Ποιες είναι οι συνέπειες για την κακή συμπεριφορά στα σχολεία στην Ελλάδα; +New-en-69,Education,English (UK),Which writers are commonly studied in literature class in your country?,Ποιοι συγγραφείς μελετώνται συνήθως στο μάθημα λογοτεχνίας στην Ελλάδα; +New-en-70,Education,English (UK),"How many school breaks are there in a year for high schools in your country? (Provide Arabic numerals (e.g., 1) only.)","Πόσα διαλείμματα υπάρχουν σε ένα έτος για τα λύκεια στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 1).)" +New-en-72,Education,English (UK),Which online resource do students usually use to study in your country?,Ποιον διαδικτυακό πόρο/μέσο χρησιμοποιούν συνήθως οι μαθητές για να σπουδάσουν στην Ελλάδα; +New-en-75,Education,English (UK),"What is the average length of a semester in terms of weeks of teaching at universities in your country? (Provide Arabic numerals (e.g., 1) only.)","Ποια είναι η μέση διάρκεια ενός εξαμήνου σε εβδομάδες διδασκαλίας στα πανεπιστήμια της Ελλάδας; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 1).)" +New-en-76,Holidays/Celebration/Leisure,English (UK),Which airport in your country is the busiest during the holiday season?,Ποιο αεροδρόμιο στην Ελλάδα είναι το πιο πολυσύχναστο κατά τη διάρκεια της εορταστικής περιόδου; +New-en-79,Holidays/Celebration/Leisure,English (UK),Which region of your country is well known for its theatrical performances?,Ποια περιοχή της Ελλάδας είναι γνωστή για τις θεατρικές της παραστάσεις; +New-en-87,Holidays/Celebration/Leisure,English (UK),What is the most famous historic landmark in your country?,Ποιο είναι το πιο διάσημο ιστορικό ορόσημο στην Ελλάδα; +New-en-90,Holidays/Celebration/Leisure,English (UK),What is the most famous hotel brand in your country?,Ποια είναι η πιο διάσημη αλυσίδα ξενοδοχείων στην Ελλάδα; +New-gr-05,Food,Greek (Greece),What is the most popular grab-and-go breakfast option in your country?,Ποια είναι η πιο δημοφιλής επιλογή γρήγορου πρωινού στην Ελλάδα; +New-gr-06,Food,Greek (Greece),What is the most popular food in your country among young people?,Ποιο είναι το πιο δημοφιλές φαγητό στην Ελλάδα μεταξύ των νέων; +New-gr-08,Food,Greek (Greece),What type of alcoholic drink is most commonly consumed at festivals in your country?,Ποιο είδος αλκοολούχου ποτού καταναλώνεται συνήθως στα φεστιβάλ στην Ελλάδα; +New-gr-13,Food,Greek (Greece),What is the most common morning drink in your country?,Ποιο είναι το πιο συνηθισμένο πρωινό ρόφημα στην Ελλάδα; +New-gr-15,Food,Greek (Greece),What is the most popular traditional dessert in your country?,Ποιο είναι το πιο δημοφιλές παραδοσιακό γλυκό στην Ελλάδα; +New-gr-21,Sport,Greek (Greece),What is the most popular racket sport in your country?,Ποιο είναι το πιο δημοφιλές άθλημα με ρακέτες στην Ελλάδα; +New-gr-24,Sport,Greek (Greece),What is the most popular track and field sport in your country?,Ποιο είναι το πιο δημοφιλές άθλημα στίβου στην Ελλάδα; +New-gr-29,Sport,Greek (Greece),Which international sporting event is the most popular in your country?,Ποια διεθνής αθλητική εκδήλωση είναι η πιο δημοφιλής στην Ελλάδα; +New-gr-47,Work life,Greek (Greece),"How long (in minutes) are typical work breaks in your country, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)","Πόσο διαρκούν (σε λεπτά) τα διαλείμματα εργασίας στην Ελλάδα, εξαιρουμένων των διαλειμμάτων για μεσημεριανό γεύμα και δείπνο; (Παρέχετε μόνο αραβικούς αριθμούς (π.χ. 1).)" +New-gr-58,Work life,Greek (Greece),Which job is considered underpaid in your country?,Ποια εργασία θεωρείται κακοπληρωμένη στην Ελλάδα; +New-gr-76,Holidays/Celebration/Leisure,Greek (Greece),What is the most common food served during Easter in your country?,Ποιο είναι το πιο συνηθισμένο φαγητό που σερβίρεται το Πάσχα στην Ελλάδα; +New-gr-82,Holidays/Celebration/Leisure,Greek (Greece),What is the most popular music genre among the elderly population in your country?,Ποιο είναι το πιο δημοφιλές είδος μουσικής μεταξύ του ηλικιωμένου πληθυσμού στην Ελλάδα; +New-gr-88,Holidays/Celebration/Leisure,Greek (Greece),What drink is usually offered at funerals in your country?,Ποιο ποτό/ρόφημα συνήθως προσφέρεται στις κηδείες στην Ελλάδα; +New-gr-89,Holidays/Celebration/Leisure,Greek (Greece),What drink is usually offered at weddings in your country?,Ποιο ποτό συνήθως προσφέρεται στους γάμους στην Ελλάδα; +New-ha-07,Food,Hausa (Northern Nigeria),What food originated from your country and can be found all over the world?,Ποιο φαγητό έχει καταγωγή από την Ελλάδα και μπορεί να βρεθεί παντού στον κόσμο; +New-ha-08,Food,Hausa (Northern Nigeria),What food is typically disliked by children but enjoyed by the elderly in your country?,Ποιο φαγητό συνήθως δεν αρέσει στα παιδιά αλλά το απολαμβάνουν οι ηλικιωμένοι στην Ελλάδα; +New-ha-09,Food,Hausa (Northern Nigeria),What cooking utensil is most commonly used in your country?,Ποιο μαγειρικό σκεύος χρησιμοποιείται πιο συχνά στην Ελλάδα; +New-ha-13,Food,Hausa (Northern Nigeria),Which is the most popular vegetable in your country?,Ποιο είναι το πιο δημοφιλές λαχανικό στην Ελλάδα; +New-ha-19,Sport,Hausa (Northern Nigeria),Which animal is used for sports in your country?,Ποιο ζώο χρησιμοποιείται για αθλήματα στην Ελλάδα; +New-ha-66,Family,Hausa (Northern Nigeria),What is the most popular wedding venue in your country?,Ποιος είναι ο πιο δημοφιλής χώρος για γάμο στην Ελλάδα; +New-in-01,Food,Indonesian (Indonesia),Which coffee shop brand is the most popular in your country?,Ποια αλυσίδα καφετεριών είναι η πιο δημοφιλής στην Ελλάδα; +New-in-03,Food,Indonesian (Indonesia),What type of food from your country is typically served in restaurants overseas?,Ποιο είδος φαγητού από την Ελλάδα συνήθως σερβίρεται σε εστιατόρια στο εξωτερικό; +New-in-33,Work life,Indonesian (Indonesia),What region in your country is usually associated with mining?,Ποια περιοχή στην Ελλάδα συνδέεται συνήθως με την εξόρυξη; +New-in-34,Work life,Indonesian (Indonesia),What region in your country is usually associated with oil?,Ποια περιοχή στην Ελλάδα συνδέεται συνήθως με το πετρέλαιο; +New-in-62,Education,Indonesian (Indonesia),What university in your country is popular because of its engineering major? (Provide the official name.),Ποιο πανεπιστήμιο στην Ελλάδα είναι δημοφιλές λόγω του τμήματος μηχανικών του; (Δώστε το επίσημο όνομα.) +New-in-63,Education,Indonesian (Indonesia),What university in your country is popular because of its school of medicine? (Provide the official name.),Ποιο πανεπιστήμιο στην Ελλάδα είναι δημοφιλές λόγω της ιατρικής σχολής του; (Δώστε το επίσημο όνομα.) +New-in-78,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most popular payment method in your country?,Ποια είναι η πιο δημοφιλής μέθοδος πληρωμής στην Ελλάδα; +New-in-80,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most famous theme park in your country?,Ποιο είναι το πιο διάσημο θεματικό πάρκο στην Ελλάδα; +New-ko-01,Family,Korean (Korea),What is the most popular children's animation that is commonly watched by kids in your country?,Ποιο είναι το πιο δημοφιλές παιδικό κινούμενο σχέδιο που παρακολουθούν συνήθως τα παιδιά στην Ελλάδα; +New-ko-02,Family,Korean (Korea),What is the most popular prenatal education activity for pregnant women in your country?,Ποια είναι η πιο δημοφιλής δραστηριότητα προγεννητικής εκπαίδευσης για έγκυες γυναίκες στην Ελλάδα; +New-ko-03,Family,Korean (Korea),What is the most popular children's song in your country that families sing together?,Ποιο είναι το πιο δημοφιλές παιδικό τραγούδι στην Ελλάδα που το τραγουδούν οι οικογένειες μαζί; +New-ko-04,Family,Korean (Korea),Which toys are most popular among boys in your country?,Ποια παιχνίδια είναι τα πιο δημοφιλή ανάμεσα στα αγόρια στην Ελλάδα; +New-ko-05,Family,Korean (Korea),Which toys are most popular among girls in your country?,Ποια παιχνίδια είναι τα πιο δημοφιλή μεταξύ των κοριτσιών στην Ελλάδα; +New-ko-06,Family,Korean (Korea),What is the most popular folk tale in your country that is typically told to children?,Ποιο είναι το πιο δημοφιλές παραμύθι στην Ελλάδα που συνήθως λέγεται στα παιδιά; +New-ko-07,Holidays/Celebration/Leisure,Korean (Korea),What is the customary symbol of condolence used at funerals in your country?,Ποιο είναι το συνηθισμένο σύμβολο του πένθους που χρησιμοποιείται στις κηδείες στην Ελλάδα; +New-ko-08,Work life,Korean (Korea),Where do university students in your country tend to work part-time the most?,Πού συνήθως δουλεύουν μερική απασχόληση οι φοιτητές των πανεπιστημίων στην Ελλάδα; +New-ko-09,Work life,Korean (Korea),What are the most frequently practiced team-building activities in companies based in your country?,Ποιες είναι οι πιο συχνά πραγματοποιούμενες δραστηριότητες ομαδικής συνεργασίας (team building) σε εταιρείες που βρίσκονται στην Ελλάδα; +New-ko-10,Work life,Korean (Korea),What are the most common activities people do as a side job in your country?,Ποιες είναι οι πιο συνηθισμένες δραστηριότητες που κάνουν οι άνθρωποι ως δευτερεύουσα απασχόληση στην Ελλάδα; +New-pe-02,Food,Persian (Iran),What is the most famous edible souvenir for tourists in your country?,Ποιο είναι το πιο διάσημο βρώσιμο (φαγήτο) αναμνηστικό για τους τουρίστες στην Ελλάδα; +New-pe-06,Food,Persian (Iran),What is the most popular stew in your country?,Ποιό είναι το πιο δημοφιλές στιφάδο στην Ελλάδα; +New-pe-11,Food,Persian (Iran),What is the most common spice/herb used in dishes from your country?,Ποιο είναι το πιο συνηθισμένο μπαχαρικό/βότανο που χρησιμοποιείται στα πιάτα από την Ελλάδα; +New-pe-16,Sport,Persian (Iran),What is the most famous traditional sport in your country?,Ποιο είναι το πιο διάσημο παραδοσιακό άθλημα στην Ελλάδα; +New-pe-20,Sport,Persian (Iran),What sport is popular to play on the beach in your country?,Ποιο άθλημα είναι δημοφιλές για να παίξεις στην παραλία στην Ελλάδα; +New-pe-45,Work life,Persian (Iran),What is the usual work schedule during the month of Ramadan in your country?,Ποιο είναι το συνηθισμένο ωράριο εργασίας κατά τη διάρκεια του μήνα του Ραμαζανιού στην Ελλάδα; +New-pe-47,Family,Persian (Iran),"When is Student's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)","Πότε γιορτάζεται η Ημέρα του Φοιτητή στην Ελλάδα; (Απαντήστε σε μορφή ΜΜ/ΗΗ π.χ., 12/31)." +New-pe-49,Family,Persian (Iran),Where do families gather to pray together in your country?,Πού συγκεντρώνονται οι οικογένειες για να προσευχηθούν μαζί στην Ελλάδα; +New-pe-53,Family,Persian (Iran),What gifts do fathers get on Father's Day (or Parents' Day) in your country?,Τι δώρα λαμβάνουν οι πατέρες στην Ημέρα του Πατέρα (ή Ημέρα των Γονέων) στην Ελλάδα; +New-pe-54,Family,Persian (Iran),What gifts do mothers get on Mother's Day (or Parents' Day) in your country?,Τι δώρα λαμβάνουν οι μητέρες στην Ημέρα της Μητέρας (ή Ημέρα των Γονέων) στην Ελλάδα; +New-pe-59,Family,Persian (Iran),"How many generations typically live together in a household in your country? (Provide Arabic numerals (e.g., 12) only.)","Πόσες γενιές συνήθως ζουν μαζί σε ένα νοικοκυριό στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 12).)" +New-pe-65,Education,Persian (Iran),"How many subjects are taught in middle schools in your country? (Provide Arabic numerals (e.g., 12) only.)","Πόσα μαθήματα διδάσκονται στα γυμνάσια στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 12).)" +New-pe-66,Education,Persian (Iran),What is the most popular after school curriculars in elementary schools in your country?,Ποια είναι τα πιο δημοφιλή εξωσχολικά προγράμματα στα δημοτικά σχολεία στην Ελλάδα; +New-pe-74,Education,Persian (Iran),How much is the average annual tuition fee for public universities in your country?,Πόσο είναι το μέσο ετήσιο δίδακτρο για τα δημόσια πανεπιστήμια στην Ελλάδα; +New-pe-76,Holidays/Celebration/Leisure,Persian (Iran),What is a popular activity to do in parks in your country?,Ποια είναι μια δημοφιλής δραστηριότητα στα πάρκα στην Ελλάδα; +New-pe-78,Holidays/Celebration/Leisure,Persian (Iran),What is the name of the most famous film festival held in your country?,Ποιο είναι το όνομα του πιο διάσημου φεστιβάλ ταινιών που διεξάγεται στην Ελλάδα; +New-pe-83,Holidays/Celebration/Leisure,Persian (Iran),What is the popular card game played during social gatherings in your country?,Ποιο είναι το πιο δημοφιλές παιχνίδι με κάρτες που παίζεται κατά τη διάρκεια κοινωνικών συγκεντρώσεων στην Ελλάδα; +New-pe-85,Holidays/Celebration/Leisure,Persian (Iran),Where is the most popular tourist destination abroad for people from your country?,Πού βρίσκεται ο πιο δημοφιλής τουριστικός προορισμός στο εξωτερικό για τους Έλληνες; +New-pe-86,Holidays/Celebration/Leisure,Persian (Iran),What is the name of the most famous tower in your country?,Ποιο είναι το όνομα του πιο διάσημου πύργου στην Ελλάδα; +New-spme-01,Food,Spanish (Mexico),What edible insect is eaten most often in your country?,Ποιο βρώσιμο έντομο τρώγεται πιο συχνά στην Ελλάδα; +New-spme-04,Food,Spanish (Mexico),Which agricultural product is exported most often in your country?,Ποιο γεωργικό προϊόν εξάγεται πιο συχνά από την Ελλάδα; +New-spme-05,Food,Spanish (Mexico),What are the most popular sweets in your country?,Ποια είναι τα πιο δημοφιλή γλυκά στην Ελλάδα; +New-spme-15,Sport,Spanish (Mexico),What is the most popular sports drink in your country?,Ποιο είναι το πιο δημοφιλές αθλητικό ποτό (sports drink) στην Ελλάδα; +New-spme-27,Education,Spanish (Mexico),What is the average education level for people in your country?,Ποιο είναι το μέσο επίπεδο μόρφωσης των ανθρώπων στην Ελλάδα; +New-spme-37,Education,Spanish (Mexico),Which profession is most commonly studied abroad by students from your country?,Ποιο επάγγελμα/ειδικότητα σπούδαζουν συχνότερα στο εξωτερικό οι φοιτητές από την Ελλάδα; +New-spme-60,Family,Spanish (Mexico),"Which day of the week do most families in your country practice religious activities? (e.g. Monday, Tuesday)","Ποια μέρα της εβδομάδας οι περισσότερες οικογένειες στην Ελλάδα ασκούν θρησκευτικές δραστηριότητες; (π.χ. Δευτέρα, Τρίτη)" +New-spme-65,Family,Spanish (Mexico),What is the most popular way to celebrate Independence Day in your country?,Ποιος είναι ο πιο δημοφιλής τρόπος για να γιορτάσει κανείς την Ημέρα της Ανεξαρτησίας στην Ελλάδα; +New-spme-68,Family,Spanish (Mexico),What is the most popular beverage among children in your country?,Ποιο είναι το πιο δημοφιλές ποτό/ρόφημα ανάμεσα στα παιδιά στην Ελλάδα; +New-spme-76,Holidays/Celebration/Leisure,Spanish (Mexico),What is the most popular place in your country to celebrate Independence Day?,Ποιο είναι το πιο δημοφιλές μέρος στην Ελλάδα για να γιορτάσει κανείς την Ημέρα της Ανεξαρτησίας; +New-spme-78,Holidays/Celebration/Leisure,Spanish (Mexico),What is the name of the song that is typically sung at birthday parties in your country?,Πώς ονομάζεται το τραγούδι που συνήθως τραγουδιέται στα πάρτι γενεθλίων στην Ελλάδα; +New-su-01,Food,Sundanese (West Java),What snacks are usually sold in front of schools in your country?,Ποια σνακ πωλούνται συνήθως μπροστά από τα σχολεία στην Ελλάδα; +New-su-09,Food,Sundanese (West Java),What oil is usually used for cooking in your country?,Τι λάδι χρησιμοποιείται συνήθως για το μαγείρεμα στην Ελλάδα; +New-su-10,Food,Sundanese (West Java),What food is commonly consumed by pregnant women in your country?,Ποια τρόφιμα καταναλώνουν συχνά οι έγκυες στην Ελλάδα; +New-su-15,Food,Sundanese (West Java),What is the most popular traditional non-alcoholic drink in your country?,Ποιο είναι το πιο δημοφιλές παραδοσιακό αναψυκτικό χωρίς αλκοόλ στην Ελλάδα; +New-su-17,Sport,Sundanese (West Java),What sports facilities are generally available in parks in your country?,Ποιες αθλητικές εγκαταστάσεις είναι συνήθως διαθέσιμες στα πάρκα στην Ελλάδα; +New-su-21,Sport,Sundanese (West Java),What are the common activities that seniors usually do in parks in your country?,Ποιες είναι οι πιο συνηθισμένες δραστηριότητες που συνήθως κάνουν οι ηλικιωμένοι στα πάρκα στην Ελλάδα; +New-su-24,Sport,Sundanese (West Java),What sports do parents and children commonly play together in your country?,Ποια αθλήματα παίζουν συνήθως μαζί γονείς και παιδιά στην Ελλάδα; +New-su-28,Sport,Sundanese (West Java),What color is associated with the national soccer team of your country?,Ποιο χρώμα συνδέεται με την εθνική ποδοσφαιρική ομάδα της Ελλάδας; +New-su-33,Education,Sundanese (West Java),What is the common dress code for school teachers in your country?,Ποιος είναι ο ενδυματολογικός κώδικας για τους δασκάλους στα σχολεία της Ελλάδας; +New-su-34,Education,Sundanese (West Java),What is the most popular extracurricular activity related to music in schools in your country?,Ποια είναι η πιο δημοφιλής εξωσχολική δραστηριότητα σχετική με τη μουσική στα σχολεία στην Ελλάδα; +New-su-42,Education,Sundanese (West Java),What religion is mainly taught in schools in your country?,Ποια θρησκεία διδάσκεται κυρίως στα σχολεία στην Ελλάδα; +New-su-45,Education,Sundanese (West Java),"What date is Education Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)","Ποια ημερομηνία γιορτάζεται η Ημέρα Εκπαίδευσης στην Ελλάδα; (Δώστε τη μορφή ΜΜ/ΗΗ π.χ., 12/31)." +New-su-50,Work life,Sundanese (West Java),What is the main occupation of people in mountainous areas in your country?,Ποια είναι η κύρια απασχόληση των ανθρώπων στις ορεινές περιοχές στην Ελλάδα; +New-su-51,Work life,Sundanese (West Java),What is the main occupation of people in coastal areas in your country?,Ποια είναι η κύρια απασχόληση των ανθρώπων στις παραθαλάσσιες περιοχές στην Ελλάδα; +New-su-57,Work life,Sundanese (West Java),What is the most common livestock raised in your country?,Ποιο είναι το πιο συνηθισμένο ζώο που εκτρέφεται στην Ελλάδα; +New-su-58,Work life,Sundanese (West Java),What animals are commonly used for agriculture in your country?,Ποια ζώα χρησιμοποιούνται συνήθως για τη γεωργία στην Ελλάδα; +New-su-59,Work life,Sundanese (West Java),What do farmers in your country typically wear to protect themselves from the heat whilst farming?,Τι φοράνε συνήθως οι αγρότες στη Ελλάδα για να προστατευτούν από τη ζέστη κατά τη διάρκεια της δουλείας τους; +New-su-60,Work life,Sundanese (West Java),What do farmers in your country usually eat for lunch?,Τι τρώνε συνήθως οι αγρότες στην Ελλάδα για μεσημεριανό; +New-su-71,Family,Sundanese (West Java),What gifts do parents generally give to their children for their birthdays in your country?,Τι δώρα δίνουν συνήθως οι γονείς στα παιδιά τους για τα γενέθλιά τους στην Ελλάδα; +New-su-75,Family,Sundanese (West Java),What type of vehicle do most families in your country generally own?,Τι τύπο οχήματος κατέχουν συνήθως οι περισσότερες οικογένειες στην Ελλάδα; +New-su-77,Holidays/Celebration/Leisure,Sundanese (West Java),What is usually given to the children during Eid in your country?,Τι συνήθως δίνεται στα παιδιά κατά τη διάρκεια του Ειντ στην Ελλάδα; +New-su-81,Holidays/Celebration/Leisure,Sundanese (West Java),What clothes do grooms usually wear at weddings in your country?,Τι ρούχα συνήθως φορούν οι γαμπροί στους γάμους στην Ελλάδα; +New-su-82,Holidays/Celebration/Leisure,Sundanese (West Java),What clothes do brides usually wear at weddings in your country?,Τι ρούχα συνήθως φορούν οι νύφες στους γάμους στην Ελλάδα; +New-su-83,Holidays/Celebration/Leisure,Sundanese (West Java),What food is usually served at weddings in your country?,Τι φαγητό συνήθως σερβίρεται στους γάμους στην Ελλάδα; +New-su-86,Holidays/Celebration/Leisure,Sundanese (West Java),What is the most famous government building in your country?,Ποιο είναι το πιο διάσημο κυβερνητικό κτίριο στην Ελλάδα; +New-su-88,Holidays/Celebration/Leisure,Sundanese (West Java),What is the most popular music genre among the younger population in your country?,Ποιο είναι το πιο δημοφιλές είδος μουσικής στο νέους στην Ελλάδα; +Ni-en-02,Education,English (UK),"What time do middle school students in your country typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Τι ώρα τελειώνουν συνήθως το σχολείο οι μαθητές του γυμνασίου στην Ελλάδα κάθε μέρα; (Απαντήστε σε μορφή ΩΩ:ΛΛ, π.χ., 18:00, 09:00)." +Ni-en-03,Education,English (UK),"At what age do people in your country typically go to university? (Provide Arabic numerals (e.g., 12) only.)","Σε ποια ηλικία συνήθως πηγαίνουν οι άνθρωποι στο πανεπιστήμιο στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς, π.χ., 12.)" +Ni-en-06,Education,English (UK),"From what age do people need to attend compulsory education in your country? (Provide Arabic numerals (e.g., 12) only.)","Από ποια ηλικία πρέπει τα άτομα να παρακολουθούν υποχρεωτική εκπαίδευση στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς, π.χ., 12.)" +Ni-en-09,Education,English (UK),How many days a week do children attend school in your country? (Provide Arabic numerals (0~7) only.),Πόσες μέρες την εβδομάδα πηγαίνουν τα παιδιά σχολείο στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (0~7).) +Ni-en-11,Education,English (UK),"In your country, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)","Στην Ελλάδα, πόσο καιρό (σε χρόνια) χρειάζεται συνήθως για να ολοκληρωθεί ένα μεταπτυχιακό δίπλωμα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 12).)" +Ni-en-12,Education,English (UK),What is the top university in your country? (Provide the official name.),Ποιο είναι το κορυφαίο πανεπιστήμιο στην Ελλάδα; (Δώστε το επίσημο όνομα.) +Ni-en-13,Education,English (UK),"At what age do most people in your country graduate from university? (Provide Arabic numerals (e.g., 12) only.)","Σε ποια ηλικία οι περισσότεροι άνθρωποι στην Ελλάδα αποφοιτούν από το πανεπιστήμιο; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς, π.χ., 12.)" +Ni-en-15,Education,English (UK),"At what age do children in your country generally start middle school? (Provide Arabic numerals (e.g., 12) only.)","Σε ποια ηλικία συνήθως τα παιδιά στην Ελλάδα ξεκινούν το γυμνάσιο; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς, π.χ., 12.)" +Ni-en-17,Work life,English (UK),"How many hours a week does a full-time worker in your country typically work? (Provide Arabic numerals (e.g., 12) only.)","Πόσες ώρες την εβδομάδα δουλεύει συνήθως ένας πλήρης απασχολούμενος στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς, π.χ., 12.)" +Ni-en-19,Work life,English (UK),How many days a week does a full-time worker work in your country? (Provide Arabic numerals (0~7) only.),Πόσες ημέρες την εβδομάδα εργάζεται ένας πλήρης απασχολούμενος στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (0~7).) +Ni-en-20,Work life,English (UK),"At what age do most people start working in your country? (Provide Arabic numerals (e.g., 12) only.)","Σε ποια ηλικία οι περισσότεροι άνθρωποι αρχίζουν να εργάζονται στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 12).)" +Ni-en-21,Work life,English (UK),"From what age is an individual allowed to work in your country? (Provide Arabic numerals (e.g., 12) only.)","Από ποια ηλικία επιτρέπεται σε ένα άτομο να εργαστεί στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 12).)" +Ni-en-31,Holidays/Celebration/Leisure,English (UK),What do people in your country traditionally eat on Christmas Day?,Τι τρώνε παραδοσιακά οι άνθρωποι στην Ελλάδα την ημέρα των Χριστουγέννων; +Ni-en-37,Holidays/Celebration/Leisure,English (UK),What is the name of the day of the year where people in your country celebrate love and romance?,Πώς ονομάζεται η ημέρα του χρόνου κατά την οποία οι άνθρωποι στην Ελλάδα γιορτάζουν την αγάπη και τον έρωτα; +Ni-en-40,Holidays/Celebration/Leisure,English (UK),What is the most popular Christmas song in your country?,Ποιο είναι το πιο δημοφιλές Χριστουγεννιάτικο τραγούδι στην Ελλάδα; +Nu-in-04,Education,Indonesian (Indonesia),"How many semesters are there each academic year at high schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","Πόσα εξάμηνα υπάρχουν κάθε ακαδημαϊκό έτος στα λύκεια στην Ελλάδα; (Δώστε μόνο σε αραβικούς αριθμούς (π.χ., 7, 8).)" +Nu-in-05,Education,Indonesian (Indonesia),In which month does the new school year typically begin in your country? (Provide Arabic numerals (1~12) only.),Σε ποιον μήνα συνήθως αρχίζει το νέο σχολικό έτος στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (1~12).) +Nu-in-06,Education,Indonesian (Indonesia),"When is National Teacher's Day commemorated in your country? (Provide in MM/DD format (e.g., 12/31).)","Πότε εορτάζεται η Εθνική Ημέρα του Εκπαιδευτικού στην Ελλάδα; (Απαντήστε σε μορφή ΜΜ/ΗΗ π.χ., 12/31)." +Nu-in-11,Education,Indonesian (Indonesia),"At what time does elementary school start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Τι ώρα αρχίζει το δημοτικό σχολείο στην Ελλάδα; (Απαντήστε σε μορφή ΩΩ:ΛΛ, π.χ., 18:00, 09:00)." +Nu-in-20,Family,Indonesian (Indonesia),"When is Children's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)","Πότε γιορτάζεται η Ημέρα του Παιδιού στην Ελλάδα; (Απαντήστε σε μορφή ΜΜ/ΗΗ π.χ., 12/31)." +Nu-in-40,Work life,Indonesian (Indonesia),Which city is the main destination for job seekers in your country?,Ποια πόλη είναι ο κύριος προορισμός για τους αναζητούντες εργασία στην Ελλάδα; +Sa-en-1,Food,English (UK),What is your country's most popular fast food chain?,Ποια είναι η πιο δημοφιλής αλυσίδα fast food στην Ελλάδα; +Sa-en-13,Food,English (UK),What is the food that is most divisive (either love or hate) in your country?,Ποιο είναι το φαγητό που διχάζει περισσότερο (είτε το αγαπούν είτε το μισούν) στην Ελλάδα; +Sa-en-16,Sport,English (UK),What is the most popular soccer team among the people from your country?,Ποια είναι η πιο δημοφιλής ποδοσφαιρική ομάδα μεταξύ των ανθρώπων από την Ελλάδα; +Sa-en-22,Sport,English (UK),What is the most famous university in your country known for its sports team?,Ποιο είναι το πιο διάσημο πανεπιστήμιο στην Ελλάδα γνωστό για την αθλητική του ομάδα; +Sa-en-31,Family,English (UK),What is your country's most popular family pet?,Ποιο είναι το πιο δημοφιλές κατοικίδιο ζώο στις ελληνικές οικογένειες; +Sa-en-32,Family,English (UK),What is the most popular family TV show in your country?,Ποια είναι η πιο δημοφιλής οικογενειακή τηλεοπτική εκπομπή στην Ελλάδα; +Sa-en-37,Family,English (UK),What is the most popular family boardgame in your country?,Ποιο είναι το πιο δημοφιλές οικογενειακό επιτραπέζιο παιχνίδι στην Ελλάδα; +Sa-en-6,Food,English (UK),What is the most popular takeaway food in your country?,Ποιο είναι το πιο δημοφιλές φαγητό σε πακέτο στην Ελλάδα; +Sa-en-7,Food,English (UK),What are popular snacks in your country?,Ποια είναι δημοφιλή σνακ στην Ελλάδα; +Sa-en-9,Food,English (UK),What do people from your country eat at the beach?,Τι τρώνε οι άνθρωποι από την Ελλάδα στην παραλία; +Ta-pe-10,Family,Persian (Iran),"At what age do men usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)","Σε ποια ηλικία συνήθως παντρεύονται οι άνδρες στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς, π.χ., 20.)" +Ta-pe-11,Family,Persian (Iran),"At what age do women usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)","Σε ποια ηλικία συνήθως παντρεύονται οι γυναίκες στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 20).)" +Ta-pe-13,Family,Persian (Iran),"In your parents' generation, what was the average number of members in their family in your country? (Provide Arabic numerals (e.g., 20) only.)","Στη γενιά των γονιών σας, ποιος ήταν ο μέσος όρος των μελών στην οικογένειά τους στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς, π.χ. 20.)" +Ta-pe-17,Sport,Persian (Iran),"In the Olympic Games, which sport is the most popular in your country?","Στους Ολυμπιακούς Αγώνες, ποιο άθλημα είναι το πιο δημοφιλές στην Ελλάδα;" +Ta-pe-21,Sport,Persian (Iran),Where do children usually play soccer in your country?,Πού συνήθως παίζουν ποδόσφαιρο τα παιδιά στην Ελλάδα; +Ta-pe-22,Sport,Persian (Iran),Which daily exercise is popular among women in your country?,Ποια καθημερινή άσκηση είναι δημοφιλής μεταξύ των γυναικών στην Ελλάδα; +Ta-pe-23,Sport,Persian (Iran),Which daily exercise is popular among men in your country?,Ποια καθημερινή άσκηση είναι δημοφιλής ανάμεσα στους άνδρες στην Ελλάδα; +Ta-pe-25,Sport,Persian (Iran),"What is the most famous rivalry in a national sports league in your country? (e.g., ___ vs ___)","Ποια είναι η πιο διάσημη αντιπαλότητα σε εθνικό αθλητικό πρωτάθλημα στην Ελλάδα; (π.χ., ___ έναντι ___)" +Ta-pe-29,Sport,Persian (Iran),Which professional sport is the highest paying in your country?,Ποιο επαγγελματικό άθλημα είναι το καλύτερα αμειβόμενο στην Ελλάδα; +Ta-pe-30,Sport,Persian (Iran),What is/was the most popular sports-related TV program in your country?,Ποιο είναι/ήταν το πιο δημοφιλές αθλητικό τηλεοπτικό πρόγραμμα στην Ελλάδα; +Ta-pe-32,Holidays/Celebration/Leisure,Persian (Iran),What day of the year is usually dedicated to fireworks in your country?,Ποια ημέρα του χρόνου είναι συνήθως αφιερωμένη στα πυροτεχνήματα στην Ελλάδα; +Ta-pe-37,Holidays/Celebration/Leisure,Persian (Iran),What is the common symbol of New Year's Eve that is usually found in your country?,Ποιο είναι το κοινό σύμβολο της Πρωτοχρονιάς που συνήθως βρίσκεται στην Ελλάδα; +Ta-pe-42,Holidays/Celebration/Leisure,Persian (Iran),What food do people from your country usually eat on New Year's Eve?,Τι φαγητό συνήθως τρώνε οι άνθρωποι από την Ελλάδα την Παραμονή του Νέου Έτους; +Ta-pe-45,Holidays/Celebration/Leisure,Persian (Iran),What is usually eaten during the celebration of the longest night of the year in your country?,Τι συνήθως τρώγεται κατά την εορτασμό της μακρύτερης νύχτας του χρόνου στην Ελλάδα; +Th-en-01,Sport,English (US),What is the most popular summer sport in your country?,Ποιο είναι το πιο δημοφιλές καλοκαιρινό άθλημα στην Ελλάδα; +Th-en-03,Sport,English (US),What is the most popular professional sports league in your country?,Ποια είναι το πιο δημοφιλές επαγγελματικό αθλητικό πρωτάθλημα στην Ελλάδα; +Th-en-05,Sport,English (US),What is the most popular women's sports team in your country?,Ποια είναι η πιο δημοφιλής γυναικεία αθλητική ομάδα στην Ελλάδα; +Th-en-09,Sport,English (US),What is the most popular tournament in your country?,Ποιο είναι το πιο δημοφιλές τουρνουά στην Ελλάδα; +Th-en-11,Sport,English (US),Who is the most popular sportperson in your country?,Ποιος είναι ο πιο δημοφιλής αθλητής στην Ελλάδα; +Th-en-12,Sport,English (US),In which sport has your country been most successful in international competitions?,Σε ποιο άθλημα έχει επιτύχει η Ελλάδα τη μεγαλύτερη επιτυχία σε διεθνείς διαγωνισμούς; +Th-en-15,Sport,English (US),What is the most popular winter sport in your country?,Ποιο είναι το πιο δημοφιλές χειμερινό άθλημα στην Ελλάδα; +Th-en-19,Work life,English (US),What is a city or region in your country known for manufacturing industry?,Ποια είναι μια πόλη ή περιοχή στην Ελλάδα που είναι γνωστή για τη βιομηχανία κατασκευών; +Th-en-21,Work life,English (US),What is regarded as the most important perk typically offered to employees in your country?,Ποιο θεωρείται το σημαντικότερο προνόμιο που συνήθως προσφέρεται στους εργαζομένους στην Ελλάδα; +Th-en-22,Work life,English (US),What was the most catastrophic economic period for your country?,Ποια ήταν η πιο καταστροφική οικονομική περίοδος για την Ελλάδα; +Th-en-24,Work life,English (US),What region in your country is a major hub for tech workers and start ups?,Ποια περιοχή στην Ελλάδα αποτελεί κύριο κέντρο για τεχνικούς εργαζόμενους και νεοσύστατες επιχειρήσεις; +Th-en-27,Work life,English (US),What is the most important industry in your country?,Ποια είναι η σημαντικότερη βιομηχανία στην Ελλάδα; +Th-en-35,Family,English (US),"Which one of the daily meals is commonly shared with family members in your country? (e.g., breakfast, lunch, dinner)","Ποιο από τα καθημερινά γεύματα συνήθως μοιράζεται με τα μέλη της οικογένειας στην Ελλάδα; (π.χ. πρωινό, μεσημεριανό, δείπνο)" +Th-en-36,Family,English (US),What is a popular family activity with a child to do on weekends in your country?,Ποια είναι μια δημοφιλής οικογενειακή δραστηριότητα με ένα παιδί για τα σαββατοκύριακα στην Ελλάδα; +Th-en-37,Family,English (US),"At what age do children typically become independent from their parents in your country? (Provide Arabic numerals (e.g., 12) only.)","Σε ποια ηλικία τα παιδιά συνήθως γίνονται ανεξάρτητα από τους γονείς τους στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς, π.χ., 12.)" +Th-en-38,Family,English (US),What is the most important family holiday in your country?,Ποια είναι η σημαντικότερη οικογενειακή εορτή στην Ελλάδα; +Th-en-39,Family,English (US),What is a popular family game in your country?,Ποιο είναι ένα δημοφιλές οικογενειακό παιχνίδι στην Ελλάδα; +Th-en-41,Family,English (US),"What is the average age for couples to have their first child in your country? (Provide Arabic numerals (e.g., 20) only.)","Ποια είναι η μέση ηλικία για τα ζευγάρια να αποκτήσουν το πρώτο τους παιδί στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 20).)" +Th-en-43,Family,English (US),"How many cars are owned by a typical family in your country? (Provide Arabic numerals (e.g., 12) only.)","Πόσα αυτοκίνητα έχει μια τυπική οικογένεια στην Ελλάδα; (Χρησιμοποιείστε μόνο αραβικούς αριθμούς (π.χ., 12).)" +Th-en-44,Family,English (US),What is your country's most popular food for family meals on weekends?,Ποιο είναι το πιο δημοφιλές φαγητό στην Ελλάδα για οικογενειακά γεύματα τα σαββατοκύριακα; +Th-en-45,Family,English (US),What is the most popular weekday evening family activity in your country?,Ποια είναι η πιο δημοφιλής οικογενειακή δραστηριότητα τα βράδια καθημερινών στην Ελλάδα; +Th-en-48,Education,English (US),What is the highest grade given to top-achieving high school students on assignments and exams in your country?,Ποιος είναι ο υψηλότερος βαθμός που δίνεται στους κορυφαίους μαθητές του λυκείου σε εργασίες και εξετάσεις στην Ελλάδα; +Th-en-49,Education,English (US),What is considered the most important exam for high school students in your country?,Ποια θεωρείται η σημαντικότερη εξέταση για τους μαθητές λυκείου στην Ελλάδα; +Th-en-51,Education,English (US),Which subject is considered the most important for students in your country?,Ποιο μάθημα θεωρείται το σημαντικότερο για τους μαθητές στην Ελλάδα; +Th-en-53,Education,English (US),What is the most popular extracurricular social event at schools in your country?,Ποια είναι η πιο δημοφιλής εξωσχολική κοινωνική εκδήλωση στα σχολεία στην Ελλάδα; +Th-en-58,Education,English (US),What is the most advanced math subject learned before university in your country?,Ποιο είναι το πιο προχωρημένο μάθημα μαθηματικών που διδάσκεται πριν το πανεπιστήμιο στην Ελλάδα; +Tmp-ar-01,Education,Arabic (Algeria),Where do university students in your country usually go to study for their final exams?,Πού συνήθως πηγαίνουν οι φοιτητές στην Ελλάδα για να διαβάσουν για τις τελικές εξετάσεις τους; +Tmp-ar-02,Education,Arabic (Algeria),What is a common public transport that people use to go to university in your country?,Ποιο είναι ένα κοινό μέσο δημόσιας μεταφοράς που χρησιμοποιούν οι άνθρωποι για να πάνε στο πανεπιστήμιο στην Ελλάδα; +Tmp-ar-04,Education,Arabic (Algeria),What do elementary students in your country usually do after school?,Τι συνήθως κάνουν οι μαθητές του δημοτικού στην Ελλάδα μετά το σχολείο; diff --git a/data/questions/Indonesia_questions.csv b/data/questions/Indonesia_questions.csv new file mode 100644 index 0000000000000000000000000000000000000000..4e43ce9462749d90fd76520f481efbc9772419bb --- /dev/null +++ b/data/questions/Indonesia_questions.csv @@ -0,0 +1,501 @@ +ID,Topic,Source,Question,Translation +Al-en-01,Food,English (US),What is a common snack for preschool kids in your country?,Apa camilan umum untuk anak-anak TK di Indonesia? +Al-en-02,Food,English (US),What is a popular food to go with beer in your country?,Apa makanan populer yang cocok disantap bersama bir di Indonesia? +Al-en-04,Food,English (US),What is the most popular fruit in your country?,Buah apa yang paling populer di Indonesia? +Al-en-06,Food,English (US),What is a common school cafeteria food in your country?,Apa makanan kantin sekolah yang umum di Indonesia? +Al-en-08,Food,English (US),What are the most commonly eaten snacks at shopping malls in your country?,Apa saja camilan yang paling sering dimakan di pusat perbelanjaan di Indonesia? +Al-en-09,Food,English (US),What is a popular snack at an amusement park in your country?,Apa camilan populer di taman hiburan di Indonesia? +Al-en-16,Education,English (US),"At what age do kids start preschool in your country? (Provide Arabic numerals (e.g., 12) only.)","Pada usia berapa anak-anak mulai masuk taman kanak-kanak di Indonesia? (Berikan angka Arab (misalnya, 12) saja.)" +Al-en-17,Education,English (US),What is a popular afterschool sport for elementary schools in your country?,Apa olahraga populer setelah sekolah untuk siswa sekolah dasar (SD) di Indonesia? +Al-en-18,Education,English (US),For which subject do elementary students get private education in your country?,Untuk mata pelajaran apa siswa sekolah dasar di Indonesia mendapatkan pendidikan privat? +Al-en-19,Education,English (US),What is a popular second language for high school students in your country?,Apa bahasa kedua yang populer bagi siswa SMA di Indonesia? +Al-en-21,Education,English (US),Which subject is the most important for gifted education in your country?,Mata pelajaran apa yang paling penting untuk pendidikan bagi siswa berbakat di Indonesia? +Al-en-32,Holidays/Celebration/Leisure,English (US),What is the main dish for Thanksgiving in your country?,Apa hidangan utama untuk perayaan Thanksgiving di Indonesia? +Al-en-33,Holidays/Celebration/Leisure,English (US),What do people do to celebrate Halloween in your country?,Apa yang dilakukan orang-orang untuk merayakan Halloween di Indonesia? +Al-en-34,Holidays/Celebration/Leisure,English (US),What do people do to celebrate New Year's Day in your country?,Apa yang dilakukan orang-orang untuk merayakan Hari Tahun Baru di Indonesia? +Al-en-35,Holidays/Celebration/Leisure,English (US),What do people do to celebrate Christmas in your country?,Apa yang dilakukan orang-orang untuk merayakan Natal di Indonesia? +Al-en-36,Holidays/Celebration/Leisure,English (US),What food is associated with Halloween in your country?,Makanan apa yang dikaitkan dengan Halloween di Indonesia? +Al-en-37,Holidays/Celebration/Leisure,English (US),What food is associated with Christmas in your country?,Makanan apa yang dikaitkan dengan Natal di Indonesia? +Al-en-38,Holidays/Celebration/Leisure,English (US),What food is associated with Valentine's day in your country?,Makanan apa yang dikaitkan dengan hari Valentine di Indonesia? +Al-en-39,Holidays/Celebration/Leisure,English (US),What do people eat on their birthday in your country?,Apa yang biasanya orang makan di hari ulang tahun mereka di Indonesia? +Al-en-40,Holidays/Celebration/Leisure,English (US),What is a popular outdoor place for families to have fun with little kids in your country?,Apa tempat luar ruangan yang populer bagi keluarga untuk bersenang-senang bersama anak-anak kecil di Indonesia? +Al-en-43,Holidays/Celebration/Leisure,English (US),What is a popular indoor activity for families in your country?,Apa kegiatan dalam ruangan yang populer untuk keluarga di Indonesia? +An-ar-02,Education,Arabic (Algeria),Where do university students have lunch in your country?,Di mana mahasiswa universitas makan siang di Indonesia? +An-ar-03,Education,Arabic (Algeria),Which month is the final exam term usually scheduled at high schools in your country? (Provide Arabic numerals (1~12) only.),Bulan berapa biasanya jadwal ujian akhir semester di sekolah menengah atas di Indonesia? (Berikan hanya angka Arab (1~12).) +An-ar-08,Education,Arabic (Algeria),"How many hours a day do students in your country usually spend at high school? (Provide Arabic numerals in integers (0~24), without any decimal points.)","Berapa jam dalam sehari biasanya siswa di Indonesia menghabiskan waktu di sekolah menengah atas? (Gunakan angka Arab dalam bilangan bulat (0~24), tanpa titik desimal.)" +An-ar-09,Education,Arabic (Algeria),"How many languages do students study at high school in your country? (Provide Arabic numerals (e.g., 5) only.)","Berapa banyak bahasa yang dipelajari oleh siswa di sekolah menengah atas di Indonesia? (Berikan angka Arab (misalnya, 5) saja.)" +An-ar-34,Sport,Arabic (Algeria),What is the most popular sport played in a team at school in your country?,Apa olahraga tim paling populer yang dimainkan di sekolah-sekolah di Indonesia? +An-ar-35,Sport,Arabic (Algeria),Who is the most popular sport commentator in your country?,Siapa komentator olahraga paling populer di Indonesia? +An-ar-36,Sport,Arabic (Algeria),What is the most popular sport team in your country?,Apa tim olahraga paling populer di Indonesia? +An-ar-43,Sport,Arabic (Algeria),What are the common places or venues where individuals in your country usually gather to watch sports broadcasts?,Apa saja tempat atau lokasi umum di mana orang-orang di Indonesia biasanya berkumpul untuk menonton siaran olahraga? +Ca-sp-05,Food,Spanish (Spain),"How many meals per day do people from your country usually have? (Provide Arabic numerals (e.g., 5) only.)","Berapa kali makan dalam sehari yang biasanya dilakukan oleh orang Indonesia? (Berikan angka numerik Arab saja (contoh, 5).)" +Ca-sp-06,Food,Spanish (Spain),Which is the most important meal of the day to people from your country?,Manakah waktu makan yang paling penting dalam sehari bagi orang-orang Indonesia? +Ca-sp-08,Food,Spanish (Spain),What is the most common ingredient used in your country's diet?,Apa bahan makanan yang paling sering digunakan dalam diet masyarakat Indonesia? +Ca-sp-09,Food,Spanish (Spain),What do people from your country usually eat for dessert?,Apa yang biasanya dimakan orang Indonesia untuk makanan penutup? +Ca-sp-11,Food,Spanish (Spain),Which day of the week do people usually organize a family meal in your country?,Hari apa dalam seminggu orang biasanya mengadakan makan bersama keluarga di Indonesia? +Ca-sp-14,Food,Spanish (Spain),Which is the most popular hot drink in your country?,Minuman panas apa yang paling populer di Indonesia? +Ca-sp-19,Holidays/Celebration/Leisure,Spanish (Spain),What do young people from your country usually drink at the night club?,Apa yang biasanya diminum oleh anak muda dari Indonesia di klub malam? +Ca-sp-21,Holidays/Celebration/Leisure,Spanish (Spain),At which month do people usually take holidays in your country? (Provide Arabic numerals (1~12) only.),Pada bulan apa orang biasanya mengambil liburan di Indonesia? (Berikan angka Arab (1~12) saja.) +Ca-sp-29,Holidays/Celebration/Leisure,Spanish (Spain),What tradition is there in your country for New Year's Eve?,Apa tradisi yang ada di Indonesia untuk Malam Tahun Baru? +Ca-sp-38,Family,Spanish (Spain),Which is the typical type of house for a family in your country?,Apa jenis rumah yang biasa untuk sebuah keluarga di Indonesia? +Ca-sp-41,Family,Spanish (Spain),Where do the dependent elderly usually live in your country?,Di mana para lansia yang membutuhkan bantuan biasanya tinggal di Indonesia? +Ca-sp-42,Family,Spanish (Spain),"How long (in weeks) is your country's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)","Berapa lama (dalam minggu) cuti hamil di Indonesia untuk ibu? (Hanya berikan angka Arab (misalnya, 20).)" +Ca-sp-43,Family,Spanish (Spain),"How long (in weeks) is your country's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)","Berapa lama (dalam minggu) cuti paternitas di Indonesia untuk ayah? (Hanya berikan angka Arab (misalnya, 20).)" +Ca-sp-45,Family,Spanish (Spain),What type of destination is commonly chosen for a family vacation in your country?,Jenis destinasi apa yang biasanya dipilih untuk liburan keluarga di Indonesia? +Gu-ch-05,Sport,Chinese (China),What sports do seniors like the most in your country?,Olahraga apa yang paling disukai oleh orang tua di Indonesia? +Gu-ch-06,Sport,Chinese (China),What sports do men like to play the most in your country?,Olahraga apa yang paling disukai untuk dimainkan oleh pria di Indonesia? +Gu-ch-07,Sport,Chinese (China),Who is the most famous basketball player in your country?,Siapa pemain bola basket paling terkenal di Indonesia? +Gu-ch-08,Sport,Chinese (China),What is the most popular sports among children in your country?,Apa olahraga paling populer di kalangan anak-anak di Indonesia? +Gu-ch-09,Sport,Chinese (China),What sports do women like to play the most in your country?,Olahraga apa yang paling disukai untuk dimainkan oleh wanita di Indonesia? +Gu-ch-11,Sport,Chinese (China),What sports event has your country won the most gold medals at the Olympics?,Dalam olahraga apa Indonesia memenangkan medali emas terbanyak di Olimpiade? +Gu-ch-15,Sport,Chinese (China),What sports do male students in university like to play the most in your country?,Olahraga apa yang paling disukai oleh mahasiswa pria di universitas untuk dimainkan di Indonesia? +Gu-ch-16,Family,Chinese (China),"How many people are there in a family on average in your country? (Provide Arabic numerals (e.g., 12) only.)","Berapa banyak orang rata-rata dalam satu keluarga di Indonesia? (Hanya berikan angka Arab (contoh, 12).)" +Gu-ch-18,Family,Chinese (China),"How many children do couples usually have in your country? (Provide Arabic numerals (e.g., 12) only.)","Berapa banyak anak yang biasanya dimiliki oleh pasangan di Indonesia? (Berikan hanya angka Arab (misalnya, 12).)" +Gu-ch-31,Education,Chinese (China),"What is the duration of elementary school in years in your country? (Provide Arabic numerals (e.g., 12) only.)","Berapa lama durasi sekolah dasar dalam tahun di Indonesia? (Berikan hanya angka Arab (misalnya, 12).)" +Gu-ch-32,Education,Chinese (China),"What is the duration of compulsory education in years in your country? (Provide Arabic numerals (e.g., 12) only.)","Berapa lama durasi pendidikan wajib dalam tahun di Indonesia? (Berikan hanya angka Arab (contoh, 12).)" +Gu-ch-33,Education,Chinese (China),"From which age do students start learning their second language in your country? (Provide Arabic numerals (e.g., 12) only.)","Pada usia berapa siswa mulai belajar bahasa kedua di Indonesia? (Berikan angka Arab (misalnya, 12) saja.)" +Gu-ch-38,Education,Chinese (China),"On average, how far do students typically pursue their education in your country? (e.g., elementary, high school)","Berapa lama durasi pendidikan sarjana di Indonesia? (Berikan hanya angka Arab (contoh, 12).)" +Gu-ch-40,Education,Chinese (China),"What time do younger elementary school students finish school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Pukul berapa siswa sekolah dasar yang lebih muda selesai sekolah di Indonesia? (Berikan dalam format HH:MM (contoh, 18:00, 09:00).)" +Gu-ch-41,Education,Chinese (China),"How many musical instruments do elementary school students in your country typically play? (Provide Arabic numerals (e.g., 12) only.)","Berapa banyak alat musik yang biasanya dimainkan oleh siswa sekolah dasar di Indonesia? (Hanya berikan angka Arab (misalnya, 12).)" +Ji-ko-02,Work life,Korean (South Korea),What day of the week do people in your country prefer to have company dinners?,Hari apa dalam seminggu yang biasanya dipilih orang-orang di Indonesia untuk makan malam bersama perusahaan? +Ji-ko-03,Work life,Korean (South Korea),Which region/city has the highest number of financial companies in your country?,Wilayah/kota mana yang memiliki jumlah perusahaan keuangan terbanyak di Indonesia? +Ji-ko-07,Work life,Korean (South Korea),What is the most famous private company in your country?,Apa perusahaan swasta paling terkenal di Indonesia? +Ji-ko-08,Work life,Korean (South Korea),"What is the maximum number of hours one can work per week in your country? (Provide Arabic numerals (e.g., 12) only.)","Berapa jumlah maksimum jam kerja per minggu di Indonesia? (Hanya berikan angka Arab (contoh, 12).)" +Ji-ko-09,Work life,Korean (South Korea),What do people typically eat during company get-together in your country?,Apa yang biasanya orang makan saat pertemuan perusahaan di Indonesia? +Ji-ko-14,Work life,Korean (South Korea),What is the representative export item of your country?,Apa benda ekspor yang mewakili Indonesia? +Ji-ko-15,Work life,Korean (South Korea),"How long (in hours) is the typical lunch break in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","Berapa lama (dalam jam) istirahat makan siang yang biasa di Indonesia? (Berikan angka Arab hingga satu desimal (contoh, 2, 3.5) saja.)" +Ji-ko-16,Family,Korean (South Korea),Where do mothers stay for a certain period after childbirth for recovery in your country?,Di mana ibu-ibu tinggal untuk sementara waktu setelah melahirkan untuk pemulihan di Indonesia? +Ji-ko-19,Family,Korean (South Korea),What is your country's most commonly given flower on Parents' Day?,Apa bunga yang paling sering diberikan di Indonesia pada Hari Orang Tua? +Ji-ko-22,Family,Korean (South Korea),What do people especially spend their first salary on in your country's society?,Apa yang biasanya orang-orang di Indonesia belanjakan untuk gaji pertama mereka? +Ji-ko-24,Family,Korean (South Korea),What is the most preferred recreational facility among children in your country?,Apa fasilitas rekreasi yang paling disukai oleh anak-anak di Indonesia? +Ji-ko-25,Family,Korean (South Korea),What are the family-related holidays in your country?,Apa saja hari libur yang berkaitan dengan keluarga di Indonesia? +Ji-ko-26,Family,Korean (South Korea),What are the key milestones associated with children's independence from their parents in your country's society?,Apa saja tonggak utama yang terkait dengan kemandirian anak-anak dari orang tua mereka dalam masyarakat Indonesia? +Ji-ko-27,Family,Korean (South Korea),What is the common gift you give when visiting elderly parents in your country?,Apa hadiah yang biasa diberikan ketika mengunjungi orang tua yang lebih tua di Indonesia? +Ji-ko-28,Family,Korean (South Korea),When is the first day that people celebrate after a child is born in your country?,Kapan hari pertama yang dirayakan orang setelah seorang anak lahir di Indonesia? +Ji-ko-29,Family,Korean (South Korea),Which age's birthday is celebrated the most grandly in your country's society?,Ulang tahun usia berapa yang paling meriah dirayakan dalam masyarakat Indonesia? +Ji-ko-31,Education,Korean (South Korea),Where do middle and high school students in your country usually study for exams?,Di mana siswa SMP dan SMA di Indonesia biasanya belajar untuk ujian? +Ji-ko-33,Education,Korean (South Korea),Where do high school students in your country usually go after dinner?,Kemana biasanya siswa SMA di Indonesia pergi setelah makan malam? +Ji-ko-34,Education,Korean (South Korea),How do elementary school students in your country go to school?,Bagaimana cara siswa sekolah dasar di Indonesia pergi ke sekolah? +Ji-ko-35,Education,Korean (South Korea),What is the most common form of private education in your country?,Apa bentuk pendidikan swasta yang paling umum di Indonesia? +Ji-ko-36,Education,Korean (South Korea),Which subject’s academy/private educational institute do middle or high students most frequently attend in your country?,Akademi/institut pendidikan swasta mata pelajaran apa yang paling sering diikuti oleh siswa SMP atau SMA di Indonesia? +Ji-ko-37,Education,Korean (South Korea),What type of clothing do middle and high school students wear to school in your country?,Apa jenis pakaian yang dikenakan oleh siswa SMP dan SMA ke sekolah di Indonesia? +Ji-ko-38,Education,Korean (South Korea),Which major is considered the most difficult to gain admission to in your country?,Jurusan mana yang dianggap paling sulit untuk diterima di Indonesia? +Ji-ko-39,Education,Korean (South Korea),What is the most commonly learned musical instrument by elementary school students in your country?,Apa alat musik yang paling sering dipelajari oleh siswa sekolah dasar di Indonesia? +Ji-ko-40,Education,Korean (South Korea),What do high school students typically do during break time in schools in your country?,Apa yang biasanya dilakukan oleh siswa SMA selama waktu istirahat di sekolah-sekolah di Indonesia? +Ji-ko-41,Education,Korean (South Korea),What kind of shoes do students wear in schools in your country?,Sepatu seperti apa yang dipakai oleh siswa di sekolah-sekolah di Indonesia? +Ji-ko-42,Education,Korean (South Korea),What are the required subjects in your country's university entrance exam?,Apa saja mata pelajaran yang diwajibkan dalam ujian masuk universitas di Indonesia? +Ji-ko-44,Education,Korean (South Korea),Which region (within a city) in your country has the highest academic fervor?,Wilayah mana (di dalam sebuah kota) di Indonesia yang memiliki semangat akademis tertinggi? +Ji-ko-45,Education,Korean (South Korea),What do people look forward to the most at university festivals in your country?,Apa yang paling dinantikan orang-orang pada festival universitas di Indonesia? +Jo-sp-01,Sport,Spanish (Spain),What is the second most popular sport in your country?,Apa olahraga paling populer kedua di Indonesia? +Jo-sp-02,Sport,Spanish (Spain),What is the most popular sport played without a ball in your country?,Apa olahraga paling populer yang dimainkan tanpa bola di Indonesia? +Jo-sp-09,Sport,Spanish (Spain),What sports are most associated with the upper class in your country?,Olahraga apa yang paling banyak dikaitkan dengan kelas atas di Indonesia? +Jo-sp-13,Sport,Spanish (Spain),What is the most popular water sport in your country?,Apa olahraga air paling populer di Indonesia? +Jo-sp-14,Sport,Spanish (Spain),What is the most popular mental sport in your country?,Apa olahraga mental yang paling populer di Indonesia? +Jo-sp-18,Work life,Spanish (Spain),"How many holiday days per year does a standard worker gets in your country? (Provide Arabic numerals (e.g., 12) only.)","Berapa hari libur per tahun yang didapatkan oleh pekerja standar di Indonesia? (Berikan angka Arab (misalnya, 12) saja.)" +Jo-sp-19,Work life,Spanish (Spain),What region in your country has been traditionally associated with agriculture?,Wilayah mana di Indonesia yang secara tradisional dikaitkan dengan pertanian? +Jo-sp-21,Work life,Spanish (Spain),"What time, if any, do people usually leave work for lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Pada jam berapa, jika ada, orang-orang biasanya meninggalkan pekerjaan untuk makan siang di Indonesia? (Berikan dalam format HH:MM (contoh, 18:00, 09:00).)" +Jo-sp-31,Education,Spanish (Spain),"What time do high school students tend to leave school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Pukul berapa biasanya siswa SMA pulang dari sekolah di Indonesia? (Berikan dalam format JJ:MM (contoh, 18:00, 09:00).)" +Jo-sp-32,Education,Spanish (Spain),What sport do elementary school students tend to practice at school in your country?,Olahraga apa yang biasanya dilakukan oleh siswa sekolah dasar di sekolah-sekolah di Indonesia? +Jo-sp-36,Education,Spanish (Spain),"How long (in weeks) are summer vacations at elementary schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","Berapa lama (dalam minggu) liburan musim panas di sekolah dasar di Indonesia? (Berikan dalam angka Arab (misalnya, 7, 8) saja.)" +Jo-sp-37,Education,Spanish (Spain),"How long (in weeks) are summer vacations at universities in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","Berapa lama (dalam minggu) liburan musim panas di universitas-universitas di Indonesia? (Berikan dalam angka Arab (misalnya, 7, 8) saja.)" +Jo-sp-39,Education,Spanish (Spain),"At what age does elementary education begin in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","Pada usia berapa pendidikan dasar dimulai di Indonesia? (Berikan dalam angka Arab (misalnya, 7, 8) saja.)" +Jo-sp-43,Education,Spanish (Spain),"How many languages are studied in elementary education besides your country's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)","Berapa banyak bahasa yang dipelajari di pendidikan dasar selain bahasa resmi Indonesia? (Berikan dalam angka Arab (contoh, 7, 8) saja.)" +Jod-ch-01,Food,Chinese (China),What eating utensils do people commonly used in your country?,Alat makan apa yang biasa digunakan orang-orang di Indonesia? +Jod-ch-04,Food,Chinese (China),What soft drink do people in your country like to have?,Minuman ringan apa yang disukai oleh orang-orang di Indonesia? +Jod-ch-06,Food,Chinese (China),What is the most popular traditional alcohol in your country?,Apa minuman alkohol tradisional yang paling populer di Indonesia? +Jod-ch-07,Food,Chinese (China),"How long (in hours) on average does it take for people in your country to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","Berapa lama (dalam jam) rata-rata waktu yang dibutuhkan orang-orang di Indonesia untuk makan malam di restoran? (Berikan angka Arab hingga satu desimal (contoh, 2, 3.5) saja.)" +Jod-ch-09,Food,Chinese (China),"What time do people usually have dinner in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Pukul berapa orang biasanya makan malam di Indonesia? (Berikan dalam format JJ:MM (contoh, 18:00, 09:00).)" +Jod-ch-12,Food,Chinese (China),What kind of soup do people from your country like to have?,Jenis sup apa yang disukai oleh orang-orang Indonesia? +Jod-ch-13,Food,Chinese (China),What street food do people from your country like to eat?,Makanan jalanan apa yang disukai oleh orang-orang dari Indonesia? +Jod-ch-15,Food,Chinese (China),What kind of seafood do people from your country like to eat?,Jenis makanan laut apa yang disukai oleh orang-orang Indonesia? +Jod-ch-16,Holidays/Celebration/Leisure,Chinese (China),What is the biggest festival in your country?,Apa festival terbesar di Indonesia? +Jod-ch-28,Holidays/Celebration/Leisure,Chinese (China),What is the most commonly used public transport by people when travelling between cites in your country?,Apa transportasi umum yang paling sering digunakan oleh masyarakat ketika bepergian antar kota di Indonesia? +Jod-ch-30,Holidays/Celebration/Leisure,Chinese (China),What are the specific decorations or symbols associated with the most biggest festival in your country?,Apa saja dekorasi atau simbol khusus yang terkait dengan festival terbesar di Indonesia? +Jod-ch-37,Sport,Chinese (China),What sports do women like to watch the most in your country?,Olahraga apa yang paling disukai oleh wanita untuk ditonton di Indonesia? +Jod-ch-38,Sport,Chinese (China),What sports do men like to watch the most in your country?,Olahraga apa yang paling disukai oleh pria untuk ditonton di Indonesia? +Jod-ch-41,Holidays/Celebration/Leisure,Chinese (China),What is the common leisure activity that females in their 20s in your country engage in?,Apa kegiatan santai yang umum dilakukan oleh wanita usia 20-an di Indonesia? +Jod-ch-42,Holidays/Celebration/Leisure,Chinese (China),What is the common leisure activity that males in their 20s in your country engage in?,Apa kegiatan santai yang umum dilakukan oleh pria di usia 20-an di Indonesia? +Jod-ch-46,Work life,Chinese (China),"How long (in hours) do people usually take a break after lunch on a weekday in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","Berapa lama (dalam jam) orang biasanya istirahat setelah makan siang di hari kerja di Indonesia? (Berikan angka numerik Arab hingga satu desimal (contoh, 2, 3.5) saja.)" +Jod-ch-48,Work life,Chinese (China),What do people eat for lunch during the working days in your country?,Apa yang biasanya orang makan siang selama hari kerja di Indonesia? +Jod-ch-50,Work life,Chinese (China),"What is the average commute time (in minutes) for people in your country? (Provide Arabic numerals (e.g., 1) only.)","Berapa rata-rata waktu perjalanan dari rumah ke tempat kerja (dalam menit) untuk orang-orang di Indonesia? (Berikan angka Arab (contoh, 1) saja.)" +Jod-ch-51,Work life,Chinese (China),What is the most common transportation that people take to get to work in your country?,Apa alat transportasi yang paling umum digunakan orang untuk pergi ke tempat kerja di Indonesia? +Jod-ch-54,Work life,Chinese (China),"How long (in days) is the marriage leave in your country? (Provide Arabic numerals (e.g., 12) only.)","Berapa lama (dalam hari) cuti pernikahan di Indonesia? (Berikan hanya angka Arab (misalnya, 12).)" +Jod-ch-56,Work life,Chinese (China),"What is the typical retirement age for women in your country? (Provide Arabic numerals (e.g., 12) only.)","Berapa usia pensiun yang umum untuk perempuan di Indonesia? (Berikan hanya angka Arab (contoh, 12).)" +Jod-ch-57,Work life,Chinese (China),"What is the typical retirement age for men in your country? (Provide Arabic numerals (e.g., 12) only.)","Berapa usia pensiun yang umum untuk pria di Indonesia? (Berikan hanya angka Arab (contoh, 12).)" +Jod-ch-58,Work life,Chinese (China),Which profession is the most respected in your country?,Profesi apa yang paling dihormati di Indonesia? +Jod-ch-60,Work life,Chinese (China),What is the duration (in hours) of a typical workday in your country? (Provide Arabic numerals (0~24) only.),Berapa lama (dalam jam) durasi hari kerja yang tipikal di Indonesia? (Berikan hanya angka Arab (0~24) saja.) +Jod-ch-61,Work life,Chinese (China),Which occupation is most preferred among females in your country?,Pekerjaan apa yang paling disukai oleh perempuan di Indonesia? +Jod-ch-62,Work life,Chinese (China),Which occupation is most preferred among males in your country?,Pekerjaan apa yang paling disukai oleh pria di Indonesia? +Ki-pe-17,Education,Persian (Iran),"On average, how far do students typically pursue their education in your country? (e.g., elementary, high school)","Rata-rata, sejauh mana biasanya siswa mengejar pendidikan mereka di Indonesia? (misalnya, sekolah dasar, sekolah menengah atas)" +Ki-pe-24,Education,Persian (Iran),What language is taught in schools in your country besides English?,Bahasa apa yang diajarkan di sekolah-sekolah di Indonesia selain Bahasa Inggris? +Ki-pe-30,Education,Persian (Iran),What days of the week are schools closed in your country?,Pada hari apa saja sekolah-sekolah di Indonesia tutup? +Ki-pe-32,Food,Persian (Iran),What food do the hosts usually prepare for the guests in your country?,Makanan apa yang biasanya disiapkan oleh tuan rumah untuk para tamu di Indonesia? +Ki-pe-34,Food,Persian (Iran),What is the usual drink in the breakfast in your country?,Apa minuman yang biasa diminum saat sarapan di Indonesia? +Ki-pe-36,Food,Persian (Iran),"Except the food original from your country, which country's food is more popular in your country?","Selain makanan asli dari Indonesia, makanan dari negara mana yang lebih populer di Indonesia?" +Ki-pe-39,Food,Persian (Iran),What food is usually prepared for a family picnic in your country?,Makanan apa yang biasanya disiapkan untuk piknik keluarga di Indonesia? +Ki-pe-40,Food,Persian (Iran),Which food from your country is considered disgusting by the rest of the world?,Makanan apa dari Indonesia yang dianggap menjijikkan oleh negara-negara lain di dunia? +Ki-pe-43,Food,Persian (Iran),What is the name of the popular bread in your country?,Apa nama roti yang populer di Indonesia? +Ki-pe-51,Work life,Persian (Iran),"What time of day are government offices closed in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Pukul berapa kantor pemerintahan di Indonesia tutup? (Berikan dalam format HH:MM (contoh, 18:00, 09:00).)" +Ki-pe-53,Work life,Persian (Iran),"What is the normal start time of government offices in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Pukul berapa biasanya kantor pemerintahan di Indonesia buka? (Berikan dalam format HH:MM (contoh, 18:00, 09:00).)" +Kik-in-01,Holidays/Celebration/Leisure,Indonesian (Indonesia),What national holiday has the longest duration in your country?,Hari libur nasional apa yang memiliki durasi terpanjang di Indonesia? +Kik-in-02,Holidays/Celebration/Leisure,Indonesian (Indonesia),What are the common activities people from your country do to celebrate Independence day?,Apa saja kegiatan umum yang dilakukan orang-orang di Indonesia untuk merayakan Hari Kemerdekaan? +Kik-in-04,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is installed in front of the house when a family member dies in your country?,Apa yang dipasang di depan rumah ketika ada anggota keluarga yang meninggal di Indonesia? +Kik-in-05,Holidays/Celebration/Leisure,Indonesian (Indonesia),When is a pregnancy celebration or ceremony usually held in your country?,Kapan biasanya perayaan atau upacara kehamilan diadakan di Indonesia? +Kik-in-06,Holidays/Celebration/Leisure,Indonesian (Indonesia),What event is usually held before a wedding in your country?,Acara apa yang biasanya diadakan sebelum pernikahan di Indonesia? +Kik-in-07,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is usually shared to the children during (Lunar) New Year in your country?,Apa yang biasanya dibagikan kepada anak-anak selama Tahun Baru Imlek di Indonesia? +Kik-in-08,Holidays/Celebration/Leisure,Indonesian (Indonesia),What activities are usually done days before Ramadan in your country?,Apa saja kegiatan yang biasanya dilakukan beberapa hari sebelum Ramadan di Indonesia? +Kik-in-10,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most popular tourist attraction for foreign visitors in your country?,Apa objek wisata paling populer bagi wisatawan asing di Indonesia? +Kik-in-11,Holidays/Celebration/Leisure,Indonesian (Indonesia),"What is the most popular religious sites (temple, church, etc.) for tourism in your country?","Apa situs keagamaan (candi, gereja, dll.) yang paling populer untuk pariwisata di Indonesia?" +Kik-in-15,Holidays/Celebration/Leisure,Indonesian (Indonesia),What clothes do women usually wear on graduation commencement ceremony in your country?,Pakaian apa yang biasanya dikenakan oleh wanita pada upacara wisuda di Indonesia? +Kik-in-16,Food,Indonesian (Indonesia),What drink is commonly consumed in your country when the weather is cold?,Minuman apa yang biasa dikonsumsi di Indonesia ketika cuaca dingin? +Kik-in-17,Food,Indonesian (Indonesia),What fruit is more commonly sold and found during Ramadan in your country?,Buah apa yang lebih sering dijual dan ditemukan selama bulan Ramadan di Indonesia? +Kik-in-24,Food,Indonesian (Indonesia),What carbohydrate is usually served with chicken in a fast-food restaurant in your country?,Karbohidrat apa yang biasanya disajikan dengan ayam di restoran cepat saji di Indonesia? +Kik-in-31,Sport,Indonesian (Indonesia),What is the most famous martial art sports in your country?,Apa olahraga bela diri paling terkenal di Indonesia? +Kik-in-34,Sport,Indonesian (Indonesia),What sports are often broadcasted on national television in your country?,Olahraga apa yang sering disiarkan di televisi nasional Indonesia? +Kik-in-35,Sport,Indonesian (Indonesia),What sports were popular among people from your country during the COVID-19 pandemic?,Olahraga apa yang populer di kalangan masyarakat Indonesia selama pandemi COVID-19? +Kik-in-36,Sport,Indonesian (Indonesia),Who is the most popular soccer coach in your country?,Siapa pelatih sepak bola paling populer di Indonesia? +Kik-in-37,Sport,Indonesian (Indonesia),What soccer teams in your country are famous for their intense rivalry? (e.g. ___ vs ___),Tim sepak bola mana di Indonesia yang terkenal karena persaingan sengit mereka? (misalnya ___ vs ___) +Kik-in-38,Sport,Indonesian (Indonesia),What are the names of soccer supporters in your country who are famous for their intense rivalry? (e.g. ___ vs ___),Apa nama-nama pendukung sepak bola di Indonesia yang terkenal karena persaingan sengit mereka? (misalnya ___ vs ___) +Kik-in-40,Sport,Indonesian (Indonesia),Who is the most famous male badminton player in your country?,Siapa pemain bulu tangkis pria paling terkenal di Indonesia? +Kik-in-41,Sport,Indonesian (Indonesia),Who is the most famous female badminton player in your country?,Siapa pemain bulu tangkis wanita paling terkenal di Indonesia? +Kik-in-44,Sport,Indonesian (Indonesia),What sport gets the most support from the government in your country?,Olahraga apa yang paling banyak mendapatkan dukungan dari pemerintah di Indonesia? +Kik-in-45,Sport,Indonesian (Indonesia),What sports field facilities are usually available at schools in your country?,Fasilitas lapangan olahraga apa saja yang biasanya tersedia di sekolah-sekolah di Indonesia? +Na-ko-02,Food,Korean (South Korea),What cafe beverage do people from your country most commonly enjoy?,Minuman kafe apa yang paling sering dinikmati oleh orang-orang di Indonesia? +Na-ko-04,Food,Korean (South Korea),What is the preferred hangover cure food for people from your country?,Apa makanan penawar mabuk yang paling disukai oleh orang-orang Indonesia? +Na-ko-05,Food,Korean (South Korea),What is the typical delivery food in your country?,Apa makanan khas yang biasa diantar di Indonesia? +Na-ko-07,Food,Korean (South Korea),What type of meat is consumed most by people from your country?,Jenis daging apa yang paling banyak dikonsumsi oleh masyarakat Indonesia? +Na-ko-08,Food,Korean (South Korea),What fruit do people from your country often eat in the autumn season?,Buah apa yang sering dimakan oleh orang-orang Indonesia di musim gugur? +Na-ko-09,Food,Korean (South Korea),What side dish is the most commonly served on a dining table in your country?,Lauk apa yang paling sering disajikan di meja makan di Indonesia? +Na-ko-11,Food,Korean (South Korea),What do people from your country eat while watching a soccer game?,Apa yang biasanya dimakan orang Indonesia saat menonton pertandingan sepak bola? +Na-ko-15,Food,Korean (South Korea),What is the representative nourishing food in your country?,Apa makanan bergizi yang mewakili Indonesia? +Na-ko-16,Sport,Korean (South Korea),Who is the most famous soccer player in your country?,Siapa pemain sepak bola paling terkenal di Indonesia? +Na-ko-17,Sport,Korean (South Korea),What sports do male students enjoy during lunch time at school in your country?,Olahraga apa yang disukai oleh siswa laki-laki saat waktu makan siang di sekolah di Indonesia? +Na-ko-18,Sport,Korean (South Korea),What is the most common sport girls participate in during physical education classes in your country?,Apa olahraga paling umum yang diikuti oleh para siswi selama pelajaran pendidikan jasmani di Indonesia? +Na-ko-19,Sport,Korean (South Korea),Who is the most popular volleyball player in your country?,Siapa pemain bola voli paling populer di Indonesia? +Na-ko-20,Sport,Korean (South Korea),What sports event do people from your country passionately support the most in international competitions?,Acara olahraga apa yang paling banyak didukung oleh masyarakat Indonesia dalam kompetisi internasional? +Na-ko-22,Sport,Korean (South Korea),Which country is considered the biggest rival in soccer matches for your country?,Negara mana yang dianggap sebagai rival terbesar dalam pertandingan sepak bola untuk Indonesia? +Na-ko-23,Sport,Korean (South Korea),What type of sports academies do children attend the most in your country?,Jenis akademi olahraga apa yang paling banyak diikuti oleh anak-anak di Indonesia? +Na-ko-24,Sport,Korean (South Korea),What is the most commonly eaten food in sports stadiums while watching games in your country?,Apa makanan yang paling sering dimakan di stadion olahraga saat menonton pertandingan di Indonesia? +Na-ko-25,Sport,Korean (South Korea),What are the typical sports played in your country's school sports day?,Apa saja olahraga yang umum dimainkan pada hari olahraga di sekolah di Indonesia? +Na-ko-26,Sport,Korean (South Korea),What are the popular sports among the middle-aged population in your country?,Apa olahraga populer di kalangan penduduk usia paruh baya di Indonesia? +Na-ko-28,Sport,Korean (South Korea),Who is the most popular winter sports player in your country?,Siapa atlet olahraga musim dingin yang paling populer di Indonesia? +Na-ko-29,Sport,Korean (South Korea),Who is the most famous swimmer in your country?,Siapa perenang paling terkenal di Indonesia? +Na-ko-30,Sport,Korean (South Korea),What is the most popular e-sports game in your country?,Apa game e-sports paling populer di Indonesia? +Na-ko-33,Holidays/Celebration/Leisure,Korean (South Korea),What symbolic food do people from your country eat on (Lunar) New Year?,Makanan simbolis apa yang biasa dimakan oleh orang-orang Indonesia pada Tahun Baru Imlek? +Na-ko-37,Holidays/Celebration/Leisure,Korean (South Korea),What is the most popular domestic vacation spot for people from your country?,Apa tempat liburan domestik yang paling populer bagi orang-orang dari Indonesia? +Na-ko-38,Holidays/Celebration/Leisure,Korean (South Korea),What is the most common wedding gift between bride and groom in your country?,Apa hadiah pernikahan yang paling umum diberikan antara pengantin pria dan wanita di Indonesia? +Na-ko-39,Holidays/Celebration/Leisure,Korean (South Korea),What is typically given as a congratulatory gesture when attending a friend's wedding in your country?,Apa yang biasanya diberikan sebagai ucapan selamat ketika menghadiri pernikahan seorang teman di Indonesia? +Na-ko-40,Holidays/Celebration/Leisure,Korean (South Korea),"How long (in days) does a funeral typically last in your country? (Provide Arabic numerals (e.g., 12) only.)","Berapa lama (dalam hari) biasanya sebuah pemakaman berlangsung di Indonesia? (Berikan angka Arab (misalnya, 12) saja.)" +Na-ko-41,Holidays/Celebration/Leisure,Korean (South Korea),What should you prepare as a condolence offering when attending a funeral in your country?,Apa yang harus Anda siapkan sebagai tanda belasungkawa ketika menghadiri pemakaman di Indonesia? +Na-ko-42,Holidays/Celebration/Leisure,Korean (South Korea),What type of food is commonly provided at funeral parlors in your country?,Jenis makanan apa yang biasanya disediakan di rumah duka di Indonesia? +Na-ko-43,Holidays/Celebration/Leisure,Korean (South Korea),What do people do in your country in the morning of the (Lunar) New Year?,Apa yang dilakukan orang-orang di Indonesia di pagi hari Tahun Baru Imlek? +Na-ko-44,Holidays/Celebration/Leisure,Korean (South Korea),When is the day with your country's most severe nationwide traffic congestion?,Pada hari apa terjadi kemacetan lalu lintas terparah di seluruh Indonesia? +Na-ko-45,Holidays/Celebration/Leisure,Korean (South Korea),What is the most popular honeymoon destination in your country?,Apa destinasi bulan madu paling populer di Indonesia? +Ne-ar-05,Holidays/Celebration/Leisure,Arabic (Algeria),What is the most important national holiday in your country?,Apa hari libur nasional yang paling penting di Indonesia? +Ne-ar-06,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Ramadan?,Apa yang biasanya orang Indonesia makan selama bulan Ramadan? +Ne-ar-09,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Eid ul Fitr?,Apa yang biasanya orang Indonesia makan saat Idul Fitri? +Ne-ar-10,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Eid ul Adha?,Apa yang biasanya orang Indonesia makan di Hari Raya Idul Adha? +Ne-ar-11,Holidays/Celebration/Leisure,Arabic (Algeria),Where do people from your country go to celebrate New Year's Day?,Kemana orang-orang dari Indonesia pergi untuk merayakan Tahun Baru? +Ne-ar-14,Holidays/Celebration/Leisure,Arabic (Algeria),Where do a family gather for Eid festivities in your country?,Di mana sebuah keluarga berkumpul untuk perayaan Idul Fitri di Indonesia? +Ne-ar-16,Work life,Arabic (Algeria),"When is the weekend in your country (e.g. Monday, Tuesday)?","Kapan akhir pekan di Indonesia (misalnya Senin, Selasa)?" +Ne-ar-17,Work life,Arabic (Algeria),"At what time do most people start work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Pada pukul berapa kebanyakan orang mulai bekerja di Indonesia? (Berikan dalam format JJ:MM (contoh, 18:00, 09:00).)" +Ne-ar-18,Work life,Arabic (Algeria),"At what time do most people finish work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Pada pukul berapa kebanyakan orang selesai bekerja di Indonesia? (Berikan dalam format JJ:MM (contoh, 18:00, 09:00).)" +Ne-ar-20,Work life,Arabic (Algeria),What is considered to be a secure job in your country?,Apa yang dianggap sebagai pekerjaan yang aman di Indonesia? +Ne-ar-24,Work life,Arabic (Algeria),Which city is the primary commercial hub in your country?,Kota mana yang merupakan pusat komersial utama di Indonesia? +Ne-ar-25,Work life,Arabic (Algeria),What is the industry that pays the best in your country?,Apa industri yang memberikan gaji terbaik di Indonesia? +Ne-ar-26,Work life,Arabic (Algeria),What is the most famous public corporation in your country?,Apa perusahaan publik yang paling terkenal di Indonesia? +Ne-ar-31,Food,Arabic (Algeria),What is the most famous dish in your country?,Apa hidangan paling terkenal di Indonesia? +Ne-ar-32,Food,Arabic (Algeria),What do people usually have for breakfast in your country?,Apa yang biasanya orang makan untuk sarapan di Indonesia? +Ne-ar-33,Food,Arabic (Algeria),"When do people usually have lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Kapan orang biasanya makan siang di Indonesia? (Berikan dalam format JJ:MM (contoh, 18:00, 09:00).)" +Ne-ar-34,Food,Arabic (Algeria),What is typically indispensable in meals in your country?,Apa yang biasanya tidak dapat dipisahkan dari makanan di Indonesia? +Ne-ar-36,Food,Arabic (Algeria),What is a typical festive meal in your country?,Apa makanan perayaan yang khas di Indonesia? +Ne-ar-37,Food,Arabic (Algeria),Which fruit do people usually offer tourists/visitors from abroad in your country?,Buah apa yang biasanya ditawarkan kepada turis/pengunjung dari luar negeri di Indonesia? +Ne-ar-38,Food,Arabic (Algeria),Which food do people usually offer as charity in your country?,Makanan apa yang biasanya orang tawarkan sebagai amal di Indonesia? +Ne-ar-39,Food,Arabic (Algeria),What is the cheapest fast food in your country?,Apa makanan cepat saji termurah di Indonesia? +Ne-ar-43,Food,Arabic (Algeria),What do people usually have with tea in your country?,Apa yang biasanya orang minum dengan teh di Indonesia? +Ne-ar-44,Food,Arabic (Algeria),What do people have with coffee in your country?,Apa yang biasanya orang minum dengan kopi di Indonesia? +New-am-02,Food,Amharic (Ethiopia),What is the most popular traditional food in your country?,Apa makanan tradisional yang paling populer di Indonesia? +New-am-04,Food,Amharic (Ethiopia),What is the most popular dipping sauce in your country?,Apa saus cocolan yang paling populer di Indonesia? +New-am-08,Food,Amharic (Ethiopia),What food is most often consumed during Christian fasting in your country?,Apa makanan yang paling sering dikonsumsi saat puasa untuk umat Kristen di Indonesia? +New-am-15,Food,Amharic (Ethiopia),What food is usually prepared when mothers give birth in your country?,Makanan apa yang biasanya disiapkan ketika seorang ibu melahirkan di Indonesia? +New-am-27,Sport,Amharic (Ethiopia),Who is the most popular female sportperson in your country?,Siapa olahragawan wanita paling populer di Indonesia? +New-am-34,Education,Amharic (Ethiopia),Where do most elementary school students prepare for their exams in your country?,Di mana sebagian besar siswa sekolah dasar di Indonesia mempersiapkan ujian mereka? +New-am-41,Education,Amharic (Ethiopia),"In your country, at which grade level do students take their first national-level examination?","Di Indonesia, di kelas berapa siswa mengikuti ujian nasional pertama kali?" +New-am-53,Work life,Amharic (Ethiopia),Which region in your country is widely known for its coffee/tea industry?,Wilayah mana di Indonesia yang dikenal dengan industri kopi/tehnya? +New-am-54,Work life,Amharic (Ethiopia),Which region in your country is widely known for its livestock industry?,Wilayah mana di Indonesia yang dikenal dengan industri peternakannya? +New-am-59,Work life,Amharic (Ethiopia),What is the main occupation of people living in deserts in your country?,Apa pekerjaan utama masyarakat yang tinggal di gurun di Indonesia? +New-am-60,Work life,Amharic (Ethiopia),Which animal is typically used for transportation in your country?,Hewan apa yang biasanya digunakan untuk transportasi di Indonesia? +New-am-72,Family,Amharic (Ethiopia),What is the most popular comic book for children to read in your country?,Apa komik untuk anak-anak yang paling populer di Indonesia? +New-am-73,Family,Amharic (Ethiopia),What is the most popular YouTube channel for children in your country?,Apa saluran YouTube paling populer untuk anak-anak di Indonesia? +New-am-74,Family,Amharic (Ethiopia),What is the most popular talk show in your country?,Apa acara talk show paling populer di Indonesia? +New-am-77,Holidays/Celebration/Leisure,Amharic (Ethiopia),What is the most famous religious holiday in your country?,Apa hari raya keagamaan yang paling terkenal di Indonesia? +New-am-81,Holidays/Celebration/Leisure,Amharic (Ethiopia),"What is the busiest month for weddings in your country? (Provide Arabic numerals (e.g., 1) only.)","Di bulan apa biasanya pernikahan paling banyak diadakan di Indonesia? (Berikan angka Arab (misalnya, 1) saja.)" +New-am-83,Holidays/Celebration/Leisure,Amharic (Ethiopia),What is the most popular traditional musical instrument in your country?,Apa alat musik tradisional yang paling populer di Indonesia? +New-as-01,Food,Assamese (Assam),What is the main agricultural product produced in your country?,Apa produk pertanian utama yang dihasilkan di Indonesia? +New-as-02,Food,Assamese (Assam),What is the most popular wheat-based food item in your country?,Apa makanan berbahan dasar gandum yang paling populer di Indonesia? +New-as-05,Food,Assamese (Assam),What is the most typical drink offered to guests when they visit households in your country?,Apa minuman yang paling sering ditawarkan kepada tamu ketika mereka mengunjungi rumah di Indonesia? +New-as-07,Food,Assamese (Assam),What is the most popular dish cooked with fish in your country?,Apa hidangan paling populer yang dimasak dengan ikan di Indonesia? +New-as-14,Food,Assamese (Assam),What food do people from your country like to eat during rainy weather?,Makanan apa yang disukai orang Indonesia untuk dimakan saat cuaca hujan? +New-as-15,Food,Assamese (Assam),What drink is commonly consumed in your country when the weather is hot?,Minuman apa yang umumnya dikonsumsi di Indonesia ketika cuaca panas? +New-as-20,Sport,Assamese (Assam),What is the most popular indoor sport in your country?,Apa olahraga dalam ruangan yang paling populer di Indonesia? +New-as-29,Sport,Assamese (Assam),What sport do men in your country like to watch?,Olahraga apa yang gemar ditonton oleh pria di Indonesia? +New-as-30,Sport,Assamese (Assam),What sport do women in your country like to watch?,Olahraga apa yang gemar ditonton oleh wanita di Indonesia? +New-as-58,Work life,Assamese (Assam),What is the most popular beverage that people from your country like to drink in their workplace?,Apa minuman paling populer yang disukai oleh orang-orang Indonesia untuk diminum di tempat kerja mereka? +New-as-64,Family,Assamese (Assam),On which holiday do all family members tend to reunite in your country?,Pada hari libur apa semua anggota keluarga biasanya berkumpul di Indonesia? +New-as-76,Holidays/Celebration/Leisure,Assamese (Assam),What traditional games do families play during traditional holidays in your country?,Permainan tradisional apa yang dimainkan selama hari libur tradisional oleh keluarga di Indonesia? +New-as-80,Holidays/Celebration/Leisure,Assamese (Assam),What type of clothing do people from your country wear during traditional festivals?,Jenis pakaian apa yang dikenakan oleh orang-orang Indonesia saat festival tradisional? +New-as-89,Holidays/Celebration/Leisure,Assamese (Assam),What traditional festival accessories do people from your country wear?,Apa aksesori festival tradisional yang biasa dikenakan oleh orang-orang di Indonesia? +New-az-05,Food,Azerbaijani (Azerbaijan),What is the most famous region for alcohol production in your country?,Wilayah apa yang paling dikenal dengan produksi alkohol di Indonesia? +New-az-11,Food,Azerbaijani (Azerbaijan),What fruit do people from your country often eat in the summer season?,Buah apa yang sering dimakan oleh orang-orang Indonesia di musim panas? +New-az-12,Food,Azerbaijani (Azerbaijan),Which region in your country is known for its seafood?,Wilayah mana di Indonesia yang terkenal dengan makanan lautnya? +New-az-21,Sport,Azerbaijani (Azerbaijan),Which region in your country is the most popular skiing destination?,Wilayah mana di Indonesia yang paling populer sebagai destinasi untuk ski? +New-az-26,Sport,Azerbaijani (Azerbaijan),Who is the most popular martial arts player in your country?,Siapa pemain bela diri paling populer di Indonesia? +New-az-27,Sport,Azerbaijani (Azerbaijan),Which sport has been one of the fastest-growing in your country over the last decade?,Olahraga apa yang menjadi salah satu olahraga dengan pertumbuhan tercepat di Indonesia selama dekade terakhir? +New-az-39,Education,Azerbaijani (Azerbaijan),Which country is the most popular destination for students from your country studying abroad?,Negara mana yang merupakan tujuan paling populer bagi siswa dari Indonesia untuk belajar di luar negeri? +New-az-49,Work life,Azerbaijani (Azerbaijan),"How many people work in a typical family in your country? (Provide Arabic numerals (e.g., 1) only.)","Di Indonesia, berapa banyak orang yang bekerja dalam sebuah keluarga pada umumnya? (Berikan angka Arab (contoh, 1) saja.)" +New-az-60,Family,Azerbaijani (Azerbaijan),"In your country, who takes care of kids when both parents are working?","Di Indonesia, siapa yang mengurus anak-anak ketika kedua orang tuanya sedang bekerja?" +New-az-69,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),What is the preferred alcoholic beverage for men from your country?,Apa minuman beralkohol yang paling disukai oleh pria dari Indonesia? +New-az-70,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),What is the preferred alcoholic beverage for women from your country?,Apa minuman beralkohol yang paling disukai oleh wanita dari Indonesia? +New-az-73,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),"How many people on average typically attend a wedding in your country? (Provide Arabic numerals (e.g., 1) only.)","Berapa banyak rata-rata orang yang biasanya menghadiri sebuah pernikahan di Indonesia? (Berikan angka Arab saja (contoh, 1).)" +New-ch-01,Food,Chinese (China),What kind of meat do people usually eat when they have barbecue in your country?,Jenis daging apa yang biasanya orang makan saat mereka melakukan barbekyu di Indonesia? +New-ch-02,Food,Chinese (China),"When do people usually have breakfast in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Kapan orang biasanya sarapan di Indonesia? (Berikan dalam format JJ:MM (contoh, 18:00, 09:00).)" +New-ch-04,Food,Chinese (China),What kinds of food do people usually eat for late-night snacks in your country?,Jenis makanan apa yang biasanya orang makan untuk camilan larut malam di Indonesia? +New-ch-05,Food,Chinese (China),What is the most famous spicy dish in your country?,Apa masakan pedas yang paling terkenal di Indonesia? +New-ch-07,Food,Chinese (China),What food items do people typically pair with hard liquor in your country?,Makanan apa yang biasanya dipadukan dengan minuman keras di Indonesia? +New-ch-08,Food,Chinese (China),What seasoning is indispensable in cooking in your country?,Bumbu apa yang sangat penting dan tidak dapat dihilangkan dalam memasak di Indonesia? +New-ch-09,Food,Chinese (China),What food do people typically consume when the weather is cold in your country?,Makanan apa yang biasanya dikonsumsi orang-orang ketika cuaca dingin di Indonesia? +New-ch-13,Food,Chinese (China),What is the most famous alcohol brand in your country?,Apa merek alkohol paling terkenal di Indonesia? +New-ch-14,Food,Chinese (China),What foods do people usually eat when they are sick in your country?,Makanan apa yang biasanya orang makan ketika mereka sakit di Indonesia? +New-ch-15,Food,Chinese (China),What prepared/ready-to-eat food do people typically buy at supermarkets in your country?,Makanan apa yang biasanya dibeli orang-orang di supermarket di Indonesia yang sudah siap saji atau siap dimakan? +New-ch-16,Sport,Chinese (China),What is the most famous sports-related movie in your country?,Apa film bertema olahraga yang paling terkenal di Indonesia? +New-ch-17,Sport,Chinese (China),What extreme sport do people generally wish to try the most in your country?,Olahraga ekstrem apa yang paling ingin dicoba oleh kebanyakan orang di Indonesia? +New-ch-18,Sport,Chinese (China),Which track and field event is the most popular to watch during competitions in your country?,Cabang atletik mana yang paling populer untuk ditonton selama kompetisi di Indonesia? +New-ch-19,Sport,Chinese (China),Which gymnastics event is the most popular to watch during competitions in your country?,Perlombaan senam apa yang paling populer untuk ditonton selama kompetisi di Indonesia? +New-ch-23,Sport,Chinese (China),Who is the most famous table tennis player in your country?,Siapa pemain tenis meja paling terkenal di Indonesia? +New-ch-26,Sport,Chinese (China),"In the Winter Olympics, which event is the most popular to watch in your country?","Dalam Olimpiade Musim Dingin, acara apa yang paling populer untuk ditonton di Indonesia?" +New-ch-27,Sport,Chinese (China),Who is the most famous boxer in your country?,Siapa petinju paling terkenal di Indonesia? +New-ch-30,Sport,Chinese (China),Who is the most famous track and field athlete in your country?,Siapa atlet atletik yang paling terkenal di Indonesia? +New-ch-31,Work life,Chinese (China),What job do parents most hope their children will pursue in your country?,Pekerjaan apa yang paling diharapkan oleh orang tua agar dikejar oleh anak-anak mereka di Indonesia? +New-ch-32,Work life,Chinese (China),What office software do people typically use in the workplace in your country?,Perangkat lunak kantor apa yang biasanya digunakan orang-orang di tempat kerja di Indonesia? +New-ch-38,Work life,Chinese (China),Which cities or regions are known for their import and export activities in your country?,Kota atau wilayah mana saja yang dikenal dengan kegiatan impor dan ekspor di Indonesia? +New-ch-39,Work life,Chinese (China),What platform is commonly used in the e-commerce industry in your country?,Platform apa yang umum digunakan dalam industri e-commerce di Indonesia? +New-ch-44,Work life,Chinese (China),"How long is the typical probation period for new employees before signing a formal contract in your country? (e.g., 1 month).","Berapa lama periode percobaan yang biasa diberikan kepada karyawan baru sebelum menandatangani kontrak formal di Indonesia? (misalnya, 1 bulan)." +New-ch-45,Work life,Chinese (China),Which industries do young people typically choose to start businesses in your country?,Di industri apa biasanya para pemuda memilih untuk memulai bisnis di Indonesia? +New-ch-49,Family,Chinese (China),What is the most common way for family members to communicate remotely in your country?,Apa cara yang paling umum digunakan oleh anggota keluarga untuk berkomunikasi jarak jauh di Indonesia? +New-ch-51,Family,Chinese (China),What form of accommodation is typically booked for family trips in your country?,Bentuk akomodasi apa yang biasanya dipesan untuk perjalanan keluarga di Indonesia? +New-ch-54,Family,Chinese (China),Which fruit is usually prepared the most for family dinners in your country?,Buah apa yang biasanya paling sering disiapkan untuk makan malam keluarga di Indonesia? +New-ch-64,Education,Chinese (China),"How many hours of classes do university students typically have per week in your country? (Provide Arabic numerals (e.g., 1) only.)","Berapa jam kuliah per minggu yang biasanya diikuti oleh mahasiswa universitas di Indonesia? (Gunakan angka Arab (contoh, 1) saja.)" +New-ch-66,Education,Chinese (China),"What is the typical tuition fee per semester for public high schools in your country? (Provide Arabic numerals (e.g., 1) only.)","Berapa biaya sekolah rata-rata per semester untuk SMA negeri di Indonesia? (Gunakan angka Arab (contoh, 1) saja.)" +New-ch-70,Education,Chinese (China),What compulsory courses do university students have in common in your country?,Apa mata kuliah wajib yang dimiliki bersama oleh mahasiswa universitas di Indonesia? +New-ch-71,Education,Chinese (China),"What is the average class size in high schools in your country? (Provide Arabic numerals (e.g., 1) only.)","Berapa jumlah rata-rata siswa dalam satu kelas di sekolah menengah atas di Indonesia? (Berikan angka numerik Arab (contoh, 1) saja.)" +New-ch-72,Education,Chinese (China),Which major is considered most conducive to employment in your country?,Jurusan apa yang dianggap paling mendukung kesempatan kerja di Indonesia? +New-ch-73,Education,Chinese (China),What type of clubs are most popular among university students in your country?,Jenis klub apa yang paling populer di kalangan mahasiswa universitas di Indonesia? +New-ch-74,Education,Chinese (China),What types of accommodation do university students in your country typically live in?,Di mana mahasiswa universitas biasanya tinggal di Indonesia? +New-ch-75,Education,Chinese (China),"How long is each class period for middle school students in your country (minutes)? (Provide Arabic numerals (e.g., 1) only.)","Berapa lama durasi setiap periode kelas untuk siswa SMP di Indonesia (menit)? (Berikan hanya angka Arab (contoh, 1).)" +New-ch-78,Holidays/Celebration/Leisure,Chinese (China),What leisure activities do retired women typically like in your country?,Kegiatan santai apa yang biasanya disukai oleh wanita pensiunan di Indonesia? +New-ch-79,Holidays/Celebration/Leisure,Chinese (China),What leisure activities do retired men typically like in your country?,Kegiatan santai apa yang biasanya disukai oleh pria pensiunan di Indonesia? +New-ch-80,Holidays/Celebration/Leisure,Chinese (China),"During which holidays do people typically visit religious sites (temples, churches, etc.) in your country?","Pada hari raya apa biasanya orang-orang mengunjungi tempat-tempat ibadah (candi, gereja, dll) di Indonesia?" +New-ch-81,Holidays/Celebration/Leisure,Chinese (China),What are the typical housewarming gifts in your country?,Apa hadiah peresmian rumah yang biasa di Indonesia? +New-ch-82,Holidays/Celebration/Leisure,Chinese (China),"At what time do weddings typically start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Pada pukul berapa biasanya pernikahan dimulai di Indonesia? (Berikan dalam format JJ:MM (contoh, 18:00, 09:00).)" +New-ch-83,Holidays/Celebration/Leisure,Chinese (China),Which city in your country hosts festivals the most?,Kota mana di Indonesia yang paling sering mengadakan festival? +New-ch-84,Holidays/Celebration/Leisure,Chinese (China),What color of clothing do people typically wear when attending weddings in your country?,Warna pakaian apa yang biasanya dikenakan orang saat menghadiri pernikahan di Indonesia? +New-ch-85,Holidays/Celebration/Leisure,Chinese (China),What color of clothing do people typically wear when attending funerals in your country?,Warna pakaian apa yang biasanya dikenakan orang saat menghadiri pemakaman di Indonesia? +New-en-01,Food,English (UK),Which snack is eaten in the cinema in your country?,Camilan apa yang dimakan di bioskop di Indonesia? +New-en-02,Food,English (UK),What is the most popular chip/crisp flavour in your country?,Apa rasa keripik yang paling populer di Indonesia? +New-en-04,Food,English (UK),Who is a popular celebrity chef in your country?,Siapa koki selebriti yang populer di Indonesia? +New-en-05,Food,English (UK),Which food is a cost-effective and quick meal option in your country?,Makanan apa yang merupakan pilihan makanan hemat dan cepat di Indonesia? +New-en-07,Food,English (UK),What are the most popular cooking shows in your country?,Apa saja acara masak yang paling populer di Indonesia? +New-en-08,Food,English (UK),What is the most popular chocolate brand in your country?,Apa merek cokelat paling populer di Indonesia? +New-en-10,Food,English (UK),What is the most eaten cheese in your country?,Keju apa yang paling banyak dikonsumsi di Indonesia? +New-en-11,Food,English (UK),What is the most disliked vegetable in your country?,Apa sayuran yang paling tidak disukai di Indonesia? +New-en-12,Food,English (UK),What food is most commonly found in food courts in your country?,Makanan apa yang paling sering ditemukan di food court di Indonesia? +New-en-17,Sport,English (UK),What are the most common cheering tools used by sports fans in your country?,Apa benda yang paling sering digunakan oleh para penggemar olahraga untuk mendukung tim olahraga di Indonesia? +New-en-18,Sport,English (UK),What do fans bring with them when attending a live game in your country?,Apa yang dibawa oleh para penggemar saat menghadiri pertandingan langsung di Indonesia? +New-en-19,Sport,English (UK),What is the most well known sporting stadium in your country?,Apa stadion olahraga yang paling terkenal di Indonesia? +New-en-23,Sport,English (UK),Who is the most famous Paralympian in your country?,Siapa atlet Paralimpiade paling terkenal di Indonesia? +New-en-26,Sport,English (UK),What is the best recognized sporting chant in your country?,Apa yel-yel olahraga yang paling dikenal di Indonesia? +New-en-38,Work life,English (UK),Which industries are known for more flexible working hours in your country?,Industri apa yang dikenal memiliki jam kerja yang lebih fleksibel di Indonesia? +New-en-41,Work life,English (UK),Who is the most well known and successful entrepreneur in your country?,Siapa pengusaha yang paling terkenal dan sukses di Indonesia? +New-en-47,Family,English (UK),What can typically be found in the back garden of houses in your country?,Apa yang biasanya dapat ditemukan di taman belakang rumah di Indonesia? +New-en-49,Family,English (UK),What is the name of the most famous family in your country?,Siapa keluarga paling terkenal di Indonesia? +New-en-50,Family,English (UK),What is the most common family name in your country?,Apa nama keluarga yang paling umum di Indonesia? +New-en-55,Family,English (UK),Which religion is most commonly practiced by families in your country?,Agama apa yang paling umum dipeluk keluarga-keluarga di Indonesia? +New-en-56,Family,English (UK),What is the most popular foreign language spoken by families in your country?,Apa bahasa asing yang paling banyak digunakan oleh keluarga di Indonesia? +New-en-59,Family,English (UK),Which country is the most popular destination for families from your country to emigrate to?,Negara mana yang merupakan tujuan emigrasi paling populer bagi keluarga-keluarga dari Indonesia? +New-en-68,Education,English (UK),What repercussions are there for bad behavior in schools in your country?,Apa saja sanksi yang diberikan untuk perilaku buruk di sekolah-sekolah di Indonesia? +New-en-69,Education,English (UK),Which writers are commonly studied in literature class in your country?,Penulis-penulis mana yang biasanya dipelajari di kelas sastra di Indonesia? +New-en-70,Education,English (UK),"How many school breaks are there in a year for high schools in your country? (Provide Arabic numerals (e.g., 1) only.)","Berapa kali libur sekolah dalam setahun untuk sekolah menengah atas di Indonesia? (Berikan angka numerik Arab (contoh, 1) saja.)" +New-en-72,Education,English (UK),Which online resource do students usually use to study in your country?,Sumber daya online apa yang biasanya digunakan oleh siswa untuk belajar di Indonesia? +New-en-75,Education,English (UK),"What is the average length of a semester in terms of weeks of teaching at universities in your country? (Provide Arabic numerals (e.g., 1) only.)","Berapa rata-rata jumlah minggu kegiatan belajar dalam satu semester di universitas-universitas di Indonesia? (Berikan angka Arab (contoh, 1) saja.)" +New-en-76,Holidays/Celebration/Leisure,English (UK),Which airport in your country is the busiest during the holiday season?,Bandara mana di Indonesia yang paling sibuk selama musim liburan? +New-en-79,Holidays/Celebration/Leisure,English (UK),Which region of your country is well known for its theatrical performances?,Wilayah mana di Indonesia yang terkenal dengan pertunjukan teaternya? +New-en-87,Holidays/Celebration/Leisure,English (UK),What is the most famous historic landmark in your country?,Apa landmark bersejarah paling terkenal di Indonesia? +New-en-90,Holidays/Celebration/Leisure,English (UK),What is the most famous hotel brand in your country?,Apa merek hotel paling terkenal di Indonesia? +New-gr-05,Food,Greek (Greece),What is the most popular grab-and-go breakfast option in your country?,Apa pilihan sarapan paling populer yang penyajiannya cepat (grab-and-go) di Indonesia? +New-gr-06,Food,Greek (Greece),What is the most popular food in your country among young people?,Apa makanan paling populer di Indonesia di kalangan anak muda? +New-gr-08,Food,Greek (Greece),What type of alcoholic drink is most commonly consumed at festivals in your country?,Jenis minuman beralkohol apa yang paling sering dikonsumsi di festival-festival di Indonesia? +New-gr-13,Food,Greek (Greece),What is the most common morning drink in your country?,Apa minuman yang paling umum dikonsumsi pagi hari di Indonesia? +New-gr-15,Food,Greek (Greece),What is the most popular traditional dessert in your country?,Apa makanan penutup (dessert) tradisional yang paling populer di Indonesia? +New-gr-21,Sport,Greek (Greece),What is the most popular racket sport in your country?,Apa olahraga raket yang paling populer di Indonesia? +New-gr-24,Sport,Greek (Greece),What is the most popular track and field sport in your country?,Apa cabang olahraga atletik yang paling populer di Indonesia? +New-gr-29,Sport,Greek (Greece),Which international sporting event is the most popular in your country?,Apa ajang olahraga internasional yang paling populer di Indonesia? +New-gr-47,Work life,Greek (Greece),"How long (in minutes) are typical work breaks in your country, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)","Berapa lama (dalam menit) istirahat kerja umumnya di Indonesia, tidak termasuk istirahat makan siang dan makan malam? (Berikan angka Arab (misalnya, 1) saja.)" +New-gr-58,Work life,Greek (Greece),Which job is considered underpaid in your country?,"Di Indonesia, pekerjaan apa yang bayarannya dianggap lebih rendah dari seharusnya?" +New-gr-76,Holidays/Celebration/Leisure,Greek (Greece),What is the most common food served during Easter in your country?,Apa makanan yang paling sering disajikan saat Paskah di Indonesia? +New-gr-82,Holidays/Celebration/Leisure,Greek (Greece),What is the most popular music genre among the elderly population in your country?,Apa genre musik paling populer di kalangan orang tua atau lansia di Indonesia? +New-gr-88,Holidays/Celebration/Leisure,Greek (Greece),What drink is usually offered at funerals in your country?,Minuman apa yang biasanya disuguhkan di acara pemakaman di Indonesia? +New-gr-89,Holidays/Celebration/Leisure,Greek (Greece),What drink is usually offered at weddings in your country?,Minuman apa yang biasanya disuguhkan di acara pernikahan di Indonesia? +New-ha-07,Food,Hausa (Northern Nigeria),What food originated from your country and can be found all over the world?,Makanan apa yang berasal dari Indonesia dan dapat ditemukan di seluruh dunia? +New-ha-08,Food,Hausa (Northern Nigeria),What food is typically disliked by children but enjoyed by the elderly in your country?,Makanan apa yang biasanya tidak disukai oleh anak-anak tetapi disukai oleh orang tua atau lansia di Indonesia? +New-ha-09,Food,Hausa (Northern Nigeria),What cooking utensil is most commonly used in your country?,Alat masak apa yang paling sering digunakan di Indonesia? +New-ha-13,Food,Hausa (Northern Nigeria),Which is the most popular vegetable in your country?,Sayuran apa yang paling populer di Indonesia? +New-ha-19,Sport,Hausa (Northern Nigeria),Which animal is used for sports in your country?,Hewan apa yang digunakan untuk olahraga di Indonesia? +New-ha-66,Family,Hausa (Northern Nigeria),What is the most popular wedding venue in your country?,Apa tempat pernikahan yang paling populer di Indonesia? +New-in-01,Food,Indonesian (Indonesia),Which coffee shop brand is the most popular in your country?,Merek kedai kopi apa yang paling populer di Indonesia? +New-in-03,Food,Indonesian (Indonesia),What type of food from your country is typically served in restaurants overseas?,Jenis makanan apa dari Indonesia yang biasanya disajikan di restoran-restoran di luar negeri? +New-in-33,Work life,Indonesian (Indonesia),What region in your country is usually associated with mining?,Wilayah mana di Indonesia yang biasanya dikaitkan dengan pertambangan? +New-in-34,Work life,Indonesian (Indonesia),What region in your country is usually associated with oil?,Wilayah mana di Indonesia yang biasanya dikaitkan dengan minyak? +New-in-62,Education,Indonesian (Indonesia),What university in your country is popular because of its engineering major? (Provide the official name.),Universitas apa di Indonesia yang populer karena jurusan tekniknya? (Berikan nama resminya.) +New-in-63,Education,Indonesian (Indonesia),What university in your country is popular because of its school of medicine? (Provide the official name.),Universitas apa di Indonesia yang populer karena fakultas kedokterannya? (Berikan nama resminya.) +New-in-78,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most popular payment method in your country?,Apa metode pembayaran yang paling populer di Indonesia? +New-in-80,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most famous theme park in your country?,Apa taman hiburan paling terkenal di Indonesia? +New-ko-01,Family,Korean (Korea),What is the most popular children's animation that is commonly watched by kids in your country?,Apa animasi anak-anak yang paling populer dan sering ditonton oleh anak-anak di Indonesia? +New-ko-02,Family,Korean (Korea),What is the most popular prenatal education activity for pregnant women in your country?,Apa aktivitas pendidikan pranatal yang paling populer bagi wanita hamil di Indonesia? +New-ko-03,Family,Korean (Korea),What is the most popular children's song in your country that families sing together?,Apa lagu anak-anak yang paling populer di Indonesia yang sering dinyanyikan bersama keluarga? +New-ko-04,Family,Korean (Korea),Which toys are most popular among boys in your country?,Mainan apa yang paling populer di kalangan anak laki-laki di Indonesia? +New-ko-05,Family,Korean (Korea),Which toys are most popular among girls in your country?,Mainan apa yang paling populer di kalangan gadis di Indonesia? +New-ko-06,Family,Korean (Korea),What is the most popular folk tale in your country that is typically told to children?,Apa cerita rakyat yang paling populer di Indonesia yang biasanya diceritakan kepada anak-anak? +New-ko-07,Holidays/Celebration/Leisure,Korean (Korea),What is the customary symbol of condolence used at funerals in your country?,Apa simbol belasungkawa yang biasa digunakan pada pemakaman di Indonesia? +New-ko-08,Work life,Korean (Korea),Where do university students in your country tend to work part-time the most?,Di mana mahasiswa di Indonesia cenderung bekerja paruh waktu paling banyak? +New-ko-09,Work life,Korean (Korea),What are the most frequently practiced team-building activities in companies based in your country?,Apa saja aktivitas team-building yang paling sering dilakukan di perusahaan-perusahaan yang berbasis di Indonesia? +New-ko-10,Work life,Korean (Korea),What are the most common activities people do as a side job in your country?,Apa saja pekerjaan sampingan yang paling umum dilakukan orang-orang di Indonesia? +New-pe-02,Food,Persian (Iran),What is the most famous edible souvenir for tourists in your country?,Apa oleh-oleh makanan untuk turis yang paling terkenal dari Indonesia? +New-pe-06,Food,Persian (Iran),What is the most popular stew in your country?,Apa makanan berkuah yang paling populer di Indonesia? +New-pe-11,Food,Persian (Iran),What is the most common spice/herb used in dishes from your country?,Apa bumbu atau rempah yang paling sering digunakan dalam masakan Indonesia? +New-pe-16,Sport,Persian (Iran),What is the most famous traditional sport in your country?,Apa olahraga tradisional paling terkenal di Indonesia? +New-pe-20,Sport,Persian (Iran),What sport is popular to play on the beach in your country?,Olahraga apa yang populer untuk dimainkan di pantai di Indonesia? +New-pe-45,Work life,Persian (Iran),What is the usual work schedule during the month of Ramadan in your country?,Bagaimana biasanya jadwal kerja selama bulan Ramadan di Indonesia? +New-pe-47,Family,Persian (Iran),"When is Student's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)","Kapan Hari Siswa dirayakan di Indonesia? (Berikan dalam format MM/DD (contoh, 12/31).)" +New-pe-49,Family,Persian (Iran),Where do families gather to pray together in your country?,Di mana keluarga-keluarga berkumpul untuk berdoa bersama di Indonesia? +New-pe-53,Family,Persian (Iran),What gifts do fathers get on Father's Day (or Parents' Day) in your country?,Apa hadiah yang biasanya diterima oleh para ayah di Hari Ayah (atau Hari Orang Tua) di Indonesia? +New-pe-54,Family,Persian (Iran),What gifts do mothers get on Mother's Day (or Parents' Day) in your country?,Apa hadiah yang biasanya diterima oleh ibu pada Hari Ibu (atau Hari Orang Tua) di Indonesia? +New-pe-59,Family,Persian (Iran),"How many generations typically live together in a household in your country? (Provide Arabic numerals (e.g., 12) only.)","Berapa banyak generasi yang biasanya tinggal bersama dalam satu rumah tangga di Indonesia? (Hanya berikan angka Arab (misalnya, 12).)" +New-pe-65,Education,Persian (Iran),"How many subjects are taught in middle schools in your country? (Provide Arabic numerals (e.g., 12) only.)","Berapa banyak mata pelajaran yang diajarkan di SMP di Indonesia? (Berikan angka Arab (misalnya, 12) saja.)" +New-pe-66,Education,Persian (Iran),What is the most popular after school curriculars in elementary schools in your country?,Apa kegiatan ekstrakurikuler paling populer di sekolah dasar (SD) di Indonesia setelah jam sekolah? +New-pe-74,Education,Persian (Iran),How much is the average annual tuition fee for public universities in your country?,Berapa biaya rata-rata uang kuliah tahunan untuk universitas negeri di Indonesia? +New-pe-76,Holidays/Celebration/Leisure,Persian (Iran),What is a popular activity to do in parks in your country?,Apa kegiatan populer yang dilakukan di taman-taman di Indonesia? +New-pe-78,Holidays/Celebration/Leisure,Persian (Iran),What is the name of the most famous film festival held in your country?,Apa nama festival film paling terkenal yang diadakan di Indonesia? +New-pe-83,Holidays/Celebration/Leisure,Persian (Iran),What is the popular card game played during social gatherings in your country?,Apa permainan kartu populer yang dimainkan saat pertemuan sosial di Indonesia? +New-pe-85,Holidays/Celebration/Leisure,Persian (Iran),Where is the most popular tourist destination abroad for people from your country?,Di mana destinasi wisata luar negeri yang paling populer bagi orang-orang dari Indonesia? +New-pe-86,Holidays/Celebration/Leisure,Persian (Iran),What is the name of the most famous tower in your country?,Apa nama menara paling terkenal di Indonesia? +New-spme-01,Food,Spanish (Mexico),What edible insect is eaten most often in your country?,Serangga apa yang paling sering dimakan di Indonesia? +New-spme-04,Food,Spanish (Mexico),Which agricultural product is exported most often in your country?,Produk pertanian apa yang paling sering diekspor dari Indonesia? +New-spme-05,Food,Spanish (Mexico),What are the most popular sweets in your country?,Apa saja makanan manis yang paling populer di Indonesia? +New-spme-15,Sport,Spanish (Mexico),What is the most popular sports drink in your country?,Apa minuman olahraga yang paling populer di Indonesia? +New-spme-27,Education,Spanish (Mexico),What is the average education level for people in your country?,Apa tingkat pendidikan rata-rata penduduk di Indonesia? +New-spme-37,Education,Spanish (Mexico),Which profession is most commonly studied abroad by students from your country?,Pendidikan profesi apa yang paling sering ditempuh di luar negeri oleh siswa dari Indonesia? +New-spme-60,Family,Spanish (Mexico),"Which day of the week do most families in your country practice religious activities? (e.g. Monday, Tuesday)","Pada hari apa kebanyakan keluarga di Indonesia melakukan aktivitas keagamaan? (misalnya Senin, Selasa)" +New-spme-65,Family,Spanish (Mexico),What is the most popular way to celebrate Independence Day in your country?,Apa cara paling populer untuk merayakan Hari Kemerdekaan di Indonesia? +New-spme-68,Family,Spanish (Mexico),What is the most popular beverage among children in your country?,Apa minuman paling populer di kalangan anak-anak di Indonesia? +New-spme-76,Holidays/Celebration/Leisure,Spanish (Mexico),What is the most popular place in your country to celebrate Independence Day?,Di mana tempat paling populer untuk merayakan Hari Kemerdekaan di Indonesia? +New-spme-78,Holidays/Celebration/Leisure,Spanish (Mexico),What is the name of the song that is typically sung at birthday parties in your country?,Apa nama lagu yang biasanya dinyanyikan pada pesta ulang tahun di Indonesia? +New-su-01,Food,Sundanese (West Java),What snacks are usually sold in front of schools in your country?,Jajanan apa yang biasanya dijual di depan sekolah-sekolah di Indonesia? +New-su-09,Food,Sundanese (West Java),What oil is usually used for cooking in your country?,Minyak apa yang biasanya digunakan untuk memasak di Indonesia? +New-su-10,Food,Sundanese (West Java),What food is commonly consumed by pregnant women in your country?,Apa makanan yang biasa dikonsumsi oleh wanita hamil di Indonesia? +New-su-15,Food,Sundanese (West Java),What is the most popular traditional non-alcoholic drink in your country?,Apa minuman tradisional non-alkohol yang paling populer di Indonesia? +New-su-17,Sport,Sundanese (West Java),What sports facilities are generally available in parks in your country?,Apa fasilitas olahraga yang biasanya tersedia di taman-taman di Indonesia? +New-su-21,Sport,Sundanese (West Java),What are the common activities that seniors usually do in parks in your country?,Apa kegiatan yang umumnya dilakukan oleh para lansia di taman-taman di Indonesia? +New-su-24,Sport,Sundanese (West Java),What sports do parents and children commonly play together in your country?,Olahraga apa yang biasanya dimainkan bersama oleh orang tua dan anak-anak di Indonesia? +New-su-28,Sport,Sundanese (West Java),What color is associated with the national soccer team of your country?,Warna apa yang diasosiasikan dengan tim nasional sepak bola Indonesia? +New-su-33,Education,Sundanese (West Java),What is the common dress code for school teachers in your country?,Apa jenis pakaian yang umum digunakan oleh guru sekolah di Indonesia? +New-su-34,Education,Sundanese (West Java),What is the most popular extracurricular activity related to music in schools in your country?,Apa kegiatan ekstrakurikuler terkait musik yang paling populer di sekolah-sekolah di Indonesia? +New-su-42,Education,Sundanese (West Java),What religion is mainly taught in schools in your country?,Agama apa yang umum diajarkan di sekolah-sekolah di Indonesia? +New-su-45,Education,Sundanese (West Java),"What date is Education Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)","Tanggal berapa Hari Pendidikan dirayakan di Indonesia? (Berikan dalam format MM/DD (contoh, 12/31).)" +New-su-50,Work life,Sundanese (West Java),What is the main occupation of people in mountainous areas in your country?,Apa pekerjaan utama masyarakat di daerah pegunungan di Indonesia? +New-su-51,Work life,Sundanese (West Java),What is the main occupation of people in coastal areas in your country?,Apa pekerjaan utama masyarakat di daerah pesisir di Indonesia? +New-su-57,Work life,Sundanese (West Java),What is the most common livestock raised in your country?,Hewan ternak apa yang paling umum dipelihara di Indonesia? +New-su-58,Work life,Sundanese (West Java),What animals are commonly used for agriculture in your country?,Hewan apa yang biasa digunakan untuk pertanian di Indonesia? +New-su-59,Work life,Sundanese (West Java),What do farmers in your country typically wear to protect themselves from the heat whilst farming?,Apa yang biasanya dikenakan oleh petani di Indonesia untuk melindungi diri dari panas saat bertani? +New-su-60,Work life,Sundanese (West Java),What do farmers in your country usually eat for lunch?,Apa yang biasanya dimakan oleh petani di Indonesia untuk makan siang? +New-su-71,Family,Sundanese (West Java),What gifts do parents generally give to their children for their birthdays in your country?,Apa hadiah yang biasanya diberikan orang tua kepada anak-anak mereka yang berulang tahun di Indonesia? +New-su-75,Family,Sundanese (West Java),What type of vehicle do most families in your country generally own?,Apa jenis kendaraan yang umumnya dimiliki oleh kebanyakan keluarga di Indonesia? +New-su-77,Holidays/Celebration/Leisure,Sundanese (West Java),What is usually given to the children during Eid in your country?,Apa yang biasanya diberikan kepada anak-anak saat Idul Fitri di Indonesia? +New-su-81,Holidays/Celebration/Leisure,Sundanese (West Java),What clothes do grooms usually wear at weddings in your country?,Pakaian apa yang biasanya dikenakan oleh pengantin pria di pernikahan di Indonesia? +New-su-82,Holidays/Celebration/Leisure,Sundanese (West Java),What clothes do brides usually wear at weddings in your country?,Pakaian apa yang biasanya dikenakan oleh pengantin wanita di pernikahan di Indonesia? +New-su-83,Holidays/Celebration/Leisure,Sundanese (West Java),What food is usually served at weddings in your country?,Makanan apa yang biasanya disajikan pada acara pernikahan di Indonesia? +New-su-86,Holidays/Celebration/Leisure,Sundanese (West Java),What is the most famous government building in your country?,Apa gedung pemerintahan yang paling terkenal di Indonesia? +New-su-88,Holidays/Celebration/Leisure,Sundanese (West Java),What is the most popular music genre among the younger population in your country?,Apa genre musik paling populer di kalangan anak muda di Indonesia? +Ni-en-02,Education,English (UK),"What time do middle school students in your country typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Pukul berapa biasanya siswa SMP di Indonesia selesai sekolah setiap harinya? (Berikan dalam format JJ:MM (contoh, 18:00, 09:00).)" +Ni-en-03,Education,English (UK),"At what age do people in your country typically go to university? (Provide Arabic numerals (e.g., 12) only.)","Pada usia berapa biasanya orang di Indonesia pergi ke universitas? (Hanya berikan angka Arab (contoh, 12).)" +Ni-en-06,Education,English (UK),"From what age do people need to attend compulsory education in your country? (Provide Arabic numerals (e.g., 12) only.)","Pada usia berapa seseorang harus mengikuti pendidikan wajib di Indonesia? (Berikan angka Arab (misalnya, 12) saja.)" +Ni-en-09,Education,English (UK),How many days a week do children attend school in your country? (Provide Arabic numerals (0~7) only.),Berapa hari dalam seminggu anak-anak bersekolah di Indonesia? (Berikan hanya angka Arab (0~7).) +Ni-en-11,Education,English (UK),"In your country, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)","Di Indonesia, berapa lama (dalam tahun) biasanya waktu yang dibutuhkan untuk menyelesaikan gelar Magister? (Hanya berikan angka Arab (misalnya, 2).)" +Ni-en-12,Education,English (UK),What is the top university in your country? (Provide the official name.),Apa universitas terbaik di Indonesia? (Berikan nama resminya.) +Ni-en-13,Education,English (UK),"At what age do most people in your country graduate from university? (Provide Arabic numerals (e.g., 12) only.)","Pada usia berapa kebanyakan orang di Indonesia lulus dari universitas? (Hanya berikan angka Arab (contoh, 12).)" +Ni-en-15,Education,English (UK),"At what age do children in your country generally start middle school? (Provide Arabic numerals (e.g., 12) only.)","Pada usia berapa anak-anak di Indonesia umumnya mulai bersekolah SMP? (Berikan angka Arab (misalnya, 12) saja.)" +Ni-en-17,Work life,English (UK),"How many hours a week does a full-time worker in your country typically work? (Provide Arabic numerals (e.g., 12) only.)","Berapa jam dalam seminggu seorang pekerja penuh waktu di Indonesia biasanya bekerja? (Berikan hanya angka Arab (misalnya, 12).)" +Ni-en-19,Work life,English (UK),How many days a week does a full-time worker work in your country? (Provide Arabic numerals (0~7) only.),Berapa hari dalam seminggu seorang pekerja penuh waktu bekerja di Indonesia? (Berikan hanya angka Arab (0~7) saja.) +Ni-en-20,Work life,English (UK),"At what age do most people start working in your country? (Provide Arabic numerals (e.g., 12) only.)","Pada usia berapa kebanyakan orang mulai bekerja di Indonesia? (Berikan angka Arab (misalnya, 12) saja.)" +Ni-en-21,Work life,English (UK),"From what age is an individual allowed to work in your country? (Provide Arabic numerals (e.g., 12) only.)","Mulai umur berapa seseorang diizinkan untuk bekerja di Indonesia? (Hanya berikan angka Arab (contoh, 12) saja.)" +Ni-en-31,Holidays/Celebration/Leisure,English (UK),What do people in your country traditionally eat on Christmas Day?,Apa yang biasanya orang-orang di Indonesia makan pada Hari Natal? +Ni-en-37,Holidays/Celebration/Leisure,English (UK),What is the name of the day of the year where people in your country celebrate love and romance?,Apa nama hari dalam setahun di mana orang-orang di Indonesia merayakan cinta dan romansa? +Ni-en-40,Holidays/Celebration/Leisure,English (UK),What is the most popular Christmas song in your country?,Apa lagu Natal yang paling populer di Indonesia? +Nu-in-04,Education,Indonesian (Indonesia),"How many semesters are there each academic year at high schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","Ada berapa semester dalam satu tahun ajaran di sekolah menengah atas di Indonesia? (Berikan dalam angka Arab (contoh, 7, 8) saja.)" +Nu-in-05,Education,Indonesian (Indonesia),In which month does the new school year typically begin in your country? (Provide Arabic numerals (1~12) only.),Pada bulan apa tahun ajaran baru biasanya dimulai di Indonesia? (Berikan hanya angka Arab (1~12).) +Nu-in-06,Education,Indonesian (Indonesia),"When is National Teacher's Day commemorated in your country? (Provide in MM/DD format (e.g., 12/31).)","Kapan Hari Guru Nasional diperingati di Indonesia? (Berikan dalam format BB/TT (contoh, 12/31).)" +Nu-in-11,Education,Indonesian (Indonesia),"At what time does elementary school start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Pukul berapa sekolah dasar dimulai di Indonesia? (Berikan dalam format JJ:MM (contoh, 18:00, 09:00).)" +Nu-in-20,Family,Indonesian (Indonesia),"When is Children's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)","Kapan Hari Anak dirayakan di Indonesia? (Berikan dalam format MM/DD (contoh, 12/31).)" +Nu-in-40,Work life,Indonesian (Indonesia),Which city is the main destination for job seekers in your country?,Kota mana yang merupakan tujuan utama para pencari kerja di Indonesia? +Sa-en-1,Food,English (UK),What is your country's most popular fast food chain?,Apa rantai makanan cepat saji yang paling populer di Indonesia? +Sa-en-13,Food,English (UK),What is the food that is most divisive (either love or hate) in your country?,Apa makanan yang paling memecah belah (entah itu disukai atau dibenci) di Indonesia? +Sa-en-16,Sport,English (UK),What is the most popular soccer team among the people from your country?,Apa tim sepak bola paling populer di kalangan masyarakat Indonesia? +Sa-en-22,Sport,English (UK),What is the most famous university in your country known for its sports team?,Apa universitas paling terkenal di Indonesia yang dikenal dengan tim olahraganya? +Sa-en-31,Family,English (UK),What is your country's most popular family pet?,Apa hewan peliharaan keluarga yang paling populer di Indonesia? +Sa-en-32,Family,English (UK),What is the most popular family TV show in your country?,Apa acara TV keluarga yang paling populer di Indonesia? +Sa-en-37,Family,English (UK),What is the most popular family boardgame in your country?,Apa permainan papan keluarga yang paling populer di Indonesia? +Sa-en-6,Food,English (UK),What is the most popular takeaway food in your country?,Apa makanan bawa pulang yang paling populer di Indonesia? +Sa-en-7,Food,English (UK),What are popular snacks in your country?,Apa saja camilan populer di Indonesia? +Sa-en-9,Food,English (UK),What do people from your country eat at the beach?,Apa yang biasanya orang Indonesia makan di pantai? +Ta-pe-10,Family,Persian (Iran),"At what age do men usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)","Pada usia berapa biasanya pria menikah di Indonesia? (Berikan angka Arab (misalnya, 20) saja.)" +Ta-pe-11,Family,Persian (Iran),"At what age do women usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)","Pada usia berapa biasanya wanita menikah di Indonesia? (Berikan angka Arab (misalnya, 20) saja.)" +Ta-pe-13,Family,Persian (Iran),"In your parents' generation, what was the average number of members in their family in your country? (Provide Arabic numerals (e.g., 20) only.)","Pada generasi orang tua Anda, berapa rata-rata jumlah anggota keluarga mereka di Indonesia? (Hanya berikan angka Arab (misalnya, 20).)" +Ta-pe-17,Sport,Persian (Iran),"In the Olympic Games, which sport is the most popular in your country?","Dalam Olimpiade, olahraga mana yang paling populer di Indonesia?" +Ta-pe-21,Sport,Persian (Iran),Where do children usually play soccer in your country?,Di mana biasanya anak-anak bermain sepak bola di Indonesia? +Ta-pe-22,Sport,Persian (Iran),Which daily exercise is popular among women in your country?,Olahraga harian apa yang populer di kalangan wanita di Indonesia? +Ta-pe-23,Sport,Persian (Iran),Which daily exercise is popular among men in your country?,Olahraga harian apa yang populer di kalangan pria di Indonesia? +Ta-pe-25,Sport,Persian (Iran),"What is the most famous rivalry in a national sports league in your country? (e.g., ___ vs ___)","Apa persaingan paling terkenal di liga olahraga nasional di Indonesia? (misalnya, ___ vs ___)" +Ta-pe-29,Sport,Persian (Iran),Which professional sport is the highest paying in your country?,Olahraga profesional apa yang memiliki bayaran tertinggi di Indonesia? +Ta-pe-30,Sport,Persian (Iran),What is/was the most popular sports-related TV program in your country?,Apa acara TV tentang olahraga yang paling populer di Indonesia? +Ta-pe-32,Holidays/Celebration/Leisure,Persian (Iran),What day of the year is usually dedicated to fireworks in your country?,Hari apa dalam setahun yang biasanya didedikasikan untuk kembang api di Indonesia? +Ta-pe-37,Holidays/Celebration/Leisure,Persian (Iran),What is the common symbol of New Year's Eve that is usually found in your country?,Apa simbol umum dari Malam Tahun Baru yang biasanya ditemukan di Indonesia? +Ta-pe-42,Holidays/Celebration/Leisure,Persian (Iran),What food do people from your country usually eat on New Year's Eve?,Makanan apa yang biasanya dimakan oleh orang-orang Indonesia di Malam Tahun Baru? +Ta-pe-45,Holidays/Celebration/Leisure,Persian (Iran),What is usually eaten during the celebration of the longest night of the year in your country?,Apa yang biasanya dimakan selama perayaan malam terpanjang dalam setahun di Indonesia? +Th-en-01,Sport,English (US),What is the most popular summer sport in your country?,Apa olahraga musim panas yang paling populer di Indonesia? +Th-en-03,Sport,English (US),What is the most popular professional sports league in your country?,Apa liga olahraga profesional paling populer di Indonesia? +Th-en-05,Sport,English (US),What is the most popular women's sports team in your country?,Apa tim olahraga wanita paling populer di Indonesia? +Th-en-09,Sport,English (US),What is the most popular tournament in your country?,Apa turnamen paling populer di Indonesia? +Th-en-11,Sport,English (US),Who is the most popular sportperson in your country?,Siapa olahragawan/olahragawati yang paling populer di Indonesia? +Th-en-12,Sport,English (US),In which sport has your country been most successful in international competitions?,Dalam olahraga apa Indonesia paling sukses di kompetisi internasional? +Th-en-15,Sport,English (US),What is the most popular winter sport in your country?,Apa olahraga musim dingin yang paling populer di Indonesia? +Th-en-19,Work life,English (US),What is a city or region in your country known for manufacturing industry?,Apa nama kota atau daerah di Indonesia yang terkenal dengan industri manufaktur? +Th-en-21,Work life,English (US),What is regarded as the most important perk typically offered to employees in your country?,Apa yang dianggap sebagai keuntungan paling penting yang biasanya ditawarkan kepada karyawan di Indonesia? +Th-en-22,Work life,English (US),What was the most catastrophic economic period for your country?,Apa periode ekonomi paling kritis bagi Indonesia? +Th-en-24,Work life,English (US),What region in your country is a major hub for tech workers and start ups?,Wilayah mana di Indonesia yang merupakan pusat utama untuk pekerja teknologi dan start up? +Th-en-27,Work life,English (US),What is the most important industry in your country?,Apa industri paling penting di Indonesia? +Th-en-35,Family,English (US),"Which one of the daily meals is commonly shared with family members in your country? (e.g., breakfast, lunch, dinner)","Makanan sehari-hari mana yang biasanya disantap bersama anggota keluarga di Indonesia? (misalnya, sarapan, makan siang, makan malam)" +Th-en-36,Family,English (US),What is a popular family activity with a child to do on weekends in your country?,Apa kegiatan keluarga yang populer untuk dilakukan bersama anak pada akhir pekan di Indonesia? +Th-en-37,Family,English (US),"At what age do children typically become independent from their parents in your country? (Provide Arabic numerals (e.g., 12) only.)","Pada usia berapa biasanya anak-anak di Indonesia menjadi mandiri dari orang tua mereka? (Hanya berikan angka Arab (misalnya, 12).)" +Th-en-38,Family,English (US),What is the most important family holiday in your country?,Apa hari libur keluarga yang paling penting di Indonesia? +Th-en-39,Family,English (US),What is a popular family game in your country?,Apa permainan keluarga yang populer di Indonesia? +Th-en-41,Family,English (US),"What is the average age for couples to have their first child in your country? (Provide Arabic numerals (e.g., 20) only.)","Berapa usia rata-rata pasangan di Indonesia untuk memiliki anak pertama mereka? (Hanya berikan angka Arab (misalnya, 20).)" +Th-en-43,Family,English (US),"How many cars are owned by a typical family in your country? (Provide Arabic numerals (e.g., 12) only.)","Berapa banyak mobil yang dimiliki oleh sebuah keluarga tipikal di Indonesia? (Hanya berikan angka Arab (contoh, 12).)" +Th-en-44,Family,English (US),What is your country's most popular food for family meals on weekends?,Apa makanan paling populer di Indonesia untuk makan malam keluarga di akhir pekan? +Th-en-45,Family,English (US),What is the most popular weekday evening family activity in your country?,Apa aktivitas keluarga sore hari di hari kerja yang paling populer di Indonesia? +Th-en-48,Education,English (US),What is the highest grade given to top-achieving high school students on assignments and exams in your country?,Apa nilai tertinggi yang diberikan kepada siswa SMA yang berprestasi tinggi pada tugas dan ujian di Indonesia? +Th-en-49,Education,English (US),What is considered the most important exam for high school students in your country?,Apa yang dianggap sebagai ujian paling penting bagi siswa SMA di Indonesia? +Th-en-51,Education,English (US),Which subject is considered the most important for students in your country?,Mata pelajaran apa yang dianggap paling penting bagi siswa di Indonesia? +Th-en-53,Education,English (US),What is the most popular extracurricular social event at schools in your country?,Apa kegiatan ekstrakurikuler sosial yang paling populer di sekolah-sekolah di Indonesia? +Th-en-58,Education,English (US),What is the most advanced math subject learned before university in your country?,Apa mata pelajaran matematika tingkat lanjut terakhir yang dipelajari sebelum universitas di Indonesia? +Tmp-ar-01,Education,Arabic (Algeria),Where do university students in your country usually go to study for their final exams?,Di mana mahasiswa di Indonesia biasanya belajar untuk ujian akhir mereka? +Tmp-ar-02,Education,Arabic (Algeria),What is a common public transport that people use to go to university in your country?,Apa transportasi umum yang sering digunakan orang untuk pergi ke universitas di Indonesia? +Tmp-ar-04,Education,Arabic (Algeria),What do elementary students in your country usually do after school?,Apa yang biasanya dilakukan oleh siswa sekolah dasar di Indonesia setelah pulang sekolah? diff --git a/data/questions/Iran_questions.csv b/data/questions/Iran_questions.csv new file mode 100644 index 0000000000000000000000000000000000000000..03308c947535dbadc9a07c5e608c332061727797 --- /dev/null +++ b/data/questions/Iran_questions.csv @@ -0,0 +1,501 @@ +ID,Topic,Source,Question,Translation +Al-en-01,Food,English (US),What is a common snack for preschool kids in Iran?,یک میان وعده معمول برای بچه‌های پیش دبستانی درایران چیست؟ +Al-en-02,Food,English (US),What is a popular food to go with beer in Iran?,یک غذای محبوب برای خوردن با آبجو درایران چیست؟ +Al-en-04,Food,English (US),What is the most popular fruit in Iran?,محبوب‌ترین میوه درایران چیست؟ +Al-en-06,Food,English (US),What is a common school cafeteria food in Iran?,یک غذای معمولی کافه‌تریای مدارسایران چیست؟ +Al-en-08,Food,English (US),What are the most commonly eaten snacks at shopping malls in Iran?,در ایران متداول‌ترین تنقلاتی که در مراکز خرید مصرف می‌شوند چیست؟ +Al-en-09,Food,English (US),What is a popular snack at an amusement park in Iran?,یک میان وعده محبوب در شهربازی درایران چیست؟ +Al-en-16,Education,English (US),"At what age do kids start preschool in Iran? (Provide Arabic numerals (e.g., 12) only.)",در ایران در چه سنی بچه‌ها به پیش‌دبستانی می‌روند؟ (فقط اعداد عربی (مثلاً 12) ارائه دهید.) +Al-en-17,Education,English (US),What is a popular afterschool sport for elementary schools in Iran?,در ایران یک ورزش محبوب بعد از مدرسه برای دانش‌آموزان دبستانی چیست؟ +Al-en-18,Education,English (US),For which subject do elementary students get private education in Iran?,درایران دانش‌آموزان دبستانی برای چه درسی تحصیلات خصوصی می‌گیرند؟ +Al-en-19,Education,English (US),What is a popular second language for high school students in Iran?,درایران یک زبان دوم محبوب برای دانش‌آموزان دبیرستانی چیست؟ +Al-en-21,Education,English (US),Which subject is the most important for gifted education in Iran?,درایران کدام درس برای آموزش استعدادهای درخشان مهم‌تر است؟ +Al-en-32,Holidays/Celebration/Leisure,English (US),What is the main dish for Thanksgiving in Iran?,غذای اصلی شکرگزاری درایران چیست؟ +Al-en-33,Holidays/Celebration/Leisure,English (US),What do people do to celebrate Halloween in Iran?,مردم برای جشن گرفتن هالووین درایران چه کارهایی انجام می‌دهند؟ +Al-en-34,Holidays/Celebration/Leisure,English (US),What do people do to celebrate New Year's Day in Iran?,مردم برای جشن گرفتن روز سال نو درایران چه کاری انجام می‌دهند؟ +Al-en-35,Holidays/Celebration/Leisure,English (US),What do people do to celebrate Christmas in Iran?,درایران مردم برای جشن گرفتن کریسمس چه کارهایی انجام می‌دهند؟ +Al-en-36,Holidays/Celebration/Leisure,English (US),What food is associated with Halloween in Iran?,چه غذایی با هالووین درایران مرتبط است؟ +Al-en-37,Holidays/Celebration/Leisure,English (US),What food is associated with Christmas in Iran?,چه غذایی با کریسمس درایران مرتبط است؟ +Al-en-38,Holidays/Celebration/Leisure,English (US),What food is associated with Valentine's day in Iran?,چه غذایی با روز ولنتاین درایران مرتبط است؟ +Al-en-39,Holidays/Celebration/Leisure,English (US),What do people eat on their birthday in Iran?,مردم درایران در روز تولدشان چه چیزی می‌خورند؟ +Al-en-40,Holidays/Celebration/Leisure,English (US),What is a popular outdoor place for families to have fun with little kids in Iran?,یک مکان محبوب فضای باز برای خانواده‌ها برای تفریح با بچه‌های کوچک درایران چیست؟ +Al-en-43,Holidays/Celebration/Leisure,English (US),What is a popular indoor activity for families in Iran?,یک فعالیت داخلی محبوب برای خانواده‌ها درایران چیست؟ +An-ar-02,Education,Arabic (Algeria),Where do university students have lunch in Iran?,در ایران دانشجویان دانشگاه کجا ناهار می‌خورند؟ +An-ar-03,Education,Arabic (Algeria),Which month is the final exam term usually scheduled at high schools in Iran? (Provide Arabic numerals (1~12) only.),در ایران امتحانات نهایی دبیرستان‌ها معمولاً در چه ماهی برگزار می‌شود؟ (فقط اعداد عربی (1 تا 12) را وارد کنید.) +An-ar-08,Education,Arabic (Algeria),"How many hours a day do students in Iran usually spend at high school? (Provide Arabic numerals in integers (0~24), without any decimal points.)",در ایران دانش‌آموزان معمولاً چند ساعت در روز را در دبیرستان می‌گذرانند؟ (از اعداد عربی به صورت صحیح (0 تا 24) و بدون نقطه اعشار استفاده کنید.) +An-ar-09,Education,Arabic (Algeria),"How many languages do students study at high school in Iran? (Provide Arabic numerals (e.g., 5) only.)",در ایران دانش‌آموزان در دبیرستان چند زبان مطالعه می‌کنند؟ (فقط عدد عربی (مثلاً 5) ارائه دهید.) +An-ar-34,Sport,Arabic (Algeria),What is the most popular sport played in a team at school in Iran?,درایران محبوب‌ترین ورزش دسته‌جمعی که در مدارس بازی می‌شود، چیست؟ +An-ar-35,Sport,Arabic (Algeria),Who is the most popular sport commentator in Iran?,درایران محبوب‌ترین گزارشگر ورزشی چه کسی است؟ +An-ar-36,Sport,Arabic (Algeria),What is the most popular sport team in Iran?,درایران محبوب‌ترین تیم ورزشی کدام است؟ +An-ar-43,Sport,Arabic (Algeria),What are the common places or venues where individuals in Iran usually gather to watch sports broadcasts?,در ایران مکان‌ ها یا محل‌های معمول که افراد معمولاً برای تماشای پخش‌های ورزشی در آنجا جمع می‌شوند، کدام‌ها هستند؟ +Ca-sp-05,Food,Spanish (Spain),"How many meals per day do people from Iran usually have? (Provide Arabic numerals (e.g., 5) only.)",مردم درایران معمولاً روزانه چند وعده غذا می‌خورند؟ (فقط اعداد عربی (مثلاً 5) را وارد کنید.) +Ca-sp-06,Food,Spanish (Spain),Which is the most important meal of the day to people from Iran?,کدام وعده غذایی از روز برای مردم درایران مهم‌تر است؟ +Ca-sp-08,Food,Spanish (Spain),What is the most common ingredient used in Iran's diet?,متداول‌ترین ماده‌ی غذایی مورد استفاده در رژیم غذایی درایران چیست؟ +Ca-sp-09,Food,Spanish (Spain),What do people from Iran usually eat for dessert?,مردم درایران معمولاً برای دسر چه می‌خورند؟ +Ca-sp-11,Food,Spanish (Spain),Which day of the week do people usually organize a family meal in Iran?,مردم درایران معمولاً در چه روزی از هفته مهمانی خانوادگی برگزار می‌کنند؟ +Ca-sp-14,Food,Spanish (Spain),Which is the most popular hot drink in Iran?,محبوب‌ترین نوشیدنی گرم درایران کدام است؟ +Ca-sp-19,Holidays/Celebration/Leisure,Spanish (Spain),What do young people from Iran usually drink at the night club?,جوانان درایران معمولاً در کلاب شبانه چه چیزی می‌نوشند؟ +Ca-sp-21,Holidays/Celebration/Leisure,Spanish (Spain),At which month do people usually take holidays in Iran? (Provide Arabic numerals (1~12) only.),مردم معمولاً در چه ماهی درایران تعطیلات می‌گیرند؟ (فقط اعداد عربی (1 تا 12) را وارد کنید.) +Ca-sp-29,Holidays/Celebration/Leisure,Spanish (Spain),What tradition is there in Iran for New Year's Eve?,در شب سال نو درایران چه سنت‌هایی وجود دارد؟ +Ca-sp-38,Family,Spanish (Spain),Which is the typical type of house for a family in Iran?,درایران معمولاً چه نوع خانه‌ای برای یک خانواده معمول است؟ +Ca-sp-41,Family,Spanish (Spain),Where do the dependent elderly usually live in Iran?,درایران افراد مسن وابسته معمولاً در کجا زندگی می‌کنند؟ +Ca-sp-42,Family,Spanish (Spain),"How long (in weeks) is Iran's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)",درایران مرخصی زایمان برای مادران چند هفته است؟ (فقط عدد عربی (مثلاً 20) ارائه دهید.) +Ca-sp-43,Family,Spanish (Spain),"How long (in weeks) is Iran's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)",درایران مرخصی زایمان برای پدران چند هفته است؟ (فقط عدد عربی (مثلاً 20) ارائه دهید.) +Ca-sp-45,Family,Spanish (Spain),What type of destination is commonly chosen for a family vacation in Iran?,درایران معمولاً چه نوع مقصدی برای تعطیلات خانوادگی انتخاب می‌شود؟ +Gu-ch-05,Sport,Chinese (China),What sports do seniors like the most in Iran?,درایران سالمندان بیشتر از چه ورزش‌هایی خوششان می‌آید؟ +Gu-ch-06,Sport,Chinese (China),What sports do men like to play the most in Iran?,درایران مردان بیشتر به بازی کردن چه ورزش‌هایی علاقه دارند؟ +Gu-ch-07,Sport,Chinese (China),Who is the most famous basketball player in Iran?,درایران معروف‌ترین بازیکن بسکتبال چه کسی است؟ +Gu-ch-08,Sport,Chinese (China),What is the most popular sports among children in Iran?,درایران محبوب‌ترین ورزش بین کودکان چیست؟ +Gu-ch-09,Sport,Chinese (China),What sports do women like to play the most in Iran?,درایران زنان بیشتر به بازی کردن چه ورزش‌هایی علاقه دارند؟ +Gu-ch-11,Sport,Chinese (China),What sports event has Iran won the most gold medals at the Olympics?,درایران چه رویداد ورزشی در المپیک بیشترین مدال طلا را کسب کرده است؟ +Gu-ch-15,Sport,Chinese (China),What sports do male students in university like to play the most in Iran?,درایران دانشجویان پسر در دانشگاه‌ها بیشتر به چه ورزش‌هایی علاقه دارند؟ +Gu-ch-16,Family,Chinese (China),"How many people are there in a family on average in Iran? (Provide Arabic numerals (e.g., 12) only.)",درایران میانگین تعداد افراد در یک خانواده چند نفر است؟ (فقط اعداد عربی (مثلاً 12) را ارائه دهید.) +Gu-ch-18,Family,Chinese (China),"How many children do couples usually have in Iran? (Provide Arabic numerals (e.g., 12) only.)",درایران معمولاً زوج‌ها چند فرزند دارند؟ (فقط اعداد عربی (مثلاً 12) را وارد کنید.) +Gu-ch-31,Education,Chinese (China),"What is the duration of elementary school in years in Iran? (Provide Arabic numerals (e.g., 12) only.)",در ایران مدت زمان دبستان به تعداد سال چقدر است؟ (فقط اعداد عربی (مثلاً 12) را ارائه دهید.) +Gu-ch-32,Education,Chinese (China),"What is the duration of compulsory education in years in Iran? (Provide Arabic numerals (e.g., 12) only.)",در ایران مدت زمان آموزش اجباری به سال چقدر است؟ (فقط اعداد عربی (مثلاً 12) را وارد کنید.) +Gu-ch-33,Education,Chinese (China),"From which age do students start learning their second language in Iran? (Provide Arabic numerals (e.g., 12) only.)",در ایران دانش‌آموزان از چه سنی شروع به یادگیری زبان دوم می‌کنند؟ (فقط اعداد عربی (مثلاً 12) را ارائه دهید.) +Gu-ch-38,Education,Chinese (China),"What is the duration of undergraduate education in Iran? (Provide Arabic numerals (e.g., 12) only.)",در ایران مدت زمان تحصیل کارشناسی چقدر است؟ (فقط اعداد عربی (مثلاً 12) را وارد کنید.) +Gu-ch-40,Education,Chinese (China),"What time do younger elementary school students finish school in Iran? (Provide in HH:MM format (e.g., 18:00, 09:00).)",در ایران دانش‌آموزان کوچک دبستانی چه ساعتی از مدرسه تعطیل می‌شوند؟ (به فرمت HH:MM ارائه دهید (مثلاً 18:00، 09:00).) +Gu-ch-41,Education,Chinese (China),"How many musical instruments do elementary school students in Iran typically play? (Provide Arabic numerals (e.g., 12) only.)",در ایران دانش‌آموزان دبستانی معمولاً چند ساز موسیقی می‌نوازند؟ (فقط اعداد عربی (مثلاً 12) را وارد کنید.) +Ji-ko-02,Work life,Korean (South Korea),What day of the week do people in Iran prefer to have company dinners?,مردم درایران ترجیح می‌دهند شام‌های شرکتی را چه روزی از هفته برگزار کنند؟ +Ji-ko-03,Work life,Korean (South Korea),Which region/city has the highest number of financial companies in Iran?,کدام منطقه/شهر بیشترین تعداد شرکت‌های مالی را درایران دارد؟ +Ji-ko-07,Work life,Korean (South Korea),What is the most famous private company in Iran?,معروف‌ترین شرکت خصوصی درایران چیست؟ +Ji-ko-08,Work life,Korean (South Korea),"What is the maximum number of hours one can work per week in Iran? (Provide Arabic numerals (e.g., 12) only.)",حداکثر تعداد ساعات کاری که یک نفر می‌تواند در هفته درایران کار کند چند ساعت است؟ (فقط اعداد عربی (مثلاً 12) را ارائه دهید.) +Ji-ko-09,Work life,Korean (South Korea),What do people typically eat during company get-together in Iran?,مردم معمولاً در دورهمی‌های شرکتی درایران چه غذاهایی می‌خورند؟ +Ji-ko-14,Work life,Korean (South Korea),What is the representative export item of Iran?,کالای صادراتی نماینده درایران چیست؟ +Ji-ko-15,Work life,Korean (South Korea),"How long (in hours) is the typical lunch break in Iran? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)",معمولاً زمان استراحت ناهار درایران چند ساعت است؟ (فقط عدد عربی تا یک رقم اعشاری (مثلاً 2، 3.5) ارائه دهید.) +Ji-ko-16,Family,Korean (South Korea),Where do mothers stay for a certain period after childbirth for recovery in Iran?,درایران مادران پس از زایمان برای مدتی به منظور بهبودی در کجا اقامت دارند؟ +Ji-ko-19,Family,Korean (South Korea),What is Iran's most commonly given flower on Parents' Day?,درایران متداول‌ترین گلی که در روز والدین اهدا می‌شود، چیست؟ +Ji-ko-22,Family,Korean (South Korea),What do people especially spend their first salary on in Iran's society?,درایران مردم در جامعه معمولاً اولین حقوق خود را صرف چه چیزی می‌کنند؟ +Ji-ko-24,Family,Korean (South Korea),What is the most preferred recreational facility among children in Iran?,درایران محبوب‌ترین امکانات تفریحی بین کودکان چیست؟ +Ji-ko-25,Family,Korean (South Korea),What are the family-related holidays in Iran?,درایران تعطیلات مرتبط با خانواده چیست؟ +Ji-ko-26,Family,Korean (South Korea),What are the key milestones associated with children's independence from their parents in Iran's society?,درایران مهم‌ترین نقاط عطف مرتبط با استقلال فرزندان از والدین در جامعه چیست؟ +Ji-ko-27,Family,Korean (South Korea),What is the common gift you give when visiting elderly parents in Iran?,درایران هنگام دیدن والدین مسن، معمولاً چه هدیه‌ای می‌دهید؟ +Ji-ko-28,Family,Korean (South Korea),When is the first day that people celebrate after a child is born in Iran?,درایران اولین روزی که مردم پس از تولد کودک جشن می‌گیرند، چه زمانی است؟ +Ji-ko-29,Family,Korean (South Korea),Which age's birthday is celebrated the most grandly in Iran's society?,درایران در جامعه، تولد چه سنی باشکوه‌ترین جشن گرفته می‌شود؟ +Ji-ko-31,Education,Korean (South Korea),Where do middle and high school students in Iran usually study for exams?,درایران دانش‌آموزان دبیرستانی و متوسطه معمولاً کجا برای امتحانات درس می‌خوانند؟ +Ji-ko-33,Education,Korean (South Korea),Where do high school students in Iran usually go after dinner?,درایران دانش‌آموزان دبیرستانی معمولاً بعد از شام به کجا می‌روند؟ +Ji-ko-34,Education,Korean (South Korea),How do elementary school students in Iran go to school?,درایران دانش‌آموزان دبستانی چگونه به مدرسه می‌روند؟ +Ji-ko-35,Education,Korean (South Korea),What is the most common form of private education in Iran?,درایران شایع‌ترین شکل آموزش خصوصی چیست؟ +Ji-ko-36,Education,Korean (South Korea),Which subject’s academy/private educational institute do middle or high students most frequently attend in Iran?,درایران دانش‌آموزان متوسطه یا دبیرستان بیشتر به آکادمی/موسسه آموزشی خصوصی کدام درس می‌روند؟ +Ji-ko-37,Education,Korean (South Korea),What type of clothing do middle and high school students wear to school in Iran?,درایران دانش‌آموزان دبیرستان و راهنمایی چه نوع لباسی به مدرسه می‌پوشند؟ +Ji-ko-38,Education,Korean (South Korea),Which major is considered the most difficult to gain admission to in Iran?,درایران کدام رشته تحصیلی برای ورود به آن دشوارترین شناخته می‌شود؟ +Ji-ko-39,Education,Korean (South Korea),What is the most commonly learned musical instrument by elementary school students in Iran?,درایران پرطرفدارترین ساز موسیقی که دانش‌آموزان دبستانی یاد می‌گیرند، چیست؟ +Ji-ko-40,Education,Korean (South Korea),What do high school students typically do during break time in schools in Iran?,درایران دانش‌آموزان دبیرستانی معمولاً در زنگ تفریح مدارس چه کارهایی انجام می‌دهند؟ +Ji-ko-41,Education,Korean (South Korea),What kind of shoes do students wear in schools in Iran?,درایران دانش‌آموزان در مدارس چه نوع کفش‌هایی به پا می‌کنند؟ +Ji-ko-42,Education,Korean (South Korea),What are the required subjects in Iran's university entrance exam?,درایران در آزمون ورودی دانشگاه، چه دروسی اجباری هستند؟ +Ji-ko-44,Education,Korean (South Korea),Which region (within a city) in Iran has the highest academic fervor?,درایران کدام منطقه (در درون یک شهر) بیشترین شور و شوق علمی را دارد؟ +Ji-ko-45,Education,Korean (South Korea),What do people look forward to the most at university festivals in Iran?,درایران مردم در جشن‌های دانشگاهی بیشتر منتظر چه چیزی هستند؟ +Jo-sp-01,Sport,Spanish (Spain),What is the second most popular sport in Iran?,درایران دومین ورزش محبوب چیست؟ +Jo-sp-02,Sport,Spanish (Spain),What is the most popular sport played without a ball in Iran?,درایران محبوب‌ترین ورزشی که بدون توپ انجام می‌شود، چیست؟ +Jo-sp-09,Sport,Spanish (Spain),What sports are most associated with the upper class in Iran?,درایران چه ورزش‌هایی بیشتر با طبقه پولداران ارتباط دارند؟ +Jo-sp-13,Sport,Spanish (Spain),What is the most popular water sport in Iran?,درایران محبوب‌ترین ورزش آبی چیست؟ +Jo-sp-14,Sport,Spanish (Spain),What is the most popular mental sport in Iran?,درایران محبوب‌ترین ورزش ذهنی چیست؟ +Jo-sp-18,Work life,Spanish (Spain),"How many holiday days per year does a standard worker gets in Iran? (Provide Arabic numerals (e.g., 12) only.)",یک کارگر استاندارد درایران سالانه چند روز تعطیلی دارد؟ (فقط اعداد عربی (مثلاً 12) را ارائه دهید.) +Jo-sp-19,Work life,Spanish (Spain),What region in Iran has been traditionally associated with agriculture?,کدام منطقه درایران به طور سنتی با کشاورزی مرتبط بوده است؟ +Jo-sp-21,Work life,Spanish (Spain),"What time, if any, do people usually leave work for lunch in Iran? (Provide in HH:MM format (e.g., 18:00, 09:00).)",درایران مردم معمولاً چه ساعتی برای ناهار از کار خارج می‌شوند؟ (با فرمت HH:MM ارائه دهید، مثلاً 18:00، 09:00). +Jo-sp-31,Education,Spanish (Spain),"What time do high school students tend to leave school in Iran? (Provide in HH:MM format (e.g., 18:00, 09:00).)",درایران دانش‌آموزان دبیرستانی معمولاً چه ساعتی از مدرسه خارج می‌شوند؟ (به فرمت HH:MM ارائه دهید (مثلاً 18:00، 09:00).) +Jo-sp-32,Education,Spanish (Spain),What sport do elementary school students tend to practice at school in Iran?,درایران دانش‌آموزان دبستانی معمولاً چه ورزشی را در مدرسه تمرین می‌کنند؟ +Jo-sp-36,Education,Spanish (Spain),"How long (in weeks) are summer vacations at elementary schools in Iran? (Provide in Arabic numerals (e.g., 7, 8) only.)",درایران تعطیلات تابستانی مدارس ابتدایی چند هفته است؟ (فقط به اعداد عربی (مثلاً 7، 8) پاسخ دهید.) +Jo-sp-37,Education,Spanish (Spain),"How long (in weeks) are summer vacations at universities in Iran? (Provide in Arabic numerals (e.g., 7, 8) only.)",درایران تعطیلات تابستانی دانشگاه‌ها چند هفته است؟ (فقط به اعداد عربی (مثلاً 7، 8) پاسخ دهید.) +Jo-sp-39,Education,Spanish (Spain),"At what age does elementary education begin in Iran? (Provide in Arabic numerals (e.g., 7, 8) only.)",درایران تحصیلات ابتدایی از چه سنی شروع می‌شود؟ (فقط به اعداد عربی (مثلاً 7، 8) پاسخ دهید.) +Jo-sp-43,Education,Spanish (Spain),"How many languages are studied in elementary education besides Iran's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)",درایران به جز زبان رسمی، چند زبان دیگر در آموزش ابتدایی مطالعه می‌شود؟ (فقط به اعداد عربی (مثلاً 7، 8) پاسخ دهید.) +Jod-ch-01,Food,Chinese (China),What eating utensils do people commonly used in Iran?,در ایران مردم معمولاً از چه وسایل غذاخوری استفاده می‌کنند؟ +Jod-ch-04,Food,Chinese (China),What soft drink do people in Iran like to have?,در ایران کدام نوشیدنی غیرالکلی مورد پسند مردم است؟ +Jod-ch-06,Food,Chinese (China),What is the most popular traditional alcohol in Iran?,محبوب‌ترین نوع الکل سنتی درایران چیست؟ +Jod-ch-07,Food,Chinese (China),"How long (in hours) on average does it take for people in Iran to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)",مردم درایران به طور متوسط چند ساعت (با اعداد عربی و تا یک رقم اعشار مثلاً 2، 3.5) برای شام خوردن در رستوران وقت می‌گذارند؟ +Jod-ch-09,Food,Chinese (China),"What time do people usually have dinner in Iran? (Provide in HH:MM format (e.g., 18:00, 09:00).)",مردم معمولاً چه ساعتی درایران شام می‌خورند؟ (با فرمت HH:MM ارائه دهید، مثلاً 18:00، 09:00). +Jod-ch-12,Food,Chinese (China),What kind of soup do people from Iran like to have?,مردم درایران چه نوع سوپی دوست دارند بخورند؟ +Jod-ch-13,Food,Chinese (China),What street food do people from Iran like to eat?,مردم درایران چه غذاهای خیابانی دوست دارند بخورند؟ +Jod-ch-15,Food,Chinese (China),What kind of seafood do people from Iran like to eat?,مردم درایران چه نوع غذاهای دریایی دوست دارند بخورند؟ +Jod-ch-16,Holidays/Celebration/Leisure,Chinese (China),What is the biggest festival in Iran?,درایران بزرگترین جشن چیست؟ +Jod-ch-28,Holidays/Celebration/Leisure,Chinese (China),What is the most commonly used public transport by people when travelling between cites in Iran?,متداول‌ترین وسیله حمل و نقل عمومی که مردم هنگام سفر بین شهرها درایران استفاده می‌کنند، چیست؟ +Jod-ch-30,Holidays/Celebration/Leisure,Chinese (China),What are the specific decorations or symbols associated with the most biggest festival in Iran?,درایران تزئینات یا نمادهای خاص مرتبط با بزرگترین جشن چیست؟ +Jod-ch-37,Sport,Chinese (China),What sports do women like to watch the most in Iran?,درایران زنان بیشتر دوست دارند چه ورزش‌هایی را تماشا کنند؟ +Jod-ch-38,Sport,Chinese (China),What sports do men like to watch the most in Iran?,درایران مردان بیشتر دوست دارند چه ورزش‌هایی را تماشا کنند؟ +Jod-ch-41,Holidays/Celebration/Leisure,Chinese (China),What is the common leisure activity that females in their 20s in Iran engage in?,در ایران فعالیت تفریحی معمولی که خانم‌ها در دهه بیست سالگی زندگی شان انجام میدهند چیست؟ +Jod-ch-42,Holidays/Celebration/Leisure,Chinese (China),What is the common leisure activity that males in their 20s in Iran engage in?,در ایران فعالیت تفریحی معمولی که مردان در دهه بیست سالگی زندگی شان انجام میدهند چیست؟ +Jod-ch-46,Work life,Chinese (China),"How long (in hours) do people usually take a break after lunch on a weekday in Iran? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)",مردم معمولاً چند ساعت (به ساعت) پس از ناهار در یک روز کاری درایران استراحت می‌کنند؟ (فقط اعداد عربی تا یک رقم اعشار (مثلاً 2، 3.5) ارائه دهید.) +Jod-ch-48,Work life,Chinese (China),What do people eat for lunch during the working days in Iran?,مردم درایران در طول روزهای کاری برای ناهار چه چیزی می‌خورند؟ +Jod-ch-50,Work life,Chinese (China),"What is the average commute time (in minutes) for people in Iran? (Provide Arabic numerals (e.g., 1) only.)",در ایران میانگین زمان سفر به محل کار (به دقیقه) برای مردم چقدر است؟ (فقط اعداد عربی (مثلاً 1) را وارد کنید.) +Jod-ch-51,Work life,Chinese (China),What is the most common transportation that people take to get to work in Iran?,متداول‌ترین وسیله نقلیه‌ای که مردم برای رفتن به سر کار درایران استفاده می‌کنند چیست؟ +Jod-ch-54,Work life,Chinese (China),"How long (in days) is the marriage leave in Iran? (Provide Arabic numerals (e.g., 12) only.)",مرخصی عروسی درایران چند روز است؟ (فقط عدد عربی (مثلا 12) ارائه دهید.) +Jod-ch-56,Work life,Chinese (China),"What is the typical retirement age for women in Iran? (Provide Arabic numerals (e.g., 12) only.)",سن بازنشستگی معمول برای زنان درایران چند سال است؟ (فقط عدد عربی (مثلا 12) بنویسید.) +Jod-ch-57,Work life,Chinese (China),"What is the typical retirement age for men in Iran? (Provide Arabic numerals (e.g., 12) only.)",سن بازنشستگی معمول برای مردان درایران چند سال است؟ (فقط اعداد عربی (مثلاً 12) را ارائه دهید.) +Jod-ch-58,Work life,Chinese (China),Which profession is the most respected in Iran?,کدام حرفه درایران بیشترین احترام را دارد؟ +Jod-ch-60,Work life,Chinese (China),What is the duration (in hours) of a typical workday in Iran? (Provide Arabic numerals (0~24) only.),مدت زمان (به ساعت) یک روز کاری معمولی درایران چقدر است؟ (فقط اعداد عربی (0 تا 24) را ارائه دهید.) +Jod-ch-61,Work life,Chinese (China),Which occupation is most preferred among females in Iran?,کدام شغل در میان زنان درایران بیشتر مورد ترجیح است؟ +Jod-ch-62,Work life,Chinese (China),Which occupation is most preferred among males in Iran?,کدام شغل در میان مردان درایران بیشتر مورد ترجیح قرار می‌گیرد؟ +Ki-pe-17,Education,Persian (Iran),"On average, how far do students typically pursue their education in Iran? (e.g., elementary, high school)",درایران به طور متوسط، دانش‌آموزان تا چه مرحله‌ای از تحصیلات خود را ادامه می‌دهند؟ (مثلاً دبستان، دبیرستان) +Ki-pe-24,Education,Persian (Iran),What language is taught in schools in Iran besides English?,درایران به جز انگلیسی، چه زبان‌هایی در مدارس تدریس داده می‌شود؟ +Ki-pe-30,Education,Persian (Iran),What days of the week are schools closed in Iran?,درایران مدارس چه روزهایی از هفته تعطیل هستند؟ +Ki-pe-32,Food,Persian (Iran),What food do the hosts usually prepare for the guests in Iran?,معمولاً میزبان‌ها درایران چه غذاهایی برای مهمان‌ها تهیه می‌کنند؟ +Ki-pe-34,Food,Persian (Iran),What is the usual drink in the breakfast in Iran?,معمولاً درایران چه نوشیدنی‌ای برای صبحانه می‌نوشند؟ +Ki-pe-36,Food,Persian (Iran),"Except the food original from Iran, which country's food is more popular in Iran?",به جز غذاهای بومی درایران، غذای کدام کشور در ایران محبوب‌تر است؟ +Ki-pe-39,Food,Persian (Iran),What food is usually prepared for a family picnic in Iran?,معمولاً چه غذاهایی برای پیک‌نیک خانوادگی درایران تهیه می‌شود؟ +Ki-pe-40,Food,Persian (Iran),Which food from Iran is considered disgusting by the rest of the world?,کدام غذا درایران از نظر بقیه جهان نفرت‌انگیز تلقی می‌شود؟ +Ki-pe-43,Food,Persian (Iran),What is the name of the popular bread in Iran?,نام نان محبوب درایران چیست؟ +Ki-pe-51,Work life,Persian (Iran),"What time of day are government offices closed in Iran? (Provide in HH:MM format (e.g., 18:00, 09:00).)",ساعت چند ادارات دولتی درایران تعطیل می‌شوند؟(با فرمت HH:MM ارائه دهید، مثلاً 18:00، 09:00). +Ki-pe-53,Work life,Persian (Iran),"What is the normal start time of government offices in Iran? (Provide in HH:MM format (e.g., 18:00, 09:00).)",ساعت شروع کار معمول دفاتر دولتی درایران چه زمانی است؟ (با فرمت HH:MM ارائه دهید، مثلاً 18:00، 09:00). +Kik-in-01,Holidays/Celebration/Leisure,Indonesian (Indonesia),What national holiday has the longest duration in Iran?,درایران کدام تعطیلات ملی طولانی‌ترین مدت زمان را دارد؟ +Kik-in-02,Holidays/Celebration/Leisure,Indonesian (Indonesia),What are the common activities people from Iran do to celebrate Independence day?,فعالیت‌های معمولی که مردم درایران برای جشن گرفتن روز استقلال انجام می‌دهند چیست؟ +Kik-in-04,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is installed in front of the house when a family member dies in Iran?,وقتی یکی از اعضای خانواده درایران فوت می‌کند، چه چیزی جلوی خانه نصب می‌شود؟ +Kik-in-05,Holidays/Celebration/Leisure,Indonesian (Indonesia),When is a pregnancy celebration or ceremony usually held in Iran?,مراسم جشن بارداری یا مراسم مربوط به آن معمولاً چه زمانی درایران برگزار می‌شود؟ +Kik-in-06,Holidays/Celebration/Leisure,Indonesian (Indonesia),What event is usually held before a wedding in Iran?,چه مراسمی معمولاً قبل از عروسی درایران برگزار می‌شود؟ +Kik-in-07,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is usually shared to the children during (Lunar) New Year in Iran?,معمولاً چه چیزهایی در طول سال نو (قمری) درایران بین کودکان تقسیم می‌شود؟ +Kik-in-08,Holidays/Celebration/Leisure,Indonesian (Indonesia),What activities are usually done days before Ramadan in Iran?,درایران چه فعالیت‌هایی معمولاً در روزهای قبل از رمضان انجام می‌شود؟ +Kik-in-10,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most popular tourist attraction for foreign visitors in Iran?,محبوب‌ترین جاذبه‌ی گردشگری برای بازدیدکنندگان خارجی درایران چیست؟ +Kik-in-11,Holidays/Celebration/Leisure,Indonesian (Indonesia),"What is the most popular religious sites (temple, church, etc.) for tourism in Iran?",محبوب‌ترین اماکن مذهبی (معبد، کلیسا و غیره) برای گردشگری درایران کدامند؟ +Kik-in-15,Holidays/Celebration/Leisure,Indonesian (Indonesia),What clothes do women usually wear on graduation commencement ceremony in Iran?,زنان معمولاً چه لباس‌هایی را در مراسم فارغ‌التحصیلی درایران می‌پوشند؟ +Kik-in-16,Food,Indonesian (Indonesia),What drink is commonly consumed in Iran when the weather is cold?,چه نوشیدنی‌ای معمولاً درایران هنگام سردی هوا مصرف می‌شود؟ +Kik-in-17,Food,Indonesian (Indonesia),What fruit is more commonly sold and found during Ramadan in Iran?,چه میوه‌ای در ماه رمضان درایران بیشتر فروخته و یافت می‌شود؟ +Kik-in-24,Food,Indonesian (Indonesia),What carbohydrate is usually served with chicken in a fast-food restaurant in Iran?,چه کربوهیدراتی معمولاً همراه با مرغ در رستوران‌های فست‌فود درایران سرو می‌شود؟ +Kik-in-31,Sport,Indonesian (Indonesia),What is the most famous martial art sports in Iran?,درایران معروف‌ترین ورزش‌های رزمی چیست؟ +Kik-in-34,Sport,Indonesian (Indonesia),What sports are often broadcasted on national television in Iran?,درایران چه ورزش‌هایی اغلب در تلویزیون ملی پخش می‌شوند؟ +Kik-in-35,Sport,Indonesian (Indonesia),What sports were popular among people from Iran during the COVID-19 pandemic?,درایران چه ورزش‌هایی در بین مردم در طول همه‌گیری کووید-۱۹ محبوب بودند؟ +Kik-in-36,Sport,Indonesian (Indonesia),Who is the most popular soccer coach in Iran?,درایران محبوب‌ترین مربی فوتبال چه کسی است؟ +Kik-in-37,Sport,Indonesian (Indonesia),What soccer teams in Iran are famous for their intense rivalry? (e.g. ___ vs ___),درایران چه تیم‌های فوتبال به خاطر رقابت شدیدشان معروف هستند؟ (مثلاً ___ در مقابل ___) +Kik-in-38,Sport,Indonesian (Indonesia),What are the names of soccer supporters in Iran who are famous for their intense rivalry? (e.g. ___ vs ___),درایران نام هواداران تیم‌های فوتبال که به خاطر رقابت شدیدشان معروف هستند، چیست؟ (مثلاً ___ در مقابل ___) +Kik-in-40,Sport,Indonesian (Indonesia),Who is the most famous male badminton player in Iran?,درایران معروف‌ترین بازیکن مرد بدمینتون چه کسی است؟ +Kik-in-41,Sport,Indonesian (Indonesia),Who is the most famous female badminton player in Iran?,درایران مشهورترین بازیکن زن بدمینتون چه کسی است؟ +Kik-in-44,Sport,Indonesian (Indonesia),What sport gets the most support from the government in Iran?,درایران چه ورزشی بیشترین حمایت را از دولت دریافت می‌کند؟ +Kik-in-45,Sport,Indonesian (Indonesia),What sports field facilities are usually available at schools in Iran?,درایران معمولاً چه امکانات ورزشی در زمین‌های ورزشی مدارس وجود دارد؟ +Na-ko-02,Food,Korean (South Korea),What cafe beverage do people from Iran most commonly enjoy?,مردم درایران معمولاً از چه نوشیدنی کافی شاپ بیشتر لذت می‌برند؟ +Na-ko-04,Food,Korean (South Korea),What is the preferred hangover cure food for people from Iran?,غذای مورد علاقه برای درمان مخموری در میان مردم درایران چیست؟ +Na-ko-05,Food,Korean (South Korea),What is the typical delivery food in Iran?,غذای معمول تحویلی درایران چیست؟ +Na-ko-07,Food,Korean (South Korea),What type of meat is consumed most by people from Iran?,مردم درایران بیشتر از چه نوع گوشتی استفاده می‌کنند؟ +Na-ko-08,Food,Korean (South Korea),What fruit do people from Iran often eat in the autumn season?,مردم درایران در فصل پاییز معمولاً چه میوه‌ای می‌خورند؟ +Na-ko-09,Food,Korean (South Korea),What side dish is the most commonly served on a dining table in Iran?,چه پیش غذایی بیشترین استفاده را روی میز غذا درایران دارد؟ +Na-ko-11,Food,Korean (South Korea),What do people from Iran eat while watching a soccer game?,مردم درایران هنگام تماشای بازی فوتبال چه چیزی می‌خورند؟ +Na-ko-15,Food,Korean (South Korea),What is the representative nourishing food in Iran?,غذای مقوی نماینده درایران چیست؟ +Na-ko-16,Sport,Korean (South Korea),Who is the most famous soccer player in Iran?,درایران معروف‌ترین بازیکن فوتبال چه کسی است؟ +Na-ko-17,Sport,Korean (South Korea),What sports do male students enjoy during lunch time at school in Iran?,درایران دانش‌آموزان پسر در زنگ ناهار در مدرسه از چه ورزش‌هایی لذت می‌برند؟ +Na-ko-18,Sport,Korean (South Korea),What is the most common sport girls participate in during physical education classes in Iran?,درایران رایج‌ترین ورزشی که دختران در کلاس‌های تربیت بدنی شرکت می‌کنند چیست؟ +Na-ko-19,Sport,Korean (South Korea),Who is the most popular volleyball player in Iran?,درایران محبوب‌ترین بازیکن والیبال چه کسی است؟ +Na-ko-20,Sport,Korean (South Korea),What sports event do people from Iran passionately support the most in international competitions?,درایران مردم بیشترین حمایت شورانگیز خود را در مسابقات بین‌المللی از چه رویداد ورزشی ابراز می‌دارند؟ +Na-ko-22,Sport,Korean (South Korea),Which country is considered the biggest rival in soccer matches for Iran?,درایران کدام کشور بزرگترین رقیب در مسابقات فوتبال به حساب می‌آید؟ +Na-ko-23,Sport,Korean (South Korea),What type of sports academies do children attend the most in Iran?,درایران کودکان بیشتر به چه نوع آکادمی‌های ورزشی می‌روند؟ +Na-ko-24,Sport,Korean (South Korea),What is the most commonly eaten food in sports stadiums while watching games in Iran?,درایران متداول‌ترین غذایی که در استادیوم‌های ورزشی هنگام تماشای بازی‌ها خورده می‌شود، چیست؟ +Na-ko-25,Sport,Korean (South Korea),What are the typical sports played in Iran's school sports day?,درایران ورزش‌های معمولی که در روز ورزش مدارس انجام می‌شوند چیست؟ +Na-ko-26,Sport,Korean (South Korea),What are the popular sports among the middle-aged population in Iran?,درایران ورزش‌های محبوب در بین جمعیت میانسال چیست؟ +Na-ko-28,Sport,Korean (South Korea),Who is the most popular winter sports player in Iran?,درایران محبوب‌ترین ورزشکار زمستانی چه کسی است؟ +Na-ko-29,Sport,Korean (South Korea),Who is the most famous swimmer in Iran?,درایران مشهورترین شناگر چه کسی است؟ +Na-ko-30,Sport,Korean (South Korea),What is the most popular e-sports game in Iran?,درایران محبوب‌ترین بازی ای‌اسپورت چیست؟ +Na-ko-33,Holidays/Celebration/Leisure,Korean (South Korea),What symbolic food do people from Iran eat on (Lunar) New Year?,مردم درایران در سال نو (قمری) چه غذاهای نمادینی می‌خورند؟ +Na-ko-37,Holidays/Celebration/Leisure,Korean (South Korea),What is the most popular domestic vacation spot for people from Iran?,محبوب‌ترین مقصد داخلی برای تعطیلات برای مردم درایران کجاست؟ +Na-ko-38,Holidays/Celebration/Leisure,Korean (South Korea),What is the most common wedding gift between bride and groom in Iran?,رایج‌ترین هدیه‌ی عروسی بین عروس و داماد درایران چیست؟ +Na-ko-39,Holidays/Celebration/Leisure,Korean (South Korea),What is typically given as a congratulatory gesture when attending a friend's wedding in Iran?,معمولاً چه چیزی به عنوان حرکتی تبریکی هنگام شرکت در عروسی یک دوست درایران داده می‌شود؟ +Na-ko-40,Holidays/Celebration/Leisure,Korean (South Korea),"How long (in days) does a funeral typically last in Iran? (Provide Arabic numerals (e.g., 12) only.)",مراسم تدفین درایران معمولاً چند روز طول می‌کشد؟ (فقط اعداد عربی (مثلاً 12) را وارد کنید.) +Na-ko-41,Holidays/Celebration/Leisure,Korean (South Korea),What should you prepare as a condolence offering when attending a funeral in Iran?,هنگام شرکت در مراسم خاکسپاری درایران، چه چیزی باید به عنوان هدیه تسلیت آماده کنید؟ +Na-ko-42,Holidays/Celebration/Leisure,Korean (South Korea),What type of food is commonly provided at funeral parlors in Iran?,چه نوع غذایی معمولاً در مراسم ختم درایران ارائه می‌شود؟ +Na-ko-43,Holidays/Celebration/Leisure,Korean (South Korea),What do people do in Iran in the morning of the (Lunar) New Year?,مردم درایران صبح روز (قمری) نو چه کارهایی انجام می‌دهند؟ +Na-ko-44,Holidays/Celebration/Leisure,Korean (South Korea),When is the day with Iran's most severe nationwide traffic congestion?,روزی که شدیدترین ترافیک سراسری درایران رخ می‌دهد، چه روزی است؟ +Na-ko-45,Holidays/Celebration/Leisure,Korean (South Korea),What is the most popular honeymoon destination in Iran?,محبوب‌ترین مقصد ماه عسل درایران کجاست؟ +Ne-ar-05,Holidays/Celebration/Leisure,Arabic (Algeria),What is the most important national holiday in Iran?,درایران مهم‌ترین تعطیلی ملی چیست؟ +Ne-ar-06,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from Iran eat in Ramadan?,درایران مردم در ماه رمضان چه غذاهایی می‌خورند؟ +Ne-ar-09,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from Iran eat in Eid ul Fitr?,درایران مردم در عید فطر چه غذایی می‌خورند؟ +Ne-ar-10,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from Iran eat in Eid ul Adha?,درایران مردم درعید قربان چه غذایی می‌خورند؟ +Ne-ar-11,Holidays/Celebration/Leisure,Arabic (Algeria),Where do people from Iran go to celebrate New Year's Day?,مردم درایران برای جشن گرفتن روز سال نو به کجا می‌روند؟ +Ne-ar-14,Holidays/Celebration/Leisure,Arabic (Algeria),Where do a family gather for Eid festivities in Iran?,درایران خانواده‌ها برای جشن‌های عید کجا جمع می‌شوند؟ +Ne-ar-16,Work life,Arabic (Algeria),"When is the weekend in Iran (e.g. Monday, Tuesday)?",آخر هفته درایران چه روزهایی است (مثلاً دوشنبه، سه‌شنبه)؟ +Ne-ar-17,Work life,Arabic (Algeria),"At what time do most people start work in Iran? (Provide in HH:MM format (e.g., 18:00, 09:00).)",اکثر مردم درایران در چه ساعتی کار خود را شروع می‌کنند؟ (به فرمت HH:MM ارائه دهید (مثلاً 18:00، 09:00).) +Ne-ar-18,Work life,Arabic (Algeria),"At what time do most people finish work in Iran? (Provide in HH:MM format (e.g., 18:00, 09:00).)",اکثر مردم درایران چه ساعتی کارشان تمام می‌شود؟ (به فرمت HH:MM ارائه دهید (مثلاً 18:00، 09:00).) +Ne-ar-20,Work life,Arabic (Algeria),What is considered to be a secure job in Iran?,چه شغلی درایران به عنوان شغلی امن در نظر گرفته می‌شود؟ +Ne-ar-24,Work life,Arabic (Algeria),Which city is the primary commercial hub in Iran?,کدام شهر مرکز اصلی تجاری درایران است؟ +Ne-ar-25,Work life,Arabic (Algeria),What is the industry that pays the best in Iran?,صنعتی که درایران بیشترین حقوق را می‌پردازد چیست؟ +Ne-ar-26,Work life,Arabic (Algeria),What is the most famous public corporation in Iran?,معروف‌ترین شرکت دولتی درایران چیست؟ +Ne-ar-31,Food,Arabic (Algeria),What is the most famous dish in Iran?,معروف‌ترین غذا درایران چیست؟ +Ne-ar-32,Food,Arabic (Algeria),What do people usually have for breakfast in Iran?,مردم معمولاً برای صبحانه درایران چه چیزهایی می‌خورند؟ +Ne-ar-33,Food,Arabic (Algeria),"When do people usually have lunch in Iran? (Provide in HH:MM format (e.g., 18:00, 09:00).)",مردم معمولاً چه ساعتی درایران ناهار می‌خورند؟ (با فرمت HH:MM ارائه دهید، مثلاً 18:00، 09:00). +Ne-ar-34,Food,Arabic (Algeria),What is typically indispensable in meals in Iran?,معمولاً چه چیزی در وعده‌های غذایی درایران ضروری است؟ +Ne-ar-36,Food,Arabic (Algeria),What is a typical festive meal in Iran?,یک وعده غذایی معمول در جشن‌هایایران چیست؟ +Ne-ar-37,Food,Arabic (Algeria),Which fruit do people usually offer tourists/visitors from abroad in Iran?,معمولاً چه میوه‌ای به گردشگران/بازدیدکنندگان خارجی درایران پیشنهاد می‌شود؟ +Ne-ar-38,Food,Arabic (Algeria),Which food do people usually offer as charity in Iran?,مردم معمولاً چه غذایی را به عنوان صدقه درایران اهدا می‌کنند؟ +Ne-ar-39,Food,Arabic (Algeria),What is the cheapest fast food in Iran?,ارزان‌ترین فست فود درایران چیست؟ +Ne-ar-43,Food,Arabic (Algeria),What do people usually have with tea in Iran?,مردم معمولاً درایران با چای چه چیزی می‌خورند؟ +Ne-ar-44,Food,Arabic (Algeria),What do people have with coffee in Iran?,مردم درایران با قهوه چه چیزی می‌خورند؟ +New-am-02,Food,Amharic (Ethiopia),What is the most popular traditional food in Iran?,در ایران محبوب‌ترین غذای سنتی چیست؟ +New-am-04,Food,Amharic (Ethiopia),What is the most popular dipping sauce in Iran?,در ایران محبوب‌ترین دیپ چیست؟ +New-am-08,Food,Amharic (Ethiopia),What food is most often consumed during Christian fasting in Iran?,در ایران غذایی که بیشترین مصرف را در زمان روزه‌داری، مسیحیان دارند، چیست؟ +New-am-15,Food,Amharic (Ethiopia),What food is usually prepared when mothers give birth in Iran?,در ایران معمولاً چه غذایی هنگامی که مادران زایمان می‌کنند، تهیه می‌شود؟ +New-am-27,Sport,Amharic (Ethiopia),Who is the most popular female sportperson in Iran?,در ایران محبوب‌ترین ورزشکار زن چه کسی است؟ +New-am-34,Education,Amharic (Ethiopia),Where do most elementary school students prepare for their exams in Iran?,بیشتر دانش‌آموزان دبستانی در ایران کجا برای امتحانات خود آماده می‌شوند؟ +New-am-41,Education,Amharic (Ethiopia),"In Iran, at which grade level do students take their first national-level examination?",در ایران، دانش‌آموزان در چه پایه‌ای اولین امتحان سراسری خود را انجام میدهند؟ +New-am-53,Work life,Amharic (Ethiopia),Which region in Iran is widely known for its coffee/tea industry?,کدام منطقه در ایران به خاطر صنعت قهوه/چایش شهرت زیادی دارد؟ +New-am-54,Work life,Amharic (Ethiopia),Which region in Iran is widely known for its livestock industry?,کدام منطقه در ایران به خاطر صنعت دامپروری‌اش شهرت زیادی دارد؟ +New-am-59,Work life,Amharic (Ethiopia),What is the main occupation of people living in deserts in Iran?,شغل اصلی مردمی که در بیابان‌های ایران زندگی می‌کنند چیست؟ +New-am-60,Work life,Amharic (Ethiopia),Which animal is typically used for transportation in Iran?,معمولاً از چه حیوانی برای حمل و نقل در ایران استفاده می‌شود؟ +New-am-72,Family,Amharic (Ethiopia),What is the most popular comic book for children to read in Iran?,محبوب‌ترین کتاب کمیک برای خواندن کودکان در ایران چیست؟ +New-am-73,Family,Amharic (Ethiopia),What is the most popular YouTube channel for children in Iran?,محبوب‌ترین کانال یوتیوب برای کودکان در ایران کدام است؟ +New-am-74,Family,Amharic (Ethiopia),What is the most popular talk show in Iran?,محبوب‌ترین برنامه گفتگو محور در ایران چیست؟ +New-am-77,Holidays/Celebration/Leisure,Amharic (Ethiopia),What is the most famous religious holiday in Iran?,معروف‌ترین تعطیلی مذهبی در ایران چیست؟ +New-am-81,Holidays/Celebration/Leisure,Amharic (Ethiopia),"What is the busiest month for weddings in Iran? (Provide Arabic numerals (e.g., 1) only.)",شلوغ‌ترین ماه برای عروسی‌ها در ایران چه ماهی است؟ (فقط اعداد عربی (مثلاً 1) را وارد کنید.) +New-am-83,Holidays/Celebration/Leisure,Amharic (Ethiopia),What is the most popular traditional musical instrument in Iran?,محبوب‌ترین ساز سنتی در ایران چیست؟ +New-as-01,Food,Assamese (Assam),What is the main agricultural product produced in Iran?,مهم‌ترین محصول کشاورزی تولید شده در ایران چیست؟ +New-as-02,Food,Assamese (Assam),What is the most popular wheat-based food item in Iran?,محبوب‌ترین ماده غذایی مبتنی بر گندم در ایران چیست؟ +New-as-05,Food,Assamese (Assam),What is the most typical drink offered to guests when they visit households in Iran?,معمولاً چه نوشیدنی‌ای به عنوان پذیرایی به مهمانان هنگام ورود به خانه‌ها در ایران ارائه می‌شود؟ +New-as-07,Food,Assamese (Assam),What is the most popular dish cooked with fish in Iran?,محبوب‌ترین غذای پخته شده با ماهی در ایران چیست؟ +New-as-14,Food,Assamese (Assam),What food do people from Iran like to eat during rainy weather?,مردم ایران در هوای بارانی دوست دارند چه غذاهایی بخورند؟ +New-as-15,Food,Assamese (Assam),What drink is commonly consumed in Iran when the weather is hot?,چه نوشیدنی‌ای در ایران هنگامی که هوا گرم است معمولاً مصرف می‌شود؟ +New-as-20,Sport,Assamese (Assam),What is the most popular indoor sport in Iran?,محبوب‌ترین ورزش سرپوشیده در ایران چیست؟ +New-as-29,Sport,Assamese (Assam),What sport do men in Iran like to watch?,مردان در ایران دوست دارند چه ورزشی را تماشا کنند؟ +New-as-30,Sport,Assamese (Assam),What sport do women in Iran like to watch?,زنان در ایران دوست دارند کدام ورزش را تماشا کنند؟ +New-as-58,Work life,Assamese (Assam),What is the most popular beverage that people from Iran like to drink in their workplace?,محبوب‌ترین نوشیدنی که مردم ایران دوست دارند در محل کارشان بنوشند چیست؟ +New-as-64,Family,Assamese (Assam),On which holiday do all family members tend to reunite in Iran?,در ایران در کدام تعطیلات همه اعضای خانواده معمولاً دور هم جمع می‌شوند؟ +New-as-76,Holidays/Celebration/Leisure,Assamese (Assam),What traditional games do families play during traditional holidays in Iran?,خانواده‌ها در ایام تعطیلات سنتی در ایران چه بازی‌های سنتی‌ای انجام می‌دهند؟ +New-as-80,Holidays/Celebration/Leisure,Assamese (Assam),What type of clothing do people from Iran wear during traditional festivals?,مردم ایران در جشن‌های سنتی چه نوع لباس‌هایی می‌پوشند؟ +New-as-89,Holidays/Celebration/Leisure,Assamese (Assam),What traditional festival accessories do people from Iran wear?,مردم ایران چه زینت آلات سنتی جشنواره‌ای می‌پوشند؟ +New-az-05,Food,Azerbaijani (Azerbaijan),What is the most famous region for alcohol production in Iran?,معروف‌ترین منطقه برای تولید الکل در ایران کدام است؟ +New-az-11,Food,Azerbaijani (Azerbaijan),What fruit do people from Iran often eat in the summer season?,مردم ایران در فصل تابستان معمولاً چه میوه‌ای می‌خورند؟ +New-az-12,Food,Azerbaijani (Azerbaijan),Which region in Iran is known for its seafood?,کدام منطقه در ایران به خاطر غذاهای دریایی‌اش معروف است؟ +New-az-21,Sport,Azerbaijani (Azerbaijan),Which region in Iran is the most popular skiing destination?,کدام منطقه در ایران محبوب‌ترین مقصد اسکی است؟ +New-az-26,Sport,Azerbaijani (Azerbaijan),Who is the most popular martial arts player in Iran?,محبوب‌ترین ورزشکار هنرهای رزمی در ایران چه کسی است؟ +New-az-27,Sport,Azerbaijani (Azerbaijan),Which sport has been one of the fastest-growing in Iran over the last decade?,کدام ورزش یکی از سریع‌ترین رشد‌ها را در ایران طی دهه گذشته داشته است؟ +New-az-39,Education,Azerbaijani (Azerbaijan),Which country is the most popular destination for students from Iran studying abroad?,کدام کشور محبوب‌ترین مقصد برای دانشجویان ایران برای تحصیل در خارج از کشور است؟ +New-az-49,Work life,Azerbaijani (Azerbaijan),"How many people work in a typical family in Iran? (Provide Arabic numerals (e.g., 1) only.)",معمولاً چند نفر از اعضای یک خانواده معمولی در ایران کار می‌کنند؟ (فقط از اعداد عربی (مثلاً 1) استفاده کنید.) +New-az-60,Family,Azerbaijani (Azerbaijan),"In Iran, who takes care of kids when both parents are working?",در ایران، وقتی هر دو والدین کار می‌کنند، چه کسی از بچه‌ها مراقبت می‌کند؟ +New-az-69,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),What is the preferred alcoholic beverage for men from Iran?,نوشیدنی الکلی مورد ترجیح مردان ایران چیست؟ +New-az-70,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),What is the preferred alcoholic beverage for women from Iran?,نوشیدنی الکلی مورد ترجیح زنان ایران چیست؟ +New-az-73,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),"How many people on average typically attend a wedding in Iran? (Provide Arabic numerals (e.g., 1) only.)",در ایران به طور متوسط چند نفر معمولاً در یک عروسی شرکت می‌کنند؟ (فقط اعداد عربی (مثلاً 1) را وارد کنید.) +New-ch-01,Food,Chinese (China),What kind of meat do people usually eat when they have barbecue in Iran?,در ایران مردم معمولاً چه نوع گوشتی را کباب می کنند؟ +New-ch-02,Food,Chinese (China),"When do people usually have breakfast in Iran? (Provide in HH:MM format (e.g., 18:00, 09:00).)",در ایران مردم معمولاً چه ساعتی صبحانه می‌خورند؟ (به فرمت HH:MM ارائه دهید (مثلاً 18:00، 09:00).) +New-ch-04,Food,Chinese (China),What kinds of food do people usually eat for late-night snacks in Iran?,در ایران مردم معمولاً چه نوع غذاهایی را به عنوان میان وعده‌های دیر وقت می‌خورند؟ +New-ch-05,Food,Chinese (China),What is the most famous spicy dish in Iran?, در ایران معروف‌ترین غذای تند چیست؟ +New-ch-07,Food,Chinese (China),What food items do people typically pair with hard liquor in Iran?,در ایران مردم معمولاً چه غذاهایی را با نوشیدنی‌های الکلی سخت همراه می‌کنند؟ +New-ch-08,Food,Chinese (China),What seasoning is indispensable in cooking in Iran?,در ایران چه چاشنی ضروری در آشپزی غیرقابل اجتناب است؟ +New-ch-09,Food,Chinese (China),What food do people typically consume when the weather is cold in Iran?,در ایران مردم معمولاً چه غذاهایی را هنگام سردی هوا میخورند؟ +New-ch-13,Food,Chinese (China),What is the most famous alcohol brand in Iran?,در ایران معروف‌ترین برند الکل چیست؟ +New-ch-14,Food,Chinese (China),What foods do people usually eat when they are sick in Iran?,درایران مردم معمولاً وقتی بیمارمی‌شوند چه غذاهایی می‌خورند؟ +New-ch-15,Food,Chinese (China),What prepared/ready-to-eat food do people typically buy at supermarkets in Iran?,در ایران مردم معمولاً چه نوع غذاهای آماده/ خوراکی را از سوپرمارکت‌ ها می‌خرند؟ +New-ch-16,Sport,Chinese (China),What is the most famous sports-related movie in Iran?,در ایران معروف‌ ترین فیلم ورزشی چیست؟ +New-ch-17,Sport,Chinese (China),What extreme sport do people generally wish to try the most in Iran?,در ایران مردم معمولاً بیشتر از همه دوست دارند کدام ورزش هیجان‌انگیز را امتحان کنند؟ +New-ch-18,Sport,Chinese (China),Which track and field event is the most popular to watch during competitions in Iran?,در ایران کدام رشته‌ ی دو و میدانی در طول مسابقات محبوب‌ترین برای تماشا است؟ +New-ch-19,Sport,Chinese (China),Which gymnastics event is the most popular to watch during competitions in Iran?,در ایران کدام رویداد ژیمناستیک در طول مسابقات محبوب‌ترین است تا تماشا شود؟ +New-ch-23,Sport,Chinese (China),Who is the most famous table tennis player in Iran?,در ایران معروف‌ ترین بازیکن تنیس روی میز چه کسی است؟ +New-ch-26,Sport,Chinese (China),"In the Winter Olympics, which event is the most popular to watch in Iran?",در ایران در المپیک زمستانی، کدام رویداد برای تماشا محبوب‌ ترین است؟ +New-ch-27,Sport,Chinese (China),Who is the most famous boxer in Iran?,در ایران معروف‌ ترین بوکسور چه کسی است؟ +New-ch-30,Sport,Chinese (China),Who is the most famous track and field athlete in Iran?,در ایران مشهورترین ورزشکار دو و میدانی چه کسی است؟ +New-ch-31,Work life,Chinese (China),What job do parents most hope their children will pursue in Iran?,در ایران والدین بیشتر امیدوارند فرزندانشان چه شغلی را دنبال کنند؟ +New-ch-32,Work life,Chinese (China),What office software do people typically use in the workplace in Iran?,در ایران مردم معمولاً از چه نرم‌ افزارهای اداری در محل کار استفاده می‌کنند؟ +New-ch-38,Work life,Chinese (China),Which cities or regions are known for their import and export activities in Iran?,در ایران کدام شهرها یا مناطق به خاطر فعالیت‌های واردات و صادرات شناخته شده‌اند؟ +New-ch-39,Work life,Chinese (China),What platform is commonly used in the e-commerce industry in Iran?,در ایران چه پلتفرمی به طور معمول در صنعت تجارت الکترونیک استفاده می‌شود؟ +New-ch-44,Work life,Chinese (China),"How long is the typical probation period for new employees before signing a formal contract in Iran? (e.g., 1 month).", در ایران مدت زمان معمول دوره آزمایشی برای کارمندان جدید قبل از امضای قرارداد رسمی چقدر است؟ (مثلاً ۱ ماه). +New-ch-45,Work life,Chinese (China),Which industries do young people typically choose to start businesses in Iran?,در ایران جوانان معمولاً برای راه‌اندازی کسب‌ وکار از چه صنایعی استفاده می‌کنند؟ +New-ch-49,Family,Chinese (China),What is the most common way for family members to communicate remotely in Iran?,در ایران رایج‌ ترین روش ارتباط از راه دور بین اعضای خانواده چیست؟ +New-ch-51,Family,Chinese (China),What form of accommodation is typically booked for family trips in Iran?,در ایران معمولاً چه نوع اقامتگاهی برای سفرهای خانوادگی رزرو می‌شود؟ +New-ch-54,Family,Chinese (China),Which fruit is usually prepared the most for family dinners in Iran?,در ایران معمولاً کدام میوه برای شام‌ های خانوادگی بیشتر آماده می‌شود؟ +New-ch-64,Education,Chinese (China),"How many hours of classes do university students typically have per week in Iran? (Provide Arabic numerals (e.g., 1) only.)",دانشجویان دانشگاه در ایران معمولاً در هفته چند ساعت کلاس دارند؟ (فقط اعداد عربی (مثلا 1) را وارد کنید.) +New-ch-66,Education,Chinese (China),"What is the typical tuition fee per semester for public high schools in Iran? (Provide Arabic numerals (e.g., 1) only.)", در ایران شهریه معمولی برای هر ترم دبیرستان‌های دولتی چقدر است؟ (فقط اعداد عربی (مثلاً 1) را وارد کنید.) +New-ch-70,Education,Chinese (China),What compulsory courses do university students have in common in Iran?,دانشجویان دانشگاه‌ها در ایران چه دروس اجباری مشترکی دارند؟ +New-ch-71,Education,Chinese (China),"What is the average class size in high schools in Iran? (Provide Arabic numerals (e.g., 1) only.)",در ایران میانگین تعداد دانش‌آموزان در کلاس‌های دبیرستان چقدر است؟ (فقط اعداد عربی (مثلاً 1) را وارد کنید.) +New-ch-72,Education,Chinese (China),Which major is considered most conducive to employment in Iran?,در ایران کدام رشته تحصیلی بیشترین امکان اشتغال را فراهم می‌آورد؟ +New-ch-73,Education,Chinese (China),What type of clubs are most popular among university students in Iran?,در ایران چه نوع باشگاه‌ هایی بین دانشجویان دانشگاه‌ها محبوب‌ ترهستند؟ +New-ch-74,Education,Chinese (China),What types of accommodation do university students in Iran typically live in?,در ایران دانشجویان دانشگاه‌ها عمدتاً کجا زندگی می‌کنند؟ +New-ch-75,Education,Chinese (China),"How long is each class period for middle school students in Iran (minutes)? (Provide Arabic numerals (e.g., 1) only.)", در ایران مدت زمان هر کلاس درسی برای دانش‌آموزان مقطع متوسطه چقدر است (دقیقه)؟ (فقط اعداد عربی (مثلاً 1) را وارد کنید.) +New-ch-78,Holidays/Celebration/Leisure,Chinese (China),What leisure activities do retired women typically like in Iran?,در ایران زنان بازنشسته معمولاً از چه فعالیت‌های تفریحی لذت می‌برند؟ +New-ch-79,Holidays/Celebration/Leisure,Chinese (China),What leisure activities do retired men typically like in Iran?, در ایرانمردان بازنشسته معمولاً از چه فعالیت‌های تفریحی لذت می‌برند؟ +New-ch-80,Holidays/Celebration/Leisure,Chinese (China),"During which holidays do people typically visit religious sites (temples, churches, etc.) in Iran?", در ایران در چه ایام تعطیلی مردم معمولاً از اماکن مذهبی (معابد، کلیساها و غیره) بازدید می‌کنند؟ +New-ch-81,Holidays/Celebration/Leisure,Chinese (China),What are the typical housewarming gifts in Iran?,در ایران هدایای معمول برای جشن پا گشایی چیست؟ +New-ch-82,Holidays/Celebration/Leisure,Chinese (China),"At what time do weddings typically start in Iran? (Provide in HH:MM format (e.g., 18:00, 09:00).)",در ایران مراسم عروسی معمولاً چه ساعتی شروع می‌شود؟ (به فرمت HH:MM ارائه دهید (مثلاً 18:00، 09:00).) +New-ch-83,Holidays/Celebration/Leisure,Chinese (China),Which city in Iran hosts festivals the most?,در ایران کدام شهر بیشترین جشنواره‌ها را برگزار می‌کند؟ +New-ch-84,Holidays/Celebration/Leisure,Chinese (China),What color of clothing do people typically wear when attending weddings in Iran?,در ایران مردم معمولاً چه رنگ لباسی را هنگام شرکت در مراسم عروسی می‌پوشند؟ +New-ch-85,Holidays/Celebration/Leisure,Chinese (China),What color of clothing do people typically wear when attending funerals in Iran?,در ایران مردم معمولاً چه رنگ لباسی را هنگام شرکت در مراسم خاکسپاری می‌پوشند؟ +New-en-01,Food,English (UK),Which snack is eaten in the cinema in Iran?,در ایران چه تنقلاتی در سینماها خورده می‌شود؟ +New-en-02,Food,English (UK),What is the most popular chip/crisp flavour in Iran?,در ایران محبوب‌ ترین طعم چیپس چیست؟ +New-en-04,Food,English (UK),Who is a popular celebrity chef in Iran?,در ایران یک سرآشپز معروف کیست؟ +New-en-05,Food,English (UK),Which food is a cost-effective and quick meal option in Iran?,در ایران کدام غذا گزینه‌ ای مقرون‌ به‌ صرفه و سریع برای وعده‌ ی غذایی است؟ +New-en-07,Food,English (UK),What are the most popular cooking shows in Iran?,در ایران محبوب‌ ترین برنامه‌ های آشپزی چه برنامه‌ هایی هستند؟ +New-en-08,Food,English (UK),What is the most popular chocolate brand in Iran?,در ایران محبوب‌ ترین برند شکلات چیست؟ +New-en-10,Food,English (UK),What is the most eaten cheese in Iran?,در ایران پرمصرف‌ ترین پنیر چیست؟ +New-en-11,Food,English (UK),What is the most disliked vegetable in Iran?,در ایران کدام یک از سبزیجات کمترین مورد پسند است؟ +New-en-12,Food,English (UK),What food is most commonly found in food courts in Iran?,در ایران چه غذاهایی معمولاً در فودکورت‌ها یافت می‌شود؟ +New-en-17,Sport,English (UK),What are the most common cheering tools used by sports fans in Iran?,در ایران متداول‌ ترین وسایل تشویقی که توسط طرفداران ورزشی استفاده می‌شود چیست؟ +New-en-18,Sport,English (UK),What do fans bring with them when attending a live game in Iran?,در ایران طرفداران چه چیزهایی را هنگام حضور در یک بازی زنده همراه خود می‌آورند؟ +New-en-19,Sport,English (UK),What is the most well known sporting stadium in Iran?,در ایران معروف‌ترین ورزشگاه ورزشی کدام است؟ +New-en-23,Sport,English (UK),Who is the most famous Paralympian in Iran?,در ایران معروف‌ ترین بازیکن پارالمپیک چه کسی است؟ +New-en-26,Sport,English (UK),What is the best recognized sporting chant in Iran?,در ایران معروف‌ترین شعار ورزشی چیست؟ +New-en-38,Work life,English (UK),Which industries are known for more flexible working hours in Iran?,در ایران کدام صنایع به خاطر ساعات کاری انعطاف‌ پذیرتر شناخته شده‌اند؟ +New-en-41,Work life,English (UK),Who is the most well known and successful entrepreneur in Iran?,در ایران معروف‌ ترین و موفق‌ ترین کارآفرین چه کسی است؟ +New-en-47,Family,English (UK),What can typically be found in the back garden of houses in Iran?,درکشور معمولاً در باغ پشتی خانه‌های شما چه چیزهایی یافت می‌شود؟ +New-en-49,Family,English (UK),What is the name of the most famous family in Iran?,در ایران نام معروف‌ترین خانواده چیست؟ +New-en-50,Family,English (UK),What is the most common family name in Iran?,در ایران رایج‌ترین نام خانوادگی چیست؟ +New-en-55,Family,English (UK),Which religion is most commonly practiced by families in Iran?,در ایران کدام دین بیشترین پیروان را در بین خانواده‌ها دارد؟ +New-en-56,Family,English (UK),What is the most popular foreign language spoken by families in Iran?,در ایران محبوب‌ ترین زبان خارجی که توسط خانواده‌ها صحبت می‌شود، چیست؟ +New-en-59,Family,English (UK),Which country is the most popular destination for families from Iran to emigrate to?,در ایران کدام کشورمحبوب‌ترین مقصد برای مهاجرت خانواده‌ها است؟ +New-en-68,Education,English (UK),What repercussions are there for bad behavior in schools in Iran?,در ایران عواقب رفتار بد در مدارس چیست؟ +New-en-69,Education,English (UK),Which writers are commonly studied in literature class in Iran?,در ایران کدام نویسندگان معمولاً در کلاس ادبیات مطالعه می‌شوند؟ +New-en-70,Education,English (UK),"How many school breaks are there in a year for high schools in Iran? (Provide Arabic numerals (e.g., 1) only.)",در ایران در یک سال تحصیلی برای دبیرستان‌ها چند بارتعطیلی وجود دارد؟ (فقط اعداد عربی (مثلاً 1) را وارد کنید.) +New-en-72,Education,English (UK),Which online resource do students usually use to study in Iran?,در ایران دانش‌آموزان معمولاً از چه منابع آنلاینی برای درس خواندن استفاده می‌کنند؟ +New-en-75,Education,English (UK),"What is the average length of a semester in terms of weeks of teaching at universities in Iran? (Provide Arabic numerals (e.g., 1) only.)",در ایران میانگین طول یک ترم دانشگاهی از نظر تعداد هفته‌های تدریس در دانشگاه‌ ها چقدر است؟ (فقط از اعداد عربی (مثلاً 1) استفاده کنید.) +New-en-76,Holidays/Celebration/Leisure,English (UK),Which airport in Iran is the busiest during the holiday season?,در ایران کدام فرودگاه در طول فصل تعطیلات شلوغ‌ ترین است؟ +New-en-79,Holidays/Celebration/Leisure,English (UK),Which region of Iran is well known for its theatrical performances?,در ایران کدام منطقه به خاطر اجراهای تئاتری‌اش معروف است؟ +New-en-87,Holidays/Celebration/Leisure,English (UK),What is the most famous historic landmark in Iran?,در ایران معروف‌ترین نشانه تاریخی چیست؟ +New-en-90,Holidays/Celebration/Leisure,English (UK),What is the most famous hotel brand in Iran?,در ایران معروف‌ ترین برند هتل چیست؟ +New-gr-05,Food,Greek (Greece),What is the most popular grab-and-go breakfast option in Iran?,محبوب‌ترین گزینه صبحانه سریع و آماده‌به‌خورد در ایران چیست؟ +New-gr-06,Food,Greek (Greece),What is the most popular food in Iran among young people?,محبوب‌ترین غذا در بین جوانان در ایران چیست؟ +New-gr-08,Food,Greek (Greece),What type of alcoholic drink is most commonly consumed at festivals in Iran?,چه نوع نوشیدنی الکلی در جشن‌ها در ایران بیشتر مصرف می‌شود؟ +New-gr-13,Food,Greek (Greece),What is the most common morning drink in Iran?,رایج‌ترین نوشیدنی صبحگاهی در ایران چیست؟ +New-gr-15,Food,Greek (Greece),What is the most popular traditional dessert in Iran?,محبوب‌ترین دسر سنتی در ایران چیست؟ +New-gr-21,Sport,Greek (Greece),What is the most popular racket sport in Iran?,محبوب‌ترین ورزش راکتی در ایران چیست؟ +New-gr-24,Sport,Greek (Greece),What is the most popular track and field sport in Iran?,محبوب‌ترین رشته‌ی دو و میدانی در ایران چیست؟ +New-gr-29,Sport,Greek (Greece),Which international sporting event is the most popular in Iran?,کدام رویداد ورزشی بین‌المللی در ایران محبوب‌ترین است؟ +New-gr-47,Work life,Greek (Greece),"How long (in minutes) are typical work breaks in Iran, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)",معمولاً استراحت‌های کاری در ایران به جز وقفه‌های ناهار و شام چند دقیقه است؟ (فقط از اعداد عربی (مثلاً 1) استفاده کنید.) +New-gr-58,Work life,Greek (Greece),Which job is considered underpaid in Iran?,کدام شغل در ایران کم‌دستمزد تلقی می‌شود؟ +New-gr-76,Holidays/Celebration/Leisure,Greek (Greece),What is the most common food served during Easter in Iran?,رایج‌ترین غذایی که در ایران در زمان عید پاک سرو می‌شود، چیست؟ +New-gr-82,Holidays/Celebration/Leisure,Greek (Greece),What is the most popular music genre among the elderly population in Iran?,محبوب‌ترین سبک موسیقی در بین جمعیت مسن در ایران چیست؟ +New-gr-88,Holidays/Celebration/Leisure,Greek (Greece),What drink is usually offered at funerals in Iran?,معمولاً در مراسم خاکسپاری در ایران چه نوشیدنی‌ای پیشنهاد می‌شود؟ +New-gr-89,Holidays/Celebration/Leisure,Greek (Greece),What drink is usually offered at weddings in Iran?,معمولاً چه نوشیدنی‌ای در مراسم عروسی‌ها در ایران پیشنهاد می‌شود؟ +New-ha-07,Food,Hausa (Northern Nigeria),What food originated from Iran and can be found all over the world?,چه غذایی از ایران منشأ گرفته و در سراسر جهان یافت می‌شود؟ +New-ha-08,Food,Hausa (Northern Nigeria),What food is typically disliked by children but enjoyed by the elderly in Iran?,چه غذایی معمولاً توسط کودکان دوست نداشته می‌شود اما توسط سالمندان در ایران مورد پسند است؟ +New-ha-09,Food,Hausa (Northern Nigeria),What cooking utensil is most commonly used in Iran?,چه وسیله پخت و پزی در ایران بیشترین استفاده را دارد؟ +New-ha-13,Food,Hausa (Northern Nigeria),Which is the most popular vegetable in Iran?,محبوب‌ترین سبزی در ایران کدام است؟ +New-ha-19,Sport,Hausa (Northern Nigeria),Which animal is used for sports in Iran?,چه حیوانی برای ورزش در ایران استفاده می‌شود؟ +New-ha-66,Family,Hausa (Northern Nigeria),What is the most popular wedding venue in Iran?,محبوب‌ترین مکان برگزاری عروسی در ایران کدام است؟ +New-in-01,Food,Indonesian (Indonesia),Which coffee shop brand is the most popular in Iran?,در ایران کدام برند کافی شاپ محبوب‌ترین است؟ +New-in-03,Food,Indonesian (Indonesia),What type of food from Iran is typically served in restaurants overseas?,چه نوع غذایی از ایران معمولاً در رستوران‌ های خارج از کشور سرو می‌شود؟ +New-in-33,Work life,Indonesian (Indonesia),What region in Iran is usually associated with mining?,در ایران کدام منطقه معمولاً با معدن‌ کاری مرتبط است؟ +New-in-34,Work life,Indonesian (Indonesia),What region in Iran is usually associated with oil?,در ایران کدام منطقه معمولاً با نفت مرتبط است؟ +New-in-62,Education,Indonesian (Indonesia),What university in Iran is popular because of its engineering major? (Provide the official name.),در ایران کدام دانشگاه به خاطر رشته مهندسی‌ اش معروف است؟ (نام رسمی آن را ارائه دهید.) +New-in-63,Education,Indonesian (Indonesia),What university in Iran is popular because of its school of medicine? (Provide the official name.),در ایران کدام دانشگاه به خاطر دانشکده پزشکی‌ اش معروف است؟ (نام رسمی آن را ارائه دهید.) +New-in-78,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most popular payment method in Iran?,در ایران محبوب‌ترین روش پرداخت چیست؟ +New-in-80,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most famous theme park in Iran?,در ایران معروف‌ترین شهربازی چیست؟ +New-ko-01,Family,Korean (Korea),What is the most popular children's animation that is commonly watched by kids in Iran?,در ایران محبوب‌ ترین انیمیشن کودکانه‌ای که معمولاً توسط بچه‌ها تماشا می‌شود، چیست؟ +New-ko-02,Family,Korean (Korea),What is the most popular prenatal education activity for pregnant women in Iran?,در ایران محبوب‌ترین فعالیت آموزشی دوران بارداری برای زنان باردار چیست؟ +New-ko-03,Family,Korean (Korea),What is the most popular children's song in Iran that families sing together?,در ایران محبوب‌ترین آهنگ کودکانه که خانواده‌ها با هم می‌خوانند چیست؟ +New-ko-04,Family,Korean (Korea),Which toys are most popular among boys in Iran?,در ایران کدام اسباب‌ بازی‌ها بین پسران محبوب‌ ترین هستند؟ +New-ko-05,Family,Korean (Korea),Which toys are most popular among girls in Iran?,در ایران کدام اسباب‌بازی‌ها بین دختران محبوب‌ ترین هستند؟ +New-ko-06,Family,Korean (Korea),What is the most popular folk tale in Iran that is typically told to children?,در ایران محبوب‌ترین قصه‌ی عامیانه که معمولاً برای بچه‌ها تعریف می‌شود، چیست؟ +New-ko-07,Holidays/Celebration/Leisure,Korean (Korea),What is the customary symbol of condolence used at funerals in Iran?,در ایران نماد مرسوم تسلیت در مراسم خاکسپاری چیست؟ +New-ko-08,Work life,Korean (Korea),Where do university students in Iran tend to work part-time the most?, در ایران دانشجویان دانشگاه بیشتر کجا به کار پاره وقت می‌پردازند؟ +New-ko-09,Work life,Korean (Korea),What are the most frequently practiced team-building activities in companies based in Iran?, در ایران متداول‌ترین فعالیت‌ های تیم‌ سازی در شرکت‌ها چیست؟ +New-ko-10,Work life,Korean (Korea),What are the most common activities people do as a side job in Iran?,در ایران متداول‌ترین فعالیت‌هایی که مردم به عنوان شغل دوم انجام می‌دهند چیست؟ +New-pe-02,Food,Persian (Iran),What is the most famous edible souvenir for tourists in Iran?,در ایران معروف‌ترین سوغات خوراکی برای گردشگران چیست؟ +New-pe-06,Food,Persian (Iran),What is the most popular stew in Iran?, در ایران محبوب‌ ترین خورشت چیست؟ +New-pe-11,Food,Persian (Iran),What is the most common spice/herb used in dishes from Iran?,در ایران متداول‌ ترین ادویه/گیاه معطر مورد استفاده در غذاها چیست؟ +New-pe-16,Sport,Persian (Iran),What is the most famous traditional sport of Iran?,معروف‌ترین ورزش سنتی ایران چیست؟ +New-pe-20,Sport,Persian (Iran),What sport is popular to play on the beach in Iran?,درایران چه ورزشی برای بازی کردن در ساحل محبوب است؟ +New-pe-45,Work life,Persian (Iran),What is the usual work schedule during the month of Ramadan in Iran?,در ایران برنامه کاری معمول در ماه رمضان چگونه است؟ +New-pe-47,Family,Persian (Iran),"When is Student's Day celebrated in Iran? (Provide in MM/DD format (e.g., 12/31).)", در ایران روز دانش آموز چه زمانی جشن گرفته می‌شود؟ (با فرمت MM/DD ارائه دهید (مثلاً 12/31).) +New-pe-49,Family,Persian (Iran),Where do families gather to pray together in Iran?,در ایران خانواده‌ها کجا برای نماز خواندن با هم جمع می‌شوند؟ +New-pe-53,Family,Persian (Iran),What gifts do fathers get on Father's Day (or Parents' Day) in Iran?,در ایران پدرها در روز پدر (یا روز والدین) چه هدایایی دریافت می‌کنند؟ +New-pe-54,Family,Persian (Iran),What gifts do mothers get on Mother's Day (or Parents' Day) in Iran?, در ایران مادران در روز مادر (یا روز والدین) چه هدایایی دریافت می‌کنند؟ +New-pe-59,Family,Persian (Iran),"How many generations typically live together in a household in Iran? (Provide Arabic numerals (e.g., 12) only.)",در ایران معمولاً چند نسل در یک خانه با هم زندگی می‌کنند؟ (فقط اعداد عربی (مثلاً 12) را وارد کنید.) +New-pe-65,Education,Persian (Iran),"How many subjects are taught in middle schools in Iran? (Provide Arabic numerals (e.g., 12) only.)", در ایران چند درس در مدارس متوسطه تدریس می‌شود؟ (فقط اعداد عربی (مثلاً 12) را ارائه دهید.) +New-pe-66,Education,Persian (Iran),What is the most popular after school curricular in elementary schools in Iran?,در ایران محبوب‌ترین فعالیت‌ فوق‌ برنامه مدارس ابتدایی چیست؟ +New-pe-74,Education,Persian (Iran),How much is the average annual tuition fee for public universities in Iran?,در ایران میانگین شهریه سالانه دانشگاه‌ های دولتی چقدر است؟ +New-pe-76,Holidays/Celebration/Leisure,Persian (Iran),What is a popular activity to do in parks in Iran?,در ایران یک فعالیت محبوب در پارک‌ ها چیست؟ +New-pe-78,Holidays/Celebration/Leisure,Persian (Iran),What is the name of the most famous film festival held in Iran?,در ایران نام معروف‌ترین جشنواره فیلمی که برگزار می‌شود چیست؟ +New-pe-83,Holidays/Celebration/Leisure,Persian (Iran),What is the popular card game played during social gatherings in Iran?,درایران بازی کارتی محبوبی که در مجالس و دورهمی‌ها بازی می‌شود، چیست؟ +New-pe-85,Holidays/Celebration/Leisure,Persian (Iran),Where is the most popular tourist destination abroad for people from Iran?,در ایران محبوب‌ترین مقصد گردشگری خارجی برای مردم کجاست؟ +New-pe-86,Holidays/Celebration/Leisure,Persian (Iran),What is the name of the most famous tower in Iran?,در ایران نام معروف‌ترین برج چیست؟ +New-spme-01,Food,Spanish (Mexico),What edible insect is eaten most often in Iran?,چه حشره خوراکی در ایران بیشتر از همه خورده می‌شود؟ +New-spme-04,Food,Spanish (Mexico),Which agricultural product is exported most often in Iran?,کدام محصول کشاورزی بیشترین صادرات را در ایران دارد؟ +New-spme-05,Food,Spanish (Mexico),What are the most popular sweets in Iran?,محبوب‌ترین شیرینی‌ها در ایران چیست؟ +New-spme-15,Sport,Spanish (Mexico),What is the most popular sports drink in Iran?,محبوب‌ترین نوشیدنی ورزشی در ایران چیست؟ +New-spme-27,Education,Spanish (Mexico),What is the average education level for people in Iran?,میانگین سطح تحصیلات مردم در ایران چیست؟ +New-spme-37,Education,Spanish (Mexico),Which profession is most commonly studied abroad by students from Iran?,کدام رشته شغلی بیشترین میزان مطالعه توسط دانشجویان ایران را در خارج از کشور دارد؟ +New-spme-60,Family,Spanish (Mexico),"Which day of the week do most families in Iran practice religious activities? (e.g. Monday, Tuesday)",اکثر خانواده‌ها در ایران در چه روزی از هفته به فعالیت‌های مذهبی می‌پردازند؟ (مثلاً دوشنبه، سه‌شنبه) +New-spme-65,Family,Spanish (Mexico),What is the most popular way to celebrate Independence Day in Iran?,محبوب‌ترین روش جشن گرفتن روز استقلال در ایران چیست؟ +New-spme-68,Family,Spanish (Mexico),What is the most popular beverage among children in Iran?,محبوب‌ترین نوشیدنی بین کودکان در ایران چیست؟ +New-spme-76,Holidays/Celebration/Leisure,Spanish (Mexico),What is the most popular place in Iran to celebrate Independence Day?,محبوب‌ترین مکان در ایران برای جشن گرفتن روز استقلال کجاست؟ +New-spme-78,Holidays/Celebration/Leisure,Spanish (Mexico),What is the name of the song that is typically sung at birthday parties in Iran?,نام آهنگی که معمولاً در جشن تولدها در ایران خوانده می‌شود چیست؟ +New-su-01,Food,Sundanese (West Java),What snacks are usually sold in front of schools in Iran?, در ایران چه تنقلاتی معمولاً جلوی مدارس به فروش می‌رسد؟ +New-su-09,Food,Sundanese (West Java),What oil is usually used for cooking in Iran?,در ایران معمولاً از چه روغنی برای پخت و پز استفاده می‌شود؟ +New-su-10,Food,Sundanese (West Java),What food is commonly consumed by pregnant women in Iran?,در ایران چه غذاهایی معمولاً توسط زنان باردار خورده می‌شود؟ +New-su-15,Food,Sundanese (West Java),What is the most popular traditional non-alcoholic drink in Iran?,در ایران محبوب‌ترین نوشیدنی سنتی غیرالکلی چیست؟ +New-su-17,Sport,Sundanese (West Java),What sports facilities are generally available in parks in Iran?,در ایران معمولاً چه امکانات ورزشی در پارک‌ها وجود دارد؟ +New-su-21,Sport,Sundanese (West Java),What are the common activities that seniors usually do in parks in Iran?,در ایران فعالیت‌های معمولی که سالمندان معمولاً در پارک‌ها انجام می‌دهند چیست؟ +New-su-24,Sport,Sundanese (West Java),What sports do parents and children commonly play together in Iran?,در ایران والدین و فرزندان معمولاً چه ورزش‌هایی را با هم انجام می دهند؟ +New-su-28,Sport,Sundanese (West Java),What color is associated with the national soccer team of Iran?,چه رنگی با تیم ملی فوتبال ایران مرتبط است؟ +New-su-33,Education,Sundanese (West Java),What is the common dress code for school teachers in Iran?,نوع لباس پوشیدن برای معلمان مدارس در ایران چیست؟ +New-su-34,Education,Sundanese (West Java),What is the most popular extracurricular activity related to music in schools in Iran?,در ایران محبوب‌ترین فعالیت فوق‌برنامه مرتبط با موسیقی در مدارس چیست؟ +New-su-42,Education,Sundanese (West Java),What religion is mainly taught in schools in Iran?,در ایران چه دینی عمدتاً در مدارس تدریس می‌شود؟ +New-su-45,Education,Sundanese (West Java),"What date is Education Day celebrated in Iran? (Provide in MM/DD format (e.g., 12/31).)",در ایران روز تعلیم و تربیت چه تاریخی است؟ (با فرمت MM/DD ارائه شود (مثلاً 12/31).) +New-su-50,Work life,Sundanese (West Java),What is the main occupation of people in mountainous areas in Iran?,در ایران شغل اصلی مردم مناطق کوهستانی چیست؟ +New-su-51,Work life,Sundanese (West Java),What is the main occupation of people in coastal areas in Iran?,در ایران شغل اصلی مردم در مناطق ساحلی چیست؟ +New-su-57,Work life,Sundanese (West Java),What is the most common livestock raised in Iran?,در ایران رایج‌ترین دامی که پرورش داده می‌شود چیست؟ +New-su-58,Work life,Sundanese (West Java),What animals are commonly used for agriculture in Iran?,در ایران چه حیواناتی به طور معمول برای کشاورزی استفاده می‌شوند؟ +New-su-59,Work life,Sundanese (West Java),What do farmers in Iran typically wear to protect themselves from the heat whilst farming?,در ایران کشاورزان معمولاً برای محافظت از خود در برابر گرما هنگام کشاورزی چه می‌پوشند؟ +New-su-60,Work life,Sundanese (West Java),What do farmers in Iran usually eat for lunch?,در ایران کشاورزان معمولاً برای ناهار چه می‌خورند؟ +New-su-71,Family,Sundanese (West Java),What gifts do parents generally give to their children for their birthdays in Iran?,در ایران والدین معمولاً چه هدایایی به فرزندانشان برای تولدشان می‌دهند؟ +New-su-75,Family,Sundanese (West Java),What type of vehicle do most families in Iran generally own?,در ایران اکثر خانواده‌ها معمولاً چه وسایل نقلیه‌ای دارند؟ +New-su-77,Holidays/Celebration/Leisure,Sundanese (West Java),What is usually given to the children during Eid in Iran?,در ایران معمولاً در زمان عید به بچه‌ها چه چیزی داده می‌شود؟ +New-su-81,Holidays/Celebration/Leisure,Sundanese (West Java),What clothes do grooms usually wear at weddings in Iran?,در ایران دامادها معمولاً در عروسی‌ها چه لباسی می‌پوشند؟ +New-su-82,Holidays/Celebration/Leisure,Sundanese (West Java),What clothes do brides usually wear at weddings in Iran?,در ایران عروس‌ها معمولاً در مراسم عروسی چه لباسی می‌پوشند؟ +New-su-83,Holidays/Celebration/Leisure,Sundanese (West Java),What food is usually served at weddings in Iran?,در ایران معمولاً چه غذاهایی در مراسم عروسی سرو می‌شود؟ +New-su-86,Holidays/Celebration/Leisure,Sundanese (West Java),What is the most famous government building in Iran?,در ایران معروف‌ترین ساختمان دولتی چیست؟ +New-su-88,Holidays/Celebration/Leisure,Sundanese (West Java),What is the most popular music genre among the younger population in Iran?,محبوب‌ترین سبک موسیقی در بین جوانان ایران چیست؟ +Ni-en-02,Education,English (UK),"What time do middle school students in Iran typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)",در ایران دانش‌آموزان مقطع متوسطه معمولاً چه ساعتی از مدرسه تمام می‌کنند؟ (به فرمت HH:MM ارائه دهید (مثلاً 18:00، 09:00).) +Ni-en-03,Education,English (UK),"At what age do people in Iran typically go to university? (Provide Arabic numerals (e.g., 12) only.)",در ایران مردم معمولاً در چه سنی به دانشگاه می‌روند؟ (فقط اعداد عربی (مثلاً 12) را ارائه دهید.) +Ni-en-06,Education,English (UK),"From what age do people need to attend compulsory education Iran? (Provide Arabic numerals (e.g., 12) only.)",در ایران از چه سنی افراد باید به تحصیل اجباری بپردازند؟ (فقط اعداد عربی (مثلاً 12) را وارد کنید.) +Ni-en-09,Education,English (UK),How many days a week do children attend school in Iran? (Provide Arabic numerals (0~7) only.),در ایران بچه‌ها چند روز در هفته به مدرسه می‌روند؟ (فقط اعداد عربی (0 تا 7) را وارد کنید.) +Ni-en-11,Education,English (UK),"In Iran, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)",در ایران، گرفتن مدرک کارشناسی ارشد معمولاً چند سال طول می‌کشد؟ (فقط اعداد عربی (مثلاً 12) را وارد کنید.) +Ni-en-12,Education,English (UK),What is the top university in Iran? (Provide the official name.),در ایران بهترین دانشگاه کدام است؟ (نام رسمی آن را ارائه دهید.) +Ni-en-13,Education,English (UK),"At what age do most people in Iran graduate from university? (Provide Arabic numerals (e.g., 12) only.)",در ایران در چه سنی اکثر مردم از دانشگاه فارغ‌ التحصیل می‌شوند؟ (فقط اعداد عربی (مثلاً 12) را وارد کنید.) +Ni-en-15,Education,English (UK),"At what age do children in Iran generally start middle school? (Provide Arabic numerals (e.g., 12) only.)",در ایران در چه سنی کودکان معمولاً دوره متوسطه را شروع می‌کنند؟ (فقط اعداد عربی (مثلاً 12) را وارد کنید.) +Ni-en-17,Work life,English (UK),"How many hours a week does a full-time worker in Iran typically work? (Provide Arabic numerals (e.g., 12) only.)",یک کارگر تمام وقت درایران معمولاً چند ساعت در هفته کار می‌کند؟ (فقط اعداد عربی (مثلاً 12) را وارد کنید.) +Ni-en-19,Work life,English (UK),How many days a week does a full-time worker work in Iran? (Provide Arabic numerals (0~7) only.),یک کارمند تمام وقت درایران چند روز در هفته کار می‌کند؟ (فقط اعداد عربی (0 تا 7) را وارد کنید.) +Ni-en-20,Work life,English (UK),"At what age do most people start working in Iran? (Provide Arabic numerals (e.g., 12) only.)",در چه سنی اکثر مردم درایران شروع به کار می‌کنند؟ (فقط اعداد عربی (مثلاً 12) را وارد کنید.) +Ni-en-21,Work life,English (UK),"From what age is an individual allowed to work in Iran? (Provide Arabic numerals (e.g., 12) only.)",از چه سنی فرد مجاز به کار کردن درایران است؟ (فقط اعداد عربی (مثلاً 12) را وارد کنید.) +Ni-en-31,Holidays/Celebration/Leisure,English (UK),What do people in Iran traditionally eat on Christmas Day?,مردم درایران سنتاً در روز کریسمس چه غذایی می‌خورند؟ +Ni-en-37,Holidays/Celebration/Leisure,English (UK),What is the name of the day of the year where people in Iran celebrate love and romance?,نام روزی از سال که مردم درایران عشق و رمانتیک را جشن می‌گیرند چیست؟ +Ni-en-40,Holidays/Celebration/Leisure,English (UK),What is the most popular Christmas song in Iran?,محبوب‌ترین آهنگ کریسمس درایران چیست؟ +Nu-in-04,Education,Indonesian (Indonesia),"How many semesters are there each academic year at high schools in Iran? (Provide in Arabic numerals (e.g., 7, 8) only.)",درایران در هر سال تحصیلی دبیرستان‌ها چند ترم وجود دارد؟ (فقط به اعداد عربی (مثلاً 7، 8) پاسخ دهید.) +Nu-in-05,Education,Indonesian (Indonesia),In which month does the new school year typically begin in Iran? (Provide Arabic numerals (1~12) only.),درایران معمولاً ماه تحصیلی جدید در چه ماهی شروع می‌شود؟ (فقط اعداد عربی (1 تا 12) را ارائه دهید.) +Nu-in-06,Education,Indonesian (Indonesia),"When is National Teacher's Day commemorated in Iran? (Provide in MM/DD format (e.g., 12/31).)",درایران روز ملی معلم چه تاریخی است؟ (با فرمت MM/DD ارائه شود (مثلاً 12/31).) +Nu-in-11,Education,Indonesian (Indonesia),"At what time does elementary school start in Iran? (Provide in HH:MM format (e.g., 18:00, 09:00).)",درایران مدرسه ابتدایی از چه ساعتی شروع می‌شود؟ (به فرمت HH:MM ارائه دهید مثلاً 18:00، 09:00). +Nu-in-20,Family,Indonesian (Indonesia),"When is Children's Day celebrated in Iran? (Provide in MM/DD format (e.g., 12/31).)",درایران روز کودک چه زمانی جشن گرفته می‌شود؟ (با فرمت MM/DD ارائه دهید (مثلاً 12/31).) +Nu-in-40,Work life,Indonesian (Indonesia),Which city is the main destination for job seekers in Iran?,کدام شهر مقصد اصلی جویندگان کار درایران است؟ +Sa-en-1,Food,English (UK),What is Iran's most popular fast food chain?,محبوب‌ترین زنجیره رستوران‌های فست فود درایران کدام است؟ +Sa-en-13,Food,English (UK),What is the food that is most divisive (either love or hate) in Iran?,غذایی که درایران بیشترین اختلاف نظر (یا عشق یا نفرت) را دارد چیست؟ +Sa-en-16,Sport,English (UK),What is the most popular soccer team among the people from Iran?,درایران محبوب‌ترین تیم فوتبال بین مردم کدام است؟ +Sa-en-22,Sport,English (UK),What is the most famous university in Iran known for its sports team?,درایران معروف‌ترین دانشگاه به خاطر تیم ورزشی‌اش به چه نامی شناخته می‌شود؟ +Sa-en-31,Family,English (UK),What is Iran's most popular family pet?,درایران محبوب‌ترین حیوان خانگی خانواده‌ها چیست؟ +Sa-en-32,Family,English (UK),What is the most popular family TV show in Iran?,درایران محبوب‌ترین برنامه تلویزیونی خانوادگی چیست؟ +Sa-en-37,Family,English (UK),What is the most popular family boardgame in Iran?,درایران محبوب‌ترین بازی تخته‌ای خانوادگی چیست؟ +Sa-en-6,Food,English (UK),What is the most popular takeaway food in Iran?,محبوب‌ترین غذای بیرون‌بر درایران چیست؟ +Sa-en-7,Food,English (UK),What are popular snacks in Iran?,چه تنقلاتی درایران محبوب هستند؟ +Sa-en-9,Food,English (UK),What do people from Iran eat at the beach?,مردم درایران در ساحل چه چیزی می‌خورند؟ +Ta-pe-10,Family,Persian (Iran),"At what age do men usually get married in Iran? (Provide Arabic numerals (e.g., 20) only.)",درایران مردان معمولاً در چه سنی ازدواج می‌کنند؟ (فقط اعداد عربی (مثلاً 20) را ارائه دهید.) +Ta-pe-11,Family,Persian (Iran),"At what age do women usually get married in Iran? (Provide Arabic numerals (e.g., 20) only.)",درایران زنان معمولاً در چه سنی ازدواج می‌کنند؟ (فقط اعداد عربی (مثلاً 20) را وارد کنید.) +Ta-pe-13,Family,Persian (Iran),"In your parents' generation, what was the average number of members in their family in Iran? (Provide Arabic numerals (e.g., 20) only.)",درایران در نسل والدین شما، میانگین تعداد اعضای خانواده‌ها چند نفر بوده است؟ (فقط عدد عربی (مثلاً 20) ارائه دهید.) +Ta-pe-17,Sport,Persian (Iran),"In the Olympic Games, which sport is the most popular in Iran?",درایران بازی‌های المپیک، کدام ورزش در ایران محبوب‌ترین است؟ +Ta-pe-21,Sport,Persian (Iran),Where do children usually play soccer in Iran?,درایران بچه‌ها معمولاً کجا فوتبال بازی می‌کنند؟ +Ta-pe-22,Sport,Persian (Iran),Which daily exercise is popular among women in Iran?,درایران کدام تمرین روزانه بین زنان محبوب است؟ +Ta-pe-23,Sport,Persian (Iran),Which daily exercise is popular among men in Iran?,درایران کدام تمرین روزانه بین مردان محبوب است؟ +Ta-pe-25,Sport,Persian (Iran),"What is the most famous rivalry in a national sports league in Iran? (e.g., ___ vs ___)",درایران معروف‌ترین رقابت در یک لیگ ورزشی ملی چیست؟ (به عنوان مثال، ___ در مقابل ___) +Ta-pe-29,Sport,Persian (Iran),Which professional sport is the highest paying in Iran?,درایران کدام ورزش حرفه‌ای پردرآمدترین است؟ +Ta-pe-30,Sport,Persian (Iran),What is/was the most popular sports-related TV program in Iran?,درایران محبوب‌ترین برنامه تلویزیونی ورزشی چه برنامه‌ای است/بوده است؟ +Ta-pe-32,Holidays/Celebration/Leisure,Persian (Iran),What day of the year is usually dedicated to fireworks in Iran?,درایران کدام روز از سال معمولاً به آتش‌بازی اختصاص دارد؟ +Ta-pe-37,Holidays/Celebration/Leisure,Persian (Iran),What is the common symbol of New Year's Eve that is usually found in Iran?,نماد معمول شب سال نو که معمولاً درایران یافت می‌شود، چیست؟ +Ta-pe-42,Holidays/Celebration/Leisure,Persian (Iran),What food do people from Iran usually eat on New Year's Eve?,مردم درایران معمولاً در شب سال نو چه غذایی می‌خورند؟ +Ta-pe-45,Holidays/Celebration/Leisure,Persian (Iran),What is usually eaten during the celebration of the longest night of the year in Iran?,معمولاً در جشن طولانی‌ترین شب سال درایران چه چیزی خورده می‌شود؟ +Th-en-01,Sport,English (US),What is the most popular summer sport in Iran?,درایران محبوب‌ترین ورزش تابستانی چیست؟ +Th-en-03,Sport,English (US),What is the most popular professional sports league in Iran?,درایران محبوب‌ترین لیگ ورزشی حرفه‌ای چیست؟ +Th-en-05,Sport,English (US),What is the most popular women's sports team in Iran?,درایران محبوب‌ترین تیم ورزشی زنان کدام است؟ +Th-en-09,Sport,English (US),What is the most popular tournament in Iran?,درایران محبوب‌ترین تورنمنت چیست؟ +Th-en-11,Sport,English (US),Who is the most popular sportperson in Iran?,درایران محبوب‌ترین ورزشکار چه کسی است؟ +Th-en-12,Sport,English (US),In which sport has Iran been most successful in international competitions?,درایران کدام ورزش در مسابقات بین‌المللی بیشترین موفقیت را کسب کرده است؟ +Th-en-15,Sport,English (US),What is the most popular winter sport in Iran?,درایران محبوب‌ترین ورزش زمستانی چیست؟ +Th-en-19,Work life,English (US),What is a city or region in Iran known for manufacturing industry?,کدام شهر یا منطقه درایران به صنعت تولیدی معروف است؟ +Th-en-21,Work life,English (US),What is regarded as the most important perk typically offered to employees in Iran?,در ایران مهم‌ ترین مزیتی که معمولاً به کارمندان ارائه می‌شود، چیست؟ +Th-en-22,Work life,English (US),What was the most catastrophic economic period for Iran?,بدترین دوره اقتصادی برایایران چه زمانی بود؟ +Th-en-24,Work life,English (US),What region in Iran is a major hub for tech workers and start ups?,کدام منطقه درایران مرکز عمده‌ای برای کارکنان فناوری و استارت‌آپ‌ها است؟ +Th-en-27,Work life,English (US),What is the most important industry in Iran?,مهم‌ترین صنعت درایران چیست؟ +Th-en-35,Family,English (US),"Which one of the daily meals is commonly shared with family members in Iran? (e.g., breakfast, lunch, dinner)",درایران کدام یک از وعده‌های غذایی روزانه معمولاً با اعضای خانواده به اشتراک گذاشته می‌شود؟ (مثلاً صبحانه، ناهار، شام) +Th-en-36,Family,English (US),What is a popular family activity with a child to do on weekends in Iran?,درایران یک فعالیت خانوادگی محبوب با فرزند برای انجام دادن در آخر هفته‌ها چیست؟ +Th-en-37,Family,English (US),"At what age do children typically become independent from their parents in Iran? (Provide Arabic numerals (e.g., 12) only.)",درایران در چه سنی فرزندان معمولاً از والدین خود مستقل می‌شوند؟ (فقط اعداد عربی (مثلاً 12) را وارد کنید.) +Th-en-38,Family,English (US),What is the most important family holiday in Iran?,درایران مهم‌ترین تعطیلی خانوادگی چیست؟ +Th-en-39,Family,English (US),What is a popular family game in Iran?,درایران یک بازی خانوادگی محبوب چیست؟ +Th-en-41,Family,English (US),"What is the average age for couples to have their first child in Iran? (Provide Arabic numerals (e.g., 20) only.)",درایران میانگین سنی زوج‌ها برای داشتن اولین فرزند چقدر است؟ (فقط اعداد عربی (مثلاً 20) ارائه دهید.) +Th-en-43,Family,English (US),"How many cars are owned by a typical family in Iran? (Provide Arabic numerals (e.g., 12) only.)",درایران یک خانواده معمولی چند ماشین دارد؟ (فقط اعداد عربی (مثلاً 12) را وارد کنید.) +Th-en-44,Family,English (US),What is Iran's most popular food for family meals on weekends?,درایران محبوب‌ ترین غذا برای وعده‌های غذایی خانوادگی در آخر هفته‌ها چیست؟ +Th-en-45,Family,English (US),What is the most popular weekday evening family activity in Iran?,درایران محبوب‌ترین فعالیت خانوادگی عصرهای روز های غیر آخر هفته چیست؟ +Th-en-48,Education,English (US),What is the highest grade given to top-achieving high school students on assignments and exams in Iran?,درایران بالاترین نمره‌ای که به دانش‌آموزان برتر دبیرستانی در تکالیف و امتحانات داده می‌شود چیست؟ +Th-en-49,Education,English (US),What is considered the most important exam for high school students in Iran?,درایران مهم‌ترین امتحان برای دانش‌آموزان دبیرستانی چه امتحانی است؟ +Th-en-51,Education,English (US),Which subject is considered the most important for students in Iran?,درایران کدام درس برای دانش‌آموزان مهم‌ترین تلقی می‌شود؟ +Th-en-53,Education,English (US),What is the most popular extracurricular social event at schools in Iran?,درایران محبوب‌ترین رویداد اجتماعی فوق‌برنامه در مدارس چیست؟ +Th-en-58,Education,English (US),What is the most advanced math subject learned before university in Iran?,درایران پیشرفته‌ترین درس ریاضی که قبل از دانشگاه تدریس می‌شود، چیست؟ +Tmp-ar-01,Education,Arabic (Algeria),Where do university students in Iran usually go to study for their final exams?,در ایران دانشجویان دانشگاه معمولاً برای مطالعه برای امتحانات نهایی خود به کجا می‌روند؟ +Tmp-ar-02,Education,Arabic (Algeria),What is a common public transport that people use to go to university in in Iran?,در ایران یک وسیله حمل و نقل عمومی رایج که مردم برای رفتن به دانشگاه استفاده می‌کنند چیست؟ +Tmp-ar-04,Education,Arabic (Algeria),What do elementary students in Iran usually do after school?,در ایران دانش‌آموزان دبستانی معمولاً بعد از مدرسه چه کارهایی انجام می‌دهند؟ diff --git a/data/questions/Mexico_questions.csv b/data/questions/Mexico_questions.csv new file mode 100644 index 0000000000000000000000000000000000000000..5cdb61b55275263910be045e03316204d64d537e --- /dev/null +++ b/data/questions/Mexico_questions.csv @@ -0,0 +1,501 @@ +ID,Topic,Source,Question,Translation +Al-en-01,Food,English (US),What is a common snack for preschool kids in your country?,¿Cuál es una merienda común para niños de preescolar en México? +Al-en-02,Food,English (US),What is a popular food to go with beer in your country?,¿Cuál es una comida popular para acompañar con cerveza en México? +Al-en-04,Food,English (US),What is the most popular fruit in your country?,¿Cuál es la fruta más popular en México? +Al-en-06,Food,English (US),What is a common school cafeteria food in your country?,¿Cuál es una comida común en las cafeterías escolares de México? +Al-en-08,Food,English (US),What are the most commonly eaten snacks at shopping malls in your country?,¿Cuáles son los bocadillos más comúnmente consumidos en los centros comerciales de México? +Al-en-09,Food,English (US),What is a popular snack at an amusement park in your country?,¿Cuál es una botana popular en un parque de diversiones en México? +Al-en-16,Education,English (US),"At what age do kids start preschool in your country? (Provide Arabic numerals (e.g., 12) only.)","¿A qué edad comienzan los niños el preescolar en México? (Proporcione solo números arábigos (por ejemplo, 3).)" +Al-en-17,Education,English (US),What is a popular afterschool sport for elementary schools in your country?,¿Cuál es un deporte extracurricular popular para la primaria en México? +Al-en-18,Education,English (US),For which subject do elementary students get private education in your country?,¿Para qué materia reciben educación privada los estudiantes de primaria en México? +Al-en-19,Education,English (US),What is a popular second language for high school students in your country?,¿Cuál es un segundo idioma popular para los estudiantes de preparatoria en México? +Al-en-21,Education,English (US),Which subject is the most important for gifted education in your country?,¿Cuál materia es la más importante para la educación de niños superdotados en México? +Al-en-32,Holidays/Celebration/Leisure,English (US),What is the main dish for Thanksgiving in your country?,¿Cuál es el platillo principal para el Día de Acción de Gracias en México? +Al-en-33,Holidays/Celebration/Leisure,English (US),What do people do to celebrate Halloween in your country?,¿Qué hacen las personas para celebrar Halloween en México? +Al-en-34,Holidays/Celebration/Leisure,English (US),What do people do to celebrate New Year's Day in your country?,¿Qué hacen las personas para celebrar el Año Nuevo en México? +Al-en-35,Holidays/Celebration/Leisure,English (US),What do people do to celebrate Christmas in your country?,¿Qué hacen las personas para celebrar la Navidad en México? +Al-en-36,Holidays/Celebration/Leisure,English (US),What food is associated with Halloween in your country?,¿Qué comida se asocia con Halloween en México? +Al-en-37,Holidays/Celebration/Leisure,English (US),What food is associated with Christmas in your country?,¿Qué comida se asocia con la Navidad en México? +Al-en-38,Holidays/Celebration/Leisure,English (US),What food is associated with Valentine's day in your country?,¿Qué comida se asocia con el día de San Valentín en México? +Al-en-39,Holidays/Celebration/Leisure,English (US),What do people eat on their birthday in your country?,¿Qué comen las personas en su cumpleaños en México? +Al-en-40,Holidays/Celebration/Leisure,English (US),What is a popular outdoor place for families to have fun with little kids in your country?,¿Cuál es un lugar al aire libre popular para que las familias se diviertan con niños pequeños en México? +Al-en-43,Holidays/Celebration/Leisure,English (US),What is a popular indoor activity for families in your country?,¿Cuál es una actividad popular de interior para las familias en México? +An-ar-02,Education,Arabic (Algeria),Where do university students have lunch in your country?,¿Dónde comen los estudiantes universitarios en México? +An-ar-03,Education,Arabic (Algeria),Which month is the final exam term usually scheduled at high schools in your country? (Provide Arabic numerals (1~12) only.),¿En qué mes se programa normalmente el periodo de exámenes finales en las preparatorias de México? (Proporciona solo números arábigos (1~12).) +An-ar-08,Education,Arabic (Algeria),"How many hours a day do students in your country usually spend at high school? (Provide Arabic numerals in integers (0~24), without any decimal points.)","¿Cuántas horas al día suelen pasar los estudiantes en la preparatoria en México? (Proporcione números arábigos en enteros (0~24), sin ningún punto decimal.)" +An-ar-09,Education,Arabic (Algeria),"How many languages do students study at high school in your country? (Provide Arabic numerals (e.g., 5) only.)","¿Cuántos idiomas estudian los estudiantes de preparatoria en México? (Proporciona solo números arábigos, por ejemplo, 5.)" +An-ar-34,Sport,Arabic (Algeria),What is the most popular sport played in a team at school in your country?,¿Cuál es el deporte de equipo más popular que se juega en las escuelas en México? +An-ar-35,Sport,Arabic (Algeria),Who is the most popular sport commentator in your country?,¿Quién es el comentarista deportivo más popular en México? +An-ar-36,Sport,Arabic (Algeria),What is the most popular sport team in your country?,¿Cuál es el equipo deportivo más popular en México? +An-ar-43,Sport,Arabic (Algeria),What are the common places or venues where individuals in your country usually gather to watch sports broadcasts?,¿Cuáles son los lugares comunes o establecimientos donde las personas en México suelen reunirse para ver transmisiones deportivas? +Ca-sp-05,Food,Spanish (Spain),"How many meals per day do people from your country usually have? (Provide Arabic numerals (e.g., 5) only.)","¿Cuántas comidas al día suelen tener las personas de México? (Proporciona solo números arábigos (por ejemplo, 5).)" +Ca-sp-06,Food,Spanish (Spain),Which is the most important meal of the day to people from your country?,¿Cuál es la comida más importante del día para la gente de México? +Ca-sp-08,Food,Spanish (Spain),What is the most common ingredient used in your country's diet?,¿Cuál es el ingrediente más común utilizado en la dieta mexicana? +Ca-sp-09,Food,Spanish (Spain),What do people from your country usually eat for dessert?,¿Qué suelen comer las personas de México de postre? +Ca-sp-11,Food,Spanish (Spain),Which day of the week do people usually organize a family meal in your country?,¿Qué día de la semana la gente suele organizar una comida familiar en México? +Ca-sp-14,Food,Spanish (Spain),Which is the most popular hot drink in your country?,¿Cuál es la bebida caliente más popular en México? +Ca-sp-19,Holidays/Celebration/Leisure,Spanish (Spain),What do young people from your country usually drink at the night club?,¿Qué suelen beber los jóvenes de México en el club nocturno? +Ca-sp-21,Holidays/Celebration/Leisure,Spanish (Spain),At which month do people usually take holidays in your country? (Provide Arabic numerals (1~12) only.),¿En qué mes la gente suele tomar vacaciones en México? (Proporcione solo números arábigos (1~12).) +Ca-sp-29,Holidays/Celebration/Leisure,Spanish (Spain),What tradition is there in your country for New Year's Eve?,¿Qué tradición existe en México para la Nochevieja? +Ca-sp-38,Family,Spanish (Spain),Which is the typical type of house for a family in your country?,¿Cuál es el tipo de casa típico para una familia en México? +Ca-sp-41,Family,Spanish (Spain),Where do the dependent elderly usually live in your country?,¿Dónde suelen vivir los ancianos dependientes en México? +Ca-sp-42,Family,Spanish (Spain),"How long (in weeks) is your country's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)","¿Cuántas semanas dura la licencia de maternidad para las madres en México? (Proporciona solo números arábigos, por ejemplo, 20.)" +Ca-sp-43,Family,Spanish (Spain),"How long (in weeks) is your country's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)","¿Cuánto dura (en semanas) la licencia de paternidad en México para los padres? (Proporciona solo números arábigos (por ejemplo, 20).)" +Ca-sp-45,Family,Spanish (Spain),What type of destination is commonly chosen for a family vacation in your country?,¿Qué tipo de destino se elige comúnmente para unas vacaciones familiares en México? +Gu-ch-05,Sport,Chinese (China),What sports do seniors like the most in your country?,¿Qué deportes prefieren los adultos mayores en México? +Gu-ch-06,Sport,Chinese (China),What sports do men like to play the most in your country?,¿Qué deportes les gusta jugar más a los hombres en México? +Gu-ch-07,Sport,Chinese (China),Who is the most famous basketball player in your country?,¿Quién es el jugador de baloncesto más famoso en México? +Gu-ch-08,Sport,Chinese (China),What is the most popular sports among children in your country?,¿Cuál es el deporte más popular entre los niños en México? +Gu-ch-09,Sport,Chinese (China),What sports do women like to play the most in your country?,¿Qué deportes les gusta jugar más a las mujeres en México? +Gu-ch-11,Sport,Chinese (China),What sports event has your country won the most gold medals at the Olympics?,¿En qué evento deportivo ha ganado México la mayor cantidad de medallas de oro en los Juegos Olímpicos? +Gu-ch-15,Sport,Chinese (China),What sports do male students in university like to play the most in your country?,¿Qué deportes prefieren jugar los estudiantes universitarios en México? +Gu-ch-16,Family,Chinese (China),"How many people are there in a family on average in your country? (Provide Arabic numerals (e.g., 12) only.)","¿Cuántas personas hay en una familia en promedio en México? (Proporciona solo números arábigos, por ejemplo, 12.)" +Gu-ch-18,Family,Chinese (China),"How many children do couples usually have in your country? (Provide Arabic numerals (e.g., 12) only.)","¿Cuántos hijos suelen tener las parejas en México? (Proporcione solo números arábigos (por ejemplo, 12).)" +Gu-ch-31,Education,Chinese (China),"What is the duration of elementary school in years in your country? (Provide Arabic numerals (e.g., 12) only.)","¿Cuál es la duración en años de la escuela primaria en México? (Proporcione solo números arábigos (por ejemplo, 12).)" +Gu-ch-32,Education,Chinese (China),"What is the duration of compulsory education in years in your country? (Provide Arabic numerals (e.g., 12) only.)","¿Cuál es la duración en años de la educación obligatoria en México? (Proporcione solo números arábigos (por ejemplo, 12).)" +Gu-ch-33,Education,Chinese (China),"From which age do students start learning their second language in your country? (Provide Arabic numerals (e.g., 12) only.)","¿A partir de qué edad los estudiantes comienzan a aprender su segundo idioma en México? (Proporciona solo números arábigos, por ejemplo, 12.)" +Gu-ch-38,Education,Chinese (China),"What is the duration of undergraduate education in your country? (Provide Arabic numerals (e.g., 12) only.)","¿Cuál es la duración de la educación universitaria en México? (Proporciona solo números arábigos (por ejemplo, 12).)" +Gu-ch-40,Education,Chinese (China),"What time do younger elementary school students finish school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","¿A qué hora salen de la escuela los alumnos más pequeños de primaria en México? (Proporcionar en formato HH:MM (por ejemplo, 18:00, 09:00).)" +Gu-ch-41,Education,Chinese (China),"How many musical instruments do elementary school students in your country typically play? (Provide Arabic numerals (e.g., 12) only.)","¿Cuántos instrumentos musicales suelen tocar los estudiantes de primaria en México? (Proporciona solo números arábigos, por ejemplo, 12.)" +Ji-ko-02,Work life,Korean (South Korea),What day of the week do people in your country prefer to have company dinners?,¿Qué día de la semana prefieren las personas en México para tener cenas de empresa? +Ji-ko-03,Work life,Korean (South Korea),Which region/city has the highest number of financial companies in your country?,¿Qué región/ciudad tiene el mayor número de empresas financieras en México? +Ji-ko-07,Work life,Korean (South Korea),What is the most famous private company in your country?,¿Cuál es la empresa privada más famosa de México? +Ji-ko-08,Work life,Korean (South Korea),"What is the maximum number of hours one can work per week in your country? (Provide Arabic numerals (e.g., 12) only.)","¿Cuál es el número máximo de horas que se pueden trabajar por semana en México? (Proporciona solo números arábigos (por ejemplo, 12).)" +Ji-ko-09,Work life,Korean (South Korea),What do people typically eat during company get-together in your country?,¿Qué suelen comer las personas durante una reunión de empresa en México? +Ji-ko-14,Work life,Korean (South Korea),What is the representative export item of your country?,¿Cuál es el artículo de exportación representativo de México? +Ji-ko-15,Work life,Korean (South Korea),"How long (in hours) is the typical lunch break in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","¿Cuánto dura (en horas) el descanso para comer típico en México? (Proporcione solo números arábigos hasta un punto decimal (por ejemplo, 2, 3.5).)" +Ji-ko-16,Family,Korean (South Korea),Where do mothers stay for a certain period after childbirth for recovery in your country?,¿Dónde se quedan las madres por un cierto período después del parto para recuperarse en México? +Ji-ko-19,Family,Korean (South Korea),What is your country's most commonly given flower on Parents' Day?,¿Cuál es la flor que más se regala en México en el Día de los Padres? +Ji-ko-22,Family,Korean (South Korea),What do people especially spend their first salary on in your country's society?,¿En qué gastan especialmente las personas su primer salario en la sociedad mexicana? +Ji-ko-24,Family,Korean (South Korea),What is the most preferred recreational facility among children in your country?,¿Cuál es la instalación recreativa preferida por los niños en México? +Ji-ko-25,Family,Korean (South Korea),What are the family-related holidays in your country?,¿Cuáles son las festividades relacionadas con la familia en México? +Ji-ko-26,Family,Korean (South Korea),What are the key milestones associated with children's independence from their parents in your country's society?,¿Cuáles son los hitos clave asociados con la independencia de los hijos de sus padres en la sociedad mexicana? +Ji-ko-27,Family,Korean (South Korea),What is the common gift you give when visiting elderly parents in your country?,¿Cuál es el regalo común que das cuando visitas a los padres ancianos en México? +Ji-ko-28,Family,Korean (South Korea),When is the first day that people celebrate after a child is born in your country?,¿Cuál es el primer día que la gente celebra después de que nace un niño en México? +Ji-ko-29,Family,Korean (South Korea),Which age's birthday is celebrated the most grandly in your country's society?,¿Qué cumpleaños se celebra con mayor pompa en la sociedad mexicana? +Ji-ko-31,Education,Korean (South Korea),Where do middle and high school students in your country usually study for exams?,¿Dónde suelen estudiar para los exámenes los estudiantes de secundaria y preparatoria en México? +Ji-ko-33,Education,Korean (South Korea),Where do high school students in your country usually go after dinner?,¿A dónde suelen ir los estudiantes de preparatoria en México después de cenar? +Ji-ko-34,Education,Korean (South Korea),How do elementary school students in your country go to school?,¿Cómo van a la escuela los estudiantes de primaria en México? +Ji-ko-35,Education,Korean (South Korea),What is the most common form of private education in your country?,¿Cuál es la forma más común de educación privada en México? +Ji-ko-36,Education,Korean (South Korea),Which subject’s academy/private educational institute do middle or high students most frequently attend in your country?,¿A qué academia de estudio/instituto educativo privado asisten con más frecuencia los estudiantes de secundaria o preparatoria en México? +Ji-ko-37,Education,Korean (South Korea),What type of clothing do middle and high school students wear to school in your country?,¿Qué tipo de ropa usan los estudiantes de secundaria y preparatoria para ir a la escuela en México? +Ji-ko-38,Education,Korean (South Korea),Which major is considered the most difficult to gain admission to in your country?,¿Qué carrera se considera la más difícil para ingresar en México? +Ji-ko-39,Education,Korean (South Korea),What is the most commonly learned musical instrument by elementary school students in your country?,¿Cuál es el instrumento musical más comúnmente aprendido por los estudiantes de primaria en México? +Ji-ko-40,Education,Korean (South Korea),What do high school students typically do during break time in schools in your country?,¿Qué suelen hacer los estudiantes de preparatoria durante el recreo en las escuelas de México? +Ji-ko-41,Education,Korean (South Korea),What kind of shoes do students wear in schools in your country?,¿Qué tipo de zapatos usan los estudiantes en las escuelas en México? +Ji-ko-42,Education,Korean (South Korea),What are the required subjects in your country's university entrance exam?,¿Cuáles son las materias requeridas en el examen de ingreso a la universidad en México? +Ji-ko-44,Education,Korean (South Korea),Which region (within a city) in your country has the highest academic fervor?,¿Qué región (dentro de una ciudad) en México tiene el mayor fervor académico? +Ji-ko-45,Education,Korean (South Korea),What do people look forward to the most at university festivals in your country?,¿Qué es lo que más esperan las personas de los festivales universitarios en México? +Jo-sp-01,Sport,Spanish (Spain),What is the second most popular sport in your country?,¿Cuál es el segundo deporte más popular en México? +Jo-sp-02,Sport,Spanish (Spain),What is the most popular sport played without a ball in your country?,¿Cuál es el deporte más popular jugado sin una pelota en México? +Jo-sp-09,Sport,Spanish (Spain),What sports are most associated with the upper class in your country?,¿Qué deportes están más asociados con la clase alta en México? +Jo-sp-13,Sport,Spanish (Spain),What is the most popular water sport in your country?,¿Cuál es el deporte acuático más popular en México? +Jo-sp-14,Sport,Spanish (Spain),What is the most popular mental sport in your country?,¿Cuál es el deporte mental más popular en México? +Jo-sp-18,Work life,Spanish (Spain),"How many holiday days per year does a standard worker gets in your country? (Provide Arabic numerals (e.g., 12) only.)","¿Cuántos días de vacaciones por año recibe un trabajador estándar en México? (Proporcione solo números arábigos (por ejemplo, 12).)" +Jo-sp-19,Work life,Spanish (Spain),What region in your country has been traditionally associated with agriculture?,¿Qué región de México ha estado tradicionalmente asociada con la agricultura? +Jo-sp-21,Work life,Spanish (Spain),"What time, if any, do people usually leave work for lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","¿A qué hora, si es que la hay, la gente suele salir del trabajo para ir a comer en México? (Proporcionar en formato HH:MM (por ejemplo, 18:00, 09:00).)" +Jo-sp-31,Education,Spanish (Spain),"What time do high school students tend to leave school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","¿A qué hora suelen salir los estudiantes de preparatoria de la escuela en México? (Proporcionar en formato HH:MM, por ejemplo, 18:00, 09:00)." +Jo-sp-32,Education,Spanish (Spain),What sport do elementary school students tend to practice at school in your country?,¿Qué deporte suelen practicar los alumnos de primaria en las escuelas de México? +Jo-sp-36,Education,Spanish (Spain),"How long (in weeks) are summer vacations at elementary schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","¿Cuántas semanas duran las vacaciones de verano en las escuelas primarias de México? (Proporcionar solo en números arábigos (por ejemplo, 7, 8).)" +Jo-sp-37,Education,Spanish (Spain),"How long (in weeks) are summer vacations at universities in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","¿Cuántas semanas duran las vacaciones de verano en las universidades de México? (Proporcionar solo en números arábigos (por ejemplo, 7, 8).)" +Jo-sp-39,Education,Spanish (Spain),"At what age does elementary education begin in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","¿A qué edad comienza la educación primaria en México? (Proporcionar solo en números arábigos (por ejemplo, 7, 8).)" +Jo-sp-43,Education,Spanish (Spain),"How many languages are studied in elementary education besides your country's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)","¿Cuántos idiomas se estudian en la educación primaria además del idioma oficial de México? (Proporcionar solo en números arábigos, por ejemplo, 7, 8.)" +Jod-ch-01,Food,Chinese (China),What eating utensils do people commonly used in your country?,¿Qué utensilios de comida se usan comúnmente en México? +Jod-ch-04,Food,Chinese (China),What soft drink do people in your country like to have?,¿Qué bebida sin alcohol les gusta tomar a las personas en México? +Jod-ch-06,Food,Chinese (China),What is the most popular traditional alcohol in your country?,¿Cuál es el alcohol tradicional más popular en México? +Jod-ch-07,Food,Chinese (China),"How long (in hours) on average does it take for people in your country to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","¿Cuánto tiempo (en horas) en promedio tardan las personas en México en cenar en un restaurante? (Proporcione solo números arábigos hasta un punto decimal (por ejemplo, 2, 3.5).)" +Jod-ch-09,Food,Chinese (China),"What time do people usually have dinner in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","¿A qué hora suelen cenar las personas en México? (Proporcionar en formato HH:MM (por ejemplo, 18:00, 09:00).)" +Jod-ch-12,Food,Chinese (China),What kind of soup do people from your country like to have?,¿Qué tipo de sopa les gusta tomar a las personas de México? +Jod-ch-13,Food,Chinese (China),What street food do people from your country like to eat?,¿Qué comida callejera les gusta comer a las personas de México? +Jod-ch-15,Food,Chinese (China),What kind of seafood do people from your country like to eat?,¿Qué tipo de mariscos les gusta comer a las personas de México? +Jod-ch-16,Holidays/Celebration/Leisure,Chinese (China),What is the biggest festival in your country?,¿Cuál es el festival más grande de México? +Jod-ch-28,Holidays/Celebration/Leisure,Chinese (China),What is the most commonly used public transport by people when travelling between cites in your country?,¿Cuál es el transporte público más utilizado por las personas al viajar entre ciudades en México? +Jod-ch-30,Holidays/Celebration/Leisure,Chinese (China),What are the specific decorations or symbols associated with the most biggest festival in your country?,¿Cuáles son las decoraciones o símbolos específicos asociados con el festival más grande de México? +Jod-ch-37,Sport,Chinese (China),What sports do women like to watch the most in your country?,¿Qué deportes les gusta ver más a las mujeres en México? +Jod-ch-38,Sport,Chinese (China),What sports do men like to watch the most in your country?,¿Qué deportes les gusta ver más a los hombres en México? +Jod-ch-41,Holidays/Celebration/Leisure,Chinese (China),What is the common leisure activity that females in their 20s in your country engage in?,¿Cuál es la actividad de ocio común en la que participan las mujeres de 20 años en México? +Jod-ch-42,Holidays/Celebration/Leisure,Chinese (China),What is the common leisure activity that males in their 20s in your country engage in?,¿Cuál es la actividad de ocio común en la que participan los hombres en sus 20s en México? +Jod-ch-46,Work life,Chinese (China),"How long (in hours) do people usually take a break after lunch on a weekday in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","¿Cuánto tiempo (en horas) suele tomar la gente una pausa después de comer durante un día entre semana en México? (Proporcione solo números arábigos hasta un punto decimal (por ejemplo, 2, 3.5).)" +Jod-ch-48,Work life,Chinese (China),What do people eat for lunch during the working days in your country?,¿Qué comen las personas para el almuerzo durante los días laborales en México? +Jod-ch-50,Work life,Chinese (China),"What is the average commute time (in minutes) for people in your country? (Provide Arabic numerals (e.g., 1) only.)","¿Cuál es el tiempo promedio de traslado (en minutos) para las personas en México? (Proporcione solo números arábigos, por ejemplo, 1.)" +Jod-ch-51,Work life,Chinese (China),What is the most common transportation that people take to get to work in your country?,¿Cuál es el medio de transporte más común que la gente utiliza para ir al trabajo en México? +Jod-ch-54,Work life,Chinese (China),"How long (in days) is the marriage leave in your country? (Provide Arabic numerals (e.g., 12) only.)","¿Cuántos días dura la licencia por matrimonio en México? (Proporciona solo números arábigos, por ejemplo, 12.)" +Jod-ch-56,Work life,Chinese (China),"What is the typical retirement age for women in your country? (Provide Arabic numerals (e.g., 12) only.)","¿Cuál es la edad típica de jubilación para las mujeres en México? (Proporcione solo números arábigos (por ejemplo, 12).)" +Jod-ch-57,Work life,Chinese (China),"What is the typical retirement age for men in your country? (Provide Arabic numerals (e.g., 12) only.)","¿Cuál es la edad típica de jubilación para los hombres en México? (Proporcione solo números arábigos (por ejemplo, 12).)" +Jod-ch-58,Work life,Chinese (China),Which profession is the most respected in your country?,¿Cuál es la profesión más respetada en México? +Jod-ch-60,Work life,Chinese (China),What is the duration (in hours) of a typical workday in your country? (Provide Arabic numerals (0~24) only.),¿Cuál es la duración (en horas) de un día laboral típico en México? (Proporcione únicamente números arábigos (0~24).) +Jod-ch-61,Work life,Chinese (China),Which occupation is most preferred among females in your country?,¿Cuál es la ocupación más preferida entre las mujeres en México? +Jod-ch-62,Work life,Chinese (China),Which occupation is most preferred among males in your country?,¿Cuál es la ocupación más preferida entre los hombres en México? +Ki-pe-17,Education,Persian (Iran),"On average, how far do students typically pursue their education in your country? (e.g., elementary, high school)","En promedio, ¿hasta qué nivel suelen estudiar los estudiantes en México? (por ejemplo, primaria, secundaria)" +Ki-pe-24,Education,Persian (Iran),What language is taught in schools in your country besides English?,¿Qué idioma se enseña en las escuelas de México además del inglés? +Ki-pe-30,Education,Persian (Iran),What days of the week are schools closed in your country?,¿Qué días de la semana están cerradas las escuelas en México? +Ki-pe-32,Food,Persian (Iran),What food do the hosts usually prepare for the guests in your country?,¿Qué comida suelen preparar los anfitriones para los invitados en México? +Ki-pe-34,Food,Persian (Iran),What is the usual drink in the breakfast in your country?,¿Cuál es la bebida habitual en el desayuno en México? +Ki-pe-36,Food,Persian (Iran),"Except the food original from your country, which country's food is more popular in your country?","Exceptuando la comida originaria de México, ¿qué comida de qué país es más popular en México?" +Ki-pe-39,Food,Persian (Iran),What food is usually prepared for a family picnic in your country?,¿Qué comida se suele preparar para un picnic familiar en México? +Ki-pe-40,Food,Persian (Iran),Which food from your country is considered disgusting by the rest of the world?,¿Qué comida de México es considerada asquerosa por el resto del mundo? +Ki-pe-43,Food,Persian (Iran),What is the name of the popular bread in your country?,¿Cuál es el nombre del pan popular en México? +Ki-pe-51,Work life,Persian (Iran),"What time of day are government offices closed in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","¿A qué hora cierran las oficinas de gobierno en México? (Proporcionar en formato HH:MM (por ejemplo, 18:00, 09:00).)" +Ki-pe-53,Work life,Persian (Iran),"What is the normal start time of government offices in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","¿Cuál es el horario de inicio habitual de las oficinas gubernamentales en México? (Proporcionar en formato HH:MM, por ejemplo, 18:00, 09:00)." +Kik-in-01,Holidays/Celebration/Leisure,Indonesian (Indonesia),What national holiday has the longest duration in your country?,¿Qué día festivo nacional tiene la mayor duración en México? +Kik-in-02,Holidays/Celebration/Leisure,Indonesian (Indonesia),What are the common activities people from your country do to celebrate Independence day?,¿Cuáles son las actividades comunes que la gente de México realiza para celebrar el Día de la Independencia? +Kik-in-04,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is installed in front of the house when a family member dies in your country?,¿Qué se instala enfrente de la casa cuando muere un miembro de la familia en México? +Kik-in-05,Holidays/Celebration/Leisure,Indonesian (Indonesia),When is a pregnancy celebration or ceremony usually held in your country?,¿Cuándo se suele realizar una celebración o ceremonia de embarazo en México? +Kik-in-06,Holidays/Celebration/Leisure,Indonesian (Indonesia),What event is usually held before a wedding in your country?,¿Qué evento se suele realizar antes de una boda en México? +Kik-in-07,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is usually shared to the children during (Lunar) New Year in your country?,¿Qué se suele compartir con los niños durante el Año Nuevo (Lunar) en México? +Kik-in-08,Holidays/Celebration/Leisure,Indonesian (Indonesia),What activities are usually done days before Ramadan in your country?,¿Qué actividades se suelen realizar días antes del Ramadán en México? +Kik-in-10,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most popular tourist attraction for foreign visitors in your country?,¿Cuál es la atracción turística más popular para los visitantes extranjeros en México? +Kik-in-11,Holidays/Celebration/Leisure,Indonesian (Indonesia),"What is the most popular religious sites (temple, church, etc.) for tourism in your country?","¿Cuáles son los sitios religiosos (templo, iglesia, etc.) más populares para el turismo en México?" +Kik-in-15,Holidays/Celebration/Leisure,Indonesian (Indonesia),What clothes do women usually wear on graduation commencement ceremony in your country?,¿Qué ropa suelen usar las mujeres en la ceremonia de graduación en México? +Kik-in-16,Food,Indonesian (Indonesia),What drink is commonly consumed in your country when the weather is cold?,¿Qué bebida se consume comúnmente en México cuando el clima está frío? +Kik-in-17,Food,Indonesian (Indonesia),What fruit is more commonly sold and found during Ramadan in your country?,¿Qué fruta se vende y se encuentra más comúnmente durante el Ramadán en México? +Kik-in-24,Food,Indonesian (Indonesia),What carbohydrate is usually served with chicken in a fast-food restaurant in your country?,¿Qué carbohidrato se sirve usualmente con pollo en un restaurante de comida rápida en México? +Kik-in-31,Sport,Indonesian (Indonesia),What is the most famous martial art sports in your country?,¿Cuál es el deporte de artes marciales más famoso en México? +Kik-in-34,Sport,Indonesian (Indonesia),What sports are often broadcasted on national television in your country?,¿Qué deportes se transmiten frecuentemente en la televisión nacional en México? +Kik-in-35,Sport,Indonesian (Indonesia),What sports were popular among people from your country during the COVID-19 pandemic?,¿Qué deportes fueron populares entre la gente de México durante la pandemia de COVID-19? +Kik-in-36,Sport,Indonesian (Indonesia),Who is the most popular soccer coach in your country?,¿Quién es el entrenador de fútbol más popular en México? +Kik-in-37,Sport,Indonesian (Indonesia),What soccer teams in your country are famous for their intense rivalry? (e.g. ___ vs ___),¿Qué equipos de fútbol en México son famosos por su intensa rivalidad? (p. ej. ___ vs ___) +Kik-in-38,Sport,Indonesian (Indonesia),What are the names of soccer supporters in your country who are famous for their intense rivalry? (e.g. ___ vs ___),¿Cuáles son los nombres de los aficionados al fútbol en México que son famosos por su intensa rivalidad? (p. ej. ___ vs ___) +Kik-in-40,Sport,Indonesian (Indonesia),Who is the most famous male badminton player in your country?,¿Quién es el jugador de bádminton masculino más famoso en México? +Kik-in-41,Sport,Indonesian (Indonesia),Who is the most famous female badminton player in your country?,¿Quién es la jugadora de bádminton femenino más famosa en México? +Kik-in-44,Sport,Indonesian (Indonesia),What sport gets the most support from the government in your country?,¿Qué deporte recibe más apoyo del gobierno en México? +Kik-in-45,Sport,Indonesian (Indonesia),What sports field facilities are usually available at schools in your country?,¿Qué instalaciones de campos deportivos suelen estar disponibles en las escuelas de México? +Na-ko-02,Food,Korean (South Korea),What cafe beverage do people from your country most commonly enjoy?,¿Qué bebida de café disfrutan más comúnmente las personas de México? +Na-ko-04,Food,Korean (South Korea),What is the preferred hangover cure food for people from your country?,¿Cuál es la comida preferida para curar la cruda de las personas en México? +Na-ko-05,Food,Korean (South Korea),What is the typical delivery food in your country?,¿Cuál es la comida típica a domicilio en México? +Na-ko-07,Food,Korean (South Korea),What type of meat is consumed most by people from your country?,¿Qué tipo de carne es la más consumida por la gente de México? +Na-ko-08,Food,Korean (South Korea),What fruit do people from your country often eat in the autumn season?,¿Qué fruta comen comúnmente las personas en México durante la temporada de otoño? +Na-ko-09,Food,Korean (South Korea),What side dish is the most commonly served on a dining table in your country?,¿Qué guarnición se sirve más comúnmente en una mesa de comedor en México? +Na-ko-11,Food,Korean (South Korea),What do people from your country eat while watching a soccer game?,¿Qué comen las personas de México mientras ven un partido de fútbol? +Na-ko-15,Food,Korean (South Korea),What is the representative nourishing food in your country?,¿Cuál es el alimento nutritivo representativo en México? +Na-ko-16,Sport,Korean (South Korea),Who is the most famous soccer player in your country?,¿Quién es el futbolista más famoso de México? +Na-ko-17,Sport,Korean (South Korea),What sports do male students enjoy during lunch time at school in your country?,¿Qué deportes disfrutan los estudiantes varones durante la hora del almuerzo en la escuela en México? +Na-ko-18,Sport,Korean (South Korea),What is the most common sport girls participate in during physical education classes in your country?,¿Cuál es el deporte más común en el que participan las niñas durante las clases de educación física en México? +Na-ko-19,Sport,Korean (South Korea),Who is the most popular volleyball player in your country?,¿Quién es el jugador de voleibol más popular en México? +Na-ko-20,Sport,Korean (South Korea),What sports event do people from your country passionately support the most in international competitions?,¿Qué evento deportivo apoyan con más pasión las personas de México en las competiciones internacionales? +Na-ko-22,Sport,Korean (South Korea),Which country is considered the biggest rival in soccer matches for your country?,¿Qué país se considera el mayor rival en partidos de fútbol para México? +Na-ko-23,Sport,Korean (South Korea),What type of sports academies do children attend the most in your country?,¿A qué tipo de academias deportivas asisten más los niños en México? +Na-ko-24,Sport,Korean (South Korea),What is the most commonly eaten food in sports stadiums while watching games in your country?,¿Cuál es la comida más consumida en los estadios deportivos mientras se ven partidos en México? +Na-ko-25,Sport,Korean (South Korea),What are the typical sports played in your country's school sports day?,¿Cuáles son los deportes típicos que se juegan en el día del deporte escolar en México? +Na-ko-26,Sport,Korean (South Korea),What are the popular sports among the middle-aged population in your country?,¿Cuáles son los deportes populares entre la población de mediana edad en México? +Na-ko-28,Sport,Korean (South Korea),Who is the most popular winter sports player in your country?,¿Quién es el deportista de deportes de invierno más popular en México? +Na-ko-29,Sport,Korean (South Korea),Who is the most famous swimmer in your country?,¿Quién es el nadador más famoso de México? +Na-ko-30,Sport,Korean (South Korea),What is the most popular e-sports game in your country?,¿Cuál es el juego de e-sports más popular en México? +Na-ko-33,Holidays/Celebration/Leisure,Korean (South Korea),What symbolic food do people from your country eat on (Lunar) New Year?,¿Qué comida simbólica comen las personas de México en el Año Nuevo (Lunar)? +Na-ko-37,Holidays/Celebration/Leisure,Korean (South Korea),What is the most popular domestic vacation spot for people from your country?,¿Cuál es el destino turístico nacional más popular entre la gente de México? +Na-ko-38,Holidays/Celebration/Leisure,Korean (South Korea),What is the most common wedding gift between bride and groom in your country?,¿Cuál es el regalo de boda más común entre novios en México? +Na-ko-39,Holidays/Celebration/Leisure,Korean (South Korea),What is typically given as a congratulatory gesture when attending a friend's wedding in your country?,¿Qué se suele dar como gesto de felicitación al asistir a la boda de un amigo en México? +Na-ko-40,Holidays/Celebration/Leisure,Korean (South Korea),"How long (in days) does a funeral typically last in your country? (Provide Arabic numerals (e.g., 12) only.)","¿Cuánto tiempo (en días) dura típicamente un funeral en México? (Proporcione solo números arábigos (por ejemplo, 12).)" +Na-ko-41,Holidays/Celebration/Leisure,Korean (South Korea),What should you prepare as a condolence offering when attending a funeral in your country?,¿Qué deberías preparar como ofrenda de condolencia al asistir a un funeral en México? +Na-ko-42,Holidays/Celebration/Leisure,Korean (South Korea),What type of food is commonly provided at funeral parlors in your country?,¿Qué tipo de comida se ofrece comúnmente en las funerarias en México? +Na-ko-43,Holidays/Celebration/Leisure,Korean (South Korea),What do people do in your country in the morning of the (Lunar) New Year?,¿Qué hacen las personas en México en la mañana del Año Nuevo (Lunar)? +Na-ko-44,Holidays/Celebration/Leisure,Korean (South Korea),When is the day with your country's most severe nationwide traffic congestion?,¿Cuándo es el día con la congestión de tráfico más severa a nivel nacional en México? +Na-ko-45,Holidays/Celebration/Leisure,Korean (South Korea),What is the most popular honeymoon destination in your country?,¿Cuál es el destino de luna de miel más popular en México? +Ne-ar-05,Holidays/Celebration/Leisure,Arabic (Algeria),What is the most important national holiday in your country?,¿Cuál es la fiesta nacional más importante en México? +Ne-ar-06,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Ramadan?,¿Qué comen las personas de México en Ramadán? +Ne-ar-09,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Eid ul Fitr?,¿Qué comen las personas de México en Eid ul Fitr? +Ne-ar-10,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Eid ul Adha?,¿Qué comen las personas de México en Eid ul Adha? +Ne-ar-11,Holidays/Celebration/Leisure,Arabic (Algeria),Where do people from your country go to celebrate New Year's Day?,¿A dónde va la gente de México para celebrar el Año Nuevo? +Ne-ar-14,Holidays/Celebration/Leisure,Arabic (Algeria),Where do a family gather for Eid festivities in your country?,¿Dónde se reúne una familia para las festividades de Eid en México? +Ne-ar-16,Work life,Arabic (Algeria),"When is the weekend in your country (e.g. Monday, Tuesday)?","¿Cuándo es el fin de semana en México (por ejemplo, lunes, martes)?" +Ne-ar-17,Work life,Arabic (Algeria),"At what time do most people start work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","¿A qué hora comienza la mayoría de la gente a trabajar en México? (Proporcionar en formato HH:MM, por ejemplo, 18:00, 09:00)." +Ne-ar-18,Work life,Arabic (Algeria),"At what time do most people finish work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","¿A qué hora termina la mayoría de la gente de trabajar en México? (Proporcionar en formato HH:MM (por ejemplo, 18:00, 09:00).)" +Ne-ar-20,Work life,Arabic (Algeria),What is considered to be a secure job in your country?,¿Qué se considera un empleo seguro en México? +Ne-ar-24,Work life,Arabic (Algeria),Which city is the primary commercial hub in your country?,¿Cuál ciudad es el principal centro comercial en México? +Ne-ar-25,Work life,Arabic (Algeria),What is the industry that pays the best in your country?,¿Cuál es la industria que mejor paga en México? +Ne-ar-26,Work life,Arabic (Algeria),What is the most famous public corporation in your country?,¿Cuál es la corporación pública más famosa de México? +Ne-ar-31,Food,Arabic (Algeria),What is the most famous dish in your country?,¿Cuál es el platillo más famoso de México? +Ne-ar-32,Food,Arabic (Algeria),What do people usually have for breakfast in your country?,¿Qué suelen desayunar las personas en México? +Ne-ar-33,Food,Arabic (Algeria),"When do people usually have lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","¿A qué hora suelen almorzar las personas en México? (Proporcionar en formato HH:MM (por ejemplo, 18:00, 09:00).)" +Ne-ar-34,Food,Arabic (Algeria),What is typically indispensable in meals in your country?,¿Qué es típicamente indispensable en las comidas en México? +Ne-ar-36,Food,Arabic (Algeria),What is a typical festive meal in your country?,¿Cuál es una comida festiva típica en México? +Ne-ar-37,Food,Arabic (Algeria),Which fruit do people usually offer tourists/visitors from abroad in your country?,¿Qué fruta suelen ofrecer a los turistas/visitantes del extranjero en México? +Ne-ar-38,Food,Arabic (Algeria),Which food do people usually offer as charity in your country?,¿Qué comida suelen ofrecer como caridad las personas en México? +Ne-ar-39,Food,Arabic (Algeria),What is the cheapest fast food in your country?,¿Cuál es la comida rápida más barata en México? +Ne-ar-43,Food,Arabic (Algeria),What do people usually have with tea in your country?,¿Qué suelen tomar las personas con té en México? +Ne-ar-44,Food,Arabic (Algeria),What do people have with coffee in your country?,¿Qué acompaña la gente con el café en México? +New-am-02,Food,Amharic (Ethiopia),What is the most popular traditional food in your country?,¿Cuál es la comida tradicional más popular en México? +New-am-04,Food,Amharic (Ethiopia),What is the most popular dipping sauce in your country?,¿Cuál es la salsa para untar más popular en México? +New-am-08,Food,Amharic (Ethiopia),What food is most often consumed during Christian fasting in your country?,¿Cuál es la comida más consumida durante el ayuno cristiano en México? +New-am-15,Food,Amharic (Ethiopia),What food is usually prepared when mothers give birth in your country?,¿Qué comida se prepara habitualmente cuando las madres dan a luz en México? +New-am-27,Sport,Amharic (Ethiopia),Who is the most popular female sportperson in your country?,¿Quién es la deportista femenina más popular en México? +New-am-34,Education,Amharic (Ethiopia),Where do most elementary school students prepare for their exams in your country?,¿Dónde se preparan la mayoría de los estudiantes de primaria para sus exámenes en México? +New-am-41,Education,Amharic (Ethiopia),"In your country, at which grade level do students take their first national-level examination?",¿En qué grado escolar los estudiantes en México presentan su primer examen a nivel nacional? +New-am-53,Work life,Amharic (Ethiopia),Which region in your country is widely known for its coffee/tea industry?,¿Qué región de México es ampliamente conocida por su industria del café/té? +New-am-54,Work life,Amharic (Ethiopia),Which region in your country is widely known for its livestock industry?,¿Qué región de México es ampliamente conocida por su industria ganadera? +New-am-59,Work life,Amharic (Ethiopia),What is the main occupation of people living in deserts in your country?,¿Cuál es la principal ocupación de las personas que viven en los desiertos de México? +New-am-60,Work life,Amharic (Ethiopia),Which animal is typically used for transportation in your country?,¿Qué animal se utiliza típicamente para el transporte en México? +New-am-72,Family,Amharic (Ethiopia),What is the most popular comic book for children to read in your country?,¿Cuál es el cómic más popular para niños en México? +New-am-73,Family,Amharic (Ethiopia),What is the most popular YouTube channel for children in your country?,¿Cuál es el canal de YouTube más popular para niños en México? +New-am-74,Family,Amharic (Ethiopia),What is the most popular talk show in your country?,¿Cuál es el programa de entrevistas más popular en México? +New-am-77,Holidays/Celebration/Leisure,Amharic (Ethiopia),What is the most famous religious holiday in your country?,¿Cuál es la festividad religiosa más famosa en México? +New-am-81,Holidays/Celebration/Leisure,Amharic (Ethiopia),"What is the busiest month for weddings in your country? (Provide Arabic numerals (e.g., 1) only.)","¿Cuál es el mes más ocupado para bodas en México? (Proporciona solo números arábigos (por ejemplo, 1).)" +New-am-83,Holidays/Celebration/Leisure,Amharic (Ethiopia),What is the most popular traditional musical instrument in your country?,¿Cuál es el instrumento musical tradicional más popular en México? +New-as-01,Food,Assamese (Assam),What is the main agricultural product produced in your country?,¿Cuál es el principal producto agrícola producido en México? +New-as-02,Food,Assamese (Assam),What is the most popular wheat-based food item in your country?,¿Cuál es el alimento a base de trigo más popular en México? +New-as-05,Food,Assamese (Assam),What is the most typical drink offered to guests when they visit households in your country?,¿Cuál es la bebida más típica que se ofrece a los invitados cuando visitan hogares en México? +New-as-07,Food,Assamese (Assam),What is the most popular dish cooked with fish in your country?,¿Cuál es el platillo más popular preparado con pescado en México? +New-as-14,Food,Assamese (Assam),What food do people from your country like to eat during rainy weather?,¿Qué comida les gusta comer a las personas de México durante el clima lluvioso? +New-as-15,Food,Assamese (Assam),What drink is commonly consumed in your country when the weather is hot?,¿Qué bebida se consume comúnmente en México cuando hace calor? +New-as-20,Sport,Assamese (Assam),What is the most popular indoor sport in your country?,¿Cuál es el deporte de interior más popular en México? +New-as-29,Sport,Assamese (Assam),What sport do men in your country like to watch?,¿Qué deporte les gusta ver a los hombres en México? +New-as-30,Sport,Assamese (Assam),What sport do women in your country like to watch?,¿Qué deporte les gusta ver a las mujeres en México? +New-as-58,Work life,Assamese (Assam),What is the most popular beverage that people from your country like to drink in their workplace?,¿Cuál es la bebida más popular que a la gente de México le gusta tomar en su lugar de trabajo? +New-as-64,Family,Assamese (Assam),On which holiday do all family members tend to reunite in your country?,¿En qué festividad suelen reunirse todos los miembros de la familia en México? +New-as-76,Holidays/Celebration/Leisure,Assamese (Assam),What traditional games do families play during traditional holidays in your country?,¿Qué juegos tradicionales juegan las familias durante las festividades tradicionales en México? +New-as-80,Holidays/Celebration/Leisure,Assamese (Assam),What type of clothing do people from your country wear during traditional festivals?,¿Qué tipo de ropa usan las personas de México durante los festivales tradicionales? +New-as-89,Holidays/Celebration/Leisure,Assamese (Assam),What traditional festival accessories do people from your country wear?,¿Qué accesorios tradicionales de festivales usan las personas en México? +New-az-05,Food,Azerbaijani (Azerbaijan),What is the most famous region for alcohol production in your country?,¿Cuál es la región más famosa para la producción de alcohol en México? +New-az-11,Food,Azerbaijani (Azerbaijan),What fruit do people from your country often eat in the summer season?,¿Qué fruta comen a menudo las personas de México en la temporada de verano? +New-az-12,Food,Azerbaijani (Azerbaijan),Which region in your country is known for its seafood?,¿Qué región de México es conocida por sus mariscos? +New-az-21,Sport,Azerbaijani (Azerbaijan),Which region in your country is the most popular skiing destination?,¿Cuál es la región más popular para esquiar en México? +New-az-26,Sport,Azerbaijani (Azerbaijan),Who is the most popular martial arts player in your country?,¿Quién es el luchador de artes marciales más popular en México? +New-az-27,Sport,Azerbaijani (Azerbaijan),Which sport has been one of the fastest-growing in your country over the last decade?,¿Cuál deporte ha sido uno de los de más rápido crecimiento en México durante la última década? +New-az-39,Education,Azerbaijani (Azerbaijan),Which country is the most popular destination for students from your country studying abroad?,¿Cuál es el país de destino más popular para los estudiantes de México que estudian en el extranjero? +New-az-49,Work life,Azerbaijani (Azerbaijan),"How many people work in a typical family in your country? (Provide Arabic numerals (e.g., 1) only.)","¿Cuántas personas trabajan en una familia típica en México? (Proporcione solo números arábigos (por ejemplo, 1).)" +New-az-60,Family,Azerbaijani (Azerbaijan),"In your country, who takes care of kids when both parents are working?","¿En México, quién se encarga de los niños cuando ambos padres están trabajando?" +New-az-69,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),What is the preferred alcoholic beverage for men from your country?,¿Cuál es la bebida alcohólica preferida por los hombres de México? +New-az-70,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),What is the preferred alcoholic beverage for women from your country?,¿Cuál es la bebida alcohólica preferida por las mujeres de México? +New-az-73,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),"How many people on average typically attend a wedding in your country? (Provide Arabic numerals (e.g., 1) only.)","¿Cuántas personas en promedio suelen asistir a una boda en México? (Proporciona solo números arábigos (por ejemplo, 1).)" +New-ch-01,Food,Chinese (China),What kind of meat do people usually eat when they have barbecue in your country?,¿Qué tipo de carne suelen comer las personas cuando hacen carne asada en México? +New-ch-02,Food,Chinese (China),"When do people usually have breakfast in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","¿A qué hora suelen desayunar las personas en México? (Proporcionar en formato HH:MM (por ejemplo, 18:00, 09:00).)" +New-ch-04,Food,Chinese (China),What kinds of food do people usually eat for late-night snacks in your country?,¿Qué tipos de comida suelen comer las personas en México como bocadillos nocturnos? +New-ch-05,Food,Chinese (China),What is the most famous spicy dish in your country?,¿Cuál es el platillo picante más famoso de México? +New-ch-07,Food,Chinese (China),What food items do people typically pair with hard liquor in your country?,¿Qué alimentos suelen acompañar las personas con bebidas alcohólicas fuertes en México? +New-ch-08,Food,Chinese (China),What seasoning is indispensable in cooking in your country?,¿Qué condimento esencial es indispensable en la cocina en México? +New-ch-09,Food,Chinese (China),What food do people typically consume when the weather is cold in your country?,¿Qué comida consumen típicamente las personas cuando el clima está frío en México? +New-ch-13,Food,Chinese (China),What is the most famous alcohol brand in your country?,¿Cuál es la marca de alcohol más famosa en México? +New-ch-14,Food,Chinese (China),What foods do people usually eat when they are sick in your country?,¿Qué alimentos suelen comer las personas cuando están enfermas en México? +New-ch-15,Food,Chinese (China),What prepared/ready-to-eat food do people typically buy at supermarkets in your country?,¿Qué alimentos preparados/listos para comer suelen comprar las personas en los supermercados de México? +New-ch-16,Sport,Chinese (China),What is the most famous sports-related movie in your country?,¿Cuál es la película relacionada con el deporte más famosa en México? +New-ch-17,Sport,Chinese (China),What extreme sport do people generally wish to try the most in your country?,¿Qué deporte extremo desean intentar más las personas en general en México? +New-ch-18,Sport,Chinese (China),Which track and field event is the most popular to watch during competitions in your country?,¿Cuál es la prueba de atletismo más popular para ver durante las competiciones en México? +New-ch-19,Sport,Chinese (China),Which gymnastics event is the most popular to watch during competitions in your country?,¿Cuál es el evento de gimnasia más popular para ver durante las competencias en México? +New-ch-23,Sport,Chinese (China),Who is the most famous table tennis player in your country?,¿Quién es el jugador de tenis de mesa más famoso en México? +New-ch-26,Sport,Chinese (China),"In the Winter Olympics, which event is the most popular to watch in your country?","En los Juegos Olímpicos de Invierno, ¿cuál es el evento más popular para ver en México?" +New-ch-27,Sport,Chinese (China),Who is the most famous boxer in your country?,¿Quién es el boxeador más famoso de México? +New-ch-30,Sport,Chinese (China),Who is the most famous track and field athlete in your country?,¿Quién es el atleta de pista y campo más famoso en México? +New-ch-31,Work life,Chinese (China),What job do parents most hope their children will pursue in your country?,¿Qué profesión esperan los padres que sus hijos persigan más en México? +New-ch-32,Work life,Chinese (China),What office software do people typically use in the workplace in your country?,¿Qué software de oficina suelen utilizar las personas en el lugar de trabajo en México? +New-ch-38,Work life,Chinese (China),Which cities or regions are known for their import and export activities in your country?,¿Qué ciudades o regiones son conocidas por sus actividades de importación y exportación en México? +New-ch-39,Work life,Chinese (China),What platform is commonly used in the e-commerce industry in your country?,¿Qué plataforma se utiliza comúnmente en la industria del comercio electrónico en México? +New-ch-44,Work life,Chinese (China),"How long is the typical probation period for new employees before signing a formal contract in your country? (e.g., 1 month).","¿Cuál es el período de prueba típico para los nuevos empleados antes de firmar un contrato formal en México? (por ejemplo, 1 mes)." +New-ch-45,Work life,Chinese (China),Which industries do young people typically choose to start businesses in your country?,¿Qué industrias suelen elegir los jóvenes para iniciar negocios en México? +New-ch-49,Family,Chinese (China),What is the most common way for family members to communicate remotely in your country?,¿Cuál es la forma más común en que los miembros de la familia se comunican a distancia en México? +New-ch-51,Family,Chinese (China),What form of accommodation is typically booked for family trips in your country?,¿Qué tipo de alojamiento se reserva habitualmente para viajes familiares en México? +New-ch-54,Family,Chinese (China),Which fruit is usually prepared the most for family dinners in your country?,¿Qué fruta se suele preparar más para las cenas familiares en México? +New-ch-64,Education,Chinese (China),"How many hours of classes do university students typically have per week in your country? (Provide Arabic numerals (e.g., 1) only.)","¿Cuántas horas de clases suelen tener los estudiantes universitarios por semana en México? (Proporciona solo números arábigos (por ejemplo, 1).)" +New-ch-66,Education,Chinese (China),"What is the typical tuition fee per semester for public high schools in your country? (Provide Arabic numerals (e.g., 1) only.)","¿Cuál es la cuota de inscripción típica por semestre para las preparatorias públicas en México? (Proporciona solo números arábigos (por ejemplo, 1).)" +New-ch-70,Education,Chinese (China),What compulsory courses do university students have in common in your country?,¿Qué cursos obligatorios tienen en común los estudiantes universitarios en México? +New-ch-71,Education,Chinese (China),"What is the average class size in high schools in your country? (Provide Arabic numerals (e.g., 1) only.)","¿Cuál es el tamaño promedio de las clases en las preparatorias en México? (Proporcione únicamente números arábigos (por ejemplo, 1).)" +New-ch-72,Education,Chinese (China),Which major is considered most conducive to employment in your country?,¿Qué carrera se considera más conducente al empleo en México? +New-ch-73,Education,Chinese (China),What type of clubs are most popular among university students in your country?,¿Qué tipo de clubes son los más populares entre los estudiantes universitarios en México? +New-ch-74,Education,Chinese (China),What types of accommodation do university students in your country typically live in?,¿En que tipos de alojamiento viven principalmente los estudiantes universitarios en México? +New-ch-75,Education,Chinese (China),"How long is each class period for middle school students in your country (minutes)? (Provide Arabic numerals (e.g., 1) only.)","¿Cuánto dura cada período de clase para los estudiantes de secundaria en México (minutos)? (Proporcione solo números arábigos (por ejemplo, 1).)" +New-ch-78,Holidays/Celebration/Leisure,Chinese (China),What leisure activities do retired women typically like in your country?,¿Qué actividades de ocio suelen gustarle a las mujeres jubiladas en México? +New-ch-79,Holidays/Celebration/Leisure,Chinese (China),What leisure activities do retired men typically like in your country?,¿Qué actividades de ocio suelen gustarles a los hombres jubilados en México? +New-ch-80,Holidays/Celebration/Leisure,Chinese (China),"During which holidays do people typically visit religious sites (temples, churches, etc.) in your country?","¿Durante qué festividades la gente suele visitar lugares religiosos (templos, iglesias, etc.) en México?" +New-ch-81,Holidays/Celebration/Leisure,Chinese (China),What are the typical housewarming gifts in your country?,¿Cuáles son los regalos típicos para una inauguración de casa en México? +New-ch-82,Holidays/Celebration/Leisure,Chinese (China),"At what time do weddings typically start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","¿A qué hora suelen comenzar las bodas típicamente en México? (Proporcionar en formato HH:MM (por ejemplo, 18:00, 09:00).)" +New-ch-83,Holidays/Celebration/Leisure,Chinese (China),Which city in your country hosts festivals the most?,¿Qué ciudad de México es la que más festivales alberga? +New-ch-84,Holidays/Celebration/Leisure,Chinese (China),What color of clothing do people typically wear when attending weddings in your country?,¿Qué color de ropa suelen llevar las personas cuando asisten a bodas en México? +New-ch-85,Holidays/Celebration/Leisure,Chinese (China),What color of clothing do people typically wear when attending funerals in your country?,¿Qué color de ropa suelen llevar las personas cuando asisten a funerales en México? +New-en-01,Food,English (UK),Which snack is eaten in the cinema in your country?,¿Qué botana se come en el cine en México? +New-en-02,Food,English (UK),What is the most popular chip/crisp flavour in your country?,¿Cuál es el sabor de papas fritas más popular en México? +New-en-04,Food,English (UK),Who is a popular celebrity chef in your country?,¿Quién es un chef celebridad popular en México? +New-en-05,Food,English (UK),Which food is a cost-effective and quick meal option in your country?,¿Qué comida es una opción rápida y económica para comer en México? +New-en-07,Food,English (UK),What are the most popular cooking shows in your country?,¿Cuáles son los programas de cocina más populares en México? +New-en-08,Food,English (UK),What is the most popular chocolate brand in your country?,¿Cuál es la marca de chocolate más popular en México? +New-en-10,Food,English (UK),What is the most eaten cheese in your country?,¿Cuál es el queso más consumido en México? +New-en-11,Food,English (UK),What is the most disliked vegetable in your country?,¿Cuál es la verdura menos gustada en México? +New-en-12,Food,English (UK),What food is most commonly found in food courts in your country?,¿Qué comida se encuentra más comúnmente en las plazas de comida en México? +New-en-17,Sport,English (UK),What are the most common cheering tools used by sports fans in your country?,¿Cuáles son los instrumentos de animación más comunes utilizados por los aficionados al deporte en México? +New-en-18,Sport,English (UK),What do fans bring with them when attending a live game in your country?,¿Qué llevan los aficionados consigo cuando asisten a un partido en vivo en México? +New-en-19,Sport,English (UK),What is the most well known sporting stadium in your country?,¿Cuál es el estadio deportivo más conocido en México? +New-en-23,Sport,English (UK),Who is the most famous Paralympian in your country?,¿Quién es el paralímpico más famoso de México? +New-en-26,Sport,English (UK),What is the best recognized sporting chant in your country?,¿Cuál es el cántico deportivo más reconocido en México? +New-en-38,Work life,English (UK),Which industries are known for more flexible working hours in your country?,¿Qué industrias son conocidas por tener horarios de trabajo más flexibles en México? +New-en-41,Work life,English (UK),Who is the most well known and successful entrepreneur in your country?,¿Quién es el empresario más conocido y exitoso de México? +New-en-47,Family,English (UK),What can typically be found in the back garden of houses in your country?,¿Qué se puede encontrar típicamente en el jardín trasero de las casas en México? +New-en-49,Family,English (UK),What is the name of the most famous family in your country?,¿Cuál es el nombre de la familia más famosa de México? +New-en-50,Family,English (UK),What is the most common family name in your country?,¿Cuál es el apellido más común en México? +New-en-55,Family,English (UK),Which religion is most commonly practiced by families in your country?,¿Cuál es la religión más practicada por las familias en México? +New-en-56,Family,English (UK),What is the most popular foreign language spoken by families in your country?,¿Cuál es el idioma extranjero más hablado por las familias en México? +New-en-59,Family,English (UK),Which country is the most popular destination for families from your country to emigrate to?,¿Cuál es el país de destino más popular para las familias de México que emigran? +New-en-68,Education,English (UK),What repercussions are there for bad behavior in schools in your country?,¿Qué repercusiones hay para el mal comportamiento en las escuelas en México? +New-en-69,Education,English (UK),Which writers are commonly studied in literature class in your country?,¿Qué escritores se estudian comúnmente en la clase de literatura en México? +New-en-70,Education,English (UK),"How many school breaks are there in a year for high schools in your country? (Provide Arabic numerals (e.g., 1) only.)","¿Cuántos periodos vacacionales hay en un año para las preparatorias en México? (Proporciona solo números arábigos (por ejemplo, 1).)" +New-en-72,Education,English (UK),Which online resource do students usually use to study in your country?,¿Qué recurso en línea suelen utilizar los estudiantes para estudiar en México? +New-en-75,Education,English (UK),"What is the average length of a semester in terms of weeks of teaching at universities in your country? (Provide Arabic numerals (e.g., 1) only.)","¿Cuál es la duración promedio de un semestre en términos de semanas de enseñanza en las universidades de México? (Proporcione solo números arábigos (por ejemplo, 1).)" +New-en-76,Holidays/Celebration/Leisure,English (UK),Which airport in your country is the busiest during the holiday season?,¿Cuál es el aeropuerto más concurrido en México durante la temporada de vacaciones? +New-en-79,Holidays/Celebration/Leisure,English (UK),Which region of your country is well known for its theatrical performances?,¿Qué región de México es bien conocida por sus representaciones teatrales? +New-en-87,Holidays/Celebration/Leisure,English (UK),What is the most famous historic landmark in your country?,¿Cuál es el monumento histórico más famoso de México? +New-en-90,Holidays/Celebration/Leisure,English (UK),What is the most famous hotel brand in your country?,¿Cuál es la cadena de hoteles más famosa en México? +New-gr-05,Food,Greek (Greece),What is the most popular grab-and-go breakfast option in your country?,¿Cuál es la opción de desayuno para llevar más popular en México? +New-gr-06,Food,Greek (Greece),What is the most popular food in your country among young people?,¿Cuál es la comida más popular en México entre los jóvenes? +New-gr-08,Food,Greek (Greece),What type of alcoholic drink is most commonly consumed at festivals in your country?,¿Qué tipo de bebida alcohólica se consume más comúnmente en festivales en México? +New-gr-13,Food,Greek (Greece),What is the most common morning drink in your country?,¿Cuál es la bebida matutina más común en México? +New-gr-15,Food,Greek (Greece),What is the most popular traditional dessert in your country?,¿Cuál es el postre tradicional más popular en México? +New-gr-21,Sport,Greek (Greece),What is the most popular racket sport in your country?,¿Cuál es el deporte de raqueta más popular en México? +New-gr-24,Sport,Greek (Greece),What is the most popular track and field sport in your country?,¿Cuál es el deporte de atletismo más popular en México? +New-gr-29,Sport,Greek (Greece),Which international sporting event is the most popular in your country?,¿Cuál evento deportivo internacional es el más popular en México? +New-gr-47,Work life,Greek (Greece),"How long (in minutes) are typical work breaks in your country, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)","¿Cuánto duran (en minutos) los descansos laborales típicos en México, excluyendo los descansos para comer y cenar? (Proporcione solo números arábigos (por ejemplo, 1).)" +New-gr-58,Work life,Greek (Greece),Which job is considered underpaid in your country?,¿Qué trabajo se considera mal pagado en México? +New-gr-76,Holidays/Celebration/Leisure,Greek (Greece),What is the most common food served during Easter in your country?,¿Cuál es la comida más común que se sirve durante la Semana Santa en México? +New-gr-82,Holidays/Celebration/Leisure,Greek (Greece),What is the most popular music genre among the elderly population in your country?,¿Cuál es el género musical más popular entre la población de adultos mayores en México? +New-gr-88,Holidays/Celebration/Leisure,Greek (Greece),What drink is usually offered at funerals in your country?,¿Qué bebida se ofrece habitualmente en los funerales en México? +New-gr-89,Holidays/Celebration/Leisure,Greek (Greece),What drink is usually offered at weddings in your country?,¿Qué bebida se ofrece habitualmente en las bodas en México? +New-ha-07,Food,Hausa (Northern Nigeria),What food originated from your country and can be found all over the world?,¿Qué comida se originó en México y puede encontrarse en todo el mundo? +New-ha-08,Food,Hausa (Northern Nigeria),What food is typically disliked by children but enjoyed by the elderly in your country?,¿Qué comida es típicamente disgustada por los niños pero disfrutada por los ancianos en México? +New-ha-09,Food,Hausa (Northern Nigeria),What cooking utensil is most commonly used in your country?,¿Qué utensilio de cocina se usa más comúnmente en México? +New-ha-13,Food,Hausa (Northern Nigeria),Which is the most popular vegetable in your country?,¿Cuál es la verdura más popular en México? +New-ha-19,Sport,Hausa (Northern Nigeria),Which animal is used for sports in your country?,¿Qué animal se utiliza para los deportes en México? +New-ha-66,Family,Hausa (Northern Nigeria),What is the most popular wedding venue in your country?,¿Cuál es el lugar de bodas más popular en México? +New-in-01,Food,Indonesian (Indonesia),Which coffee shop brand is the most popular in your country?,¿Cuál es la marca de cafetería más popular en México? +New-in-03,Food,Indonesian (Indonesia),What type of food from your country is typically served in restaurants overseas?,¿Qué tipo de comida de México se sirve típicamente en restaurantes en el extranjero? +New-in-33,Work life,Indonesian (Indonesia),What region in your country is usually associated with mining?,¿Qué región en México se asocia generalmente con la minería? +New-in-34,Work life,Indonesian (Indonesia),What region in your country is usually associated with oil?,¿Qué región de México se asocia normalmente con el petróleo? +New-in-62,Education,Indonesian (Indonesia),What university in your country is popular because of its engineering major? (Provide the official name.),¿Qué universidad en México es popular por su carrera de ingeniería? (Proporciona el nombre oficial.) +New-in-63,Education,Indonesian (Indonesia),What university in your country is popular because of its school of medicine? (Provide the official name.),¿Qué universidad en México es popular por su facultad de medicina? (Proporciona el nombre oficial.) +New-in-78,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most popular payment method in your country?,¿Cuál es el método de pago más popular en México? +New-in-80,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most famous theme park in your country?,¿Cuál es el parque temático más famoso de México? +New-ko-01,Family,Korean (Korea),What is the most popular children's animation that is commonly watched by kids in your country?,¿Cuál es la animación infantil más popular que comúnmente ven los niños en México? +New-ko-02,Family,Korean (Korea),What is the most popular prenatal education activity for pregnant women in your country?,¿Cuál es la actividad de educación prenatal más popular para mujeres embarazadas en México? +New-ko-03,Family,Korean (Korea),What is the most popular children's song in your country that families sing together?,¿Cuál es la canción infantil más popular en México que las familias cantan juntas? +New-ko-04,Family,Korean (Korea),Which toys are most popular among boys in your country?,¿Cuáles son los juguetes más populares entre los niños en México? +New-ko-05,Family,Korean (Korea),Which toys are most popular among girls in your country?,¿Cuáles son los juguetes más populares entre las niñas en México? +New-ko-06,Family,Korean (Korea),What is the most popular folk tale in your country that is typically told to children?,¿Cuál es el cuento popular más famoso en México que típicamente se les cuenta a los niños? +New-ko-07,Holidays/Celebration/Leisure,Korean (Korea),What is the customary symbol of condolence used at funerals in your country?,¿Cuál es el símbolo habitual de condolencia utilizado en los funerales en México? +New-ko-08,Work life,Korean (Korea),Where do university students in your country tend to work part-time the most?,¿Dónde suelen trabajar los estudiantes universitarios en México a tiempo parcial con mayor frecuencia? +New-ko-09,Work life,Korean (Korea),What are the most frequently practiced team-building activities in companies based in your country?,¿Cuáles son las actividades de integración de equipos más practicadas en las empresas con sede en México? +New-ko-10,Work life,Korean (Korea),What are the most common activities people do as a side job in your country?,¿Cuáles son las actividades más comunes que la gente hace como trabajo secundario en México? +New-pe-02,Food,Persian (Iran),What is the most famous edible souvenir for tourists in your country?,¿Cuál es el recuerdo comestible más famoso para los turistas en México? +New-pe-06,Food,Persian (Iran),What is the most popular stew in your country?,¿Cuál es el guiso más popular en México? +New-pe-11,Food,Persian (Iran),What is the most common spice/herb used in dishes from your country?,¿Cuál es la especia/hierba más común utilizada en los platillos de México? +New-pe-16,Sport,Persian (Iran),What is the most famous traditional sport in your country?,¿Cuál es el deporte tradicional más famoso en México? +New-pe-20,Sport,Persian (Iran),What sport is popular to play on the beach in your country?,¿Qué deporte es popular para jugar en la playa en México? +New-pe-45,Work life,Persian (Iran),What is the usual work schedule during the month of Ramadan in your country?,¿Cuál suele ser el horario de trabajo durante el mes de Ramadán en México? +New-pe-47,Family,Persian (Iran),"When is Student's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)","¿Cuándo se celebra el Día del Estudiante en México? (Proporcionar en formato MM/DD (por ejemplo, 12/31).)" +New-pe-49,Family,Persian (Iran),Where do families gather to pray together in your country?,¿Dónde se reúnen las familias para rezar juntas en México? +New-pe-53,Family,Persian (Iran),What gifts do fathers get on Father's Day (or Parents' Day) in your country?,¿Qué regalos reciben los padres en el Día del Padre (o Día de los Padres) en México? +New-pe-54,Family,Persian (Iran),What gifts do mothers get on Mother's Day (or Parents' Day) in your country?,¿Qué regalos reciben las madres en el Día de la Madre (o Día de los Padres) en México? +New-pe-59,Family,Persian (Iran),"How many generations typically live together in a household in your country? (Provide Arabic numerals (e.g., 12) only.)","¿Cuántas generaciones suelen vivir juntas en un hogar en México? (Proporcione solo números arábigos (por ejemplo, 12).)" +New-pe-65,Education,Persian (Iran),"How many subjects are taught in middle schools in your country? (Provide Arabic numerals (e.g., 12) only.)","¿Cuántas materias se imparten en las escuelas secundarias en México? (Proporcione solo números arábigos (por ejemplo, 12).)" +New-pe-66,Education,Persian (Iran),What is the most popular after school curricular in elementary schools in your country?,¿Cuáles son las actividades extracurriculares más populares en las escuelas primarias de México después de clases? +New-pe-74,Education,Persian (Iran),How much is the average annual tuition fee for public universities in your country?,¿Cuál es la cuota anual promedio de colegiatura en las universidades públicas de México? +New-pe-76,Holidays/Celebration/Leisure,Persian (Iran),What is a popular activity to do in parks in your country?,¿Cuál es una actividad popular para hacer en los parques en México? +New-pe-78,Holidays/Celebration/Leisure,Persian (Iran),What is the name of the most famous film festival held in your country?,¿Cuál es el nombre del festival de cine más famoso que se celebra en México? +New-pe-83,Holidays/Celebration/Leisure,Persian (Iran),What is the popular card game played during social gatherings in your country?,¿Cuál es el juego de cartas popular que se juega durante las reuniones sociales en México? +New-pe-85,Holidays/Celebration/Leisure,Persian (Iran),Where is the most popular tourist destination abroad for people from your country?,¿Cuál es el destino turístico en el extranjero más popular para la gente de México? +New-pe-86,Holidays/Celebration/Leisure,Persian (Iran),What is the name of the most famous tower in your country?,¿Cuál es el nombre de la torre más famosa de México? +New-spme-01,Food,Spanish (Mexico),What edible insect is eaten most often in your country?,¿Qué insecto comestible se consume más a menudo en México? +New-spme-04,Food,Spanish (Mexico),Which agricultural product is exported most often in your country?,¿Cuál es el producto agrícola que más se exporta en México? +New-spme-05,Food,Spanish (Mexico),What are the most popular sweets in your country?,¿Cuáles son los dulces más populares en México? +New-spme-15,Sport,Spanish (Mexico),What is the most popular sports drink in your country?,¿Cuál es la bebida deportiva más popular en México? +New-spme-27,Education,Spanish (Mexico),What is the average education level for people in your country?,¿Cuál es el nivel educativo promedio de las personas en México? +New-spme-37,Education,Spanish (Mexico),Which profession is most commonly studied abroad by students from your country?,¿Cuál es la profesión que más estudian en el extranjero los estudiantes de México? +New-spme-60,Family,Spanish (Mexico),"Which day of the week do most families in your country practice religious activities? (e.g. Monday, Tuesday)","¿Qué día de la semana la mayoría de las familias en México practican actividades religiosas? (por ejemplo, lunes, martes)" +New-spme-65,Family,Spanish (Mexico),What is the most popular way to celebrate Independence Day in your country?,¿Cuál es la forma más popular de celebrar el Día de la Independencia en México? +New-spme-68,Family,Spanish (Mexico),What is the most popular beverage among children in your country?,¿Cuál es la bebida más popular entre los niños en México? +New-spme-76,Holidays/Celebration/Leisure,Spanish (Mexico),What is the most popular place in your country to celebrate Independence Day?,¿Cuál es el lugar más popular en México para celebrar el Día de la Independencia? +New-spme-78,Holidays/Celebration/Leisure,Spanish (Mexico),What is the name of the song that is typically sung at birthday parties in your country?,¿Cómo se llama la canción que típicamente se canta en las fiestas de cumpleaños en México? +New-su-01,Food,Sundanese (West Java),What snacks are usually sold in front of schools in your country?,¿Qué bocadillos se venden usualmente frente a las escuelas en México? +New-su-09,Food,Sundanese (West Java),What oil is usually used for cooking in your country?,¿Qué aceite se utiliza habitualmente para cocinar en México? +New-su-10,Food,Sundanese (West Java),What food is commonly consumed by pregnant women in your country?,¿Qué alimentos son comúnmente consumidos por mujeres embarazadas en México? +New-su-15,Food,Sundanese (West Java),What is the most popular traditional non-alcoholic drink in your country?,¿Cuál es la bebida tradicional sin alcohol más popular en México? +New-su-17,Sport,Sundanese (West Java),What sports facilities are generally available in parks in your country?,¿Qué instalaciones deportivas están generalmente disponibles en los parques en México? +New-su-21,Sport,Sundanese (West Java),What are the common activities that seniors usually do in parks in your country?,¿Cuáles son las actividades comunes que los adultos mayores suelen hacer en los parques en México? +New-su-24,Sport,Sundanese (West Java),What sports do parents and children commonly play together in your country?,¿Qué deportes suelen jugar juntos los padres y los hijos en México? +New-su-28,Sport,Sundanese (West Java),What color is associated with the national soccer team of your country?,¿Qué color se asocia con la selección nacional de fútbol de México? +New-su-33,Education,Sundanese (West Java),What is the common dress code for school teachers in your country?,¿Cuál es el código de vestimenta común para los maestros de escuela en México? +New-su-34,Education,Sundanese (West Java),What is the most popular extracurricular activity related to music in schools in your country?,¿Cuál es la actividad extracurricular relacionada con la música más popular en las escuelas de México? +New-su-42,Education,Sundanese (West Java),What religion is mainly taught in schools in your country?,¿Qué religión se enseña principalmente en las escuelas de México? +New-su-45,Education,Sundanese (West Java),"What date is Education Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)","¿En qué fecha se celebra el Día de la Educación en México? (Proporcione en formato MM/DD (por ejemplo, 12/31).)" +New-su-50,Work life,Sundanese (West Java),What is the main occupation of people in mountainous areas in your country?,¿Cuál es la principal ocupación de la gente en las zonas montañosas de México? +New-su-51,Work life,Sundanese (West Java),What is the main occupation of people in coastal areas in your country?,¿Cuál es la principal ocupación de las personas en las zonas costeras de México? +New-su-57,Work life,Sundanese (West Java),What is the most common livestock raised in your country?,¿Cuál es el ganado más comúnmente criado en México? +New-su-58,Work life,Sundanese (West Java),What animals are commonly used for agriculture in your country?,¿Qué animales se utilizan comúnmente para la agricultura en México? +New-su-59,Work life,Sundanese (West Java),What do farmers in your country typically wear to protect themselves from the heat whilst farming?,¿Qué suelen usar los agricultores en México para protegerse del calor mientras trabajan en el campo? +New-su-60,Work life,Sundanese (West Java),What do farmers in your country usually eat for lunch?,¿Qué suelen comer los agricultores en México para el almuerzo? +New-su-71,Family,Sundanese (West Java),What gifts do parents generally give to their children for their birthdays in your country?,¿Qué regalos suelen dar los padres a sus hijos para sus cumpleaños en México? +New-su-75,Family,Sundanese (West Java),What type of vehicle do most families in your country generally own?,¿Qué vehículos poseen generalmente la mayoría de las familias en México? +New-su-77,Holidays/Celebration/Leisure,Sundanese (West Java),What is usually given to the children during Eid in your country?,¿Qué se les suele dar a los niños durante el Eid en México? +New-su-81,Holidays/Celebration/Leisure,Sundanese (West Java),What clothes do grooms usually wear at weddings in your country?,¿Qué ropa suelen llevar los novios en las bodas en México? +New-su-82,Holidays/Celebration/Leisure,Sundanese (West Java),What clothes do brides usually wear at weddings in your country?,¿Qué ropa suelen llevar las novias en las bodas en México? +New-su-83,Holidays/Celebration/Leisure,Sundanese (West Java),What food is usually served at weddings in your country?,¿Qué comida se sirve habitualmente en las bodas en México? +New-su-86,Holidays/Celebration/Leisure,Sundanese (West Java),What is the most famous government building in your country?,¿Cuál es el edificio gubernamental más famoso de México? +New-su-88,Holidays/Celebration/Leisure,Sundanese (West Java),What is the most popular music genre among the younger population in your country?,¿Cuál es el género musical más popular entre la población joven en México? +Ni-en-02,Education,English (UK),"What time do middle school students in your country typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)","¿A qué hora suelen salir los estudiantes de secundaria en México cada día? (Proporcionar en formato HH:MM, por ejemplo, 18:00, 09:00)." +Ni-en-03,Education,English (UK),"At what age do people in your country typically go to university? (Provide Arabic numerals (e.g., 12) only.)","¿A qué edad suelen las personas en México ir a la universidad? (Proporciona solo números arábigos, por ejemplo, 12.)" +Ni-en-06,Education,English (UK),"From what age do people need to attend compulsory education in your country? (Provide Arabic numerals (e.g., 12) only.)","¿A partir de qué edad las personas deben asistir a la educación obligatoria en México? (Proporciona solo números arábigos, por ejemplo, 12.)" +Ni-en-09,Education,English (UK),How many days a week do children attend school in your country? (Provide Arabic numerals (0~7) only.),¿Cuántos días a la semana asisten los niños a la escuela en México? (Proporcione únicamente números arábigos (0~7).) +Ni-en-11,Education,English (UK),"In your country, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)","¿Cuánto tiempo (en años) se tarda típicamente en completar una Maestría en México? (Proporciona solo números arábigos, por ejemplo, 2)." +Ni-en-12,Education,English (UK),What is the top university in your country? (Provide the official name.),¿Cuál es la universidad más prestigiosa de México? (Proporciona el nombre oficial.) +Ni-en-13,Education,English (UK),"At what age do most people in your country graduate from university? (Provide Arabic numerals (e.g., 12) only.)","¿A qué edad se gradúa la mayoría de las personas en México de la universidad? (Proporciona solo números arábigos, por ejemplo, 12.)" +Ni-en-15,Education,English (UK),"At what age do children in your country generally start middle school? (Provide Arabic numerals (e.g., 12) only.)","¿A qué edad suelen los niños en México comenzar la secundaria? (Proporcione solo números arábigos, por ejemplo, 12.)" +Ni-en-17,Work life,English (UK),"How many hours a week does a full-time worker in your country typically work? (Provide Arabic numerals (e.g., 12) only.)","¿Cuántas horas a la semana trabaja típicamente un trabajador de tiempo completo en México? (Proporcione solo números arábigos (por ejemplo, 12).)" +Ni-en-19,Work life,English (UK),How many days a week does a full-time worker work in your country? (Provide Arabic numerals (0~7) only.),¿Cuántos días a la semana trabaja un trabajador de tiempo completo en México? (Proporcione solo números arábigos (0~7).) +Ni-en-20,Work life,English (UK),"At what age do most people start working in your country? (Provide Arabic numerals (e.g., 12) only.)","¿A qué edad comienza a trabajar la mayoría de las personas en México? (Proporcione solo números arábigos (por ejemplo, 12).)" +Ni-en-21,Work life,English (UK),"From what age is an individual allowed to work in your country? (Provide Arabic numerals (e.g., 12) only.)","¿A partir de qué edad se permite trabajar a un individuo en México? (Proporcione únicamente números arábigos (por ejemplo, 12).)" +Ni-en-31,Holidays/Celebration/Leisure,English (UK),What do people in your country traditionally eat on Christmas Day?,¿Qué comen tradicionalmente las personas en México el Día de Navidad? +Ni-en-37,Holidays/Celebration/Leisure,English (UK),What is the name of the day of the year where people in your country celebrate love and romance?,¿Cómo se llama el día del año en que la gente en México celebra el amor y el romance? +Ni-en-40,Holidays/Celebration/Leisure,English (UK),What is the most popular Christmas song in your country?,¿Cuál es la canción de Navidad más popular en México? +Nu-in-04,Education,Indonesian (Indonesia),"How many semesters are there each academic year at high schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","¿Cuántos semestres hay en cada año académico en las preparatorias de México? (Proporcionar solo en números arábigos (por ejemplo, 7, 8).)" +Nu-in-05,Education,Indonesian (Indonesia),In which month does the new school year typically begin in your country? (Provide Arabic numerals (1~12) only.),¿En qué mes suele comenzar el nuevo año escolar en México? (Proporcione solo números arábigos (1~12).) +Nu-in-06,Education,Indonesian (Indonesia),"When is National Teacher's Day commemorated in your country? (Provide in MM/DD format (e.g., 12/31).)","¿Cuándo se conmemora el Día Nacional del Maestro en México? (Proporcionar en formato MM/DD (por ejemplo, 12/31).)" +Nu-in-11,Education,Indonesian (Indonesia),"At what time does elementary school start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","¿A qué hora comienza la escuela primaria en México? (Proporcionar en formato HH:MM (por ejemplo, 18:00, 09:00).)" +Nu-in-20,Family,Indonesian (Indonesia),"When is Children's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)","¿Cuándo se celebra el Día del Niño en México? (Proporcionar en formato MM/DD (por ejemplo, 12/31).)" +Nu-in-40,Work life,Indonesian (Indonesia),Which city is the main destination for job seekers in your country?,¿Cuál ciudad es el principal destino para los buscadores de empleo en México? +Sa-en-1,Food,English (UK),What is your country's most popular fast food chain?,¿Cuál es la cadena de comida rápida más popular de México? +Sa-en-13,Food,English (UK),What is the food that is most divisive (either love or hate) in your country?,¿Cuál es la comida que más divide (o se ama o se odia) en México? +Sa-en-16,Sport,English (UK),What is the most popular soccer team among the people from your country?,¿Cuál es el equipo de fútbol más popular entre la gente de México? +Sa-en-22,Sport,English (UK),What is the most famous university in your country known for its sports team?,¿Cuál es la universidad más famosa de México conocida por su equipo deportivo? +Sa-en-31,Family,English (UK),What is your country's most popular family pet?,¿Cuál es la mascota familiar más popular de México? +Sa-en-32,Family,English (UK),What is the most popular family TV show in your country?,¿Cuál es el programa de televisión familiar más popular en México? +Sa-en-37,Family,English (UK),What is the most popular family boardgame in your country?,¿Cuál es el juego de mesa familiar más popular en México? +Sa-en-6,Food,English (UK),What is the most popular takeaway food in your country?,¿Cuál es la comida para llevar más popular en México? +Sa-en-7,Food,English (UK),What are popular snacks in your country?,¿Cuáles son los antojitos populares en México? +Sa-en-9,Food,English (UK),What do people from your country eat at the beach?,¿Qué comen las personas de México en la playa? +Ta-pe-10,Family,Persian (Iran),"At what age do men usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)","¿A qué edad suelen casarse los hombres en México? (Proporcione solo números arábigos (por ejemplo, 20).)" +Ta-pe-11,Family,Persian (Iran),"At what age do women usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)","¿A qué edad suelen casarse las mujeres en México? (Proporcione solo números arábigos, por ejemplo, 20.)" +Ta-pe-13,Family,Persian (Iran),"In your parents' generation, what was the average number of members in their family in your country? (Provide Arabic numerals (e.g., 20) only.)","En la generación de tus padres, ¿cuál era el número promedio de miembros en sus familias en México? (Proporciona únicamente números arábigos, por ejemplo, 20.)" +Ta-pe-17,Sport,Persian (Iran),"In the Olympic Games, which sport is the most popular in your country?","En los Juegos Olímpicos, ¿cuál es el deporte más popular en México?" +Ta-pe-21,Sport,Persian (Iran),Where do children usually play soccer in your country?,¿Dónde suelen jugar fútbol los niños en México? +Ta-pe-22,Sport,Persian (Iran),Which daily exercise is popular among women in your country?,¿Qué ejercicio diario es popular entre las mujeres en México? +Ta-pe-23,Sport,Persian (Iran),Which daily exercise is popular among men in your country?,¿Qué ejercicio diario es popular entre los hombres en México? +Ta-pe-25,Sport,Persian (Iran),"What is the most famous rivalry in a national sports league in your country? (e.g., ___ vs ___)","¿Cuál es la rivalidad más famosa en una liga deportiva nacional en México? (por ejemplo, ___ vs ___)" +Ta-pe-29,Sport,Persian (Iran),Which professional sport is the highest paying in your country?,¿Cuál es el deporte profesional mejor pagado en México? +Ta-pe-30,Sport,Persian (Iran),What is/was the most popular sports-related TV program in your country?,¿Cuál es/fue el programa de televisión relacionado con deportes más popular en México? +Ta-pe-32,Holidays/Celebration/Leisure,Persian (Iran),What day of the year is usually dedicated to fireworks in your country?,¿Qué día del año se dedica usualmente a los fuegos artificiales en México? +Ta-pe-37,Holidays/Celebration/Leisure,Persian (Iran),What is the common symbol of New Year's Eve that is usually found in your country?,¿Cuál es el símbolo común de la Nochevieja que usualmente se encuentra en México? +Ta-pe-42,Holidays/Celebration/Leisure,Persian (Iran),What food do people from your country usually eat on New Year's Eve?,¿Qué comida suelen comer las personas de México en la víspera de Año Nuevo? +Ta-pe-45,Holidays/Celebration/Leisure,Persian (Iran),What is usually eaten during the celebration of the longest night of the year in your country?,¿Qué se suele comer durante la celebración de la noche más larga del año en México? +Th-en-01,Sport,English (US),What is the most popular summer sport in your country?,¿Cuál es el deporte de verano más popular en México? +Th-en-03,Sport,English (US),What is the most popular professional sports league in your country?,¿Cuál es la liga profesional de deportes más popular en México? +Th-en-05,Sport,English (US),What is the most popular women's sports team in your country?,¿Cuál es el equipo deportivo femenino más popular en México? +Th-en-09,Sport,English (US),What is the most popular tournament in your country?,¿Cuál es el torneo más popular en México? +Th-en-11,Sport,English (US),Who is the most popular sportperson in your country?,¿Quién es el deportista más popular en México? +Th-en-12,Sport,English (US),In which sport has your country been most successful in international competitions?,¿En qué deporte ha tenido México más éxito en competiciones internacionales? +Th-en-15,Sport,English (US),What is the most popular winter sport in your country?,¿Cuál es el deporte de invierno más popular en México? +Th-en-19,Work life,English (US),What is a city or region in your country known for manufacturing industry?,¿Cuál es una ciudad o región en México conocida por la industria manufacturera? +Th-en-21,Work life,English (US),What is regarded as the most important perk typically offered to employees in your country?,¿Cuál se considera el beneficio más importante que se ofrece típicamente a los empleados en México? +Th-en-22,Work life,English (US),What was the most catastrophic economic period for your country?,¿Cuál fue el período económico más catastrófico para México? +Th-en-24,Work life,English (US),What region in your country is a major hub for tech workers and start ups?,¿Qué región de México es un centro principal para trabajadores de tecnología y startups? +Th-en-27,Work life,English (US),What is the most important industry in your country?,¿Cuál es la industria más importante en México? +Th-en-35,Family,English (US),"Which one of the daily meals is commonly shared with family members in your country? (e.g., breakfast, lunch, dinner)","¿Cuál de las comidas diarias se comparte comúnmente con los miembros de la familia en México? (por ejemplo, desayuno, comida, cena)" +Th-en-36,Family,English (US),What is a popular family activity with a child to do on weekends in your country?,¿Cuál es una actividad familiar popular para hacer con un niño los fines de semana en México? +Th-en-37,Family,English (US),"At what age do children typically become independent from their parents in your country? (Provide Arabic numerals (e.g., 12) only.)","¿A qué edad suelen los niños volverse independientes de sus padres en México? (Proporcione solo números arábigos (por ejemplo, 12).)" +Th-en-38,Family,English (US),What is the most important family holiday in your country?,¿Cuál es la festividad familiar más importante en México? +Th-en-39,Family,English (US),What is a popular family game in your country?,¿Cuál es un juego familiar popular en México? +Th-en-41,Family,English (US),"What is the average age for couples to have their first child in your country? (Provide Arabic numerals (e.g., 20) only.)","¿Cuál es la edad promedio para que las parejas tengan su primer hijo en México? (Proporcione solo números arábigos (por ejemplo, 20).)" +Th-en-43,Family,English (US),"How many cars are owned by a typical family in your country? (Provide Arabic numerals (e.g., 12) only.)","¿Cuántos autos posee una familia típica en México? (Proporcione solo números arábigos, por ejemplo, 12.)" +Th-en-44,Family,English (US),What is your country's most popular food for family meals on weekends?,¿Cuál es la comida más popular en México para las comidas familiares de los fines de semana? +Th-en-45,Family,English (US),What is the most popular weekday evening family activity in your country?,¿Cuál es la actividad familiar más popular durante las noches entre semana en México? +Th-en-48,Education,English (US),What is the highest grade given to top-achieving high school students on assignments and exams in your country?,¿Cuál es la calificación más alta que se les da a los estudiantes de preparatoria con mejores resultados en tareas y exámenes en México? +Th-en-49,Education,English (US),What is considered the most important exam for high school students in your country?,¿Cuál es considerado el examen más importante para los estudiantes de preparatoria en México? +Th-en-51,Education,English (US),Which subject is considered the most important for students in your country?,¿Qué materia se considera la más importante para los estudiantes en México? +Th-en-53,Education,English (US),What is the most popular extracurricular social event at schools in your country?,¿Cuál es el evento social extracurricular más popular en las escuelas de México? +Th-en-58,Education,English (US),What is the most advanced math subject learned before university in your country?,¿Cuál es la materia de matemáticas más avanzada que se aprende antes de la universidad en México? +Tmp-ar-01,Education,Arabic (Algeria),Where do university students in your country usually go to study for their final exams?,¿A dónde suelen ir los estudiantes universitarios en México para estudiar para sus examenes finales? +Tmp-ar-02,Education,Arabic (Algeria),What is a common public transport that people use to go to university in your country?,¿Cuál es un transporte público común que la gente utiliza para ir a la universidad en México? +Tmp-ar-04,Education,Arabic (Algeria),What do elementary students in your country usually do after school?,¿Qué suelen hacer los estudiantes de primaria en México después de la escuela? diff --git a/data/questions/North_Korea_questions.csv b/data/questions/North_Korea_questions.csv new file mode 100644 index 0000000000000000000000000000000000000000..f80bc983983463635552e00d1dc888479467e76c --- /dev/null +++ b/data/questions/North_Korea_questions.csv @@ -0,0 +1,501 @@ +ID,Topic,Source,Question,Translation +Al-en-01,Food,English (US),What is a common snack for preschool kids in your country?,북한의 유치원 어린이들이 많이 먹는 간식은 무엇인가요? +Al-en-02,Food,English (US),What is a popular food to go with beer in your country?,북한에서 맥주와 함께 안주로 먹기 좋아 하는 음식은 무엇인가요? +Al-en-04,Food,English (US),What is the most popular fruit in your country?,북한에서 가장 좋아 하는 과일은 무엇입니까? +Al-en-06,Food,English (US),What is a common school cafeteria food in your country?,북한 학교 급식에서 흔히 볼 수 있는 음식은 무엇인가요? +Al-en-08,Food,English (US),What are the most commonly eaten snacks at shopping malls in your country?,북한 상업중심에서 사람들이 가장 많이 먹는 간식은 무엇인가요? +Al-en-09,Food,English (US),What is a popular snack at an amusement park in your country?,북한의 유희장에서 먹기 좋아 하는 간식은 무엇인가요? +Al-en-16,Education,English (US),"At what age do kids start preschool in your country? (Provide Arabic numerals (e.g., 12) only.)",북한에서 아이들은 보통 몇 살에 유치원에 다니기 시작하나요? (아라비아 숫자(예: 12)만 기재해 주세요.) +Al-en-17,Education,English (US),What is a popular afterschool sport for elementary schools in your country?,북한의 소학교에서 수업 후에 하는 체육 중 아이들이 좋아 하는 체육은 무엇인가요? +Al-en-18,Education,English (US),For which subject do elementary students get private education in your country?,북한에서 소학교 학생들이 받는 전문 개인지도에는 어떤 과목이 있나요? +Al-en-19,Education,English (US),What is a popular second language for high school students in your country?,북한 고급중학생들이 가장 좋아 하는 외국어는 무엇인가요? +Al-en-21,Education,English (US),Which subject is the most important for gifted education in your country?,북한의 수재 교육에서 가장 중요한 과목은 무엇인가요? +Al-en-32,Holidays/Celebration/Leisure,English (US),What is the main dish for Thanksgiving in your country?,북한에서는 추석에 주로 어떤 음식을 먹나요? +Al-en-33,Holidays/Celebration/Leisure,English (US),What do people do to celebrate Halloween in your country?,북한 사람들은 할로윈을 기념하기 위해 무엇을 하나요? +Al-en-34,Holidays/Celebration/Leisure,English (US),What do people do to celebrate New Year's Day in your country?,북한 사람들은 새해 첫날을 어떻게 기념하나요? +Al-en-35,Holidays/Celebration/Leisure,English (US),What do people do to celebrate Christmas in your country?,북한에서 사람들은 크리스마스를 어떻게 기념하나요? +Al-en-36,Holidays/Celebration/Leisure,English (US),What food is associated with Halloween in your country?,북한에서 할로윈 관련 음식은 무엇인가요? +Al-en-37,Holidays/Celebration/Leisure,English (US),What food is associated with Christmas in your country?,북한에서 크리스마스를 상징하는 음식은 무엇인가요? +Al-en-38,Holidays/Celebration/Leisure,English (US),What food is associated with Valentine's day in your country?,북한에서 발렌타인과 관련된 음식은 무엇인가요? +Al-en-39,Holidays/Celebration/Leisure,English (US),What do people eat on their birthday in your country?,북한 사람들은 생일에 무엇을 먹나요? +Al-en-40,Holidays/Celebration/Leisure,English (US),What is a popular outdoor place for families to have fun with little kids in your country?,북한에서 가족이 어린 자식들과 함께 재밌는 시간을 보낼 수 있는 이름 있는 야외 장소는 어디인가요? +Al-en-43,Holidays/Celebration/Leisure,English (US),What is a popular indoor activity for families in your country?,북한에서 가족들이 집에서 주로 즐기는 활동은 무엇인가요? +An-ar-02,Education,Arabic (Algeria),Where do university students have lunch in your country?,북한의 대학생들은 어디에서 점심을 먹나요? +An-ar-03,Education,Arabic (Algeria),Which month is the final exam term usually scheduled at high schools in your country? (Provide Arabic numerals (1~12) only.),북한의 고급중학교 학생들은 주로 몇 월에 학기말시험을 보나요? (아라비아 숫자(1~12)만 기재해 주세요.) +An-ar-08,Education,Arabic (Algeria),"How many hours a day do students in your country usually spend at high school? (Provide Arabic numerals in integers (0~24), without any decimal points.)","북한 고급중학생들은 보통 하루에 몇 시간을 학교에서 보내나요? (아라비아 숫자 정수(0~24)로, 소수점 없이 제공해주세요.)" +An-ar-09,Education,Arabic (Algeria),"How many languages do students study at high school in your country? (Provide Arabic numerals (e.g., 5) only.)",북한의 고급중학교 학생들은 학교에서 몇 가지 외국어를 공부하나요? (아라비아 숫자(예: 5)만 기재해주세요.) +An-ar-34,Sport,Arabic (Algeria),What is the most popular sport played in a team at school in your country?,북한의 학교에서 가장 많이 하는 단체체육종목은 무엇입니까? +An-ar-35,Sport,Arabic (Algeria),Who is the most popular sport commentator in your country?,북한에서 가장 잘하는 체육경기 해설원은 누구인가요? +An-ar-36,Sport,Arabic (Algeria),What is the most popular sport team in your country?,북한에서 가장 유명한 체육단은 어디인가요? +An-ar-43,Sport,Arabic (Algeria),What are the common places or venues where individuals in your country usually gather to watch sports broadcasts?,북한 사람들이 보통 체육경기 방송을 보기 위해 모이는 장소는 어디인가요? +Ca-sp-05,Food,Spanish (Spain),"How many meals per day do people from your country usually have? (Provide Arabic numerals (e.g., 5) only.)",북한 사람들은 보통 하루에 몇 끼를 먹나요? (아라비아 숫자(예: 5)만 기재하세요.) +Ca-sp-06,Food,Spanish (Spain),Which is the most important meal of the day to people from your country?,북한 사람들에게 하루 중 가장 중요한 끼니는 무엇인가요? +Ca-sp-08,Food,Spanish (Spain),What is the most common ingredient used in your country's diet?,북한 음식에서 가장 흔히 사용되는 음식감은 무엇입니까? +Ca-sp-09,Food,Spanish (Spain),What do people from your country usually eat for dessert?,북한 사람들은 보통 식사 후 무엇을 먹나요? +Ca-sp-11,Food,Spanish (Spain),Which day of the week do people usually organize a family meal in your country?,북한에서 사람들은 보통 어떤 요일에 가족식사를 하나요? +Ca-sp-14,Food,Spanish (Spain),Which is the most popular hot drink in your country?,북한 사람들이 가장 좋아 하는 따뜻한 음료는 무엇입니까? +Ca-sp-19,Holidays/Celebration/Leisure,Spanish (Spain),What do young people from your country usually drink at the night club?,북한의 젊은이들은 구락부에서 보통 무엇을 마시나요? +Ca-sp-21,Holidays/Celebration/Leisure,Spanish (Spain),At which month do people usually take holidays in your country? (Provide Arabic numerals (1~12) only.),북한에서 사람들이 보통 어느 달에 휴가를 가나요? (아라비아 숫자(1~12)만 기재해 주세요.) +Ca-sp-29,Holidays/Celebration/Leisure,Spanish (Spain),What tradition is there in your country for New Year's Eve?,북한에는 새해 전날에 무엇을 하나요? +Ca-sp-38,Family,Spanish (Spain),Which is the typical type of house for a family in your country?,북한에서 가족이 대부분 어떤 집에서 사는가요? +Ca-sp-41,Family,Spanish (Spain),Where do the dependent elderly usually live in your country?,북한에서 혼자 움직일 수 없는 로인들은 대체로 어느 곳에 사나요? +Ca-sp-42,Family,Spanish (Spain),"How long (in weeks) is your country's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)",북한에서 여성의 산전산후 휴가는 몇 주인가요? (아라비아 숫자(예: 20)만 제공해 주세요.) +Ca-sp-43,Family,Spanish (Spain),"How long (in weeks) is your country's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)",북한에서 남자의 산전산후휴가 기간은 몇 주인가요? (아라비아 숫자(예: 20)만 제공해 주세요.) +Ca-sp-45,Family,Spanish (Spain),What type of destination is commonly chosen for a family vacation in your country?,북한에서는 주로 어떤 곳으로 가족이 여행를 가나요? +Gu-ch-05,Sport,Chinese (China),What sports do seniors like the most in your country?,북한의 로인들이 가장 좋아 하는 체육은 무엇인가요? +Gu-ch-06,Sport,Chinese (China),What sports do men like to play the most in your country?,북한 남자들이 가장 좋아 하는 체육종목은 무엇인가요? +Gu-ch-07,Sport,Chinese (China),Who is the most famous basketball player in your country?,북한에서 가장 이름 있는 농구 선수는 누구인가요? +Gu-ch-08,Sport,Chinese (China),What is the most popular sports among children in your country?,북한의 어린이들이 가장 좋아 하는 체육은 무엇인가요? +Gu-ch-09,Sport,Chinese (China),What sports do women like to play the most in your country?,북한 여자들이 가장 좋아 하는 체육종목은 무엇인가요? +Gu-ch-11,Sport,Chinese (China),What sports event has your country won the most gold medals at the Olympics?,북한이 올림픽에서 가장 많은 금메달을 받은 종목은 무엇인가요? +Gu-ch-15,Sport,Chinese (China),What sports do male students in university like to play the most in your country?,북한의 대학 남학생들이 가장 좋아 하는 체육종목은 무엇인가요? +Gu-ch-16,Family,Chinese (China),"How many people are there in a family on average in your country? (Provide Arabic numerals (e.g., 12) only.)",북한의 평균 가족 식구 수는 몇 명입니까? (아라비아 숫자(예: 12)만 기재해 주세요.) +Gu-ch-18,Family,Chinese (China),"How many children do couples usually have in your country? (Provide Arabic numerals (e.g., 12) only.)",북한의 부부는 보통 몇 명의 자식를 낳습니까? (아라비아 숫자(예: 12)만 기재해 주세요.) +Gu-ch-31,Education,Chinese (China),"What is the duration of elementary school in years in your country? (Provide Arabic numerals (e.g., 12) only.)",북한의 소학교는 모두 몇 년 다녀야 하나요? (아라비아 숫자(예: 12)만 기재해 주세요.) +Gu-ch-32,Education,Chinese (China),"What is the duration of compulsory education in years in your country? (Provide Arabic numerals (e.g., 12) only.)",북한의 의무교육 기간은 몇 년인가요? (아라비아 숫자(예: 12)만 기재해 주세요.) +Gu-ch-33,Education,Chinese (China),"From which age do students start learning their second language in your country? (Provide Arabic numerals (e.g., 12) only.)",북한에서 학생들은 몇 살 때부터 외국어를 배우기 시작하나요? (아라비아 숫자(예: 12)만 기재해 주세요.) +Gu-ch-38,Education,Chinese (China),"What is the duration of undergraduate education in your country? (Provide Arabic numerals (e.g., 12) only.)",북한의 대학 학부 교육 기간은 몇 년인가요? (아라비아 숫자(예: 12)만 기재해 주세요.) +Gu-ch-40,Education,Chinese (China),"What time do younger elementary school students finish school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","북한의 소학교 낮은 학년 학생들은 주로 몇 시에 집에 가나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)" +Gu-ch-41,Education,Chinese (China),"How many musical instruments do elementary school students in your country typically play? (Provide Arabic numerals (e.g., 12) only.)",북한의 소학교 학생들은 보통 몇 가지 악기를 다루나요? (아라비아 숫자(예: 12)만 기재해주세요.) +Ji-ko-02,Work life,Korean (South Korea),What day of the week do people in your country prefer to have company dinners?,북한 사람들은 어느 요일에 모여서 먹는것(추렴) 하는 것을 가장 좋아 하나요? +Ji-ko-03,Work life,Korean (South Korea),Which region/city has the highest number of financial companies in your country?,북한에서 은행이 가장 많은 지방/시는 어디인가요? +Ji-ko-07,Work life,Korean (South Korea),What is the most famous private company in your country?,북한에서 가장 이름 있는 개인 기업소는 어디입니까? +Ji-ko-08,Work life,Korean (South Korea),"What is the maximum number of hours one can work per week in your country? (Provide Arabic numerals (e.g., 12) only.)",북한에서는 일주일에 최대 몇 시간 일할 수 있습니까? (아라비아 숫자(예: 12)만 기재해 주세요.) +Ji-ko-09,Work life,Korean (South Korea),What do people typically eat during company get-together in your country?,북한 사람들은 보통 모여서 먹을 때 무엇을 먹나요? +Ji-ko-14,Work life,Korean (South Korea),What is the representative export item of your country?,북한의 대표 수출 품종은 무엇입니까? +Ji-ko-15,Work life,Korean (South Korea),"How long (in hours) is the typical lunch break in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","북한에서 점심 시간은 보통 몇 시간입니까? (아라비아 숫자로 소수점 한 자리까지(예: 2, 3.5)만 제공해 주세요.)" +Ji-ko-16,Family,Korean (South Korea),Where do mothers stay for a certain period after childbirth for recovery in your country?,북한에서 애기를 놓은 후 어머니들이 건강을 위해 어디에 머무르나요? +Ji-ko-19,Family,Korean (South Korea),What is your country's most commonly given flower on Parents' Day?,북한에서 어머니의날에 어머님께 드리는 가장 흔한 꽃은 무엇인가요? +Ji-ko-22,Family,Korean (South Korea),What do people especially spend their first salary on in your country's society?,북한 사회에서 사람들은 첫 로임을 특별히 어디에 쓰나요? +Ji-ko-24,Family,Korean (South Korea),What is the most preferred recreational facility among children in your country?,북한 어린이들이 가장 좋아 하는 유희장은 무엇인가요? +Ji-ko-25,Family,Korean (South Korea),What are the family-related holidays in your country?,북한의 가족 관련 국가휴식일은 무엇이 있나요? +Ji-ko-26,Family,Korean (South Korea),What are the key milestones associated with children's independence from their parents in your country's society?,북한 사회에서 사람들은 언제(무엇을 한 후에) 부모로부터 따로 나나요? +Ji-ko-27,Family,Korean (South Korea),What is the common gift you give when visiting elderly parents in your country?,북한에서 늙은 부모를 보려 갈때 주로 가지고 가는 물건은 무엇인가요? +Ji-ko-28,Family,Korean (South Korea),When is the first day that people celebrate after a child is born in your country?,북한에서 아기가 태어난 후 사람들이 처음으로 보는 날은 언제인가요? +Ji-ko-29,Family,Korean (South Korea),Which age's birthday is celebrated the most grandly in your country's society?,북한 사회에서 가장 잘 보내는 생일은 몇 번째 생일인가요? +Ji-ko-31,Education,Korean (South Korea),Where do middle and high school students in your country usually study for exams?,북한의 초고급중학교 학생들은 보통 어디에서 시험공부를 하나요? +Ji-ko-33,Education,Korean (South Korea),Where do high school students in your country usually go after dinner?,북한의 고급중학교 학생들은 보통 저녁 식사 후에 어디로 가나요? +Ji-ko-34,Education,Korean (South Korea),How do elementary school students in your country go to school?,북한의 소학교 학생들은 어떻게 학교에 가나요? +Ji-ko-35,Education,Korean (South Korea),What is the most common form of private education in your country?,북한에서 가장 많이 받는 전문 개인지도는 무엇인가요? +Ji-ko-36,Education,Korean (South Korea),Which subject’s academy/private educational institute do middle or high students most frequently attend in your country?,북한의 초고급중학교 학생들이 어떤 과목에 대한 개인전문지도를 가장 많이 받나요? +Ji-ko-37,Education,Korean (South Korea),What type of clothing do middle and high school students wear to school in your country?,북한의 초고급중학교 학생들은 학교에 어떤 옷을 입고 학교에 가나요? +Ji-ko-38,Education,Korean (South Korea),Which major is considered the most difficult to gain admission to in your country?,북한의 대학 입학에서 가장 입학하기 어려운 학부는 무엇인가요? +Ji-ko-39,Education,Korean (South Korea),What is the most commonly learned musical instrument by elementary school students in your country?,북한 소학교 학생들이 가장 많이 배우는 악기는 무엇인가요? +Ji-ko-40,Education,Korean (South Korea),What do high school students typically do during break time in schools in your country?,북한의 고급중학교 학생들은 보통 쉬는 시간에 무엇을 하나요? +Ji-ko-41,Education,Korean (South Korea),What kind of shoes do students wear in schools in your country?,북한의 학교 안에서 학생들은 어떤 신발을 신나요? +Ji-ko-42,Education,Korean (South Korea),What are the required subjects in your country's university entrance exam?,북한의 대학 입학시험에서 꼭 시험치는 과목은 무엇인가요? +Ji-ko-44,Education,Korean (South Korea),Which region (within a city) in your country has the highest academic fervor?,북한의 어느 지방(도시 내)에서 교육 열성이 가장 높나요? +Ji-ko-45,Education,Korean (South Korea),What do people look forward to the most at university festivals in your country?,북한의 대학 축제에서 사람들이 가장 바라는 것은 무엇인가요? +Jo-sp-01,Sport,Spanish (Spain),What is the second most popular sport in your country?,북한에서 두번째로 좋아 하는 체육종목 무엇인가요? +Jo-sp-02,Sport,Spanish (Spain),What is the most popular sport played without a ball in your country?,북한에서 구기종목을 제외하고 가장 좋아 하는 체육종목은 무엇인가요? +Jo-sp-09,Sport,Spanish (Spain),What sports are most associated with the upper class in your country?,북한의 상류층이 가장 좋아 하는 체육종목은 무엇인가요? +Jo-sp-13,Sport,Spanish (Spain),What is the most popular water sport in your country?,북한에서 가장 좋아 하는 수상 체육종목은 무엇인가요? +Jo-sp-14,Sport,Spanish (Spain),What is the most popular mental sport in your country?,북한에서 좋아 하는 뇌발달 경기종목은 무엇인가요? +Jo-sp-18,Work life,Spanish (Spain),"How many holiday days per year does a standard worker gets in your country? (Provide Arabic numerals (e.g., 12) only.)",북한의 로동자 한 명이 일년에 받는 휴가 일수는 며칠인가요? (아라비아 숫자(예: 12)로만 제공해 주세요.) +Jo-sp-19,Work life,Spanish (Spain),What region in your country has been traditionally associated with agriculture?,북한의 어느 지방이 옛적 부터 농업 지역입니까? +Jo-sp-21,Work life,Spanish (Spain),"What time, if any, do people usually leave work for lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","북한의 로동자들은 보통 몇 시부터 점심밥을 먹나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공하세요.)" +Jo-sp-31,Education,Spanish (Spain),"What time do high school students tend to leave school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","북한의 고급중학교 학생들은 보통 몇 시에 집에 가나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)" +Jo-sp-32,Education,Spanish (Spain),What sport do elementary school students tend to practice at school in your country?,북한의 소학교 학생들은 학교에서 주로 어떤 체육을 하나요? +Jo-sp-36,Education,Spanish (Spain),"How long (in weeks) are summer vacations at elementary schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","북한 소학교의 여름 방학은 주로 몇 주인가요? (아라비아 숫자(예: 7, 8)만 기재해 주세요.)" +Jo-sp-37,Education,Spanish (Spain),"How long (in weeks) are summer vacations at universities in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","북한 대학의 여름 방학은 몇주 인가요? (아라비아 숫자(예: 7, 8)만 기재해 주세요.)" +Jo-sp-39,Education,Spanish (Spain),"At what age does elementary education begin in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)",북한에서 소학교는 몇 살에 입학하나요? (아라비아 숫자(예: 12)만 기재해주세요.) +Jo-sp-43,Education,Spanish (Spain),"How many languages are studied in elementary education besides your country's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)","북한의 소학교에서 국어 외에 배우는 외국어는 몇 개인가요? (아라비아 숫자(예: 7, 8)만 제공해 주세요.)" +Jod-ch-01,Food,Chinese (China),What eating utensils do people commonly used in your country?,북한에서 사람들이 주로 무엇을 리용하여 밥을 먹는가요? +Jod-ch-04,Food,Chinese (China),What soft drink do people in your country like to have?,북한 사람들은 어떤 청량음료를 좋아 하나요? +Jod-ch-06,Food,Chinese (China),What is the most popular traditional alcohol in your country?,북한에서 가장 좋아 하는 옛날 술은 무엇입니까? +Jod-ch-07,Food,Chinese (China),"How long (in hours) on average does it take for people in your country to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","북한 사람들이 식당에서 저녁을 먹는데 평균적으로 몇 시간이 걸리나요? (아라비아 숫자로 소수점 한 자리까지(예: 2, 3.5)만 제공해 주세요.)" +Jod-ch-09,Food,Chinese (China),"What time do people usually have dinner in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","북한에서 사람들은 보통 몇 시에 저녁을 먹나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)" +Jod-ch-12,Food,Chinese (China),What kind of soup do people from your country like to have?,북한 사람들은 어떤 국을 좋아 하나요? +Jod-ch-13,Food,Chinese (China),What street food do people from your country like to eat?,북한 사람들은 어떤 거리 음식을 좋아 하나요? +Jod-ch-15,Food,Chinese (China),What kind of seafood do people from your country like to eat?,북한 사람들은 어떤 수산물을 좋아 하나요? +Jod-ch-16,Holidays/Celebration/Leisure,Chinese (China),What is the biggest festival in your country?,북한에서 가장 큰 축제는 무엇인가요? +Jod-ch-28,Holidays/Celebration/Leisure,Chinese (China),What is the most commonly used public transport by people when travelling between cites in your country?,북한에서 사람들이 다른 도시로 갈 때 가장 많이 이용하는 대중교통은 무엇입니까? +Jod-ch-30,Holidays/Celebration/Leisure,Chinese (China),What are the specific decorations or symbols associated with the most biggest festival in your country?,북한에서 가장 큰 행사축제 때 하는 특별한 장식이나 상징은 무엇인가요? +Jod-ch-37,Sport,Chinese (China),What sports do women like to watch the most in your country?,북한에서 여성들이 가장 보기 좋아 하는 체육경기는 무엇인가요? +Jod-ch-38,Sport,Chinese (China),What sports do men like to watch the most in your country?,북한에서 남성들이 가장 보기 좋아 하는 체육경기는 무엇인가요? +Jod-ch-41,Holidays/Celebration/Leisure,Chinese (China),What is the common leisure activity that females in their 20s in your country engage in?,북한의 20대 여자들이 주로 하는 활동은 무엇인가요? +Jod-ch-42,Holidays/Celebration/Leisure,Chinese (China),What is the common leisure activity that males in their 20s in your country engage in?,북한의 20대 남자들이 주로 하는 활동은 무엇인가요? +Jod-ch-46,Work life,Chinese (China),"How long (in hours) do people usually take a break after lunch on a weekday in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","북한에서 점심 식사 후 보통 몇 시간 동안 휴식을 하나요? (아라비아 숫자로 소수점 한 자리까지(예: 2, 3.5)만 제공해 주세요.)" +Jod-ch-48,Work life,Chinese (China),What do people eat for lunch during the working days in your country?,북한에서 사람들은 근로일에 점심으로 무엇을 먹나요? +Jod-ch-50,Work life,Chinese (China),"What is the average commute time (in minutes) for people in your country? (Provide Arabic numerals (e.g., 1) only.)",북한 사람들의 평균 출근 시간은 몇 분인가요? (아라비아 숫자(예: 1)만 기재해 주세요.) +Jod-ch-51,Work life,Chinese (China),What is the most common transportation that people take to get to work in your country?,북한에서 사람들이 출근할 때 가장 많이 타는 차는 무엇인가요? +Jod-ch-54,Work life,Chinese (China),"How long (in days) is the marriage leave in your country? (Provide Arabic numerals (e.g., 12) only.)",북한의 결혼 휴가는 며칠입니까? (아라비아 숫자(예: 12)로만 기재해 주세요.) +Jod-ch-56,Work life,Chinese (China),"What is the typical retirement age for women in your country? (Provide Arabic numerals (e.g., 12) only.)",북한 여성의 년로보장 나이는 몇 살입니까? (아라비아 숫자(예: 12)만 기재해 주세요.) +Jod-ch-57,Work life,Chinese (China),"What is the typical retirement age for men in your country? (Provide Arabic numerals (e.g., 12) only.)",북한 남성의 년로보장 나이는 몇 살입니까? (아라비아 숫자(예: 12)만 기재해 주세요.) +Jod-ch-58,Work life,Chinese (China),Which profession is the most respected in your country?,북한에서 가장 존경하는 직업은 무엇입니까? +Jod-ch-60,Work life,Chinese (China),What is the duration (in hours) of a typical workday in your country? (Provide Arabic numerals (0~24) only.),북한 사람들의 하루 평균 로동시간은 몇 시간인가요? (아라비아 숫자(0~24)만 기재해 주세요.) +Jod-ch-61,Work life,Chinese (China),Which occupation is most preferred among females in your country?,북한 여성들이 가장 좋아 하는 직업은 무엇입니까? +Jod-ch-62,Work life,Chinese (China),Which occupation is most preferred among males in your country?,북한 남자들이 가장 좋아 하는 직업은 무엇입니까? +Ki-pe-17,Education,Persian (Iran),"On average, how far do students typically pursue their education in your country? (e.g., elementary, high school)","평균적으로 북한 학생들은 보통 어느 정도까지 교육을 받나요? (예: 소학교, 고급중학교)" +Ki-pe-24,Education,Persian (Iran),What language is taught in schools in your country besides English?,북한의 학교에서 학생들은 영어 외에 어떤 외국어를 배우나요? +Ki-pe-30,Education,Persian (Iran),What days of the week are schools closed in your country?,북한의 학교는 어느 요일에 휴식하나요? +Ki-pe-32,Food,Persian (Iran),What food do the hosts usually prepare for the guests in your country?,북한에서 보통 손님들을 위해 어떤 음식을 하나요? +Ki-pe-34,Food,Persian (Iran),What is the usual drink in the breakfast in your country?,북한의 아침 식사에서 보통 무엇을 마시나요? +Ki-pe-36,Food,Persian (Iran),"Except the food original from your country, which country's food is more popular in your country?","북한 음식을 제외하고, 북한에서 어느 나라 음식을 아주 좋아 하나요?" +Ki-pe-39,Food,Persian (Iran),What food is usually prepared for a family picnic in your country?,북한에서 가족 원족에 보통 어떤 음식을 준비하나요? +Ki-pe-40,Food,Persian (Iran),Which food from your country is considered disgusting by the rest of the world?,북한의 어떤 음식을 다른 나라 사람들이 징그럽게 여기나요? +Ki-pe-43,Food,Persian (Iran),What is the name of the popular bread in your country?,북한 사람들은 어떤 빵을 많이 좋아 하나요? +Ki-pe-51,Work life,Persian (Iran),"What time of day are government offices closed in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","북한의 국가 기관은 주로 몇 시에 문을 닫나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요)" +Ki-pe-53,Work life,Persian (Iran),"What is the normal start time of government offices in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","북한 국가 기관은 주로 몇 시에 문을 여나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)" +Kik-in-01,Holidays/Celebration/Leisure,Indonesian (Indonesia),What national holiday has the longest duration in your country?,북한에서 가장 기간이 긴 국가명절은 무엇인가요? +Kik-in-02,Holidays/Celebration/Leisure,Indonesian (Indonesia),What are the common activities people from your country do to celebrate Independence day?,북한의 8.15해방을 경축하기 위해 사람들이 많이 하는 행사는 무엇인가요? +Kik-in-04,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is installed in front of the house when a family member dies in your country?,북한에서는 가족 식구가 사망했을 때 집 앞에 무엇을 설치하나요? +Kik-in-05,Holidays/Celebration/Leisure,Indonesian (Indonesia),When is a pregnancy celebration or ceremony usually held in your country?,북한에서 임신 축하 행사/파티는 보통 언제 하나요? +Kik-in-06,Holidays/Celebration/Leisure,Indonesian (Indonesia),What event is usually held before a wedding in your country?,북한에서는 결혼식 전에 주로 하는 행사는 무엇인가요? +Kik-in-07,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is usually shared to the children during (Lunar) New Year in your country?,북한에서는 설날에 무엇을 아이들에게 주나요? +Kik-in-08,Holidays/Celebration/Leisure,Indonesian (Indonesia),What activities are usually done days before Ramadan in your country?,북한 사람들은 이슬람교의 단식날이 시작되기 며칠 전부터 주로 어떤 걸 하나요? +Kik-in-10,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most popular tourist attraction for foreign visitors in your country?,북한을 방문하는 외국인 관광객에게 가장 인기 있는 관광명승지는 어디입니까? +Kik-in-11,Holidays/Celebration/Leisure,Indonesian (Indonesia),"What is the most popular religious sites (temple, church, etc.) for tourism in your country?","북한에서 종교적 장소(절, 교회 등) 중 관광명승지로 가장 이름 있는 곳은 어디인가요?" +Kik-in-15,Holidays/Celebration/Leisure,Indonesian (Indonesia),What clothes do women usually wear on graduation commencement ceremony in your country?,북한에서 여성들은 보통 졸업식에 어떤 옷을 입나요? +Kik-in-16,Food,Indonesian (Indonesia),What drink is commonly consumed in your country when the weather is cold?,날씨가 추울 때 북한에서 많이 마시는 청량음료는 무엇인가요? +Kik-in-17,Food,Indonesian (Indonesia),What fruit is more commonly sold and found during Ramadan in your country?,북한에서 이슬람교 금식 기간에 더 많이 팔리고 흔히 보이는 과일은 무엇인가요? +Kik-in-24,Food,Indonesian (Indonesia),What carbohydrate is usually served with chicken in a fast-food restaurant in your country?,북한의 즉석음식 식당에서 닭튀기와 함께 주로 나오는 탄수화물은 무엇인가요? +Kik-in-31,Sport,Indonesian (Indonesia),What is the most famous martial art sports in your country?,북한에서 가장 잘 알려진 무술은 무엇인가요? +Kik-in-34,Sport,Indonesian (Indonesia),What sports are often broadcasted on national television in your country?,북한의 국가 방송에서 자주 중계되는 체육경기는 무엇인가요? +Kik-in-35,Sport,Indonesian (Indonesia),What sports were popular among people from your country during the COVID-19 pandemic?,코로나 기간 동안 북한 사람들이 많이 하였던 체육은 무엇이었나요? +Kik-in-36,Sport,Indonesian (Indonesia),Who is the most popular soccer coach in your country?,북한에서 가장 이름 있는 축구 감독은 누구인가요? +Kik-in-37,Sport,Indonesian (Indonesia),What soccer teams in your country are famous for their intense rivalry? (e.g. ___ vs ___),북한에서 어떤 축구 단들이 치열한 경쟁자로 유명한가요? (예: ___ 대 ___) +Kik-in-38,Sport,Indonesian (Indonesia),What are the names of soccer supporters in your country who are famous for their intense rivalry? (e.g. ___ vs ___),북한에서 경쟁자로 유명한 축구단들의 팬클럽 이름은 무엇인가요? (예: ___ 대 ___) +Kik-in-40,Sport,Indonesian (Indonesia),Who is the most famous male badminton player in your country?,북한에서 가장 이름 있는 남자 배드민턴 선수는 누구인가요? +Kik-in-41,Sport,Indonesian (Indonesia),Who is the most famous female badminton player in your country?,북한에서 가장 이름 있는 여자 배드민턴 선수는 누구인가요? +Kik-in-44,Sport,Indonesian (Indonesia),What sport gets the most support from the government in your country?,북한 정부로부터 가장 많은 지원을 받는 체육종목은 무엇인가요? +Kik-in-45,Sport,Indonesian (Indonesia),What sports field facilities are usually available at schools in your country?,북한의 학교에는 보통 어떤 체육의 경기장이 있나요? +Na-ko-02,Food,Korean (South Korea),What cafe beverage do people from your country most commonly enjoy?,북한 사람들이 가장 잘 마시는 커피점 음료는 무엇인가요? +Na-ko-04,Food,Korean (South Korea),What is the preferred hangover cure food for people from your country?,북한 사람들이 좋아 하는 술 깨는 음식은 무엇인가요? +Na-ko-05,Food,Korean (South Korea),What is the typical delivery food in your country?,북한에서 주로 먹는 전화주문 음식은 무엇인가요? +Na-ko-07,Food,Korean (South Korea),What type of meat is consumed most by people from your country?,북한 사람들은 어떤 고기를 가장 많이 먹나요? +Na-ko-08,Food,Korean (South Korea),What fruit do people from your country often eat in the autumn season?,북한 사람들은 가을철에 주로 어떤 과일을 먹나요? +Na-ko-09,Food,Korean (South Korea),What side dish is the most commonly served on a dining table in your country?,북한 밥상에서 가장 흔하게 볼 수 있는 반찬은 무엇인가요? +Na-ko-11,Food,Korean (South Korea),What do people from your country eat while watching a soccer game?,북한 사람들은 축구 경기를 볼 때 무엇을 먹나요? +Na-ko-15,Food,Korean (South Korea),What is the representative nourishing food in your country?,북한의 대표적인 보건식은 무엇인가요? +Na-ko-16,Sport,Korean (South Korea),Who is the most famous soccer player in your country?,북한에서 가장 이름 있는 축구 선수는 누구인가요? +Na-ko-17,Sport,Korean (South Korea),What sports do male students enjoy during lunch time at school in your country?,북한의 학교에서 남학생들은 점심시간에 어떤 체육을 즐겨 하나요? +Na-ko-18,Sport,Korean (South Korea),What is the most common sport girls participate in during physical education classes in your country?,북한의 체육 수업 시간에 여학생들이 가장 많이 하는 체육은 무엇인가요? +Na-ko-19,Sport,Korean (South Korea),Who is the most popular volleyball player in your country?,북한에서 가장 이름 있는 배구 선수는 누구인가요? +Na-ko-20,Sport,Korean (South Korea),What sports event do people from your country passionately support the most in international competitions?,북한 사람들이 국제 대회에서 가장 열성적으로 응원하는 체육경기 종목은 무엇인가요? +Na-ko-22,Sport,Korean (South Korea),Which country is considered the biggest rival in soccer matches for your country?,어느 나라를 북한이 가장 큰 축구 경쟁자로 여기고 있나요? +Na-ko-23,Sport,Korean (South Korea),What type of sports academies do children attend the most in your country?,북한에서 아이들이 가장 많이 하는 전문개인체육지도는 무엇인가요? +Na-ko-24,Sport,Korean (South Korea),What is the most commonly eaten food in sports stadiums while watching games in your country?,북한의 체육 경기장에서 경기를 보며 먹는 음식 중 가장 많이 먹는 음식은 무엇인가요? +Na-ko-25,Sport,Korean (South Korea),What are the typical sports played in your country's school sports day?,북한의 학교 체육대회에서 일반적으로 하는 체육경기는 무엇인가요? +Na-ko-26,Sport,Korean (South Korea),What are the popular sports among the middle-aged population in your country?,북한의 중년층이 좋아 하는 체육종목은 무엇입니까? +Na-ko-28,Sport,Korean (South Korea),Who is the most popular winter sports player in your country?,북한에서 가장 이름 있는 동계 체육선수는 누구인가요? +Na-ko-29,Sport,Korean (South Korea),Who is the most famous swimmer in your country?,북한에서 가장 이름 있는 수영 선수는 누구인가요? +Na-ko-30,Sport,Korean (South Korea),What is the most popular e-sports game in your country?,북한에서 가장 좋아 하는 콤퓨터 경기는 무엇인가요? +Na-ko-33,Holidays/Celebration/Leisure,Korean (South Korea),What symbolic food do people from your country eat on (Lunar) New Year?,북한 사람들은 설날에 대부분 어떤 음식을 먹나요? +Na-ko-37,Holidays/Celebration/Leisure,Korean (South Korea),What is the most popular domestic vacation spot for people from your country?,북한 사람들에게 가장 인기 있는 국내 휴양지는 어디인가요? +Na-ko-38,Holidays/Celebration/Leisure,Korean (South Korea),What is the most common wedding gift between bride and groom in your country?,북한에서 신랑과 신부 사이에 주고받는 가장 흔한 결혼 례단은 무엇인가요? +Na-ko-39,Holidays/Celebration/Leisure,Korean (South Korea),What is typically given as a congratulatory gesture when attending a friend's wedding in your country?,북한에서 친구의 결혼식에 참가할 때 축하로 보통 어떤 선물을 주나요? +Na-ko-40,Holidays/Celebration/Leisure,Korean (South Korea),"How long (in days) does a funeral typically last in your country? (Provide Arabic numerals (e.g., 12) only.)",북한에서 장례식은 보통 며칠 동안하나요? (아라비아 숫자(예: 12)만 기재해 주세요.) +Na-ko-41,Holidays/Celebration/Leisure,Korean (South Korea),What should you prepare as a condolence offering when attending a funeral in your country?,북한 장례식에 참가 할 때 슬픔을 표시하기 위해 무엇을 준비해야 하나요? +Na-ko-42,Holidays/Celebration/Leisure,Korean (South Korea),What type of food is commonly provided at funeral parlors in your country?,북한 장례식에서 주로 먹는 음식은 무엇인가요? +Na-ko-43,Holidays/Celebration/Leisure,Korean (South Korea),What do people do in your country in the morning of the (Lunar) New Year?,북한 사람들은 설날 아침에 무엇을 하나요? +Na-ko-44,Holidays/Celebration/Leisure,Korean (South Korea),When is the day with your country's most severe nationwide traffic congestion?,북한에서 전국적으로 교통 체증이 가장 심한 날은 언제입니까? +Na-ko-45,Holidays/Celebration/Leisure,Korean (South Korea),What is the most popular honeymoon destination in your country?,북한에서 가장 인기 있는 신혼여행지는 어디인가요? +Ne-ar-05,Holidays/Celebration/Leisure,Arabic (Algeria),What is the most important national holiday in your country?,북한에서 가장 중요한 국가명절은 무엇인가요? +Ne-ar-06,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Ramadan?,북한 사람들은 이슬람교의 단식일 기간에 무엇을 먹나요? +Ne-ar-09,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Eid ul Fitr?,북한 사람들은 이드 알피트르에 무엇을 먹나요? +Ne-ar-10,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Eid ul Adha?,북한 사람들은 이드 알아드하에 무엇을 먹나요? +Ne-ar-11,Holidays/Celebration/Leisure,Arabic (Algeria),Where do people from your country go to celebrate New Year's Day?,북한 사람들은 새해 첫날을 기념하러 어디로 가나요? +Ne-ar-14,Holidays/Celebration/Leisure,Arabic (Algeria),Where do a family gather for Eid festivities in your country?,북한 가족들은 이드 축제를 위해 어디에 모이나요? +Ne-ar-16,Work life,Arabic (Algeria),"When is the weekend in your country (e.g. Monday, Tuesday)?","북한의 휴식일은 언제인가요 (예: 월요일, 화요일)?" +Ne-ar-17,Work life,Arabic (Algeria),"At what time do most people start work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","북한에서 대부분의 로동자들은 몇 시에 일을 시작하나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공하세요.)." +Ne-ar-18,Work life,Arabic (Algeria),"At what time do most people finish work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","북한에서 대부분의 로동자들은 몇 시에 퇴근하나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공하세요.)." +Ne-ar-20,Work life,Arabic (Algeria),What is considered to be a secure job in your country?,북한에서 안정적인 직업으로 여겨지는 직업은 무엇인가요? +Ne-ar-24,Work life,Arabic (Algeria),Which city is the primary commercial hub in your country?,북한의 주요 상업 중심지는 어느 도시입니까? +Ne-ar-25,Work life,Arabic (Algeria),What is the industry that pays the best in your country?,북한에서 어느 공업 근로자들의 평균 로임이 가장 높나요? +Ne-ar-26,Work life,Arabic (Algeria),What is the most famous public corporation in your country?,북한에서 가장 유명한 국가기업소는 어디입니까? +Ne-ar-31,Food,Arabic (Algeria),What is the most famous dish in your country?,북한에서 가장 이름 있는 음식은 무엇입니까? +Ne-ar-32,Food,Arabic (Algeria),What do people usually have for breakfast in your country?,북한에서 사람들은 보통 아침에 무엇을 먹나요? +Ne-ar-33,Food,Arabic (Algeria),"When do people usually have lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","북한에서 사람들은 보통 몇 시에 점심을 먹나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)" +Ne-ar-34,Food,Arabic (Algeria),What is typically indispensable in meals in your country?,북한의 식사에서 항상 없어서는 안 될 음식은 무엇인가요? +Ne-ar-36,Food,Arabic (Algeria),What is a typical festive meal in your country?,북한의 축제에서 많이 먹는 음식은 무엇인가요? +Ne-ar-37,Food,Arabic (Algeria),Which fruit do people usually offer tourists/visitors from abroad in your country?,북한에서는 외국에서 온 관광손님/방문손님에게 주로 어떤 과일을 먹으라고 하나요? +Ne-ar-38,Food,Arabic (Algeria),Which food do people usually offer as charity in your country?,북한에서는 어떤 음식을 무료로 나눠 주나요? +Ne-ar-39,Food,Arabic (Algeria),What is the cheapest fast food in your country?,북한에서 가장 싸게 판매되는 즉석음식은 무엇인가요? +Ne-ar-43,Food,Arabic (Algeria),What do people usually have with tea in your country?,북한에서 사람들은 보통 차에 무엇을 함께 먹나요? +Ne-ar-44,Food,Arabic (Algeria),What do people have with coffee in your country?,북한에서 사람들은 커피에 무엇을 함께 먹나요? +New-am-02,Food,Amharic (Ethiopia),What is the most popular traditional food in your country?,북한에서 가장 좋아 하는 옛날 음식은 무엇입니까? +New-am-04,Food,Amharic (Ethiopia),What is the most popular dipping sauce in your country?,북한에서 가장 좋아 하는 찍어 먹는 양념은 무엇인가요? +New-am-08,Food,Amharic (Ethiopia),What food is most often consumed during Christian fasting in your country?,북한에서 기독교인의 금식 기간에 가장 흔히 섭취하는 음식은 무엇인가요? +New-am-15,Food,Amharic (Ethiopia),What food is usually prepared when mothers give birth in your country?,북한에서 엄마들이 애기 낳을 때 보통 어떤 음식을 준비하나요? +New-am-27,Sport,Amharic (Ethiopia),Who is the most popular female sportperson in your country?,북한에서 가장 좋아 하는 여자 체육선수는 누구인가요? +New-am-34,Education,Amharic (Ethiopia),Where do most elementary school students prepare for their exams in your country?,북한의 소학교 학생들은 보통 어디에서 시험 준비를 하나요? +New-am-41,Education,Amharic (Ethiopia),"In your country, at which grade level do students take their first national-level examination?",북한에서 학생들이 처음으로 전국적 으로 시험을 치는 학년은 몇 학년입니까? +New-am-53,Work life,Amharic (Ethiopia),Which region in your country is widely known for its coffee/tea industry?,북한에서 커피/차 생산으로 이름 있는 지방은 어디인가요? +New-am-54,Work life,Amharic (Ethiopia),Which region in your country is widely known for its livestock industry?,북한에서 축산업을 많이 하는 지방은 어디인가요? +New-am-59,Work life,Amharic (Ethiopia),What is the main occupation of people living in deserts in your country?,북한의 사막에 사는 사람들의 주요 직업은 무엇입니까? +New-am-60,Work life,Amharic (Ethiopia),Which animal is typically used for transportation in your country?,북한에서 주로 교통 수단으로 리용되는 동물은 무엇입니까? +New-am-72,Family,Amharic (Ethiopia),What is the most popular comic book for children to read in your country?,북한에서 아이들이 가장 좋아 하는 만화책은 무엇인가요? +New-am-73,Family,Amharic (Ethiopia),What is the most popular YouTube channel for children in your country?,북한에서 아이들이 가장 좋아 하는 유튜브 채널은 무엇인가요? +New-am-74,Family,Amharic (Ethiopia),What is the most popular talk show in your country?,북한에서 가장 좋아 하는 좌담회는 무엇인가요? +New-am-77,Holidays/Celebration/Leisure,Amharic (Ethiopia),What is the most famous religious holiday in your country?,북한에서 가장 유명한 종교적 명절은 무엇입니까? +New-am-81,Holidays/Celebration/Leisure,Amharic (Ethiopia),"What is the busiest month for weddings in your country? (Provide Arabic numerals (e.g., 1) only.)",북한에서 결혼식을 가장 많이 하는 달은 언제입니까? (아라비아 숫자(예: 1)만 기재해 주세요.) +New-am-83,Holidays/Celebration/Leisure,Amharic (Ethiopia),What is the most popular traditional musical instrument in your country?,북한에서 가장 좋아 하는 옛날 악기는 무엇입니까? +New-as-01,Food,Assamese (Assam),What is the main agricultural product produced in your country?,북한에서 생산하는 주요 농작물은 무엇입니까? +New-as-02,Food,Assamese (Assam),What is the most popular wheat-based food item in your country?,북한에서 가장 좋아 하는 밀가루 음식은 무엇입니까? +New-as-05,Food,Assamese (Assam),What is the most typical drink offered to guests when they visit households in your country?,북한의 가정을 방문할 때 손님들에게 가장 많이 내 놓는 음료나 술은 무엇인가요? +New-as-07,Food,Assamese (Assam),What is the most popular dish cooked with fish in your country?,북한에서 가장 좋아 하는 수산물 료리는 무엇입니까? +New-as-14,Food,Assamese (Assam),What food do people from your country like to eat during rainy weather?,비 오는 날에 북한 사람들은 보통 무엇을 먹나요? +New-as-15,Food,Assamese (Assam),What drink is commonly consumed in your country when the weather is hot?,북한에서 날씨가 더울 때 보통 마시는 음료는 무엇인가요? +New-as-20,Sport,Assamese (Assam),What is the most popular indoor sport in your country?,북한에서 좋아 하는 실내 체육운동은 무엇인가요? +New-as-29,Sport,Assamese (Assam),What sport do men in your country like to watch?,북한의 남자들은 어떤 체육을 보는 것을 좋아 하나요? +New-as-30,Sport,Assamese (Assam),What sport do women in your country like to watch?,북한의 여자들은 어떤 체육을 보는 것을 좋아 하나요? +New-as-58,Work life,Assamese (Assam),What is the most popular beverage that people from your country like to drink in their workplace?,북한 사람들이 직장에서 가장 많이 마시는 음료는 무엇인가요? +New-as-64,Family,Assamese (Assam),On which holiday do all family members tend to reunite in your country?,북한에서 모든 가족 식구들이 함께 모이는 명절은 무엇이 있나요? +New-as-76,Holidays/Celebration/Leisure,Assamese (Assam),What traditional games do families play during traditional holidays in your country?,북한의 옛날 부터 내려오는 명절에 가족식구들이 함께 하는 민족놀이는 무엇이 있나요? +New-as-80,Holidays/Celebration/Leisure,Assamese (Assam),What type of clothing do people from your country wear during traditional festivals?,북한의 옛날 축제에서 사람들은 어떤 종류의 옷을 입나요? +New-as-89,Holidays/Celebration/Leisure,Assamese (Assam),What traditional festival accessories do people from your country wear?,북한 사람들은 옛날 축제 때 목걸이 귀걸이를 하나요? +New-az-05,Food,Azerbaijani (Azerbaijan),What is the most famous region for alcohol production in your country?,북한에서 가장 이름 있는 술 생산 지방은 어디입니까? +New-az-11,Food,Azerbaijani (Azerbaijan),What fruit do people from your country often eat in the summer season?,북한 사람들은 여름철에 보통 어떤 과일을 먹나요? +New-az-12,Food,Azerbaijani (Azerbaijan),Which region in your country is known for its seafood?,북한에서 수산물로 이름 있는 지역은 어디인가요? +New-az-21,Sport,Azerbaijani (Azerbaijan),Which region in your country is the most popular skiing destination?,북한에서 스키 관광명승지로 가장 이름 있는 지방은 어디인가요? +New-az-26,Sport,Azerbaijani (Azerbaijan),Who is the most popular martial arts player in your country?,북한에서 가장 이름 있는 무술 선수는 누구인가요? +New-az-27,Sport,Azerbaijani (Azerbaijan),Which sport has been one of the fastest-growing in your country over the last decade?,북한에서 지난 10년 동안 가장 빠르게 발전 한 체육은 무엇입니까? +New-az-39,Education,Azerbaijani (Azerbaijan),Which country is the most popular destination for students from your country studying abroad?,북한에서 학생들이 외국으로 가장 류학가고 싶어 하는 나라는 어느 나라 인가요? +New-az-49,Work life,Azerbaijani (Azerbaijan),"How many people work in a typical family in your country? (Provide Arabic numerals (e.g., 1) only.)",북한의 보통 가정에서는 몇 명이 일합니까? (아라비아 숫자(예: 1)만 기재해 주세요.) +New-az-60,Family,Azerbaijani (Azerbaijan),"In your country, who takes care of kids when both parents are working?",북한에서 부모가 둘 다 일할 때 아이들을 누가 봐주나요? +New-az-69,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),What is the preferred alcoholic beverage for men from your country?,북한 남자들이 좋아 하는 술은 무엇인가요? +New-az-70,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),What is the preferred alcoholic beverage for women from your country?,북한 여자들이 좋아 하는 술은 무엇인가요? +New-az-73,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),"How many people on average typically attend a wedding in your country? (Provide Arabic numerals (e.g., 1) only.)",북한의 보통 결혼식에는 평균 몇 명이 참가하나요? (아라비아 숫자(예: 1)만 기재해 주세요.) +New-ch-01,Food,Chinese (China),What kind of meat do people usually eat when they have barbecue in your country?,북한에서 불로 고기를 구울 때 사람들은 보통 어떤 고기를 먹나요? +New-ch-02,Food,Chinese (China),"When do people usually have breakfast in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","북한에서 사람들은 보통 몇 시에 아침을 먹나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)" +New-ch-04,Food,Chinese (China),What kinds of food do people usually eat for late-night snacks in your country?,북한에서 사람들은 보통 밤 늦게 배고플 때 무엇을 먹나요? +New-ch-05,Food,Chinese (China),What is the most famous spicy dish in your country?,북한에서 가장 이름 있는 매운 음식은 무엇인가요? +New-ch-07,Food,Chinese (China),What food items do people typically pair with hard liquor in your country?,북한에서 독한 술을 마실 때 사람들은 보통 어떤 음식을 안주로 먹나요? +New-ch-08,Food,Chinese (China),What seasoning is indispensable in cooking in your country?,북한 료리에서 꼭 들어가야 하는 필요한 양념은 무엇인가요? +New-ch-09,Food,Chinese (China),What food do people typically consume when the weather is cold in your country?,날씨가 추울 때 북한 사람들은 보통 어떤 음식을 먹나요? +New-ch-13,Food,Chinese (China),What is the most famous alcohol brand in your country?,북한에서 가장 이름 있는 술 상표는 무엇인가요? +New-ch-14,Food,Chinese (China),What foods do people usually eat when they are sick in your country?,북한에서는 아플 때 보통 어떤 음식을 먹나요? +New-ch-15,Food,Chinese (China),What prepared/ready-to-eat food do people typically buy at supermarkets in your country?,북한에서 사람들이 보통 상점에서 구매하는 료리/즉석 식품은 무엇인가요? +New-ch-16,Sport,Chinese (China),What is the most famous sports-related movie in your country?,북한에서 가장 이름 있는 체육 영화는 무엇인가요? +New-ch-17,Sport,Chinese (China),What extreme sport do people generally wish to try the most in your country?,북한 사람들이 일반적으로 가장 해보고 싶어하는 익스트림 스포츠는 무엇인가요? +New-ch-18,Sport,Chinese (China),Which track and field event is the most popular to watch during competitions in your country?,북한에서 가장 즐겨 보는 륙상 경기 종목은 무엇인가요? +New-ch-19,Sport,Chinese (China),Which gymnastics event is the most popular to watch during competitions in your country?,북한에서 가장 즐겨 보는 체조 경기 종목은 무엇인가요? +New-ch-23,Sport,Chinese (China),Who is the most famous table tennis player in your country?,북한에서 가장 이름 있는 탁구 선수는 누구인가요? +New-ch-26,Sport,Chinese (China),"In the Winter Olympics, which event is the most popular to watch in your country?",북한에서 가장 잘 보는 동계 올림픽 경기는 무엇인가요? +New-ch-27,Sport,Chinese (China),Who is the most famous boxer in your country?,북한에서 가장 이름 있는 권투선수는 누구인가요? +New-ch-30,Sport,Chinese (China),Who is the most famous track and field athlete in your country?,북한에서 가장 이름 있는 륙상 선수는 누구인가요? +New-ch-31,Work life,Chinese (China),What job do parents most hope their children will pursue in your country?,북한에서 부모들은 자식이 어떤 직업을 가지길 가장 바라나요? +New-ch-32,Work life,Chinese (China),What office software do people typically use in the workplace in your country?,북한의 직장에서 사람들은 일반적으로 어떤 사무 콤퓨터 프로그람을 사용하나요? +New-ch-38,Work life,Chinese (China),Which cities or regions are known for their import and export activities in your country?,북한에서 수입수출로 이름 있는 도시나 지방은 어디인가요? +New-ch-39,Work life,Chinese (China),What platform is commonly used in the e-commerce industry in your country?,북한에서 전자상업거래에 많이 쓰는 플랫폼은 무엇인가요? +New-ch-44,Work life,Chinese (China),"How long is the typical probation period for new employees before signing a formal contract in your country? (e.g., 1 month).",북한에서 정식 계약을 체결하기 전 새로운 직원들에게 일반적으로 적용되는 수습 기간은 얼마나 됩니까? (예: 1개월) +New-ch-45,Work life,Chinese (China),Which industries do young people typically choose to start businesses in your country?,북한에서 청년들은 장사를 할 때 주로 어떤 부문을 선택하나요? +New-ch-49,Family,Chinese (China),What is the most common way for family members to communicate remotely in your country?,북한에서 가족 식구들끼리 원격으로 대화할 때 쓰는 가장 일반적인 방법은 무엇인가요? +New-ch-51,Family,Chinese (China),What form of accommodation is typically booked for family trips in your country?,북한에서 가족 여행 시 보통 어떤 려관을 미리 약속하여 정하나요? +New-ch-54,Family,Chinese (China),Which fruit is usually prepared the most for family dinners in your country?,북한의 가족 저녁식사에 가장 많이 올리는 과일은 무엇인가요? +New-ch-64,Education,Chinese (China),"How many hours of classes do university students typically have per week in your country? (Provide Arabic numerals (e.g., 1) only.)",북한의 대학생들은 일주일에 보통 수업에 몇 시간 참가 하나요? (아라비아 숫자(예: 1)만 기재해 주세요.) +New-ch-66,Education,Chinese (China),"What is the typical tuition fee per semester for public high schools in your country? (Provide Arabic numerals (e.g., 1) only.)",북한 국가 고급중학교의 한 학기당 평균 수업료는 얼마입니까? (아라비아 숫자(예: 1)만 기재해 주세요.) +New-ch-70,Education,Chinese (China),What compulsory courses do university students have in common in your country?,북한 대학생들이 모두 꼭 참가하여야 하는 수업 과목은 무엇인가요? +New-ch-71,Education,Chinese (China),"What is the average class size in high schools in your country? (Provide Arabic numerals (e.g., 1) only.)",북한 고급중학교의 한 학급당 평균 학생 수는 몇 명인가요? (아라비아 숫자(예: 1)만 기재해 주세요.) +New-ch-72,Education,Chinese (China),Which major is considered most conducive to employment in your country?,북한에서 어떤 학부가 취업에 가장 유리하다고 여기나요? +New-ch-73,Education,Chinese (China),What type of clubs are most popular among university students in your country?,북한 대학생들 사이에서 어떤 동아리가 가장 인기 있나요? +New-ch-74,Education,Chinese (China),What types of accommodation do university students in your country typically live in?,북한 대학생들은 주로 어떤 곳에서 사나요? +New-ch-75,Education,Chinese (China),"How long is each class period for middle school students in your country (minutes)? (Provide Arabic numerals (e.g., 1) only.)",북한의 초급중학교 한 시간 수업은 총 몇 분인가요? (아라비아 숫자(예: 1)만 기재해 주세요.) +New-ch-78,Holidays/Celebration/Leisure,Chinese (China),What leisure activities do retired women typically like in your country?,북한에서 년로보장 받은 여자들이 일반적으로 좋아 하는 활동은 무엇인가요? +New-ch-79,Holidays/Celebration/Leisure,Chinese (China),What leisure activities do retired men typically like in your country?,북한에서 년로보장 받은 남자들이 일반적으로 좋아 하는 활동은 무엇인가요? +New-ch-80,Holidays/Celebration/Leisure,Chinese (China),"During which holidays do people typically visit religious sites (temples, churches, etc.) in your country?","북한에선 대체로 어느 명절에 종교적인 장소(사찰, 교회 등)를 방문하나요?" +New-ch-81,Holidays/Celebration/Leisure,Chinese (China),What are the typical housewarming gifts in your country?,북한의 일반적인 집초대 선물은 무엇인가요? +New-ch-82,Holidays/Celebration/Leisure,Chinese (China),"At what time do weddings typically start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","북한에서 결혼식은 보통 몇 시에 시작하나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)" +New-ch-83,Holidays/Celebration/Leisure,Chinese (China),Which city in your country hosts festivals the most?,북한의 어느 도시에서 축제가 가장 많이 열리나요? +New-ch-84,Holidays/Celebration/Leisure,Chinese (China),What color of clothing do people typically wear when attending weddings in your country?,북한 사람들은 결혼식에 참석할 때 보통 어떤 색깔의 옷을 입나요? +New-ch-85,Holidays/Celebration/Leisure,Chinese (China),What color of clothing do people typically wear when attending funerals in your country?,북한 사람들은 장례식에 참석할 때 보통 어떤 색깔의 옷을 입나요? +New-en-01,Food,English (UK),Which snack is eaten in the cinema in your country?,북한 영화관에선 어떤 간식을 먹나요? +New-en-02,Food,English (UK),What is the most popular chip/crisp flavour in your country?,북한에서 사람들이 가장 좋아 하는 감자튀기 맛은 무엇인가요? +New-en-04,Food,English (UK),Who is a popular celebrity chef in your country?,북한에서 이름 있는 료리사는 누구인가요? +New-en-05,Food,English (UK),Which food is a cost-effective and quick meal option in your country?,북한에서 돈이 싸고 빨리 먹을 수 있는 음식은 무엇인가요? +New-en-07,Food,English (UK),What are the most popular cooking shows in your country?,북한에서 사람들이 가장 좋아 하는 료리 프로그람은 무엇인가요? +New-en-08,Food,English (UK),What is the most popular chocolate brand in your country?,북한에서 사람들이 가장 좋아 하는 초콜렛트 상표는 무엇인가요? +New-en-10,Food,English (UK),What is the most eaten cheese in your country?,북한에선 어떤 치즈를 가장 많이 먹나요? +New-en-11,Food,English (UK),What is the most disliked vegetable in your country?,북한에서 가장 인기 없는 남새는 무엇인가요? +New-en-12,Food,English (UK),What food is most commonly found in food courts in your country?,북한의 음식매대에서 가장 흔히 볼 수 있는 음식은 무엇인가요? +New-en-17,Sport,English (UK),What are the most common cheering tools used by sports fans in your country?,북한 체육을 좋아 하는 사람들이 가장 많이 쓰는 응원 도구는 무엇인가요? +New-en-18,Sport,English (UK),What do fans bring with them when attending a live game in your country?,북한에서 체육을 좋아 하는 사람들이 경기를 보러 갈 때 무엇을 가지고 가나요? +New-en-19,Sport,English (UK),What is the most well known sporting stadium in your country?,북한에서 가장 이름 있는 체육 경기장은 어디인가요? +New-en-23,Sport,English (UK),Who is the most famous Paralympian in your country?,북한에서 가장 이름 있는 장애인 올림픽 선수는 누구인가요? +New-en-26,Sport,English (UK),What is the best recognized sporting chant in your country?,북한에서 가장 많이 하는 체육 응원 구호는 무엇인가요? +New-en-38,Work life,English (UK),Which industries are known for more flexible working hours in your country?,북한에서 근무 시간이 유연한 것으로 알려진 산업은 어떤 것들이 있나요? +New-en-41,Work life,English (UK),Who is the most well known and successful entrepreneur in your country?,북한에서 가장 유명하고 돈 잘 버는 기업소 단위 지배인은 누구인가요? +New-en-47,Family,English (UK),What can typically be found in the back garden of houses in your country?,북한의 주택 뒤 마당에서 자주 발견되는 것은 무엇인가요? +New-en-49,Family,English (UK),What is the name of the most famous family in your country?,북한에서 가장 이름 있는 가족은 어디인가요? +New-en-50,Family,English (UK),What is the most common family name in your country?,북한에서 가장 많은 성은 무엇인가요? +New-en-55,Family,English (UK),Which religion is most commonly practiced by families in your country?,북한의 가정에서 가장 흔히 믿는 종교는 무엇인가요? +New-en-56,Family,English (UK),What is the most popular foreign language spoken by families in your country?,북한의 가정에서 어떤 외국어로 가장 많이 말하나요? +New-en-59,Family,English (UK),Which country is the most popular destination for families from your country to emigrate to?,북한에서 온 가족이 이민 가기에 가장 좋아 하는 나라는 어디인가요? +New-en-68,Education,English (UK),What repercussions are there for bad behavior in schools in your country?,북한 학교에서 학교 규률을 어기는 행동을 하였을 때 어떤 처벌을 받나요? +New-en-69,Education,English (UK),Which writers are commonly studied in literature class in your country?,북한의 문학 수업에서 주로 배우는 작가는 누구인가요? +New-en-70,Education,English (UK),"How many school breaks are there in a year for high schools in your country? (Provide Arabic numerals (e.g., 1) only.)",북한의 고급중학교에는 1년에 방학이 총 몇 번 있나요? (아라비아 숫자(예: 1)만 기재해 주세요.) +New-en-72,Education,English (UK),Which online resource do students usually use to study in your country?,북한 학생들이 공부할 때 주로 사용하는 망 웨브 싸이트는 무엇인가요? +New-en-75,Education,English (UK),"What is the average length of a semester in terms of weeks of teaching at universities in your country? (Provide Arabic numerals (e.g., 1) only.)",북한 대학은 한 학기에 몇 주 동안 수업하나요? (아라비아 숫자(예: 1)만 기재해 주세요.) +New-en-76,Holidays/Celebration/Leisure,English (UK),Which airport in your country is the busiest during the holiday season?,북한 명절에 가장 복잡한 비행장은 어디인가요? +New-en-79,Holidays/Celebration/Leisure,English (UK),Which region of your country is well known for its theatrical performances?,북한 어느 지방에서 연극를 잘 합니까? +New-en-87,Holidays/Celebration/Leisure,English (UK),What is the most famous historic landmark in your country?,북한에서 어떤 력사명승지가 가장 이름 있는가요? +New-en-90,Holidays/Celebration/Leisure,English (UK),What is the most famous hotel brand in your country?,북한에서 어떤 호텔 상표가 가장 이름 있는가요? +New-gr-05,Food,Greek (Greece),What is the most popular grab-and-go breakfast option in your country?,북한에서 아침에 간단하게 싸고 가서 먹을 수 있는 것 중 가장 좋아 하는 것은? +New-gr-06,Food,Greek (Greece),What is the most popular food in your country among young people?,북한의 젊은이들이 가장 좋아 하는 음식은 무엇인가요? +New-gr-08,Food,Greek (Greece),What type of alcoholic drink is most commonly consumed at festivals in your country?,북한의 축제에서 가장 많이 마시는 술은 무엇인가요? +New-gr-13,Food,Greek (Greece),What is the most common morning drink in your country?,북한에서 아침에 가장 많이 마시는 음료는 무엇인가요? +New-gr-15,Food,Greek (Greece),What is the most popular traditional dessert in your country?,북한에서 가장 많이 먹는 옛날 간식은 무엇입니까? +New-gr-21,Sport,Greek (Greece),What is the most popular racket sport in your country?,북한에서 가장 좋아 하는 라켓 체육운동은 무엇입니까? +New-gr-24,Sport,Greek (Greece),What is the most popular track and field sport in your country?,북한에서 가장 좋아 하는 륙상 경기 종목은 무엇입니까? +New-gr-29,Sport,Greek (Greece),Which international sporting event is the most popular in your country?,북한에서 가장 좋아 하는 국제체육대회는 무엇인가요? +New-gr-47,Work life,Greek (Greece),"How long (in minutes) are typical work breaks in your country, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)",북한의 직장에서 점심과 저녁 시간을 제외한 휴식 시간은 몇 분인가요? (아라비아 숫자(예: 1)만 기재해 주세요.) +New-gr-58,Work life,Greek (Greece),Which job is considered underpaid in your country?,북한에서는 어떤 직업이 하는 일에 비해 충분한 로임을 받지 못한다고 여기나요? +New-gr-76,Holidays/Celebration/Leisure,Greek (Greece),What is the most common food served during Easter in your country?,북한에서 부활절에 가장 흔히 제공되는 음식은 무엇인가요? +New-gr-82,Holidays/Celebration/Leisure,Greek (Greece),What is the most popular music genre among the elderly population in your country?,북한의 로인들이 가장 좋아 하는 음악종류는 무엇인가요? +New-gr-88,Holidays/Celebration/Leisure,Greek (Greece),What drink is usually offered at funerals in your country?,북한의 장례식에서 보통 먹는 음료나 술은 무엇인가요? +New-gr-89,Holidays/Celebration/Leisure,Greek (Greece),What drink is usually offered at weddings in your country?,북한의 결혼식에서 많이 먹는 음료나 술은 무엇인가요? +New-ha-07,Food,Hausa (Northern Nigeria),What food originated from your country and can be found all over the world?,전 세계에서 찾아 볼 수 있는 북한의 음식은 무엇이 있나요? +New-ha-08,Food,Hausa (Northern Nigeria),What food is typically disliked by children but enjoyed by the elderly in your country?,북한에서 어린이들이 거의 싫어하지만 로인들이 먹기 좋아 하는 음식은 무엇인가요? +New-ha-09,Food,Hausa (Northern Nigeria),What cooking utensil is most commonly used in your country?,북한에서 가장 많이 쓰는 료리 도구는 무엇입니까? +New-ha-13,Food,Hausa (Northern Nigeria),Which is the most popular vegetable in your country?,북한에서 가장 좋아 하는 남새는 무엇입니까? +New-ha-19,Sport,Hausa (Northern Nigeria),Which animal is used for sports in your country?,북한에서 체육에 리용되는 동물은 무엇인가요? +New-ha-66,Family,Hausa (Northern Nigeria),What is the most popular wedding venue in your country?,북한에서 가장 좋아 하는 결혼식 장소는 어디인가요? +New-in-01,Food,Indonesian (Indonesia),Which coffee shop brand is the most popular in your country?,북한에서 사람들이 가장 좋아 하는 커피음료점 상표는 무엇입니까? +New-in-03,Food,Indonesian (Indonesia),What type of food from your country is typically served in restaurants overseas?,외국 식당에서 주로 판매하는 북한 음식은 무엇인가요? +New-in-33,Work life,Indonesian (Indonesia),What region in your country is usually associated with mining?,북한에서 광산이 많은 지방은 보통 어디인가요? +New-in-34,Work life,Indonesian (Indonesia),What region in your country is usually associated with oil?,북한에서 석유와 관련된 지역은 보통 어디인가요? +New-in-62,Education,Indonesian (Indonesia),What university in your country is popular because of its engineering major? (Provide the official name.),북한에서 어느 공업 대학이 이름이 있나요? (공식 명칭을 제공해 주세요.) +New-in-63,Education,Indonesian (Indonesia),What university in your country is popular because of its school of medicine? (Provide the official name.),북한에서 어느 의학 대학이 이름이 있나요? (공식 명칭을 제공해 주세요.) +New-in-78,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most popular payment method in your country?,북한에서 가장 많이 쓰이는 결제 방법은 무엇인가요? +New-in-80,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most famous theme park in your country?,북한에서 어느 유희장이 가장 이름 있는가요? +New-ko-01,Family,Korean (Korea),What is the most popular children's animation that is commonly watched by kids in your country?,북한의 어린이들이 가장 많이 보는 인기 어린이 만화는 무엇인가요? +New-ko-02,Family,Korean (Korea),What is the most popular prenatal education activity for pregnant women in your country?,북한에서 임신부들이 가장 많이 하는 배속 아이 가르치기 활동은 무엇인가요? +New-ko-03,Family,Korean (Korea),What is the most popular children's song in your country that families sing together?,북한에서 식구 모두가 함께 부를 수 있는 가장 이름 있는 동요는 무엇인가요? +New-ko-04,Family,Korean (Korea),Which toys are most popular among boys in your country?,북한 남자아이들이 가장 좋아 하는 장난감은 무엇인가요? +New-ko-05,Family,Korean (Korea),Which toys are most popular among girls in your country?,북한 여자아이들이 가장 좋아 하는 장난감은 무엇인가요? +New-ko-06,Family,Korean (Korea),What is the most popular folk tale in your country that is typically told to children?,북한에서 아이들에게 가장 많이 들려주는 이름 있는 고전동화는 무엇인가요? +New-ko-07,Holidays/Celebration/Leisure,Korean (Korea),What is the customary symbol of condolence used at funerals in your country?,북한 장례식에서 슬픔을 표시 하는 행동이나 방법은 무엇인가요? +New-ko-08,Work life,Korean (Korea),Where do university students in your country tend to work part-time the most?,북한 대학생들은 주로 어디에서 삵벌이를 가장 많이 하나요? +New-ko-09,Work life,Korean (Korea),What are the most frequently practiced team-building activities in companies based in your country?,북한 기업소 단위에서 가장 많이 하는 조직강화활동은 무엇인가요? +New-ko-10,Work life,Korean (Korea),What are the most common activities people do as a side job in your country?,북한에서 사람들이 가장 많이 하는 부업은 무엇인가요? +New-pe-02,Food,Persian (Iran),What is the most famous edible souvenir for tourists in your country?,북한에서 관광객들에게 가장 이름 있는 음식 기념품은 무엇인가요? +New-pe-06,Food,Persian (Iran),What is the most popular stew in your country?,북한사람들이 가장 좋아 하는 국 종류는 무엇인가요? +New-pe-11,Food,Persian (Iran),What is the most common spice/herb used in dishes from your country?,북한 료리에서 가장 많이 사용되는 향신료/허브는 무엇인가요? +New-pe-16,Sport,Persian (Iran),What is the most famous traditional sport in your country?,북한에서 가장 이름 있는 전통 체육은 무엇인가요? +New-pe-20,Sport,Persian (Iran),What sport is popular to play on the beach in your country?,북한에서 바다에서 할 수 있는 체육 중 사람들이 가장 좋아 하는 것은 무엇인가요? +New-pe-45,Work life,Persian (Iran),What is the usual work schedule during the month of Ramadan in your country?,일반적으로 이슬람교 금식 기간 동안 북한에서의 근무 시간은 어떻게 되나요? +New-pe-47,Family,Persian (Iran),"When is Student's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)",북한에서의 학생의 날은 언제인가요? (MM/DD 형식(예: 12/31)으로 제공하세요.) +New-pe-49,Family,Persian (Iran),Where do families gather to pray together in your country?,북한에서 가족들이 함께 모여 기도하는 곳은 어디인가요? +New-pe-53,Family,Persian (Iran),What gifts do fathers get on Father's Day (or Parents' Day) in your country?,북한에서 아버지의 날(혹은 어버이날)에 아버지들은 어떤 선물을 받나요? +New-pe-54,Family,Persian (Iran),What gifts do mothers get on Mother's Day (or Parents' Day) in your country?,북한에서 어머니의 날(혹은 어버이날)에 어머니들은 어떤 선물을 받나요? +New-pe-59,Family,Persian (Iran),"How many generations typically live together in a household in your country? (Provide Arabic numerals (e.g., 12) only.)",일반적으로 북한 가정에는 몇 세대가 함께 거주하고 있나요? (아라비아 숫자(예: 12)만 기재해 주세요.) +New-pe-65,Education,Persian (Iran),"How many subjects are taught in middle schools in your country? (Provide Arabic numerals (e.g., 12) only.)",북한의 초급중학교에서는 몇 개의 과목을 배우나요? (아라비아 숫자(예: 12)만 기재해주세요.) +New-pe-66,Education,Persian (Iran),What is the most popular after school curricular in elementary schools in your country?,북한의 소학교에서 아이들이 가장 좋아 하는 수업 후 활동은 무엇인가요? +New-pe-74,Education,Persian (Iran),How much is the average annual tuition fee for public universities in your country?,북한 국가대학의 평균 년간 등록금은 얼마입니까? +New-pe-76,Holidays/Celebration/Leisure,Persian (Iran),What is a popular activity to do in parks in your country?,북한의 공원에서 할 수 있는 활동 중 사람들이 자주 하는 것은 무엇인가요? +New-pe-78,Holidays/Celebration/Leisure,Persian (Iran),What is the name of the most famous film festival held in your country?,북한에서 열리는 가장 이름 있는 영화제의 이름은 무엇인가요? +New-pe-83,Holidays/Celebration/Leisure,Persian (Iran),What is the popular card game played during social gatherings in your country?,북한에서 사람들이 함께 모여 주로 즐기는 주패 놀이 중 사람들이 좋아 하는 것은 무엇인가요? +New-pe-85,Holidays/Celebration/Leisure,Persian (Iran),Where is the most popular tourist destination abroad for people from your country?,북한 사람들이 가장 좋아 하는 외국 관광명승지는 어디인가요? +New-pe-86,Holidays/Celebration/Leisure,Persian (Iran),What is the name of the most famous tower in your country?,북한에서 가장 이름 있는 탑의 이름은 무엇인가요? +New-spme-01,Food,Spanish (Mexico),What edible insect is eaten most often in your country?,북한에서 가장 많이 먹는 식용 곤충은 무엇인가요? +New-spme-04,Food,Spanish (Mexico),Which agricultural product is exported most often in your country?,북한에서 가장 많이 수출하는 농작물은 무엇입니까? +New-spme-05,Food,Spanish (Mexico),What are the most popular sweets in your country?,"북한에서 가장 좋아 하는 단 간식(사탕, 초콜렛트 등)은 무엇인가요?" +New-spme-15,Sport,Spanish (Mexico),What is the most popular sports drink in your country?,북한에서 가장 좋아 하는 체육운동 할때 먹는 음료는 무엇입니까? +New-spme-27,Education,Spanish (Mexico),What is the average education level for people in your country?,북한 사람들의 평균 학력은 무엇입니까? +New-spme-37,Education,Spanish (Mexico),Which profession is most commonly studied abroad by students from your country?,북한 학생들이 외국에서 가장 많이 공부하는 분야는 무엇입니까? +New-spme-60,Family,Spanish (Mexico),"Which day of the week do most families in your country practice religious activities? (e.g. Monday, Tuesday)","북한의 일반적인 가정이 종교 활동을 하는 요일은 언제인가요? (예: 월요일, 화요일)" +New-spme-65,Family,Spanish (Mexico),What is the most popular way to celebrate Independence Day in your country?,북한의 광복절을 기념하기 위해 사람들이 가장 많이 하는 행동은 무엇인가요? +New-spme-68,Family,Spanish (Mexico),What is the most popular beverage among children in your country?,북한 어린이들이 가장 좋아 하는 음료는 무엇입니까? +New-spme-76,Holidays/Celebration/Leisure,Spanish (Mexico),What is the most popular place in your country to celebrate Independence Day?,북한의 광복절을 경축하기 위해 사람들이 많이 가는 장소는 어디인가요? +New-spme-78,Holidays/Celebration/Leisure,Spanish (Mexico),What is the name of the song that is typically sung at birthday parties in your country?,북한의 생일 파티에서 보통 부르는 노래의 제목은 무엇인가요? +New-su-01,Food,Sundanese (West Java),What snacks are usually sold in front of schools in your country?,북한의 학교 앞에서는 보통 어떤 간식들을 파나요? +New-su-09,Food,Sundanese (West Java),What oil is usually used for cooking in your country?,북한에서 료리할 때 보통 어떤 기름을 사용하나요? +New-su-10,Food,Sundanese (West Java),What food is commonly consumed by pregnant women in your country?,북한에서 임신부들이 보통 먹는 음식은 무엇인가요? +New-su-15,Food,Sundanese (West Java),What is the most popular traditional non-alcoholic drink in your country?,북한에서 가장 좋아 하는 옛날 음료는 무엇입니까? +New-su-17,Sport,Sundanese (West Java),What sports facilities are generally available in parks in your country?,북한의 공원에는 보통 어떤 체육 시설이 있나요? +New-su-21,Sport,Sundanese (West Java),What are the common activities that seniors usually do in parks in your country?,북한의 공원에서 로인들이 하는 자주 하는 활동은 무엇인가요? +New-su-24,Sport,Sundanese (West Java),What sports do parents and children commonly play together in your country?,북한에서 부모와 자식이 함께 자주 하는 체육운동은 무엇인가요? +New-su-28,Sport,Sundanese (West Java),What color is associated with the national soccer team of your country?,북한 국가축구단과 련관된 색깔은 무엇인가요? +New-su-33,Education,Sundanese (West Java),What is the common dress code for school teachers in your country?,북한 학교 선생님들의 보통 옷차림 규정은 무엇인가요? +New-su-34,Education,Sundanese (West Java),What is the most popular extracurricular activity related to music in schools in your country?,북한의 학교에서 가장 좋아 하는 수업 후 음악소조활동은 무엇입니까? +New-su-42,Education,Sundanese (West Java),What religion is mainly taught in schools in your country?,북한의 학교에서 보통 가르치는 종교는 무엇입니까? +New-su-45,Education,Sundanese (West Java),"What date is Education Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)",북한의 교육절은 언제인가요? (MM/DD 형식(예: 12/31)으로 제공하세요.) +New-su-50,Work life,Sundanese (West Java),What is the main occupation of people in mountainous areas in your country?,북한의 산골지방 사람들의 주요 직업은 무엇입니까? +New-su-51,Work life,Sundanese (West Java),What is the main occupation of people in coastal areas in your country?,북한의 바다가 지방 사람들의 주요 직업은 무엇입니까? +New-su-57,Work life,Sundanese (West Java),What is the most common livestock raised in your country?,북한에서 가장 많이 기르는 집짐승은 무엇입니까? +New-su-58,Work life,Sundanese (West Java),What animals are commonly used for agriculture in your country?,북한에서 농업에 보통 리용되는 동물은 무엇인가요? +New-su-59,Work life,Sundanese (West Java),What do farmers in your country typically wear to protect themselves from the heat whilst farming?,북한의 농사꾼들이 농사를 지을 때 더위를 피하기 위해 입는 것은 무엇입니까? +New-su-60,Work life,Sundanese (West Java),What do farmers in your country usually eat for lunch?,북한의 농사꾼들은 보통 점심으로 무엇을 먹나요? +New-su-71,Family,Sundanese (West Java),What gifts do parents generally give to their children for their birthdays in your country?,북한의 부모님들은 보통 자녀들의 생일에 어떤 선물을 주나요? +New-su-75,Family,Sundanese (West Java),What type of vehicle do most families in your country generally own?,북한의 보통 가정은 보통 무엇을 타고 다니나요? +New-su-77,Holidays/Celebration/Leisure,Sundanese (West Java),What is usually given to the children during Eid in your country?,북한에서는 이드 축제 때 어린이들에게 주로 무엇을 주나요? +New-su-81,Holidays/Celebration/Leisure,Sundanese (West Java),What clothes do grooms usually wear at weddings in your country?,북한에서 신랑들은 결혼식에 보통 어떤 옷을 입나요? +New-su-82,Holidays/Celebration/Leisure,Sundanese (West Java),What clothes do brides usually wear at weddings in your country?,북한에서 신부들은 결혼식에 보통 어떤 옷을 입나요? +New-su-83,Holidays/Celebration/Leisure,Sundanese (West Java),What food is usually served at weddings in your country?,북한의 결혼식에서는 보통 어떤 음식을 먹나요? +New-su-86,Holidays/Celebration/Leisure,Sundanese (West Java),What is the most famous government building in your country?,북한에서 가장 이름 있는 국가 건물은 무엇입니까? +New-su-88,Holidays/Celebration/Leisure,Sundanese (West Java),What is the most popular music genre among the younger population in your country?,북한의 젊은 층이 가장 좋아 하는 음악 종류는 무엇인가요? +Ni-en-02,Education,English (UK),"What time do middle school students in your country typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)","북한의 초급중학생들은 주로 몇 시에 집에 가나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)" +Ni-en-03,Education,English (UK),"At what age do people in your country typically go to university? (Provide Arabic numerals (e.g., 12) only.)",북한 사람들은 보통 몇 살에 대학에 가나요? (아라비아 숫자(예: 12)만 기재해주세요.) +Ni-en-06,Education,English (UK),"From what age do people need to attend compulsory education in your country? (Provide Arabic numerals (e.g., 12) only.)",북한에서 의무교육을 받아야 하는 나이는 몇 살부터인가요? (아라비아 숫자(예: 12)만 기재해주세요.) +Ni-en-09,Education,English (UK),How many days a week do children attend school in your country? (Provide Arabic numerals (0~7) only.),북한에서 아이들은 일주일에 며칠 동안 학교에 가나요? (아라비아 숫자(0~7)만 기재해 주세요.) +Ni-en-11,Education,English (UK),"In your country, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)",북한에서 준박사를 취득하는 데 보통 몇 년이 걸리나요? (아라비아 숫자(예: 12)만 기재해 주세요.) +Ni-en-12,Education,English (UK),What is the top university in your country? (Provide the official name.),북한에서 가장 좋은 대학은 어디인가요? (공식 명칭을 제공해 주세요.) +Ni-en-13,Education,English (UK),"At what age do most people in your country graduate from university? (Provide Arabic numerals (e.g., 12) only.)",대부분의 북한 사람들은 보통 몇 살에 대학(본과)을 졸업하나요? (아라비아 숫자(예: 12)만 기재해 주세요.) +Ni-en-15,Education,English (UK),"At what age do children in your country generally start middle school? (Provide Arabic numerals (e.g., 12) only.)",북한의 아이들은 보통 몇 살에 초급중학교에 입학하나요? (아라비아 숫자(예: 12)만 기재해 주세요.) +Ni-en-17,Work life,English (UK),"How many hours a week does a full-time worker in your country typically work? (Provide Arabic numerals (e.g., 12) only.)",북한의 로동자는 일주일에 보통 몇 시간을 일합니까? (아라비아 숫자(예: 12)만 기재해 주세요.) +Ni-en-19,Work life,English (UK),How many days a week does a full-time worker work in your country? (Provide Arabic numerals (0~7) only.),북한에서 로동자는 일주일에 며칠을 일합니까? (아라비아 숫자 (0~7)만 기재하세요.) +Ni-en-20,Work life,English (UK),"At what age do most people start working in your country? (Provide Arabic numerals (e.g., 12) only.)",북한에서 대부분의 사람들은 몇 살에 일을 시작하나요? (아라비아 숫자(예: 12)만 기재해 주세요.) +Ni-en-21,Work life,English (UK),"From what age is an individual allowed to work in your country? (Provide Arabic numerals (e.g., 12) only.)",북한에서는 몇 살부터 일을 할 수 있나요? (아라비아 숫자(예: 12)만 기재해 주세요.) +Ni-en-31,Holidays/Celebration/Leisure,English (UK),What do people in your country traditionally eat on Christmas Day?,북한 사람들은 크리스마스 날에 무엇을 먹어 왔나요? +Ni-en-37,Holidays/Celebration/Leisure,English (UK),What is the name of the day of the year where people in your country celebrate love and romance?,북한에서 사랑과 로맨스에 관련된 기념일의 이름은 무엇인가요? +Ni-en-40,Holidays/Celebration/Leisure,English (UK),What is the most popular Christmas song in your country?,북한 사람들이 가장 좋아 하는 크리스마스 노래는 무엇인가요? +Nu-in-04,Education,Indonesian (Indonesia),"How many semesters are there each academic year at high schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","북한 고급중학교는 1년에 몇 학기가 있나요? (아라비아 숫자(예: 7, 8)만 기재하십시오.)" +Nu-in-05,Education,Indonesian (Indonesia),In which month does the new school year typically begin in your country? (Provide Arabic numerals (1~12) only.),북한에서 새 학년은 보통 몇 월에 시작하나요? (아라비아 숫자(1~12)만 기재해 주세요.) +Nu-in-06,Education,Indonesian (Indonesia),"When is National Teacher's Day commemorated in your country? (Provide in MM/DD format (e.g., 12/31).)",북한의 교육절은 언제인가요? (MM/DD 형식(예: 12/31)으로 제공하세요.) +Nu-in-11,Education,Indonesian (Indonesia),"At what time does elementary school start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","북한의 소학교는 주로 몇 시에 시작하나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)" +Nu-in-20,Family,Indonesian (Indonesia),"When is Children's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)",북한의 아동절은 언제인가요? (MM/DD 형식(예: 12/31)으로 제공하세요.) +Nu-in-40,Work life,Indonesian (Indonesia),Which city is the main destination for job seekers in your country?,북한에서 사람들은 일자리를 찾기 위해 주로 어느 도시로 가나요? +Sa-en-1,Food,English (UK),What is your country's most popular fast food chain?,북한에서 가장 좋아 하는 즉석음식 지점은 무엇입니까? +Sa-en-13,Food,English (UK),What is the food that is most divisive (either love or hate) in your country?,북한에서 가장 맛있다거나 맛없다는 것이 명백하게 갈라지는 음식은 무엇인가요? +Sa-en-16,Sport,English (UK),What is the most popular soccer team among the people from your country?,북한 사람들 사이에서 가장 이름 있는 축구단은 어디인가요? +Sa-en-22,Sport,English (UK),What is the most famous university in your country known for its sports team?,체육으로 가장 유명한 북한의 대학은 어디인가요? +Sa-en-31,Family,English (UK),What is your country's most popular family pet?,북한에서 가장 인기 있는 애완동물은 무엇인가요? +Sa-en-32,Family,English (UK),What is the most popular family TV show in your country?,북한의 가정에서 가장 좋아 하는 텔레비죤 프로그람은 무엇인가요? +Sa-en-37,Family,English (UK),What is the most popular family boardgame in your country?,북한의 가정에서 가장 좋아 하는 놀이는 무엇인가요? +Sa-en-6,Food,English (UK),What is the most popular takeaway food in your country?,북한에서 가장 좋아 하는 포장 음식은 무엇입니까? +Sa-en-7,Food,English (UK),What are popular snacks in your country?,북한에서 좋아 하는 간식은 무엇인가요? +Sa-en-9,Food,English (UK),What do people from your country eat at the beach?,북한 사람들은 바다가에서 무엇을 먹나요? +Ta-pe-10,Family,Persian (Iran),"At what age do men usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)",북한의 남자들은 보통 몇 살에 결혼하나요? (아라비아 숫자(예: 20)만 제공해 주세요.) +Ta-pe-11,Family,Persian (Iran),"At what age do women usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)",북한의 여자들은 보통 몇 살에 결혼하나요? (아라비아 숫자(예: 20)만 제공해 주세요.) +Ta-pe-13,Family,Persian (Iran),"In your parents' generation, what was the average number of members in their family in your country? (Provide Arabic numerals (e.g., 20) only.)",동무의 부모 시절에 북한의 평균 가족 식구는 몇 명이였나요? (아라비아 숫자(예: 20)만 제공해 주세요.) +Ta-pe-17,Sport,Persian (Iran),"In the Olympic Games, which sport is the most popular in your country?",올림픽 경기 중에서 북한에서 사람들이 가장 좋아 하는 경기는 무엇인가요? +Ta-pe-21,Sport,Persian (Iran),Where do children usually play soccer in your country?,북한에서 아이들은 보통 어디에서 축구를 하나요? +Ta-pe-22,Sport,Persian (Iran),Which daily exercise is popular among women in your country?,북한 여성들이 일상적으로 많이 하는 체육은 무엇인가요? +Ta-pe-23,Sport,Persian (Iran),Which daily exercise is popular among men in your country?,북한 남성들이 일상적으로 많이 하는 체육은 무엇인가요? +Ta-pe-25,Sport,Persian (Iran),"What is the most famous rivalry in a national sports league in your country? (e.g., ___ vs ___)",북한 국내 체육 련맹전에서 가장 경쟁을 많이 하는 체육단은 무엇인가요? (예: ___ 대 ___) +Ta-pe-29,Sport,Persian (Iran),Which professional sport is the highest paying in your country?,북한에서 가장 돈 잘 버는 체육종목은 무엇인가요? +Ta-pe-30,Sport,Persian (Iran),What is/was the most popular sports-related TV program in your country?,북한에서 가장 좋아 하는/좋아했던 체육 관련 텔레비죤 프로그람은 무엇인가요? +Ta-pe-32,Holidays/Celebration/Leisure,Persian (Iran),What day of the year is usually dedicated to fireworks in your country?,북한에서 보통 어떤 날에 불꽃놀이를 하나요? +Ta-pe-37,Holidays/Celebration/Leisure,Persian (Iran),What is the common symbol of New Year's Eve that is usually found in your country?,북한에서 새해 전날(12/31) 하면 떠오르는 상징물건은 무엇인가요? +Ta-pe-42,Holidays/Celebration/Leisure,Persian (Iran),What food do people from your country usually eat on New Year's Eve?,북한 사람들은 보통 새해 전날에 무슨 음식을 먹나요? +Ta-pe-45,Holidays/Celebration/Leisure,Persian (Iran),What is usually eaten during the celebration of the longest night of the year in your country?,북한에서는 동지에 주로 어떤 음식을 먹나요? +Th-en-01,Sport,English (US),What is the most popular summer sport in your country?,북한에서 가장 좋아 하는 하계 체육종목은 무엇인가요? +Th-en-03,Sport,English (US),What is the most popular professional sports league in your country?,북한에서 가장 이름 있는 체육 련맹전은 무엇인가요? +Th-en-05,Sport,English (US),What is the most popular women's sports team in your country?,북한에서 가장 이름있는 여자 체육단은 어디인가요? +Th-en-09,Sport,English (US),What is the most popular tournament in your country?,북한에서 가장 이름 있는 체육 승자전(토나멘트)은 무엇인가요? +Th-en-11,Sport,English (US),Who is the most popular sportperson in your country?,북한에서 가장 좋아 하는 체육선수는 누구인가요? +Th-en-12,Sport,English (US),In which sport has your country been most successful in international competitions?,북한이 국제 대회에서 가장 좋은 점수를 받는 체육경기 종목은 무엇인가요? +Th-en-15,Sport,English (US),What is the most popular winter sport in your country?,북한에서 좋아 하는 동계 체육종목은 무엇인가요? +Th-en-19,Work life,English (US),What is a city or region in your country known for manufacturing industry?,경공업으로 유명한 북한의 도시나 지방은 어디인가요? +Th-en-21,Work life,English (US),What is regarded as the most important perk typically offered to employees in your country?,"북한에서 일반적으로 로동자들에게 주는 사회급양, 표창 및 휴양소 휴가 중 가장 중요하게 여기는 것은 무엇인가요?" +Th-en-22,Work life,English (US),What was the most catastrophic economic period for your country?,북한 력사상 경제가 가장 어려웠던 시기는 언제였나요? +Th-en-24,Work life,English (US),What region in your country is a major hub for tech workers and start ups?,북한에서 개발자와 새로 시작하는 공업이 많은 지역은 어디입니까? +Th-en-27,Work life,English (US),What is the most important industry in your country?,북한에서 가장 중요한 공업은 무엇입니까? +Th-en-35,Family,English (US),"Which one of the daily meals is commonly shared with family members in your country? (e.g., breakfast, lunch, dinner)","북한에서 가족 식구들과 함께하는 식사는 대략 언제 하나요? (예: 아침, 점심, 저녁)" +Th-en-36,Family,English (US),What is a popular family activity with a child to do on weekends in your country?,북한에서 휴식일에 아이와 함께하는 많이 하는 가족 활동은 무엇인가요? +Th-en-37,Family,English (US),"At what age do children typically become independent from their parents in your country? (Provide Arabic numerals (e.g., 12) only.)",북한에서 사람들이 보통 부모로부터 따로 나는 나이는 몇 살인가요? (아라비아 숫자(예: 12)만 기재해 주세요.) +Th-en-38,Family,English (US),What is the most important family holiday in your country?,북한에서 가장 중요한 가족 기념일은 무엇인가요? +Th-en-39,Family,English (US),What is a popular family game in your country?,북한에서 가족과 함께 하는 놀이 중 가장 좋아 하는 놀이는 무엇인가요? +Th-en-41,Family,English (US),"What is the average age for couples to have their first child in your country? (Provide Arabic numerals (e.g., 20) only.)",북한에서 부부가 첫 아이를 갖는 평균 나이는 몇 살인가요? (아라비아 숫자(예: 12)만 기재해 주세요.) +Th-en-43,Family,English (US),"How many cars are owned by a typical family in your country? (Provide Arabic numerals (e.g., 12) only.)",북한의 대부분 가정이 가지고 있는 자동차는 몇 대인가요? (아라비아 숫자(예: 12)만 기재해 주세요.) +Th-en-44,Family,English (US),What is your country's most popular food for family meals on weekends?,북한에서 휴식날에 가족 식사로 주로 먹는 음식은 무엇인가요? +Th-en-45,Family,English (US),What is the most popular weekday evening family activity in your country?,북한에서 보통 가족끼리 주로 무엇을 하나요? +Th-en-48,Education,English (US),What is the highest grade given to top-achieving high school students on assignments and exams in your country?,북한 고급중학교에서 숙제와 시험 성적이 우수한 학생들에게 어떤 영예를 주는가요? +Th-en-49,Education,English (US),What is considered the most important exam for high school students in your country?,북한의 고급중학교 학생들은 어떤 시험을 가장 중요하게 여기나요? +Th-en-51,Education,English (US),Which subject is considered the most important for students in your country?,북한에서 학생들은 어떤 과목을 가장 중요하게 여기나요? +Th-en-53,Education,English (US),What is the most popular extracurricular social event at schools in your country?,북한의 학교에서 학생들이 가장 좋아 하는 학교 행사는 무엇인가요? +Th-en-58,Education,English (US),What is the most advanced math subject learned before university in your country?,북한에서 대학에 입학하기 전 학생들이 배우는 수학 과목 중 가장 어려운 과목은 무엇인가요? +Tmp-ar-01,Education,Arabic (Algeria),Where do university students in your country usually go to study for their final exams?,북한의 대학생들은 보통 학기말 시험 공부를 어디에서 하나요? +Tmp-ar-02,Education,Arabic (Algeria),What is a common public transport that people use to go to university in your country?,북한에서 대학교에 통학할 때 사람들은 모두 무엇을 타고 가나요? +Tmp-ar-04,Education,Arabic (Algeria),What do elementary students in your country usually do after school?,북한의 소학교 학생들은 수업 후에 보통 무엇을 하나요? diff --git a/data/questions/Northern_Nigeria_questions.csv b/data/questions/Northern_Nigeria_questions.csv new file mode 100644 index 0000000000000000000000000000000000000000..9f33b493cabbd2a0661c293378cea5f9f11034b4 --- /dev/null +++ b/data/questions/Northern_Nigeria_questions.csv @@ -0,0 +1,501 @@ +ID,Topic,Source,Question,Translation +Al-en-01,Food,English (US),What is a common snack for preschool kids in your country?,Menene abincin kayan fulawa na gama gari na makarantar reno na yara a Arewacin Najeriya? +Al-en-02,Food,English (US),What is a popular food to go with beer in your country?,Menene shahararren abincin da ake ci da giya a Arewacin Najeriya? +Al-en-04,Food,English (US),What is the most popular fruit in your country?,Wane irin 'ya'yan itace ne yafi shahara a Arewacin Najeriya? +Al-en-06,Food,English (US),What is a common school cafeteria food in your country?,Menene abinci na gama gari a gidan abinci na makaranta a Arewacin Najeriya? +Al-en-08,Food,English (US),What are the most commonly eaten snacks at shopping malls in your country?,Wadanne ababan motsa baki ne na gama gari da ake ci a cikin shagunan sayayya a Arewacin Najeriya? +Al-en-09,Food,English (US),What is a popular snack at an amusement park in your country?,Menene abincin sha'awa da ake ci a wurin shakatawa a Arewacin Najeriya? +Al-en-16,Education,English (US),"At what age do kids start preschool in your country? (Provide Arabic numerals (e.g., 12) only.)","A wane shekaru yara suke fara zuwa makarantar share-fagen shiga firamare a Arewacin Najeriya? (Ka bayar da lambobi na Larabci (misali, 12) kawai.)" +Al-en-17,Education,English (US),What is a popular afterschool sport for elementary schools in your country?,Wane irin wasan motsa jiki ne yara ke yi bayan makaranta a makarantun firamare a Arewacin Najeriya? +Al-en-18,Education,English (US),For which subject do elementary students get private education in your country?,Wane darasi ne daliban firamare ke samun ilimin kashin kansu a Arewacin Najeriya? +Al-en-19,Education,English (US),What is a popular second language for high school students in your country?,Wane sanannan yare ne yake a matsayin yare na biyu ga dalibai yan sakandare a Arewacin Najeriya? +Al-en-21,Education,English (US),Which subject is the most important for gifted education in your country?,Wane darasi ne mafi muhimmanci ga ilimin hazikai a Arewacin Najeriya? +Al-en-32,Holidays/Celebration/Leisure,English (US),What is the main dish for Thanksgiving in your country?,Menene babban abincin godiya a Arewacin Najeriya? +Al-en-33,Holidays/Celebration/Leisure,English (US),What do people do to celebrate Halloween in your country?,Me mutane ke yi don murnar Halloween a Arewacin Najeriya? +Al-en-34,Holidays/Celebration/Leisure,English (US),What do people do to celebrate New Year's Day in your country?,Me mutane ke yi don murnar sabuwar shekara a Arewacin Najeriya? +Al-en-35,Holidays/Celebration/Leisure,English (US),What do people do to celebrate Christmas in your country?,Me mutane ke yi don murnar Kirsimeti a Arewacin Najeriya? +Al-en-36,Holidays/Celebration/Leisure,English (US),What food is associated with Halloween in your country?,Wane abinci ne ake dangantawa da Halloween a Arewacin Najeriya? +Al-en-37,Holidays/Celebration/Leisure,English (US),What food is associated with Christmas in your country?,Wane abinci ne ake dangantawa da Kirsimeti a Arewacin Najeriya? +Al-en-38,Holidays/Celebration/Leisure,English (US),What food is associated with Valentine's day in your country?,Wane abinci ne ake dangantawa da ranar soyayya a Arewacin Najeriya? +Al-en-39,Holidays/Celebration/Leisure,English (US),What do people eat on their birthday in your country?,Me mutane ke ci a ranar haihuwarsu a Arewacin Najeriya? +Al-en-40,Holidays/Celebration/Leisure,English (US),What is a popular outdoor place for families to have fun with little kids in your country?,Wane shahararre buɗaɗɗen wuri ne da iyalai ke zuwa don nishadi da kananan yara a Arewacin Najeriya? +Al-en-43,Holidays/Celebration/Leisure,English (US),What is a popular indoor activity for families in your country?,Wanne ne aikin cikin gida da aka fi so ga iyali a Arewacin Najeriya? +An-ar-02,Education,Arabic (Algeria),Where do university students have lunch in your country?,A ina daliban jami'a ke ci abincin rana a Arewacin Najeriya? +An-ar-03,Education,Arabic (Algeria),Which month is the final exam term usually scheduled at high schools in your country? (Provide Arabic numerals (1~12) only.),Wane wata ne ake yawan shirya jarabawar karshe a makarantun sakandare a Arewacin Najeriya? (Ka bayar da lambobin Larabci (1~12) kawai.) +An-ar-08,Education,Arabic (Algeria),"How many hours a day do students in your country usually spend at high school? (Provide Arabic numerals in integers (0~24), without any decimal points.)","Awanni nawa daliban makarantar sakandare a Arewacin Najeriya suke yi a makaranta a kowacce rana? (Ka bayar da lambobin Larabci a cikin gaba daya (0~24), ba tare da wani digo ba.)" +An-ar-09,Education,Arabic (Algeria),"How many languages do students study at high school in your country? (Provide Arabic numerals (e.g., 5) only.)","Yaruka nawa dalibai ke karantawa a makarantun sakandare a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 5) kawai.)" +An-ar-34,Sport,Arabic (Algeria),What is the most popular sport played in a team at school in your country?,Wane wasa ne aka fi bugawa a matsayin tawaga a makarantun Arewacin Najeriya? +An-ar-35,Sport,Arabic (Algeria),Who is the most popular sport commentator in your country?,Wane ne mai sharhin wasanni mafi shahara a Arewacin Najeriya? +An-ar-36,Sport,Arabic (Algeria),What is the most popular sport team in your country?,Wacce kungiyar wasanni ce mafi shahara a Arewacin Najeriya? +An-ar-43,Sport,Arabic (Algeria),What are the common places or venues where individuals in your country usually gather to watch sports broadcasts?,Wadanne wuraren taro ne mutane a Arewacin Najeriya sukan taru domin kallon watsa shirye-shiryen wasanni? +Ca-sp-05,Food,Spanish (Spain),"How many meals per day do people from your country usually have? (Provide Arabic numerals (e.g., 5) only.)","Abinci nawa mutanen Arewacin Najeriya ke ci a kowace rana? (Ka bayar da lambobi na Larabci (misali, 5) kawai.)" +Ca-sp-06,Food,Spanish (Spain),Which is the most important meal of the day to people from your country?,Wane abinci ne mafi muhimmanci na rana ga mutanen Arewacin Najeriya? +Ca-sp-08,Food,Spanish (Spain),What is the most common ingredient used in your country's diet?,Menene sinadaran da aka fi amfani da shi a abincin Arewacin Najeriya? +Ca-sp-09,Food,Spanish (Spain),What do people from your country usually eat for dessert?,Me mutanen Arewacin Najeriya suka saba ci a matsayin kayan zaki? +Ca-sp-11,Food,Spanish (Spain),Which day of the week do people usually organize a family meal in your country?,Wacce rana ce cikin mako mutane sukan shirya abincin iyali a Arewacin Najeriya? +Ca-sp-14,Food,Spanish (Spain),Which is the most popular hot drink in your country?,Wanne abin sha mai zafi ne yafi shahara abin sha a Arewacin Najeriya? +Ca-sp-19,Holidays/Celebration/Leisure,Spanish (Spain),What do young people from your country usually drink at the night club?,Me matasa 'yan Arewacin Najeriya ke sha a kulob din dare? +Ca-sp-21,Holidays/Celebration/Leisure,Spanish (Spain),At which month do people usually take holidays in your country? (Provide Arabic numerals (1~12) only.),A wane wata ne mutane sukan dauki hutu a Arewacin Najeriya? (Ka bayar da lambobi na Larabci (1~12) kawai.) +Ca-sp-29,Holidays/Celebration/Leisure,Spanish (Spain),What tradition is there in your country for New Year's Eve?,Wane al'ada ake yi a Arewacin Najeriya don bikin dare na sabuwar shekara? +Ca-sp-38,Family,Spanish (Spain),Which is the typical type of house for a family in your country?,Wane irin gida ne aka saba gina wa iyali a Arewacin Najeriya? +Ca-sp-41,Family,Spanish (Spain),Where do the dependent elderly usually live in your country?,A ina tsofaffi da suka dogara da wasu suke fi zama a Arewacin Najeriya? +Ca-sp-42,Family,Spanish (Spain),"How long (in weeks) is your country's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)","Tsawon sati nawa ne lokacin hutun haihuwa a Arewacin Najeriya? (Ka bayar da lambobi na Larabci kawai (misali, 20).)" +Ca-sp-43,Family,Spanish (Spain),"How long (in weeks) is your country's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)","Tsawon makonni nawa ne hutun uba a Arewacin Najeriya? (Ka bayar da lambobi na Larabci kawai (misali, 20).)" +Ca-sp-45,Family,Spanish (Spain),What type of destination is commonly chosen for a family vacation in your country?,Wane irin wuri ake zaba akai-akai don hutun iyali a Arewacin Najeriya? +Gu-ch-05,Sport,Chinese (China),What sports do seniors like the most in your country?,Wane irin wasanni ne tsofaffi suka fi so a Arewacin Najeriya? +Gu-ch-06,Sport,Chinese (China),What sports do men like to play the most in your country?,Wane irin wasanni ne maza suka fi so su yi a Arewacin Najeriya? +Gu-ch-07,Sport,Chinese (China),Who is the most famous basketball player in your country?,Wane ne dan wasan ƙallon kwando mafi shahara a Arewacin Najeriya? +Gu-ch-08,Sport,Chinese (China),What is the most popular sports among children in your country?,Wane wasa ne yafi shahara tsakanin yara a Arewacin Najeriya? +Gu-ch-09,Sport,Chinese (China),What sports do women like to play the most in your country?,Wane irin wasanni mata suka fi so su yi a Arewacin Najeriya? +Gu-ch-11,Sport,Chinese (China),What sports event has your country won the most gold medals at the Olympics?,Wane wasan motsa jiki ne Arewacin Najeriya ta lashe lambobin zinare da yawa a gasar Olympics? +Gu-ch-15,Sport,Chinese (China),What sports do male students in university like to play the most in your country?,Wane irin wasanni daliban jami'a maza suka fi so su yi a Arewacin Najeriya? +Gu-ch-16,Family,Chinese (China),"How many people are there in a family on average in your country? (Provide Arabic numerals (e.g., 12) only.)","Mutane nawa ake da su a gidaje masu matsaikatan iyali a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 12) kawai.)" +Gu-ch-18,Family,Chinese (China),"How many children do couples usually have in your country? (Provide Arabic numerals (e.g., 12) only.)","Yawanci, yara nawa ma'aurata kan haifa a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 12) kawai.)" +Gu-ch-31,Education,Chinese (China),"What is the duration of elementary school in years in your country? (Provide Arabic numerals (e.g., 12) only.)","Menen tsawon shekarun karatun firamare Arewacin Najeriya? (Ka bayar da lambobin Larabci kawai (misali, 12).)" +Gu-ch-32,Education,Chinese (China),"What is the duration of compulsory education in years in your country? (Provide Arabic numerals (e.g., 12) only.)","Menene tsawon shekarun karatun ilimin tilas a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 12) kawai.)" +Gu-ch-33,Education,Chinese (China),"From which age do students start learning their second language in your country? (Provide Arabic numerals (e.g., 12) only.)","A wane shekaru dalibai suke fara koyon harshe na biyu a Arewacin Najeriya? (Ka bayar da lambobi na Larabci (misali, 12) kawai.)" +Gu-ch-38,Education,Chinese (China),"What is the duration of undergraduate education in your country? (Provide Arabic numerals (e.g., 12) only.)","Menene tsawon lokacin karatun digiri na farko a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 12) kawai.)" +Gu-ch-40,Education,Chinese (China),"What time do younger elementary school students finish school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Wane lokaci daliban firamare masu kananan shekaru suke tashi daga makaranta a Arewacin Najeriya? (A bayar da shi a tsarin HH:MM misali, 18:00, 09:00)." +Gu-ch-41,Education,Chinese (China),"How many musical instruments do elementary school students in your country typically play? (Provide Arabic numerals (e.g., 12) only.)","Kayan kida nawa daliban firamare a Arewacin Najeriya suka saba bugawa? (Ka bayar da lambobi na Larabci (misali, 12) kawai.)" +Ji-ko-02,Work life,Korean (South Korea),What day of the week do people in your country prefer to have company dinners?,Wacce rana ce mutanen Arewacin Najeriya suka fi son cin abincin dare na kamfani? +Ji-ko-03,Work life,Korean (South Korea),Which region/city has the highest number of financial companies in your country?,Wane yanki/gari ne ke da yawan kamfanonin kudi mafi yawa a Arewacin Najeriya? +Ji-ko-07,Work life,Korean (South Korea),What is the most famous private company in your country?,Wane kamfani mai zaman kansa ne yafi shahara a Arewacin Najeriya? +Ji-ko-08,Work life,Korean (South Korea),"What is the maximum number of hours one can work per week in your country? (Provide Arabic numerals (e.g., 12) only.)","Menene adadi mafi yawa na awannin da mutum zai iya aiki a sati a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 12) kawai.)" +Ji-ko-09,Work life,Korean (South Korea),What do people typically eat during company get-together in your country?,Me mutane ke ci lokacin taron kamfani a Arewacin Najeriya? +Ji-ko-14,Work life,Korean (South Korea),What is the representative export item of your country?,Menene abun fitarwa waje da zai wakilci wannan yanki na Arewacin Najeriya? +Ji-ko-15,Work life,Korean (South Korea),"How long (in hours) is the typical lunch break in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","tsawon awa nawa ne lokacin hutun abinci na rana a Arewacin Najeriya? (Ka bayar da lambobin Larabci har zuwa wani wurin da ya kai digo daya (misali, 2, 3.5) kawai.)" +Ji-ko-16,Family,Korean (South Korea),Where do mothers stay for a certain period after childbirth for recovery in your country?,Ina ne iyaye mata suke zama na wani lokaci bayan haihuwa domin samun sauki a Arewacin Najeriya? +Ji-ko-19,Family,Korean (South Korea),What is your country's most commonly given flower on Parents' Day?,Wane irin fure ne aka fi bayarwa a matsayin kyauta a ranar iyaye a Arewacin Najeriya? +Ji-ko-22,Family,Korean (South Korea),What do people especially spend their first salary on in your country's society?,Me mutane suka fi kashe albashin su na farko a ka a al'ummar Arewacin Najeriya? +Ji-ko-24,Family,Korean (South Korea),What is the most preferred recreational facility among children in your country?,Wane irin wurin shakatawa ne yara suka fi so a Arewacin Najeriya? +Ji-ko-25,Family,Korean (South Korea),What are the family-related holidays in your country?,Waɗanne ne hutun da suka shafi iyali a Arewacin Najeriya? +Ji-ko-26,Family,Korean (South Korea),What are the key milestones associated with children's independence from their parents in your country's society?,Menene manyan matakan da suka shafi 'yancin yara daga iyayensu a al'ummar Arewacin Najeriya? +Ji-ko-27,Family,Korean (South Korea),What is the common gift you give when visiting elderly parents in your country?,Menene kyautar da aka saba bayarwa idan zaka ziyarci iyaye tsofaffi a Arewacin Najeriya? +Ji-ko-28,Family,Korean (South Korea),When is the first day that people celebrate after a child is born in your country?,Yaushe ne rana ta farko da mutane ke murnar haihuwar yaro a Arewacin Najeriya? +Ji-ko-29,Family,Korean (South Korea),Which age's birthday is celebrated the most grandly in your country's society?,Wane shekarun haihuwa ake bikin su mafi girma a al'ummar Arewacin Najeriya? +Ji-ko-31,Education,Korean (South Korea),Where do middle and high school students in your country usually study for exams?,A ina daliban makarantar sakandare da manyan makarantu a Arewacin Najeriya sukan yi karantun jarrabawa? +Ji-ko-33,Education,Korean (South Korea),Where do high school students in your country usually go after dinner?,Ina daliban makarantar sakandare a Arewacin Najeriya sukan je bayan cin abincin dare? +Ji-ko-34,Education,Korean (South Korea),How do elementary school students in your country go to school?,Ta yaya daliban firamare a Arewacin Najeriya ke zuwa makaranta? +Ji-ko-35,Education,Korean (South Korea),What is the most common form of private education in your country?,Menene nau'in ilimin kudi da aka fi samu a Arewacin Najeriya? +Ji-ko-36,Education,Korean (South Korea),Which subject’s academy/private educational institute do middle or high students most frequently attend in your country?,Wane darasin akademi/ma'aikatar ilimi masu zaman kansu ne daliban sakandare ko masu matsakaicin karatu suka fi halarta a Arewacin Najeriya? +Ji-ko-37,Education,Korean (South Korea),What type of clothing do middle and high school students wear to school in your country?,Wane irin tufafi daliban makarantar sakandare ke sakawa zuwa makaranta a Arewacin Najeriya? +Ji-ko-38,Education,Korean (South Korea),Which major is considered the most difficult to gain admission to in your country?,Wane fanni ake ganin yafi wuya a samu shiga a Arewacin Najeriya? +Ji-ko-39,Education,Korean (South Korea),What is the most commonly learned musical instrument by elementary school students in your country?,Wane kayan kida ne daliban firamare suka fi koyon amfani da shi a Arewacin Najeriya? +Ji-ko-40,Education,Korean (South Korea),What do high school students typically do during break time in schools in your country?,Me daliban sakandire ke yi a lokacin hutu a makarantun Arewacin Najeriya? +Ji-ko-41,Education,Korean (South Korea),What kind of shoes do students wear in schools in your country?,Wane irin takalma dalibai ke sakawa a makarantun Arewacin Najeriya? +Ji-ko-42,Education,Korean (South Korea),What are the required subjects in your country's university entrance exam?,Wadanne darussa ne ake bukata a jarrabawar shiga jami'a a Arewacin Najeriya? +Ji-ko-44,Education,Korean (South Korea),Which region (within a city) in your country has the highest academic fervor?,Wane yanki (a cikin gari) a Arewacin Najeriya yake da mafi yawan masu sha'awar karatu? +Ji-ko-45,Education,Korean (South Korea),What do people look forward to the most at university festivals in your country?,Me mutane suka fi tsammanin gani a bikin jami'o'i a Arewacin Najeriya? +Jo-sp-01,Sport,Spanish (Spain),What is the second most popular sport in your country?,Menene wasa na biyun shahara a Arewacin Najeriya? +Jo-sp-02,Sport,Spanish (Spain),What is the most popular sport played without a ball in your country?,Menene wasan da aka fi bugawa ba tare da kwallo ba a Arewacin Najeriya? +Jo-sp-09,Sport,Spanish (Spain),What sports are most associated with the upper class in your country?,Waɗanne wasanni ne aka fi danganta su da masu kudi a Arewacin Najeriya? +Jo-sp-13,Sport,Spanish (Spain),What is the most popular water sport in your country?,Wane irin wasan ruwa ne yafi shahara a Arewacin Najeriya? +Jo-sp-14,Sport,Spanish (Spain),What is the most popular mental sport in your country?,Menene wasan kwakwalwa da yafi shahara a Arewacin Najeriya? +Jo-sp-18,Work life,Spanish (Spain),"How many holiday days per year does a standard worker gets in your country? (Provide Arabic numerals (e.g., 12) only.)","Nawa ne yawan kwanakin hutu da ma'aikaci yake samu a shekara a Arewacin Najeriya? (Ka bayar da lambobi na Larabci (misali, 12) kawai.)" +Jo-sp-19,Work life,Spanish (Spain),What region in your country has been traditionally associated with agriculture?,Wane yanki a Arewacin Najeriya aka saba dangantawa da aikin gona? +Jo-sp-21,Work life,Spanish (Spain),"What time, if any, do people usually leave work for lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Wane lokaci, idan akwai, mutane sukan bar aiki don zuwa cin abincin rana a Arewacin Najeriya? (A bayar a tsarin HH:MM misali, 18:00, 09:00)." +Jo-sp-31,Education,Spanish (Spain),"What time do high school students tend to leave school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Wane lokaci daliban makarantar sakandare ke tafiya gida a Arewacin Najeriya? (A bayar da shi a tsarin HH:MM misali, 18:00, 09:00)." +Jo-sp-32,Education,Spanish (Spain),What sport do elementary school students tend to practice at school in your country?,Wane irin wasanni daliban firamare ke yi a makarantu a Arewacin Najeriya? +Jo-sp-36,Education,Spanish (Spain),"How long (in weeks) are summer vacations at elementary schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","Tsawon makonni nawa ne hutun bazara a makarantun firamare a Arewacin Najeriya? (A bayar da amsa cikin lambobin Larabci kawai (misali, 7, 8).)" +Jo-sp-37,Education,Spanish (Spain),"How long (in weeks) are summer vacations at universities in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","Tsawon makonni nawa ne hutun bazara a jami'o'in Arewacin Najeriya? (A bayar da amsa cikin lambobin Larabci kawai (misali, 7, 8).)" +Jo-sp-39,Education,Spanish (Spain),"At what age does elementary education begin in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","A wane shekaru ne ake fara karatun firamare a Arewacin Najeriya? (A bayar da amsa cikin lambobin Larabci kawai (misali, 7, 8).)" +Jo-sp-43,Education,Spanish (Spain),"How many languages are studied in elementary education besides your country's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)","Yaruka nawa ake karantawa a ilimin firamare bayan harshen hukuma na Arewacin Najeriya? (A bayar da amsa a lambobin Larabci kawai (misali, 7, 8).)" +Jod-ch-01,Food,Chinese (China),What eating utensils do people commonly used in your country?,Wadanne kayan cin abinci ne mutane suka fi amfani da su a Arewacin Najeriya? +Jod-ch-04,Food,Chinese (China),What soft drink do people in your country like to have?,Wane irin abin sha mai sanyi mutane ke so su sha a Arewacin Najeriya? +Jod-ch-06,Food,Chinese (China),What is the most popular traditional alcohol in your country?,Wacce giyar gargajiya ce mafi shahara a Arewacin Najeriya? +Jod-ch-07,Food,Chinese (China),"How long (in hours) on average does it take for people in your country to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","Awanni nawa zai dauki mutanen Arewacin Najeriya su ci abincin dare a gidan cin abinci? (Ka bayar da lambobin Larabci har zuwa wani wurin da ya nuna digo daya (misali, 2, 3.5) kawai.)" +Jod-ch-09,Food,Chinese (China),"What time do people usually have dinner in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Wanne lokaci ne mutane sukan ci abincin dare a Arewacin Najeriya? (A bayar da shi a tsarin HH:MM misali, 18:00, 09:00)." +Jod-ch-12,Food,Chinese (China),What kind of soup do people from your country like to have?,Wane irin miya mutanen Arewacin Najeriya suka fi so? +Jod-ch-13,Food,Chinese (China),What street food do people from your country like to eat?,Wane irin abincin titi ne mutanen Arewacin Najeriya suka fi son ci? +Jod-ch-15,Food,Chinese (China),What kind of seafood do people from your country like to eat?,Wane irin abincin teku ne mutanen Arewacin Najeriya suke so su ci? +Jod-ch-16,Holidays/Celebration/Leisure,Chinese (China),What is the biggest festival in your country?,Menene babban bikin al'adu a Arewacin Najeriya? +Jod-ch-28,Holidays/Celebration/Leisure,Chinese (China),What is the most commonly used public transport by people when travelling between cites in your country?,Wanne ne abin sufurin jama'a da aka fi amfani da shi wajen tafiya tsakanin birane a Arewacin Najeriya? +Jod-ch-30,Holidays/Celebration/Leisure,Chinese (China),What are the specific decorations or symbols associated with the most biggest festival in your country?,Menene takamaiman ado ko alamomin da suka shafi babban bikin da yafi girma a Arewacin Najeriya? +Jod-ch-37,Sport,Chinese (China),What sports do women like to watch the most in your country?,Wane irin wasanni mata suka fi so su kalla a Arewacin Najeriya? +Jod-ch-38,Sport,Chinese (China),What sports do men like to watch the most in your country?,Wane irin wasanni maza suka fi so su kalla a Arewacin Najeriya? +Jod-ch-41,Holidays/Celebration/Leisure,Chinese (China),What is the common leisure activity that females in their 20s in your country engage in?,Menene aikin hutu na gama gari da mata masu shekaru 20 a Arewacin Najeriya suke yi? +Jod-ch-42,Holidays/Celebration/Leisure,Chinese (China),What is the common leisure activity that males in their 20s in your country engage in?,Menene aikin hutu na gama gari da samari masu shekaru 20 a Arewacin Najeriya suke yi? +Jod-ch-46,Work life,Chinese (China),"How long (in hours) do people usually take a break after lunch on a weekday in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","Tsawon awanni nawa mutane ke yin hutu bayan cin abincin rana a ranakun aiki a Arewacin Najeriya? (Ka bayar da lambobin Larabci har zuwa wani digo daya kawai (misali, 2, 3.5).)" +Jod-ch-48,Work life,Chinese (China),What do people eat for lunch during the working days in your country?,Me mutane ke ci a matsayin abincin rana a kwanakin aiki a Arewacin Najeriya? +Jod-ch-50,Work life,Chinese (China),"What is the average commute time (in minutes) for people in your country? (Provide Arabic numerals (e.g., 1) only.)","Menene matsakaicin lokacin tafiya (a cikin mintuna) ga mutanen Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 1) kawai.)" +Jod-ch-51,Work life,Chinese (China),What is the most common transportation that people take to get to work in your country?,Menene hanyar sufuri da aka fi amfani da ita wajen zuwa aiki a Arewacin Najeriya? +Jod-ch-54,Work life,Chinese (China),"How long (in days) is the marriage leave in your country? (Provide Arabic numerals (e.g., 12) only.)","Kwanaki nawa ne hutun aure a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 12) kawai.)" +Jod-ch-56,Work life,Chinese (China),"What is the typical retirement age for women in your country? (Provide Arabic numerals (e.g., 12) only.)","Menene shekarun ritaya ga mata a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 12) kawai.)" +Jod-ch-57,Work life,Chinese (China),"What is the typical retirement age for men in your country? (Provide Arabic numerals (e.g., 12) only.)","Menene shekarun yin ritaya na al'ada ga maza a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 12) kawai.)" +Jod-ch-58,Work life,Chinese (China),Which profession is the most respected in your country?,Wane sana'a ce aka fi girmamawa a Arewacin Najeriya? +Jod-ch-60,Work life,Chinese (China),What is the duration (in hours) of a typical workday in your country? (Provide Arabic numerals (0~24) only.),Nawa ne tsawon lokacin (a cikin awanni) na yini na aiki a Arewacin Najeriya? (Ka bayar da lambobin Larabci (0~24) kawai.) +Jod-ch-61,Work life,Chinese (China),Which occupation is most preferred among females in your country?,Wacce sana'a mata suka fi so a Arewacin Najeriya? +Jod-ch-62,Work life,Chinese (China),Which occupation is most preferred among males in your country?,Wacce sana'a maza suka fi so a Arewacin Najeriya? +Ki-pe-17,Education,Persian (Iran),"On average, how far do students typically pursue their education in your country? (e.g., elementary, high school)","A tsaka-tsaki, har zuwa wani mataki dalibai sukan yi karatunsu a Arewacin Najeriya? (misali, firamare, sakandare)" +Ki-pe-24,Education,Persian (Iran),What language is taught in schools in your country besides English?,Wane yare ake koyarwa a makarantun Arewacin Najeriya banda Turanci? +Ki-pe-30,Education,Persian (Iran),What days of the week are schools closed in your country?,Wadanne kwanaki ne na mako makarantu ke rufewa a Arewacin Najeriya? +Ki-pe-32,Food,Persian (Iran),What food do the hosts usually prepare for the guests in your country?,Wane irin abinci ne masu masauki kan shirya wa baƙi a Arewacin Najeriya? +Ki-pe-34,Food,Persian (Iran),What is the usual drink in the breakfast in your country?,Menene abin sha na yau da kullum a karin kumallo a Arewacin Najeriya? +Ki-pe-36,Food,Persian (Iran),"Except the food original from your country, which country's food is more popular in your country?","Ban da abincin asali daga Arewacin Najeriya, abincin wacce kasa ya fi shahara a Arewacin Najeriya?" +Ki-pe-39,Food,Persian (Iran),What food is usually prepared for a family picnic in your country?,Wane irin abinci ake yawan shirya wa picnic na iyali a Arewacin Najeriya? +Ki-pe-40,Food,Persian (Iran),Which food from your country is considered disgusting by the rest of the world?,Wane irin abinci daga Arewacin Najeriya ake ƙyama a sauran sassan duniya? +Ki-pe-43,Food,Persian (Iran),What is the name of the popular bread in your country?,Menene sunan burodin da aka yafi shahara a Arewacin Najeriya? +Ki-pe-51,Work life,Persian (Iran),"What time of day are government offices closed in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Wane lokaci ne ofisoshin gwamnati ke rufewa a Arewacin Najeriya? (A bayar da shi a tsarin HH:MM misali, 18:00, 09:00)." +Ki-pe-53,Work life,Persian (Iran),"What is the normal start time of government offices in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Yaushe ne lokacin fara aiki na yau da kullun na ofisoshin gwamnati a Arewacin Najeriya? (Ka bayar da shi a tsarin HH:MM (misali, 18:00, 09:00).)" +Kik-in-01,Holidays/Celebration/Leisure,Indonesian (Indonesia),What national holiday has the longest duration in your country?,Wane hutun ƙasa ne yafi kowanne tsawo a Arewacin Najeriya? +Kik-in-02,Holidays/Celebration/Leisure,Indonesian (Indonesia),What are the common activities people from your country do to celebrate Independence day?,Waɗanne ayyuka ne mutane suka saba yi don yin murnar ranar ƴanci a Arewacin Najeriya? +Kik-in-04,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is installed in front of the house when a family member dies in your country?,Me ake sanyawa a gaban gida idan wani daga cikin iyalin gida ya mutu a Arewacin Najeriya? +Kik-in-05,Holidays/Celebration/Leisure,Indonesian (Indonesia),When is a pregnancy celebration or ceremony usually held in your country?,Yaushe ake yawan gudanar da shagalin samun ciki ko bukin haihuwa a Arewacin Najeriya? +Kik-in-06,Holidays/Celebration/Leisure,Indonesian (Indonesia),What event is usually held before a wedding in your country?,Wane taro ake yawan yi kafin aure a Arewacin Najeriya? +Kik-in-07,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is usually shared to the children during (Lunar) New Year in your country?,Me aka fi rabawa yara a lokacin Sabuwar Shekara ta (Lunar) a Arewacin Najeriya? +Kik-in-08,Holidays/Celebration/Leisure,Indonesian (Indonesia),What activities are usually done days before Ramadan in your country?,Wadanne ayyuka ake yawan yi kwanaki kafin watan Ramadan a Arewacin Najeriya? +Kik-in-10,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most popular tourist attraction for foreign visitors in your country?,Wanne ne mafi shahararren wurin yawon bude ido ga baki 'yan kasashen waje a Arewacin Najeriya? +Kik-in-11,Holidays/Celebration/Leisure,Indonesian (Indonesia),"What is the most popular religious sites (temple, church, etc.) for tourism in your country?","Wanne ne wuraren ibada (haikali, coci, da sauransu) da suka fi shahara don yawon bude ido a Arewacin Najeriya?" +Kik-in-15,Holidays/Celebration/Leisure,Indonesian (Indonesia),What clothes do women usually wear on graduation commencement ceremony in your country?,Wane irin tufafi mata sukan saka a bikin yaye karatu a Arewacin Najeriya? +Kik-in-16,Food,Indonesian (Indonesia),What drink is commonly consumed in your country when the weather is cold?,Wane irin abin sha ake sha a Arewacin Najeriya lokacin da yanayi ya yi sanyi? +Kik-in-17,Food,Indonesian (Indonesia),What fruit is more commonly sold and found during Ramadan in your country?,Wane irin 'ya'yan itace ake sayarwa da samunsa sosai a lokacin Ramadan a Arewacin Najeriya? +Kik-in-24,Food,Indonesian (Indonesia),What carbohydrate is usually served with chicken in a fast-food restaurant in your country?,Wane irin carbohydrate ne ake yawanci bada shi tare da kaza a gidan abinci mai sauri a Arewacin Najeriya? +Kik-in-31,Sport,Indonesian (Indonesia),What is the most famous martial art sports in your country?,Wane irin wasan dambe ne aka fi sani a Arewacin Najeriya? +Kik-in-34,Sport,Indonesian (Indonesia),What sports are often broadcasted on national television in your country?,Wane irin wasanni ake yawan watsawa a gidan talabijin na kasa a Arewacin Najeriya? +Kik-in-35,Sport,Indonesian (Indonesia),What sports were popular among people from your country during the COVID-19 pandemic?,Wadanne wasanni ne suka shahara tsakanin mutanen Arewacin Najeriya a lokacin annobar COVID-19? +Kik-in-36,Sport,Indonesian (Indonesia),Who is the most popular soccer coach in your country?,Wane ne kocin ƙwallon ƙafa da yafi shahara a Arewacin Najeriya? +Kik-in-37,Sport,Indonesian (Indonesia),What soccer teams in your country are famous for their intense rivalry? (e.g. ___ vs ___),Wadanne kungiyoyin kwallon kafa a Arewacin Najeriya ne suka shahara saboda gaba da juna? (misali ___ da ___) +Kik-in-38,Sport,Indonesian (Indonesia),What are the names of soccer supporters in your country who are famous for their intense rivalry? (e.g. ___ vs ___),Menene sunayen magoya bayan kwallon kafa a Arewacin Najeriya wadanda suka shahara da hamayya mai zafi? (misali ___ da ___) +Kik-in-40,Sport,Indonesian (Indonesia),Who is the most famous male badminton player in your country?,Wane ne dan wasan badminton namiji mafi shahara a Arewacin Najeriya? +Kik-in-41,Sport,Indonesian (Indonesia),Who is the most famous female badminton player in your country?,Wace ce 'yar wasan badminton mace mafi shahara a Arewacin Najeriya? +Kik-in-44,Sport,Indonesian (Indonesia),What sport gets the most support from the government in your country?,Wane wasa ne gwamnatin Arewacin Najeriya ta fi bawa goyon baya? +Kik-in-45,Sport,Indonesian (Indonesia),What sports field facilities are usually available at schools in your country?,Wane irin kayan aikin filin wasanni ake samu a makarantun Arewacin Najeriya? +Na-ko-02,Food,Korean (South Korea),What cafe beverage do people from your country most commonly enjoy?,Wane irin abin sha na kafe ne mutanen Arewacin Najeriya suka fi so? +Na-ko-04,Food,Korean (South Korea),What is the preferred hangover cure food for people from your country?,Menene abincin da aka fi so don magance maye ga mutanen Arewacin Najeriya? +Na-ko-05,Food,Korean (South Korea),What is the typical delivery food in your country?,Menene abincin da ake kaiwa a gida a Arewacin Najeriya? +Na-ko-07,Food,Korean (South Korea),What type of meat is consumed most by people from your country?,Wane irin nama ne mutanen Arewacin Najeriya suka fi ci? +Na-ko-08,Food,Korean (South Korea),What fruit do people from your country often eat in the autumn season?,Wane irin 'ya'yan itatuwa ne mutanen Arewacin Najeriya sukan ci a lokacin kaka? +Na-ko-09,Food,Korean (South Korea),What side dish is the most commonly served on a dining table in your country?,Wane irin abincin haɗi ake yawan bawa mutane a kan teburin cin abinci a Arewacin Najeriya? +Na-ko-11,Food,Korean (South Korea),What do people from your country eat while watching a soccer game?,Me mutanen Arewacin Najeriya ke ci yayin da suke kallon wasan kwallon kafa? +Na-ko-15,Food,Korean (South Korea),What is the representative nourishing food in your country?,Menene abincin gina jiki a Arewacin Najeriya? +Na-ko-16,Sport,Korean (South Korea),Who is the most famous soccer player in your country?,Wane dan wasan kwallon kafa ne ya fi shahara a Arewacin Najeriya? +Na-ko-17,Sport,Korean (South Korea),What sports do male students enjoy during lunch time at school in your country?,Wane irin wasanni dalibai maza ke ji dadin yi lokacin hutun rana a makarantu a Arewacin Najeriya? +Na-ko-18,Sport,Korean (South Korea),What is the most common sport girls participate in during physical education classes in your country?,Wane irin wasanni ne 'yan mata suka fi shiga a lokacin darussan ilimin motsa jiki a Arewacin Najeriya? +Na-ko-19,Sport,Korean (South Korea),Who is the most popular volleyball player in your country?,Wane ne dan wasan volleyball mafi shahara a Arewacin Najeriya? +Na-ko-20,Sport,Korean (South Korea),What sports event do people from your country passionately support the most in international competitions?,Wane irin wasan motsa jiki ne mutanen Arewacin Najeriya ke goyon baya da zuciya ɗaya a gasar kasa da kasa? +Na-ko-22,Sport,Korean (South Korea),Which country is considered the biggest rival in soccer matches for your country?,Wace ƙasa ake ɗauka a matsayin babbar abokiyar hamayya a wasannin ƙwallon kafa ga Arewacin Najeriya? +Na-ko-23,Sport,Korean (South Korea),What type of sports academies do children attend the most in your country?,Wane irin makarantun wasanni yara suka fi halarta a Arewacin Najeriya? +Na-ko-24,Sport,Korean (South Korea),What is the most commonly eaten food in sports stadiums while watching games in your country?,Wane irin abinci ne ake ci da yawa a filayen wasanni yayin kallon wasanni a Arewacin Najeriya? +Na-ko-25,Sport,Korean (South Korea),What are the typical sports played in your country's school sports day?,Wadanne irin wasanni ne ake yi a ranar wasannin makarantun Arewacin Najeriya? +Na-ko-26,Sport,Korean (South Korea),What are the popular sports among the middle-aged population in your country?,Wadanne wasanni ne suka shahara tsakanin mutane masu matsaikaitan shekaru a Arewacin Najeriya? +Na-ko-28,Sport,Korean (South Korea),Who is the most popular winter sports player in your country?,Wane ne dan wasan wasannin hunturu mafi shahara a Arewacin Najeriya? +Na-ko-29,Sport,Korean (South Korea),Who is the most famous swimmer in your country?,Wane ne zakaran ninkaya mafi shahara a Arewacin Najeriya? +Na-ko-30,Sport,Korean (South Korea),What is the most popular e-sports game in your country?,Wane wasan e-sports ne yafi shahara a Arewacin Najeriya? +Na-ko-33,Holidays/Celebration/Leisure,Korean (South Korea),What symbolic food do people from your country eat on (Lunar) New Year?,Wane irin abinci na al'ada mutanen Arewacin Najeriya ke ci a sabuwar shekarar (Lunar)? +Na-ko-37,Holidays/Celebration/Leisure,Korean (South Korea),What is the most popular domestic vacation spot for people from your country?,Wanne ne wurin hutun cikin gida da ya fi shahara ga mutanen Arewacin Najeriya? +Na-ko-38,Holidays/Celebration/Leisure,Korean (South Korea),What is the most common wedding gift between bride and groom in your country?,Menene kyautar aure da aka fi bayarwa tsakanin ango da amarya a Arewacin Najeriya? +Na-ko-39,Holidays/Celebration/Leisure,Korean (South Korea),What is typically given as a congratulatory gesture when attending a friend's wedding in your country?,Me ake yawan bada a matsayin alamar taya murna idan aka halarci bikin aure na aboki a Arewacin Najeriya? +Na-ko-40,Holidays/Celebration/Leisure,Korean (South Korea),"How long (in days) does a funeral typically last in your country? (Provide Arabic numerals (e.g., 12) only.)","Tsawon kwanaki nawa ake yin jana'iza a Arewacin Najeriya? (Ka bayar da lambobi na Larabci (misali, 12) kawai.)" +Na-ko-41,Holidays/Celebration/Leisure,Korean (South Korea),What should you prepare as a condolence offering when attending a funeral in your country?,Me ya kamata ka shirya a matsayin gudummuwar ta'aziyya lokacin da ka halarci jana'iza a Arewacin Najeriya? +Na-ko-42,Holidays/Celebration/Leisure,Korean (South Korea),What type of food is commonly provided at funeral parlors in your country?,Wane irin abinci aka fi samarwa a dakin jana'iza a Arewacin Najeriya? +Na-ko-43,Holidays/Celebration/Leisure,Korean (South Korea),What do people do in your country in the morning of the (Lunar) New Year?,Me mutane ke yi a Arewacin Najeriya da safiyar ranar Sabuwar Shekara ta Kalandar Wata? +Na-ko-44,Holidays/Celebration/Leisure,Korean (South Korea),When is the day with your country's most severe nationwide traffic congestion?,Yaushe ne ranar da ake samun cunkoson ababen hawa mafi tsanani a fadin Arewacin Najeriya? +Na-ko-45,Holidays/Celebration/Leisure,Korean (South Korea),What is the most popular honeymoon destination in your country?,Ina ne wurin shakatawa na amarci da aka fi so a Arewacin Najeriya? +Ne-ar-05,Holidays/Celebration/Leisure,Arabic (Algeria),What is the most important national holiday in your country?,Menene ranar hutun ƙasa mafi muhimmanci a Arewacin Najeriya? +Ne-ar-06,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Ramadan?,Me mutanen Arewacin Najeriya ke ci a watan Ramadan? +Ne-ar-09,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Eid ul Fitr?,Me mutanen Arewacin Najeriya ke ci a lokacin Eid ul Fitr? +Ne-ar-10,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Eid ul Adha?,Me mutanen Arewacin Najeriya ke ci a lokacin Eid ul Adha? +Ne-ar-11,Holidays/Celebration/Leisure,Arabic (Algeria),Where do people from your country go to celebrate New Year's Day?,Ina mutanen Arewacin Najeriya ke zuwa don murnar sabuwar shekara? +Ne-ar-14,Holidays/Celebration/Leisure,Arabic (Algeria),Where do a family gather for Eid festivities in your country?,A ina ne iyalai sukan taru don shagulgulan Sallah a Arewacin Najeriya? +Ne-ar-16,Work life,Arabic (Algeria),"When is the weekend in your country (e.g. Monday, Tuesday)?","Yaushe ne karshen mako a Arewacin Najeriya (misali Litinin, Talata)?" +Ne-ar-17,Work life,Arabic (Algeria),"At what time do most people start work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","A wane lokaci ne yawancin mutane suke fara aiki a Arewacin Najeriya? (A bayar da shi a tsarin HH:MM misali, 18:00, 09:00)." +Ne-ar-18,Work life,Arabic (Algeria),"At what time do most people finish work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","A wane lokaci ne yawancin mutane suka gama aiki a Arewacin Najeriya? (A bayar da shi a tsarin HH:MM misali, 18:00, 09:00)." +Ne-ar-20,Work life,Arabic (Algeria),What is considered to be a secure job in your country?,Wane irin aiki ake dauka a matsayin aikin da yake da tabbaci a Arewacin Najeriya? +Ne-ar-24,Work life,Arabic (Algeria),Which city is the primary commercial hub in your country?,Wane gari ne cibiyar kasuwanci a Arewacin Najeriya? +Ne-ar-25,Work life,Arabic (Algeria),What is the industry that pays the best in your country?,Wace masana'anta ce ke biyan albashi mafi kyau a Arewacin Najeriya? +Ne-ar-26,Work life,Arabic (Algeria),What is the most famous public corporation in your country?,Wanne ne kamfanin gwamnati mafi shahara a Arewacin Najeriya? +Ne-ar-31,Food,Arabic (Algeria),What is the most famous dish in your country?,Menene abincin da ya fi shahara a Arewacin Najeriya? +Ne-ar-32,Food,Arabic (Algeria),What do people usually have for breakfast in your country?,Me mutane ke ci akasari don karin kumallo a Arewacin Najeriya? +Ne-ar-33,Food,Arabic (Algeria),"When do people usually have lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Yaushe mutane sukan ci abincin rana a Arewacin Najeriya? (Ka bayar da shi a tsarin HH:MM misali, 18:00, 09:00)." +Ne-ar-34,Food,Arabic (Algeria),What is typically indispensable in meals in your country?,Menene galibin abinda ba za a iya rabuwa da shi ba a cikin abincin Arewacin Najeriya? +Ne-ar-36,Food,Arabic (Algeria),What is a typical festive meal in your country?,Menene abincin bukukuwa na al'ada a Arewacin Najeriya? +Ne-ar-37,Food,Arabic (Algeria),Which fruit do people usually offer tourists/visitors from abroad in your country?,Wane irin 'ya'yan itace mutane sukan bayar ga baki/masu ziyara daga kasashen waje a Arewacin Najeriya? +Ne-ar-38,Food,Arabic (Algeria),Which food do people usually offer as charity in your country?,Wane irin abinci ne mutane sukan bayar a matsayin sadaka a Arewacin Najeriya? +Ne-ar-39,Food,Arabic (Algeria),What is the cheapest fast food in your country?,Wanne ne mafi araha a abincin sauri a Arewacin Najeriya? +Ne-ar-43,Food,Arabic (Algeria),What do people usually have with tea in your country?,Me mutane suka fi da shayi a Arewacin Najeriya? +Ne-ar-44,Food,Arabic (Algeria),What do people have with coffee in your country?,Me mutane ke ci tare da kofi a Arewacin Najeriya? +New-am-02,Food,Amharic (Ethiopia),What is the most popular traditional food in your country?,Wanne ne abincin gargajiya mafi shahara a Arewacin Najeriya? +New-am-04,Food,Amharic (Ethiopia),What is the most popular dipping sauce in your country?,Wacce miyar tsome ce mafi shahara a Arewacin Najeriya? +New-am-08,Food,Amharic (Ethiopia),What food is most often consumed during Christian fasting in your country?,Wane irin abinci ne aka fi ci sosai lokacin azumin Kiristoci a Arewacin Najeriya? +New-am-15,Food,Amharic (Ethiopia),What food is usually prepared when mothers give birth in your country?,Wane irin abinci yawanci ake haɗawa lokacin da mata suka haihu a Arewacin Najeriya? +New-am-27,Sport,Amharic (Ethiopia),Who is the most popular female sportperson in your country?,Wace ce 'yar wasan da tafi shahara a Arewacin Najeriya? +New-am-34,Education,Amharic (Ethiopia),Where do most elementary school students prepare for their exams in your country?,A ina daliban makarantar firamare suka fi shirin yin jarabawarsu a Arewacin Najeriya? +New-am-41,Education,Amharic (Ethiopia),"In your country, at which grade level do students take their first national-level examination?","A Arewacin Najeriya, a wane matakin aji dalibai ke daukar jarabawar ƙasa ta farko?" +New-am-53,Work life,Amharic (Ethiopia),Which region in your country is widely known for its coffee/tea industry?,Wane yanki a Arewacin Najeriya aka fi sani da masana'antar kofi/shayi? +New-am-54,Work life,Amharic (Ethiopia),Which region in your country is widely known for its livestock industry?,Wane yanki a Arewacin Najeriya aka fi sani da kiwon dabbobi? +New-am-59,Work life,Amharic (Ethiopia),What is the main occupation of people living in deserts in your country?,Menene babban sana'ar mutanen da ke zaune a hamadoni a Arewacin Najeriya? +New-am-60,Work life,Amharic (Ethiopia),Which animal is typically used for transportation in your country?,Wane irin dabba ake amfani da ita wajen sufuri a Arewacin Najeriya? +New-am-72,Family,Amharic (Ethiopia),What is the most popular comic book for children to read in your country?,Wane littafin barkwanci ne yafi shahara don yara su karanta a Arewacin Najeriya? +New-am-73,Family,Amharic (Ethiopia),What is the most popular YouTube channel for children in your country?,Wacce tashar YouTube ce ta fi shahara ga yara a Arewacin Najeriya? +New-am-74,Family,Amharic (Ethiopia),What is the most popular talk show in your country?,Wanne shirin fira ne aka fi so a Arewacin Najeriya? +New-am-77,Holidays/Celebration/Leisure,Amharic (Ethiopia),What is the most famous religious holiday in your country?,Wanne ne babban bukin addini mafi shahara a Arewacin Najeriya? +New-am-81,Holidays/Celebration/Leisure,Amharic (Ethiopia),"What is the busiest month for weddings in your country? (Provide Arabic numerals (e.g., 1) only.)","Wane wata ne watan da aka fi yin aure a Arewacin Najeriya? (Ka bayar da lambobi na Larabci (misali, 1) kawai.)" +New-am-83,Holidays/Celebration/Leisure,Amharic (Ethiopia),What is the most popular traditional musical instrument in your country?,Wanne kayan kiɗa na gargajiya aka fi sani a Arewacin Najeriya? +New-as-01,Food,Assamese (Assam),What is the main agricultural product produced in your country?,Wanne kayan amfanin gona ne ake nomawa a Arewacin Najeriya? +New-as-02,Food,Assamese (Assam),What is the most popular wheat-based food item in your country?,Wanne ne abincin da aka fi so wanda aka yi da alkama a Arewacin Najeriya? +New-as-05,Food,Assamese (Assam),What is the most typical drink offered to guests when they visit households in your country?,Wanne abin sha da aka fi bayarwa ga baƙi idan sun ziyarci gidajen mutane a Arewacin Najeriya? +New-as-07,Food,Assamese (Assam),What is the most popular dish cooked with fish in your country?,Wanne abinci aka fi so wanda aka dafa shi da kifi a Arewacin Najeriya? +New-as-14,Food,Assamese (Assam),What food do people from your country like to eat during rainy weather?,Wane irin abinci ne mutanen Arewacin Najeriya suka fi so su ci lokacin damina? +New-as-15,Food,Assamese (Assam),What drink is commonly consumed in your country when the weather is hot?,Wane irin abin sha ake sha a Arewacin Najeriya lokacin da yanayi yayi zafi? +New-as-20,Sport,Assamese (Assam),What is the most popular indoor sport in your country?,Wanne wasan cikin gida da aka fi so a Arewacin Najeriya? +New-as-29,Sport,Assamese (Assam),What sport do men in your country like to watch?,Wane irin wasanni maza a Arewacin Najeriya suka fi so su kalla? +New-as-30,Sport,Assamese (Assam),What sport do women in your country like to watch?,Wane irin wasanni mata a Arewacin Najeriya suka fi so kallo? +New-as-58,Work life,Assamese (Assam),What is the most popular beverage that people from your country like to drink in their workplace?,Menene abin sha mafi shahara da mutanen Arewacin Najeriya suka fi so su sha a wurin aikinsu? +New-as-64,Family,Assamese (Assam),On which holiday do all family members tend to reunite in your country?,A wane hutun ne dukkan 'yan uwa sukan hadu a Arewacin Najeriya? +New-as-76,Holidays/Celebration/Leisure,Assamese (Assam),What traditional games do families play during traditional holidays in your country?,Wane irin wasannin gargajiya ne iyalai suke yi yayin bukukuwan al'adu a Arewacin Najeriya? +New-as-80,Holidays/Celebration/Leisure,Assamese (Assam),What type of clothing do people from your country wear during traditional festivals?,Wane irin tufafi ne mutanen Arewacin Najeriya ke sanyawa a lokacin bukukuwan al'adu? +New-as-89,Holidays/Celebration/Leisure,Assamese (Assam),What traditional festival accessories do people from your country wear?,Wane irin kayan ado na gargajiya ne mutanen Arewacin Najeriya ke sakawa a lokacin bukukuwa? +New-az-05,Food,Azerbaijani (Azerbaijan),What is the most famous region for alcohol production in your country?,Wane yanki ne aka fi sani da samar da barasa a Arewacin Najeriya? +New-az-11,Food,Azerbaijani (Azerbaijan),What fruit do people from your country often eat in the summer season?,Wane irin 'ya'yan itatuwa ne mutanen Arewacin Najeriya sukan ci a lokacin bazara? +New-az-12,Food,Azerbaijani (Azerbaijan),Which region in your country is known for its seafood?,Wane yanki a Arewacin Najeriya aka sani da cin halilun ruwa? +New-az-21,Sport,Azerbaijani (Azerbaijan),Which region in your country is the most popular skiing destination?,Wane yanki a Arewacin Najeriya ne ya fi shahara a matsayin wurin shakatawa na kankara? +New-az-26,Sport,Azerbaijani (Azerbaijan),Who is the most popular martial arts player in your country?,Wane ne ɗan wasan dambe mafi shahara a Arewacin Najeriya? +New-az-27,Sport,Azerbaijani (Azerbaijan),Which sport has been one of the fastest-growing in your country over the last decade?,Wane wasa ne ya zama ɗaya daga cikin wasannin da suka fi bunkasa a Arewacin Najeriya cikin shekaru goman da suka gabata? +New-az-39,Education,Azerbaijani (Azerbaijan),Which country is the most popular destination for students from your country studying abroad?,Wace ƙasa ce tafi shahara ga dalibai daga Arewacin Najeriya da ke karatu a kasashen waje? +New-az-49,Work life,Azerbaijani (Azerbaijan),"How many people work in a typical family in your country? (Provide Arabic numerals (e.g., 1) only.)","Mutane nawa ne suke aiki a yawancin iyalai na Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 1) kawai.)" +New-az-60,Family,Azerbaijani (Azerbaijan),"In your country, who takes care of kids when both parents are working?","A Arewacin Najeriya, waye ke kula da yara idan duk iyayen suna aiki?" +New-az-69,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),What is the preferred alcoholic beverage for men from your country?,Wacce giyar ce maza daga Arewacin Najeriya suka fi so? +New-az-70,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),What is the preferred alcoholic beverage for women from your country?,Wacce giyar ce mata a Arewacin Najeriya suka fi so? +New-az-73,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),"How many people on average typically attend a wedding in your country? (Provide Arabic numerals (e.g., 1) only.)","Adadin mutanen nawa su suka saba halartar bikin aure a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 1) kawai.)" +New-ch-01,Food,Chinese (China),What kind of meat do people usually eat when they have barbecue in your country?,Wane irin nama mutane sukan ci lokacin da suke yin gashin nama a Arewacin Najeriya? +New-ch-02,Food,Chinese (China),"When do people usually have breakfast in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Yaushe mutane sukan yi karin kumallo a Arewacin Najeriya? (Ka bayar da shi a tsarin HH:MM (misali, 18:00, 09:00).)" +New-ch-04,Food,Chinese (China),What kinds of food do people usually eat for late-night snacks in your country?,Wane irin abinci mutane sukan ci a matsayin abun ciye-ciye da daddare a Arewacin Najeriya? +New-ch-05,Food,Chinese (China),What is the most famous spicy dish in your country?,Menene abinci mai yaji da yafi kowane shahara a Arewacin Najeriya? +New-ch-07,Food,Chinese (China),What food items do people typically pair with hard liquor in your country?,Wadanne abinci ne mutane sukan hada da giya mai karfi a Arewacin Najeriya? +New-ch-08,Food,Chinese (China),What seasoning is indispensable in cooking in your country?,Wane kayan kamshi ne ba za a iya yin girki ba tare da shi ba a Arewacin Najeriya? +New-ch-09,Food,Chinese (China),What food do people typically consume when the weather is cold in your country?,Wane irin abinci mutane ke ci akasari lokacin da yanayi ya yi sanyi a Arewacin Najeriya? +New-ch-13,Food,Chinese (China),What is the most famous alcohol brand in your country?,Menene mashahurin irin giya a Arewacin Najeriya? +New-ch-14,Food,Chinese (China),What foods do people usually eat when they are sick in your country?,Wadanne abinci mutane sukan ci lokacin da suke rashin lafiya a Arewacin Najeriya? +New-ch-15,Food,Chinese (China),What prepared/ready-to-eat food do people typically buy at supermarkets in your country?,Wane irin abinci da aka riga aka shirya/abinci da za a iya ci kai tsaye ne mutane sukan saya a manyan shagunan sayar da kayayyaki a Arewacin Najeriya? +New-ch-16,Sport,Chinese (China),What is the most famous sports-related movie in your country?,Menene fim din wasanni da ya fi shahara a Arewacin Najeriya? +New-ch-17,Sport,Chinese (China),What extreme sport do people generally wish to try the most in your country?,Wane irin wasan tsalle-tsalle ne mutane suka fi son gwadawa a Najeriya? +New-ch-18,Sport,Chinese (China),Which track and field event is the most popular to watch during competitions in your country?,Wane wasan guje-guje da tsalle-tsalle ne aka fi so kallo a lokacin gasa a Arewacin Najeriya? +New-ch-19,Sport,Chinese (China),Which gymnastics event is the most popular to watch during competitions in your country?,Wane wasan motsa jiki ne aka fi so a kallo a lokacin gasa a Arewacin Najeriya? +New-ch-23,Sport,Chinese (China),Who is the most famous table tennis player in your country?,Wane ne dan wasan ƙwallon tebur da ya fi shahara a Arewacin Najeriya? +New-ch-26,Sport,Chinese (China),"In the Winter Olympics, which event is the most popular to watch in your country?","A gasar Olympics ta hunturu, wane wasa ne ya fi shahara a kallo a Arewacin Najeriya?" +New-ch-27,Sport,Chinese (China),Who is the most famous boxer in your country?,Wane ne zakaran dambe mafi shahara a Arewacin Najeriya? +New-ch-30,Sport,Chinese (China),Who is the most famous track and field athlete in your country?,Wane ne dan wasan guje-guje da tsalle-tsalle mafi shahara a Arewacin Najeriya? +New-ch-31,Work life,Chinese (China),What job do parents most hope their children will pursue in your country?,Wane irin aiki ne iyaye suka fi so 'ya'yansu su yi a Arewacin Najeriya? +New-ch-32,Work life,Chinese (China),What office software do people typically use in the workplace in your country?,Wane irin software na ofis ne mutane sukan yi amfani da shi a wuraren aiki a Arewacin Najeriya? +New-ch-38,Work life,Chinese (China),Which cities or regions are known for their import and export activities in your country?,Wadanne birane ko yankuna ne aka sani da ayyukan shigowa da fitarwa a Arewacin Najeriya? +New-ch-39,Work life,Chinese (China),What platform is commonly used in the e-commerce industry in your country?,Wane dandali ake amfani da shi sosai a masana'antar kasuwanci ta yanar gizo a Arewacin Najeriya? +New-ch-44,Work life,Chinese (China),"How long is the typical probation period for new employees before signing a formal contract in your country? (e.g., 1 month).","Menene tsawon lokacin gwaji na yau da kullun ga sabbin ma'aikata kafin su sanya hannu kan kwangila na dindindin a Arewacin Najeriya? (misali, wata 1)." +New-ch-45,Work life,Chinese (China),Which industries do young people typically choose to start businesses in your country?,Wadanne masana'antu matasa suka fi zaba don fara kasuwanci a Arewacin Najeriya? +New-ch-49,Family,Chinese (China),What is the most common way for family members to communicate remotely in your country?,Menene hanyar da ƴan'uwa suka fi amfani da ita wurin sadarwa ta nesa a Arewacin Najeriya? +New-ch-51,Family,Chinese (China),What form of accommodation is typically booked for family trips in your country?,Wane irin masauki ake yawan tanada saboda tafiye-tafiyen iyali a Arewacin Najeriya? +New-ch-54,Family,Chinese (China),Which fruit is usually prepared the most for family dinners in your country?,Wane irin 'ya'yan itace ake shirya wa sosai don cin abincin dare a gidajen Arewacin Najeriya? +New-ch-64,Education,Chinese (China),"How many hours of classes do university students typically have per week in your country? (Provide Arabic numerals (e.g., 1) only.)","Adadin sa'o'i nawa daliban jami'a ke samu na azuzuwa a kowane mako a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 1) kawai.)" +New-ch-66,Education,Chinese (China),"What is the typical tuition fee per semester for public high schools in your country? (Provide Arabic numerals (e.g., 1) only.)","Nawa ne kudin makaranta na yau da kullum a kowane zangon karatu ga makarantun sakandare na gwamnati a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 1) kawai.)" +New-ch-70,Education,Chinese (China),What compulsory courses do university students have in common in your country?,Wadanne darussa ne daliban jami'a ke dauka dole a Arewacin Najeriya? +New-ch-71,Education,Chinese (China),"What is the average class size in high schools in your country? (Provide Arabic numerals (e.g., 1) only.)","Menene matsakaicin girman aji a makarantun sakandare a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 1) kawai.)" +New-ch-72,Education,Chinese (China),Which major is considered most conducive to employment in your country?,Wane fanni ake ganin yafi samar da aikin yi a Arewacin Najeriya? +New-ch-73,Education,Chinese (China),What type of clubs are most popular among university students in your country?,Wane irin kungiyoyi ne suka fi shahara tsakanin daliban jami'a a Arewacin Najeriya? +New-ch-74,Education,Chinese (China),What types of accommodation do university students in your country typically live in?,Wane irin masauki daliban jami'a a Arewacin Najeriya sukan zauna a ciki? +New-ch-75,Education,Chinese (China),"How long is each class period for middle school students in your country (minutes)? (Provide Arabic numerals (e.g., 1) only.)","Menene tsawon kowanne lokacin darasi ga daliban makarantar sakandire a Arewacin Najeriya (mintuna)? (Ka bayar da lambobin Larabci (misali, 1) kawai.)" +New-ch-78,Holidays/Celebration/Leisure,Chinese (China),What leisure activities do retired women typically like in your country?,Wadanne irin ayyukan hutu matan da suka yi ritaya suka fi so a Arewacin Najeriya? +New-ch-79,Holidays/Celebration/Leisure,Chinese (China),What leisure activities do retired men typically like in your country?,Wane irin abubuwan shaƙatawa ne maza da suka yi ritaya sukan so a Arewacin Najeriya? +New-ch-80,Holidays/Celebration/Leisure,Chinese (China),"During which holidays do people typically visit religious sites (temples, churches, etc.) in your country?","A wane lokutan bukukuwa ne mutane sukan ziyarci wuraren ibada (haikali, coci-coci, da sauransu) a Arewacin Najeriya?" +New-ch-81,Holidays/Celebration/Leisure,Chinese (China),What are the typical housewarming gifts in your country?,Menene kyaututtukan da ake bayarwa na sabon gida a Arewacin Najeriya? +New-ch-82,Holidays/Celebration/Leisure,Chinese (China),"At what time do weddings typically start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","A wane lokaci ne aure ke farawa a Arewacin Najeriya? (Ka bayar da shi a tsarin HH:MM misali, 18:00, 09:00)." +New-ch-83,Holidays/Celebration/Leisure,Chinese (China),Which city in your country hosts festivals the most?,Wane gari ne a Arewacin Najeriya ya fi yin bukukuwa? +New-ch-84,Holidays/Celebration/Leisure,Chinese (China),What color of clothing do people typically wear when attending weddings in your country?,Wane launi na tufafi ne mutane sukan saka yayin halartar bikin aure a Arewacin Najeriya? +New-ch-85,Holidays/Celebration/Leisure,Chinese (China),What color of clothing do people typically wear when attending funerals in your country?,Wane launi na tufafi mutane sukan saka lokacin da suke halartar jana'izah a Arewacin Najeriya? +New-en-01,Food,English (UK),Which snack is eaten in the cinema in your country?,Wane irin abincin motsa baki ake ci a gidan kallo a Arewacin Najeriya? +New-en-02,Food,English (UK),What is the most popular chip/crisp flavour in your country?,Wane irin dandanon kwakwa/chips ne aka fi so a Arewacin Najeriya? +New-en-04,Food,English (UK),Who is a popular celebrity chef in your country?,Wane ne shahararren mai dafa abinci a Arewacin Najeriya? +New-en-05,Food,English (UK),Which food is a cost-effective and quick meal option in your country?,Wane abinci ne mai saukin kudi da kuma saurin hadawa a Arewacin Najeriya? +New-en-07,Food,English (UK),What are the most popular cooking shows in your country?,Menene shirye-shiryen girki da suka fi shahara a Arewacin Najeriya? +New-en-08,Food,English (UK),What is the most popular chocolate brand in your country?,Wane irin alawar cakulan ne aka fi so a Arewacin Najeriya? +New-en-10,Food,English (UK),What is the most eaten cheese in your country?,Wane irin cuku ne aka fi ci a Arewacin Najeriya? +New-en-11,Food,English (UK),What is the most disliked vegetable in your country?,Wane kayan lambu ne aka fi kin su a Arewacin Najeriya? +New-en-12,Food,English (UK),What food is most commonly found in food courts in your country?,Wane irin abinci ne aka fi samu a wuraren cin abinci a Arewacin Najeriya? +New-en-17,Sport,English (UK),What are the most common cheering tools used by sports fans in your country?,Menene kayan aikin kara da magoya bayan wasanni ke amfani da su a Arewacin Najeriya? +New-en-18,Sport,English (UK),What do fans bring with them when attending a live game in your country?,Me magoya baya ke tafiya da shi lokacin da suke halartar wasan kai tsaye a Arewacin Najeriya? +New-en-19,Sport,English (UK),What is the most well known sporting stadium in your country?,Wane filin wasa ne aka fi sani a Arewacin Najeriya? +New-en-23,Sport,English (UK),Who is the most famous Paralympian in your country?,Wane ne shahararren dan wasan Paralympic a Arewacin Najeriya? +New-en-26,Sport,English (UK),What is the best recognized sporting chant in your country?,Menene taken wasanni da aka fi sani a Arewacin Najeriya? +New-en-38,Work life,English (UK),Which industries are known for more flexible working hours in your country?,Wadanne masana'antu aka fi sani da samun lokutan aiki masu sassauci a Arewacin Najeriya? +New-en-41,Work life,English (UK),Who is the most well known and successful entrepreneur in your country?,Wane ne ɗan kasuwa mafi shahara da nasara a Arewacin Najeriya? +New-en-47,Family,English (UK),What can typically be found in the back garden of houses in your country?,Me ake samu a lambun bayan gidaje a Arewacin Najeriya? +New-en-49,Family,English (UK),What is the name of the most famous family in your country?,Menene sunan iyalan da suka fi shahara a Arewacin Najeriya? +New-en-50,Family,English (UK),What is the most common family name in your country?,Menene sunan iyalan da aka fi sani a Arewacin Najeriya? +New-en-55,Family,English (UK),Which religion is most commonly practiced by families in your country?,Wanne addini ne yafi yawaita tsakanin iyalai a Arewacin Najeriya? +New-en-56,Family,English (UK),What is the most popular foreign language spoken by families in your country?,Wane ne yaren wajen da ake magana da shi yafi shahara a tsakanin iyalai a Arewacin Najeriya? +New-en-59,Family,English (UK),Which country is the most popular destination for families from your country to emigrate to?,Wace ƙasa ce ta fi shahara a matsayin inda iyalai daga Arewacin Najeriya ke ƙaura zuwa ita? +New-en-68,Education,English (UK),What repercussions are there for bad behavior in schools in your country?,Wane irin sakamako ne ke akwai ga halayen banza a makarantun Arewacin Najeriya? +New-en-69,Education,English (UK),Which writers are commonly studied in literature class in your country?,Wadanne marubuta ake karantawa a aji na adabin Arewacin Najeriya? +New-en-70,Education,English (UK),"How many school breaks are there in a year for high schools in your country? (Provide Arabic numerals (e.g., 1) only.)","Sau nawa ake hutun makarantun sakandare a shekara guda a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 1) kawai.)" +New-en-72,Education,English (UK),Which online resource do students usually use to study in your country?,Wane kayan karatun yanar gizo ne dalibai ke amfani da su akai-akai don karatu a Arewacin Najeriya? +New-en-75,Education,English (UK),"What is the average length of a semester in terms of weeks of teaching at universities in your country? (Provide Arabic numerals (e.g., 1) only.)","Menene matsakaicin tsawon lokacin zangon karatu a jami'o'in Arewacin Najeriya a makonni? (Ka bayar da lambobin Larabci (misali, 1) kawai.)" +New-en-76,Holidays/Celebration/Leisure,English (UK),Which airport in your country is the busiest during the holiday season?,Wane filin jirgin sama ne a Arewacin Najeriya yake da cunkoso sosai a lokacin hutun? +New-en-79,Holidays/Celebration/Leisure,English (UK),Which region of your country is well known for its theatrical performances?,Wane yanki na Arewacin Najeriya aka fi sani da wasan kwaikwayo? +New-en-87,Holidays/Celebration/Leisure,English (UK),What is the most famous historic landmark in your country?,Wanne wurin tarihi ne mafi shaharara a Arewacin Najeriya? +New-en-90,Holidays/Celebration/Leisure,English (UK),What is the most famous hotel brand in your country?,Menene mafi shahararren sunan otal a Arewacin Najeriya? +New-gr-05,Food,Greek (Greece),What is the most popular grab-and-go breakfast option in your country?,Wanne zabin karin kumallo ne nace dandanan ya fi shahara a Arewacin Najeriya? +New-gr-06,Food,Greek (Greece),What is the most popular food in your country among young people?,Wanne abincin da aka fi so a Arewacin Najeriya tsakanin matasa? +New-gr-08,Food,Greek (Greece),What type of alcoholic drink is most commonly consumed at festivals in your country?,Wane irin giya ce aka fi sha a bukukuwan Arewacin Najeriya? +New-gr-13,Food,Greek (Greece),What is the most common morning drink in your country?,Wanne ne abin sha da aka saba sha da safe a Arewacin Najeriya? +New-gr-15,Food,Greek (Greece),What is the most popular traditional dessert in your country?,Menene shahararren kayan zaki na gargajiya a Arewacin Najeriya? +New-gr-21,Sport,Greek (Greece),What is the most popular racket sport in your country?,Wane wasan raket ne yafi shahara a Arewacin Najeriya? +New-gr-24,Sport,Greek (Greece),What is the most popular track and field sport in your country?,Wane wasan guje-guje da tsalle-tsalle ne ya fi shahara a Arewacin Najeriya? +New-gr-29,Sport,Greek (Greece),Which international sporting event is the most popular in your country?,Wane taron wasanni na ƙasa da ƙasa ne ya fi shahara a Arewacin Najeriya? +New-gr-47,Work life,Greek (Greece),"How long (in minutes) are typical work breaks in your country, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)","Ya tsawon (a cikin mintuna) hutun aiki yake na yau da kullum a Arewacin Najeriya, banda hutun cin abincin rana da na cin abincin dare? (Ka bayar da lambobin Larabci (misali, 1) kawai.)" +New-gr-58,Work life,Greek (Greece),Which job is considered underpaid in your country?,Wane irin aiki ake ganin ana biyan kudi ƙasa da kima a Arewacin Najeriya? +New-gr-76,Holidays/Celebration/Leisure,Greek (Greece),What is the most common food served during Easter in your country?,Menene abincin da aka saba bayarwa a lokacin Easter a Arewacin Najeriya? +New-gr-82,Holidays/Celebration/Leisure,Greek (Greece),What is the most popular music genre among the elderly population in your country?,Wane irin kiɗa ne ya fi shahara tsakanin tsofaffin mutane a Arewacin Najeriya? +New-gr-88,Holidays/Celebration/Leisure,Greek (Greece),What drink is usually offered at funerals in your country?,Wane irin abin sha ake bayarwa a lokacin ta'aziyya a Arewacin Najeriya? +New-gr-89,Holidays/Celebration/Leisure,Greek (Greece),What drink is usually offered at weddings in your country?,Wane irin abin sha ake bayarwa a bukukuwan aure a Arewacin Najeriya? +New-ha-07,Food,Hausa (Northern Nigeria),What food originated from your country and can be found all over the world?,Wane abinci ne ya samo asali daga Arewacin Najeriya kuma ake samun sa a ko'ina cikin duniya? +New-ha-08,Food,Hausa (Northern Nigeria),What food is typically disliked by children but enjoyed by the elderly in your country?,Wane irin abinci ne yara kan ƙi shi amma tsofaffi su kan so a Arewacin Najeriya? +New-ha-09,Food,Hausa (Northern Nigeria),What cooking utensil is most commonly used in your country?,Wane kayan girki ake amfani da shi sosai a Arewacin Najeriya? +New-ha-13,Food,Hausa (Northern Nigeria),Which is the most popular vegetable in your country?,Wane ne kayan lambu mafi shahara a Arewacin Najeriya? +New-ha-19,Sport,Hausa (Northern Nigeria),Which animal is used for sports in your country?,Wane irin dabba ake amfani da shi don wasanni a Arewacin Najeriya? +New-ha-66,Family,Hausa (Northern Nigeria),What is the most popular wedding venue in your country?,Menene wurin daurin aure mafi shahara a Arewacin Najeriya? +New-in-01,Food,Indonesian (Indonesia),Which coffee shop brand is the most popular in your country?,Wane irin shagon kofi ne yafi shahara a Arewacin Najeriya? +New-in-03,Food,Indonesian (Indonesia),What type of food from your country is typically served in restaurants overseas?,Wane irin abinci daga Arewacin Najeriya ake yawan siyar da shi a gidajen cin abinci na kasashen waje? +New-in-33,Work life,Indonesian (Indonesia),What region in your country is usually associated with mining?,Wane yanki a Arewacin Najeriya ake alakantawa da hakar ma'adinai? +New-in-34,Work life,Indonesian (Indonesia),What region in your country is usually associated with oil?,Wane yanki a Arewacin Najeriya ake alakantawa da mai? +New-in-62,Education,Indonesian (Indonesia),What university in your country is popular because of its engineering major? (Provide the official name.),Wace jami'a a Arewacin Najeriya ta shahara saboda bangarenta na injiniyanci? (Bayar da sunan hukuma.) +New-in-63,Education,Indonesian (Indonesia),What university in your country is popular because of its school of medicine? (Provide the official name.),Wace jami'a a Arewacin Najeriya ta shahara saboda makarantarta ta likitanci? (Bayar da sunan hukuma.) +New-in-78,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most popular payment method in your country?,Menene hanyar biyan kudi mafi shahara a Arewacin Najeriya? +New-in-80,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most famous theme park in your country?,Menene wurin shakatawa mafi shahara a Arewacin Najeriya? +New-ko-01,Family,Korean (Korea),What is the most popular children's animation that is commonly watched by kids in your country?,Menene shirin wasan kwaikwayo na yara da aka fi kallo a Arewacin Najeriya? +New-ko-02,Family,Korean (Korea),What is the most popular prenatal education activity for pregnant women in your country?,Menene aikin ilimin haihuwa da ya fi shahara ga mata masu juna biyu a Arewacin Najeriya? +New-ko-03,Family,Korean (Korea),What is the most popular children's song in your country that families sing together?,Wacce wakar yara mafi shahara ce iyalan gida ke rerawa tare a Arewacin Najeriya? +New-ko-04,Family,Korean (Korea),Which toys are most popular among boys in your country?,Wadanne kayan wasannin yara ne suka fi shahara tsakanin yara maza a Arewacin Najeriya? +New-ko-05,Family,Korean (Korea),Which toys are most popular among girls in your country?,Wadanne kayan wasannin yara ne suka fi shahara tsakanin 'yan mata a Arewacin Najeriya? +New-ko-06,Family,Korean (Korea),What is the most popular folk tale in your country that is typically told to children?,Wane labari ne na gargajiya da aka fi sani a Arewacin Najeriya wanda ake bawa yara? +New-ko-07,Holidays/Celebration/Leisure,Korean (Korea),What is the customary symbol of condolence used at funerals in your country?,Menene alamar al'ada ta jaje da ake amfani da ita a jana'izai a Arewacin Najeriya? +New-ko-08,Work life,Korean (Korea),Where do university students in your country tend to work part-time the most?,A ina daliban jami'a a Arewacin Najeriya suka fi yin aiki na wucin gadi? +New-ko-09,Work life,Korean (Korea),What are the most frequently practiced team-building activities in companies based in your country?,Menene ayyukan gina ƙungiya da aka fi yi a kamfanonin da ke Arewacin Najeriya? +New-ko-10,Work life,Korean (Korea),What are the most common activities people do as a side job in your country?,Menene ayyukan da mutane suka fi yi a matsayin kari akan aikin su na ainihi a Arewacin Najeriya? +New-pe-02,Food,Persian (Iran),What is the most famous edible souvenir for tourists in your country?,Menene abin tunawa da ake ci da ya fi shahara ga masu yawon bude ido a Arewacin Najeriya? +New-pe-06,Food,Persian (Iran),What is the most popular stew in your country?,Wacce miya ce aka fi shahara a Arewacin Najeriya? +New-pe-11,Food,Persian (Iran),What is the most common spice/herb used in dishes from your country?,Wanne ganyen yaji/gyada ne ake amfani da shi sosai a cikin abincin Arewacin Najeriya? +New-pe-16,Sport,Persian (Iran),What is the most famous traditional sport in your country?,Wanne wasan gargajiya ne mafi shahara a Arewacin Najeriya? +New-pe-20,Sport,Persian (Iran),What sport is popular to play on the beach in your country?,Wane wasa ne aka fi so a yi a bakin teku a Arewacin Najeriya? +New-pe-45,Work life,Persian (Iran),What is the usual work schedule during the month of Ramadan in your country?,Menene jadawalin aikin yau da kullun a lokacin watan Ramadan a Arewacin Najeriya? +New-pe-47,Family,Persian (Iran),"When is Student's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)","Yaushe ake bikin Ranar Dalibai a Arewacin Najeriya? (A bayar a tsarin MM/DD misali (e.g., 12/31).)" +New-pe-49,Family,Persian (Iran),Where do families gather to pray together in your country?,A ina ne iyalai sukan taru su yi addu'a tare a Arewacin Najeriya? +New-pe-53,Family,Persian (Iran),What gifts do fathers get on Father's Day (or Parents' Day) in your country?,Wane irin kyaututtuka ne iyaye maza suke samu a Ranar Uba (ko Ranar Iyaye) a Arewacin Najeriya? +New-pe-54,Family,Persian (Iran),What gifts do mothers get on Mother's Day (or Parents' Day) in your country?,Wane irin kyaututtuka ne uwaye suke samu a ranar Uwa (ko ranar Iyaye) a Arewacin Najeriya? +New-pe-59,Family,Persian (Iran),"How many generations typically live together in a household in your country? (Provide Arabic numerals (e.g., 12) only.)","Menene adadin zuri'ar gida ɗaya da suke zama tare a Arewacin Najeriya? (Ka bayar da lambobi na Larabci (misali, 12) kawai.)" +New-pe-65,Education,Persian (Iran),"How many subjects are taught in middle schools in your country? (Provide Arabic numerals (e.g., 12) only.)","Menene adadin darussan da ake koyarwa a makarantun sakandare a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 12) kawai.)" +New-pe-66,Education,Persian (Iran),What is the most popular after school curriculars in elementary schools in your country?,Menene shahararren ayyukan da ake yi bayan an tashi daga makarantun firamare a Arewacin Najeriya? +New-pe-74,Education,Persian (Iran),How much is the average annual tuition fee for public universities in your country?,Nawa ne matsakaicin kudin makaranta na shekara-shekara a jami'o'in gwamnati a Arewacin Najeriya? +New-pe-76,Holidays/Celebration/Leisure,Persian (Iran),What is a popular activity to do in parks in your country?,Menene aikin da ya shahara ake yi a wuraren shakatawa a Arewacin Najeriya? +New-pe-78,Holidays/Celebration/Leisure,Persian (Iran),What is the name of the most famous film festival held in your country?,Menene sunan bikin fina-finai mafi shahara da ake gudanarwa a Arewacin Najeriya? +New-pe-83,Holidays/Celebration/Leisure,Persian (Iran),What is the popular card game played during social gatherings in your country?,Menene wasan katin da ya shahara ana bugawa a lokutan taron jama'a a Arewacin Najeriya? +New-pe-85,Holidays/Celebration/Leisure,Persian (Iran),Where is the most popular tourist destination abroad for people from your country?,Ina ne wurin yawon bude ido da ya fi shahara a kasashen waje ga mutanen Arewacin Najeriya? +New-pe-86,Holidays/Celebration/Leisure,Persian (Iran),What is the name of the most famous tower in your country?,Menene sunan hasumiyar da tafi shahara a Arewacin Najeriya? +New-spme-01,Food,Spanish (Mexico),What edible insect is eaten most often in your country?,Wane irin kwari ne na ci ake fi ci sosai a Arewacin Najeriya? +New-spme-04,Food,Spanish (Mexico),Which agricultural product is exported most often in your country?,Wane kayan gona ake fitarwa daga Arewacin Najeriya sau da yawa? +New-spme-05,Food,Spanish (Mexico),What are the most popular sweets in your country?,Wanne kayan zaki ne mafi shahara a Arewacin Najeriya? +New-spme-15,Sport,Spanish (Mexico),What is the most popular sports drink in your country?,Wanne ne abin sha na wasanni da aka fi so a Arewacin Najeriya? +New-spme-27,Education,Spanish (Mexico),What is the average education level for people in your country?,Menene matsakaicin matakin ilimi ga mutanen Arewacin Najeriya? +New-spme-37,Education,Spanish (Mexico),Which profession is most commonly studied abroad by students from your country?,Wane sana'a ce daliban Arewacin Najeriya suka fi karantawa a kasashen waje? +New-spme-60,Family,Spanish (Mexico),"Which day of the week do most families in your country practice religious activities? (e.g. Monday, Tuesday)","Wane rana ne cikin sati yawancin iyalai a Arewacin Najeriya sukan gudanar da ayyukan addini? (misali Litinin, Talata)" +New-spme-65,Family,Spanish (Mexico),What is the most popular way to celebrate Independence Day in your country?,Menene hanya mafi shahara da ake bikin Ranar 'Yancin kai a Arewacin Najeriya? +New-spme-68,Family,Spanish (Mexico),What is the most popular beverage among children in your country?,Menene abin sha mafi shahara tsakanin yara a Arewacin Najeriya? +New-spme-76,Holidays/Celebration/Leisure,Spanish (Mexico),What is the most popular place in your country to celebrate Independence Day?,Wane wuri ne mafi shahara a Arewacin Najeriya don murnar Ranar 'Yancin Kai? +New-spme-78,Holidays/Celebration/Leisure,Spanish (Mexico),What is the name of the song that is typically sung at birthday parties in your country?,Menene sunan waƙar da aka saba rerawa a lokacin bukukuwan ranar haihuwa a Arewacin Najeriya? +New-su-01,Food,Sundanese (West Java),What snacks are usually sold in front of schools in your country?,Wadanne irin abincin motsa baki ake sayarwa a gaban makarantu a Arewacin Najeriya? +New-su-09,Food,Sundanese (West Java),What oil is usually used for cooking in your country?,Wane mai ake yawancin amfani da shi wajen girki a Arewacin Najeriya? +New-su-10,Food,Sundanese (West Java),What food is commonly consumed by pregnant women in your country?,Wane irin abinci mata masu ciki ke yawan ci a Arewacin Najeriya? +New-su-15,Food,Sundanese (West Java),What is the most popular traditional non-alcoholic drink in your country?,Wanene shahararren abin sha na gargajiya marar barasa a Arewacin Najeriya? +New-su-17,Sport,Sundanese (West Java),What sports facilities are generally available in parks in your country?,Wane irin kayan wasanni ake samu a wuraren shakatawa a Arewacin Najeriya? +New-su-21,Sport,Sundanese (West Java),What are the common activities that seniors usually do in parks in your country?,Waɗan ne ayyukan ne da tsofaffi suka saba yi a wuraren shakatawa a Arewacin Najeriya? +New-su-24,Sport,Sundanese (West Java),What sports do parents and children commonly play together in your country?,Wane irin wasanni ne iyaye da yara sukan yi tare a Arewacin Najeriya? +New-su-28,Sport,Sundanese (West Java),What color is associated with the regional soccer team of your country?,Wanne launi ne zaa alakantashi da kungiyar kwallon kafa na yankin ku? +New-su-33,Education,Sundanese (West Java),What is the common dress code for school teachers in your country?,Wanne ne tufafin da aka saba gani a cikin malaman makaranta ke sanyawa a Arewacin Najeriya? +New-su-34,Education,Sundanese (West Java),What is the most popular extracurricular activity related to music in schools in your country?,Wanne aikin ne na wajen karatu da ya shafi kiɗa da ya fi shahara a makarantun Arewacin Najeriya? +New-su-42,Education,Sundanese (West Java),What religion is mainly taught in schools in your country?,Wane addini ake koyarwa a makarantu a Arewacin Najeriya? +New-su-45,Education,Sundanese (West Java),"What date is Education Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)","Wace rana ake bikin Ranar Ilimi a Arewacin Najeriya? (Bayar da ita a tsarin MM/DD misali, 12/31)." +New-su-50,Work life,Sundanese (West Java),What is the main occupation of people in mountainous areas in your country?,Menene babban sana'ar mutanen da ke yankunan tudu a Arewacin Najeriya? +New-su-51,Work life,Sundanese (West Java),What is the main occupation of people in coastal areas in your country?,Menene babban sana'ar mutanen da ke yankunan gaɓar teku a Arewacin Najeriya? +New-su-57,Work life,Sundanese (West Java),What is the most common livestock raised in your country?,Wacce dabba aka fi kiwatawa a Arewacin Najeriya? +New-su-58,Work life,Sundanese (West Java),What animals are commonly used for agriculture in your country?,Waɗanne dabbobi aka fi amfani da su wajen noma a Arewacin Najeriya? +New-su-59,Work life,Sundanese (West Java),What do farmers in your country typically wear to protect themselves from the heat whilst farming?,Me manoma a Arewacin Najeriya ke sawa domin kare kansu daga zafin rana yayin noma? +New-su-60,Work life,Sundanese (West Java),What do farmers in your country usually eat for lunch?,Me manoma a Arewacin Najeriya sukan ci a matsayin abincin rana? +New-su-71,Family,Sundanese (West Java),What gifts do parents generally give to their children for their birthdays in your country?,Wane irin kyaututtuka iyaye ke baiwa 'ya'yansu a lokacin bukukuwan zagayowar haihuwarsu a Arewacin Najeriya? +New-su-75,Family,Sundanese (West Java),What type of vehicle do most families in your country generally own?,Wane irin ababen hawa ne yawancin iyalai a Arewacin Najeriya suka fi mallaka? +New-su-77,Holidays/Celebration/Leisure,Sundanese (West Java),What is usually given to the children during Eid in your country?,Me ake baiwa yara a lokacin idi a Arewacin Najeriya? +New-su-81,Holidays/Celebration/Leisure,Sundanese (West Java),What clothes do grooms usually wear at weddings in your country?,Wane irin tufafi angwaye kan sa a bikin aure a Arewacin Najeriya? +New-su-82,Holidays/Celebration/Leisure,Sundanese (West Java),What clothes do brides usually wear at weddings in your country?,Wane irin kayan ne amare suka saba sanyawa a bikin aure a Arewacin Najeriya? +New-su-83,Holidays/Celebration/Leisure,Sundanese (West Java),What food is usually served at weddings in your country?,Wane irin abinci ake ci a wajan biki a Arewacin Najeriya? +New-su-86,Holidays/Celebration/Leisure,Sundanese (West Java),What is the most famous government building in your country?,Wanne ne ginin gwamnati mafi shahara a Arewacin Najeriya? +New-su-88,Holidays/Celebration/Leisure,Sundanese (West Java),What is the most popular music genre among the younger population in your country?,Wane irin kiɗa ne matasan Arewacin Najeriya suka fi so tsakanin su? +Ni-en-02,Education,English (UK),"What time do middle school students in your country typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Wane lokaci daliban makarantar sakandire a Arewacin Najeriya suke tashi daga makaranta kowace rana? (A bayar da shi a cikin tsarin HH:MM misali, 18:00, 09:00)." +Ni-en-03,Education,English (UK),"At what age do people in your country typically go to university? (Provide Arabic numerals (e.g., 12) only.)","A wane shekaru ne mutane a Arewacin Najeriya sukan je jami'a? (Ka bayar da lambobin Larabci (misali, 12) kawai.)" +Ni-en-06,Education,English (UK),"From what age do people need to attend compulsory education in your country? (Provide Arabic numerals (e.g., 12) only.)","Daga wace shekara ne mutane suke buƙatar halartar ilimin tilas a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 12) kawai.)" +Ni-en-09,Education,English (UK),How many days a week do children attend school in your country? (Provide Arabic numerals (0~7) only.),Kwanaki nawa yara ke zuwa makaranta a Arewacin Najeriya a sati? (Ka bayar da lambobin Larabci (0~7) kawai.) +Ni-en-11,Education,English (UK),"In your country, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)","A Arewacin Najeriya, tsawon wane loakci (a shekaru) ake dauka kafin a kammala digirin digirgir? (Ka bayar da lambobin Larabci (misali, 12) kawai.)" +Ni-en-12,Education,English (UK),What is the top university in your country? (Provide the official name.),Wace jami'a ce ta ƙololuwa a Arewacin Najeriya? (Bayar da sunan hukuma.) +Ni-en-13,Education,English (UK),"At what age do most people in your country graduate from university? (Provide Arabic numerals (e.g., 12) only.)","A wane shekaru ne yawancin mutane a Arewacin Najeriya suka kammala jami'a? (Ka bayar da lambobin Larabci (misali, 12) kawai.)" +Ni-en-15,Education,English (UK),"At what age do children in your country generally start middle school? (Provide Arabic numerals (e.g., 12) only.)","A wane shekaru yara a Arewacin Najeriya sukan fara zuwa makarantar sakandare? (Ka bayar da lambobi na Larabci (misali, 12) kawai.)" +Ni-en-17,Work life,English (UK),"How many hours a week does a full-time worker in your country typically work? (Provide Arabic numerals (e.g., 12) only.)","Awanni nawa cikakken ma'aikaci ke aiki a Arewacin Najeriya a sati? (Ka bayar da lambobin Larabci (misali, 12) kawai.)" +Ni-en-19,Work life,English (UK),How many days a week does a full-time worker work in your country? (Provide Arabic numerals (0~7) only.),Ranaku nawa a sati cikakken ma'aikaci yake aiki a Arewacin Najeriya a sati? (Ka bayar da lambobin Larabci (0~7) kawai.) +Ni-en-20,Work life,English (UK),"At what age do most people start working in your country? (Provide Arabic numerals (e.g., 12) only.)","A wacce shekara ne yawancin mutane suke fara aiki a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 12) kawai.)" +Ni-en-21,Work life,English (UK),"From what age is an individual allowed to work in your country? (Provide Arabic numerals (e.g., 12) only.)","Daga shekara nawa ne mutum ya ke da izinin yin aiki a Arewacin Najeriya? (Ka bayar da lambobi na Larabci (misali, 12) kawai.)" +Ni-en-31,Holidays/Celebration/Leisure,English (UK),What do people in your country traditionally eat on Christmas Day?,Me mutane a Arewacin Najeriya suke ci a al'ada a ranar Kirsimeti? +Ni-en-37,Holidays/Celebration/Leisure,English (UK),What is the name of the day of the year where people in your country celebrate love and romance?,Menene sunan ranar shekara da mutanen Arewacin Najeriya ke murnar soyayya da kauna? +Ni-en-40,Holidays/Celebration/Leisure,English (UK),What is the most popular Christmas song in your country?,Wane waka ce ta Kirsimeti tafi shahara a Arewacin Najeriya? +Nu-in-04,Education,Indonesian (Indonesia),"How many semesters are there each academic year at high schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","Zangon karatu nawa a ke da shi a kowace shekarar ilimi a makarantun sakandare a Arewacin Najeriya? (Ka bayar da amsa cikin lambobin Larabci (misali, 7, 8) kawai.)" +Nu-in-05,Education,Indonesian (Indonesia),In which month does the new school year typically begin in your country? (Provide Arabic numerals (1~12) only.),A wane wata ne sabon shekarar makaranta ke farawa a Arewacin Najeriya? (Ka bayar da lambobi na Larabci (1~12) kawai.) +Nu-in-06,Education,Indonesian (Indonesia),"When is National Teacher's Day commemorated in your country? (Provide in MM/DD format (e.g., 12/31).)","Yaushe ake bikin Ranar Malamai ta Kasa a Arewacin Najeriya? (A bayar a tsarin MM/DD misali, 12/31)." +Nu-in-11,Education,Indonesian (Indonesia),"At what time does elementary school start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","A wane lokaci ne makarantar firamare ke farawa a Arewacin Najeriya? (Ka bayar da shi a tsarin HH:MM misali, 18:00, 09:00)." +Nu-in-20,Family,Indonesian (Indonesia),"When is Children's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)","Yaushe ake bikin Ranar Yara a Arewacin Najeriya? (A bayar a tsarin MM/DD misali, 12/31)." +Nu-in-40,Work life,Indonesian (Indonesia),Which city is the main destination for job seekers in your country?,Wanne gari ne babban wurin zuwa ga masu neman aiki a Arewacin Najeriya? +Sa-en-1,Food,English (UK),What is your country's most popular fast food chain?,Wanne ne mafi shaharar gidan abinci na sauri a Arewacin Najeriya? +Sa-en-13,Food,English (UK),What is the food that is most divisive (either love or hate) in your country?,Wane irin abinci ne mutane suka fi so ko ki a Arewacin Najeriya? +Sa-en-16,Sport,English (UK),What is the most popular soccer team among the people from your country?,Wacce kungiyar kwallon kafa ce tafi shahara a tsakanin mutanen Arewacin Najeriya? +Sa-en-22,Sport,English (UK),What is the most famous university in your country known for its sports team?,Wace jami'a ce tafi shahara a Arewacin Najeriya saboda kungiyar wasanninta? +Sa-en-31,Family,English (UK),What is your country's most popular family pet?,Menene dabbobin gida suka fi shahara a Arewacin Najeriya? +Sa-en-32,Family,English (UK),What is the most popular family TV show in your country?,Menene shirin talabijin na iyali da aka yafi shahara a Arewacin Najeriya? +Sa-en-37,Family,English (UK),What is the most popular family boardgame in your country?,Menene wasan allo na iyali yafi shahara a Arewacin Najeriya? +Sa-en-6,Food,English (UK),What is the most popular takeaway food in your country?,Wanne abinci aka yafi shahara a tafi da shi gida a Arewacin Najeriya? +Sa-en-7,Food,English (UK),What are popular snacks in your country?,Wanne abincin motsa baki aka fi so a Arewacin Najeriya? +Sa-en-9,Food,English (UK),What do people from your country eat at the beach?,Me mutanen Arewacin Najeriya ke ci a bakin teku? +Ta-pe-10,Family,Persian (Iran),"At what age do men usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)","A wane shekaru ne yawancin maza kan yi aure a Arewacin Najeriya? (Ka bayar da lambobin Larabci kawai (misali, 20).)" +Ta-pe-11,Family,Persian (Iran),"At what age do women usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)","A wane shekaru ne yawancin mata kan yi aure a Arewacin Najeriya? (Ka bayar da lambobin Larabci kawai (misali, 20).)" +Ta-pe-13,Family,Persian (Iran),"In your parents' generation, what was the average number of members in their family in your country? (Provide Arabic numerals (e.g., 20) only.)","A zamanin iyayenku, nawa ne matsakaicin adadin mutanen gidaje a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 20) kawai.)" +Ta-pe-17,Sport,Persian (Iran),"In the Olympic Games, which sport is the most popular in your country?","A wasannin Olympic, wane wasa ne ya fi shahara a Arewacin Najeriya?" +Ta-pe-21,Sport,Persian (Iran),Where do children usually play soccer in your country?,A ina yara kan yi wasan kwallon kafa a Arewacin Najeriya? +Ta-pe-22,Sport,Persian (Iran),Which daily exercise is popular among women in your country?,Wane irin motsa jiki na yau da kullum ne ya shahara tsakanin mata a Arewacin Najeriya? +Ta-pe-23,Sport,Persian (Iran),Which daily exercise is popular among men in your country?,Wane irin motsa jiki na yau da kullum ne ya shahara tsakanin maza a Arewacin Najeriya? +Ta-pe-25,Sport,Persian (Iran),"What is the most famous rivalry in a national sports league in your country? (e.g., ___ vs ___)","Wacce ce gagarumar hamayya a gasar wasanni ta kasa a Arewacin Najeriya? (misali, ___ da ___)" +Ta-pe-29,Sport,Persian (Iran),Which professional sport is the highest paying in your country?,Wane wasan kwararru ne aka fi biyan kudi mafi yawa a Arewacin Najeriya? +Ta-pe-30,Sport,Persian (Iran),What is/was the most popular sports-related TV program in your country?,Wane shiri ne na talabijin da ya shafi wasanni ya fi shahara a Arewacin Najeriya? +Ta-pe-32,Holidays/Celebration/Leisure,Persian (Iran),What day of the year is usually dedicated to fireworks in your country?,Wacce rana cikin shekara aka ware don wasan wuta a Arewacin Najeriya? +Ta-pe-37,Holidays/Celebration/Leisure,Persian (Iran),What is the common symbol of New Year's Eve that is usually found in your country?,Menene alamar da aka fi sani ta daren sabuwar shekara wacce ake samu a Arewacin Najeriya? +Ta-pe-42,Holidays/Celebration/Leisure,Persian (Iran),What food do people from your country usually eat on New Year's Eve?,Wane irin abinci ne mutanen Arewacin Najeriya suka saba ci a daren sabuwar shekara? +Ta-pe-45,Holidays/Celebration/Leisure,Persian (Iran),What is usually eaten during the celebration of the longest night of the year in your country?,Me aka fi ci a lokacin bikin daren mafi tsawo na shekara a Arewacin Najeriya? +Th-en-01,Sport,English (US),What is the most popular summer sport in your country?,Wane wasan motsa jiki ne yafi shahara a lokacin bazara a Arewacin Najeriya? +Th-en-03,Sport,English (US),What is the most popular professional sports league in your country?,Wanne ne mafi shaharar gasar wasanni ta kwararru a Arewacin Najeriya? +Th-en-05,Sport,English (US),What is the most popular women's sports team in your country?,Wacce kungiyar wasannin mata ce tafi shahara a Arewacin Najeriya? +Th-en-09,Sport,English (US),What is the most popular tournament in your country?,Wecce ce gasar da tafi shahara a Arewacin Najeriya? +Th-en-11,Sport,English (US),Who is the most popular sportperson in your country?,Wane dan wasan ne ya fi shahara a Arewacin Najeriya? +Th-en-12,Sport,English (US),In which sport has your country been most successful in international competitions?,A wane wasa ne Arewacin Najeriya ta fi samun nasara a gasar kasa da kasa? +Th-en-15,Sport,English (US),What is the most popular winter sport in your country?,Wane wasan hunturu ne yafi shahara a Arewacin Najeriya? +Th-en-19,Work life,English (US),What is a city or region in your country known for manufacturing industry?,Wanne gari ko yanki a Arewacin Najeriya ne aka sani da masana'antu? +Th-en-21,Work life,English (US),What is regarded as the most important perk typically offered to employees in your country?,Menene ake dauka a matsayin mafi muhimmancin alawus da ake bayarwa ga ma'aikata a Arewacin Najeriya? +Th-en-22,Work life,English (US),What was the most catastrophic economic period for your country?,Wane lokaci ne ya kasance mafi muni na tattalin arziki ga Arewacin Najeriya? +Th-en-24,Work life,English (US),What region in your country is a major hub for tech workers and start ups?,Wane yanki a Arewacin Najeriya ne babban cibiyar ma'aikatan fasaha da kamfanonin farawa? +Th-en-27,Work life,English (US),What is the most important industry in your country?,Wacce masana'anta ce mafi muhimmanci a Arewacin Najeriya? +Th-en-35,Family,English (US),"Which one of the daily meals is commonly shared with family members in your country? (e.g., breakfast, lunch, dinner)","Wanne daga cikin abincin yau da kullum ake yawan ci tare da iyalai a Arewacin Najeriya? (misali, karin kumallo, rana, ko abincin dare)" +Th-en-36,Family,English (US),What is a popular family activity with a child to do on weekends in your country?,Menene shahararren aikin gida da yara suka fi so suyi a karshen mako a Arewacin Najeriya? +Th-en-37,Family,English (US),"At what age do children typically become independent from their parents in your country? (Provide Arabic numerals (e.g., 12) only.)","A wane shekaru ne yara kan fara samun ƴancin zaman kansu a Arewacin Najeriya? (Ka bayar da lambobi na Larabci (misali, 12) kawai.)" +Th-en-38,Family,English (US),What is the most important family holiday in your country?,Menene hutun iyali mafi muhimmanci a Arewacin Najeriya? +Th-en-39,Family,English (US),What is a popular family game in your country?,Wane wasan iyali ne ya shahara so a Arewacin Najeriya? +Th-en-41,Family,English (US),"What is the average age for couples to have their first child in your country? (Provide Arabic numerals (e.g., 20) only.)","Menene matsakaicin shekaru ga ma'aurata su samu ɗansu na farko a Arewacin Najeriya? (Ka bayar da lambobin Larabci (misali, 20) kawai.)" +Th-en-43,Family,English (US),"How many cars are owned by a typical family in your country? (Provide Arabic numerals (e.g., 12) only.)","Kamar motoci nawa ne iyalai ke mallaka a Arewacin Najeriya a gidajen su? (Ka bayar da lambobin Larabci (misali, 12) kawai.)" +Th-en-44,Family,English (US),What is your country's most popular food for family meals on weekends?,Menene abin da yafi shahara a Arewacin Najeriya a matsayin abincin iyali a karshen mako? +Th-en-45,Family,English (US),What is the most popular weekday evening family activity in your country?,Menene aikin da iyalai suka fi yi da maraice a mako a Arewacin Najeriya? +Th-en-48,Education,English (US),What is the highest grade given to top-achieving high school students on assignments and exams in your country?,Menene mafi girman daraja da ake baiwa daliban sakandare masu hazaka a kan ayyukan darsi na gida da jarabawar a Arewacin Najeriya? +Th-en-49,Education,English (US),What is considered the most important exam for high school students in your country?,Wacce jarrabawa ce ake ɗauka a matsayin mafi muhimmanci ga daliban makarantar sakandare a Arewacin Najeriya? +Th-en-51,Education,English (US),Which subject is considered the most important for students in your country?,Wane darasi ake ganin yafi muhimmanci ga dalibai a Arewacin Najeriya? +Th-en-53,Education,English (US),What is the most popular extracurricular social event at schools in your country?,Menene taron zamantakewa na waje da ake yi a makarantu a Arewacin Najeriya da ya fi shahara? +Th-en-58,Education,English (US),What is the most advanced math subject learned before university in your country?,Menene mafi girman darasin lissafi da ake koya kafin a shiga jami'a a Arewacin Najeriya? +Tmp-ar-01,Education,Arabic (Algeria),Where do university students in your country usually go to study for their final exams?,Ina daliban jami'a a Arewacin Najeriya sukan je domin karatu don jarrabawar karshe? +Tmp-ar-02,Education,Arabic (Algeria),What is a common public transport that people use to go to university in your country?,Menene abin sufurin jama'a da mutane ke amfani da shi wajen zuwa jami'a a Arewacin Najeriya? +Tmp-ar-04,Education,Arabic (Algeria),What do elementary students in your country usually do after school?,Me daliban firamare a Arewacin Najeriya ke yi bayan sun tashi daga makaranta? diff --git a/data/questions/South_Korea_questions.csv b/data/questions/South_Korea_questions.csv new file mode 100644 index 0000000000000000000000000000000000000000..908bc800355f49b9de0435673a201964f03abc83 --- /dev/null +++ b/data/questions/South_Korea_questions.csv @@ -0,0 +1,501 @@ +ID,Topic,Source,Question,Translation +Al-en-01,Food,English (US),What is a common snack for preschool kids in your country?,대한민국의 유치원생들이 흔히 먹는 간식은 무엇인가요? +Al-en-02,Food,English (US),What is a popular food to go with beer in your country?,대한민국에서 맥주와 함께 즐겨먹는 음식은 무엇인가요? +Al-en-04,Food,English (US),What is the most popular fruit in your country?,대한민국에서 가장 인기 있는 과일은 무엇입니까? +Al-en-06,Food,English (US),What is a common school cafeteria food in your country?,대한민국 학교 급식에서 흔히 볼 수 있는 음식은 무엇인가요? +Al-en-08,Food,English (US),What are the most commonly eaten snacks at shopping malls in your country?,대한민국 쇼핑몰에서 사람들이 가장 흔히 먹는 간식은 무엇인가요? +Al-en-09,Food,English (US),What is a popular snack at an amusement park in your country?,대한민국의 놀이공원에서 인기 있는 간식은 무엇인가요? +Al-en-16,Education,English (US),"At what age do kids start preschool in your country? (Provide Arabic numerals (e.g., 12) only.)",대한민국에서 아이들은 보통 몇 살에 유치원에 다니기 시작하나요? (아라비아 숫자(예: 12)만 기재해 주세요. 만 나이가 아닌 한국식 나이(세는 나이)를 기준으로 답변해주세요.) +Al-en-17,Education,English (US),What is a popular afterschool sport for elementary schools in your country?,대한민국의 초등학교에서 방과 후에 하는 스포츠 중 인기 있는 스포츠는 무엇인가요? +Al-en-18,Education,English (US),For which subject do elementary students get private education in your country?,대한민국에서 초등학생들이 받는 사교육에는 어떤 과목이 있나요? +Al-en-19,Education,English (US),What is a popular second language for high school students in your country?,대한민국 고등학생들 사이에서 인기 있는 외국어는 무엇인가요? +Al-en-21,Education,English (US),Which subject is the most important for gifted education in your country?,대한민국의 영재 교육에서 가장 중요한 과목은 무엇인가요? +Al-en-32,Holidays/Celebration/Leisure,English (US),What is the main dish for Thanksgiving in your country?,대한민국에서는 추석에 주로 어떤 음식을 먹나요? +Al-en-33,Holidays/Celebration/Leisure,English (US),What do people do to celebrate Halloween in your country?,대한민국 사람들은 할로윈을 기념하기 위해 무엇을 하나요? +Al-en-34,Holidays/Celebration/Leisure,English (US),What do people do to celebrate New Year's Day in your country?,대한민국 사람들은 새해 첫날을 어떻게 기념하나요? +Al-en-35,Holidays/Celebration/Leisure,English (US),What do people do to celebrate Christmas in your country?,대한민국에서 사람들은 크리스마스를 어떻게 기념하나요? +Al-en-36,Holidays/Celebration/Leisure,English (US),What food is associated with Halloween in your country?,대한민국에서 할로윈 관련 음식은 무엇인가요? +Al-en-37,Holidays/Celebration/Leisure,English (US),What food is associated with Christmas in your country?,대한민국에서 크리스마스와 관련된 음식은 무엇인가요? +Al-en-38,Holidays/Celebration/Leisure,English (US),What food is associated with Valentine's day in your country?,대한민국에서 발렌타인 데이와 관련된 식품은 무엇인가요? +Al-en-39,Holidays/Celebration/Leisure,English (US),What do people eat on their birthday in your country?,대한민국 사람들은 생일에 무엇을 먹나요? +Al-en-40,Holidays/Celebration/Leisure,English (US),What is a popular outdoor place for families to have fun with little kids in your country?,대한민국에서 가족들이 어린 아이들과 함께 재밌는 시간을 보낼 수 있는 인기 있는 야외 장소는 어디인가요? +Al-en-43,Holidays/Celebration/Leisure,English (US),What is a popular indoor activity for families in your country?,대한민국에서 가족들이 실내에서 주로 즐기는 활동은 무엇인가요? +An-ar-02,Education,Arabic (Algeria),Where do university students have lunch in your country?,대한민국의 대학생들은 어디에서 점심을 먹나요? +An-ar-03,Education,Arabic (Algeria),Which month is the final exam term usually scheduled at high schools in your country? (Provide Arabic numerals (1~12) only.),대한민국의 고등학생들은 주로 몇 월에 기말고사를 보나요? (아라비아 숫자(1~12)만 기재해 주세요.) +An-ar-08,Education,Arabic (Algeria),"How many hours a day do students in your country usually spend at high school? (Provide Arabic numerals in integers (0~24), without any decimal points.)","대한민국 고등학생들은 보통 하루에 몇 시간을 학교에서 보내나요? (아라비아 숫자 정수(0~24)로, 소수점 없이 제공해주세요.)" +An-ar-09,Education,Arabic (Algeria),"How many languages do students study at high school in your country? (Provide Arabic numerals (e.g., 5) only.)",대한민국의 고등학생들은 학교에서 몇 가지 언어를 공부하나요? (아라비아 숫자(예: 5)만 기재해주세요.) +An-ar-34,Sport,Arabic (Algeria),What is the most popular sport played in a team at school in your country?,대한민국의 학교에서 가장 인기 있는 팀스포츠는 무엇입니까? +An-ar-35,Sport,Arabic (Algeria),Who is the most popular sport commentator in your country?,대한민국에서 가장 인기 있는 스포츠 해설가는 누구인가요? +An-ar-36,Sport,Arabic (Algeria),What is the most popular sport team in your country?,대한민국에서 가장 인기 있는 스포츠 팀은 어디인가요? +An-ar-43,Sport,Arabic (Algeria),What are the common places or venues where individuals in your country usually gather to watch sports broadcasts?,대한민국 사람들이 보통 스포츠 방송을 보기 위해 모이는 장소는 어디인가요? +Ca-sp-05,Food,Spanish (Spain),"How many meals per day do people from your country usually have? (Provide Arabic numerals (e.g., 5) only.)",대한민국 사람들은 보통 하루에 몇 끼를 먹나요? (아라비아 숫자(예: 5)만 기재하세요.) +Ca-sp-06,Food,Spanish (Spain),Which is the most important meal of the day to people from your country?,대한민국 사람들에게 하루 중 가장 중요한 끼니는 무엇인가요? +Ca-sp-08,Food,Spanish (Spain),What is the most common ingredient used in your country's diet?,대한민국 음식에서 가장 흔히 사용되는 재료는 무엇입니까? +Ca-sp-09,Food,Spanish (Spain),What do people from your country usually eat for dessert?,대한민국 사람들은 보통 디저트로 무엇을 먹나요? +Ca-sp-11,Food,Spanish (Spain),Which day of the week do people usually organize a family meal in your country?,대한민국에서 사람들은 보통 어떤 요일에 가족식사를 하나요? +Ca-sp-14,Food,Spanish (Spain),Which is the most popular hot drink in your country?,대한민국에서 가장 인기 있는 따뜻한 음료는 무엇입니까? +Ca-sp-19,Holidays/Celebration/Leisure,Spanish (Spain),What do young people from your country usually drink at the night club?,대한민국의 젊은이들은 클럽에서 보통 무엇을 마시나요? +Ca-sp-21,Holidays/Celebration/Leisure,Spanish (Spain),At which month do people usually take holidays in your country? (Provide Arabic numerals (1~12) only.),대한민국에서 사람들이 보통 어느 달에 휴가를 가나요? (아라비아 숫자(1~12)만 기재해 주세요.) +Ca-sp-29,Holidays/Celebration/Leisure,Spanish (Spain),What tradition is there in your country for New Year's Eve?,대한민국에는 새해 전날에 무엇을 하는 문화가 있나요? +Ca-sp-38,Family,Spanish (Spain),Which is the typical type of house for a family in your country?,대한민국에서 가족이 전형적으로 거주하는 주거형태는 무엇인가요? +Ca-sp-41,Family,Spanish (Spain),Where do the dependent elderly usually live in your country?,대한민국에서 돌봄이 필요한 노인들은 대체로 어느 곳에 사나요? +Ca-sp-42,Family,Spanish (Spain),"How long (in weeks) is your country's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)",대한민국에서 여성의 출산 휴가는 몇 주인가요? (아라비아 숫자(예: 20)만 제공해 주세요.) +Ca-sp-43,Family,Spanish (Spain),"How long (in weeks) is your country's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)",대한민국에서 남성의 육아휴직 기간은 몇 주인가요? (아라비아 숫자(예: 20)만 기재해 주세요.) +Ca-sp-45,Family,Spanish (Spain),What type of destination is commonly chosen for a family vacation in your country?,대한민국에서는 주로 어떤 종류의 여행지로 가족 휴가를 가나요? +Gu-ch-05,Sport,Chinese (China),What sports do seniors like the most in your country?,대한민국의 노인들이 가장 좋아하는 스포츠는 무엇인가요? +Gu-ch-06,Sport,Chinese (China),What sports do men like to play the most in your country?,대한민국 남성들이 가장 좋아하는 스포츠는 무엇인가요? +Gu-ch-07,Sport,Chinese (China),Who is the most famous basketball player in your country?,대한민국에서 가장 유명한 농구 선수는 누구인가요? +Gu-ch-08,Sport,Chinese (China),What is the most popular sports among children in your country?,대한민국의 아이들 사이에서 가장 인기 있는 스포츠는 무엇인가요? +Gu-ch-09,Sport,Chinese (China),What sports do women like to play the most in your country?,대한민국 여성들이 가장 좋아하는 스포츠는 무엇인가요? +Gu-ch-11,Sport,Chinese (China),What sports event has your country won the most gold medals at the Olympics?,대한민국이 올림픽에서 가장 많은 금메달을 획득한 종목은 무엇인가요? +Gu-ch-15,Sport,Chinese (China),What sports do male students in university like to play the most in your country?,대한민국의 대학교 남학생들이 가장 좋아하는 스포츠는 무엇인가요? +Gu-ch-16,Family,Chinese (China),"How many people are there in a family on average in your country? (Provide Arabic numerals (e.g., 12) only.)",대한민국의 평균 가족 구성원 수는 몇 명입니까? (아라비아 숫자(예: 12)만 기재해 주세요.) +Gu-ch-18,Family,Chinese (China),"How many children do couples usually have in your country? (Provide Arabic numerals (e.g., 12) only.)",대한민국의 부부는 보통 몇 명의 자녀를 가지고 있습니까? (아라비아 숫자(예: 12)만 기재해 주세요.) +Gu-ch-31,Education,Chinese (China),"What is the duration of elementary school in years in your country? (Provide Arabic numerals (e.g., 12) only.)",대한민국의 초등학교는 총 몇 년 다녀야 하나요? (아라비아 숫자(예: 12)만 기재해 주세요.) +Gu-ch-32,Education,Chinese (China),"What is the duration of compulsory education in years in your country? (Provide Arabic numerals (e.g., 12) only.)",대한민국의 의무교육 기간은 몇 년인가요? (아라비아 숫자 (예: 12)만 기재하십시오.) +Gu-ch-33,Education,Chinese (China),"From which age do students start learning their second language in your country? (Provide Arabic numerals (e.g., 12) only.)",대한민국에서 학생들은 몇 살 때부터 외국어를 배우기 시작하나요? (아라비아 숫자(예: 12)만 기재해 주세요. 만 나이가 아닌 한국식 나이(세는 나이)를 기준으로 답변해주세요.) +Gu-ch-38,Education,Chinese (China),"What is the duration of undergraduate education in your country? (Provide Arabic numerals (e.g., 12) only.)",대한민국의 대학교 학부 교육 기간은 몇 년인가요? (아라비아 숫자(예: 12)만 기재해 주세요.) +Gu-ch-40,Education,Chinese (China),"What time do younger elementary school students finish school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","대한민국의 초등학교 저학년 학생들은 주로 몇 시에 하교하나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)" +Gu-ch-41,Education,Chinese (China),"How many musical instruments do elementary school students in your country typically play? (Provide Arabic numerals (e.g., 12) only.)",대한민국의 초등학생들은 보통 몇 가지 악기를 다루나요? (아라비아 숫자(예: 12)만 기재해주세요.) +Ji-ko-02,Work life,Korean (South Korea),What day of the week do people in your country prefer to have company dinners?,대한민국 사람들은 주중 어느 요일에 회식을 하는 것을 가장 선호하나요? +Ji-ko-03,Work life,Korean (South Korea),Which region/city has the highest number of financial companies in your country?,대한민국에서 금융 회사가 가장 많은 지역/도시는 어디인가요? +Ji-ko-07,Work life,Korean (South Korea),What is the most famous private company in your country?,대한민국에서 가장 유명한 사기업은 어디입니까? +Ji-ko-08,Work life,Korean (South Korea),"What is the maximum number of hours one can work per week in your country? (Provide Arabic numerals (e.g., 12) only.)",대한민국에서는 일주일에 최대 몇 시간 일할 수 있습니까? (아라비아 숫자(예: 12)만 기재해 주세요.) +Ji-ko-09,Work life,Korean (South Korea),What do people typically eat during company get-together in your country?,대한민국 사람들은 보통 회식할 때 무엇을 먹나요? +Ji-ko-14,Work life,Korean (South Korea),What is the representative export item of your country?,대한민국의 대표 수출 품목은 무엇입니까? +Ji-ko-15,Work life,Korean (South Korea),"How long (in hours) is the typical lunch break in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","대한민국에서 점심 시간은 주로 몇 시간입니까? (아라비아 숫자로 소수점 한 자리까지(예: 2, 3.5)만 제공해 주세요.)" +Ji-ko-16,Family,Korean (South Korea),Where do mothers stay for a certain period after childbirth for recovery in your country?,대한민국에서 출산 후 어머니들이 회복을 위해 어디에 머무르나요? +Ji-ko-19,Family,Korean (South Korea),What is your country's most commonly given flower on Parents' Day?,대한민국에서 어버이날에 부모님께 드리는 가장 흔한 꽃은 무엇인가요? +Ji-ko-22,Family,Korean (South Korea),What do people especially spend their first salary on in your country's society?,대한민국 사회에서 사람들은 첫 월급을 특별히 어디에 쓰나요? +Ji-ko-24,Family,Korean (South Korea),What is the most preferred recreational facility among children in your country?,대한민국 어린이들이 가장 선호하는 놀이 시설은 무엇인가요? +Ji-ko-25,Family,Korean (South Korea),What are the family-related holidays in your country?,대한민국의 가족 관련 공휴일은 무엇이 있나요? +Ji-ko-26,Family,Korean (South Korea),What are the key milestones associated with children's independence from their parents in your country's society?,대한민국 사회에서 사람들은 언제(무엇을 한 후에) 부모로부터 독립을 하나요? +Ji-ko-27,Family,Korean (South Korea),What is the common gift you give when visiting elderly parents in your country?,대한민국에서 노부모님을 방문할 때 주로 드리는 선물은 무엇인가요? +Ji-ko-28,Family,Korean (South Korea),When is the first day that people celebrate after a child is born in your country?,대한민국에서 아기가 태어난 후 사람들이 처음으로 축하하는 날은 언제인가요? +Ji-ko-29,Family,Korean (South Korea),Which age's birthday is celebrated the most grandly in your country's society?,대한민국 사회에서 가장 크게 기념하는 생일은 몇 번째 생일인가요? +Ji-ko-31,Education,Korean (South Korea),Where do middle and high school students in your country usually study for exams?,대한민국의 중고등학생들은 보통 어디에서 시험공부를 하나요? +Ji-ko-33,Education,Korean (South Korea),Where do high school students in your country usually go after dinner?,대한민국의 고등학생들은 보통 저녁 식사 후에 어디로 가나요? +Ji-ko-34,Education,Korean (South Korea),How do elementary school students in your country go to school?,대한민국의 초등학생들은 어떻게 등교하나요? +Ji-ko-35,Education,Korean (South Korea),What is the most common form of private education in your country?,대한민국에서 가장 흔한 사교육은 무엇인가요? +Ji-ko-36,Education,Korean (South Korea),Which subject’s academy/private educational institute do middle or high students most frequently attend in your country?,대한민국의 중고등학생들이 어떤 과목을 가르치는 학원을 가장 많이 가나요? +Ji-ko-37,Education,Korean (South Korea),What type of clothing do middle and high school students wear to school in your country?,대한민국의 중고등학생들은 학교에 어떤 종류의 옷을 입고 등교하나요? +Ji-ko-38,Education,Korean (South Korea),Which major is considered the most difficult to gain admission to in your country?,대한민국의 대학 입시에서 가장 입학하기 어려운 전공은 무엇인가요? +Ji-ko-39,Education,Korean (South Korea),What is the most commonly learned musical instrument by elementary school students in your country?,대한민국 초등학생들이 가장 많이 배우는 악기는 무엇인가요? +Ji-ko-40,Education,Korean (South Korea),What do high school students typically do during break time in schools in your country?,대한민국의 고등학교 학생들은 보통 쉬는 시간에 무엇을 하나요? +Ji-ko-41,Education,Korean (South Korea),What kind of shoes do students wear in schools in your country?,대한민국의 학교 내에서 학생들은 어떤 종류의 신발을 신나요? +Ji-ko-42,Education,Korean (South Korea),What are the required subjects in your country's university entrance exam?,대한민국의 대학 입시에서 필수 과목은 무엇인가요? +Ji-ko-44,Education,Korean (South Korea),Which region (within a city) in your country has the highest academic fervor?,대한민국의 어느 지역(도시 내)에서 학구열이 가장 높나요? +Ji-ko-45,Education,Korean (South Korea),What do people look forward to the most at university festivals in your country?,대한민국의 대학 축제에서 사람들이 가장 기대하는 것은 무엇인가요? +Jo-sp-01,Sport,Spanish (Spain),What is the second most popular sport in your country?,대한민국에서 두 번째로 인기 있는 스포츠는 무엇인가요? +Jo-sp-02,Sport,Spanish (Spain),What is the most popular sport played without a ball in your country?,대한민국에서 구기종목을 제외하고 가장 인기 있는 스포츠는 무엇인가요? +Jo-sp-09,Sport,Spanish (Spain),What sports are most associated with the upper class in your country?,대한민국의 상류층과 가장 관련이 깊은 스포츠는 무엇인가요? +Jo-sp-13,Sport,Spanish (Spain),What is the most popular water sport in your country?,대한민국에서 가장 인기 있는 수상 스포츠는 무엇인가요? +Jo-sp-14,Sport,Spanish (Spain),What is the most popular mental sport in your country?,대한민국에서 가장 인기 있는 두뇌 스포츠는 무엇인가요? +Jo-sp-18,Work life,Spanish (Spain),"How many holiday days per year does a standard worker gets in your country? (Provide Arabic numerals (e.g., 12) only.)",대한민국의 표준 근로자가 일년에 받는 휴가 일수는 며칠인가요? (아라비아 숫자(예: 12)로만 제공해 주세요.) +Jo-sp-19,Work life,Spanish (Spain),What region in your country has been traditionally associated with agriculture?,대한민국의 어느 지역이 전통적으로 농업과 관련이 있습니까? +Jo-sp-21,Work life,Spanish (Spain),"What time, if any, do people usually leave work for lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","대한민국의 직장인들은 보통 몇 시부터 점심 식사를 하나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공하세요.)" +Jo-sp-31,Education,Spanish (Spain),"What time do high school students tend to leave school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","대한민국의 고등학생들은 보통 몇 시에 하교하나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)" +Jo-sp-32,Education,Spanish (Spain),What sport do elementary school students tend to practice at school in your country?,대한민국의 초등학생들은 학교에서 주로 어떤 운동을 하나요? +Jo-sp-36,Education,Spanish (Spain),"How long (in weeks) are summer vacations at elementary schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","대한민국 초등학교의 여름 방학은 주로 몇 주인가요? (아라비아 숫자(예: 7, 8)만 기재해 주세요.)" +Jo-sp-37,Education,Spanish (Spain),"How long (in weeks) are summer vacations at universities in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","대한민국 대학교의 여름 방학은 몇주 인가요? (아라비아 숫자(예: 7, 8)만 제공해 주세요.)" +Jo-sp-39,Education,Spanish (Spain),"At what age does elementary education begin in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)",대한민국에서 초등학교는 몇 살에 입학하나요? (아라비아 숫자(예: 12)만 기재해주세요. 만 나이가 아닌 한국식 나이(세는 나이)를 기준으로 답변해주세요.) +Jo-sp-43,Education,Spanish (Spain),"How many languages are studied in elementary education besides your country's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)","대한민국의 초등학교에서 국어 외에 배우는 언어는 몇 개인가요? (아라비아 숫자(예: 7, 8)만 제공해 주세요.)" +Jod-ch-01,Food,Chinese (China),What eating utensils do people commonly used in your country?,대한민국에서 사람들이 흔히 사용하는 식사 도구는 무엇인가요? +Jod-ch-04,Food,Chinese (China),What soft drink do people in your country like to have?,대한민국 사람들은 어떤 음료를 좋아하나요? +Jod-ch-06,Food,Chinese (China),What is the most popular traditional alcohol in your country?,대한민국에서 가장 인기 있는 전통술은 무엇입니까? +Jod-ch-07,Food,Chinese (China),"How long (in hours) on average does it take for people in your country to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","대한민국 사람들이 식당에서 저녁을 먹는데 평균적으로 몇 시간이 걸리나요? (아라비아 숫자로 소수점 한 자리까지(예: 2, 3.5)만 제공해 주세요.)" +Jod-ch-09,Food,Chinese (China),"What time do people usually have dinner in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","대한민국에서 사람들은 보통 몇 시에 저녁을 먹나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)" +Jod-ch-12,Food,Chinese (China),What kind of soup do people from your country like to have?,대한민국 사람들은 어떤 종류의 국을 좋아하나요? +Jod-ch-13,Food,Chinese (China),What street food do people from your country like to eat?,대한민국 사람들은 어떤 길거리 음식을 좋아하나요? +Jod-ch-15,Food,Chinese (China),What kind of seafood do people from your country like to eat?,대한민국 사람들은 어떤 종류의 해산물을 좋아하나요? +Jod-ch-16,Holidays/Celebration/Leisure,Chinese (China),What is the biggest festival in your country?,대한민국에서 가장 큰 축제는 무엇인가요? +Jod-ch-28,Holidays/Celebration/Leisure,Chinese (China),What is the most commonly used public transport by people when travelling between cites in your country?,대한민국에서 사람들이 도시 간 이동 시에 가장 많이 이용하는 대중교통 수단은 무엇입니까? +Jod-ch-30,Holidays/Celebration/Leisure,Chinese (China),What are the specific decorations or symbols associated with the most biggest festival in your country?,대한민국에서 가장 큰 축제와 관련된 특정 장식이나 상징은 무엇인가요? +Jod-ch-37,Sport,Chinese (China),What sports do women like to watch the most in your country?,대한민국에서 여성들이 가장 관람하길 좋아하는 스포츠는 무엇인가요? +Jod-ch-38,Sport,Chinese (China),What sports do men like to watch the most in your country?,대한민국에서 남성들이 가장 관람하길 좋아하는 스포츠는 무엇인가요? +Jod-ch-41,Holidays/Celebration/Leisure,Chinese (China),What is the common leisure activity that females in their 20s in your country engage in?,대한민국의 20대 여성들이 주로 하는 여가 활동은 무엇인가요? +Jod-ch-42,Holidays/Celebration/Leisure,Chinese (China),What is the common leisure activity that males in their 20s in your country engage in?,대한민국의 20대 남성들이 주로 하는 여가 활동은 무엇인가요? +Jod-ch-46,Work life,Chinese (China),"How long (in hours) do people usually take a break after lunch on a weekday in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","대한민국에서 평일에 점심 식사 후 보통 몇 시간 동안 휴식을 취하나요? (아라비아 숫자로 소수점 한 자리까지(예: 2, 3.5)만 제공해 주세요.)" +Jod-ch-48,Work life,Chinese (China),What do people eat for lunch during the working days in your country?,대한민국에서 사람들은 근무일에 점심으로 무엇을 먹나요? +Jod-ch-50,Work life,Chinese (China),"What is the average commute time (in minutes) for people in your country? (Provide Arabic numerals (e.g., 1) only.)",대한민국 사람들의 평균 편도 통근 시간은 몇 분인가요? (아라비아 숫자(예: 1)만 기재해 주세요.) +Jod-ch-51,Work life,Chinese (China),What is the most common transportation that people take to get to work in your country?,대한민국에서 사람들이 출근할 때 가장 많이 이용하는 교통수단은 무엇인가요? +Jod-ch-54,Work life,Chinese (China),"How long (in days) is the marriage leave in your country? (Provide Arabic numerals (e.g., 12) only.)",대한민국의 결혼 휴가는 며칠입니까? (아라비아 숫자(예: 12)로만 기재해 주세요.) +Jod-ch-56,Work life,Chinese (China),"What is the typical retirement age for women in your country? (Provide Arabic numerals (e.g., 12) only.)",대한민국 여성들의 전형적인 은퇴 연령은 몇 살입니까? (아라비아 숫자(예: 12)만 기재해 주세요. 만 나이가 아닌 한국식 나이(세는 나이)를 기준으로 답변해주세요.) +Jod-ch-57,Work life,Chinese (China),"What is the typical retirement age for men in your country? (Provide Arabic numerals (e.g., 12) only.)",대한민국 남성의 전형적인 은퇴 연령은 몇 살입니까? (아라비아 숫자(예: 12)만 기재해 주세요. 만 나이가 아닌 한국식 나이(세는 나이)를 기준으로 답변해주세요.) +Jod-ch-58,Work life,Chinese (China),Which profession is the most respected in your country?,대한민국에서 가장 존경받는 직업은 무엇입니까? +Jod-ch-60,Work life,Chinese (China),What is the duration (in hours) of a typical workday in your country? (Provide Arabic numerals (0~24) only.),대한민국 사람들의 일평균 근무시간은 몇 시간인가요?(아라비아 숫자(0~24)만 기재해 주세요.) +Jod-ch-61,Work life,Chinese (China),Which occupation is most preferred among females in your country?,대한민국 여성들이 가장 선호하는 직업은 무엇입니까? +Jod-ch-62,Work life,Chinese (China),Which occupation is most preferred among males in your country?,대한민국 남성들이 가장 선호하는 직업은 무엇입니까? +Ki-pe-17,Education,Persian (Iran),"On average, how far do students typically pursue their education in your country? (e.g., elementary, high school)","평균적으로 대한민국 학생들은 보통 어느 정도까지 교육을 받나요? (예: 초등학교, 고등학교)" +Ki-pe-24,Education,Persian (Iran),What language is taught in schools in your country besides English?,대한민국의 학교에서 학생들은 영어 외에 어떤 언어를 배우나요? +Ki-pe-30,Education,Persian (Iran),What days of the week are schools closed in your country?,대한민국의 학교는 어느 요일에 닫혀있나요? +Ki-pe-32,Food,Persian (Iran),What food do the hosts usually prepare for the guests in your country?,대한민국에서 보통 손님들을 위해 어떤 음식을 준비하나요? +Ki-pe-34,Food,Persian (Iran),What is the usual drink in the breakfast in your country?,대한민국의 아침 식사에서 보통 무엇을 마시나요? +Ki-pe-36,Food,Persian (Iran),"Except the food original from your country, which country's food is more popular in your country?","대한민국 음식을 제외하고, 대한민국에서 어느 나라 음식이 인기가 많나요?" +Ki-pe-39,Food,Persian (Iran),What food is usually prepared for a family picnic in your country?,대한민국에서 가족 소풍에 보통 어떤 음식을 준비하나요? +Ki-pe-40,Food,Persian (Iran),Which food from your country is considered disgusting by the rest of the world?,대한민국의 어떤 음식이 다른 나라 사람들에게 혐오스럽게 여겨지나요? +Ki-pe-43,Food,Persian (Iran),What is the name of the popular bread in your country?,대한민국에서 어떤 빵이 인기가 많나요? +Ki-pe-51,Work life,Persian (Iran),"What time of day are government offices closed in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","대한민국의 정부 기관은 주로 몇 시에 문을 닫나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공하세요.)" +Ki-pe-53,Work life,Persian (Iran),"What is the normal start time of government offices in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","대한민국 정부 기관은 주로 몇 시에 문을 여나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)" +Kik-in-01,Holidays/Celebration/Leisure,Indonesian (Indonesia),What national holiday has the longest duration in your country?,대한민국에서 가장 기간이 긴 국경일은 무엇인가요? +Kik-in-02,Holidays/Celebration/Leisure,Indonesian (Indonesia),What are the common activities people from your country do to celebrate Independence day?,대한민국의 독립기념일을 기념하기 위해 사람들이 흔히 하는 활동은 무엇인가요? +Kik-in-04,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is installed in front of the house when a family member dies in your country?,대한민국에서는 가족 구성원이 사망했을 때 집 앞에 무엇을 설치하나요? +Kik-in-05,Holidays/Celebration/Leisure,Indonesian (Indonesia),When is a pregnancy celebration or ceremony usually held in your country?,대한민국에서 임신 축하 행사/파티는 보통 언제 하나요? +Kik-in-06,Holidays/Celebration/Leisure,Indonesian (Indonesia),What event is usually held before a wedding in your country?,대한민국에서는 결혼식 전에 주로 하는 이벤트는 무엇인가요? +Kik-in-07,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is usually shared to the children during (Lunar) New Year in your country?,대한민국에서는 설날에 무엇을 아이들에게 주나요? +Kik-in-08,Holidays/Celebration/Leisure,Indonesian (Indonesia),What activities are usually done days before Ramadan in your country?,대한민국 사람들은 라마단이 시작되기 며칠 전부터 주로 어떤 걸 하나요? +Kik-in-10,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most popular tourist attraction for foreign visitors in your country?,대한민국을 방문하는 외국인 관광객에게 가장 인기 있는 관광명소는 어디입니까? +Kik-in-11,Holidays/Celebration/Leisure,Indonesian (Indonesia),"What is the most popular religious sites (temple, church, etc.) for tourism in your country?","대한민국에서 종교적 장소(절, 교회 등) 중 관광지로 가장 유명한 곳은 어디인가요?" +Kik-in-15,Holidays/Celebration/Leisure,Indonesian (Indonesia),What clothes do women usually wear on graduation commencement ceremony in your country?,대한민국에서 여성들은 보통 졸업식에 어떤 옷을 입나요? +Kik-in-16,Food,Indonesian (Indonesia),What drink is commonly consumed in your country when the weather is cold?,날씨가 추울 때 대한민국에서 주로 마시는 음료는 무엇인가요? +Kik-in-17,Food,Indonesian (Indonesia),What fruit is more commonly sold and found during Ramadan in your country?,대한민국에서 라마단 기간에 더 많이 팔리고 흔히 보이는 과일은 무엇인가요? +Kik-in-24,Food,Indonesian (Indonesia),What carbohydrate is usually served with chicken in a fast-food restaurant in your country?,대한민국의 패스트푸드 레스토랑에서 치킨과 함께 주로 제공되는 탄수화물은 무엇인가요? +Kik-in-31,Sport,Indonesian (Indonesia),What is the most famous martial art sports in your country?,대한민국에서 가장 잘 알려진 무술은 무엇인가요? +Kik-in-34,Sport,Indonesian (Indonesia),What sports are often broadcasted on national television in your country?,대한민국의 국영 방송에서 자주 중계되는 스포츠는 무엇인가요? +Kik-in-35,Sport,Indonesian (Indonesia),What sports were popular among people from your country during the COVID-19 pandemic?,코로나 기간 동안 대한민국 사람들 사이에서 인기 있었던 스포츠는 무엇이었나요? +Kik-in-36,Sport,Indonesian (Indonesia),Who is the most popular soccer coach in your country?,대한민국에서 가장 인기 있는 축구 감독은 누구인가요? +Kik-in-37,Sport,Indonesian (Indonesia),What soccer teams in your country are famous for their intense rivalry? (e.g. ___ vs ___),대한민국에서 어떤 축구 팀들이 치열한 라이벌 관계로 유명한가요? (예: ___ 대 ___) +Kik-in-38,Sport,Indonesian (Indonesia),What are the names of soccer supporters in your country who are famous for their intense rivalry? (e.g. ___ vs ___),대한민국에서 치열한 라이벌로 유명한 축구 팀들의 팬클럽 이름은 무엇인가요? (예: ___ 대 ___) +Kik-in-40,Sport,Indonesian (Indonesia),Who is the most famous male badminton player in your country?,대한민국에서 가장 유명한 남자 배드민턴 선수는 누구인가요? +Kik-in-41,Sport,Indonesian (Indonesia),Who is the most famous female badminton player in your country?,대한민국에서 가장 유명한 여자 배드민턴 선수는 누구인가요? +Kik-in-44,Sport,Indonesian (Indonesia),What sport gets the most support from the government in your country?,대한민국 정부로부터 가장 많은 지원을 받는 스포츠는 무엇인가요? +Kik-in-45,Sport,Indonesian (Indonesia),What sports field facilities are usually available at schools in your country?,대한민국의 학교에는 보통 어떤 스포츠의 경기장이 있나요? +Na-ko-02,Food,Korean (South Korea),What cafe beverage do people from your country most commonly enjoy?,대한민국 사람들이 가장 즐겨 마시는 카페 음료는 무엇인가요? +Na-ko-04,Food,Korean (South Korea),What is the preferred hangover cure food for people from your country?,대한민국 사람들이 선호하는 해장 음식은 무엇인가요? +Na-ko-05,Food,Korean (South Korea),What is the typical delivery food in your country?,대한민국에서 주로 먹는 배달 음식은 무엇인가요? +Na-ko-07,Food,Korean (South Korea),What type of meat is consumed most by people from your country?,대한민국 사람들은 어떤 육류를 가장 많이 소비하나요? +Na-ko-08,Food,Korean (South Korea),What fruit do people from your country often eat in the autumn season?,대한민국 사람들은 가을철에 주로 어떤 과일을 먹나요? +Na-ko-09,Food,Korean (South Korea),What side dish is the most commonly served on a dining table in your country?,대한민국 식탁에서 가장 흔하게 볼 수 있는 반찬은 무엇인가요? +Na-ko-11,Food,Korean (South Korea),What do people from your country eat while watching a soccer game?,대한민국 사람들은 축구 경기를 볼 때 무엇을 먹나요? +Na-ko-15,Food,Korean (South Korea),What is the representative nourishing food in your country?,대한민국의 대표적인 보양식은 무엇인가요? +Na-ko-16,Sport,Korean (South Korea),Who is the most famous soccer player in your country?,대한민국에서 가장 유명한 축구 선수는 누구인가요? +Na-ko-17,Sport,Korean (South Korea),What sports do male students enjoy during lunch time at school in your country?,대한민국의 학교에서 남학생들은 점심시간에 어떤 스포츠를 즐겨 하나요? +Na-ko-18,Sport,Korean (South Korea),What is the most common sport girls participate in during physical education classes in your country?,대한민국의 체육 수업 시간에 여학생들이 가장 많이 하는 스포츠는 무엇인가요? +Na-ko-19,Sport,Korean (South Korea),Who is the most popular volleyball player in your country?,대한민국에서 가장 인기 있는 배구 선수는 누구인가요? +Na-ko-20,Sport,Korean (South Korea),What sports event do people from your country passionately support the most in international competitions?,대한민국 사람들이 국제 대회에서 가장 열정적으로 응원하는 스포츠 종목은 무엇인가요? +Na-ko-22,Sport,Korean (South Korea),Which country is considered the biggest rival in soccer matches for your country?,어느 나라가 대한민국의 가장 큰 축구 라이벌로 여겨지나요? +Na-ko-23,Sport,Korean (South Korea),What type of sports academies do children attend the most in your country?,대한민국에서 아이들이 가장 많이 다니는 스포츠 학원은 무엇인가요? +Na-ko-24,Sport,Korean (South Korea),What is the most commonly eaten food in sports stadiums while watching games in your country?,대한민국의 스포츠 경기장에서 경기를 관람하며 먹는 음식 중 가장 많이 먹는 음식은 무엇인가요? +Na-ko-25,Sport,Korean (South Korea),What are the typical sports played in your country's school sports day?,대한민국의 학교 운동회에서 일반적으로 하는 스포츠는 무엇인가요? +Na-ko-26,Sport,Korean (South Korea),What are the popular sports among the middle-aged population in your country?,대한민국의 중년층들에게 인기 있는 스포츠는 무엇입니까? +Na-ko-28,Sport,Korean (South Korea),Who is the most popular winter sports player in your country?,대한민국에서 가장 인기 있는 동계 스포츠 선수는 누구인가요? +Na-ko-29,Sport,Korean (South Korea),Who is the most famous swimmer in your country?,대한민국에서 가장 유명한 수영 선수는 누구인가요? +Na-ko-30,Sport,Korean (South Korea),What is the most popular e-sports game in your country?,대한민국에서 가장 인기 있는 e스포츠 게임은 무엇인가요? +Na-ko-33,Holidays/Celebration/Leisure,Korean (South Korea),What symbolic food do people from your country eat on (Lunar) New Year?,대한민국 사람들은 설날에 상징적으로 어떤 음식을 먹나요? +Na-ko-37,Holidays/Celebration/Leisure,Korean (South Korea),What is the most popular domestic vacation spot for people from your country?,대한민국 사람들에게 가장 인기 있는 국내 휴가지는 어디인가요? +Na-ko-38,Holidays/Celebration/Leisure,Korean (South Korea),What is the most common wedding gift between bride and groom in your country?,대한민국에서 신랑과 신부 사이에 주고받는 가장 흔한 결혼 선물은 무엇인가요? +Na-ko-39,Holidays/Celebration/Leisure,Korean (South Korea),What is typically given as a congratulatory gesture when attending a friend's wedding in your country?,대한민국에서 친구의 결혼식에 참석할 때 축하의 의미로 보통 어떤 선물을 주나요? +Na-ko-40,Holidays/Celebration/Leisure,Korean (South Korea),"How long (in days) does a funeral typically last in your country? (Provide Arabic numerals (e.g., 12) only.)",대한민국에서 장례식은 보통 며칠 동안하나요? (아라비아 숫자(예: 12)만 기재해 주세요.) +Na-ko-41,Holidays/Celebration/Leisure,Korean (South Korea),What should you prepare as a condolence offering when attending a funeral in your country?,대한민국 장례식에 참석할 때 애도를 전하기 위해 무엇을 준비해야 하나요? +Na-ko-42,Holidays/Celebration/Leisure,Korean (South Korea),What type of food is commonly provided at funeral parlors in your country?,대한민국 장례식장에서 주로 제공되는 음식은 무엇인가요? +Na-ko-43,Holidays/Celebration/Leisure,Korean (South Korea),What do people do in your country in the morning of the (Lunar) New Year?,대한민국 사람들은 설날 아침에 무엇을 하나요? +Na-ko-44,Holidays/Celebration/Leisure,Korean (South Korea),When is the day with your country's most severe nationwide traffic congestion?,대한민국에서 전국적으로 교통 체증이 가장 심한 날은 언제입니까? +Na-ko-45,Holidays/Celebration/Leisure,Korean (South Korea),What is the most popular honeymoon destination in your country?,대한민국에서 가장 인기 있는 신혼여행지는 어디인가요? +Ne-ar-05,Holidays/Celebration/Leisure,Arabic (Algeria),What is the most important national holiday in your country?,대한민국에서 가장 중요한 국경일은 무엇인가요? +Ne-ar-06,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Ramadan?,대한민국 사람들은 라마단 기간에 무엇을 먹나요? +Ne-ar-09,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Eid ul Fitr?,대한민국 사람들은 이드 알피트르에 무엇을 먹나요? +Ne-ar-10,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Eid ul Adha?,대한민국 사람들은 이드 알아드하에 무엇을 먹나요? +Ne-ar-11,Holidays/Celebration/Leisure,Arabic (Algeria),Where do people from your country go to celebrate New Year's Day?,대한민국 사람들은 새해 첫날을 기념하러 어디로 가나요? +Ne-ar-14,Holidays/Celebration/Leisure,Arabic (Algeria),Where do a family gather for Eid festivities in your country?,대한민국 가족들은 이드 축제를 위해 어디에 모이나요? +Ne-ar-16,Work life,Arabic (Algeria),"When is the weekend in your country (e.g. Monday, Tuesday)?","대한민국의 주말은 언제인가요 (예: 월요일, 화요일)?" +Ne-ar-17,Work life,Arabic (Algeria),"At what time do most people start work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","대한민국에서 대부분의 사람들은 몇 시에 일을 시작하나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공하세요.)." +Ne-ar-18,Work life,Arabic (Algeria),"At what time do most people finish work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","대한민국에서 대부분의 사람들은 몇 시에 퇴근하나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공하세요.)." +Ne-ar-20,Work life,Arabic (Algeria),What is considered to be a secure job in your country?,대한민국에서 안정적인 직업으로 여겨지는 직업은 무엇인가요? +Ne-ar-24,Work life,Arabic (Algeria),Which city is the primary commercial hub in your country?,대한민국의 주요 상업 중심지는 어느 도시입니까? +Ne-ar-25,Work life,Arabic (Algeria),What is the industry that pays the best in your country?,대한민국에서 어느 산업 종사자들의 평균 급여가 가장 높나요? +Ne-ar-26,Work life,Arabic (Algeria),What is the most famous public corporation in your country?,대한민국에서 가장 유명한 공기업은 어디입니까? +Ne-ar-31,Food,Arabic (Algeria),What is the most famous dish in your country?,대한민국에서 가장 유명한 음식은 무엇입니까? +Ne-ar-32,Food,Arabic (Algeria),What do people usually have for breakfast in your country?,대한민국에서 사람들은 보통 아침으로 무엇을 먹나요? +Ne-ar-33,Food,Arabic (Algeria),"When do people usually have lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","대한민국에서 사람들은 보통 몇 시에 점심을 먹나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)" +Ne-ar-34,Food,Arabic (Algeria),What is typically indispensable in meals in your country?,대한민국의 식사에서 일반적으로 없어서는 안 될 음식은 무엇인가요? +Ne-ar-36,Food,Arabic (Algeria),What is a typical festive meal in your country?,대한민국의 축제에서 일반적으로 먹는 음식은 무엇인가요? +Ne-ar-37,Food,Arabic (Algeria),Which fruit do people usually offer tourists/visitors from abroad in your country?,대한민국에서는 해외에서 온 관광객/방문객에게 주로 어떤 과일을 추천하나요? +Ne-ar-38,Food,Arabic (Algeria),Which food do people usually offer as charity in your country?,대한민국에서는 어떤 음식이 자선 음식으로 제공되나요? +Ne-ar-39,Food,Arabic (Algeria),What is the cheapest fast food in your country?,대한민국에서 가장 저렴하게 판매되는 패스트푸드는 무엇인가요? +Ne-ar-43,Food,Arabic (Algeria),What do people usually have with tea in your country?,대한민국에서 사람들은 보통 차에 무엇을 곁들여 먹나요? +Ne-ar-44,Food,Arabic (Algeria),What do people have with coffee in your country?,대한민국에서 사람들은 커피에 무엇을 곁들여 먹나요? +New-am-02,Food,Amharic (Ethiopia),What is the most popular traditional food in your country?,대한민국에서 가장 인기 있는 전통 음식은 무엇입니까? +New-am-04,Food,Amharic (Ethiopia),What is the most popular dipping sauce in your country?,대한민국에서 가장 인기 있는 찍어 먹는 소스는 무엇인가요? +New-am-08,Food,Amharic (Ethiopia),What food is most often consumed during Christian fasting in your country?,대한민국에서 기독교인의 금식 기간에 가장 흔히 섭취하는 음식은 무엇인가요? +New-am-15,Food,Amharic (Ethiopia),What food is usually prepared when mothers give birth in your country?,대한민국에서 엄마들이 출산할 때 보통 어떤 음식을 준비하나요? +New-am-27,Sport,Amharic (Ethiopia),Who is the most popular female sportperson in your country?,대한민국에서 가장 인기 있는 여성 스포츠 선수는 누구인가요? +New-am-34,Education,Amharic (Ethiopia),Where do most elementary school students prepare for their exams in your country?,대한민국의 초등학생들은 보통 어디에서 시험 준비를 하나요? +New-am-41,Education,Amharic (Ethiopia),"In your country, at which grade level do students take their first national-level examination?",대한민국에서 학생들이 처음으로 전국 단위 시험을 치르는 학년은 몇 학년입니까? +New-am-53,Work life,Amharic (Ethiopia),Which region in your country is widely known for its coffee/tea industry?,대한민국에서 커피/차 산업으로 유명한 지역은 어디인가요? +New-am-54,Work life,Amharic (Ethiopia),Which region in your country is widely known for its livestock industry?,대한민국에서 축산업으로 유명한 지역은 어디인가요? +New-am-59,Work life,Amharic (Ethiopia),What is the main occupation of people living in deserts in your country?,대한민국의 사막에 사는 사람들의 주요 직업은 무엇입니까? +New-am-60,Work life,Amharic (Ethiopia),Which animal is typically used for transportation in your country?,대한민국에서 일반적으로 교통 수단으로 사용되는 동물은 무엇입니까? +New-am-72,Family,Amharic (Ethiopia),What is the most popular comic book for children to read in your country?,대한민국에서 아이들에게 가장 인기 있는 만화책은 무엇인가요? +New-am-73,Family,Amharic (Ethiopia),What is the most popular YouTube channel for children in your country?,대한민국에서 아이들에게 가장 인기 있는 유튜브 채널은 무엇인가요? +New-am-74,Family,Amharic (Ethiopia),What is the most popular talk show in your country?,대한민국에서 가장 인기 있는 토크쇼는 무엇인가요? +New-am-77,Holidays/Celebration/Leisure,Amharic (Ethiopia),What is the most famous religious holiday in your country?,대한민국에서 가장 유명한 종교적 명절은 무엇입니까? +New-am-81,Holidays/Celebration/Leisure,Amharic (Ethiopia),"What is the busiest month for weddings in your country? (Provide Arabic numerals (e.g., 1) only.)",대한민국에서 결혼식이 가장 많이 열리는 달은 언제입니까? (아라비아 숫자(예: 1)만 기재해 주세요.) +New-am-83,Holidays/Celebration/Leisure,Amharic (Ethiopia),What is the most popular traditional musical instrument in your country?,대한민국에서 가장 인기 있는 전통 악기는 무엇입니까? +New-as-01,Food,Assamese (Assam),What is the main agricultural product produced in your country?,대한민국에서 생산되는 주요 농산물은 무엇입니까? +New-as-02,Food,Assamese (Assam),What is the most popular wheat-based food item in your country?,대한민국에서 밀가루로 만든 가장 인기 있는 음식은 무엇입니까? +New-as-05,Food,Assamese (Assam),What is the most typical drink offered to guests when they visit households in your country?,대한민국의 가정을 방문할 때 손님들에게 가장 흔히 제공되는 음료나 술은 무엇인가요? +New-as-07,Food,Assamese (Assam),What is the most popular dish cooked with fish in your country?,대한민국에서 가장 인기 있는 생선 요리는 무엇입니까? +New-as-14,Food,Assamese (Assam),What food do people from your country like to eat during rainy weather?,비 오는 날에 대한민국 사람들은 주로 무엇을 먹나요? +New-as-15,Food,Assamese (Assam),What drink is commonly consumed in your country when the weather is hot?,대한민국에서 날씨가 더울 때 주로 마시는 음료는 무엇인가요? +New-as-20,Sport,Assamese (Assam),What is the most popular indoor sport in your country?,대한민국에서 가장 인기 있는 실내 스포츠는 무엇인가요? +New-as-29,Sport,Assamese (Assam),What sport do men in your country like to watch?,대한민국의 남성들은 어떤 스포츠를 보는 것을 좋아하나요? +New-as-30,Sport,Assamese (Assam),What sport do women in your country like to watch?,대한민국의 여성들은 어떤 스포츠를 보는 것을 좋아하나요? +New-as-58,Work life,Assamese (Assam),What is the most popular beverage that people from your country like to drink in their workplace?,대한민국 사람들이 직장에서 가장 흔히 마시는 음료는 무엇인가요? +New-as-64,Family,Assamese (Assam),On which holiday do all family members tend to reunite in your country?,대한민국에서 모든 가족 구성원들이 함께 모이는 명절은 무엇이 있나요? +New-as-76,Holidays/Celebration/Leisure,Assamese (Assam),What traditional games do families play during traditional holidays in your country?,대한민국의 전통적인 명절에 가족들이 함께 하는 민속놀이는 무엇이 있나요? +New-as-80,Holidays/Celebration/Leisure,Assamese (Assam),What type of clothing do people from your country wear during traditional festivals?,대한민국의 전통 축제에서 사람들은 어떤 종류의 옷을 입나요? +New-as-89,Holidays/Celebration/Leisure,Assamese (Assam),What traditional festival accessories do people from your country wear?,대한민국 사람들은 전통 축제 때 어떤 액세서리를 착용하나요? +New-az-05,Food,Azerbaijani (Azerbaijan),What is the most famous region for alcohol production in your country?,대한민국에서 가장 유명한 술 생산 지역은 어디입니까? +New-az-11,Food,Azerbaijani (Azerbaijan),What fruit do people from your country often eat in the summer season?,대한민국 사람들은 여름철에 주로 어떤 과일을 먹나요? +New-az-12,Food,Azerbaijani (Azerbaijan),Which region in your country is known for its seafood?,대한민국에서 해산물로 유명한 지역은 어디인가요? +New-az-21,Sport,Azerbaijani (Azerbaijan),Which region in your country is the most popular skiing destination?,대한민국에서 스키 여행지로 가장 유명한 지역은 어디인가요? +New-az-26,Sport,Azerbaijani (Azerbaijan),Who is the most popular martial arts player in your country?,대한민국에서 가장 인기 있는 무술 선수는 누구인가요? +New-az-27,Sport,Azerbaijani (Azerbaijan),Which sport has been one of the fastest-growing in your country over the last decade?,대한민국에서 지난 10년 동안 가장 빠르게 성장한 스포츠는 무엇입니까? +New-az-39,Education,Azerbaijani (Azerbaijan),Which country is the most popular destination for students from your country studying abroad?,대한민국에서 해외 유학을 가는 학생들에게 가장 인기 있는 나라는 어디인가요? +New-az-49,Work life,Azerbaijani (Azerbaijan),"How many people work in a typical family in your country? (Provide Arabic numerals (e.g., 1) only.)",대한민국의 일반적인 가정에서는 몇 명이 일합니까? (아라비아 숫자(예: 1)만 기재해 주세요.) +New-az-60,Family,Azerbaijani (Azerbaijan),"In your country, who takes care of kids when both parents are working?",대한민국에서 부모님이 둘 다 일할 때 아이들을 누가 돌보나요? +New-az-69,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),What is the preferred alcoholic beverage for men from your country?,대한민국 남성들이 선호하는 술은 무엇인가요? +New-az-70,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),What is the preferred alcoholic beverage for women from your country?,대한민국 여성들이 선호하는 술은 무엇인가요? +New-az-73,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),"How many people on average typically attend a wedding in your country? (Provide Arabic numerals (e.g., 1) only.)",대한민국의 일반적인 결혼식에는 평균적으로 몇 명이 참석하나요? (아라비아 숫자(예: 1)만 기재해 주세요.) +New-ch-01,Food,Chinese (China),What kind of meat do people usually eat when they have barbecue in your country?,대한민국에서 바베큐를 할 때 사람들은 보통 어떤 고기를 먹나요? +New-ch-02,Food,Chinese (China),"When do people usually have breakfast in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","대한민국에서 사람들은 보통 몇 시에 아침을 먹나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)" +New-ch-04,Food,Chinese (China),What kinds of food do people usually eat for late-night snacks in your country?,대한민국에서 사람들은 보통 야식으로 무엇을 먹나요? +New-ch-05,Food,Chinese (China),What is the most famous spicy dish in your country?,대한민국에서 가장 유명한 매운 음식은 무엇인가요? +New-ch-07,Food,Chinese (China),What food items do people typically pair with hard liquor in your country?,대한민국에서 독한 술을 마실 때 사람들은 보통 어떤 음식을 안주로 먹나요? +New-ch-08,Food,Chinese (China),What seasoning is indispensable in cooking in your country?,대한민국 요리에서 필수적인 양념은 무엇인가요? +New-ch-09,Food,Chinese (China),What food do people typically consume when the weather is cold in your country?,날씨가 추울 때 대한민국 사람들은 보통 어떤 음식을 먹나요? +New-ch-13,Food,Chinese (China),What is the most famous alcohol brand in your country?,대한민국에서 가장 유명한 주류 브랜드는 무엇인가요? +New-ch-14,Food,Chinese (China),What foods do people usually eat when they are sick in your country?,대한민국에서는 아플 때 보통 어떤 음식을 먹나요? +New-ch-15,Food,Chinese (China),What prepared/ready-to-eat food do people typically buy at supermarkets in your country?,대한민국에서 사람들이 보통 슈퍼마켓에서 구매하는 조리/즉석 식품은 무엇인가요? +New-ch-16,Sport,Chinese (China),What is the most famous sports-related movie in your country?,대한민국에서 가장 유명한 스포츠 관련 영화는 무엇인가요? +New-ch-17,Sport,Chinese (China),What extreme sport do people generally wish to try the most in your country?,대한민국 사람들이 일반적으로 가장 해보고 싶어하는 익스트림 스포츠는 무엇인가요? +New-ch-18,Sport,Chinese (China),Which track and field event is the most popular to watch during competitions in your country?,대한민국에서 가장 즐겨 보는 육상 경기 종목은 무엇인가요? +New-ch-19,Sport,Chinese (China),Which gymnastics event is the most popular to watch during competitions in your country?,대한민국에서 가장 즐겨 보는 체조 경기 종목은 무엇인가요? +New-ch-23,Sport,Chinese (China),Who is the most famous table tennis player in your country?,대한민국에서 가장 유명한 탁구 선수는 누구인가요? +New-ch-26,Sport,Chinese (China),"In the Winter Olympics, which event is the most popular to watch in your country?",대한민국에서 가장 즐겨 보는 동계 올림픽 경기는 무엇인가요? +New-ch-27,Sport,Chinese (China),Who is the most famous boxer in your country?,대한민국에서 가장 유명한 복서는 누구인가요? +New-ch-30,Sport,Chinese (China),Who is the most famous track and field athlete in your country?,대한민국에서 가장 유명한 육상 선수는 누구인가요? +New-ch-31,Work life,Chinese (China),What job do parents most hope their children will pursue in your country?,대한민국에서 부모님들은 자녀가 어떤 직업을 가지길 가장 희망하나요? +New-ch-32,Work life,Chinese (China),What office software do people typically use in the workplace in your country?,대한민국의 직장에서 사람들은 일반적으로 어떤 사무용 소프트웨어를 사용하나요? +New-ch-38,Work life,Chinese (China),Which cities or regions are known for their import and export activities in your country?,대한민국에서 수출입으로 유명한 도시나 지역은 어디인가요? +New-ch-39,Work life,Chinese (China),What platform is commonly used in the e-commerce industry in your country?,대한민국에서 전자상거래에 주로 사용되는 플랫폼은 무엇인가요? +New-ch-44,Work life,Chinese (China),"How long is the typical probation period for new employees before signing a formal contract in your country? (e.g., 1 month).",대한민국에서 정식 계약을 체결하기 전 새로운 직원들에게 일반적으로 적용되는 수습 기간은 얼마나 됩니까? (예: 1개월). +New-ch-45,Work life,Chinese (China),Which industries do young people typically choose to start businesses in your country?,대한민국에서 청년들은 창업을 할 때 주로 어떤 산업을 선택하나요? +New-ch-49,Family,Chinese (China),What is the most common way for family members to communicate remotely in your country?,대한민국에서 가족 구성원들끼리 원격으로 소통할 때 사용하는 가장 일반적인 방법은 무엇인가요? +New-ch-51,Family,Chinese (China),What form of accommodation is typically booked for family trips in your country?,대한민국에서 가족 여행 시 보통 어떤 형태의 숙박시설을 예약하나요? +New-ch-54,Family,Chinese (China),Which fruit is usually prepared the most for family dinners in your country?,대한민국의 가족 저녁식사에 가장 흔히 등장히는 과일은 무엇인가요? +New-ch-64,Education,Chinese (China),"How many hours of classes do university students typically have per week in your country? (Provide Arabic numerals (e.g., 1) only.)",대힌민국의 대학생들은 일주일에 보통 수업을 몇 시간 듣나요? (아라비아 숫자(예: 1)만 기재해 주세요.) +New-ch-66,Education,Chinese (China),"What is the typical tuition fee per semester for public high schools in your country? (Provide Arabic numerals (e.g., 1) only.)",대한민국 공립 고등학교의 한 학기당 평균 수업료는 얼마입니까? (아라비아 숫자(예: 1)만 기재해 주세요.) +New-ch-70,Education,Chinese (China),What compulsory courses do university students have in common in your country?,대한민국 대학생들이 공통적으로 듣는 필수 과목은 무엇인가요? +New-ch-71,Education,Chinese (China),"What is the average class size in high schools in your country? (Provide Arabic numerals (e.g., 1) only.)",대한민국 고등학교의 한 학급당 평균 학생 수는 몇 명인가요? (아라비아 숫자(예: 1)만 기재해 주세요.) +New-ch-72,Education,Chinese (China),Which major is considered most conducive to employment in your country?,대한민국에서 어떤 전공이 취업에 가장 유리하다고 여겨지나요? +New-ch-73,Education,Chinese (China),What type of clubs are most popular among university students in your country?,대한민국 대학생들 사이에서 어떤 동아리가 가장 인기 있나요? +New-ch-74,Education,Chinese (China),What types of accommodation do university students in your country typically live in?,대한민국 대학생들은 주로 어떤 유형의 거주지에 거주하나요? +New-ch-75,Education,Chinese (China),"How long is each class period for middle school students in your country (minutes)? (Provide Arabic numerals (e.g., 1) only.)",대한민국의 중학교 수업 한 교시는 총 몇 분인가요? (아라비아 숫자(예: 1)만 기재해 주세요.) +New-ch-78,Holidays/Celebration/Leisure,Chinese (China),What leisure activities do retired women typically like in your country?,대한민국에서 은퇴한 여성들이 일반적으로 즐겨하는 여가 활동은 무엇인가요? +New-ch-79,Holidays/Celebration/Leisure,Chinese (China),What leisure activities do retired men typically like in your country?,대한민국에서 은퇴한 남성들이 일반적으로 즐겨하는 여가 활동은 무엇인가요? +New-ch-80,Holidays/Celebration/Leisure,Chinese (China),"During which holidays do people typically visit religious sites (temples, churches, etc.) in your country?","대한민국에선 대체로 어느 명절에 종교적인 장소(사찰, 교회 등)를 방문하나요?" +New-ch-81,Holidays/Celebration/Leisure,Chinese (China),What are the typical housewarming gifts in your country?,대한민국의 일반적인 집들이 선물은 무엇인가요? +New-ch-82,Holidays/Celebration/Leisure,Chinese (China),"At what time do weddings typically start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","대한민국에서 결혼식은 보통 몇 시에 시작하나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)" +New-ch-83,Holidays/Celebration/Leisure,Chinese (China),Which city in your country hosts festivals the most?,대한민국의 어느 도시에서 축제가 가장 많이 열리나요? +New-ch-84,Holidays/Celebration/Leisure,Chinese (China),What color of clothing do people typically wear when attending weddings in your country?,대한민국 사람들은 결혼식에 참석할 때 보통 어떤 색깔의 옷을 입나요? +New-ch-85,Holidays/Celebration/Leisure,Chinese (China),What color of clothing do people typically wear when attending funerals in your country?,대한민국 사람들은 장례식에 참석할 때 보통 어떤 색깔의 옷을 입나요? +New-en-01,Food,English (UK),Which snack is eaten in the cinema in your country?,대한민국 영화관에선 어떤 간식을 먹나요? +New-en-02,Food,English (UK),What is the most popular chip/crisp flavour in your country?,대한민국에서 가장 인기 있는 감자칩 맛은 무엇인가요? +New-en-04,Food,English (UK),Who is a popular celebrity chef in your country?,대한민국에서 인기 있는 셀러브리티 셰프는 누구인가요? +New-en-05,Food,English (UK),Which food is a cost-effective and quick meal option in your country?,대한민국에서 가성비가 좋으며 빨리 먹을 수 있는 음식은 무엇인가요? +New-en-07,Food,English (UK),What are the most popular cooking shows in your country?,대한민국에서 가장 인기 있는 요리 프로그램은 무엇인가요? +New-en-08,Food,English (UK),What is the most popular chocolate brand in your country?,대한민국에서 가장 인기 있는 초콜릿 브랜드는 무엇인가요? +New-en-10,Food,English (UK),What is the most eaten cheese in your country?,대한민국에선 어떤 치즈를 가장 많이 먹나요? +New-en-11,Food,English (UK),What is the most disliked vegetable in your country?,대한민국에서 가장 인기 없는 채소는 무엇인가요? +New-en-12,Food,English (UK),What food is most commonly found in food courts in your country?,대한민국의 푸드코트에서 가장 흔히 볼 수 있는 음식은 무엇인가요? +New-en-17,Sport,English (UK),What are the most common cheering tools used by sports fans in your country?,대한민국 스포츠 팬들이 가장 많이 사용하는 응원 도구는 무엇인가요? +New-en-18,Sport,English (UK),What do fans bring with them when attending a live game in your country?,대한민국에서 팬들이 경기를 보러 갈 때 무엇을 가지고 가나요? +New-en-19,Sport,English (UK),What is the most well known sporting stadium in your country?,대한민국에서 가장 유명한 스포츠 경기장은 어디인가요? +New-en-23,Sport,English (UK),Who is the most famous Paralympian in your country?,대한민국에서 가장 유명한 패럴림픽 선수는 누구인가요? +New-en-26,Sport,English (UK),What is the best recognized sporting chant in your country?,대한민국에서 가장 잘 알려진 스포츠 응원 구호는 무엇인가요? +New-en-38,Work life,English (UK),Which industries are known for more flexible working hours in your country?,대한민국에서 근무 시간이 유연한 것으로 알려진 산업은 어떤 것들이 있나요? +New-en-41,Work life,English (UK),Who is the most well known and successful entrepreneur in your country?,대한민국에서 가장 유명하고 성공적인 기업가는 누구인가요? +New-en-47,Family,English (UK),What can typically be found in the back garden of houses in your country?,대한민국의 주택 뒷마당에서 흔히 발견되는 것은 무엇인가요? +New-en-49,Family,English (UK),What is the name of the most famous family in your country?,대한민국에서 가장 유명한 가문은 어디인가요? +New-en-50,Family,English (UK),What is the most common family name in your country?,대한민국에서 가장 흔한 성씨는 무엇인가요? +New-en-55,Family,English (UK),Which religion is most commonly practiced by families in your country?,대한민국의 가정에서 가장 흔히 믿는 종교는 무엇인가요? +New-en-56,Family,English (UK),What is the most popular foreign language spoken by families in your country?,대한민국의 가정에서 어떤 외국어가 가장 많이 사용되나요? +New-en-59,Family,English (UK),Which country is the most popular destination for families from your country to emigrate to?,대한민국에서 가족 단위로 이민 가기에 가장 인기 있는 나라는 어디인가요? +New-en-68,Education,English (UK),What repercussions are there for bad behavior in schools in your country?,대한민국 학교에서 부적절한 행동을 할 경우 어떤 조치가 취해지나요? +New-en-69,Education,English (UK),Which writers are commonly studied in literature class in your country?,대한민국의 문학 수업에서 주로 배우는 작가는 누구인가요? +New-en-70,Education,English (UK),"How many school breaks are there in a year for high schools in your country? (Provide Arabic numerals (e.g., 1) only.)",대한민국의 고등학교에는 1년에 방학이 총 몇 번 있나요? (아라비아 숫자(예: 1)만 기재해 주세요.) +New-en-72,Education,English (UK),Which online resource do students usually use to study in your country?,대한민국 학생들이 공부할 때 주로 사용하는 온라인 웹사이트는 무엇인가요? +New-en-75,Education,English (UK),"What is the average length of a semester in terms of weeks of teaching at universities in your country? (Provide Arabic numerals (e.g., 1) only.)",대한민국 대학교는 한 학기에 몇 주 동안 수업하나요? (아라비아 숫자(예: 1)만 기재해 주세요.) +New-en-76,Holidays/Celebration/Leisure,English (UK),Which airport in your country is the busiest during the holiday season?,대한민국 명절 시즌에 가장 붐비는 공항은 어디인가요? +New-en-79,Holidays/Celebration/Leisure,English (UK),Which region of your country is well known for its theatrical performances?,대한민국 어느 지역이 연극으로 잘 알려져 있습니까? +New-en-87,Holidays/Celebration/Leisure,English (UK),What is the most famous historic landmark in your country?,대한민국에서 어떤 역사적 명소가 가장 유명한가요? +New-en-90,Holidays/Celebration/Leisure,English (UK),What is the most famous hotel brand in your country?,대한민국에서 어떤 호텔 브랜드가 가장 유명한가요? +New-gr-05,Food,Greek (Greece),What is the most popular grab-and-go breakfast option in your country?,대한민국에서 아침에 간편하게 포장해서 먹을 수 있는 것 중 가장 인기 있는 것은? +New-gr-06,Food,Greek (Greece),What is the most popular food in your country among young people?,대한민국의 젊은 층에게 가장 인기 있는 음식은 무엇인가요? +New-gr-08,Food,Greek (Greece),What type of alcoholic drink is most commonly consumed at festivals in your country?,대한민국의 축제에서 가장 흔히 마시는 술은 무엇인가요? +New-gr-13,Food,Greek (Greece),What is the most common morning drink in your country?,대한민국에서 아침에 가장 흔히 마시는 음료는 무엇인가요? +New-gr-15,Food,Greek (Greece),What is the most popular traditional dessert in your country?,대한민국에서 가장 인기 있는 전통 디저트는 무엇입니까? +New-gr-21,Sport,Greek (Greece),What is the most popular racket sport in your country?,대한민국에서 가장 인기 있는 라켓 스포츠는 무엇입니까? +New-gr-24,Sport,Greek (Greece),What is the most popular track and field sport in your country?,대한민국에서 가장 인기 있는 육상 경기 종목은 무엇입니까? +New-gr-29,Sport,Greek (Greece),Which international sporting event is the most popular in your country?,대한민국에서 가장 인기 있는 국제 스포츠 대회는 무엇인가요? +New-gr-47,Work life,Greek (Greece),"How long (in minutes) are typical work breaks in your country, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)",대한민국의 직장에서 점심과 저녁 시간을 제외한 일반적인 휴식 시간은 몇 분인가요? (아라비아 숫자(예: 1)만 기재해 주세요.) +New-gr-58,Work life,Greek (Greece),Which job is considered underpaid in your country?,대한민국에서는 어떤 직업이 하는 일에 비해 제대로 된 보수를 받지 못한다고 여겨지나요? +New-gr-76,Holidays/Celebration/Leisure,Greek (Greece),What is the most common food served during Easter in your country?,대한민국에서 부활절에 가장 흔히 제공되는 음식은 무엇인가요? +New-gr-82,Holidays/Celebration/Leisure,Greek (Greece),What is the most popular music genre among the elderly population in your country?,대한민국의 노년층에게 가장 인기 있는 음악 장르는 무엇인가요? +New-gr-88,Holidays/Celebration/Leisure,Greek (Greece),What drink is usually offered at funerals in your country?,대한민국의 장례식에서 흔히 제공되는 음료나 술은 무엇인가요? +New-gr-89,Holidays/Celebration/Leisure,Greek (Greece),What drink is usually offered at weddings in your country?,대한민국의 결혼식에서 흔히 제공되는 음료나 술은 무엇인가요? +New-ha-07,Food,Hausa (Northern Nigeria),What food originated from your country and can be found all over the world?,전 세계에서 찾을 수 있는 대한민국의 음식은 무엇이 있나요? +New-ha-08,Food,Hausa (Northern Nigeria),What food is typically disliked by children but enjoyed by the elderly in your country?,대한민국에서 어린이들이 대체로 싫어하지만 노인들이 즐기는 음식은 무엇이 있나요? +New-ha-09,Food,Hausa (Northern Nigeria),What cooking utensil is most commonly used in your country?,대한민국에서 가장 흔히 사용되는 조리 도구는 무엇입니까? +New-ha-13,Food,Hausa (Northern Nigeria),Which is the most popular vegetable in your country?,대한민국에서 가장 인기 있는 채소는 무엇입니까? +New-ha-19,Sport,Hausa (Northern Nigeria),Which animal is used for sports in your country?,대한민국에서 스포츠에 사용되는 동물은 무엇인가요? +New-ha-66,Family,Hausa (Northern Nigeria),What is the most popular wedding venue in your country?,대한민국에서 가장 인기 있는 결혼식 장소는 어디인가요? +New-in-01,Food,Indonesian (Indonesia),Which coffee shop brand is the most popular in your country?,대한민국에서 가장 인기 있는 커피전문점 브랜드는 무엇입니까? +New-in-03,Food,Indonesian (Indonesia),What type of food from your country is typically served in restaurants overseas?,해외 식당에서 주로 판매되는 대한민국 음식은 무엇인가요? +New-in-33,Work life,Indonesian (Indonesia),What region in your country is usually associated with mining?,대한민국에서 광업과 관련된 지역은 보통 어디인가요? +New-in-34,Work life,Indonesian (Indonesia),What region in your country is usually associated with oil?,대한민국에서 석유와 관련된 지역은 보통 어디인가요? +New-in-62,Education,Indonesian (Indonesia),What university in your country is popular because of its engineering major? (Provide the official name.),대한민국에서 어느 대학이 공학 전공으로 인기 있나요? (공식 명칭을 제공해 주세요.) +New-in-63,Education,Indonesian (Indonesia),What university in your country is popular because of its school of medicine? (Provide the official name.),대한민국에서 어느 대학이 의학 전공으로 인기 있나요? (공식 명칭을 제공해 주세요.) +New-in-78,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most popular payment method in your country?,대한민국에서 가장 흔히 쓰이는 결제 방법은 무엇인가요? +New-in-80,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most famous theme park in your country?,대한민국에서 어느 놀이공원이 가장 유명한가요? +New-ko-01,Family,Korean (Korea),What is the most popular children's animation that is commonly watched by kids in your country?,대한민국의 어린이들이 가장 많이 보는 인기 어린이 애니메이션은 무엇인가요? +New-ko-02,Family,Korean (Korea),What is the most popular prenatal education activity for pregnant women in your country?,대한민국에서 임산부들이 가장 많이 하는 태교 활동은 무엇인가요? +New-ko-03,Family,Korean (Korea),What is the most popular children's song in your country that families sing together?,대한민국에서 가족 모두가 함께 부를 수 있는 가장 인기 있는 동요는 무엇인가요? +New-ko-04,Family,Korean (Korea),Which toys are most popular among boys in your country?,대한민국 남자아이들 사이에서 가장 인기 있는 장난감은 무엇인가요? +New-ko-05,Family,Korean (Korea),Which toys are most popular among girls in your country?,대한민국 여자아이들 사이에서 가장 인기 있는 장난감은 무엇인가요? +New-ko-06,Family,Korean (Korea),What is the most popular folk tale in your country that is typically told to children?,대한민국에서 아이들에게 가장 많이 들려주는 유명한 전래동화는 무엇인가요? +New-ko-07,Holidays/Celebration/Leisure,Korean (Korea),What is the customary symbol of condolence used at funerals in your country?,대한민국 장례식에서 애도를 상징하는 것은 무엇인가요? +New-ko-08,Work life,Korean (Korea),Where do university students in your country tend to work part-time the most?,대한민국 대학생들은 주로 어디에서 아르바이트를 가장 많이 하나요? +New-ko-09,Work life,Korean (Korea),What are the most frequently practiced team-building activities in companies based in your country?,대한민국 회사에서 가장 많이 하는 팀 빌딩 활동은 무엇인가요? +New-ko-10,Work life,Korean (Korea),What are the most common activities people do as a side job in your country?,대한민국에서 사람들이 가장 많이 하는 부업은 무엇인가요? +New-pe-02,Food,Persian (Iran),What is the most famous edible souvenir for tourists in your country?,대한민국에서 관광객들에게 가장 유명한 먹거리 기념품은 무엇인가요? +New-pe-06,Food,Persian (Iran),What is the most popular stew in your country?,대한민국에서 가장 인기 있는 찌개 종류는 무엇인가요? +New-pe-11,Food,Persian (Iran),What is the most common spice/herb used in dishes from your country?,대한민국 요리에서 가장 많이 사용되는 향신료/허브는 무엇인가요? +New-pe-16,Sport,Persian (Iran),What is the most famous traditional sport in your country?,대한민국에서 가장 유명한 전통 스포츠는 무엇인가요? +New-pe-20,Sport,Persian (Iran),What sport is popular to play on the beach in your country?,대한민국에서 해변에서 할 수 있는 스포츠 중 가장 인기 있는 것은 무엇인가요? +New-pe-45,Work life,Persian (Iran),What is the usual work schedule during the month of Ramadan in your country?,일반적으로 라마단 기간 동안 대한민국에서의 근무 시간은 어떻게 되나요? +New-pe-47,Family,Persian (Iran),"When is Student's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)",대한민국에서의 학생의 날은 언제인가요? (MM/DD 형식(예: 12/31)으로 제공하세요.) +New-pe-49,Family,Persian (Iran),Where do families gather to pray together in your country?,대한민국에서 가족들이 함께 모여 기도하는 곳은 어디인가요? +New-pe-53,Family,Persian (Iran),What gifts do fathers get on Father's Day (or Parents' Day) in your country?,대한민국에서 아버지의 날(혹은 어버이날)에 아버지들은 어떤 선물을 받나요? +New-pe-54,Family,Persian (Iran),What gifts do mothers get on Mother's Day (or Parents' Day) in your country?,대한민국에서 어머니의 날(혹은 어버이날)에 어머니들은 어떤 선물을 받나요? +New-pe-59,Family,Persian (Iran),"How many generations typically live together in a household in your country? (Provide Arabic numerals (e.g., 12) only.)",일반적으로 대한민국 가정에는 몇 세대가 함께 거주하고 있나요? (아라비아 숫자(예: 12)만 기재해 주세요.) +New-pe-65,Education,Persian (Iran),"How many subjects are taught in middle schools in your country? (Provide Arabic numerals (e.g., 12) only.)",대한민국의 중학교에서는 몇 개의 과목을 배우나요? (아라비아 숫자(예: 12)만 기재해주세요.) +New-pe-66,Education,Persian (Iran),What is the most popular after school curricular in elementary schools in your country?,대한민국의 초등학교에서 가장 인기 있는 방과 후 활동은 무엇인가요? +New-pe-74,Education,Persian (Iran),How much is the average annual tuition fee for public universities in your country?,대한민국 공립대학의 평균 연간 등록금은 얼마입니까? +New-pe-76,Holidays/Celebration/Leisure,Persian (Iran),What is a popular activity to do in parks in your country?,대한민국의 공원에서 할 수 있는 활동 중 인기 있는 것은 무엇인가요? +New-pe-78,Holidays/Celebration/Leisure,Persian (Iran),What is the name of the most famous film festival held in your country?,대한민국에서 개최되는 가장 유명한 영화제의 이름은 무엇인가요? +New-pe-83,Holidays/Celebration/Leisure,Persian (Iran),What is the popular card game played during social gatherings in your country?,대한민국에서 사람들이 함께 모여 주로 즐기는 카드 게임 중 인기 있는 것은 무엇인가요? +New-pe-85,Holidays/Celebration/Leisure,Persian (Iran),Where is the most popular tourist destination abroad for people from your country?,대한민국 사람들에게 가장 인기 있는 해외 관광지는 어디인가요? +New-pe-86,Holidays/Celebration/Leisure,Persian (Iran),What is the name of the most famous tower in your country?,대한민국에서 가장 유명한 타워의 이름은 무엇인가요? +New-spme-01,Food,Spanish (Mexico),What edible insect is eaten most often in your country?,대한민국에서 가장 많이 먹는 식용 곤충은 무엇인가요? +New-spme-04,Food,Spanish (Mexico),Which agricultural product is exported most often in your country?,대한민국에서 가장 많이 수출되는 농산물은 무엇입니까? +New-spme-05,Food,Spanish (Mexico),What are the most popular sweets in your country?,"대한민국에서 가장 인기 있는 달콤한 간식거리(사탕, 초콜릿 등)은 무엇인가요?" +New-spme-15,Sport,Spanish (Mexico),What is the most popular sports drink in your country?,대한민국에서 가장 인기 있는 스포츠 음료는 무엇입니까? +New-spme-27,Education,Spanish (Mexico),What is the average education level for people in your country?,대한민국 사람들의 평균 학력은 무엇입니까? +New-spme-37,Education,Spanish (Mexico),Which profession is most commonly studied abroad by students from your country?,대한민국 학생들이 해외에서 가장 많이 공부하는 분야는 무엇입니까? +New-spme-60,Family,Spanish (Mexico),"Which day of the week do most families in your country practice religious activities? (e.g. Monday, Tuesday)","대한민국의 일반적인 가정이 종교 활동을 하는 요일은 언제인가요? (예: 월요일, 화요일)" +New-spme-65,Family,Spanish (Mexico),What is the most popular way to celebrate Independence Day in your country?,대한민국의 광복절을 기념하기 위해 사람들이 가장 많이 하는 행동은 무엇인가요? +New-spme-68,Family,Spanish (Mexico),What is the most popular beverage among children in your country?,대한민국 어린이들 사이에서 가장 인기 있는 음료는 무엇입니까? +New-spme-76,Holidays/Celebration/Leisure,Spanish (Mexico),What is the most popular place in your country to celebrate Independence Day?,대한민국의 광복절을 축하하기 위해 사람들이 많이 찾는 장소는 어디인가요? +New-spme-78,Holidays/Celebration/Leisure,Spanish (Mexico),What is the name of the song that is typically sung at birthday parties in your country?,대한민국의 생일 파티에서 일반적으로 부르는 노래의 제목은 무엇인가요? +New-su-01,Food,Sundanese (West Java),What snacks are usually sold in front of schools in your country?,대한민국의 학교 앞에서는 주로 어떤 간식들을 파나요? +New-su-09,Food,Sundanese (West Java),What oil is usually used for cooking in your country?,대한민국에서 요리할 때 보통 어떤 기름을 사용하나요? +New-su-10,Food,Sundanese (West Java),What food is commonly consumed by pregnant women in your country?,대한민국에서 임산부들이 주로 먹는 음식은 무엇인가요? +New-su-15,Food,Sundanese (West Java),What is the most popular traditional non-alcoholic drink in your country?,대한민국에서 가장 인기 있는 전통음료는 무엇입니까? +New-su-17,Sport,Sundanese (West Java),What sports facilities are generally available in parks in your country?,대한민국의 공원에는 일반적으로 어떤 스포츠 시설이 있나요? +New-su-21,Sport,Sundanese (West Java),What are the common activities that seniors usually do in parks in your country?,대한민국의 공원에서 노인들이 하는 일반적인 활동은 무엇인가요? +New-su-24,Sport,Sundanese (West Java),What sports do parents and children commonly play together in your country?,대한민국에서 부모와 자녀가 함께 자주 하는 스포츠는 무엇인가요? +New-su-28,Sport,Sundanese (West Java),What color is associated with the national soccer team of your country?,대한민국 국가대표 축구팀과 연관된 색깔은 무엇인가요? +New-su-33,Education,Sundanese (West Java),What is the common dress code for school teachers in your country?,대한민국 학교 선생님들의 일반적인 복장 규정은 무엇인가요? +New-su-34,Education,Sundanese (West Java),What is the most popular extracurricular activity related to music in schools in your country?,대한민국의 학교에서 가장 인기 있는 음악 관련 방과 후 활동은 무엇입니까? +New-su-42,Education,Sundanese (West Java),What religion is mainly taught in schools in your country?,대한민국의 학교에서 주로 가르치는 종교는 무엇입니까? +New-su-45,Education,Sundanese (West Java),"What date is Education Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)",대한민국의 교육의 날은 언제인가요? (MM/DD 형식(예: 12/31)으로 제공하세요.) +New-su-50,Work life,Sundanese (West Java),What is the main occupation of people in mountainous areas in your country?,대한민국의 산간 지역 사람들의 주요 직업은 무엇입니까? +New-su-51,Work life,Sundanese (West Java),What is the main occupation of people in coastal areas in your country?,대한민국의 연안 지역 사람들의 주요 직업은 무엇입니까? +New-su-57,Work life,Sundanese (West Java),What is the most common livestock raised in your country?,대한민국에서 가장 많이 기르는 가축은 무엇입니까? +New-su-58,Work life,Sundanese (West Java),What animals are commonly used for agriculture in your country?,대한민국에서 농업에 주로 사용되는 동물은 무엇인가요? +New-su-59,Work life,Sundanese (West Java),What do farmers in your country typically wear to protect themselves from the heat whilst farming?,대한민국의 농부들이 농사를 지을 때 더위로부터 자신을 보호하기 위해 입는 것은 무엇입니까? +New-su-60,Work life,Sundanese (West Java),What do farmers in your country usually eat for lunch?,대한민국의 농부들은 보통 점심으로 무엇을 먹나요? +New-su-71,Family,Sundanese (West Java),What gifts do parents generally give to their children for their birthdays in your country?,대한민국의 부모님들은 일반적으로 자녀들의 생일에 어떤 선물을 주나요? +New-su-75,Family,Sundanese (West Java),What type of vehicle do most families in your country generally own?,대한민국의 일반적인 가정은 주로 어떤 교통수단을 소유하고 있나요? +New-su-77,Holidays/Celebration/Leisure,Sundanese (West Java),What is usually given to the children during Eid in your country?,대한민국에서는 이드 축제 때 어린이들에게 주로 무엇을 주나요? +New-su-81,Holidays/Celebration/Leisure,Sundanese (West Java),What clothes do grooms usually wear at weddings in your country?,대한민국에서 신랑들은 결혼식에 보통 어떤 옷을 입나요? +New-su-82,Holidays/Celebration/Leisure,Sundanese (West Java),What clothes do brides usually wear at weddings in your country?,대한민국에서 신부들은 결혼식에 보통 어떤 옷을 입나요? +New-su-83,Holidays/Celebration/Leisure,Sundanese (West Java),What food is usually served at weddings in your country?,대한민국의 결혼식에서는 보통 어떤 음식이 제공되나요? +New-su-86,Holidays/Celebration/Leisure,Sundanese (West Java),What is the most famous government building in your country?,대한민국에서 가장 유명한 정부 건물은 무엇입니까? +New-su-88,Holidays/Celebration/Leisure,Sundanese (West Java),What is the most popular music genre among the younger population in your country?,대한민국의 젊은 층에게 가장 인기 있는 음악 장르는 무엇인가요? +Ni-en-02,Education,English (UK),"What time do middle school students in your country typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)","대한민국의 중학생들은 주로 몇 시에 하교하나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)" +Ni-en-03,Education,English (UK),"At what age do people in your country typically go to university? (Provide Arabic numerals (e.g., 12) only.)",대한민국 사람들은 보통 몇 살에 대학교에 가나요? (아라비아 숫자(예: 12)만 기재해주세요. 만 나이가 아닌 한국식 나이(세는 나이)를 기준으로 답변해주세요.) +Ni-en-06,Education,English (UK),"From what age do people need to attend compulsory education in your country? (Provide Arabic numerals (e.g., 12) only.)",대한민국에서 의무교육을 받아야 하는 나이는 몇 살부터인가요? (아라비아 숫자(예: 12)만 기재해 주세요. 만 나이가 아닌 한국식 나이(세는 나이)를 기준으로 답변해주세요.) +Ni-en-09,Education,English (UK),How many days a week do children attend school in your country? (Provide Arabic numerals (0~7) only.),대한민국에서 아이들은 일주일에 며칠 동안 학교에 가나요? (아라비아 숫자(0~7)만 기재해 주세요.) +Ni-en-11,Education,English (UK),"In your country, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)",대한민국에서 석사 학위를 취득하는 데 보통 몇 년이 걸리나요? (아라비아 숫자(예: 12)만 기재해 주세요.) +Ni-en-12,Education,English (UK),What is the top university in your country? (Provide the official name.),대한민국에서 가장 좋은 대학교는 어디인가요? (공식 명칭을 제공해 주세요.) +Ni-en-13,Education,English (UK),"At what age do most people in your country graduate from university? (Provide Arabic numerals (e.g., 12) only.)",대부분의 대한민국 사람들은 보통 몇 살에 대학교(학부)를 졸업하나요? (아라비아 숫자(예: 12)만 기재해주세요. 만 나이가 아닌 한국식 나이(세는 나이)를 기준으로 답변해주세요.) +Ni-en-15,Education,English (UK),"At what age do children in your country generally start middle school? (Provide Arabic numerals (e.g., 12) only.)",대한민국의 아이들은 보통 몇 살에 중학교에 입학하나요? (아라비아 숫자(예: 12)만 기재해 주세요. 만 나이가 아닌 한국식 나이(세는 나이)를 기준으로 답변해주세요.) +Ni-en-17,Work life,English (UK),"How many hours a week does a full-time worker in your country typically work? (Provide Arabic numerals (e.g., 12) only.)",대한민국의 전일제 근로자는 일주일에 보통 몇 시간을 일합니까? (아라비아 숫자(예: 12)만 기재해 주세요.) +Ni-en-19,Work life,English (UK),How many days a week does a full-time worker work in your country? (Provide Arabic numerals (0~7) only.),대한민국에서 전일제 근로자는 일주일에 며칠을 일합니까? (아라비아 숫자 (0~7)만 기재하세요.) +Ni-en-20,Work life,English (UK),"At what age do most people start working in your country? (Provide Arabic numerals (e.g., 12) only.)",대한민국에서 대부분의 사람들은 몇 살에 일을 시작하나요? (아라비아 숫자(예: 12)만 기재해 주세요. 만 나이가 아닌 한국식 나이(세는 나이)를 기준으로 답변해주세요.) +Ni-en-21,Work life,English (UK),"From what age is an individual allowed to work in your country? (Provide Arabic numerals (e.g., 12) only.)",대한민국에서는 몇 살부터 일을 할 수 있나요? (만 나이를 기준으로 답변해주세요. 아라비아 숫자(예: 12)만 기재해 주세요.) +Ni-en-31,Holidays/Celebration/Leisure,English (UK),What do people in your country traditionally eat on Christmas Day?,대한민국 사람들은 크리스마스 날에 전통적으로 무엇을 먹나요? +Ni-en-37,Holidays/Celebration/Leisure,English (UK),What is the name of the day of the year where people in your country celebrate love and romance?,대한민국에서 사랑과 로맨스에 관련된 기념일의 이름은 무엇인가요? +Ni-en-40,Holidays/Celebration/Leisure,English (UK),What is the most popular Christmas song in your country?,대한민국에서 가장 인기 있는 크리스마스 노래는 무엇인가요? +Nu-in-04,Education,Indonesian (Indonesia),"How many semesters are there each academic year at high schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","대한민국 고등학교에는 1년에 몇 학기가 있나요? (아라비아 숫자(예: 7, 8)만 기재하십시오.)" +Nu-in-05,Education,Indonesian (Indonesia),In which month does the new school year typically begin in your country? (Provide Arabic numerals (1~12) only.),대한민국에서 새 학년은 보통 몇 월에 시작하나요? (아라비아 숫자(1~12)만 기재해 주세요.) +Nu-in-06,Education,Indonesian (Indonesia),"When is National Teacher's Day commemorated in your country? (Provide in MM/DD format (e.g., 12/31).)",대한민국의 스승의 날은 언제인가요? (MM/DD 형식(예: 12/31)으로 제공하세요.) +Nu-in-11,Education,Indonesian (Indonesia),"At what time does elementary school start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","대한민국의 초등학교는 주로 몇 시에 시작하나요? (HH:MM 형식(예: 18:00, 09:00)으로 제공해주세요.)" +Nu-in-20,Family,Indonesian (Indonesia),"When is Children's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)",대한민국의 어린이날은 언제인가요? (MM/DD 형식(예: 12/31)으로 제공하세요.) +Nu-in-40,Work life,Indonesian (Indonesia),Which city is the main destination for job seekers in your country?,대한민국에서 사람들은 취업을 위해 주로 어느 도시로 가나요? +Sa-en-1,Food,English (UK),What is your country's most popular fast food chain?,대한민국에서 가장 인기 있는 패스트푸드 체인점은 무엇입니까? +Sa-en-13,Food,English (UK),What is the food that is most divisive (either love or hate) in your country?,대한민국에서 가장 호불호가 갈리는 음식은 무엇인가요? +Sa-en-16,Sport,English (UK),What is the most popular soccer team among the people from your country?,대한민국 사람들 사이에서 가장 인기 있는 축구 팀은 어디인가요? +Sa-en-22,Sport,English (UK),What is the most famous university in your country known for its sports team?,스포츠팀으로 가장 유명한 대한민국의 대학은 어디인가요? +Sa-en-31,Family,English (UK),What is your country's most popular family pet?,대한민국에서 가장 인기 있는 반려동물은 무엇인가요? +Sa-en-32,Family,English (UK),What is the most popular family TV show in your country?,대한민국의 가정에서 가장 인기 있는 TV 프로그램은 무엇인가요? +Sa-en-37,Family,English (UK),What is the most popular family boardgame in your country?,대한민국의 가정에서 가장 인기 있는 보드게임은 무엇인가요? +Sa-en-6,Food,English (UK),What is the most popular takeaway food in your country?,대한민국에서 가장 인기 있는 테이크아웃 음식은 무엇입니까? +Sa-en-7,Food,English (UK),What are popular snacks in your country?,대한민국에서 인기 있는 간식은 무엇인가요? +Sa-en-9,Food,English (UK),What do people from your country eat at the beach?,대한민국 사람들은 해변에서 무엇을 먹나요? +Ta-pe-10,Family,Persian (Iran),"At what age do men usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)",대한민국의 남성들은 보통 몇 살에 결혼하나요? (아라비아 숫자(예: 20)만 기재해주세요. 만 나이가 아닌 한국식 나이(세는 나이)를 기준으로 답변해주세요.) +Ta-pe-11,Family,Persian (Iran),"At what age do women usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)",대한민국의 여성들은 보통 몇 살에 결혼하나요? (아라비아 숫자(예: 20)만 기재해주세요. 만 나이가 아닌 한국식 나이(세는 나이)를 기준으로 답변해주세요.) +Ta-pe-13,Family,Persian (Iran),"In your parents' generation, what was the average number of members in their family in your country? (Provide Arabic numerals (e.g., 20) only.)","당신의 부모님 세대에서, 대한민국의 평균적인 가족 구성원의 수는 얼마였나요? (아라비아 숫자(예: 20)만 제공해 주세요.)" +Ta-pe-17,Sport,Persian (Iran),"In the Olympic Games, which sport is the most popular in your country?",올림픽 종목 중에서 대한민국에서 가장 인기 있는 스포츠는 무엇인가요? +Ta-pe-21,Sport,Persian (Iran),Where do children usually play soccer in your country?,대한민국에서 아이들은 보통 어디에서 축구를 하나요? +Ta-pe-22,Sport,Persian (Iran),Which daily exercise is popular among women in your country?,대한민국 여성들이 일상적으로 많이 하는 운동은 무엇인가요? +Ta-pe-23,Sport,Persian (Iran),Which daily exercise is popular among men in your country?,대한민국 남성들이 일상적으로 많이 하는 운동은 무엇인가요? +Ta-pe-25,Sport,Persian (Iran),"What is the most famous rivalry in a national sports league in your country? (e.g., ___ vs ___)",대한민국 국내 스포츠 리그에서 가장 유명한 라이벌 관계는 무엇인가요? (예: ___ 대 ___) +Ta-pe-29,Sport,Persian (Iran),Which professional sport is the highest paying in your country?,대한민국에서 가장 수입이 높은 프로 스포츠는 무엇인가요? +Ta-pe-30,Sport,Persian (Iran),What is/was the most popular sports-related TV program in your country?,대한민국에서 가장 인기 있는/있었던 스포츠 관련 TV 프로그램은 무엇인가요? +Ta-pe-32,Holidays/Celebration/Leisure,Persian (Iran),What day of the year is usually dedicated to fireworks in your country?,대한민국에서 보통 어떤 날에 불꽃놀이를 하나요? +Ta-pe-37,Holidays/Celebration/Leisure,Persian (Iran),What is the common symbol of New Year's Eve that is usually found in your country?,대한민국에서 새해 전날(12/31) 하면 떠오르는 상징물은 무엇인가요? +Ta-pe-42,Holidays/Celebration/Leisure,Persian (Iran),What food do people from your country usually eat on New Year's Eve?,대한민국 사람들은 보통 새해 전날에 무슨 음식을 먹나요? +Ta-pe-45,Holidays/Celebration/Leisure,Persian (Iran),What is usually eaten during the celebration of the longest night of the year in your country?,대한민국에서는 동지에 주로 어떤 음식을 먹나요? +Th-en-01,Sport,English (US),What is the most popular summer sport in your country?,대한민국에서 가장 인기 있는 여름 스포츠는 무엇인가요? +Th-en-03,Sport,English (US),What is the most popular professional sports league in your country?,대한민국에서 가장 인기 있는 프로 스포츠 리그는 무엇인가요? +Th-en-05,Sport,English (US),What is the most popular women's sports team in your country?,대한민국에서 가장 인기 있는 여자 스포츠 팀은 어디인가요? +Th-en-09,Sport,English (US),What is the most popular tournament in your country?,대한민국에서 가장 인기 있는 스포츠 토너먼트는 무엇인가요? +Th-en-11,Sport,English (US),Who is the most popular sportperson in your country?,대한민국에서 가장 인기 있는 스포츠 선수는 누구인가요? +Th-en-12,Sport,English (US),In which sport has your country been most successful in international competitions?,대한민국이 국제 대회에서 가장 성공적인 결과를 내는 스포츠는 무엇인가요? +Th-en-15,Sport,English (US),What is the most popular winter sport in your country?,대한민국에서 가장 인기 있는 겨울 스포츠는 무엇인가요? +Th-en-19,Work life,English (US),What is a city or region in your country known for manufacturing industry?,제조업으로 유명한 대한민국의 도시나 지역은 어디인가요? +Th-en-21,Work life,English (US),What is regarded as the most important perk typically offered to employees in your country?,대한민국에서 일반적으로 직원들에게 제공되는 혜택 중 가장 중요하게 여겨지는 것은 무엇인가요? +Th-en-22,Work life,English (US),What was the most catastrophic economic period for your country?,대한민국 역사상 최악의 경제 위기는 언제였나요? +Th-en-24,Work life,English (US),What region in your country is a major hub for tech workers and start ups?,대한민국에서 개발자와 스타트업이 많은 지역은 어디입니까? +Th-en-27,Work life,English (US),What is the most important industry in your country?,대한민국에서 가장 중요한 산업은 무엇입니까? +Th-en-35,Family,English (US),"Which one of the daily meals is commonly shared with family members in your country? (e.g., breakfast, lunch, dinner)","대한민국에서 가족 구성원들과 함께하는 일상적인 식사는 주로 언제 이뤄지나요? (예: 아침, 점심, 저녁)" +Th-en-36,Family,English (US),What is a popular family activity with a child to do on weekends in your country?,대한민국에서 주말에 아이와 함께하는 인기 있는 가족 활동은 무엇인가요? +Th-en-37,Family,English (US),"At what age do children typically become independent from their parents in your country? (Provide Arabic numerals (e.g., 12) only.)",대한민국에서 사람들이 보통 부모로부터 독립하는 나이는 몇 살인가요? (아라비아 숫자(예: 12)만 기재해주세요. 만 나이가 아닌 한국식 나이(세는 나이)를 기준으로 답변해주세요.) +Th-en-38,Family,English (US),What is the most important family holiday in your country?,대한민국에서 가장 중요한 가족 공휴일은 무엇인가요? +Th-en-39,Family,English (US),What is a popular family game in your country?,대한민국에서 가족과 함께 하는 게임 중 가장 인기 있는 게임은 무엇인가요? +Th-en-41,Family,English (US),"What is the average age for couples to have their first child in your country? (Provide Arabic numerals (e.g., 20) only.)",대한민국에서 부부가 첫 아이를 갖는 평균 연령은 몇 살인가요? (아라비아 숫자(예: 20)만 기재해 주세요. 만 나이가 아닌 한국식 나이(세는 나이)를 기준으로 답변해주세요.) +Th-en-43,Family,English (US),"How many cars are owned by a typical family in your country? (Provide Arabic numerals (e.g., 12) only.)",대한민국의 전형적인 가정이 소유한 자동차는 몇 대인가요? (아라비아 숫자(예: 12)만 기재해주세요.) +Th-en-44,Family,English (US),What is your country's most popular food for family meals on weekends?,대한민국에서 주말 가족 식사로 주로 먹는 음식은 무엇인가요? +Th-en-45,Family,English (US),What is the most popular weekday evening family activity in your country?,대한민국에서 평일 저녁에 가족끼리 주로 무엇을 하나요? +Th-en-48,Education,English (US),What is the highest grade given to top-achieving high school students on assignments and exams in your country?,대한민국 고등학교에서 과제와 시험의 성적이 우수한 학생들에게 주어지는 최고 등급은 무엇인가요? +Th-en-49,Education,English (US),What is considered the most important exam for high school students in your country?,대한민국의 고등학생들에게 어떤 시험이 가장 중요하게 여겨지나요? +Th-en-51,Education,English (US),Which subject is considered the most important for students in your country?,대한민국에서 학생들에게 어떤 과목이 가장 중요하게 여겨지나요? +Th-en-53,Education,English (US),What is the most popular extracurricular social event at schools in your country?,대한민국의 학교에서 가장 인기 있는 학교 행사는 무엇인가요? +Th-en-58,Education,English (US),What is the most advanced math subject learned before university in your country?,대한민국에서 대학교에 진학하기 전 학생들이 배우는 수학 과목 중 가장 어려운 과목은 무엇인가요? +Tmp-ar-01,Education,Arabic (Algeria),Where do university students in your country usually go to study for their final exams?,대한민국의 대학생들은 보통 기말고사 공부를 어디에서 하나요? +Tmp-ar-02,Education,Arabic (Algeria),What is a common public transport that people use to go to university in your country?,대한민국에서 대학교에 통학할 때 사람들이 자주 이용하는 대중교통 수단은 무엇인가요? +Tmp-ar-04,Education,Arabic (Algeria),What do elementary students in your country usually do after school?,대한민국의 초등학생들은 방과 후에 보통 무엇을 하나요? diff --git a/data/questions/Spain_questions.csv b/data/questions/Spain_questions.csv new file mode 100644 index 0000000000000000000000000000000000000000..825d37bc88316a1e99898541dbacdf32b91af197 --- /dev/null +++ b/data/questions/Spain_questions.csv @@ -0,0 +1,501 @@ +ID,Topic,Source,Question,Translation +Al-en-01,Food,English (US),What is a common snack for preschool kids in your country?,¿Cuál es un tentempié común para niños de preescolar en España? +Al-en-02,Food,English (US),What is a popular food to go with beer in your country?,¿Cuál es una comida popular para acompañar la cerveza en España? +Al-en-04,Food,English (US),What is the most popular fruit in your country?,¿Cuál es la fruta más popular en España? +Al-en-06,Food,English (US),What is a common school cafeteria food in your country?,¿Cuál es una comida común en las cafeterías escolares de España? +Al-en-08,Food,English (US),What are the most commonly eaten snacks at shopping malls in your country?,¿Cuáles son los aperitivos más consumidos en los centros comerciales de España? +Al-en-09,Food,English (US),What is a popular snack at an amusement park in your country?,¿Cuál es un aperitivo popular en un parque de atracciones en España? +Al-en-16,Education,English (US),"At what age do kids start preschool in your country? (Provide Arabic numerals (e.g., 12) only.)","¿A qué edad comienzan los niños el preescolar en España? (Proporciona la respuesta en números (por ejemplo, 12).)" +Al-en-17,Education,English (US),What is a popular afterschool sport for elementary schools in your country?,¿Cuál es un deporte extraescolar popular en la escuela primaria en España? +Al-en-18,Education,English (US),For which subject do elementary students get private education in your country?,¿Para qué asignatura reciben educación privada los estudiantes de primaria en España? +Al-en-19,Education,English (US),What is a popular second language for high school students in your country?,¿Cuál es un segundo idioma popular para los estudiantes de secundaria en España? +Al-en-21,Education,English (US),Which subject is the most important for gifted education in your country?,¿Qué asignatura es la más importante para la educación de los superdotados en España? +Al-en-32,Holidays/Celebration/Leisure,English (US),What is the main dish for Thanksgiving in your country?,¿Cuál es el plato principal para el Día de Acción de Gracias en España? +Al-en-33,Holidays/Celebration/Leisure,English (US),What do people do to celebrate Halloween in your country?,¿Qué hacen las personas para celebrar Halloween en España? +Al-en-34,Holidays/Celebration/Leisure,English (US),What do people do to celebrate New Year's Day in your country?,¿Qué hacen las personas para celebrar el Año Nuevo en España? +Al-en-35,Holidays/Celebration/Leisure,English (US),What do people do to celebrate Christmas in your country?,¿Qué hacen las personas para celebrar la Navidad en España? +Al-en-36,Holidays/Celebration/Leisure,English (US),What food is associated with Halloween in your country?,¿Qué comida se asocia con Halloween en España? +Al-en-37,Holidays/Celebration/Leisure,English (US),What food is associated with Christmas in your country?,¿Qué comida se asocia con la Navidad en España? +Al-en-38,Holidays/Celebration/Leisure,English (US),What food is associated with Valentine's day in your country?,¿Qué comida se asocia con el día de San Valentín en España? +Al-en-39,Holidays/Celebration/Leisure,English (US),What do people eat on their birthday in your country?,¿Qué comen las personas en su cumpleaños en España? +Al-en-40,Holidays/Celebration/Leisure,English (US),What is a popular outdoor place for families to have fun with little kids in your country?,¿Cuál es un lugar al aire libre popular para que las familias se diviertan con niños pequeños en España? +Al-en-43,Holidays/Celebration/Leisure,English (US),What is a popular indoor activity for families in your country?,¿Cuál es una actividad de interior popular para las familias en España? +An-ar-02,Education,Arabic (Algeria),Where do university students have lunch in your country?,¿Dónde almuerzan los estudiantes universitarios en España? +An-ar-03,Education,Arabic (Algeria),Which month is the final exam term usually scheduled at high schools in your country? (Provide Arabic numerals (1~12) only.),¿En qué mes se suele programar el período de exámenes finales en los institutos de España? (Indica solo con números del 1 al 12). +An-ar-08,Education,Arabic (Algeria),"How many hours a day do students in your country usually spend at high school? (Provide Arabic numerals in integers (0~24), without any decimal points.)","¿Cuántas horas al día suelen pasar los estudiantes en el instituto en España? (Indica el número en números enteros (0~24), sin ningún decimal.)" +An-ar-09,Education,Arabic (Algeria),"How many languages do students study at high school in your country? (Provide Arabic numerals (e.g., 5) only.)","¿Cuántos idiomas estudian los alumnos en el instituto en España? (Indica solo en números, por ejemplo, 5.)" +An-ar-34,Sport,Arabic (Algeria),What is the most popular sport played in a team at school in your country?,¿Cuál es el deporte de equipo más popular que se juega en las escuelas en España? +An-ar-35,Sport,Arabic (Algeria),Who is the most popular sport commentator in your country?,¿Quién es el comentarista deportivo más popular en España? +An-ar-36,Sport,Arabic (Algeria),What is the most popular sport team in your country?,¿Cuál es el equipo deportivo más popular en España? +An-ar-43,Sport,Arabic (Algeria),What are the common places or venues where individuals in your country usually gather to watch sports broadcasts?,¿Cuáles son los lugares o establecimientos habituales donde la gente en España suele reunirse para ver las retransmisiones deportivas? +Ca-sp-05,Food,Spanish (Spain),"How many meals per day do people from your country usually have? (Provide Arabic numerals (e.g., 5) only.)","¿Cuántas comidas al día suelen tener las personas de España? (Porporciona la respuesta en números (por ejemplo, 5).)" +Ca-sp-06,Food,Spanish (Spain),Which is the most important meal of the day to people from your country?,¿Cuál es la comida más importante del día para la gente de España? +Ca-sp-08,Food,Spanish (Spain),What is the most common ingredient used in your country's diet?,¿Cuál es el ingrediente más común utilizado en la dieta española? +Ca-sp-09,Food,Spanish (Spain),What do people from your country usually eat for dessert?,¿Qué suelen comer los españoles de postre? +Ca-sp-11,Food,Spanish (Spain),Which day of the week do people usually organize a family meal in your country?,¿Qué día de la semana suelen organizar una comida familiar en España? +Ca-sp-14,Food,Spanish (Spain),Which is the most popular hot drink in your country?,¿Cuál es la bebida caliente más popular en España? +Ca-sp-19,Holidays/Celebration/Leisure,Spanish (Spain),What do young people from your country usually drink at the night club?,¿Qué suelen beber los jóvenes de España en la discoteca? +Ca-sp-21,Holidays/Celebration/Leisure,Spanish (Spain),At which month do people usually take holidays in your country? (Provide Arabic numerals (1~12) only.),¿En qué mes suelen las personas tomar vacaciones en España? (Proporciona la respuesta en números del 1 al 12). +Ca-sp-29,Holidays/Celebration/Leisure,Spanish (Spain),What tradition is there in your country for New Year's Eve?,¿Qué tradición hay en España para Nochevieja? +Ca-sp-38,Family,Spanish (Spain),Which is the typical type of house for a family in your country?,¿Cuál es el tipo de casa típico para una familia en España? +Ca-sp-41,Family,Spanish (Spain),Where do the dependent elderly usually live in your country?,¿Dónde suelen vivir las personas mayores dependientes en España? +Ca-sp-42,Family,Spanish (Spain),"How long (in weeks) is your country's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)","¿Cuántas semanas dura la baja por maternidad en España para las madres? (Proporciona la respuesta en números, por ejemplo, 20)." +Ca-sp-43,Family,Spanish (Spain),"How long (in weeks) is your country's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)","¿Cuántas semanas dura la baja por paternidad en España para los padres? (Proporciona la respuesta en números, por ejemplo, 20)." +Ca-sp-45,Family,Spanish (Spain),What type of destination is commonly chosen for a family vacation in your country?,¿Qué tipo de destino se elige comúnmente para unas vacaciones familiares en España? +Gu-ch-05,Sport,Chinese (China),What sports do seniors like the most in your country?,¿Qué deportes prefieren los mayores en España? +Gu-ch-06,Sport,Chinese (China),What sports do men like to play the most in your country?,¿Qué deportes prefieren practicar los hombres en España? +Gu-ch-07,Sport,Chinese (China),Who is the most famous basketball player in your country?,¿Quién es el jugador de baloncesto más famoso de España? +Gu-ch-08,Sport,Chinese (China),What is the most popular sports among children in your country?,¿Cuál es el deporte más popular entre los niños en España? +Gu-ch-09,Sport,Chinese (China),What sports do women like to play the most in your country?,¿Qué deportes les gusta practicar más a las mujeres en España? +Gu-ch-11,Sport,Chinese (China),What sports event has your country won the most gold medals at the Olympics?,¿En qué evento deportivo ha ganado España más medallas de oro en los Juegos Olímpicos? +Gu-ch-15,Sport,Chinese (China),What sports do male students in university like to play the most in your country?,¿Qué deportes prefieren practicar los estudiantes universitarios en España? +Gu-ch-16,Family,Chinese (China),"How many people are there in a family on average in your country? (Provide Arabic numerals (e.g., 12) only.)","¿Cuántas personas hay en una familia de media en España? (Proporciona la respuesta en números (por ejemplo, 12).)" +Gu-ch-18,Family,Chinese (China),"How many children do couples usually have in your country? (Provide Arabic numerals (e.g., 12) only.)",¿Cuántos hijos suelen tener las parejas en España? (Proporciona la respuesta en números) +Gu-ch-31,Education,Chinese (China),"What is the duration of elementary school in years in your country? (Provide Arabic numerals (e.g., 12) only.)","¿Cuál es la duración en años de la educación primaria en España? (Proporciona la respuesta en números (por ejemplo, 12).)" +Gu-ch-32,Education,Chinese (China),"What is the duration of compulsory education in years in your country? (Provide Arabic numerals (e.g., 12) only.)","¿Cuál es la duración en años de la educación obligatoria en España? (Proporciona la respuesta en números (por ejemplo, 12).)" +Gu-ch-33,Education,Chinese (China),"From which age do students start learning their second language in your country? (Provide Arabic numerals (e.g., 12) only.)","¿A partir de qué edad comienzan los estudiantes a aprender su segundo idioma en España? (Proporciona la respuesta en números (por ejemplo, 12).)" +Gu-ch-38,Education,Chinese (China),"What is the duration of undergraduate education in your country? (Provide Arabic numerals (e.g., 12) only.)","¿Cuál es la duración de la educación universitaria de grado en España? (Proporciona la respuesta en números (por ejemplo, 12).)" +Gu-ch-40,Education,Chinese (China),"What time do younger elementary school students finish school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","¿A qué hora salen los alumnos de primaria más pequeños del colegio en España? (Indica en formato HH:MM (por ejemplo, 18:00, 09:00).)" +Gu-ch-41,Education,Chinese (China),"How many musical instruments do elementary school students in your country typically play? (Provide Arabic numerals (e.g., 12) only.)","¿Cuántos instrumentos musicales suelen tocar los alumnos de primaria en España? (Proporciona la respuesta en números (por ejemplo, 12).)" +Ji-ko-02,Work life,Korean (South Korea),What day of the week do people in your country prefer to have company dinners?,¿Qué día de la semana prefieren las personas en España para tener cenas de empresa? +Ji-ko-03,Work life,Korean (South Korea),Which region/city has the highest number of financial companies in your country?,¿Qué región/ciudad tiene el mayor número de empresas financieras en España? +Ji-ko-07,Work life,Korean (South Korea),What is the most famous private company in your country?,¿Cuál es la empresa privada más famosa de España? +Ji-ko-08,Work life,Korean (South Korea),"What is the maximum number of hours one can work per week in your country? (Provide Arabic numerals (e.g., 12) only.)","¿Cuál es el número máximo de horas que se pueden trabajar por semana en España? (Porporciona la respuesta en números (por ejemplo, 12).)" +Ji-ko-09,Work life,Korean (South Korea),What do people typically eat during company get-together in your country?,¿Qué suelen comer las personas durante una reunión de empresa en España? +Ji-ko-14,Work life,Korean (South Korea),What is the representative export item of your country?,¿Cuál es el producto de exportación representativo de España? +Ji-ko-15,Work life,Korean (South Korea),"How long (in hours) is the typical lunch break in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","¿Cuánto dura (en horas) la pausa para el almuerzo típica en España? (Porporciona la respuesta en números (p. ej., 2, 3.5).)" +Ji-ko-16,Family,Korean (South Korea),Where do mothers stay for a certain period after childbirth for recovery in your country?,¿Dónde se quedan las madres durante un cierto período después del parto para recuperarse en España? +Ji-ko-19,Family,Korean (South Korea),What is your country's most commonly given flower on Parents' Day?,¿Cuál es la flor que se regala más comúnmente en España en el Día de los Padres? +Ji-ko-22,Family,Korean (South Korea),What do people especially spend their first salary on in your country's society?,¿En qué gastan especialmente las personas su primer sueldo en la sociedad española? +Ji-ko-24,Family,Korean (South Korea),What is the most preferred recreational facility among children in your country?,¿Cuál es la instalación recreativa preferida por los niños en España? +Ji-ko-25,Family,Korean (South Korea),What are the family-related holidays in your country?,¿Cuáles son las festividades relacionadas con la familia en España? +Ji-ko-26,Family,Korean (South Korea),What are the key milestones associated with children's independence from their parents in your country's society?,¿Cuáles son los hitos clave asociados con la independencia de los niños de sus padres en la sociedad española? +Ji-ko-27,Family,Korean (South Korea),What is the common gift you give when visiting elderly parents in your country?,¿Cuál es el regalo habitual que se da al visitar a los padres ancianos en España? +Ji-ko-28,Family,Korean (South Korea),When is the first day that people celebrate after a child is born in your country?,¿Cuál es el primer día que se celebra después de que nace un niño en España? +Ji-ko-29,Family,Korean (South Korea),Which age's birthday is celebrated the most grandly in your country's society?,¿Qué cumpleaños se celebra con mayor pompa en la sociedad española? +Ji-ko-31,Education,Korean (South Korea),Where do middle and high school students in your country usually study for exams?,¿Dónde suelen estudiar para los exámenes los alumnos de secundaria y bachillerato en España? +Ji-ko-33,Education,Korean (South Korea),Where do high school students in your country usually go after dinner?,¿Adónde suelen ir los estudiantes de secundaria en España después de cenar? +Ji-ko-34,Education,Korean (South Korea),How do elementary school students in your country go to school?,¿Cómo van al colegio los alumnos de primaria en España? +Ji-ko-35,Education,Korean (South Korea),What is the most common form of private education in your country?,¿Cuál es la forma más común de educación privada en España? +Ji-ko-36,Education,Korean (South Korea),Which subject’s academy/private educational institute do middle or high students most frequently attend in your country?,¿A qué academia o instituto educativo privado de qué asignatura asisten más frecuentemente los estudiantes de secundaria o bachillerato en España? +Ji-ko-37,Education,Korean (South Korea),What type of clothing do middle and high school students wear to school in your country?,¿Qué tipo de ropa llevan los estudiantes de secundaria y bachillerato al colegio en España? +Ji-ko-38,Education,Korean (South Korea),Which major is considered the most difficult to gain admission to in your country?,¿Qué carrera se considera la más difícil para ser admitido en España? +Ji-ko-39,Education,Korean (South Korea),What is the most commonly learned musical instrument by elementary school students in your country?,¿Cuál es el instrumento musical más comúnmente aprendido por los estudiantes de primaria en España? +Ji-ko-40,Education,Korean (South Korea),What do high school students typically do during break time in schools in your country?,¿Qué suelen hacer los estudiantes de secundaria durante el recreo en los colegios de España? +Ji-ko-41,Education,Korean (South Korea),What kind of shoes do students wear in schools in your country?,¿Qué tipo de zapatos usan los estudiantes en las escuelas en España? +Ji-ko-42,Education,Korean (South Korea),What are the required subjects in your country's university entrance exam?,¿Cuáles son las asignaturas obligatorias en la prueba de acceso a la universidad en España? +Ji-ko-44,Education,Korean (South Korea),Which region (within a city) in your country has the highest academic fervor?,¿Qué zona (dentro de una ciudad) en España tiene el mayor fervor académico? +Ji-ko-45,Education,Korean (South Korea),What do people look forward to the most at university festivals in your country?,¿Qué es lo que más esperan las personas de los festivales universitarios en España? +Jo-sp-01,Sport,Spanish (Spain),What is the second most popular sport in your country?,¿Cuál es el segundo deporte más popular en España? +Jo-sp-02,Sport,Spanish (Spain),What is the most popular sport played without a ball in your country?,¿Cuál es el deporte más popular jugado sin pelota en España? +Jo-sp-09,Sport,Spanish (Spain),What sports are most associated with the upper class in your country?,¿Qué deportes están más asociados con la clase alta en España? +Jo-sp-13,Sport,Spanish (Spain),What is the most popular water sport in your country?,¿Cuál es el deporte acuático más popular en España? +Jo-sp-14,Sport,Spanish (Spain),What is the most popular mental sport in your country?,¿Cuál es el deporte mental más popular en España? +Jo-sp-18,Work life,Spanish (Spain),"How many holiday days per year does a standard worker gets in your country? (Provide Arabic numerals (e.g., 12) only.)","¿Cuántos días de vacaciones al año recibe un trabajador estándar en España? (Porporciona la respuesta en números (por ejemplo, 12).)" +Jo-sp-19,Work life,Spanish (Spain),What region in your country has been traditionally associated with agriculture?,¿Qué región de España ha estado tradicionalmente asociada con la agricultura? +Jo-sp-21,Work life,Spanish (Spain),"What time, if any, do people usually leave work for lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","¿A qué hora, si la hay, suele la gente salir del trabajo para comer en España? (Indicar en formato HH:MM (por ejemplo, 18:00, 09:00).)" +Jo-sp-31,Education,Spanish (Spain),"What time do high school students tend to leave school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","¿A qué hora suelen salir los estudiantes de secundaria del colegio en España? (Indica en formato HH:MM (por ejemplo, 18:00, 09:00).)" +Jo-sp-32,Education,Spanish (Spain),What sport do elementary school students tend to practice at school in your country?,¿Qué deporte suelen practicar los alumnos de primaria en los colegios de España? +Jo-sp-36,Education,Spanish (Spain),"How long (in weeks) are summer vacations at elementary schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","¿Cuántas semanas duran las vacaciones de verano en las escuelas primarias de España? (Proporciona la respuesta en números (por ejemplo, 7, 8).)" +Jo-sp-37,Education,Spanish (Spain),"How long (in weeks) are summer vacations at universities in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","¿Cuántas semanas duran las vacaciones de verano en las universidades de España? (Proporciona la respuesta en números (por ejemplo, 7, 8))." +Jo-sp-39,Education,Spanish (Spain),"At what age does elementary education begin in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","¿A qué edad comienza la educación primaria en España? (Proporciona la respuesta en números (por ejemplo, 7, 8))." +Jo-sp-43,Education,Spanish (Spain),"How many languages are studied in elementary education besides your country's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)","¿Cuántos idiomas se estudian en la educación primaria además del idioma oficial de España? (Proporciona la respuesta en números (por ejemplo, 7, 8))" +Jod-ch-01,Food,Chinese (China),What eating utensils do people commonly used in your country?,¿Qué utensilios de comida se utilizan comúnmente en España? +Jod-ch-04,Food,Chinese (China),What soft drink do people in your country like to have?,¿Qué bebida no-alcohólica le suele gustar a la gente en España? +Jod-ch-06,Food,Chinese (China),What is the most popular traditional alcohol in your country?,¿Cuál es el alcohol tradicional más popular en España? +Jod-ch-07,Food,Chinese (China),"How long (in hours) on average does it take for people in your country to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","¿Cuánto tiempo (en horas) tardan las personas en España en promedio para cenar en un restaurante? (Porporciona la respuesta en números (p. ej., 2, 3.5).)" +Jod-ch-09,Food,Chinese (China),"What time do people usually have dinner in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","¿A qué hora suelen cenar las personas en España? (Indica en formato HH:MM (por ejemplo, 18:00, 09:00).)" +Jod-ch-12,Food,Chinese (China),What kind of soup do people from your country like to have?,¿Qué tipo de sopa les gusta tomar a las personas de España? +Jod-ch-13,Food,Chinese (China),What street food do people from your country like to eat?,¿Qué comida callejera les gusta comer a las personas de España? +Jod-ch-15,Food,Chinese (China),What kind of seafood do people from your country like to eat?,¿Qué tipo de mariscos les gusta comer a las personas de España? +Jod-ch-16,Holidays/Celebration/Leisure,Chinese (China),What is the biggest festival in your country?,¿Cuál es el festival más grande de España? +Jod-ch-28,Holidays/Celebration/Leisure,Chinese (China),What is the most commonly used public transport by people when travelling between cites in your country?,¿Cuál es el medio de transporte público más utilizado por las personas para viajar entre ciudades en España? +Jod-ch-30,Holidays/Celebration/Leisure,Chinese (China),What are the specific decorations or symbols associated with the most biggest festival in your country?,¿Cuáles son las decoraciones o símbolos específicos asociados con el festival más grande de España? +Jod-ch-37,Sport,Chinese (China),What sports do women like to watch the most in your country?,¿Qué deportes les gusta ver más a las mujeres en España? +Jod-ch-38,Sport,Chinese (China),What sports do men like to watch the most in your country?,¿Qué deportes prefieren ver más los hombres en España? +Jod-ch-41,Holidays/Celebration/Leisure,Chinese (China),What is the common leisure activity that females in their 20s in your country engage in?,¿Cuál es la actividad de ocio común en la que participan las mujeres de unos 20 años en España? +Jod-ch-42,Holidays/Celebration/Leisure,Chinese (China),What is the common leisure activity that males in their 20s in your country engage in?,¿Cuál es la actividad de ocio común en la que participan los hombres de unos 20 años en España? +Jod-ch-46,Work life,Chinese (China),"How long (in hours) do people usually take a break after lunch on a weekday in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","¿Cuánto tiempo (en horas) suele durar la pausa que la gente hace después de comer entre semana en España? (Proporciona la respuesta en números con hasta un decimal (p. ej., 2, 3.5).)" +Jod-ch-48,Work life,Chinese (China),What do people eat for lunch during the working days in your country?,¿Qué comen las personas para almorzar durante los días laborables en España? +Jod-ch-50,Work life,Chinese (China),"What is the average commute time (in minutes) for people in your country? (Provide Arabic numerals (e.g., 1) only.)","¿Cuál es el tiempo medio de desplazamiento (en minutos) para ir a trabajar en España? (indicar sólo con un número (por ejemplo, 1).)" +Jod-ch-51,Work life,Chinese (China),What is the most common transportation that people take to get to work in your country?,¿Cuál es el medio de transporte más común que la gente utiliza para ir al trabajo en España? +Jod-ch-54,Work life,Chinese (China),"How long (in days) is the marriage leave in your country? (Provide Arabic numerals (e.g., 12) only.)","¿Cuántos días dura el permiso por matrimonio en España? (Proporciona la respuesta en números, por ejemplo, 12.)" +Jod-ch-56,Work life,Chinese (China),"What is the typical retirement age for women in your country? (Provide Arabic numerals (e.g., 12) only.)","¿Cuál es la edad de jubilación típica para las mujeres en España? (Porporciona la respuesta en números (por ejemplo, 12).)" +Jod-ch-57,Work life,Chinese (China),"What is the typical retirement age for men in your country? (Provide Arabic numerals (e.g., 12) only.)","¿Cuál es la edad de jubilación típica para los hombres en España? (Porporciona la respuesta en números (por ejemplo, 12).)" +Jod-ch-58,Work life,Chinese (China),Which profession is the most respected in your country?,¿Cuál es la profesión más respetada en España? +Jod-ch-60,Work life,Chinese (China),What is the duration (in hours) of a typical workday in your country? (Provide Arabic numerals (0~24) only.),¿Cuál es la duración (en horas) de una jornada laboral típica en España? (Porporciona la respuesta en números (0~24).) +Jod-ch-61,Work life,Chinese (China),Which occupation is most preferred among females in your country?,¿Cuál es la ocupación más preferida entre las mujeres en España? +Jod-ch-62,Work life,Chinese (China),Which occupation is most preferred among males in your country?,¿Cuál es la ocupación más preferida entre los hombres en España? +Ki-pe-17,Education,Persian (Iran),"On average, how far do students typically pursue their education in your country? (e.g., elementary, high school)","¿Hasta qué nivel suelen estudiar los estudiantes en España de media? (por ejemplo, primaria, secundaria)" +Ki-pe-24,Education,Persian (Iran),What language is taught in schools in your country besides English?,¿Qué idioma se enseña en las escuelas de España además del inglés? +Ki-pe-30,Education,Persian (Iran),What days of the week are schools closed in your country?,¿Qué días de la semana están cerradas las escuelas en España? +Ki-pe-32,Food,Persian (Iran),What food do the hosts usually prepare for the guests in your country?,¿Qué comida suelen preparar los anfitriones para los invitados en España? +Ki-pe-34,Food,Persian (Iran),What is the usual drink in the breakfast in your country?,¿Cuál es la bebida habitual en el desayuno en España? +Ki-pe-36,Food,Persian (Iran),"Except the food original from your country, which country's food is more popular in your country?","Exceptuando la comida originaria de España, ¿qué cocina (de qué país) es más popular en España?" +Ki-pe-39,Food,Persian (Iran),What food is usually prepared for a family picnic in your country?,¿Qué comida se suele preparar para un picnic familiar en España? +Ki-pe-40,Food,Persian (Iran),Which food from your country is considered disgusting by the rest of the world?,¿Qué comida de España se considera asquerosa por el resto del mundo? +Ki-pe-43,Food,Persian (Iran),What is the name of the popular bread in your country?,¿Cómo se llama el pan popular en España? +Ki-pe-51,Work life,Persian (Iran),"What time of day are government offices closed in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","¿A qué hora cierran las oficinas gubernamentales en España? (Indicar en formato HH:MM, por ejemplo, 18:00, 09:00)." +Ki-pe-53,Work life,Persian (Iran),"What is the normal start time of government offices in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","¿Cuál es la hora de inicio habitual de las oficinas gubernamentales en España? (Indicar en formato HH:MM, por ejemplo, 18:00, 09:00)." +Kik-in-01,Holidays/Celebration/Leisure,Indonesian (Indonesia),What national holiday has the longest duration in your country?,¿Qué festivo nacional tiene la mayor duración en España? +Kik-in-02,Holidays/Celebration/Leisure,Indonesian (Indonesia),What are the common activities people from your country do to celebrate Independence day?,¿Cuáles son las actividades comunes que la gente de España realiza para celebrar el día de la Independencia? +Kik-in-04,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is installed in front of the house when a family member dies in your country?,¿Qué se instala frente a la casa cuando muere un miembro de la familia en España? +Kik-in-05,Holidays/Celebration/Leisure,Indonesian (Indonesia),When is a pregnancy celebration or ceremony usually held in your country?,¿Cuándo se suele celebrar una fiesta o ceremonia de embarazo en España? +Kik-in-06,Holidays/Celebration/Leisure,Indonesian (Indonesia),What event is usually held before a wedding in your country?,¿Qué evento se suele celebrar antes de una boda en España? +Kik-in-07,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is usually shared to the children during (Lunar) New Year in your country?,¿Qué se suele compartir con los niños durante el Año Nuevo Lunar en España? +Kik-in-08,Holidays/Celebration/Leisure,Indonesian (Indonesia),What activities are usually done days before Ramadan in your country?,¿Qué actividades se suelen realizar en España los días previos al Ramadán? +Kik-in-10,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most popular tourist attraction for foreign visitors in your country?,¿Cuál es la atracción turística más popular para los visitantes extranjeros en España? +Kik-in-11,Holidays/Celebration/Leisure,Indonesian (Indonesia),"What is the most popular religious sites (temple, church, etc.) for tourism in your country?","¿Cuáles son los lugares religiosos (templo, iglesia, etc.) más populares para el turismo en España?" +Kik-in-15,Holidays/Celebration/Leisure,Indonesian (Indonesia),What clothes do women usually wear on graduation commencement ceremony in your country?,¿Qué ropa suelen llevar las mujeres en la ceremonia de graduación en España? +Kik-in-16,Food,Indonesian (Indonesia),What drink is commonly consumed in your country when the weather is cold?,¿Qué bebida se consume comúnmente en España cuando hace frío? +Kik-in-17,Food,Indonesian (Indonesia),What fruit is more commonly sold and found during Ramadan in your country?,¿Qué fruta se vende y se encuentra más comúnmente durante el Ramadán en España? +Kik-in-24,Food,Indonesian (Indonesia),What carbohydrate is usually served with chicken in a fast-food restaurant in your country?,¿Qué carbohidrato se suele servir con el pollo en un restaurante de comida rápida en España? +Kik-in-31,Sport,Indonesian (Indonesia),What is the most famous martial art sports in your country?,¿Cuál es el deporte de artes marciales más famoso en España? +Kik-in-34,Sport,Indonesian (Indonesia),What sports are often broadcasted on national television in your country?,¿Qué deportes se emiten a menudo en la televisión nacional en España? +Kik-in-35,Sport,Indonesian (Indonesia),What sports were popular among people from your country during the COVID-19 pandemic?,¿Qué deportes fueron populares entre la gente de España durante la pandemia de COVID-19? +Kik-in-36,Sport,Indonesian (Indonesia),Who is the most popular soccer coach in your country?,¿Quién es el entrenador de fútbol más popular en España? +Kik-in-37,Sport,Indonesian (Indonesia),What soccer teams in your country are famous for their intense rivalry? (e.g. ___ vs ___),¿Qué equipos de fútbol en España son famosos por su intensa rivalidad? (p. ej. ___ vs ___) +Kik-in-38,Sport,Indonesian (Indonesia),What are the names of soccer supporters in your country who are famous for their intense rivalry? (e.g. ___ vs ___),¿Cómo se llaman los aficionados al fútbol en España que son famosos por su intensa rivalidad? (p. ej. ___ contra ___) +Kik-in-40,Sport,Indonesian (Indonesia),Who is the most famous male badminton player in your country?,¿Quién es el jugador de bádminton masculino más famoso de España? +Kik-in-41,Sport,Indonesian (Indonesia),Who is the most famous female badminton player in your country?,¿Quién es la jugadora de bádminton más famosa de España? +Kik-in-44,Sport,Indonesian (Indonesia),What sport gets the most support from the government in your country?,¿Qué deporte recibe más apoyo del gobierno en España? +Kik-in-45,Sport,Indonesian (Indonesia),What sports field facilities are usually available at schools in your country?,¿Qué instalaciones deportivas suelen estar disponibles en los colegios de España? +Na-ko-02,Food,Korean (South Korea),What cafe beverage do people from your country most commonly enjoy?,¿Qué bebida de café disfrutan más comúnmente las personas en España? +Na-ko-04,Food,Korean (South Korea),What is the preferred hangover cure food for people from your country?,¿Cuál es la comida preferida para curar la resaca de la gente de España? +Na-ko-05,Food,Korean (South Korea),What is the typical delivery food in your country?,¿Cuál es la comida a domicilio típica en España? +Na-ko-07,Food,Korean (South Korea),What type of meat is consumed most by people from your country?,¿Qué tipo de carne es la más consumida por la gente de España? +Na-ko-08,Food,Korean (South Korea),What fruit do people from your country often eat in the autumn season?,¿Qué fruta comen a menudo las personas de España en la temporada de otoño? +Na-ko-09,Food,Korean (South Korea),What side dish is the most commonly served on a dining table in your country?,¿Qué guarnición se sirve más comúnmente en una mesa de comedor en España? +Na-ko-11,Food,Korean (South Korea),What do people from your country eat while watching a soccer game?,¿Qué comen las personas de España mientras ven un partido de fútbol? +Na-ko-15,Food,Korean (South Korea),What is the representative nourishing food in your country?,¿Cuál es el alimento nutritivo representativo de España? +Na-ko-16,Sport,Korean (South Korea),Who is the most famous soccer player in your country?,¿Quién es el futbolista más famoso de España? +Na-ko-17,Sport,Korean (South Korea),What sports do male students enjoy during lunch time at school in your country?,¿Qué deportes disfrutan los estudiantes varones durante la hora del almuerzo en el colegio en España? +Na-ko-18,Sport,Korean (South Korea),What is the most common sport girls participate in during physical education classes in your country?,¿Cuál es el deporte más común en el que participan las chicas durante las clases de educación física en España? +Na-ko-19,Sport,Korean (South Korea),Who is the most popular volleyball player in your country?,¿Quién es el jugador de voleibol más popular en España? +Na-ko-20,Sport,Korean (South Korea),What sports event do people from your country passionately support the most in international competitions?,¿Qué evento deportivo apoyan con más pasión las personas de España en las competiciones internacionales? +Na-ko-22,Sport,Korean (South Korea),Which country is considered the biggest rival in soccer matches for your country?,¿Qué país se considera el mayor rival de España en los partidos de fútbol? +Na-ko-23,Sport,Korean (South Korea),What type of sports academies do children attend the most in your country?,¿A qué tipo de academias deportivas asisten más los niños en España? +Na-ko-24,Sport,Korean (South Korea),What is the most commonly eaten food in sports stadiums while watching games in your country?,¿Cuál es la comida más consumida en los estadios deportivos mientras se ven partidos en España? +Na-ko-25,Sport,Korean (South Korea),What are the typical sports played in your country's school sports day?,¿Cuáles son los deportes típicos que se juegan en el día del deporte escolar en España? +Na-ko-26,Sport,Korean (South Korea),What are the popular sports among the middle-aged population in your country?,¿Cuáles son los deportes populares entre la población de mediana edad en España? +Na-ko-28,Sport,Korean (South Korea),Who is the most popular winter sports player in your country?,¿Quién es el deportista de deportes de invierno más popular en España? +Na-ko-29,Sport,Korean (South Korea),Who is the most famous swimmer in your country?,¿Quién es el nadador más famoso de España? +Na-ko-30,Sport,Korean (South Korea),What is the most popular e-sports game in your country?,¿Cuál es el juego de e-sports más popular en España? +Na-ko-33,Holidays/Celebration/Leisure,Korean (South Korea),What symbolic food do people from your country eat on (Lunar) New Year?,¿Qué comida simbólica comen las personas de España en el Año Nuevo (Lunar)? +Na-ko-37,Holidays/Celebration/Leisure,Korean (South Korea),What is the most popular domestic vacation spot for people from your country?,¿Cuál es el destino de vacaciones nacional más popular entre los españoles? +Na-ko-38,Holidays/Celebration/Leisure,Korean (South Korea),What is the most common wedding gift between bride and groom in your country?,¿Cuál es el regalo de boda más común entre novios en España? +Na-ko-39,Holidays/Celebration/Leisure,Korean (South Korea),What is typically given as a congratulatory gesture when attending a friend's wedding in your country?,¿Qué se suele dar como gesto de felicitación al asistir a la boda de un amigo en España? +Na-ko-40,Holidays/Celebration/Leisure,Korean (South Korea),"How long (in days) does a funeral typically last in your country? (Provide Arabic numerals (e.g., 12) only.)","¿Cuánto dura (en días) un funeral típicamente en España? (Proporciona la respuesta en números (por ejemplo, 12).)" +Na-ko-41,Holidays/Celebration/Leisure,Korean (South Korea),What should you prepare as a condolence offering when attending a funeral in your country?,¿Qué deberías preparar como ofrenda de condolencia al asistir a un funeral en España? +Na-ko-42,Holidays/Celebration/Leisure,Korean (South Korea),What type of food is commonly provided at funeral parlors in your country?,¿Qué tipo de comida se ofrece comúnmente en las funerarias en España? +Na-ko-43,Holidays/Celebration/Leisure,Korean (South Korea),What do people do in your country in the morning of the (Lunar) New Year?,¿Qué hacen las personas en España en la mañana del Año Nuevo (Lunar)? +Na-ko-44,Holidays/Celebration/Leisure,Korean (South Korea),When is the day with your country's most severe nationwide traffic congestion?,¿Cuál es el día con la congestión de tráfico más severa a nivel nacional en España? +Na-ko-45,Holidays/Celebration/Leisure,Korean (South Korea),What is the most popular honeymoon destination in your country?,¿Cuál es el destino de luna de miel más popular en España? +Ne-ar-05,Holidays/Celebration/Leisure,Arabic (Algeria),What is the most important national holiday in your country?,¿Cuál es el día festivo a nivel nacional más importante de España? +Ne-ar-06,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Ramadan?,¿Qué comen las personas de España en Ramadán? +Ne-ar-09,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Eid ul Fitr?,¿Qué comen las personas de España en Eid ul Fitr? +Ne-ar-10,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Eid ul Adha?,¿Qué comen las personas de España en Eid ul Adha? +Ne-ar-11,Holidays/Celebration/Leisure,Arabic (Algeria),Where do people from your country go to celebrate New Year's Day?,¿A dónde va la gente de España para celebrar el Día de Año Nuevo? +Ne-ar-14,Holidays/Celebration/Leisure,Arabic (Algeria),Where do a family gather for Eid festivities in your country?,¿Dónde se reúne una familia para las festividades del Eid en España? +Ne-ar-16,Work life,Arabic (Algeria),"When is the weekend in your country (e.g. Monday, Tuesday)?","¿Cuándo es el fin de semana en España (por ejemplo, lunes, martes)?" +Ne-ar-17,Work life,Arabic (Algeria),"At what time do most people start work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","¿A qué hora comienza la mayoría de la gente a trabajar en España? (Indica en formato HH:MM (por ejemplo, 18:00, 09:00).)" +Ne-ar-18,Work life,Arabic (Algeria),"At what time do most people finish work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","¿A qué hora termina la mayoría de la gente de trabajar en España? (Indica en formato HH:MM (por ejemplo, 18:00, 09:00).)" +Ne-ar-20,Work life,Arabic (Algeria),What is considered to be a secure job in your country?,¿Qué se considera un trabajo seguro en España? +Ne-ar-24,Work life,Arabic (Algeria),Which city is the primary commercial hub in your country?,¿Cuál es la principal ciudad comercial de España? +Ne-ar-25,Work life,Arabic (Algeria),What is the industry that pays the best in your country?,¿Cuál es la industria que mejor paga en España? +Ne-ar-26,Work life,Arabic (Algeria),What is the most famous public corporation in your country?,¿Cuál es la corporación pública más famosa de España? +Ne-ar-31,Food,Arabic (Algeria),What is the most famous dish in your country?,¿Cuál es el plato más famoso de España? +Ne-ar-32,Food,Arabic (Algeria),What do people usually have for breakfast in your country?,¿Qué suelen desayunar las personas en España? +Ne-ar-33,Food,Arabic (Algeria),"When do people usually have lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","¿A qué hora suelen almorzar las personas en España? (Indica en formato HH:MM (por ejemplo, 18:00, 09:00).)" +Ne-ar-34,Food,Arabic (Algeria),What is typically indispensable in meals in your country?,¿Qué es típicamente indispensable en las comidas en España? +Ne-ar-36,Food,Arabic (Algeria),What is a typical festive meal in your country?,¿Cuál es una comida festiva típica en España? +Ne-ar-37,Food,Arabic (Algeria),Which fruit do people usually offer tourists/visitors from abroad in your country?,¿Qué fruta suelen ofrecer a los turistas/visitantes extranjeros en España? +Ne-ar-38,Food,Arabic (Algeria),Which food do people usually offer as charity in your country?,¿Qué alimentos suelen ofrecer como caridad las personas en España? +Ne-ar-39,Food,Arabic (Algeria),What is the cheapest fast food in your country?,¿Cuál es la comida rápida más barata en España? +Ne-ar-43,Food,Arabic (Algeria),What do people usually have with tea in your country?,¿Qué suelen tomar las personas con té en España? +Ne-ar-44,Food,Arabic (Algeria),What do people have with coffee in your country?,¿Qué toman las personas con el café en España? +New-am-02,Food,Amharic (Ethiopia),What is the most popular traditional food in your country?,¿Cuál es la comida tradicional más popular en España? +New-am-04,Food,Amharic (Ethiopia),What is the most popular dipping sauce in your country?,¿Cuál es la salsa para mojar más popular en España? +New-am-08,Food,Amharic (Ethiopia),What food is most often consumed during Christian fasting in your country?,¿Cuál es la comida más consumida durante el ayuno cristiano en España? +New-am-15,Food,Amharic (Ethiopia),What food is usually prepared when mothers give birth in your country?,¿Qué comida se suele preparar cuando las madres dan a luz en España? +New-am-27,Sport,Amharic (Ethiopia),Who is the most popular female sportperson in your country?,¿Quién es la deportista femenina más popular en España? +New-am-34,Education,Amharic (Ethiopia),Where do most elementary school students prepare for their exams in your country?,¿Dónde se preparan para sus exámenes la mayoría de los estudiantes de primaria en España? +New-am-41,Education,Amharic (Ethiopia),"In your country, at which grade level do students take their first national-level examination?","En España, ¿en qué curso los estudiantes hacen su primer examen de ámbito nacional?" +New-am-53,Work life,Amharic (Ethiopia),Which region in your country is widely known for its coffee/tea industry?,¿Qué región de España es ampliamente conocida por su industria del café/té? +New-am-54,Work life,Amharic (Ethiopia),Which region in your country is widely known for its livestock industry?,¿Qué región de España es ampliamente conocida por su industria ganadera? +New-am-59,Work life,Amharic (Ethiopia),What is the main occupation of people living in deserts in your country?,¿Cuál es el principal trabajo de las personas que viven en los desiertos de España? +New-am-60,Work life,Amharic (Ethiopia),Which animal is typically used for transportation in your country?,¿Qué animal se utiliza típicamente para el transporte en España? +New-am-72,Family,Amharic (Ethiopia),What is the most popular comic book for children to read in your country?,¿Cuál es el cómic más popular para niños en España? +New-am-73,Family,Amharic (Ethiopia),What is the most popular YouTube channel for children in your country?,¿Cuál es el canal de YouTube más popular para niños en España? +New-am-74,Family,Amharic (Ethiopia),What is the most popular talk show in your country?,¿Cuál es el programa de entrevistas más popular en España? +New-am-77,Holidays/Celebration/Leisure,Amharic (Ethiopia),What is the most famous religious holiday in your country?,¿Cuál es la festividad religiosa más famosa de España? +New-am-81,Holidays/Celebration/Leisure,Amharic (Ethiopia),"What is the busiest month for weddings in your country? (Provide Arabic numerals (e.g., 1) only.)","¿Cuál es el mes más con más bodas en España? (Indica solo con números arábigos, por ejemplo, 1.)" +New-am-83,Holidays/Celebration/Leisure,Amharic (Ethiopia),What is the most popular traditional musical instrument in your country?,¿Cuál es el instrumento musical tradicional más popular en España? +New-as-01,Food,Assamese (Assam),What is the main agricultural product produced in your country?,¿Cuál es el principal producto agrícola producido en España? +New-as-02,Food,Assamese (Assam),What is the most popular wheat-based food item in your country?,¿Cuál es el alimento con trigo más popular en España? +New-as-05,Food,Assamese (Assam),What is the most typical drink offered to guests when they visit households in your country?,¿Cuál es la bebida más típica que se ofrece a los invitados cuando visitan las casas en España? +New-as-07,Food,Assamese (Assam),What is the most popular dish cooked with fish in your country?,¿Cuál es el plato más popular cocinado con pescado en España? +New-as-14,Food,Assamese (Assam),What food do people from your country like to eat during rainy weather?,¿Qué comida les gusta comer a las personas de España durante el tiempo lluvioso? +New-as-15,Food,Assamese (Assam),What drink is commonly consumed in your country when the weather is hot?,¿Qué bebida se consume comúnmente en España cuando hace calor? +New-as-20,Sport,Assamese (Assam),What is the most popular indoor sport in your country?,¿Cuál es el deporte de interior más popular en España? +New-as-29,Sport,Assamese (Assam),What sport do men in your country like to watch?,¿Qué deporte les gusta ver a los hombres en España? +New-as-30,Sport,Assamese (Assam),What sport do women in your country like to watch?,¿Qué deporte les gusta ver a las mujeres en España? +New-as-58,Work life,Assamese (Assam),What is the most popular beverage that people from your country like to drink in their workplace?,¿Cuál es la bebida más popular que a la gente de España le gusta beber en su lugar de trabajo? +New-as-64,Family,Assamese (Assam),On which holiday do all family members tend to reunite in your country?,¿En qué festivo suelen reunirse todos los miembros de la familia en España? +New-as-76,Holidays/Celebration/Leisure,Assamese (Assam),What traditional games do families play during traditional holidays in your country?,¿Qué juegos tradicionales juegan las familias durante las fiestas tradicionales en España? +New-as-80,Holidays/Celebration/Leisure,Assamese (Assam),What type of clothing do people from your country wear during traditional festivals?,¿Qué tipo de ropa visten las personas de España durante los festivales tradicionales? +New-as-89,Holidays/Celebration/Leisure,Assamese (Assam),What traditional festival accessories do people from your country wear?,¿Qué accesorios tradicionales de fiesta lleva la gente de España? +New-az-05,Food,Azerbaijani (Azerbaijan),What is the most famous region for alcohol production in your country?,¿Cuál es la región más famosa por la producción de alcohol en España? +New-az-11,Food,Azerbaijani (Azerbaijan),What fruit do people from your country often eat in the summer season?,¿Qué fruta comen a menudo las personas de España en la temporada de verano? +New-az-12,Food,Azerbaijani (Azerbaijan),Which region in your country is known for its seafood?,¿Qué región de España es conocida por su marisco? +New-az-21,Sport,Azerbaijani (Azerbaijan),Which region in your country is the most popular skiing destination?,¿Cuál es la región más popular para esquiar en España? +New-az-26,Sport,Azerbaijani (Azerbaijan),Who is the most popular martial arts player in your country?,¿Quién es el deportista de artes marciales más popular en España? +New-az-27,Sport,Azerbaijani (Azerbaijan),Which sport has been one of the fastest-growing in your country over the last decade?,¿Cuál ha sido uno de los deportes de más rápido crecimiento en España durante la última década? +New-az-39,Education,Azerbaijani (Azerbaijan),Which country is the most popular destination for students from your country studying abroad?,¿Qué país es el destino más popular para los estudiantes de España que estudian en el extranjero? +New-az-49,Work life,Azerbaijani (Azerbaijan),"How many people work in a typical family in your country? (Provide Arabic numerals (e.g., 1) only.)","¿Cuántas personas trabajan en una familia típica en España? (Indica solo números arábigos (p. ej., 1).)" +New-az-60,Family,Azerbaijani (Azerbaijan),"In your country, who takes care of kids when both parents are working?","¿En España, quién se encarga de los niños cuando ambos padres están trabajando?" +New-az-69,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),What is the preferred alcoholic beverage for men from your country?,¿Cuál es la bebida alcohólica preferida por los hombres de España? +New-az-70,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),What is the preferred alcoholic beverage for women from your country?,¿Cuál es la bebida alcohólica preferida por las mujeres de España? +New-az-73,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),"How many people on average typically attend a wedding in your country? (Provide Arabic numerals (e.g., 1) only.)","¿Cuántas personas asisten de media a una boda en España? (Indica solo números arábigos (p. ej., 1).)" +New-ch-01,Food,Chinese (China),What kind of meat do people usually eat when they have barbecue in your country?,¿Qué tipo de carne suele comer la gente cuando hacen barbacoa en España? +New-ch-02,Food,Chinese (China),"When do people usually have breakfast in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","¿A qué hora suelen desayunar las personas en España? (Indica en formato HH:MM, por ejemplo, 18:00, 09:00)." +New-ch-04,Food,Chinese (China),What kinds of food do people usually eat for late-night snacks in your country?,¿Qué tipos de comida suelen comer las personas para los tentempiés nocturnos en España? +New-ch-05,Food,Chinese (China),What is the most famous spicy dish in your country?,¿Cuál es el plato picante más famoso de España? +New-ch-07,Food,Chinese (China),What food items do people typically pair with hard liquor in your country?,¿Con qué alimentos suelen acompañar las bebidas alcohólicas fuertes en España? +New-ch-08,Food,Chinese (China),What seasoning is indispensable in cooking in your country?,¿Qué condimento es indispensable para cocinar en España? +New-ch-09,Food,Chinese (China),What food do people typically consume when the weather is cold in your country?,¿Qué comida consumen típicamente las personas cuando hace frío en España? +New-ch-13,Food,Chinese (China),What is the most famous alcohol brand in your country?,¿Cuál es la marca de alcohol más famosa en España? +New-ch-14,Food,Chinese (China),What foods do people usually eat when they are sick in your country?,¿Qué alimentos suelen comer las personas cuando están enfermas en España? +New-ch-15,Food,Chinese (China),What prepared/ready-to-eat food do people typically buy at supermarkets in your country?,¿Qué comida preparada/lista para comer suelen comprar las personas en los supermercados de España? +New-ch-16,Sport,Chinese (China),What is the most famous sports-related movie in your country?,¿Cuál es la película relacionada con el deporte más famosa en España? +New-ch-17,Sport,Chinese (China),What extreme sport do people generally wish to try the most in your country?,¿Qué deporte extremo desean probar más las personas en general en España? +New-ch-18,Sport,Chinese (China),Which track and field event is the most popular to watch during competitions in your country?,¿Cuál es la prueba de atletismo más popular para ver durante las competiciones en España? +New-ch-19,Sport,Chinese (China),Which gymnastics event is the most popular to watch during competitions in your country?,¿Cuál es la prueba de gimnasia más popular para ver durante las competiciones en España? +New-ch-23,Sport,Chinese (China),Who is the most famous table tennis player in your country?,¿Quién es el jugador de tenis de mesa más famoso de España? +New-ch-26,Sport,Chinese (China),"In the Winter Olympics, which event is the most popular to watch in your country?","En los Juegos Olímpicos de Invierno, ¿cuál es el evento más popular para ver en España?" +New-ch-27,Sport,Chinese (China),Who is the most famous boxer in your country?,¿Quién es el boxeador más famoso de España? +New-ch-30,Sport,Chinese (China),Who is the most famous track and field athlete in your country?,¿Quién es el atleta de atletismo más famoso de España? +New-ch-31,Work life,Chinese (China),What job do parents most hope their children will pursue in your country?,¿Qué profesión esperan los padres que sus hijos persigan más en España? +New-ch-32,Work life,Chinese (China),What office software do people typically use in the workplace in your country?,¿Qué software de oficina suelen utilizar las personas en el lugar de trabajo en España? +New-ch-38,Work life,Chinese (China),Which cities or regions are known for their import and export activities in your country?,¿Qué ciudades o regiones son conocidas por sus actividades de importación y exportación en España? +New-ch-39,Work life,Chinese (China),What platform is commonly used in the e-commerce industry in your country?,¿Qué plataforma se utiliza comúnmente en la industria del comercio electrónico en España? +New-ch-44,Work life,Chinese (China),"How long is the typical probation period for new employees before signing a formal contract in your country? (e.g., 1 month).","¿Cuál es el período de prueba típico para los nuevos empleados antes de firmar un contrato formal en España? (por ejemplo, 1 mes)." +New-ch-45,Work life,Chinese (China),Which industries do young people typically choose to start businesses in your country?,¿En qué industrias suelen elegir los jóvenes empezar negocios en España? +New-ch-49,Family,Chinese (China),What is the most common way for family members to communicate remotely in your country?,¿Cuál es la forma más común en que los miembros de una familia se comunican a distancia en España? +New-ch-51,Family,Chinese (China),What form of accommodation is typically booked for family trips in your country?,¿Qué tipo de alojamiento se reserva habitualmente para viajes familiares en España? +New-ch-54,Family,Chinese (China),Which fruit is usually prepared the most for family dinners in your country?,¿Qué fruta se suele preparar más para las cenas familiares en España? +New-ch-64,Education,Chinese (China),"How many hours of classes do university students typically have per week in your country? (Provide Arabic numerals (e.g., 1) only.)","¿Cuántas horas de clases suelen tener los estudiantes universitarios por semana en España? (Proporciona solo números arábigos (por ejemplo, 1).)" +New-ch-66,Education,Chinese (China),"What is the typical tuition fee per semester for public high schools in your country? (Provide Arabic numerals (e.g., 1) only.)","¿Cuál es la tasa de matrícula típica por semestre para los institutos públicos en España? (Proporciona solo números arábigos (p. ej., 1).)" +New-ch-70,Education,Chinese (China),What compulsory courses do university students have in common in your country?,¿Qué asignaturas obligatorias tienen en común los estudiantes universitarios en España? +New-ch-71,Education,Chinese (China),"What is the average class size in high schools in your country? (Provide Arabic numerals (e.g., 1) only.)","¿Cuál es el tamaño medio de las clases en los institutos de secundaria en España? (Proporcione solo números arábigos (p. ej., 1).)" +New-ch-72,Education,Chinese (China),Which major is considered most conducive to employment in your country?,¿Qué carrera se considera que conduce más al empleo en España? +New-ch-73,Education,Chinese (China),What type of clubs are most popular among university students in your country?,¿Qué tipo de clubes son los más populares entre los estudiantes universitarios en España? +New-ch-74,Education,Chinese (China),What types of accommodation do university students in your country typically live in?,¿Dónde viven principalmente los estudiantes universitarios en España? +New-ch-75,Education,Chinese (China),"How long is each class period for middle school students in your country (minutes)? (Provide Arabic numerals (e.g., 1) only.)","¿Cuánto dura cada período de clase para los estudiantes de secundaria en España (minutos)? (Proporcione solo números arábigos (por ejemplo, 1).)" +New-ch-78,Holidays/Celebration/Leisure,Chinese (China),What leisure activities do retired women typically like in your country?,¿Qué actividades de ocio suelen gustar a las mujeres jubiladas en España? +New-ch-79,Holidays/Celebration/Leisure,Chinese (China),What leisure activities do retired men typically like in your country?,¿Qué actividades de ocio suelen gustar a los hombres jubilados en España? +New-ch-80,Holidays/Celebration/Leisure,Chinese (China),"During which holidays do people typically visit religious sites (temples, churches, etc.) in your country?","¿En qué festividades suelen las personas visitar lugares religiosos (templos, iglesias, etc.) en España?" +New-ch-81,Holidays/Celebration/Leisure,Chinese (China),What are the typical housewarming gifts in your country?,¿Cuáles son los regalos típicos para una inauguración de casa en España? +New-ch-82,Holidays/Celebration/Leisure,Chinese (China),"At what time do weddings typically start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","¿A qué hora suelen empezar las bodas en España? (Indica en formato HH:MM (por ejemplo, 18:00, 09:00).)" +New-ch-83,Holidays/Celebration/Leisure,Chinese (China),Which city in your country hosts festivals the most?,¿Qué ciudad de España acoge más festivales? +New-ch-84,Holidays/Celebration/Leisure,Chinese (China),What color of clothing do people typically wear when attending weddings in your country?,¿De qué color suelen vestir las personas cuando asisten a bodas en España? +New-ch-85,Holidays/Celebration/Leisure,Chinese (China),What color of clothing do people typically wear when attending funerals in your country?,¿De qué color de ropa suelen vestir las personas cuando asisten a funerales en España? +New-en-01,Food,English (UK),Which snack is eaten in the cinema in your country?,¿Qué aperitivo se come en el cine en España? +New-en-02,Food,English (UK),What is the most popular chip/crisp flavour in your country?,¿Cuál es el sabor de patatas fritas más popular en España? +New-en-04,Food,English (UK),Who is a popular celebrity chef in your country?,¿Quién es un chef famoso y popular en España? +New-en-05,Food,English (UK),Which food is a cost-effective and quick meal option in your country?,¿Qué comida es una opción de comida rápida y económica en España? +New-en-07,Food,English (UK),What are the most popular cooking shows in your country?,¿Cuáles son los programas de cocina más populares en España? +New-en-08,Food,English (UK),What is the most popular chocolate brand in your country?,¿Cuál es la marca de chocolate más popular en España? +New-en-10,Food,English (UK),What is the most eaten cheese in your country?,¿Cuál es el queso más consumido en España? +New-en-11,Food,English (UK),What is the most disliked vegetable in your country?,¿Cuál es la verdura más odiada en España? +New-en-12,Food,English (UK),What food is most commonly found in food courts in your country?,¿Qué comida se encuentra más comúnmente en las zonas de comidas de España? +New-en-17,Sport,English (UK),What are the most common cheering tools used by sports fans in your country?,¿Cuáles son los instrumentos de animación más comunes utilizados por los aficionados al deporte en España? +New-en-18,Sport,English (UK),What do fans bring with them when attending a live game in your country?,¿Qué llevan los aficionados consigo cuando asisten a un partido en directo en España? +New-en-19,Sport,English (UK),What is the most well known sporting stadium in your country?,¿Cuál es el estadio deportivo más conocido de España? +New-en-23,Sport,English (UK),Who is the most famous Paralympian in your country?,¿Quién es el paralímpico más famoso de España? +New-en-26,Sport,English (UK),What is the best recognized sporting chant in your country?,¿Cuál es el cántico deportivo más reconocido en España? +New-en-38,Work life,English (UK),Which industries are known for more flexible working hours in your country?,¿Qué industrias son conocidas por tener horarios de trabajo más flexibles en España? +New-en-41,Work life,English (UK),Who is the most well known and successful entrepreneur in your country?,¿Quién es el empresario más conocido y exitoso de España? +New-en-47,Family,English (UK),What can typically be found in the back garden of houses in your country?,¿Qué se puede encontrar típicamente en el jardín trasero de las casas en España? +New-en-49,Family,English (UK),What is the name of the most famous family in your country?,¿Cuál es el nombre de la familia más famosa de España? +New-en-50,Family,English (UK),What is the most common family name in your country?,¿Cuál es el apellido más común en España? +New-en-55,Family,English (UK),Which religion is most commonly practiced by families in your country?,¿Qué religión practican más comúnmente las familias en España? +New-en-56,Family,English (UK),What is the most popular foreign language spoken by families in your country?,¿Cuál es el idioma extranjero más hablado por las familias en España? +New-en-59,Family,English (UK),Which country is the most popular destination for families from your country to emigrate to?,¿Cuál es el destino más popular para las familias de España para emigrar? +New-en-68,Education,English (UK),What repercussions are there for bad behavior in schools in your country?,¿Qué repercusiones hay para el mal comportamiento en las escuelas en España? +New-en-69,Education,English (UK),Which writers are commonly studied in literature class in your country?,¿Qué escritores se estudian comúnmente en la clase de literatura en España? +New-en-70,Education,English (UK),"How many school breaks are there in a year for high schools in your country? (Provide Arabic numerals (e.g., 1) only.)","¿Cuántas vacaciones escolares hay en un año para los institutos de secundaria en España? (Proporciona solo números arábigos (p. ej., 1).)" +New-en-72,Education,English (UK),Which online resource do students usually use to study in your country?,¿Qué recurso en línea suelen utilizar los estudiantes para estudiar en España? +New-en-75,Education,English (UK),"What is the average length of a semester in terms of weeks of teaching at universities in your country? (Provide Arabic numerals (e.g., 1) only.)","¿Cuál es la duración media de un semestre en términos de semanas de docencia en las universidades de España? (Proporcione solo números arábigos (p. ej., 1).)" +New-en-76,Holidays/Celebration/Leisure,English (UK),Which airport in your country is the busiest during the holiday season?,¿Cuál es el aeropuerto más concurrido de España durante la temporada de vacaciones? +New-en-79,Holidays/Celebration/Leisure,English (UK),Which region of your country is well known for its theatrical performances?,¿Qué región de España es bien conocida por sus representaciones teatrales? +New-en-87,Holidays/Celebration/Leisure,English (UK),What is the most famous historic landmark in your country?,¿Cuál es el monumento histórico más famoso de España? +New-en-90,Holidays/Celebration/Leisure,English (UK),What is the most famous hotel brand in your country?,¿Cuál es la cadena hotelera más famosa de España? +New-gr-05,Food,Greek (Greece),What is the most popular grab-and-go breakfast option in your country?,¿Cuál es la opción de desayuno para llevar más popular en España? +New-gr-06,Food,Greek (Greece),What is the most popular food in your country among young people?,¿Cuál es la comida más popular en España entre los jóvenes? +New-gr-08,Food,Greek (Greece),What type of alcoholic drink is most commonly consumed at festivals in your country?,¿Qué tipo de bebida alcohólica se consume más comúnmente en los festivales en España? +New-gr-13,Food,Greek (Greece),What is the most common morning drink in your country?,¿Cuál es la bebida matutina más común en España? +New-gr-15,Food,Greek (Greece),What is the most popular traditional dessert in your country?,¿Cuál es el postre tradicional más popular en España? +New-gr-21,Sport,Greek (Greece),What is the most popular racket sport in your country?,¿Cuál es el deporte de raqueta más popular en España? +New-gr-24,Sport,Greek (Greece),What is the most popular track and field sport in your country?,¿Cuál es el deporte de atletismo más popular en España? +New-gr-29,Sport,Greek (Greece),Which international sporting event is the most popular in your country?,¿Cuál es el evento deportivo internacional más popular en España? +New-gr-47,Work life,Greek (Greece),"How long (in minutes) are typical work breaks in your country, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)","¿Cuánto duran (en minutos) los descansos laborales típicos en España, excluyendo las pausas para almorzar y cenar? (Indica solo números arábigos (p. ej., 1).)" +New-gr-58,Work life,Greek (Greece),Which job is considered underpaid in your country?,¿Qué trabajo se considera mal pagado en España? +New-gr-76,Holidays/Celebration/Leisure,Greek (Greece),What is the most common food served during Easter in your country?,¿Cuál es la comida más común servida durante la Semana Santa en España? +New-gr-82,Holidays/Celebration/Leisure,Greek (Greece),What is the most popular music genre among the elderly population in your country?,¿Cuál es el género musical más popular entre la población anciana en España? +New-gr-88,Holidays/Celebration/Leisure,Greek (Greece),What drink is usually offered at funerals in your country?,¿Qué bebida se suele ofrecer en los funerales en España? +New-gr-89,Holidays/Celebration/Leisure,Greek (Greece),What drink is usually offered at weddings in your country?,¿Qué bebida se suele ofrecer en las bodas en España? +New-ha-07,Food,Hausa (Northern Nigeria),What food originated from your country and can be found all over the world?,¿Qué comida originaria de España se puede encontrar en todo el mundo? +New-ha-08,Food,Hausa (Northern Nigeria),What food is typically disliked by children but enjoyed by the elderly in your country?,¿Qué comida suele no gustarle a los niños pero sí a los mayores en España? +New-ha-09,Food,Hausa (Northern Nigeria),What cooking utensil is most commonly used in your country?,¿Qué utensilio de cocina se utiliza más comúnmente en España? +New-ha-13,Food,Hausa (Northern Nigeria),Which is the most popular vegetable in your country?,¿Cuál es la verdura más popular en España? +New-ha-19,Sport,Hausa (Northern Nigeria),Which animal is used for sports in your country?,¿Qué animal se utiliza para los deportes en España? +New-ha-66,Family,Hausa (Northern Nigeria),What is the most popular wedding venue in your country?,¿Cuál es el lugar de bodas más popular en España? +New-in-01,Food,Indonesian (Indonesia),Which coffee shop brand is the most popular in your country?,¿Cuál es la marca de cafeterías más popular en España? +New-in-03,Food,Indonesian (Indonesia),What type of food from your country is typically served in restaurants overseas?,¿Qué tipo de comida de España se sirve típicamente en restaurantes en el extranjero? +New-in-33,Work life,Indonesian (Indonesia),What region in your country is usually associated with mining?,¿Qué región de España se asocia normalmente con la minería? +New-in-34,Work life,Indonesian (Indonesia),What region in your country is usually associated with oil?,¿Qué región de España se asocia normalmente con el aceite? +New-in-62,Education,Indonesian (Indonesia),What university in your country is popular because of its engineering major? (Provide the official name.),¿Qué universidad en España es popular por su carrera de ingeniería? (Proporciona el nombre oficial.) +New-in-63,Education,Indonesian (Indonesia),What university in your country is popular because of its school of medicine? (Provide the official name.),¿Qué universidad en España es popular por su facultad de medicina? (Proporciona el nombre oficial.) +New-in-78,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most popular payment method in your country?,¿Cuál es el método de pago más popular en España? +New-in-80,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most famous theme park in your country?,¿Cuál es el parque temático más famoso de España? +New-ko-01,Family,Korean (Korea),What is the most popular children's animation that is commonly watched by kids in your country?,¿Cuál es la serie de animación infantil más popular que suelen ver los niños en España? +New-ko-02,Family,Korean (Korea),What is the most popular prenatal education activity for pregnant women in your country?,¿Cuál es la actividad de educación prenatal más popular para las mujeres embarazadas en España? +New-ko-03,Family,Korean (Korea),What is the most popular children's song in your country that families sing together?,¿Cuál es la canción infantil más popular en España que las familias cantan juntas? +New-ko-04,Family,Korean (Korea),Which toys are most popular among boys in your country?,¿Cuáles son los juguetes más populares entre los niños en España? +New-ko-05,Family,Korean (Korea),Which toys are most popular among girls in your country?,¿Cuáles son los juguetes más populares entre las niñas en España? +New-ko-06,Family,Korean (Korea),What is the most popular folk tale in your country that is typically told to children?,¿Cuál es el cuento popular más famoso en España que se suele contar a los niños? +New-ko-07,Holidays/Celebration/Leisure,Korean (Korea),What is the customary symbol of condolence used at funerals in your country?,¿Cuál es el símbolo habitual de condolencia utilizado en los funerales en España? +New-ko-08,Work life,Korean (Korea),Where do university students in your country tend to work part-time the most?,¿Dónde suelen trabajar a tiempo parcial los estudiantes universitarios en España? +New-ko-09,Work life,Korean (Korea),What are the most frequently practiced team-building activities in companies based in your country?,¿Cuáles son las actividades de team-building más practicadas en las empresas con sede en España? +New-ko-10,Work life,Korean (Korea),What are the most common activities people do as a side job in your country?,¿Cuáles son las actividades más comunes que la gente hace como trabajo secundario en España? +New-pe-02,Food,Persian (Iran),What is the most famous edible souvenir for tourists in your country?,¿Cuál es el recuerdo comestible más famoso para los turistas en España? +New-pe-06,Food,Persian (Iran),What is the most popular stew in your country?,¿Cuál es el guiso más popular en España? +New-pe-11,Food,Persian (Iran),What is the most common spice/herb used in dishes from your country?,¿Cuál es la especia más común utilizada en los platos de España? +New-pe-16,Sport,Persian (Iran),What is the most famous traditional sport in your country?,¿Cuál es el deporte tradicional más famoso de España? +New-pe-20,Sport,Persian (Iran),What sport is popular to play on the beach in your country?,¿Qué deporte es popular para jugar en la playa en España? +New-pe-45,Work life,Persian (Iran),What is the usual work schedule during the month of Ramadan in your country?,¿Cuál suele ser el horario laboral durante el mes de Ramadán en España? +New-pe-47,Family,Persian (Iran),"When is Student's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)","¿Cuándo se celebra el Día del Estudiante en España? (Indica en formato MM/DD (por ejemplo, 12/31).)" +New-pe-49,Family,Persian (Iran),Where do families gather to pray together in your country?,¿Dónde se reúnen las familias para rezar juntas en España? +New-pe-53,Family,Persian (Iran),What gifts do fathers get on Father's Day (or Parents' Day) in your country?,¿Qué regalos reciben los padres en el Día del Padre (o Día de los Padres) en España? +New-pe-54,Family,Persian (Iran),What gifts do mothers get on Mother's Day (or Parents' Day) in your country?,¿Qué regalos reciben las madres en el Día de la Madre (o Día de los Padres) en España? +New-pe-59,Family,Persian (Iran),"How many generations typically live together in a household in your country? (Provide Arabic numerals (e.g., 12) only.)","¿Cuántas generaciones suelen vivir juntas en un hogar en España? (Indica solo números enteros (por ejemplo, 12).)" +New-pe-65,Education,Persian (Iran),"How many subjects are taught in middle schools in your country? (Provide Arabic numerals (e.g., 12) only.)","¿Cuántas asignaturas se imparten en los institutos de secundaria en España? (Proporciona solo números arábigos (por ejemplo, 12).)" +New-pe-66,Education,Persian (Iran),What is the most popular after school curricular in elementary schools in your country?,¿Cuál es la actividad extraescolar más popular en las escuelas primarias de España? +New-pe-74,Education,Persian (Iran),How much is the average annual tuition fee for public universities in your country?,¿Cuál es la cuota de matrícula anual promedio para las universidades públicas en España? +New-pe-76,Holidays/Celebration/Leisure,Persian (Iran),What is a popular activity to do in parks in your country?,¿Cuál es una actividad popular para hacer en los parques en España? +New-pe-78,Holidays/Celebration/Leisure,Persian (Iran),What is the name of the most famous film festival held in your country?,¿Cuál es el nombre del festival de cine más famoso celebrado en España? +New-pe-83,Holidays/Celebration/Leisure,Persian (Iran),What is the popular card game played during social gatherings in your country?,¿Cuál es el juego de cartas popular que se juega durante las reuniones sociales en España? +New-pe-85,Holidays/Celebration/Leisure,Persian (Iran),Where is the most popular tourist destination abroad for people from your country?,¿Cuál es el destino turístico más popular en el extranjero para la gente de España? +New-pe-86,Holidays/Celebration/Leisure,Persian (Iran),What is the name of the most famous tower in your country?,¿Cómo se llama la torre más famosa de España? +New-spme-01,Food,Spanish (Mexico),What edible insect is eaten most often in your country?,¿Qué insecto comestible se consume más a menudo en España? +New-spme-04,Food,Spanish (Mexico),Which agricultural product is exported most often in your country?,¿Cuál es el producto agrícola que más se exporta en España? +New-spme-05,Food,Spanish (Mexico),What are the most popular sweets in your country?,¿Cuáles son los dulces más populares en España? +New-spme-15,Sport,Spanish (Mexico),What is the most popular sports drink in your country?,¿Cuál es la bebida deportiva más popular en España? +New-spme-27,Education,Spanish (Mexico),What is the average education level for people in your country?,¿Cuál es el nivel de educación promedio de las personas en España? +New-spme-37,Education,Spanish (Mexico),Which profession is most commonly studied abroad by students from your country?,¿Cuál es la profesión que más estudian en el extranjero los estudiantes de España? +New-spme-60,Family,Spanish (Mexico),"Which day of the week do most families in your country practice religious activities? (e.g. Monday, Tuesday)","¿Qué día de la semana realizan la mayoría de las familias en España actividades religiosas? (p. ej., lunes, martes)" +New-spme-65,Family,Spanish (Mexico),What is the most popular way to celebrate Independence Day in your country?,¿Cuál es la forma más popular de celebrar el Día de la Independencia en España? +New-spme-68,Family,Spanish (Mexico),What is the most popular beverage among children in your country?,¿Cuál es la bebida más popular entre los niños en España? +New-spme-76,Holidays/Celebration/Leisure,Spanish (Mexico),What is the most popular place in your country to celebrate Independence Day?,¿Cuál es el lugar más popular en España para celebrar el Día de la Independencia? +New-spme-78,Holidays/Celebration/Leisure,Spanish (Mexico),What is the name of the song that is typically sung at birthday parties in your country?,¿Cómo se llama la canción que se suele cantar en las fiestas de cumpleaños en España? +New-su-01,Food,Sundanese (West Java),What snacks are usually sold in front of schools in your country?,¿Qué aperitivos se venden habitualmente frente a las escuelas en España? +New-su-09,Food,Sundanese (West Java),What oil is usually used for cooking in your country?,¿Qué aceite se utiliza habitualmente para cocinar en España? +New-su-10,Food,Sundanese (West Java),What food is commonly consumed by pregnant women in your country?,¿Qué alimentos consumen habitualmente las mujeres embarazadas en España? +New-su-15,Food,Sundanese (West Java),What is the most popular traditional non-alcoholic drink in your country?,¿Cuál es la bebida tradicional sin alcohol más popular en España? +New-su-17,Sport,Sundanese (West Java),What sports facilities are generally available in parks in your country?,¿Qué instalaciones deportivas suele haber en los parques de España? +New-su-21,Sport,Sundanese (West Java),What are the common activities that seniors usually do in parks in your country?,¿Cuáles son las actividades que los mayores suelen hacer en los parques en España? +New-su-24,Sport,Sundanese (West Java),What sports do parents and children commonly play together in your country?,¿Qué deportes suelen practicar juntos padres e hijos en España? +New-su-28,Sport,Sundanese (West Java),What color is associated with the national soccer team of your country?,¿Qué color se asocia con la selección nacional de fútbol de España? +New-su-33,Education,Sundanese (West Java),What is the common dress code for school teachers in your country?,¿Cuál es el código de vestimenta común para los profesores de escuela en España? +New-su-34,Education,Sundanese (West Java),What is the most popular extracurricular activity related to music in schools in your country?,¿Cuál es la actividad extracurricular relacionada con la música más popular en las escuelas de España? +New-su-42,Education,Sundanese (West Java),What religion is mainly taught in schools in your country?,¿Qué religión se enseña principalmente en las escuelas en España? +New-su-45,Education,Sundanese (West Java),"What date is Education Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)","¿En qué fecha se celebra el Día de la Educación en España? (Indica en formato MM/DD (por ejemplo, 12/31).)" +New-su-50,Work life,Sundanese (West Java),What is the main occupation of people in mountainous areas in your country?,¿Cuál es el principal trabajo de las personas en las zonas montañosas de España? +New-su-51,Work life,Sundanese (West Java),What is the main occupation of people in coastal areas in your country?,¿Cuál es el principal trabajo de las personas en las zonas costeras de España? +New-su-57,Work life,Sundanese (West Java),What is the most common livestock raised in your country?,¿Cuál es el ganado más criado en España? +New-su-58,Work life,Sundanese (West Java),What animals are commonly used for agriculture in your country?,¿Qué animales se utilizan comúnmente para la agricultura en España? +New-su-59,Work life,Sundanese (West Java),What do farmers in your country typically wear to protect themselves from the heat whilst farming?,¿Qué suelen llevar los agricultores en España para protegerse del calor mientras trabajan en el campo? +New-su-60,Work life,Sundanese (West Java),What do farmers in your country usually eat for lunch?,¿Qué suelen comer los granjeros en España para almorzar? +New-su-71,Family,Sundanese (West Java),What gifts do parents generally give to their children for their birthdays in your country?,¿Qué regalos suelen dar los padres a sus hijos por sus cumpleaños en España? +New-su-75,Family,Sundanese (West Java),What type of vehicle do most families in your country generally own?,¿Qué vehículos suelen tener la mayoría de las familias en España? +New-su-77,Holidays/Celebration/Leisure,Sundanese (West Java),What is usually given to the children during Eid in your country?,¿Qué se suele dar a los niños durante el Eid en España? +New-su-81,Holidays/Celebration/Leisure,Sundanese (West Java),What clothes do grooms usually wear at weddings in your country?,¿Qué ropa suelen llevar los novios en las bodas en España? +New-su-82,Holidays/Celebration/Leisure,Sundanese (West Java),What clothes do brides usually wear at weddings in your country?,¿Qué ropa suelen llevar las novias en las bodas en España? +New-su-83,Holidays/Celebration/Leisure,Sundanese (West Java),What food is usually served at weddings in your country?,¿Qué comida se suele servir en las bodas en España? +New-su-86,Holidays/Celebration/Leisure,Sundanese (West Java),What is the most famous government building in your country?,¿Cuál es el edificio gubernamental más famoso de España? +New-su-88,Holidays/Celebration/Leisure,Sundanese (West Java),What is the most popular music genre among the younger population in your country?,¿Cuál es el género musical más popular entre la población joven en España? +Ni-en-02,Education,English (UK),"What time do middle school students in your country typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)","¿A qué hora suelen salir los estudiantes de secundaria en España cada día? (Indicar en formato HH:MM, por ejemplo, 18:00, 09:00)." +Ni-en-03,Education,English (UK),"At what age do people in your country typically go to university? (Provide Arabic numerals (e.g., 12) only.)","¿A qué edad suelen ir las personas a la universidad en España? (Proporciona la respuesta en números (por ejemplo, 12).)" +Ni-en-06,Education,English (UK),"From what age do people need to attend compulsory education in your country? (Provide Arabic numerals (e.g., 12) only.)","¿A partir de qué edad es obligatoria la educación en España? (Proporciona la respuesta en números (por ejemplo, 12).)" +Ni-en-09,Education,English (UK),How many days a week do children attend school in your country? (Provide Arabic numerals (0~7) only.),¿Cuántos días a la semana asisten los niños al colegio en España? (Proporciona la respuesta en números del 0 al 7). +Ni-en-11,Education,English (UK),"In your country, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)","En España, ¿cuánto tiempo (en años) se tarda normalmente en completar un máster? (Proporciona la respuesta en números (por ejemplo, 12).)" +Ni-en-12,Education,English (UK),What is the top university in your country? (Provide the official name.),¿Cuál es la mejor universidad de España? (Proporciona el nombre oficial.) +Ni-en-13,Education,English (UK),"At what age do most people in your country graduate from university? (Provide Arabic numerals (e.g., 12) only.)","¿A qué edad se gradúa la mayoría de la gente en España de la universidad? (Proporciona la respuesta en números (por ejemplo, 12).)" +Ni-en-15,Education,English (UK),"At what age do children in your country generally start middle school? (Provide Arabic numerals (e.g., 12) only.)","¿A qué edad suelen empezar los niños en España la educación secundaria? (indica la respuesta con un número (por ejemplo, 12).)" +Ni-en-17,Work life,English (UK),"How many hours a week does a full-time worker in your country typically work? (Provide Arabic numerals (e.g., 12) only.)","¿Cuántas horas a la semana trabaja normalmente un trabajador a tiempo completo en España? (Porporciona la respuesta en números, por ejemplo, 12)." +Ni-en-19,Work life,English (UK),How many days a week does a full-time worker work in your country? (Provide Arabic numerals (0~7) only.),¿Cuántos días a la semana trabaja un trabajador a tiempo completo en España? (Proporcione solo números arábigos (0~7).) +Ni-en-20,Work life,English (UK),"At what age do most people start working in your country? (Provide Arabic numerals (e.g., 12) only.)","¿A qué edad comienza a trabajar la mayoría de la gente en España? (Proporciona la respuesta en números, por ejemplo, 12.)" +Ni-en-21,Work life,English (UK),"From what age is an individual allowed to work in your country? (Provide Arabic numerals (e.g., 12) only.)","¿A partir de qué edad se permite trabajar a una persona en España? (Porporciona la respuesta en números, por ejemplo, 12)." +Ni-en-31,Holidays/Celebration/Leisure,English (UK),What do people in your country traditionally eat on Christmas Day?,¿Qué comen tradicionalmente las personas en España el día de Navidad? +Ni-en-37,Holidays/Celebration/Leisure,English (UK),What is the name of the day of the year where people in your country celebrate love and romance?,¿Cómo se llama el día del año en el que la gente en España celebra el amor y el romanticismo? +Ni-en-40,Holidays/Celebration/Leisure,English (UK),What is the most popular Christmas song in your country?,¿Cuál es la canción de Navidad más popular en España? +Nu-in-04,Education,Indonesian (Indonesia),"How many semesters are there each academic year at high schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","¿Cuántos semestres hay en cada año académico en los institutos de secundaria en España? (Proporciona la respuesta en números (p. ej., 7, 8).)" +Nu-in-05,Education,Indonesian (Indonesia),In which month does the new school year typically begin in your country? (Provide Arabic numerals (1~12) only.),¿En qué mes suele comenzar el nuevo año escolar en España? (Proporciona la respuesta en números(1~12).) +Nu-in-06,Education,Indonesian (Indonesia),"When is National Teacher's Day commemorated in your country? (Provide in MM/DD format (e.g., 12/31).)","¿Cuándo se conmemora el Día Nacional del Docente en España? (Indicar en formato MM/DD, por ejemplo, 12/31)." +Nu-in-11,Education,Indonesian (Indonesia),"At what time does elementary school start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","¿A qué hora comienza la escuela primaria en España? (Proporcionar en formato HH:MM (por ejemplo, 18:00, 09:00).)" +Nu-in-20,Family,Indonesian (Indonesia),"When is Children's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)","¿Cuándo se celebra el Día del Niño en España? (Indica en formato MM/DD, por ejemplo, 12/31)." +Nu-in-40,Work life,Indonesian (Indonesia),Which city is the main destination for job seekers in your country?,¿Cuál es la ciudad principal destino de los buscadores de empleo en España? +Sa-en-1,Food,English (UK),What is your country's most popular fast food chain?,¿Cuál es la cadena de comida rápida más popular de España? +Sa-en-13,Food,English (UK),What is the food that is most divisive (either love or hate) in your country?,¿Cuál es la comida que más divide (o se ama o se odia) en España? +Sa-en-16,Sport,English (UK),What is the most popular soccer team among the people from your country?,¿Cuál es el equipo de fútbol más popular entre la gente de España? +Sa-en-22,Sport,English (UK),What is the most famous university in your country known for its sports team?,¿Cuál es la universidad más famosa de España conocida por su equipo deportivo? +Sa-en-31,Family,English (UK),What is your country's most popular family pet?,¿Cuál es la mascota familiar más popular de España? +Sa-en-32,Family,English (UK),What is the most popular family TV show in your country?,¿Cuál es el programa de televisión familiar más popular en España? +Sa-en-37,Family,English (UK),What is the most popular family boardgame in your country?,¿Cuál es el juego de mesa familiar más popular en España? +Sa-en-6,Food,English (UK),What is the most popular takeaway food in your country?,¿Cuál es la comida para llevar más popular en España? +Sa-en-7,Food,English (UK),What are popular snacks in your country?,¿Cuáles son los aperitivos populares en España? +Sa-en-9,Food,English (UK),What do people from your country eat at the beach?,¿Qué comen las personas de España en la playa? +Ta-pe-10,Family,Persian (Iran),"At what age do men usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)","¿A qué edad suelen casarse los hombres en España? (Proporciona la respuesta en números, por ejemplo, 20)." +Ta-pe-11,Family,Persian (Iran),"At what age do women usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)","¿A qué edad suelen casarse las mujeres en España? (Proporciona la respuesta en números, por ejemplo, 20)." +Ta-pe-13,Family,Persian (Iran),"In your parents' generation, what was the average number of members in their family in your country? (Provide Arabic numerals (e.g., 20) only.)","En la generación de tus padres, ¿cuál era el número medio de miembros en sus familias en España? (Proporciona la respuesta en números, por ejemplo, 20.)" +Ta-pe-17,Sport,Persian (Iran),"In the Olympic Games, which sport is the most popular in your country?","En los Juegos Olímpicos, ¿cuál es el deporte más popular en España?" +Ta-pe-21,Sport,Persian (Iran),Where do children usually play soccer in your country?,¿Dónde suelen jugar al fútbol los niños en España? +Ta-pe-22,Sport,Persian (Iran),Which daily exercise is popular among women in your country?,¿Qué ejercicio diario es popular entre las mujeres en España? +Ta-pe-23,Sport,Persian (Iran),Which daily exercise is popular among men in your country?,¿Qué ejercicio diario es popular entre los hombres en España? +Ta-pe-25,Sport,Persian (Iran),"What is the most famous rivalry in a national sports league in your country? (e.g., ___ vs ___)","¿Cuál es la rivalidad más famosa en una liga deportiva nacional en España? (p. ej., ___ contra ___)" +Ta-pe-29,Sport,Persian (Iran),Which professional sport is the highest paying in your country?,¿Cuál es el deporte profesional mejor pagado en España? +Ta-pe-30,Sport,Persian (Iran),What is/was the most popular sports-related TV program in your country?,¿Cuál es/era el programa de televisión relacionado con el deporte más popular en España? +Ta-pe-32,Holidays/Celebration/Leisure,Persian (Iran),What day of the year is usually dedicated to fireworks in your country?,¿Qué día del año se suele dedicar a los fuegos artificiales en España? +Ta-pe-37,Holidays/Celebration/Leisure,Persian (Iran),What is the common symbol of New Year's Eve that is usually found in your country?,¿Cuál es el símbolo común de Nochevieja que suele encontrarse en España? +Ta-pe-42,Holidays/Celebration/Leisure,Persian (Iran),What food do people from your country usually eat on New Year's Eve?,¿Qué comida suelen comer las personas de España en Nochevieja? +Ta-pe-45,Holidays/Celebration/Leisure,Persian (Iran),What is usually eaten during the celebration of the longest night of the year in your country?,¿Qué se suele comer durante la celebración de la noche más larga del año en España? +Th-en-01,Sport,English (US),What is the most popular summer sport in your country?,¿Cuál es el deporte de verano más popular en España? +Th-en-03,Sport,English (US),What is the most popular professional sports league in your country?,¿Cuál es la liga profesional de deportes más popular en España? +Th-en-05,Sport,English (US),What is the most popular women's sports team in your country?,¿Cuál es el equipo de deporte femenino más popular en España? +Th-en-09,Sport,English (US),What is the most popular tournament in your country?,¿Cuál es el torneo más popular en España? +Th-en-11,Sport,English (US),Who is the most popular sportperson in your country?,¿Quién es el deportista más popular en España? +Th-en-12,Sport,English (US),In which sport has your country been most successful in international competitions?,¿En qué deporte ha tenido España más éxito en competiciones internacionales? +Th-en-15,Sport,English (US),What is the most popular winter sport in your country?,¿Cuál es el deporte de invierno más popular en España? +Th-en-19,Work life,English (US),What is a city or region in your country known for manufacturing industry?,¿Cuál es una ciudad o región en España conocida por la industria manufacturera? +Th-en-21,Work life,English (US),What is regarded as the most important perk typically offered to employees in your country?,¿Cuál se considera el beneficio más importante que se ofrece típicamente a los empleados en España? +Th-en-22,Work life,English (US),What was the most catastrophic economic period for your country?,¿Cuál fue el período económico más catastrófico para España? +Th-en-24,Work life,English (US),What region in your country is a major hub for tech workers and start ups?,¿Qué región de España es un importante centro para trabajadores tecnológicos y start-ups? +Th-en-27,Work life,English (US),What is the most important industry in your country?,¿Cuál es la industria más importante de España? +Th-en-35,Family,English (US),"Which one of the daily meals is commonly shared with family members in your country? (e.g., breakfast, lunch, dinner)","¿Cuál de las comidas diarias se comparte habitualmente con los miembros de la familia en España? (p. ej., desayuno, almuerzo, cena)" +Th-en-36,Family,English (US),What is a popular family activity with a child to do on weekends in your country?,¿Cuál es una actividad familiar popular para hacer con un niño los fines de semana en España? +Th-en-37,Family,English (US),"At what age do children typically become independent from their parents in your country? (Provide Arabic numerals (e.g., 12) only.)","¿A qué edad suelen los niños independizarse de sus padres en España? (Proporciona la respuesta en números, por ejemplo, 12)." +Th-en-38,Family,English (US),What is the most important family holiday in your country?,¿Cuál es la festividad familiar más importante en España? +Th-en-39,Family,English (US),What is a popular family game in your country?,¿Cuál es un juego de familia popular en España? +Th-en-41,Family,English (US),"What is the average age for couples to have their first child in your country? (Provide Arabic numerals (e.g., 20) only.)","¿Cuál es la edad media para que las parejas tengan su primer hijo en España? (Proporciona la respuesta en números (por ejemplo, 20).)" +Th-en-43,Family,English (US),"How many cars are owned by a typical family in your country? (Provide Arabic numerals (e.g., 12) only.)","¿Cuántos coches posee una familia típica en España? (Proporciona la respuesta en números, por ejemplo, 12.)" +Th-en-44,Family,English (US),What is your country's most popular food for family meals on weekends?,¿Cuál es la comida más popular en España para las comidas familiares de los fines de semana? +Th-en-45,Family,English (US),What is the most popular weekday evening family activity in your country?,¿Cuál es la actividad familiar de tarde entre semana más popular en España? +Th-en-48,Education,English (US),What is the highest grade given to top-achieving high school students on assignments and exams in your country?,¿Cuál es la nota más alta que se otorga a los estudiantes de secundaria con mejores resultados en trabajos y exámenes en España? +Th-en-49,Education,English (US),What is considered the most important exam for high school students in your country?,¿Cuál se considera el examen más importante para los estudiantes de secundaria en España? +Th-en-51,Education,English (US),Which subject is considered the most important for students in your country?,¿Qué asignatura se considera la más importante para los estudiantes en España? +Th-en-53,Education,English (US),What is the most popular extracurricular social event at schools in your country?,¿Cuál es el evento social extracurricular más popular en los colegios de España? +Th-en-58,Education,English (US),What is the most advanced math subject learned before university in your country?,¿Cuál es la tema de matemáticas más avanzado que se aprende antes de la universidad en España? +Tmp-ar-01,Education,Arabic (Algeria),Where do university students in your country usually go to study for their final exams?,¿Dónde suelen ir los estudiantes universitarios en España para estudiar para sus exámenes finales? +Tmp-ar-02,Education,Arabic (Algeria),What is a common public transport that people use to go to university in your country?,¿Cuál es un transporte público común que la gente utiliza para ir a la universidad en España? +Tmp-ar-04,Education,Arabic (Algeria),What do elementary students in your country usually do after school?,¿Qué suelen hacer los estudiantes de primaria en España después del colegio? diff --git a/data/questions/UK_questions.csv b/data/questions/UK_questions.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a2609e10d905bf5deb2de642c83e0f02c560598 --- /dev/null +++ b/data/questions/UK_questions.csv @@ -0,0 +1,501 @@ +ID,Topic,Source,Question,Translation +Al-en-01,Food,English (US),What is a common snack for preschool kids in your country?,What is a common snack for nursery kids in the UK? +Al-en-02,Food,English (US),What is a popular food to go with beer in your country?,What is a popular food to go with beer in the UK? +Al-en-04,Food,English (US),What is the most popular fruit in your country?,What is the most popular fruit in the UK? +Al-en-06,Food,English (US),What is a common school cafeteria food in your country?,What is a common school cafeteria food in the UK? +Al-en-08,Food,English (US),What are the most commonly eaten snacks at shopping malls in your country?,What are the most commonly eaten snacks at shopping malls in the UK? +Al-en-09,Food,English (US),What is a popular snack at an amusement park in your country?,What is a popular snack at an amusement park in the UK? +Al-en-16,Education,English (US),"At what age do kids start preschool in your country? (Provide Arabic numerals (e.g., 12) only.)","At what age do kids start nursery in the UK? (Provide Arabic numerals (e.g., 12) only.)" +Al-en-17,Education,English (US),What is a popular afterschool sport for elementary schools in your country?,What is a popular afterschool sport for primary schools in the UK? +Al-en-18,Education,English (US),For which subject do elementary students get private education in your country?,For which subject do primary school students get private education in the UK? +Al-en-19,Education,English (US),What is a popular second language for high school students in your country?,What is a popular second language for secondary school students in the UK? +Al-en-21,Education,English (US),Which subject is the most important for gifted education in your country?,Which subject is the most important for gifted education in the UK? +Al-en-32,Holidays/Celebration/Leisure,English (US),What is the main dish for Thanksgiving in your country?,What is the main dish for Thanksgiving in the UK? +Al-en-33,Holidays/Celebration/Leisure,English (US),What do people do to celebrate Halloween in your country?,What do people do to celebrate Halloween in the UK? +Al-en-34,Holidays/Celebration/Leisure,English (US),What do people do to celebrate New Year's Day in your country?,What do people do to celebrate New Year's Day in the UK? +Al-en-35,Holidays/Celebration/Leisure,English (US),What do people do to celebrate Christmas in your country?,What do people do to celebrate Christmas in the UK? +Al-en-36,Holidays/Celebration/Leisure,English (US),What food is associated with Halloween in your country?,What food is associated with Halloween in the UK? +Al-en-37,Holidays/Celebration/Leisure,English (US),What food is associated with Christmas in your country?,What food is associated with Christmas in the UK? +Al-en-38,Holidays/Celebration/Leisure,English (US),What food is associated with Valentine's day in your country?,What food is associated with Valentine's day in the UK? +Al-en-39,Holidays/Celebration/Leisure,English (US),What do people eat on their birthday in your country?,What do people eat on their birthday in the UK? +Al-en-40,Holidays/Celebration/Leisure,English (US),What is a popular outdoor place for families to have fun with little kids in your country?,What is a popular outdoor place for families to have fun with little kids in the UK? +Al-en-43,Holidays/Celebration/Leisure,English (US),What is a popular indoor activity for families in your country?,What is a popular indoor activity for families in the UK? +An-ar-02,Education,Arabic (Algeria),Where do university students have lunch in your country?,Where do university students have lunch in the UK? +An-ar-03,Education,Arabic (Algeria),Which month is the final exam term usually scheduled at high schools in your country? (Provide Arabic numerals (1~12) only.),Which month is the final exam term usually scheduled at secondary schools in the UK? (Provide Arabic numerals (1~12) only.) +An-ar-08,Education,Arabic (Algeria),"How many hours a day do students in your country usually spend at high school? (Provide Arabic numerals in integers (0~24), without any decimal points.)","How many hours a day do students in the UK usually spend at secondary school? (Provide Arabic numerals in integers (0~24), without any decimal points.)" +An-ar-09,Education,Arabic (Algeria),"How many languages do students study at high school in your country? (Provide Arabic numerals (e.g., 5) only.)","How many languages do students study at secondary school in the UK? (Provide Arabic numerals (e.g., 5) only.)" +An-ar-34,Sport,Arabic (Algeria),What is the most popular sport played in a team at school in your country?,What is the most popular sport played in a team at school in the UK? +An-ar-35,Sport,Arabic (Algeria),Who is the most popular sport commentator in your country?,Who is the most popular sport commentator in the UK? +An-ar-36,Sport,Arabic (Algeria),What is the most popular sport team in your country?,What is the most popular sport team in the UK? +An-ar-43,Sport,Arabic (Algeria),What are the common places or venues where individuals in your country usually gather to watch sports broadcasts?,What are the common places or venues where individuals in the UK usually gather to watch sports broadcasts? +Ca-sp-05,Food,Spanish (Spain),"How many meals per day do people from your country usually have? (Provide Arabic numerals (e.g., 5) only.)","How many meals per day do people from the UK usually have? (Provide Arabic numerals (e.g., 5) only.)" +Ca-sp-06,Food,Spanish (Spain),Which is the most important meal of the day to people from your country?,Which is the most important meal of the day to people from the UK? +Ca-sp-08,Food,Spanish (Spain),What is the most common ingredient used in your country's diet?,What is the most common ingredient used in the UK's diet? +Ca-sp-09,Food,Spanish (Spain),What do people from your country usually eat for dessert?,What do people from the UK usually eat for dessert? +Ca-sp-11,Food,Spanish (Spain),Which day of the week do people usually organize a family meal in your country?,Which day of the week do people usually organize a family meal in the UK? +Ca-sp-14,Food,Spanish (Spain),Which is the most popular hot drink in your country?,Which is the most popular hot drink in the UK? +Ca-sp-19,Holidays/Celebration/Leisure,Spanish (Spain),What do young people from your country usually drink at the night club?,What do young people from the UK usually drink at the night club? +Ca-sp-21,Holidays/Celebration/Leisure,Spanish (Spain),At which month do people usually take holidays in your country? (Provide Arabic numerals (1~12) only.),At which month do people usually take holidays in the UK? (Provide Arabic numerals (1~12) only.) +Ca-sp-29,Holidays/Celebration/Leisure,Spanish (Spain),What tradition is there in your country for New Year's Eve?,What tradition is there in the UK for New Year's Eve? +Ca-sp-38,Family,Spanish (Spain),Which is the typical type of house for a family in your country?,Which is the typical type of house for a family in the UK? +Ca-sp-41,Family,Spanish (Spain),Where do the dependent elderly usually live in your country?,Where do the dependent elderly usually live in the UK? +Ca-sp-42,Family,Spanish (Spain),"How long (in weeks) is your country's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)","How long (in weeks) is the UK's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)" +Ca-sp-43,Family,Spanish (Spain),"How long (in weeks) is your country's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)","How long (in weeks) is the UK's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)" +Ca-sp-45,Family,Spanish (Spain),What type of destination is commonly chosen for a family vacation in your country?,What type of destination is commonly chosen for a family holiday in the UK? +Gu-ch-05,Sport,Chinese (China),What sports do seniors like the most in your country?,What sports do seniors like the most in the UK? +Gu-ch-06,Sport,Chinese (China),What sports do men like to play the most in your country?,What sports do men like to play the most in the UK? +Gu-ch-07,Sport,Chinese (China),Who is the most famous basketball player in your country?,Who is the most famous basketball player in the UK? +Gu-ch-08,Sport,Chinese (China),What is the most popular sports among children in your country?,What is the most popular sports among children in the UK? +Gu-ch-09,Sport,Chinese (China),What sports do women like to play the most in your country?,What sports do women like to play the most in the UK? +Gu-ch-11,Sport,Chinese (China),What sports event has your country won the most gold medals at the Olympics?,What sports event has the UK won the most gold medals at the Olympics? +Gu-ch-15,Sport,Chinese (China),What sports do male students in university like to play the most in your country?,What sports do male students in university like to play the most in the UK? +Gu-ch-16,Family,Chinese (China),"How many people are there in a family on average in your country? (Provide Arabic numerals (e.g., 12) only.)","How many people are there in a family on average in the UK? (Provide Arabic numerals (e.g., 12) only.)" +Gu-ch-18,Family,Chinese (China),"How many children do couples usually have in your country? (Provide Arabic numerals (e.g., 12) only.)","How many children do couples usually have in the UK? (Provide Arabic numerals (e.g., 12) only.)" +Gu-ch-31,Education,Chinese (China),"What is the duration of elementary school in years in your country? (Provide Arabic numerals (e.g., 12) only.)","What is the duration of primary school in years in the UK? (Provide Arabic numerals (e.g., 12) only.)" +Gu-ch-32,Education,Chinese (China),"What is the duration of compulsory education in years in your country? (Provide Arabic numerals (e.g., 12) only.)","What is the duration of compulsory education in years in the UK? (Provide Arabic numerals (e.g., 12) only.)" +Gu-ch-33,Education,Chinese (China),"From which age do students start learning their second language in your country? (Provide Arabic numerals (e.g., 12) only.)","From which age do students start learning their second language in the UK? (Provide Arabic numerals (e.g., 12) only.)" +Gu-ch-38,Education,Chinese (China),"What is the duration of undergraduate education in your country? (Provide Arabic numerals (e.g., 12) only.)","What is the duration of undergraduate education in the UK? (Provide Arabic numerals (e.g., 12) only.)" +Gu-ch-40,Education,Chinese (China),"What time do younger elementary school students finish school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","What time do younger primary school students finish school in the UK? (Provide in HH:MM format (e.g., 18:00, 09:00).)" +Gu-ch-41,Education,Chinese (China),"How many musical instruments do elementary school students in your country typically play? (Provide Arabic numerals (e.g., 12) only.)","How many musical instruments do primary school students in the UK typically play? (Provide Arabic numerals (e.g., 12) only.)" +Ji-ko-02,Work life,Korean (South Korea),What day of the week do people in your country prefer to have company dinners?,What day of the week do people in the UK prefer to have company dinners? +Ji-ko-03,Work life,Korean (South Korea),Which region/city has the highest number of financial companies in your country?,Which region/city has the highest number of financial companies in the UK? +Ji-ko-07,Work life,Korean (South Korea),What is the most famous private company in your country?,What is the most famous private company in the UK? +Ji-ko-08,Work life,Korean (South Korea),"What is the maximum number of hours one can work per week in your country? (Provide Arabic numerals (e.g., 12) only.)","What is the maximum number of hours one can work per week in the UK? (Provide Arabic numerals (e.g., 12) only.)" +Ji-ko-09,Work life,Korean (South Korea),What do people typically eat during company get-together in your country?,What do people typically eat during company get-together in the UK? +Ji-ko-14,Work life,Korean (South Korea),What is the representative export item of your country?,What is the representative export item of the UK? +Ji-ko-15,Work life,Korean (South Korea),"How long (in hours) is the typical lunch break in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","How long (in hours) is the typical lunch break in the UK? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)" +Ji-ko-16,Family,Korean (South Korea),Where do mothers stay for a certain period after childbirth for recovery in your country?,Where do mothers stay for a certain period after childbirth for recovery in the UK? +Ji-ko-19,Family,Korean (South Korea),What is your country's most commonly given flower on Parents' Day?,What is the UK's most commonly given flower on Parents' Day? +Ji-ko-22,Family,Korean (South Korea),What do people especially spend their first salary on in your country's society?,What do people especially spend their first salary on in the UK's society? +Ji-ko-24,Family,Korean (South Korea),What is the most preferred recreational facility among children in your country?,What is the most preferred recreational facility among children in the UK? +Ji-ko-25,Family,Korean (South Korea),What are the family-related holidays in your country?,What are the family-related holidays in the UK? +Ji-ko-26,Family,Korean (South Korea),What are the key milestones associated with children's independence from their parents in your country's society?,What are the key milestones associated with children's independence from their parents in the UK's society? +Ji-ko-27,Family,Korean (South Korea),What is the common gift you give when visiting elderly parents in your country?,What is the common gift you give when visiting elderly parents in the UK? +Ji-ko-28,Family,Korean (South Korea),When is the first day that people celebrate after a child is born in your country?,When is the first day that people celebrate after a child is born in the UK? +Ji-ko-29,Family,Korean (South Korea),Which age's birthday is celebrated the most grandly in your country's society?,Which age's birthday is celebrated the most grandly in the UK's society? +Ji-ko-31,Education,Korean (South Korea),Where do middle and high school students in your country usually study for exams?,Where do secondary school students in the UK usually study for exams? +Ji-ko-33,Education,Korean (South Korea),Where do high school students in your country usually go after dinner?,Where do secondary school students in the UK usually go after dinner? +Ji-ko-34,Education,Korean (South Korea),How do elementary school students in your country go to school?,How do primary school students in the UK go to school? +Ji-ko-35,Education,Korean (South Korea),What is the most common form of private education in your country?,What is the most common form of private education in the UK? +Ji-ko-36,Education,Korean (South Korea),Which subject’s academy/private educational institute do middle or high students most frequently attend in your country?,Which subject’s academy/private educational institute do secondary school students most frequently attend in the UK? +Ji-ko-37,Education,Korean (South Korea),What type of clothing do middle and high school students wear to school in your country?,What type of clothing do secondary school students wear to school in the UK? +Ji-ko-38,Education,Korean (South Korea),Which major is considered the most difficult to gain admission to in your country?,Which degree is considered the most difficult to gain admission to in the UK? +Ji-ko-39,Education,Korean (South Korea),What is the most commonly learned musical instrument by elementary school students in your country?,What is the most commonly learned musical instrument by primary school students in the UK? +Ji-ko-40,Education,Korean (South Korea),What do high school students typically do during break time in schools in your country?,What do secondary school students typically do during break time in schools in the UK? +Ji-ko-41,Education,Korean (South Korea),What kind of shoes do students wear in schools in your country?,What kind of shoes do students wear in schools in the UK? +Ji-ko-42,Education,Korean (South Korea),What are the required subjects in your country's university entrance exam?,What are the required subjects in the UK's university entrance exam? +Ji-ko-44,Education,Korean (South Korea),Which region (within a city) in your country has the highest academic fervor?,Which region (within a city) in the UK has the highest academic fervor? +Ji-ko-45,Education,Korean (South Korea),What do people look forward to the most at university festivals in your country?,What do people look forward to the most at university festivals in the UK? +Jo-sp-01,Sport,Spanish (Spain),What is the second most popular sport in your country?,What is the second most popular sport in the UK? +Jo-sp-02,Sport,Spanish (Spain),What is the most popular sport played without a ball in your country?,What is the most popular sport played without a ball in the UK? +Jo-sp-09,Sport,Spanish (Spain),What sports are most associated with the upper class in your country?,What sports are most associated with the upper class in the UK? +Jo-sp-13,Sport,Spanish (Spain),What is the most popular water sport in your country?,What is the most popular water sport in the UK? +Jo-sp-14,Sport,Spanish (Spain),What is the most popular mental sport in your country?,What is the most popular mental sport in the UK? +Jo-sp-18,Work life,Spanish (Spain),"How many holiday days per year does a standard worker gets in your country? (Provide Arabic numerals (e.g., 12) only.)","How many holiday days per year does a standard worker gets in the UK? (Provide Arabic numerals (e.g., 12) only.)" +Jo-sp-19,Work life,Spanish (Spain),What region in your country has been traditionally associated with agriculture?,What region in the UK has been traditionally associated with agriculture? +Jo-sp-21,Work life,Spanish (Spain),"What time, if any, do people usually leave work for lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","What time, if any, do people usually leave work for lunch in the UK? (Provide in HH:MM format (e.g., 18:00, 09:00).)" +Jo-sp-31,Education,Spanish (Spain),"What time do high school students tend to leave school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","What time do secondary school students tend to leave school in the UK? (Provide in HH:MM format (e.g., 18:00, 09:00).)" +Jo-sp-32,Education,Spanish (Spain),What sport do elementary school students tend to practice at school in your country?,What sport do primary school students tend to practice at school in the UK? +Jo-sp-36,Education,Spanish (Spain),"How long (in weeks) are summer vacations at elementary schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","How long (in weeks) are summer holidays at primary schools in the UK? (Provide in Arabic numerals (e.g., 7, 8) only.)" +Jo-sp-37,Education,Spanish (Spain),"How long (in weeks) are summer vacations at universities in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","How long (in weeks) are summer holidays at universities in the UK? (Provide in Arabic numerals (e.g., 7, 8) only.)" +Jo-sp-39,Education,Spanish (Spain),"At what age does elementary education begin in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","At what age does primary education begin in the UK? (Provide in Arabic numerals (e.g., 7, 8) only.)" +Jo-sp-43,Education,Spanish (Spain),"How many languages are studied in elementary education besides your country's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)","How many languages are studied in primary education besides the UK's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)" +Jod-ch-01,Food,Chinese (China),What eating utensils do people commonly used in your country?,What eating utensils do people commonly used in the UK? +Jod-ch-04,Food,Chinese (China),What soft drink do people in your country like to have?,What soft drink do people in the UK like to have? +Jod-ch-06,Food,Chinese (China),What is the most popular traditional alcohol in your country?,What is the most popular traditional alcohol in the UK? +Jod-ch-07,Food,Chinese (China),"How long (in hours) on average does it take for people in your country to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","How long (in hours) on average does it take for people in the UK to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)" +Jod-ch-09,Food,Chinese (China),"What time do people usually have dinner in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","What time do people usually have dinner in the UK? (Provide in HH:MM format (e.g., 18:00, 09:00).)" +Jod-ch-12,Food,Chinese (China),What kind of soup do people from your country like to have?,What kind of soup do people from the UK like to have? +Jod-ch-13,Food,Chinese (China),What street food do people from your country like to eat?,What street food do people from the UK like to eat? +Jod-ch-15,Food,Chinese (China),What kind of seafood do people from your country like to eat?,What kind of seafood do people from the UK like to eat? +Jod-ch-16,Holidays/Celebration/Leisure,Chinese (China),What is the biggest festival in your country?,What is the biggest festival in the UK? +Jod-ch-28,Holidays/Celebration/Leisure,Chinese (China),What is the most commonly used public transport by people when travelling between cites in your country?,What is the most commonly used public transport by people when travelling between cites in the UK? +Jod-ch-30,Holidays/Celebration/Leisure,Chinese (China),What are the specific decorations or symbols associated with the biggest festival in your country?,What are the specific decorations or symbols associated with the biggest festival in the UK? +Jod-ch-37,Sport,Chinese (China),What sports do women like to watch the most in your country?,What sports do women like to watch the most in the UK? +Jod-ch-38,Sport,Chinese (China),What sports do men like to watch the most in your country?,What sports do men like to watch the most in the UK? +Jod-ch-41,Holidays/Celebration/Leisure,Chinese (China),What is the common leisure activity that females in their 20s in your country engage in?,What is the common leisure activity that females in their 20s in the UK engage in? +Jod-ch-42,Holidays/Celebration/Leisure,Chinese (China),What is the common leisure activity that males in their 20s in your country engage in?,What is the common leisure activity that males in their 20s in the UK engage in? +Jod-ch-46,Work life,Chinese (China),"How long (in hours) do people usually take a break after lunch on a weekday in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","How long (in hours) do people usually take a break after lunch on a weekday in the UK? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)" +Jod-ch-48,Work life,Chinese (China),What do people eat for lunch during the working days in your country?,What do people eat for lunch during the working days in the UK? +Jod-ch-50,Work life,Chinese (China),"What is the average commute time (in minutes) for people in your country? (Provide Arabic numerals (e.g., 1) only.)","What is the average commute time (in minutes) for people in the UK? (Provide Arabic numerals (e.g., 1) only.)" +Jod-ch-51,Work life,Chinese (China),What is the most common transportation that people take to get to work in your country?,What is the most common transportation that people take to get to work in the UK? +Jod-ch-54,Work life,Chinese (China),"How long (in days) is the marriage leave in your country? (Provide Arabic numerals (e.g., 12) only.)","How long (in days) is the marriage leave in the UK? (Provide Arabic numerals (e.g., 12) only.)" +Jod-ch-56,Work life,Chinese (China),"What is the typical retirement age for women in your country? (Provide Arabic numerals (e.g., 12) only.)","What is the typical retirement age for women in the UK? (Provide Arabic numerals (e.g., 12) only.)" +Jod-ch-57,Work life,Chinese (China),"What is the typical retirement age for men in your country? (Provide Arabic numerals (e.g., 12) only.)","What is the typical retirement age for men in the UK? (Provide Arabic numerals (e.g., 12) only.)" +Jod-ch-58,Work life,Chinese (China),Which profession is the most respected in your country?,Which profession is the most respected in the UK? +Jod-ch-60,Work life,Chinese (China),What is the duration (in hours) of a typical workday in your country? (Provide Arabic numerals (0~24) only.),What is the duration (in hours) of a typical workday in the UK? (Provide Arabic numerals (0~24) only.) +Jod-ch-61,Work life,Chinese (China),Which occupation is most preferred among females in your country?,Which occupation is most preferred among females in the UK? +Jod-ch-62,Work life,Chinese (China),Which occupation is most preferred among males in your country?,Which occupation is most preferred among males in the UK? +Ki-pe-17,Education,Persian (Iran),"On average, how far do students typically pursue their education in your country? (e.g., elementary, high school)","On average, how far do students typically pursue their education in the UK? (e.g., primary, secondary school)" +Ki-pe-24,Education,Persian (Iran),What language is taught in schools in your country besides English?,What language is taught in schools in the UK besides English? +Ki-pe-30,Education,Persian (Iran),What days of the week are schools closed in your country?,What days of the week are schools closed in the UK? +Ki-pe-32,Food,Persian (Iran),What food do the hosts usually prepare for the guests in your country?,What food do the hosts usually prepare for the guests in the UK? +Ki-pe-34,Food,Persian (Iran),What is the usual drink in the breakfast in your country?,What is the usual drink in the breakfast in the UK? +Ki-pe-36,Food,Persian (Iran),"Except the food original from your country, which country's food is more popular in your country?","Except the food original from the UK, which country's food is more popular in the UK?" +Ki-pe-39,Food,Persian (Iran),What food is usually prepared for a family picnic in your country?,What food is usually prepared for a family picnic in the UK? +Ki-pe-40,Food,Persian (Iran),Which food from your country is considered disgusting by the rest of the world?,Which food from the UK is considered disgusting by the rest of the world? +Ki-pe-43,Food,Persian (Iran),What is the name of the popular bread in your country?,What is the name of the popular bread in the UK? +Ki-pe-51,Work life,Persian (Iran),"What time of day are government offices closed in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","What time of day are government offices closed in the UK? (Provide in HH:MM format (e.g., 18:00, 09:00).)" +Ki-pe-53,Work life,Persian (Iran),"What is the normal start time of government offices in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","What is the normal start time of government offices in the UK? (Provide in HH:MM format (e.g., 18:00, 09:00).)" +Kik-in-01,Holidays/Celebration/Leisure,Indonesian (Indonesia),What national holiday has the longest duration in your country?,What national holiday has the longest duration in the UK? +Kik-in-02,Holidays/Celebration/Leisure,Indonesian (Indonesia),What are the common activities people from your country do to celebrate Independence day?,What are the common activities people from the UK do to celebrate Independence day? +Kik-in-04,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is installed in front of the house when a family member dies in your country?,What is installed in front of the house when a family member dies in the UK? +Kik-in-05,Holidays/Celebration/Leisure,Indonesian (Indonesia),When is a pregnancy celebration or ceremony usually held in your country?,When is a pregnancy celebration or ceremony usually held in the UK? +Kik-in-06,Holidays/Celebration/Leisure,Indonesian (Indonesia),What event is usually held before a wedding in your country?,What event is usually held before a wedding in the UK? +Kik-in-07,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is usually shared to the children during (Lunar) New Year in your country?,What is usually shared to the children during (Lunar) New Year in the UK? +Kik-in-08,Holidays/Celebration/Leisure,Indonesian (Indonesia),What activities are usually done days before Ramadan in your country?,What activities are usually done days before Ramadan in the UK? +Kik-in-10,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most popular tourist attraction for foreign visitors in your country?,What is the most popular tourist attraction for foreign visitors in the UK? +Kik-in-11,Holidays/Celebration/Leisure,Indonesian (Indonesia),"What is the most popular religious sites (temple, church, etc.) for tourism in your country?","What is the most popular religious sites (temple, church, etc.) for tourism in the UK?" +Kik-in-15,Holidays/Celebration/Leisure,Indonesian (Indonesia),What clothes do women usually wear on graduation commencement ceremony in your country?,What clothes do women usually wear on graduation commencement ceremony in the UK? +Kik-in-16,Food,Indonesian (Indonesia),What drink is commonly consumed in your country when the weather is cold?,What drink is commonly consumed in the UK when the weather is cold? +Kik-in-17,Food,Indonesian (Indonesia),What fruit is more commonly sold and found during Ramadan in your country?,What fruit is more commonly sold and found during Ramadan in the UK? +Kik-in-24,Food,Indonesian (Indonesia),What carbohydrate is usually served with chicken in a fast-food restaurant in your country?,What carbohydrate is usually served with chicken in a fast-food restaurant in the UK? +Kik-in-31,Sport,Indonesian (Indonesia),What is the most famous martial art sports in your country?,What is the most famous martial art sports in the UK? +Kik-in-34,Sport,Indonesian (Indonesia),What sports are often broadcasted on national television in your country?,What sports are often broadcasted on national television in the UK? +Kik-in-35,Sport,Indonesian (Indonesia),What sports were popular among people from your country during the COVID-19 pandemic?,What sports were popular among people from the UK during the COVID-19 pandemic? +Kik-in-36,Sport,Indonesian (Indonesia),Who is the most popular soccer coach in your country?,Who is the most popular football coach in the UK? +Kik-in-37,Sport,Indonesian (Indonesia),What soccer teams in your country are famous for their intense rivalry? (e.g. ___ vs ___),What football teams in the UK are famous for their intense rivalry? (e.g. ___ vs ___) +Kik-in-38,Sport,Indonesian (Indonesia),What are the names of soccer supporters in your country who are famous for their intense rivalry? (e.g. ___ vs ___),What are the names of football supporters in the UK who are famous for their intense rivalry? (e.g. ___ vs ___) +Kik-in-40,Sport,Indonesian (Indonesia),Who is the most famous male badminton player in your country?,Who is the most famous male badminton player in the UK? +Kik-in-41,Sport,Indonesian (Indonesia),Who is the most famous female badminton player in your country?,Who is the most famous female badminton player in the UK? +Kik-in-44,Sport,Indonesian (Indonesia),What sport gets the most support from the government in your country?,What sport gets the most support from the government in the UK? +Kik-in-45,Sport,Indonesian (Indonesia),What sports field facilities are usually available at schools in your country?,What sports field facilities are usually available at schools in the UK? +Na-ko-02,Food,Korean (South Korea),What cafe beverage do people from your country most commonly enjoy?,What cafe beverage do people from the UK most commonly enjoy? +Na-ko-04,Food,Korean (South Korea),What is the preferred hangover cure food for people from your country?,What is the preferred hangover cure food for people from the UK? +Na-ko-05,Food,Korean (South Korea),What is the typical delivery food in your country?,What is the typical delivery food in the UK? +Na-ko-07,Food,Korean (South Korea),What type of meat is consumed most by people from your country?,What type of meat is consumed most by people from the UK? +Na-ko-08,Food,Korean (South Korea),What fruit do people from your country often eat in the autumn season?,What fruit do people from the UK often eat in the autumn season? +Na-ko-09,Food,Korean (South Korea),What side dish is the most commonly served on a dining table in your country?,What side dish is the most commonly served on a dining table in the UK? +Na-ko-11,Food,Korean (South Korea),What do people from your country eat while watching a soccer game?,What do people from the UK eat while watching a football game? +Na-ko-15,Food,Korean (South Korea),What is the representative nourishing food in your country?,What is the representative nourishing food in the UK? +Na-ko-16,Sport,Korean (South Korea),Who is the most famous soccer player in your country?,Who is the most famous football player in the UK? +Na-ko-17,Sport,Korean (South Korea),What sports do male students enjoy during lunch time at school in your country?,What sports do male students enjoy during lunch time at school in the UK? +Na-ko-18,Sport,Korean (South Korea),What is the most common sport girls participate in during physical education classes in your country?,What is the most common sport girls participate in during physical education classes in the UK? +Na-ko-19,Sport,Korean (South Korea),Who is the most popular volleyball player in your country?,Who is the most popular volleyball player in the UK? +Na-ko-20,Sport,Korean (South Korea),What sports event do people from your country passionately support the most in international competitions?,What sports event do people from the UK passionately support the most in international competitions? +Na-ko-22,Sport,Korean (South Korea),Which country is considered the biggest rival in soccer matches for your country?,Which country is considered the biggest rival in football matches for the UK? +Na-ko-23,Sport,Korean (South Korea),What type of sports academies do children attend the most in your country?,What type of sports academies do children attend the most in the UK? +Na-ko-24,Sport,Korean (South Korea),What is the most commonly eaten food in sports stadiums while watching games in your country?,What is the most commonly eaten food in sports stadiums while watching games in the UK? +Na-ko-25,Sport,Korean (South Korea),What are the typical sports played in your country's school sports day?,What are the typical sports played in the UK's school sports day? +Na-ko-26,Sport,Korean (South Korea),What are the popular sports among the middle-aged population in your country?,What are the popular sports among the middle-aged population in the UK? +Na-ko-28,Sport,Korean (South Korea),Who is the most popular winter sports player in your country?,Who is the most popular winter sports player in the UK? +Na-ko-29,Sport,Korean (South Korea),Who is the most famous swimmer in your country?,Who is the most famous swimmer in the UK? +Na-ko-30,Sport,Korean (South Korea),What is the most popular e-sports game in your country?,What is the most popular e-sports game in the UK? +Na-ko-33,Holidays/Celebration/Leisure,Korean (South Korea),What symbolic food do people from your country eat on (Lunar) New Year?,What symbolic food do people from the UK eat on (Lunar) New Year? +Na-ko-37,Holidays/Celebration/Leisure,Korean (South Korea),What is the most popular domestic vacation spot for people from your country?,What is the most popular domestic vacation spot for people from the UK? +Na-ko-38,Holidays/Celebration/Leisure,Korean (South Korea),What is the most common wedding gift between bride and groom in your country?,What is the most common wedding gift between bride and groom in the UK? +Na-ko-39,Holidays/Celebration/Leisure,Korean (South Korea),What is typically given as a congratulatory gesture when attending a friend's wedding in your country?,What is typically given as a congratulatory gesture when attending a friend's wedding in the UK? +Na-ko-40,Holidays/Celebration/Leisure,Korean (South Korea),"How long (in days) does a funeral typically last in your country? (Provide Arabic numerals (e.g., 12) only.)","How long (in days) does a funeral typically last in the UK? (Provide Arabic numerals (e.g., 12) only.)" +Na-ko-41,Holidays/Celebration/Leisure,Korean (South Korea),What should you prepare as a condolence offering when attending a funeral in your country?,What should you prepare as a condolence offering when attending a funeral in the UK? +Na-ko-42,Holidays/Celebration/Leisure,Korean (South Korea),What type of food is commonly provided at funeral parlors in your country?,What type of food is commonly provided at funeral parlors in the UK? +Na-ko-43,Holidays/Celebration/Leisure,Korean (South Korea),What do people do in your country in the morning of the (Lunar) New Year?,What do people do in the UK in the morning of the (Lunar) New Year? +Na-ko-44,Holidays/Celebration/Leisure,Korean (South Korea),When is the day with your country's most severe nationwide traffic congestion?,When is the day with the UK's most severe nationwide traffic congestion? +Na-ko-45,Holidays/Celebration/Leisure,Korean (South Korea),What is the most popular honeymoon destination in your country?,What is the most popular honeymoon destination in the UK? +Ne-ar-05,Holidays/Celebration/Leisure,Arabic (Algeria),What is the most important national holiday in your country?,What is the most important national holiday in the UK? +Ne-ar-06,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Ramadan?,What do people from the UK eat in Ramadan? +Ne-ar-09,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Eid ul Fitr?,What do people from the UK eat in Eid ul Fitr? +Ne-ar-10,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Eid ul Adha?,What do people from the UK eat in Eid ul Adha? +Ne-ar-11,Holidays/Celebration/Leisure,Arabic (Algeria),Where do people from your country go to celebrate New Year's Day?,Where do people from the UK go to celebrate New Year's Day? +Ne-ar-14,Holidays/Celebration/Leisure,Arabic (Algeria),Where do a family gather for Eid festivities in your country?,Where do a family gather for Eid festivities in the UK? +Ne-ar-16,Work life,Arabic (Algeria),"When is the weekend in your country (e.g. Monday, Tuesday)?","When is the weekend in the UK (e.g. Monday, Tuesday)?" +Ne-ar-17,Work life,Arabic (Algeria),"At what time do most people start work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","At what time do most people start work in the UK? (Provide in HH:MM format (e.g., 18:00, 09:00).)" +Ne-ar-18,Work life,Arabic (Algeria),"At what time do most people finish work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","At what time do most people finish work in the UK? (Provide in HH:MM format (e.g., 18:00, 09:00).)" +Ne-ar-20,Work life,Arabic (Algeria),What is considered to be a secure job in your country?,What is considered to be a secure job in the UK? +Ne-ar-24,Work life,Arabic (Algeria),Which city is the primary commercial hub in your country?,Which city is the primary commercial hub in the UK? +Ne-ar-25,Work life,Arabic (Algeria),What is the industry that pays the best in your country?,What is the industry that pays the best in the UK? +Ne-ar-26,Work life,Arabic (Algeria),What is the most famous public corporation in your country?,What is the most famous public corporation in the UK? +Ne-ar-31,Food,Arabic (Algeria),What is the most famous dish in your country?,What is the most famous dish in the UK? +Ne-ar-32,Food,Arabic (Algeria),What do people usually have for breakfast in your country?,What do people usually have for breakfast in the UK? +Ne-ar-33,Food,Arabic (Algeria),"When do people usually have lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","When do people usually have lunch in the UK? (Provide in HH:MM format (e.g., 18:00, 09:00).)" +Ne-ar-34,Food,Arabic (Algeria),What is typically indispensable in meals in your country?,What is typically indispensable in meals in the UK? +Ne-ar-36,Food,Arabic (Algeria),What is a typical festive meal in your country?,What is a typical festive meal in the UK? +Ne-ar-37,Food,Arabic (Algeria),Which fruit do people usually offer tourists/visitors from abroad in your country?,Which fruit do people usually offer tourists/visitors from abroad in the UK? +Ne-ar-38,Food,Arabic (Algeria),Which food do people usually offer as charity in your country?,Which food do people usually offer as charity in the UK? +Ne-ar-39,Food,Arabic (Algeria),What is the cheapest fast food in your country?,What is the cheapest fast food in the UK? +Ne-ar-43,Food,Arabic (Algeria),What do people usually have with tea in your country?,What do people usually have with tea in the UK? +Ne-ar-44,Food,Arabic (Algeria),What do people have with coffee in your country?,What do people have with coffee in the UK? +New-am-02,Food,Amharic (Ethiopia),What is the most popular traditional food in your country?,What is the most popular traditional food in the UK? +New-am-04,Food,Amharic (Ethiopia),What is the most popular dipping sauce in your country?,What is the most popular dipping sauce in the UK? +New-am-08,Food,Amharic (Ethiopia),What food is most often consumed during Christian fasting in your country?,What food is most often consumed during Christian fasting in the UK? +New-am-15,Food,Amharic (Ethiopia),What food is usually prepared when mothers give birth in your country?,What food is usually prepared when mothers give birth in the UK? +New-am-27,Sport,Amharic (Ethiopia),Who is the most popular female sportperson in your country?,Who is the most popular female sportperson in the UK? +New-am-34,Education,Amharic (Ethiopia),Where do most elementary school students prepare for their exams in your country?,Where do most primary school students prepare for their exams in the UK? +New-am-41,Education,Amharic (Ethiopia),"In your country, at which grade level do students take their first national-level examination?","In the UK, at which grade level do students take their first national-level examination?" +New-am-53,Work life,Amharic (Ethiopia),Which region in your country is widely known for its coffee/tea industry?,Which region in the UK is widely known for its coffee/tea industry? +New-am-54,Work life,Amharic (Ethiopia),Which region in your country is widely known for its livestock industry?,Which region in the UK is widely known for its livestock industry? +New-am-59,Work life,Amharic (Ethiopia),What is the main occupation of people living in deserts in your country?,What is the main occupation of people living in deserts in the UK? +New-am-60,Work life,Amharic (Ethiopia),Which animal is typically used for transportation in your country?,Which animal is typically used for transportation in the UK? +New-am-72,Family,Amharic (Ethiopia),What is the most popular comic book for children to read in your country?,What is the most popular comic book for children to read in the UK? +New-am-73,Family,Amharic (Ethiopia),What is the most popular YouTube channel for children in your country?,What is the most popular YouTube channel for children in the UK? +New-am-74,Family,Amharic (Ethiopia),What is the most popular talk show in your country?,What is the most popular talk show in the UK? +New-am-77,Holidays/Celebration/Leisure,Amharic (Ethiopia),What is the most famous religious holiday in your country?,What is the most famous religious holiday in the UK? +New-am-81,Holidays/Celebration/Leisure,Amharic (Ethiopia),"What is the busiest month for weddings in your country? (Provide Arabic numerals (e.g., 1) only.)","What is the busiest month for weddings in the UK? (Provide Arabic numerals (e.g., 1) only.)" +New-am-83,Holidays/Celebration/Leisure,Amharic (Ethiopia),What is the most popular traditional musical instrument in your country?,What is the most popular traditional musical instrument in the UK? +New-as-01,Food,Assamese (Assam),What is the main agricultural product produced in your country?,What is the main agricultural product produced in the UK? +New-as-02,Food,Assamese (Assam),What is the most popular wheat-based food item in your country?,What is the most popular wheat-based food item in the UK? +New-as-05,Food,Assamese (Assam),What is the most typical drink offered to guests when they visit households in your country?,What is the most typical drink offered to guests when they visit households in the UK? +New-as-07,Food,Assamese (Assam),What is the most popular dish cooked with fish in your country?,What is the most popular dish cooked with fish in the UK? +New-as-14,Food,Assamese (Assam),What food do people from your country like to eat during rainy weather?,What food do people from the UK like to eat during rainy weather? +New-as-15,Food,Assamese (Assam),What drink is commonly consumed in your country when the weather is hot?,What drink is commonly consumed in the UK when the weather is hot? +New-as-20,Sport,Assamese (Assam),What is the most popular indoor sport in your country?,What is the most popular indoor sport in the UK? +New-as-29,Sport,Assamese (Assam),What sport do men in your country like to watch?,What sport do men in the UK like to watch? +New-as-30,Sport,Assamese (Assam),What sport do women in your country like to watch?,What sport do women in the UK like to watch? +New-as-58,Work life,Assamese (Assam),What is the most popular beverage that people from your country like to drink in their workplace?,What is the most popular beverage that people from the UK like to drink in their workplace? +New-as-64,Family,Assamese (Assam),On which holiday do all family members tend to reunite in your country?,On which holiday do all family members tend to reunite in the UK? +New-as-76,Holidays/Celebration/Leisure,Assamese (Assam),What traditional games do families play during traditional holidays in your country?,What traditional games do families play during traditional holidays in the UK? +New-as-80,Holidays/Celebration/Leisure,Assamese (Assam),What type of clothing do people from your country wear during traditional festivals?,What type of clothing do people from the UK wear during traditional festivals? +New-as-89,Holidays/Celebration/Leisure,Assamese (Assam),What traditional festival accessories do people from your country wear?,What traditional festival accessories do people from the UK wear? +New-az-05,Food,Azerbaijani (Azerbaijan),What is the most famous region for alcohol production in your country?,What is the most famous region for alcohol production in the UK? +New-az-11,Food,Azerbaijani (Azerbaijan),What fruit do people from your country often eat in the summer season?,What fruit do people from the UK often eat in the summer season? +New-az-12,Food,Azerbaijani (Azerbaijan),Which region in your country is known for its seafood?,Which region in the UK is known for its seafood? +New-az-21,Sport,Azerbaijani (Azerbaijan),Which region in your country is the most popular skiing destination?,Which region in the UK is the most popular skiing destination? +New-az-26,Sport,Azerbaijani (Azerbaijan),Who is the most popular martial arts player in your country?,Who is the most popular martial arts player in the UK? +New-az-27,Sport,Azerbaijani (Azerbaijan),Which sport has been one of the fastest-growing in your country over the last decade?,Which sport has been one of the fastest-growing in the UK over the last decade? +New-az-39,Education,Azerbaijani (Azerbaijan),Which country is the most popular destination for students from your country studying abroad?,Which country is the most popular destination for students from the UK studying abroad? +New-az-49,Work life,Azerbaijani (Azerbaijan),"How many people work in a typical family in your country? (Provide Arabic numerals (e.g., 1) only.)","How many people work in a typical family in the UK? (Provide Arabic numerals (e.g., 1) only.)" +New-az-60,Family,Azerbaijani (Azerbaijan),"In your country, who takes care of kids when both parents are working?","In the UK, who takes care of kids when both parents are working?" +New-az-69,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),What is the preferred alcoholic beverage for men from your country?,What is the preferred alcoholic beverage for men from the UK? +New-az-70,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),What is the preferred alcoholic beverage for women from your country?,What is the preferred alcoholic beverage for women from the UK? +New-az-73,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),"How many people on average typically attend a wedding in your country? (Provide Arabic numerals (e.g., 1) only.)","How many people on average typically attend a wedding in the UK? (Provide Arabic numerals (e.g., 1) only.)" +New-ch-01,Food,Chinese (China),What kind of meat do people usually eat when they have barbecue in your country?,What kind of meat do people usually eat when they have barbecue in the UK? +New-ch-02,Food,Chinese (China),"When do people usually have breakfast in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","When do people usually have breakfast in the UK? (Provide in HH:MM format (e.g., 18:00, 09:00).)" +New-ch-04,Food,Chinese (China),What kinds of food do people usually eat for late-night snacks in your country?,What kinds of food do people usually eat for late-night snacks in the UK? +New-ch-05,Food,Chinese (China),What is the most famous spicy dish in your country?,What is the most famous spicy dish in the UK? +New-ch-07,Food,Chinese (China),What food items do people typically pair with hard liquor in your country?,What food items do people typically pair with hard liquor in the UK? +New-ch-08,Food,Chinese (China),What seasoning is indispensable in cooking in your country?,What essential seasoning is indispensable in cooking in the UK? +New-ch-09,Food,Chinese (China),What food do people typically consume when the weather is cold in your country?,What food do people typically consume when the weather is cold in the UK? +New-ch-13,Food,Chinese (China),What is the most famous alcohol brand in your country?,What is the most famous alcohol brand in the UK? +New-ch-14,Food,Chinese (China),What foods do people usually eat when they are sick in your country?,What foods do people usually eat when they are sick in the UK? +New-ch-15,Food,Chinese (China),What prepared/ready-to-eat food do people typically buy at supermarkets in your country?,What prepared/ready-to-eat food do people typically buy at supermarkets in the UK? +New-ch-16,Sport,Chinese (China),What is the most famous sports-related movie in your country?,What is the most famous sports-related movie in the UK? +New-ch-17,Sport,Chinese (China),What extreme sport do people generally wish to try the most in your country?,What extreme sport do people generally wish to try the most in the UK? +New-ch-18,Sport,Chinese (China),Which track and field event is the most popular to watch during competitions in your country?,Which track and field event is the most popular to watch during competitions in the UK? +New-ch-19,Sport,Chinese (China),Which gymnastics event is the most popular to watch during competitions in your country?,Which gymnastics event is the most popular to watch during competitions in the UK? +New-ch-23,Sport,Chinese (China),Who is the most famous table tennis player in your country?,Who is the most famous table tennis player in the UK? +New-ch-26,Sport,Chinese (China),"In the Winter Olympics, which event is the most popular to watch in your country?","In the Winter Olympics, which event is the most popular to watch in the UK?" +New-ch-27,Sport,Chinese (China),Who is the most famous boxer in your country?,Who is the most famous boxer in the UK? +New-ch-30,Sport,Chinese (China),Who is the most famous track and field athlete in your country?,Who is the most famous track and field athlete in the UK? +New-ch-31,Work life,Chinese (China),What job do parents most hope their children will pursue in your country?,What job do parents most hope their children will pursue in the UK? +New-ch-32,Work life,Chinese (China),What office software do people typically use in the workplace in your country?,What office software do people typically use in the workplace in the UK? +New-ch-38,Work life,Chinese (China),Which cities or regions are known for their import and export activities in your country?,Which cities or regions are known for their import and export activities in the UK? +New-ch-39,Work life,Chinese (China),What platform is commonly used in the e-commerce industry in your country?,What platform is commonly used in the e-commerce industry in the UK? +New-ch-44,Work life,Chinese (China),"How long is the typical probation period for new employees before signing a formal contract in your country? (e.g., 1 month).","How long is the typical probation period for new employees before signing a formal contract in the UK? (e.g., 1 month)." +New-ch-45,Work life,Chinese (China),Which industries do young people typically choose to start businesses in your country?,Which industries do young people typically choose to start businesses in the UK? +New-ch-49,Family,Chinese (China),What is the most common way for family members to communicate remotely in your country?,What is the most common way for family members to communicate remotely in the UK? +New-ch-51,Family,Chinese (China),What form of accommodation is typically booked for family trips in your country?,What form of accommodation is typically booked for family trips in the UK? +New-ch-54,Family,Chinese (China),Which fruit is usually prepared the most for family dinners in your country?,Which fruit is usually prepared the most for family dinners in the UK? +New-ch-64,Education,Chinese (China),"How many hours of classes do university students typically have per week in your country? (Provide Arabic numerals (e.g., 1) only.)","How many hours of classes do university students typically have per week in the UK? (Provide Arabic numerals (e.g., 1) only.)" +New-ch-66,Education,Chinese (China),"What is the typical tuition fee per semester for public high schools in your country? (Provide Arabic numerals (e.g., 1) only.)","What is the typical tuition fee per semester for public secondary schools in the UK? (Provide Arabic numerals (e.g., 1) only.)" +New-ch-70,Education,Chinese (China),What compulsory courses do university students have in common in your country?,What compulsory courses do university students have in common in the UK? +New-ch-71,Education,Chinese (China),"What is the average class size in high schools in your country? (Provide Arabic numerals (e.g., 1) only.)","What is the average class size in secondary schools in the UK? (Provide Arabic numerals (e.g., 1) only.)" +New-ch-72,Education,Chinese (China),Which major is considered most conducive to employment in your country?,Which major is considered most conducive to employment in the UK? +New-ch-73,Education,Chinese (China),What type of clubs are most popular among university students in your country?,What type of clubs are most popular among university students in the UK? +New-ch-74,Education,Chinese (China),What types of accommodation do university students in your country typically live in?,What types of accommodation do university students in the UK typically live in? +New-ch-75,Education,Chinese (China),"How long is each class period for secondary school students in your country (minutes)? (Provide Arabic numerals (e.g., 1) only.)","How long is each class period for secondary school students in the UK (minutes)? (Provide Arabic numerals (e.g., 1) only.)" +New-ch-78,Holidays/Celebration/Leisure,Chinese (China),What leisure activities do retired women typically like in your country?,What leisure activities do retired women typically like in the UK? +New-ch-79,Holidays/Celebration/Leisure,Chinese (China),What leisure activities do retired men typically like in your country?,What leisure activities do retired men typically like in the UK? +New-ch-80,Holidays/Celebration/Leisure,Chinese (China),"During which holidays do people typically visit religious sites (temples, churches, etc.) in your country?","During which holidays do people typically visit religious sites (temples, churches, etc.) in the UK?" +New-ch-81,Holidays/Celebration/Leisure,Chinese (China),What are the typical housewarming gifts in your country?,What are the typical housewarming gifts in the UK? +New-ch-82,Holidays/Celebration/Leisure,Chinese (China),"At what time do weddings typically start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","At what time do weddings typically start in the UK? (Provide in HH:MM format (e.g., 18:00, 09:00).)" +New-ch-83,Holidays/Celebration/Leisure,Chinese (China),Which city in your country hosts festivals the most?,Which city in the UK hosts festivals the most? +New-ch-84,Holidays/Celebration/Leisure,Chinese (China),What color of clothing do people typically wear when attending weddings in your country?,What color of clothing do people typically wear when attending weddings in the UK? +New-ch-85,Holidays/Celebration/Leisure,Chinese (China),What color of clothing do people typically wear when attending funerals in your country?,What color of clothing do people typically wear when attending funerals in the UK? +New-en-01,Food,English (UK),Which snack is eaten in the cinema in your country?,Which snack is eaten in the cinema in the UK? +New-en-02,Food,English (UK),What is the most popular chip/crisp flavour in your country?,What is the most popular chip/crisp flavour in the UK? +New-en-04,Food,English (UK),Who is a popular celebrity chef in your country?,Who is a popular celebrity chef in the UK? +New-en-05,Food,English (UK),Which food is a cost-effective and quick meal option in your country?,Which food is a cost-effective and quick meal option in the UK? +New-en-07,Food,English (UK),What are the most popular cooking shows in your country?,What are the most popular cooking shows in the UK? +New-en-08,Food,English (UK),What is the most popular chocolate brand in your country?,What is the most popular chocolate brand in the UK? +New-en-10,Food,English (UK),What is the most eaten cheese in your country?,What is the most eaten cheese in the UK? +New-en-11,Food,English (UK),What is the most disliked vegetable in your country?,What is the most disliked vegetable in the UK? +New-en-12,Food,English (UK),What food is most commonly found in food courts in your country?,What food is most commonly found in food courts in the UK? +New-en-17,Sport,English (UK),What are the most common cheering tools used by sports fans in your country?,What are the most common cheering tools used by sports fans in the UK? +New-en-18,Sport,English (UK),What do fans bring with them when attending a live game in your country?,What do fans bring with them when attending a live game in the UK? +New-en-19,Sport,English (UK),What is the most well known sporting stadium in your country?,What is the most well known sporting stadium in the UK? +New-en-23,Sport,English (UK),Who is the most famous Paralympian in your country?,Who is the most famous Paralympian in the UK? +New-en-26,Sport,English (UK),What is the best recognized sporting chant in your country?,What is the best recognized sporting chant in the UK? +New-en-38,Work life,English (UK),Which industries are known for more flexible working hours in your country?,Which industries are known for more flexible working hours in the UK? +New-en-41,Work life,English (UK),Who is the most well known and successful entrepreneur in your country?,Who is the most well known and successful entrepreneur in the UK? +New-en-47,Family,English (UK),What can typically be found in the back garden of houses in your country?,What can typically be found in the back garden of houses in the UK? +New-en-49,Family,English (UK),What is the name of the most famous family in your country?,What is the name of the most famous family in the UK? +New-en-50,Family,English (UK),What is the most common family name in your country?,What is the most common family name in the UK? +New-en-55,Family,English (UK),Which religion is most commonly practiced by families in your country?,Which religion is most commonly practiced by families in the UK? +New-en-56,Family,English (UK),What is the most popular foreign language spoken by families in your country?,What is the most popular foreign language spoken by families in the UK? +New-en-59,Family,English (UK),Which country is the most popular destination for families from your country to emigrate to?,Which country is the most popular destination for families from the UK to emigrate to? +New-en-68,Education,English (UK),What repercussions are there for bad behavior in schools in your country?,What repercussions are there for bad behavior in schools in the UK? +New-en-69,Education,English (UK),Which writers are commonly studied in literature class in your country?,Which writers are commonly studied in literature class in the UK? +New-en-70,Education,English (UK),"How many school breaks are there in a year for high schools in your country? (Provide Arabic numerals (e.g., 1) only.)","How many school breaks are there in a year for high schools in the UK? (Provide Arabic numerals (e.g., 1) only.)" +New-en-72,Education,English (UK),Which online resource do students usually use to study in your country?,Which online resource do students usually use to study in the UK? +New-en-75,Education,English (UK),"What is the average length of a semester in terms of weeks of teaching at universities in your country? (Provide Arabic numerals (e.g., 1) only.)","What is the average length of a semester in terms of weeks of teaching at universities in the UK? (Provide Arabic numerals (e.g., 1) only.)" +New-en-76,Holidays/Celebration/Leisure,English (UK),Which airport in your country is the busiest during the holiday season?,Which airport in the UK is the busiest during the holiday season? +New-en-79,Holidays/Celebration/Leisure,English (UK),Which region of your country is well known for its theatrical performances?,Which region of the UK is well known for its theatrical performances? +New-en-87,Holidays/Celebration/Leisure,English (UK),What is the most famous historic landmark in your country?,What is the most famous historic landmark in the UK? +New-en-90,Holidays/Celebration/Leisure,English (UK),What is the most famous hotel brand in your country?,What is the most famous hotel brand in the UK? +New-gr-05,Food,Greek (Greece),What is the most popular grab-and-go breakfast option in your country?,What is the most popular grab-and-go breakfast option in the UK? +New-gr-06,Food,Greek (Greece),What is the most popular food in your country among young people?,What is the most popular food in the UK among young people? +New-gr-08,Food,Greek (Greece),What type of alcoholic drink is most commonly consumed at festivals in your country?,What type of alcoholic drink is most commonly consumed at festivals in the UK? +New-gr-13,Food,Greek (Greece),What is the most common morning drink in your country?,What is the most common morning drink in the UK? +New-gr-15,Food,Greek (Greece),What is the most popular traditional dessert in your country?,What is the most popular traditional dessert in the UK? +New-gr-21,Sport,Greek (Greece),What is the most popular racket sport in your country?,What is the most popular racket sport in the UK? +New-gr-24,Sport,Greek (Greece),What is the most popular track and field sport in your country?,What is the most popular track and field sport in the UK? +New-gr-29,Sport,Greek (Greece),Which international sporting event is the most popular in your country?,Which international sporting event is the most popular in the UK? +New-gr-47,Work life,Greek (Greece),"How long (in minutes) are typical work breaks in your country, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)","How long (in minutes) are typical work breaks in the UK, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)" +New-gr-58,Work life,Greek (Greece),Which job is considered underpaid in your country?,Which job is considered underpaid in the UK? +New-gr-76,Holidays/Celebration/Leisure,Greek (Greece),What is the most common food served during Easter in your country?,What is the most common food served during Easter in the UK? +New-gr-82,Holidays/Celebration/Leisure,Greek (Greece),What is the most popular music genre among the elderly population in your country?,What is the most popular music genre among the elderly population in the UK? +New-gr-88,Holidays/Celebration/Leisure,Greek (Greece),What drink is usually offered at funerals in your country?,What drink is usually offered at funerals in the UK? +New-gr-89,Holidays/Celebration/Leisure,Greek (Greece),What drink is usually offered at weddings in your country?,What drink is usually offered at weddings in the UK? +New-ha-07,Food,Hausa (Northern Nigeria),What food originated from your country and can be found all over the world?,What food originated from the UK and can be found all over the world? +New-ha-08,Food,Hausa (Northern Nigeria),What food is typically disliked by children but enjoyed by the elderly in your country?,What food is typically disliked by children but enjoyed by the elderly in the UK? +New-ha-09,Food,Hausa (Northern Nigeria),What cooking utensil is most commonly used in your country?,What cooking utensil is most commonly used in the UK? +New-ha-13,Food,Hausa (Northern Nigeria),Which is the most popular vegetable in your country?,Which is the most popular vegetable in the UK? +New-ha-19,Sport,Hausa (Northern Nigeria),Which animal is used for sports in your country?,Which animal is used for sports in the UK? +New-ha-66,Family,Hausa (Northern Nigeria),What is the most popular wedding venue in your country?,What is the most popular wedding venue in the UK? +New-in-01,Food,Indonesian (Indonesia),Which coffee shop brand is the most popular in your country?,Which coffee shop brand is the most popular in the UK? +New-in-03,Food,Indonesian (Indonesia),What type of food from your country is typically served in restaurants overseas?,What type of food from the UK is typically served in restaurants overseas? +New-in-33,Work life,Indonesian (Indonesia),What region in your country is usually associated with mining?,What region in the UK is usually associated with mining? +New-in-34,Work life,Indonesian (Indonesia),What region in your country is usually associated with oil?,What region in the UK is usually associated with oil? +New-in-62,Education,Indonesian (Indonesia),What university in your country is popular because of its engineering major? (Provide the official name.),What university in the UK is popular because of its engineering major? (Provide the official name.) +New-in-63,Education,Indonesian (Indonesia),What university in your country is popular because of its school of medicine? (Provide the official name.),What university in the UK is popular because of its school of medicine? (Provide the official name.) +New-in-78,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most popular payment method in your country?,What is the most popular payment method in the UK? +New-in-80,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most famous theme park in your country?,What is the most famous theme park in the UK? +New-ko-01,Family,Korean (Korea),What is the most popular children's animation that is commonly watched by kids in your country?,What is the most popular children's animation that is commonly watched by kids in the UK? +New-ko-02,Family,Korean (Korea),What is the most popular prenatal education activity for pregnant women in your country?,What is the most popular prenatal education activity for pregnant women in the UK? +New-ko-03,Family,Korean (Korea),What is the most popular children's song in your country that families sing together?,What is the most popular children's song in the UK that families sing together? +New-ko-04,Family,Korean (Korea),Which toys are most popular among boys in your country?,Which toys are most popular among boys in the UK? +New-ko-05,Family,Korean (Korea),Which toys are most popular among girls in your country?,Which toys are most popular among girls in the UK? +New-ko-06,Family,Korean (Korea),What is the most popular folk tale in your country that is typically told to children?,What is the most popular folk tale in the UK that is typically told to children? +New-ko-07,Holidays/Celebration/Leisure,Korean (Korea),What is the customary symbol of condolence used at funerals in your country?,What is the customary symbol of condolence used at funerals in the UK? +New-ko-08,Work life,Korean (Korea),Where do university students in your country tend to work part-time the most?,Where do university students in the UK tend to work part-time the most? +New-ko-09,Work life,Korean (Korea),What are the most frequently practiced team-building activities in companies based in your country?,What are the most frequently practiced team-building activities in companies based in the UK? +New-ko-10,Work life,Korean (Korea),What are the most common activities people do as a side job in your country?,What are the most common activities people do as a side job in the UK? +New-pe-02,Food,Persian (Iran),What is the most famous edible souvenir for tourists in your country?,What is the most famous edible souvenir for tourists in the UK? +New-pe-06,Food,Persian (Iran),What is the most popular stew in your country?,What is the most popular stew in the UK? +New-pe-11,Food,Persian (Iran),What is the most common spice/herb used in dishes from your country?,What is the most common spice/herb used in dishes from the UK? +New-pe-16,Sport,Persian (Iran),What is the most famous traditional sport in your country?,What is the most famous traditional sport in the UK? +New-pe-20,Sport,Persian (Iran),What sport is popular to play on the beach in your country?,What sport is popular to play on the beach in the UK? +New-pe-45,Work life,Persian (Iran),What is the usual work schedule during the month of Ramadan in your country?,What is the usual work schedule during the month of Ramadan in the UK? +New-pe-47,Family,Persian (Iran),"When is Student's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)","When is Student's Day celebrated in the UK? (Provide in MM/DD format (e.g., 12/31).)" +New-pe-49,Family,Persian (Iran),Where do families gather to pray together in your country?,Where do families gather to pray together in the UK? +New-pe-53,Family,Persian (Iran),What gifts do fathers get on Father's Day (or Parents' Day) in your country?,What gifts do fathers get on Father's Day (or Parents' Day) in the UK? +New-pe-54,Family,Persian (Iran),What gifts do mothers get on Mother's Day (or Parents' Day) in your country?,What gifts do mothers get on Mother's Day (or Parents' Day) in the UK? +New-pe-59,Family,Persian (Iran),"How many generations typically live together in a household in your country? (Provide Arabic numerals (e.g., 12) only.)","How many generations typically live together in a household in the UK? (Provide Arabic numerals (e.g., 12) only.)" +New-pe-65,Education,Persian (Iran),"How many subjects are taught in secondary schools in your country? (Provide Arabic numerals (e.g., 12) only.)","How many subjects are taught in secondary schools in the UK? (Provide Arabic numerals (e.g., 12) only.)" +New-pe-66,Education,Persian (Iran),What is the most popular after school curricular in primary schools in your country?,What is the most popular after school curricular in primary schools in the UK? +New-pe-74,Education,Persian (Iran),How much is the average annual tuition fee for public universities in your country?,How much is the average annual tuition fee for public universities in the UK? +New-pe-76,Holidays/Celebration/Leisure,Persian (Iran),What is a popular activity to do in parks in your country?,What is a popular activity to do in parks in the UK? +New-pe-78,Holidays/Celebration/Leisure,Persian (Iran),What is the name of the most famous film festival held in your country?,What is the name of the most famous film festival held in the UK? +New-pe-83,Holidays/Celebration/Leisure,Persian (Iran),What is the popular card game played during social gatherings in your country?,What is the popular card game played during social gatherings in the UK? +New-pe-85,Holidays/Celebration/Leisure,Persian (Iran),Where is the most popular tourist destination abroad for people from your country?,Where is the most popular tourist destination abroad for people from the UK? +New-pe-86,Holidays/Celebration/Leisure,Persian (Iran),What is the name of the most famous tower in your country?,What is the name of the most famous tower in the UK? +New-spme-01,Food,Spanish (Mexico),What edible insect is eaten most often in your country?,What edible insect is eaten most often in the UK? +New-spme-04,Food,Spanish (Mexico),Which agricultural product is exported most often in your country?,Which agricultural product is exported most often in the UK? +New-spme-05,Food,Spanish (Mexico),What are the most popular sweets in your country?,What are the most popular sweets in the UK? +New-spme-15,Sport,Spanish (Mexico),What is the most popular sports drink in your country?,What is the most popular sports drink in the UK? +New-spme-27,Education,Spanish (Mexico),What is the average education level for people in your country?,What is the average education level for people in the UK? +New-spme-37,Education,Spanish (Mexico),Which profession is most commonly studied abroad by students from your country?,Which profession is most commonly studied abroad by students from the UK? +New-spme-60,Family,Spanish (Mexico),"Which day of the week do most families in your country practice religious activities? (e.g. Monday, Tuesday)","Which day of the week do most families in the UK practice religious activities? (e.g. Monday, Tuesday)" +New-spme-65,Family,Spanish (Mexico),What is the most popular way to celebrate Independence Day in your country?,What is the most popular way to celebrate Independence Day in the UK? +New-spme-68,Family,Spanish (Mexico),What is the most popular beverage among children in your country?,What is the most popular beverage among children in the UK? +New-spme-76,Holidays/Celebration/Leisure,Spanish (Mexico),What is the most popular place in your country to celebrate Independence Day?,What is the most popular place in the UK to celebrate Independence Day? +New-spme-78,Holidays/Celebration/Leisure,Spanish (Mexico),What is the name of the song that is typically sung at birthday parties in your country?,What is the name of the song that is typically sung at birthday parties in the UK? +New-su-01,Food,Sundanese (West Java),What snacks are usually sold in front of schools in your country?,What snacks are usually sold in front of schools in the UK? +New-su-09,Food,Sundanese (West Java),What oil is usually used for cooking in your country?,What oil is usually used for cooking in the UK? +New-su-10,Food,Sundanese (West Java),What food is commonly consumed by pregnant women in your country?,What food is commonly consumed by pregnant women in the UK? +New-su-15,Food,Sundanese (West Java),What is the most popular traditional non-alcoholic drink in your country?,What is the most popular traditional non-alcoholic drink in the UK? +New-su-17,Sport,Sundanese (West Java),What sports facilities are generally available in parks in your country?,What sports facilities are generally available in parks in the UK? +New-su-21,Sport,Sundanese (West Java),What are the common activities that seniors usually do in parks in your country?,What are the common activities that seniors usually do in parks in the UK? +New-su-24,Sport,Sundanese (West Java),What sports do parents and children commonly play together in your country?,What sports do parents and children commonly play together in the UK? +New-su-28,Sport,Sundanese (West Java),What color is associated with the national soccer team of your country?,What colour is associated with the national football team of the UK? +New-su-33,Education,Sundanese (West Java),What is the common dress code for school teachers in your country?,What is the common dress code for school teachers in the UK? +New-su-34,Education,Sundanese (West Java),What is the most popular extracurricular activity related to music in schools in your country?,What is the most popular extracurricular activity related to music in schools in the UK? +New-su-42,Education,Sundanese (West Java),What religion is mainly taught in schools in your country?,What religion is mainly taught in schools in the UK? +New-su-45,Education,Sundanese (West Java),"What date is Education Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)","What date is Education Day celebrated in the UK? (Provide in MM/DD format (e.g., 12/31).)" +New-su-50,Work life,Sundanese (West Java),What is the main occupation of people in mountainous areas in your country?,What is the main occupation of people in mountainous areas in the UK? +New-su-51,Work life,Sundanese (West Java),What is the main occupation of people in coastal areas in your country?,What is the main occupation of people in coastal areas in the UK? +New-su-57,Work life,Sundanese (West Java),What is the most common livestock raised in your country?,What is the most common livestock raised in the UK? +New-su-58,Work life,Sundanese (West Java),What animals are commonly used for agriculture in your country?,What animals are commonly used for agriculture in the UK? +New-su-59,Work life,Sundanese (West Java),What do farmers in your country typically wear to protect themselves from the heat whilst farming?,What do farmers in the UK typically wear to protect themselves from the heat whilst farming? +New-su-60,Work life,Sundanese (West Java),What do farmers in your country usually eat for lunch?,What do farmers in the UK usually eat for lunch? +New-su-71,Family,Sundanese (West Java),What gifts do parents generally give to their children for their birthdays in your country?,What gifts do parents generally give to their children for their birthdays in the UK? +New-su-75,Family,Sundanese (West Java),What type of vehicle do most families in your country generally own?,What type of vehicle do most families in the UK generally own? +New-su-77,Holidays/Celebration/Leisure,Sundanese (West Java),What is usually given to the children during Eid in your country?,What is usually given to the children during Eid in the UK? +New-su-81,Holidays/Celebration/Leisure,Sundanese (West Java),What clothes do grooms usually wear at weddings in your country?,What clothes do grooms usually wear at weddings in the UK? +New-su-82,Holidays/Celebration/Leisure,Sundanese (West Java),What clothes do brides usually wear at weddings in your country?,What clothes do brides usually wear at weddings in the UK? +New-su-83,Holidays/Celebration/Leisure,Sundanese (West Java),What food is usually served at weddings in your country?,What food is usually served at weddings in the UK? +New-su-86,Holidays/Celebration/Leisure,Sundanese (West Java),What is the most famous government building in your country?,What is the most famous government building in the UK? +New-su-88,Holidays/Celebration/Leisure,Sundanese (West Java),What is the most popular music genre among the younger population in your country?,What is the most popular music genre among the younger population in the UK? +Ni-en-02,Education,English (UK),"What time do secondary students in your country typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)","What time do secondary students in the UK typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)" +Ni-en-03,Education,English (UK),"At what age do people in your country typically go to university? (Provide Arabic numerals (e.g., 12) only.)","At what age do people in the UK typically go to university? (Provide Arabic numerals (e.g., 12) only.)" +Ni-en-06,Education,English (UK),"From what age do people need to attend compulsory education in your country? (Provide Arabic numerals (e.g., 12) only.)","From what age do people need to attend compulsory education in the UK? (Provide Arabic numerals (e.g., 12) only.)" +Ni-en-09,Education,English (UK),How many days a week do children attend school in your country? (Provide Arabic numerals (0~7) only.),How many days a week do children attend school in the UK? (Provide Arabic numerals (0~7) only.) +Ni-en-11,Education,English (UK),"In your country, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)","In the UK, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)" +Ni-en-12,Education,English (UK),What is the top university in your country? (Provide the official name.),What is the top university in the UK? (Provide the official name.) +Ni-en-13,Education,English (UK),"At what age do most people in your country graduate from university? (Provide Arabic numerals (e.g., 12) only.)","At what age do most people in the UK graduate from university? (Provide Arabic numerals (e.g., 12) only.)" +Ni-en-15,Education,English (UK),"At what age do children in your country generally start secondary school? (Provide Arabic numerals (e.g., 12) only.)","At what age do children in the UK generally start secondary school? (Provide Arabic numerals (e.g., 12) only.)" +Ni-en-17,Work life,English (UK),"How many hours a week does a full-time worker in your country typically work? (Provide Arabic numerals (e.g., 12) only.)","How many hours a week does a full-time worker in the UK typically work? (Provide Arabic numerals (e.g., 12) only.)" +Ni-en-19,Work life,English (UK),How many days a week does a full-time worker work in your country? (Provide Arabic numerals (0~7) only.),How many days a week does a full-time worker work in the UK? (Provide Arabic numerals (0~7) only.) +Ni-en-20,Work life,English (UK),"At what age do most people start working in your country? (Provide Arabic numerals (e.g., 12) only.)","At what age do most people start working in the UK? (Provide Arabic numerals (e.g., 12) only.)" +Ni-en-21,Work life,English (UK),"From what age is an individual allowed to work in your country? (Provide Arabic numerals (e.g., 12) only.)","From what age is an individual allowed to work in the UK? (Provide Arabic numerals (e.g., 12) only.)" +Ni-en-31,Holidays/Celebration/Leisure,English (UK),What do people in your country traditionally eat on Christmas Day?,What do people in the UK traditionally eat on Christmas Day? +Ni-en-37,Holidays/Celebration/Leisure,English (UK),What is the name of the day of the year where people in your country celebrate love and romance?,What is the name of the day of the year where people in the UK celebrate love and romance? +Ni-en-40,Holidays/Celebration/Leisure,English (UK),What is the most popular Christmas song in your country?,What is the most popular Christmas song in the UK? +Nu-in-04,Education,Indonesian (Indonesia),"How many semesters are there each academic year at high schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","How many terms are there each academic year at secondary schools in the UK? (Provide in Arabic numerals (e.g., 7, 8) only.)" +Nu-in-05,Education,Indonesian (Indonesia),In which month does the new school year typically begin in your country? (Provide Arabic numerals (1~12) only.),In which month does the new school year typically begin in the UK? (Provide Arabic numerals (1~12) only.) +Nu-in-06,Education,Indonesian (Indonesia),"When is National Teacher's Day commemorated in your country? (Provide in MM/DD format (e.g., 12/31).)","When is National Teacher's Day commemorated in the UK? (Provide in MM/DD format (e.g., 12/31).)" +Nu-in-11,Education,Indonesian (Indonesia),"At what time does elementary school start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","At what time does primary school start in the UK? (Provide in HH:MM format (e.g., 18:00, 09:00).)" +Nu-in-20,Family,Indonesian (Indonesia),"When is Children's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)","When is Children's Day celebrated in the UK? (Provide in MM/DD format (e.g., 12/31).)" +Nu-in-40,Work life,Indonesian (Indonesia),Which city is the main destination for job seekers in your country?,Which city is the main destination for job seekers in the UK? +Sa-en-1,Food,English (UK),What is your country's most popular fast food chain?,What is the UK's most popular fast food chain? +Sa-en-13,Food,English (UK),What is the food that is most divisive (either love or hate) in your country?,What is the food that is most divisive (either love or hate) in the UK? +Sa-en-16,Sport,English (UK),What is the most popular soccer team among the people from your country?,What is the most popular football team among the people from the UK? +Sa-en-22,Sport,English (UK),What is the most famous university in your country known for its sports team?,What is the most famous university in the UK known for its sports team? +Sa-en-31,Family,English (UK),What is your country's most popular family pet?,What is the UK's most popular family pet? +Sa-en-32,Family,English (UK),What is the most popular family TV show in your country?,What is the most popular family TV show in the UK? +Sa-en-37,Family,English (UK),What is the most popular family boardgame in your country?,What is the most popular family boardgame in the UK? +Sa-en-6,Food,English (UK),What is the most popular takeaway food in your country?,What is the most popular takeaway food in the UK? +Sa-en-7,Food,English (UK),What are popular snacks in your country?,What are popular snacks in the UK? +Sa-en-9,Food,English (UK),What do people from your country eat at the beach?,What do people from the UK eat at the beach? +Ta-pe-10,Family,Persian (Iran),"At what age do men usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)","At what age do men usually get married in the UK? (Provide Arabic numerals (e.g., 20) only.)" +Ta-pe-11,Family,Persian (Iran),"At what age do women usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)","At what age do women usually get married in the UK? (Provide Arabic numerals (e.g., 20) only.)" +Ta-pe-13,Family,Persian (Iran),"In your parents' generation, what was the average number of members in their family in your country? (Provide Arabic numerals (e.g., 20) only.)","In your parents' generation, what was the average number of members in their family in the UK? (Provide Arabic numerals (e.g., 20) only.)" +Ta-pe-17,Sport,Persian (Iran),"In the Olympic Games, which sport is the most popular in your country?","In the Olympic Games, which sport is the most popular in the UK?" +Ta-pe-21,Sport,Persian (Iran),Where do children usually play soccer in your country?,Where do children usually play football in the UK? +Ta-pe-22,Sport,Persian (Iran),Which daily exercise is popular among women in your country?,Which daily exercise is popular among women in the UK? +Ta-pe-23,Sport,Persian (Iran),Which daily exercise is popular among men in your country?,Which daily exercise is popular among men in the UK? +Ta-pe-25,Sport,Persian (Iran),"What is the most famous rivalry in a national sports league in your country? (e.g., ___ vs ___)","What is the most famous rivalry in a national sports league in the UK? (e.g., ___ vs ___)" +Ta-pe-29,Sport,Persian (Iran),Which professional sport is the highest paying in your country?,Which professional sport is the highest paying in the UK? +Ta-pe-30,Sport,Persian (Iran),What is/was the most popular sports-related TV program in your country?,What is/was the most popular sports-related TV program in the UK? +Ta-pe-32,Holidays/Celebration/Leisure,Persian (Iran),What day of the year is usually dedicated to fireworks in your country?,What day of the year is usually dedicated to fireworks in the UK? +Ta-pe-37,Holidays/Celebration/Leisure,Persian (Iran),What is the common symbol of New Year's Eve that is usually found in your country?,What is the common symbol of New Year's Eve that is usually found in the UK? +Ta-pe-42,Holidays/Celebration/Leisure,Persian (Iran),What food do people from your country usually eat on New Year's Eve?,What food do people from the UK usually eat on New Year's Eve? +Ta-pe-45,Holidays/Celebration/Leisure,Persian (Iran),What is usually eaten during the celebration of the longest night of the year in your country?,What is usually eaten during the celebration of the longest night of the year in the UK? +Th-en-01,Sport,English (US),What is the most popular summer sport in your country?,What is the most popular summer sport in the UK? +Th-en-03,Sport,English (US),What is the most popular professional sports league in your country?,What is the most popular professional sports league in the UK? +Th-en-05,Sport,English (US),What is the most popular women's sports team in your country?,What is the most popular women's sports team in the UK? +Th-en-09,Sport,English (US),What is the most popular tournament in your country?,What is the most popular tournament in the UK? +Th-en-11,Sport,English (US),Who is the most popular sportperson in your country?,Who is the most popular sportperson in the UK? +Th-en-12,Sport,English (US),In which sport has your country been most successful in international competitions?,In which sport has the UK been most successful in international competitions? +Th-en-15,Sport,English (US),What is the most popular winter sport in your country?,What is the most popular winter sport in the UK? +Th-en-19,Work life,English (US),What is a city or region in your country known for manufacturing industry?,What is a city or region in the UK known for manufacturing industry? +Th-en-21,Work life,English (US),What is regarded as the most important perk typically offered to employees in your country?,What is regarded as the most important perk typically offered to employees in the UK? +Th-en-22,Work life,English (US),What was the most catastrophic economic period for your country?,What was the most catastrophic economic period for the UK? +Th-en-24,Work life,English (US),What region in your country is a major hub for tech workers and start ups?,What region in the UK is a major hub for tech workers and start ups? +Th-en-27,Work life,English (US),What is the most important industry in your country?,What is the most important industry in the UK? +Th-en-35,Family,English (US),"Which one of the daily meals is commonly shared with family members in your country? (e.g., breakfast, lunch, dinner)","Which one of the daily meals is commonly shared with family members in the UK? (e.g., breakfast, lunch, dinner)" +Th-en-36,Family,English (US),What is a popular family activity with a child to do on weekends in your country?,What is a popular family activity with a child to do on weekends in the UK? +Th-en-37,Family,English (US),"At what age do children typically become independent from their parents in your country? (Provide Arabic numerals (e.g., 12) only.)","At what age do children typically become independent from their parents in the UK? (Provide Arabic numerals (e.g., 12) only.)" +Th-en-38,Family,English (US),What is the most important family holiday in your country?,What is the most important family holiday in the UK? +Th-en-39,Family,English (US),What is a popular family game in your country?,What is a popular family game in the UK? +Th-en-41,Family,English (US),"What is the average age for couples to have their first child in your country? (Provide Arabic numerals (e.g., 20) only.)","What is the average age for couples to have their first child in the UK? (Provide Arabic numerals (e.g., 20) only.)" +Th-en-43,Family,English (US),"How many cars are owned by a typical family in your country? (Provide Arabic numerals (e.g., 12) only.)","How many cars are owned by a typical family in the UK? (Provide Arabic numerals (e.g., 12) only.)" +Th-en-44,Family,English (US),What is your country's most popular food for family meals on weekends?,What is the UK's most popular food for family meals on weekends? +Th-en-45,Family,English (US),What is the most popular weekday evening family activity in your country?,What is the most popular weekday evening family activity in the UK? +Th-en-48,Education,English (US),What is the highest grade given to top-achieving high school students on assignments and exams in your country?,What is the highest grade given to top-achieving secondary school students on assignments and exams in the UK? +Th-en-49,Education,English (US),What is considered the most important exam for high school students in your country?,What is considered the most important exam for secondary school students in the UK? +Th-en-51,Education,English (US),Which subject is considered the most important for students in your country?,Which subject is considered the most important for students in the UK? +Th-en-53,Education,English (US),What is the most popular extracurricular social event at schools in your country?,What is the most popular extracurricular social event at schools in the UK? +Th-en-58,Education,English (US),What is the most advanced math subject learned before university in your country?,What is the most advanced math subject learned before university in the UK? +Tmp-ar-01,Education,Arabic (Algeria),Where do university students in your country usually go to study for their final exams?,Where do university students in the UK usually go to study for their final exams? +Tmp-ar-02,Education,Arabic (Algeria),What is a common public transport that people use to go to university in your country?,What is a common public transport that people use to go to university in the UK? +Tmp-ar-04,Education,Arabic (Algeria),What do elementary students in your country usually do after school?,What do primary school students in the UK usually do after school? diff --git a/data/questions/US_questions.csv b/data/questions/US_questions.csv new file mode 100644 index 0000000000000000000000000000000000000000..c3a911f58d4a89a560dd32bc76bf0f0720553bcf --- /dev/null +++ b/data/questions/US_questions.csv @@ -0,0 +1,501 @@ +ID,Topic,Source,Question,Translation +Al-en-01,Food,English (US),What is a common snack for preschool kids in your country?,What is a common snack for preschool kids in the US? +Al-en-02,Food,English (US),What is a popular food to go with beer in your country?,What is a popular food to go with beer in the US? +Al-en-04,Food,English (US),What is the most popular fruit in your country?,What is the most popular fruit in the US? +Al-en-06,Food,English (US),What is a common school cafeteria food in your country?,What is a common school cafeteria food in the US? +Al-en-08,Food,English (US),What are the most commonly eaten snacks at shopping malls in your country?,What are the most commonly eaten snacks at shopping malls in the US? +Al-en-09,Food,English (US),What is a popular snack at an amusement park in your country?,What is a popular snack at an amusement park in the US? +Al-en-16,Education,English (US),"At what age do kids start preschool in your country? (Provide Arabic numerals (e.g., 12) only.)","At what age do kids start preschool in the US? (Provide Arabic numerals (e.g., 12) only.)" +Al-en-17,Education,English (US),What is a popular afterschool sport for elementary schools in your country?,What is a popular afterschool sport for elementary schools in the US? +Al-en-18,Education,English (US),For which subject do elementary students get private education in your country?,For which subject do elementary students get private education in the US? +Al-en-19,Education,English (US),What is a popular second language for high school students in your country?,What is a popular second language for high school students in the US? +Al-en-21,Education,English (US),Which subject is the most important for gifted education in your country?,Which subject is the most important for gifted education in the US? +Al-en-32,Holidays/Celebration/Leisure,English (US),What is the main dish for Thanksgiving in your country?,What is the main dish for Thanksgiving in the US? +Al-en-33,Holidays/Celebration/Leisure,English (US),What do people do to celebrate Halloween in your country?,What do people do to celebrate Halloween in the US? +Al-en-34,Holidays/Celebration/Leisure,English (US),What do people do to celebrate New Year's Day in your country?,What do people do to celebrate New Year's Day in the US? +Al-en-35,Holidays/Celebration/Leisure,English (US),What do people do to celebrate Christmas in your country?,What do people do to celebrate Christmas in the US? +Al-en-36,Holidays/Celebration/Leisure,English (US),What food is associated with Halloween in your country?,What food is associated with Halloween in the US? +Al-en-37,Holidays/Celebration/Leisure,English (US),What food is associated with Christmas in your country?,What food is associated with Christmas in the US? +Al-en-38,Holidays/Celebration/Leisure,English (US),What food is associated with Valentine's day in your country?,What food is associated with Valentine's day in the US? +Al-en-39,Holidays/Celebration/Leisure,English (US),What do people eat on their birthday in your country?,What do people eat on their birthday in the US? +Al-en-40,Holidays/Celebration/Leisure,English (US),What is a popular outdoor place for families to have fun with little kids in your country?,What is a popular outdoor place for families to have fun with little kids in the US? +Al-en-43,Holidays/Celebration/Leisure,English (US),What is a popular indoor activity for families in your country?,What is a popular indoor activity for families in the US? +An-ar-02,Education,Arabic (Algeria),Where do university students have lunch in your country?,Where do university students have lunch in the US? +An-ar-03,Education,Arabic (Algeria),Which month is the final exam term usually scheduled at high schools in your country? (Provide Arabic numerals (1~12) only.),Which month is the final exam term usually scheduled at high schools in the US? (Provide Arabic numerals (1~12) only.) +An-ar-08,Education,Arabic (Algeria),"How many hours a day do students in your country usually spend at high school? (Provide Arabic numerals in integers (0~24), without any decimal points.)","How many hours a day do students in the US usually spend at high school? (Provide Arabic numerals in integers (0~24), without any decimal points.)" +An-ar-09,Education,Arabic (Algeria),"How many languages do students study at high school in your country? (Provide Arabic numerals (e.g., 5) only.)","How many languages do students study at high school in the US? (Provide Arabic numerals (e.g., 5) only.)" +An-ar-34,Sport,Arabic (Algeria),What is the most popular sport played in a team at school in your country?,What is the most popular sport played in a team at school in the US? +An-ar-35,Sport,Arabic (Algeria),Who is the most popular sport commentator in your country?,Who is the most popular sport commentator in the US? +An-ar-36,Sport,Arabic (Algeria),What is the most popular sport team in your country?,What is the most popular sport team in the US? +An-ar-43,Sport,Arabic (Algeria),What are the common places or venues where individuals in your country usually gather to watch sports broadcasts?,What are the common places or venues where individuals in the US usually gather to watch sports broadcasts? +Ca-sp-05,Food,Spanish (Spain),"How many meals per day do people from your country usually have? (Provide Arabic numerals (e.g., 5) only.)","How many meals per day do people from the US usually have? (Provide Arabic numerals (e.g., 5) only.)" +Ca-sp-06,Food,Spanish (Spain),Which is the most important meal of the day to people from your country?,Which is the most important meal of the day to people from the US? +Ca-sp-08,Food,Spanish (Spain),What is the most common ingredient used in your country's diet?,What is the most common ingredient used in the US's diet? +Ca-sp-09,Food,Spanish (Spain),What do people from your country usually eat for dessert?,What do people from the US usually eat for dessert? +Ca-sp-11,Food,Spanish (Spain),Which day of the week do people usually organize a family meal in your country?,Which day of the week do people usually organize a family meal in the US? +Ca-sp-14,Food,Spanish (Spain),Which is the most popular hot drink in your country?,Which is the most popular hot drink in the US? +Ca-sp-19,Holidays/Celebration/Leisure,Spanish (Spain),What do young people from your country usually drink at the night club?,What do young people from the US usually drink at the night club? +Ca-sp-21,Holidays/Celebration/Leisure,Spanish (Spain),At which month do people usually take holidays in your country? (Provide Arabic numerals (1~12) only.),At which month do people usually take holidays in the US? (Provide Arabic numerals (1~12) only.) +Ca-sp-29,Holidays/Celebration/Leisure,Spanish (Spain),What tradition is there in your country for New Year's Eve?,What tradition is there in the US for New Year's Eve? +Ca-sp-38,Family,Spanish (Spain),Which is the typical type of house for a family in your country?,Which is the typical type of house for a family in the US? +Ca-sp-41,Family,Spanish (Spain),Where do the dependent elderly usually live in your country?,Where do the dependent elderly usually live in the US? +Ca-sp-42,Family,Spanish (Spain),"How long (in weeks) is your country's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)","How long (in weeks) is the US's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)" +Ca-sp-43,Family,Spanish (Spain),"How long (in weeks) is your country's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)","How long (in weeks) is the US's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)" +Ca-sp-45,Family,Spanish (Spain),What type of destination is commonly chosen for a family vacation in your country?,What type of destination is commonly chosen for a family vacation in the US? +Gu-ch-05,Sport,Chinese (China),What sports do seniors like the most in your country?,What sports do seniors like the most in the US? +Gu-ch-06,Sport,Chinese (China),What sports do men like to play the most in your country?,What sports do men like to play the most in the US? +Gu-ch-07,Sport,Chinese (China),Who is the most famous basketball player in your country?,Who is the most famous basketball player in the US? +Gu-ch-08,Sport,Chinese (China),What is the most popular sports among children in your country?,What is the most popular sports among children in the US? +Gu-ch-09,Sport,Chinese (China),What sports do women like to play the most in your country?,What sports do women like to play the most in the US? +Gu-ch-11,Sport,Chinese (China),What sports event has your country won the most gold medals at the Olympics?,What sports event has the US won the most gold medals at the Olympics? +Gu-ch-15,Sport,Chinese (China),What sports do male students in university like to play the most in your country?,What sports do male students in university like to play the most in the US? +Gu-ch-16,Family,Chinese (China),"How many people are there in a family on average in your country? (Provide Arabic numerals (e.g., 12) only.)","How many people are there in a family on average in the US? (Provide Arabic numerals (e.g., 12) only.)" +Gu-ch-18,Family,Chinese (China),"How many children do couples usually have in your country? (Provide Arabic numerals (e.g., 12) only.)","How many children do couples usually have in the US? (Provide Arabic numerals (e.g., 12) only.)" +Gu-ch-31,Education,Chinese (China),"What is the duration of elementary school in years in your country? (Provide Arabic numerals (e.g., 12) only.)","What is the duration of elementary school in years in the US? (Provide Arabic numerals (e.g., 12) only.)" +Gu-ch-32,Education,Chinese (China),"What is the duration of compulsory education in years in your country? (Provide Arabic numerals (e.g., 12) only.)","What is the duration of compulsory education in years in the US? (Provide Arabic numerals (e.g., 12) only.)" +Gu-ch-33,Education,Chinese (China),"From which age do students start learning their second language in your country? (Provide Arabic numerals (e.g., 12) only.)","From which age do students start learning their second language in the US? (Provide Arabic numerals (e.g., 12) only.)" +Gu-ch-38,Education,Chinese (China),"What is the duration of undergraduate education in your country? (Provide Arabic numerals (e.g., 12) only.)","What is the duration of undergraduate education in the US? (Provide Arabic numerals (e.g., 12) only.)" +Gu-ch-40,Education,Chinese (China),"What time do younger elementary school students finish school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","What time do younger elementary school students finish school in the US? (Provide in HH:MM format (e.g., 18:00, 09:00).)" +Gu-ch-41,Education,Chinese (China),"How many musical instruments do elementary school students in your country typically play? (Provide Arabic numerals (e.g., 12) only.)","How many musical instruments do elementary school students in the US typically play? (Provide Arabic numerals (e.g., 12) only.)" +Ji-ko-02,Work life,Korean (South Korea),What day of the week do people in your country prefer to have company dinners?,What day of the week do people in the US prefer to have company dinners? +Ji-ko-03,Work life,Korean (South Korea),Which region/city has the highest number of financial companies in your country?,Which region/city has the highest number of financial companies in the US? +Ji-ko-07,Work life,Korean (South Korea),What is the most famous private company in your country?,What is the most famous private company in the US? +Ji-ko-08,Work life,Korean (South Korea),"What is the maximum number of hours one can work per week in your country? (Provide Arabic numerals (e.g., 12) only.)","What is the maximum number of hours one can work per week in the US? (Provide Arabic numerals (e.g., 12) only.)" +Ji-ko-09,Work life,Korean (South Korea),What do people typically eat during company get-together in your country?,What do people typically eat during company get-together in the US? +Ji-ko-14,Work life,Korean (South Korea),What is the representative export item of your country?,What is the representative export item of the US? +Ji-ko-15,Work life,Korean (South Korea),"How long (in hours) is the typical lunch break in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","How long (in hours) is the typical lunch break in the US? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)" +Ji-ko-16,Family,Korean (South Korea),Where do mothers stay for a certain period after childbirth for recovery in your country?,Where do mothers stay for a certain period after childbirth for recovery in the US? +Ji-ko-19,Family,Korean (South Korea),What is your country's most commonly given flower on Parents' Day?,What is the US's most commonly given flower on Parents' Day? +Ji-ko-22,Family,Korean (South Korea),What do people especially spend their first salary on in your country's society?,What do people especially spend their first salary on in the US's society? +Ji-ko-24,Family,Korean (South Korea),What is the most preferred recreational facility among children in your country?,What is the most preferred recreational facility among children in the US? +Ji-ko-25,Family,Korean (South Korea),What are the family-related holidays in your country?,What are the family-related holidays in the US? +Ji-ko-26,Family,Korean (South Korea),What are the key milestones associated with children's independence from their parents in your country's society?,What are the key milestones associated with children's independence from their parents in the US's society? +Ji-ko-27,Family,Korean (South Korea),What is the common gift you give when visiting elderly parents in your country?,What is the common gift you give when visiting elderly parents in the US? +Ji-ko-28,Family,Korean (South Korea),When is the first day that people celebrate after a child is born in your country?,When is the first day that people celebrate after a child is born in the US? +Ji-ko-29,Family,Korean (South Korea),Which age's birthday is celebrated the most grandly in your country's society?,Which age's birthday is celebrated the most grandly in the US's society? +Ji-ko-31,Education,Korean (South Korea),Where do middle and high school students in your country usually study for exams?,Where do middle and high school students in the US usually study for exams? +Ji-ko-33,Education,Korean (South Korea),Where do high school students in your country usually go after dinner?,Where do high school students in the US usually go after dinner? +Ji-ko-34,Education,Korean (South Korea),How do elementary school students in your country go to school?,How do elementary school students in the US go to school? +Ji-ko-35,Education,Korean (South Korea),What is the most common form of private education in your country?,What is the most common form of private education in the US? +Ji-ko-36,Education,Korean (South Korea),Which subject’s academy/private educational institute do middle or high students most frequently attend in your country?,Which subject’s academy/private educational institute do middle or high students most frequently attend in the US? +Ji-ko-37,Education,Korean (South Korea),What type of clothing do middle and high school students wear to school in your country?,What type of clothing do middle and high school students wear to school in the US? +Ji-ko-38,Education,Korean (South Korea),Which major is considered the most difficult to gain admission to in your country?,Which major is considered the most difficult to gain admission to in the US? +Ji-ko-39,Education,Korean (South Korea),What is the most commonly learned musical instrument by elementary school students in your country?,What is the most commonly learned musical instrument by elementary school students in the US? +Ji-ko-40,Education,Korean (South Korea),What do high school students typically do during break time in schools in your country?,What do high school students typically do during break time in schools in the US? +Ji-ko-41,Education,Korean (South Korea),What kind of shoes do students wear in schools in your country?,What kind of shoes do students wear in schools in the US? +Ji-ko-42,Education,Korean (South Korea),What are the required subjects in your country's university entrance exam?,What are the required subjects in the US's university entrance exam? +Ji-ko-44,Education,Korean (South Korea),Which region (within a city) in your country has the highest academic fervor?,Which region (within a city) in the US has the highest academic fervor? +Ji-ko-45,Education,Korean (South Korea),What do people look forward to the most at university festivals in your country?,What do people look forward to the most at university festivals in the US? +Jo-sp-01,Sport,Spanish (Spain),What is the second most popular sport in your country?,What is the second most popular sport in the US? +Jo-sp-02,Sport,Spanish (Spain),What is the most popular sport played without a ball in your country?,What is the most popular sport played without a ball in the US? +Jo-sp-09,Sport,Spanish (Spain),What sports are most associated with the upper class in your country?,What sports are most associated with the upper class in the US? +Jo-sp-13,Sport,Spanish (Spain),What is the most popular water sport in your country?,What is the most popular water sport in the US? +Jo-sp-14,Sport,Spanish (Spain),What is the most popular mental sport in your country?,What is the most popular mental sport in the US? +Jo-sp-18,Work life,Spanish (Spain),"How many holiday days per year does a standard worker gets in your country? (Provide Arabic numerals (e.g., 12) only.)","How many holiday days per year does a standard worker gets in the US? (Provide Arabic numerals (e.g., 12) only.)" +Jo-sp-19,Work life,Spanish (Spain),What region in your country has been traditionally associated with agriculture?,What region in the US has been traditionally associated with agriculture? +Jo-sp-21,Work life,Spanish (Spain),"What time, if any, do people usually leave work for lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","What time, if any, do people usually leave work for lunch in the US? (Provide in HH:MM format (e.g., 18:00, 09:00).)" +Jo-sp-31,Education,Spanish (Spain),"What time do high school students tend to leave school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","What time do high school students tend to leave school in the US? (Provide in HH:MM format (e.g., 18:00, 09:00).)" +Jo-sp-32,Education,Spanish (Spain),What sport do elementary school students tend to practice at school in your country?,What sport do elementary school students tend to practice at school in the US? +Jo-sp-36,Education,Spanish (Spain),"How long (in weeks) are summer vacations at elementary schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","How long (in weeks) are summer vacations at elementary schools in the US? (Provide in Arabic numerals (e.g., 7, 8) only.)" +Jo-sp-37,Education,Spanish (Spain),"How long (in weeks) are summer vacations at universities in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","How long (in weeks) are summer vacations at universities in the US? (Provide in Arabic numerals (e.g., 7, 8) only.)" +Jo-sp-39,Education,Spanish (Spain),"At what age does elementary education begin in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","At what age does elementary education begin in the US? (Provide in Arabic numerals (e.g., 7, 8) only.)" +Jo-sp-43,Education,Spanish (Spain),"How many languages are studied in elementary education besides your country's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)","How many languages are studied in elementary education besides the US's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)" +Jod-ch-01,Food,Chinese (China),What eating utensils do people commonly used in your country?,What eating utensils do people commonly used in the US? +Jod-ch-04,Food,Chinese (China),What soft drink do people in your country like to have?,What soft drink do people in the US like to have? +Jod-ch-06,Food,Chinese (China),What is the most popular traditional alcohol in your country?,What is the most popular traditional alcohol in the US? +Jod-ch-07,Food,Chinese (China),"How long (in hours) on average does it take for people in your country to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","How long (in hours) on average does it take for people in the US to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)" +Jod-ch-09,Food,Chinese (China),"What time do people usually have dinner in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","What time do people usually have dinner in the US? (Provide in HH:MM format (e.g., 18:00, 09:00).)" +Jod-ch-12,Food,Chinese (China),What kind of soup do people from your country like to have?,What kind of soup do people from the US like to have? +Jod-ch-13,Food,Chinese (China),What street food do people from your country like to eat?,What street food do people from the US like to eat? +Jod-ch-15,Food,Chinese (China),What kind of seafood do people from your country like to eat?,What kind of seafood do people from the US like to eat? +Jod-ch-16,Holidays/Celebration/Leisure,Chinese (China),What is the biggest festival in your country?,What is the biggest festival in the US? +Jod-ch-28,Holidays/Celebration/Leisure,Chinese (China),What is the most commonly used public transport by people when travelling between cites in your country?,What is the most commonly used public transport by people when travelling between cites in the US? +Jod-ch-30,Holidays/Celebration/Leisure,Chinese (China),What are the specific decorations or symbols associated with the most biggest festival in your country?,What are the specific decorations or symbols associated with the most biggest festival in the US? +Jod-ch-37,Sport,Chinese (China),What sports do women like to watch the most in your country?,What sports do women like to watch the most in the US? +Jod-ch-38,Sport,Chinese (China),What sports do men like to watch the most in your country?,What sports do men like to watch the most in the US? +Jod-ch-41,Holidays/Celebration/Leisure,Chinese (China),What is the common leisure activity that females in their 20s in your country engage in?,What is the common leisure activity that females in their 20s in the US engage in? +Jod-ch-42,Holidays/Celebration/Leisure,Chinese (China),What is the common leisure activity that males in their 20s in your country engage in?,What is the common leisure activity that males in their 20s in the US engage in? +Jod-ch-46,Work life,Chinese (China),"How long (in hours) do people usually take a break after lunch on a weekday in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","How long (in hours) do people usually take a break after lunch on a weekday in the US? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)" +Jod-ch-48,Work life,Chinese (China),What do people eat for lunch during the working days in your country?,What do people eat for lunch during the working days in the US? +Jod-ch-50,Work life,Chinese (China),"What is the average commute time (in minutes) for people in your country? (Provide Arabic numerals (e.g., 1) only.)","What is the average commute time (in minutes) for people in the US? (Provide Arabic numerals (e.g., 1) only.)" +Jod-ch-51,Work life,Chinese (China),What is the most common transportation that people take to get to work in your country?,What is the most common transportation that people take to get to work in the US? +Jod-ch-54,Work life,Chinese (China),"How long (in days) is the marriage leave in your country? (Provide Arabic numerals (e.g., 12) only.)","How long (in days) is the marriage leave in the US? (Provide Arabic numerals (e.g., 12) only.)" +Jod-ch-56,Work life,Chinese (China),"What is the typical retirement age for women in your country? (Provide Arabic numerals (e.g., 12) only.)","What is the typical retirement age for women in the US? (Provide Arabic numerals (e.g., 12) only.)" +Jod-ch-57,Work life,Chinese (China),"What is the typical retirement age for men in your country? (Provide Arabic numerals (e.g., 12) only.)","What is the typical retirement age for men in the US? (Provide Arabic numerals (e.g., 12) only.)" +Jod-ch-58,Work life,Chinese (China),Which profession is the most respected in your country?,Which profession is the most respected in the US? +Jod-ch-60,Work life,Chinese (China),What is the duration (in hours) of a typical workday in your country? (Provide Arabic numerals (0~24) only.),What is the duration (in hours) of a typical workday in the US? (Provide Arabic numerals (0~24) only.) +Jod-ch-61,Work life,Chinese (China),Which occupation is most preferred among females in your country?,Which occupation is most preferred among females in the US? +Jod-ch-62,Work life,Chinese (China),Which occupation is most preferred among males in your country?,Which occupation is most preferred among males in the US? +Ki-pe-17,Education,Persian (Iran),"On average, how far do students typically pursue their education in your country? (e.g., elementary, high school)","On average, how far do students typically pursue their education in the US? (e.g., elementary, high school)" +Ki-pe-24,Education,Persian (Iran),What language is taught in schools in your country besides English?,What language is taught in schools in the US besides English? +Ki-pe-30,Education,Persian (Iran),What days of the week are schools closed in your country?,What days of the week are schools closed in the US? +Ki-pe-32,Food,Persian (Iran),What food do the hosts usually prepare for the guests in your country?,What food do the hosts usually prepare for the guests in the US? +Ki-pe-34,Food,Persian (Iran),What is the usual drink in the breakfast in your country?,What is the usual drink in the breakfast in the US? +Ki-pe-36,Food,Persian (Iran),"Except the food original from your country, which country's food is more popular in your country?","Except the food original from the US, which country's food is more popular in the US?" +Ki-pe-39,Food,Persian (Iran),What food is usually prepared for a family picnic in your country?,What food is usually prepared for a family picnic in the US? +Ki-pe-40,Food,Persian (Iran),Which food from your country is considered disgusting by the rest of the world?,Which food from the US is considered disgusting by the rest of the world? +Ki-pe-43,Food,Persian (Iran),What is the name of the popular bread in your country?,What is the name of the popular bread in the US? +Ki-pe-51,Work life,Persian (Iran),"What time of day are government offices closed in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","What time of day are government offices closed in the US? (Provide in HH:MM format (e.g., 18:00, 09:00).)" +Ki-pe-53,Work life,Persian (Iran),"What is the normal start time of government offices in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","What is the normal start time of government offices in the US? (Provide in HH:MM format (e.g., 18:00, 09:00).)" +Kik-in-01,Holidays/Celebration/Leisure,Indonesian (Indonesia),What national holiday has the longest duration in your country?,What national holiday has the longest duration in the US? +Kik-in-02,Holidays/Celebration/Leisure,Indonesian (Indonesia),What are the common activities people from your country do to celebrate Independence day?,What are the common activities people from the US do to celebrate Independence day? +Kik-in-04,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is installed in front of the house when a family member dies in your country?,What is installed in front of the house when a family member dies in the US? +Kik-in-05,Holidays/Celebration/Leisure,Indonesian (Indonesia),When is a pregnancy celebration or ceremony usually held in your country?,When is a pregnancy celebration or ceremony usually held in the US? +Kik-in-06,Holidays/Celebration/Leisure,Indonesian (Indonesia),What event is usually held before a wedding in your country?,What event is usually held before a wedding in the US? +Kik-in-07,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is usually shared to the children during (Lunar) New Year in your country?,What is usually shared to the children during (Lunar) New Year in the US? +Kik-in-08,Holidays/Celebration/Leisure,Indonesian (Indonesia),What activities are usually done days before Ramadan in your country?,What activities are usually done days before Ramadan in the US? +Kik-in-10,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most popular tourist attraction for foreign visitors in your country?,What is the most popular tourist attraction for foreign visitors in the US? +Kik-in-11,Holidays/Celebration/Leisure,Indonesian (Indonesia),"What is the most popular religious sites (temple, church, etc.) for tourism in your country?","What is the most popular religious sites (temple, church, etc.) for tourism in the US?" +Kik-in-15,Holidays/Celebration/Leisure,Indonesian (Indonesia),What clothes do women usually wear on graduation commencement ceremony in your country?,What clothes do women usually wear on graduation commencement ceremony in the US? +Kik-in-16,Food,Indonesian (Indonesia),What drink is commonly consumed in your country when the weather is cold?,What drink is commonly consumed in the US when the weather is cold? +Kik-in-17,Food,Indonesian (Indonesia),What fruit is more commonly sold and found during Ramadan in your country?,What fruit is more commonly sold and found during Ramadan in the US? +Kik-in-24,Food,Indonesian (Indonesia),What carbohydrate is usually served with chicken in a fast-food restaurant in your country?,What carbohydrate is usually served with chicken in a fast-food restaurant in the US? +Kik-in-31,Sport,Indonesian (Indonesia),What is the most famous martial art sports in your country?,What is the most famous martial art sports in the US? +Kik-in-34,Sport,Indonesian (Indonesia),What sports are often broadcasted on national television in your country?,What sports are often broadcasted on national television in the US? +Kik-in-35,Sport,Indonesian (Indonesia),What sports were popular among people from your country during the COVID-19 pandemic?,What sports were popular among people from the US during the COVID-19 pandemic? +Kik-in-36,Sport,Indonesian (Indonesia),Who is the most popular soccer coach in your country?,Who is the most popular soccer coach in the US? +Kik-in-37,Sport,Indonesian (Indonesia),What soccer teams in your country are famous for their intense rivalry? (e.g. ___ vs ___),What soccer teams in the US are famous for their intense rivalry? (e.g. ___ vs ___) +Kik-in-38,Sport,Indonesian (Indonesia),What are the names of soccer supporters in your country who are famous for their intense rivalry? (e.g. ___ vs ___),What are the names of soccer supporters in the US who are famous for their intense rivalry? (e.g. ___ vs ___) +Kik-in-40,Sport,Indonesian (Indonesia),Who is the most famous male badminton player in your country?,Who is the most famous male badminton player in the US? +Kik-in-41,Sport,Indonesian (Indonesia),Who is the most famous female badminton player in your country?,Who is the most famous female badminton player in the US? +Kik-in-44,Sport,Indonesian (Indonesia),What sport gets the most support from the government in your country?,What sport gets the most support from the government in the US? +Kik-in-45,Sport,Indonesian (Indonesia),What sports field facilities are usually available at schools in your country?,What sports field facilities are usually available at schools in the US? +Na-ko-02,Food,Korean (South Korea),What cafe beverage do people from your country most commonly enjoy?,What cafe beverage do people from the US most commonly enjoy? +Na-ko-04,Food,Korean (South Korea),What is the preferred hangover cure food for people from your country?,What is the preferred hangover cure food for people from the US? +Na-ko-05,Food,Korean (South Korea),What is the typical delivery food in your country?,What is the typical delivery food in the US? +Na-ko-07,Food,Korean (South Korea),What type of meat is consumed most by people from your country?,What type of meat is consumed most by people from the US? +Na-ko-08,Food,Korean (South Korea),What fruit do people from your country often eat in the autumn season?,What fruit do people from the US often eat in the autumn season? +Na-ko-09,Food,Korean (South Korea),What side dish is the most commonly served on a dining table in your country?,What side dish is the most commonly served on a dining table in the US? +Na-ko-11,Food,Korean (South Korea),What do people from your country eat while watching a soccer game?,What do people from the US eat while watching a soccer game? +Na-ko-15,Food,Korean (South Korea),What is the representative nourishing food in your country?,What is the representative nourishing food in the US? +Na-ko-16,Sport,Korean (South Korea),Who is the most famous soccer player in your country?,Who is the most famous soccer player in the US? +Na-ko-17,Sport,Korean (South Korea),What sports do male students enjoy during lunch time at school in your country?,What sports do male students enjoy during lunch time at school in the US? +Na-ko-18,Sport,Korean (South Korea),What is the most common sport girls participate in during physical education classes in your country?,What is the most common sport girls participate in during physical education classes in the US? +Na-ko-19,Sport,Korean (South Korea),Who is the most popular volleyball player in your country?,Who is the most popular volleyball player in the US? +Na-ko-20,Sport,Korean (South Korea),What sports event do people from your country passionately support the most in international competitions?,What sports event do people from the US passionately support the most in international competitions? +Na-ko-22,Sport,Korean (South Korea),Which country is considered the biggest rival in soccer matches for your country?,Which country is considered the biggest rival in soccer matches for the US? +Na-ko-23,Sport,Korean (South Korea),What type of sports academies do children attend the most in your country?,What type of sports academies do children attend the most in the US? +Na-ko-24,Sport,Korean (South Korea),What is the most commonly eaten food in sports stadiums while watching games in your country?,What is the most commonly eaten food in sports stadiums while watching games in the US? +Na-ko-25,Sport,Korean (South Korea),What are the typical sports played in your country's school sports day?,What are the typical sports played in the US's school sports day? +Na-ko-26,Sport,Korean (South Korea),What are the popular sports among the middle-aged population in your country?,What are the popular sports among the middle-aged population in the US? +Na-ko-28,Sport,Korean (South Korea),Who is the most popular winter sports player in your country?,Who is the most popular winter sports player in the US? +Na-ko-29,Sport,Korean (South Korea),Who is the most famous swimmer in your country?,Who is the most famous swimmer in the US? +Na-ko-30,Sport,Korean (South Korea),What is the most popular e-sports game in your country?,What is the most popular e-sports game in the US? +Na-ko-33,Holidays/Celebration/Leisure,Korean (South Korea),What symbolic food do people from your country eat on (Lunar) New Year?,What symbolic food do people from the US eat on (Lunar) New Year? +Na-ko-37,Holidays/Celebration/Leisure,Korean (South Korea),What is the most popular domestic vacation spot for people from your country?,What is the most popular domestic vacation spot for people from the US? +Na-ko-38,Holidays/Celebration/Leisure,Korean (South Korea),What is the most common wedding gift between bride and groom in your country?,What is the most common wedding gift between bride and groom in the US? +Na-ko-39,Holidays/Celebration/Leisure,Korean (South Korea),What is typically given as a congratulatory gesture when attending a friend's wedding in your country?,What is typically given as a congratulatory gesture when attending a friend's wedding in the US? +Na-ko-40,Holidays/Celebration/Leisure,Korean (South Korea),"How long (in days) does a funeral typically last in your country? (Provide Arabic numerals (e.g., 12) only.)","How long (in days) does a funeral typically last in the US? (Provide Arabic numerals (e.g., 12) only.)" +Na-ko-41,Holidays/Celebration/Leisure,Korean (South Korea),What should you prepare as a condolence offering when attending a funeral in your country?,What should you prepare as a condolence offering when attending a funeral in the US? +Na-ko-42,Holidays/Celebration/Leisure,Korean (South Korea),What type of food is commonly provided at funeral parlors in your country?,What type of food is commonly provided at funeral parlors in the US? +Na-ko-43,Holidays/Celebration/Leisure,Korean (South Korea),What do people do in your country in the morning of the (Lunar) New Year?,What do people do in the US in the morning of the (Lunar) New Year? +Na-ko-44,Holidays/Celebration/Leisure,Korean (South Korea),When is the day with your country's most severe nationwide traffic congestion?,When is the day with the US's most severe nationwide traffic congestion? +Na-ko-45,Holidays/Celebration/Leisure,Korean (South Korea),What is the most popular honeymoon destination in your country?,What is the most popular honeymoon destination in the US? +Ne-ar-05,Holidays/Celebration/Leisure,Arabic (Algeria),What is the most important national holiday in your country?,What is the most important national holiday in the US? +Ne-ar-06,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Ramadan?,What do people from the US eat in Ramadan? +Ne-ar-09,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Eid ul Fitr?,What do people from the US eat in Eid ul Fitr? +Ne-ar-10,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Eid ul Adha?,What do people from the US eat in Eid ul Adha? +Ne-ar-11,Holidays/Celebration/Leisure,Arabic (Algeria),Where do people from your country go to celebrate New Year's Day?,Where do people from the US go to celebrate New Year's Day? +Ne-ar-14,Holidays/Celebration/Leisure,Arabic (Algeria),Where do a family gather for Eid festivities in your country?,Where do a family gather for Eid festivities in the US? +Ne-ar-16,Work life,Arabic (Algeria),"When is the weekend in your country (e.g. Monday, Tuesday)?","When is the weekend in the US (e.g. Monday, Tuesday)?" +Ne-ar-17,Work life,Arabic (Algeria),"At what time do most people start work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","At what time do most people start work in the US? (Provide in HH:MM format (e.g., 18:00, 09:00).)" +Ne-ar-18,Work life,Arabic (Algeria),"At what time do most people finish work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","At what time do most people finish work in the US? (Provide in HH:MM format (e.g., 18:00, 09:00).)" +Ne-ar-20,Work life,Arabic (Algeria),What is considered to be a secure job in your country?,What is considered to be a secure job in the US? +Ne-ar-24,Work life,Arabic (Algeria),Which city is the primary commercial hub in your country?,Which city is the primary commercial hub in the US? +Ne-ar-25,Work life,Arabic (Algeria),What is the industry that pays the best in your country?,What is the industry that pays the best in the US? +Ne-ar-26,Work life,Arabic (Algeria),What is the most famous public corporation in your country?,What is the most famous public corporation in the US? +Ne-ar-31,Food,Arabic (Algeria),What is the most famous dish in your country?,What is the most famous dish in the US? +Ne-ar-32,Food,Arabic (Algeria),What do people usually have for breakfast in your country?,What do people usually have for breakfast in the US? +Ne-ar-33,Food,Arabic (Algeria),"When do people usually have lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","When do people usually have lunch in the US? (Provide in HH:MM format (e.g., 18:00, 09:00).)" +Ne-ar-34,Food,Arabic (Algeria),What is typically indispensable in meals in your country?,What is typically indispensable in meals in the US? +Ne-ar-36,Food,Arabic (Algeria),What is a typical festive meal in your country?,What is a typical festive meal in the US? +Ne-ar-37,Food,Arabic (Algeria),Which fruit do people usually offer tourists/visitors from abroad in your country?,Which fruit do people usually offer tourists/visitors from abroad in the US? +Ne-ar-38,Food,Arabic (Algeria),Which food do people usually offer as charity in your country?,Which food do people usually offer as charity in the US? +Ne-ar-39,Food,Arabic (Algeria),What is the cheapest fast food in your country?,What is the cheapest fast food in the US? +Ne-ar-43,Food,Arabic (Algeria),What do people usually have with tea in your country?,What do people usually have with tea in the US? +Ne-ar-44,Food,Arabic (Algeria),What do people have with coffee in your country?,What do people have with coffee in the US? +New-am-02,Food,Amharic (Ethiopia),What is the most popular traditional food in your country?,What is the most popular traditional food in the US? +New-am-04,Food,Amharic (Ethiopia),What is the most popular dipping sauce in your country?,What is the most popular dipping sauce in the US? +New-am-08,Food,Amharic (Ethiopia),What food is most often consumed during Christian fasting in your country?,What is food the most commonly consumed during Christian's fasting in the US? +New-am-15,Food,Amharic (Ethiopia),What food is usually prepared when mothers give birth in your country?,What food is usually prepared when mothers give birth in the US? +New-am-27,Sport,Amharic (Ethiopia),Who is the most popular female sportperson in your country?,Who is the most popular female sportperson in the US? +New-am-34,Education,Amharic (Ethiopia),Where do most elementary school students prepare for their exams in your country?,Where do most elementary school students prepare for their exams in the US? +New-am-41,Education,Amharic (Ethiopia),"In your country, at which grade level do students take their first national-level examination?","In the US, at which grade level do students take their first national-level examination?" +New-am-53,Work life,Amharic (Ethiopia),Which region in your country is widely known for its coffee/tea industry?,Which region in the US is widely known for its coffee/tea industry? +New-am-54,Work life,Amharic (Ethiopia),Which region in your country is widely known for its livestock industry?,Which region in the US is widely known for its livestock industry? +New-am-59,Work life,Amharic (Ethiopia),What is the main occupation of people living in deserts in your country?,What is the main occupation of people living in deserts in the US? +New-am-60,Work life,Amharic (Ethiopia),Which animal is typically used for transportation in your country?,Which animal is typically used for transportation in the US? +New-am-72,Family,Amharic (Ethiopia),What is the most popular comic book for children to read in your country?,What is the most popular comic book for children to read in the US? +New-am-73,Family,Amharic (Ethiopia),What is the most popular YouTube channel for children in your country?,What is the most popular YouTube channel for children in the US? +New-am-74,Family,Amharic (Ethiopia),What is the most popular talk show in your country?,What is the most popular talk show in the US? +New-am-77,Holidays/Celebration/Leisure,Amharic (Ethiopia),What is the most famous religious holiday in your country?,What is the most famous religious holiday in the US? +New-am-81,Holidays/Celebration/Leisure,Amharic (Ethiopia),"What is the busiest month for weddings in your country? (Provide Arabic numerals (e.g., 1) only.)","What is the busiest month for weddings in the US? (Provide Arabic numerals (e.g., 1) only.)" +New-am-83,Holidays/Celebration/Leisure,Amharic (Ethiopia),What is the most popular traditional musical instrument in your country?,What is the most popular traditional musical instrument in the US? +New-as-01,Food,Assamese (Assam),What is the main agricultural product produced in your country?,What is the main agricultural product produced in the US? +New-as-02,Food,Assamese (Assam),What is the most popular wheat-based food item in your country?,What is the most popular wheat-based food item in the US? +New-as-05,Food,Assamese (Assam),What is the most typical drink offered to guests when they visit households in your country?,What is the most typical drink offered to guests when they visit households in the US? +New-as-07,Food,Assamese (Assam),What is the most popular dish cooked with fish in your country?,What is the most popular dish cooked with fish in the US? +New-as-14,Food,Assamese (Assam),What food do people from your country like to eat during rainy weather?,What food do people from the US like to eat during rainy weather? +New-as-15,Food,Assamese (Assam),What drink is commonly consumed in your country when the weather is hot?,What drink is commonly consumed in the US when the weather is hot? +New-as-20,Sport,Assamese (Assam),What is the most popular indoor sport in your country?,What is the most popular indoor sport in the US? +New-as-29,Sport,Assamese (Assam),What sport do men in your country like to watch?,What sport do men in the US like to watch? +New-as-30,Sport,Assamese (Assam),What sport do women in your country like to watch?,What sport do women in the US like to watch? +New-as-58,Work life,Assamese (Assam),What is the most popular beverage that people from your country like to drink in their workplace?,What is the most popular beverage that people from the US like to drink in their workplace? +New-as-64,Family,Assamese (Assam),On which holiday do all family members tend to reunite in your country?,On which holiday do all family members tend to reunite in the US? +New-as-76,Holidays/Celebration/Leisure,Assamese (Assam),What traditional games do families play during traditional holidays in your country?,What traditional games do families play during traditional holidays in the US? +New-as-80,Holidays/Celebration/Leisure,Assamese (Assam),What type of clothing do people from your country wear during traditional festivals?,What type of clothing do people from the US wear during traditional festivals? +New-as-89,Holidays/Celebration/Leisure,Assamese (Assam),What traditional festival accessories do people from your country wear?,What traditional festival accessories do people from the US wear? +New-az-05,Food,Azerbaijani (Azerbaijan),What is the most famous region for alcohol production in your country?,What is the most famous region for alcohol production in the US? +New-az-11,Food,Azerbaijani (Azerbaijan),What fruit do people from your country often eat in the summer season?,What fruit do people from the US often eat in the summer season? +New-az-12,Food,Azerbaijani (Azerbaijan),Which region in your country is known for its seafood?,Which region in the US is known for its seafood? +New-az-21,Sport,Azerbaijani (Azerbaijan),Which region in your country is the most popular skiing destination?,Which region in the US is the most popular skiing destination? +New-az-26,Sport,Azerbaijani (Azerbaijan),Who is the most popular martial arts player in your country?,Who is the most popular martial arts player in the US? +New-az-27,Sport,Azerbaijani (Azerbaijan),Which sport has been one of the fastest-growing in your country over the last decade?,Which sport has been one of the fastest-growing in the US over the last decade? +New-az-39,Education,Azerbaijani (Azerbaijan),Which country is the most popular destination for students from your country studying abroad?,Which country is the most popular destination for students from the US studying abroad? +New-az-49,Work life,Azerbaijani (Azerbaijan),"How many people work in a typical family in your country? (Provide Arabic numerals (e.g., 1) only.)","How many people work in a typical family in the US? (Provide Arabic numerals (e.g., 1) only.)" +New-az-60,Family,Azerbaijani (Azerbaijan),"In your country, who takes care of kids when both parents are working?","In the US, who takes care of kids when both parents are working?" +New-az-69,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),What is the preferred alcoholic beverage for men from your country?,What is the preferred alcoholic beverage for men from the US? +New-az-70,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),What is the preferred alcoholic beverage for women from your country?,What is the preferred alcoholic beverage for women from the US? +New-az-73,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),"How many people on average typically attend a wedding in your country? (Provide Arabic numerals (e.g., 1) only.)","How many people on average typically attend a wedding in the US? (Provide Arabic numerals (e.g., 1) only.)" +New-ch-01,Food,Chinese (China),What kind of meat do people usually eat when they have barbecue in your country?,What kind of meat do people usually eat when they have barbecue in the US? +New-ch-02,Food,Chinese (China),"When do people usually have breakfast in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","When do people usually have breakfast in the US? (Provide in HH:MM format (e.g., 18:00, 09:00).)" +New-ch-04,Food,Chinese (China),What kinds of food do people usually eat for late-night snacks in your country?,What kinds of food do people usually eat for late-night snacks in the US? +New-ch-05,Food,Chinese (China),What is the most famous spicy dish in your country?,What is the most famous spicy dish in the US? +New-ch-07,Food,Chinese (China),What food items do people typically pair with hard liquor in your country?,What food items do people typically pair with hard liquor in the US? +New-ch-08,Food,Chinese (China),What seasoning is indispensable in cooking in your country?,What essential seasoning is indispensable in cooking in the US? +New-ch-09,Food,Chinese (China),What food do people typically consume when the weather is cold in your country?,What food do people typically consume when the weather is cold in the US? +New-ch-13,Food,Chinese (China),What is the most famous alcohol brand in your country?,What is the most famous alcohol brand in the US? +New-ch-14,Food,Chinese (China),What foods do people usually eat when they are sick in your country?,What foods do people usually eat when they are sick in the US? +New-ch-15,Food,Chinese (China),What prepared/ready-to-eat food do people typically buy at supermarkets in your country?,What prepared/ready-to-eat food do people typically buy at supermarkets in the US? +New-ch-16,Sport,Chinese (China),What is the most famous sports-related movie in your country?,What is the most famous sports-related movie in the US? +New-ch-17,Sport,Chinese (China),What extreme sport do people generally wish to try the most in your country?,What extreme sport do people generally wish to try the most in the US? +New-ch-18,Sport,Chinese (China),Which track and field event is the most popular to watch during competitions in your country?,Which track and field event is the most popular to watch during competitions in the US? +New-ch-19,Sport,Chinese (China),Which gymnastics event is the most popular to watch during competitions in your country?,Which gymnastics event is the most popular to watch during competitions in the US? +New-ch-23,Sport,Chinese (China),Who is the most famous table tennis player in your country?,Who is the most famous table tennis player in the US? +New-ch-26,Sport,Chinese (China),"In the Winter Olympics, which event is the most popular to watch in your country?","In the Winter Olympics, which event is the most popular to watch in the US?" +New-ch-27,Sport,Chinese (China),Who is the most famous boxer in your country?,Who is the most famous boxer in the US? +New-ch-30,Sport,Chinese (China),Who is the most famous track and field athlete in your country?,Who is the most famous track and field athlete in the US? +New-ch-31,Work life,Chinese (China),What job do parents most hope their children will pursue in your country?,What job do parents most hope their children will pursue in the US? +New-ch-32,Work life,Chinese (China),What office software do people typically use in the workplace in your country?,What office software do people typically use in the workplace in the US? +New-ch-38,Work life,Chinese (China),Which cities or regions are known for their import and export activities in your country?,Which cities or regions are known for their import and export activities in the US? +New-ch-39,Work life,Chinese (China),What platform is commonly used in the e-commerce industry in your country?,What platform is commonly used in the e-commerce industry in the US? +New-ch-44,Work life,Chinese (China),"How long is the typical probation period for new employees before signing a formal contract in your country? (e.g., 1 month).","How long is the typical probation period for new employees before signing a formal contract in the US? (e.g., 1 month)." +New-ch-45,Work life,Chinese (China),Which industries do young people typically choose to start businesses in your country?,Which industries do young people typically choose to start businesses in the US? +New-ch-49,Family,Chinese (China),What is the most common way for family members to communicate remotely in your country?,What is the most common way for family members to communicate remotely in the US? +New-ch-51,Family,Chinese (China),What form of accommodation is typically booked for family trips in your country?,What form of accommodation is typically booked for family trips in the US? +New-ch-54,Family,Chinese (China),Which fruit is usually prepared the most for family dinners in your country?,Which fruit is usually prepared the most for family dinners in the US? +New-ch-64,Education,Chinese (China),"How many hours of classes do university students typically have per week in your country? (Provide Arabic numerals (e.g., 1) only.)","How many hours of classes do university students typically have per week in the US? (Provide Arabic numerals (e.g., 1) only.)" +New-ch-66,Education,Chinese (China),"What is the typical tuition fee per semester for public high schools in your country? (Provide Arabic numerals (e.g., 1) only.)","What is the typical tuition fee per semester for public high schools in the US? (Provide Arabic numerals (e.g., 1) only.)" +New-ch-70,Education,Chinese (China),What compulsory courses do university students have in common in your country?,What compulsory courses do university students have in common in the US? +New-ch-71,Education,Chinese (China),"What is the average class size in high schools in your country? (Provide Arabic numerals (e.g., 1) only.)","What is the average class size in high schools in the US? (Provide Arabic numerals (e.g., 1) only.)" +New-ch-72,Education,Chinese (China),Which major is considered most conducive to employment in your country?,Which major is considered most conducive to employment in the US? +New-ch-73,Education,Chinese (China),What type of clubs are most popular among university students in your country?,What type of clubs are most popular among university students in the US? +New-ch-74,Education,Chinese (China),What types of accommodation do university students in your country typically live in?,What types of accommodation do university students in the US typically live in? +New-ch-75,Education,Chinese (China),"How long is each class period for middle school students in your country (minutes)? (Provide Arabic numerals (e.g., 1) only.)","How long is each class period for middle school students in the US (minutes)? (Provide Arabic numerals (e.g., 1) only.)" +New-ch-78,Holidays/Celebration/Leisure,Chinese (China),What leisure activities do retired women typically like in your country?,What leisure activities do retired women typically like in the US? +New-ch-79,Holidays/Celebration/Leisure,Chinese (China),What leisure activities do retired men typically like in your country?,What leisure activities do retired men typically like in the US? +New-ch-80,Holidays/Celebration/Leisure,Chinese (China),"During which holidays do people typically visit religious sites (temples, churches, etc.) in your country?","During which holidays do people typically visit religious sites (temples, churches, etc.) in the US?" +New-ch-81,Holidays/Celebration/Leisure,Chinese (China),What are the typical housewarming gifts in your country?,What are the typical housewarming gifts in the US? +New-ch-82,Holidays/Celebration/Leisure,Chinese (China),"At what time do weddings typically start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","At what time do weddings typically start in the US? (Provide in HH:MM format (e.g., 18:00, 09:00).)" +New-ch-83,Holidays/Celebration/Leisure,Chinese (China),Which city in your country hosts festivals the most?,Which city in the US hosts festivals the most? +New-ch-84,Holidays/Celebration/Leisure,Chinese (China),What color of clothing do people typically wear when attending weddings in your country?,What color of clothing do people typically wear when attending weddings in the US? +New-ch-85,Holidays/Celebration/Leisure,Chinese (China),What color of clothing do people typically wear when attending funerals in your country?,What color of clothing do people typically wear when attending funerals in the US? +New-en-01,Food,English (UK),Which snack is eaten in the cinema in your country?,Which snack is eaten in the cinema in the US? +New-en-02,Food,English (UK),What is the most popular chip/crisp flavour in your country?,What is the most popular chip/crisp flavour in the US? +New-en-04,Food,English (UK),Who is a popular celebrity chef in your country?,Who is a popular celebrity chef in the US? +New-en-05,Food,English (UK),Which food is a cost-effective and quick meal option in your country?,Which food is a cost-effective and quick meal option in the US? +New-en-07,Food,English (UK),What are the most popular cooking shows in your country?,What are the most popular cooking shows in the US? +New-en-08,Food,English (UK),What is the most popular chocolate brand in your country?,What is the most popular chocolate brand in the US? +New-en-10,Food,English (UK),What is the most eaten cheese in your country?,What is the most eaten cheese in the US? +New-en-11,Food,English (UK),What is the most disliked vegetable in your country?,What is the most disliked vegetable in the US? +New-en-12,Food,English (UK),What food is most commonly found in food courts in your country?,What food is most commonly found in food courts in the US? +New-en-17,Sport,English (UK),What are the most common cheering tools used by sports fans in your country?,What are the most common cheering tools used by sports fans in the US? +New-en-18,Sport,English (UK),What do fans bring with them when attending a live game in your country?,What do fans bring with them when attending a live game in the US? +New-en-19,Sport,English (UK),What is the most well known sporting stadium in your country?,What is the most well known sporting stadium in the US? +New-en-23,Sport,English (UK),Who is the most famous Paralympian in your country?,Who is the most famous Paralympian in the US? +New-en-26,Sport,English (UK),What is the best recognized sporting chant in your country?,What is the best recognized sporting chant in the US? +New-en-38,Work life,English (UK),Which industries are known for more flexible working hours in your country?,Which industries are known for more flexible working hours in the US? +New-en-41,Work life,English (UK),Who is the most well known and successful entrepreneur in your country?,Who is the most well known and successful entrepreneur in the US? +New-en-47,Family,English (UK),What can typically be found in the back garden of houses in your country?,What can typically be found in the back garden of houses in the US? +New-en-49,Family,English (UK),What is the name of the most famous family in your country?,What is the name of the most famous family in the US? +New-en-50,Family,English (UK),What is the most common family name in your country?,What is the most common family name in the US? +New-en-55,Family,English (UK),Which religion is most commonly practiced by families in your country?,Which religion is most commonly practiced by families in the US? +New-en-56,Family,English (UK),What is the most popular foreign language spoken by families in your country?,What is the most popular foreign language spoken by families in the US? +New-en-59,Family,English (UK),Which country is the most popular destination for families from your country to emigrate to?,Which country is the most popular destination for families from US to emigrate to? +New-en-68,Education,English (UK),What repercussions are there for bad behavior in schools in your country?,What repercussions are there for bad behavior in schools in the US? +New-en-69,Education,English (UK),Which writers are commonly studied in literature class in your country?,Which writers are commonly studied in literature class in the US? +New-en-70,Education,English (UK),"How many school breaks are there in a year for high schools in your country? (Provide Arabic numerals (e.g., 1) only.)","How many school breaks are there in a year for high schools in the US? (Provide Arabic numerals (e.g., 1) only.)" +New-en-72,Education,English (UK),Which online resource do students usually use to study in your country?,Which online resource do students usually use to study in the US? +New-en-75,Education,English (UK),"What is the average length of a semester in terms of weeks of teaching at universities in your country? (Provide Arabic numerals (e.g., 1) only.)","What is the average length of a semester in terms of weeks of teaching at universities in the US? (Provide Arabic numerals (e.g., 1) only.)" +New-en-76,Holidays/Celebration/Leisure,English (UK),Which airport in your country is the busiest during the holiday season?,Which airport in the US is the busiest during the holiday season? +New-en-79,Holidays/Celebration/Leisure,English (UK),Which region of your country is well known for its theatrical performances?,Which region of US is well known for its theatrical performances? +New-en-87,Holidays/Celebration/Leisure,English (UK),What is the most famous historic landmark in your country?,What is the most famous historic landmark in the US? +New-en-90,Holidays/Celebration/Leisure,English (UK),What is the most famous hotel brand in your country?,What is the most famous hotel brand in the US? +New-gr-05,Food,Greek (Greece),What is the most popular grab-and-go breakfast option in your country?,What is the most popular grab-and-go breakfast option in the US? +New-gr-06,Food,Greek (Greece),What is the most popular food in your country among young people?,What is the most popular food in the US among young people? +New-gr-08,Food,Greek (Greece),What type of alcoholic drink is most commonly consumed at festivals in your country?,What type of alcoholic drink is most commonly consumed at festivals in the US? +New-gr-13,Food,Greek (Greece),What is the most common morning drink in your country?,What is the most common morning drink in the US? +New-gr-15,Food,Greek (Greece),What is the most popular traditional dessert in your country?,What is the most popular traditional dessert in the US? +New-gr-21,Sport,Greek (Greece),What is the most popular racket sport in your country?,What is the most popular racket sport in the US? +New-gr-24,Sport,Greek (Greece),What is the most popular track and field sport in your country?,What is the most popular track and field sport in the US? +New-gr-29,Sport,Greek (Greece),Which international sporting event is the most popular in your country?,Which international sporting event is the most popular in the US? +New-gr-47,Work life,Greek (Greece),"How long (in minutes) are typical work breaks in your country, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)","How long (in minutes) are typical work breaks in the US, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)" +New-gr-58,Work life,Greek (Greece),Which job is considered underpaid in your country?,Which job is considered underpaid in the US? +New-gr-76,Holidays/Celebration/Leisure,Greek (Greece),What is the most common food served during Easter in your country?,What is the most common food served during Easter in the US? +New-gr-82,Holidays/Celebration/Leisure,Greek (Greece),What is the most popular music genre among the elderly population in your country?,What is the most popular music genre among the elderly population in the US? +New-gr-88,Holidays/Celebration/Leisure,Greek (Greece),What drink is usually offered at funerals in your country?,What drink is usually offered at funerals in the US? +New-gr-89,Holidays/Celebration/Leisure,Greek (Greece),What drink is usually offered at weddings in your country?,What drink is usually offered at weddings in the US? +New-ha-07,Food,Hausa (Northern Nigeria),What food originated from your country and can be found all over the world?,What food originated from the US and can be found all over the world? +New-ha-08,Food,Hausa (Northern Nigeria),What food is typically disliked by children but enjoyed by the elderly in your country?,What food is typically disliked by children but enjoyed by the elderly in the US? +New-ha-09,Food,Hausa (Northern Nigeria),What cooking utensil is most commonly used in your country?,What cooking utensil is most commonly used in the US? +New-ha-13,Food,Hausa (Northern Nigeria),Which is the most popular vegetable in your country?,Which is the most popular vegetable in the US? +New-ha-19,Sport,Hausa (Northern Nigeria),Which animal is used for sports in your country?,Which animal is used for sports in the US? +New-ha-66,Family,Hausa (Northern Nigeria),What is the most popular wedding venue in your country?,What is the most popular wedding venue in the US? +New-in-01,Food,Indonesian (Indonesia),Which coffee shop brand is the most popular in your country?,Which coffee shop brand is the most popular in the US? +New-in-03,Food,Indonesian (Indonesia),What type of food from your country is typically served in restaurants overseas?,What type of food from US is typically served in restaurants overseas? +New-in-33,Work life,Indonesian (Indonesia),What region in your country is usually associated with mining?,What region in the US is usually associated with mining? +New-in-34,Work life,Indonesian (Indonesia),What region in your country is usually associated with oil?,What region in the US is usually associated with oil? +New-in-62,Education,Indonesian (Indonesia),What university in your country is popular because of its engineering major? (Provide the official name.),What university in the US is popular because of its engineering major? (Provide the official name.) +New-in-63,Education,Indonesian (Indonesia),What university in your country is popular because of its school of medicine? (Provide the official name.),What university in the US is popular because of its school of medicine? (Provide the official name.) +New-in-78,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most popular payment method in your country?,What is the most popular payment method in the US? +New-in-80,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most famous theme park in your country?,What is the most famous theme park in the US? +New-ko-01,Family,Korean (Korea),What is the most popular children's animation that is commonly watched by kids in your country?,What is the most popular children's animation that is commonly watched by kids in the US? +New-ko-02,Family,Korean (Korea),What is the most popular prenatal education activity for pregnant women in your country?,What is the most popular prenatal education activity for pregnant women in the US? +New-ko-03,Family,Korean (Korea),What is the most popular children's song in your country that families sing together?,What is the most popular children's song in the US that families sing together? +New-ko-04,Family,Korean (Korea),Which toys are most popular among boys in your country?,Which toys are most popular among boys in the US? +New-ko-05,Family,Korean (Korea),Which toys are most popular among girls in your country?,Which toys are most popular among girls in the US? +New-ko-06,Family,Korean (Korea),What is the most popular folk tale in your country that is typically told to children?,What is the most popular folk tale in the US that is typically told to children? +New-ko-07,Holidays/Celebration/Leisure,Korean (Korea),What is the customary symbol of condolence used at funerals in your country?,What is the customary symbol of condolence used at funerals in the US? +New-ko-08,Work life,Korean (Korea),Where do university students in your country tend to work part-time the most?,Where do university students in the US tend to work part-time the most? +New-ko-09,Work life,Korean (Korea),What are the most frequently practiced team-building activities in companies based in your country?,What are the most frequently practiced team-building activities in companies based in the US? +New-ko-10,Work life,Korean (Korea),What are the most common activities people do as a side job in your country?,What are the most common activities people do as a side job in the US? +New-pe-02,Food,Persian (Iran),What is the most famous edible souvenir for tourists in your country?,What is the most famous edible souvenir for tourists in the US? +New-pe-06,Food,Persian (Iran),What is the most popular stew in your country?,What is the most popular stew in the US? +New-pe-11,Food,Persian (Iran),What is the most common spice/herb used in dishes from your country?,What is the most common spice/herb used in dishes from US? +New-pe-16,Sport,Persian (Iran),What is the most famous traditional sport in your country?,What is the most famous traditional sport in the US? +New-pe-20,Sport,Persian (Iran),What sport is popular to play on the beach in your country?,What sport is popular to play on the beach in the US? +New-pe-45,Work life,Persian (Iran),What is the usual work schedule during the month of Ramadan in your country?,What is the usual work schedule during the month of Ramadan in the US? +New-pe-47,Family,Persian (Iran),"When is Student's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)","When is Student's Day celebrated in the US? (Provide in MM/DD format (e.g., 12/31).)" +New-pe-49,Family,Persian (Iran),Where do families gather to pray together in your country?,Where do families gather to pray together in the US? +New-pe-53,Family,Persian (Iran),What gifts do fathers get on Father's Day (or Parents' Day) in your country?,What gifts do fathers get on Father's Day (or Parents' Day) in the US? +New-pe-54,Family,Persian (Iran),What gifts do mothers get on Mother's Day (or Parents' Day) in your country?,What gifts do mothers get on Mother's Day (or Parents' Day) in the US? +New-pe-59,Family,Persian (Iran),"How many generations typically live together in a household in your country? (Provide Arabic numerals (e.g., 12) only.)","How many generations typically live together in a household in the US? (Provide Arabic numerals (e.g., 12) only.)" +New-pe-65,Education,Persian (Iran),"How many subjects are taught in middle schools in your country? (Provide Arabic numerals (e.g., 12) only.)","How many subjects are taught in middle schools in the US? (Provide Arabic numerals (e.g., 12) only.)" +New-pe-66,Education,Persian (Iran),What is the most popular after school curricular in elementary schools in your country?,What is the most popular after school curricular in elementary schools in the US? +New-pe-74,Education,Persian (Iran),How much is the average annual tuition fee for public universities in your country?,How much is the average annual tuition fee for public universities in the US? +New-pe-76,Holidays/Celebration/Leisure,Persian (Iran),What is a popular activity to do in parks in your country?,What is a popular activity to do in parks in the US? +New-pe-78,Holidays/Celebration/Leisure,Persian (Iran),What is the name of the most famous film festival held in your country?,What is the name of the most famous film festival held in the US? +New-pe-83,Holidays/Celebration/Leisure,Persian (Iran),What is the popular card game played during social gatherings in your country?,What is the popular card game played during social gatherings in the US? +New-pe-85,Holidays/Celebration/Leisure,Persian (Iran),Where is the most popular tourist destination abroad for people from your country?,Where is the most popular tourist destination abroad for people from US? +New-pe-86,Holidays/Celebration/Leisure,Persian (Iran),What is the name of the most famous tower in your country?,What is the name of the most famous tower in the US? +New-spme-01,Food,Spanish (Mexico),What edible insect is eaten most often in your country?,What edible insect is eaten most often in the US? +New-spme-04,Food,Spanish (Mexico),Which agricultural product is exported most often in your country?,Which agricultural product is exported most often in the US? +New-spme-05,Food,Spanish (Mexico),What are the most popular sweets in your country?,What are the most popular sweets in the US? +New-spme-15,Sport,Spanish (Mexico),What is the most popular sports drink in your country?,What is the most popular sports drink in the US? +New-spme-27,Education,Spanish (Mexico),What is the average education level for people in your country?,What is the average education level for people in the US? +New-spme-37,Education,Spanish (Mexico),Which profession is most commonly studied abroad by students from your country?,Which profession is most commonly studied abroad by students from the US? +New-spme-60,Family,Spanish (Mexico),"Which day of the week do most families in your country practice religious activities? (e.g. Monday, Tuesday)","Which day of the week do most families in the US practice religious activities? (e.g. Monday, Tuesday)" +New-spme-65,Family,Spanish (Mexico),What is the most popular way to celebrate Independence Day in your country?,What is the most popular way to celebrate Independence Day in the US? +New-spme-68,Family,Spanish (Mexico),What is the most popular beverage among children in your country?,What is the most popular beverage among children in the US? +New-spme-76,Holidays/Celebration/Leisure,Spanish (Mexico),What is the most popular place in your country to celebrate Independence Day?,What is the most popular place in the US to celebrate the Independence Day? +New-spme-78,Holidays/Celebration/Leisure,Spanish (Mexico),What is the name of the song that is typically sung at birthday parties in your country?,What is the name of the song that is typically sung at birthday parties in the US? +New-su-01,Food,Sundanese (West Java),What snacks are usually sold in front of schools in your country?,What snacks are usually sold in front of schools in the US? +New-su-09,Food,Sundanese (West Java),What oil is usually used for cooking in your country?,What oil is usually used for cooking in the US? +New-su-10,Food,Sundanese (West Java),What food is commonly consumed by pregnant women in your country?,What food is commonly consumed by pregnant women in the US? +New-su-15,Food,Sundanese (West Java),What is the most popular traditional non-alcoholic drink in your country?,What is the most popular traditional non-alcoholic drink in the US? +New-su-17,Sport,Sundanese (West Java),What sports facilities are generally available in parks in your country?,What sports facilities are generally available in parks in the US? +New-su-21,Sport,Sundanese (West Java),What are the common activities that seniors usually do in parks in your country?,What are the common activities that seniors usually do in parks in the US? +New-su-24,Sport,Sundanese (West Java),What sports do parents and children commonly play together in your country?,What sports do parents and children commonly play together in the US? +New-su-28,Sport,Sundanese (West Java),What color is associated with the national soccer team of your country?,What color is associated with the national soccer team of the US? +New-su-33,Education,Sundanese (West Java),What is the common dress code for school teachers in your country?,What is the common dress code for school teachers in the US? +New-su-34,Education,Sundanese (West Java),What is the most popular extracurricular activity related to music in schools in your country?,What is the most popular extracurricular activity related to music in schools in the US? +New-su-42,Education,Sundanese (West Java),What religion is mainly taught in schools in your country?,What religion is mainly taught in schools in the US? +New-su-45,Education,Sundanese (West Java),"What date is Education Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)","What date is Education Day celebrated in the US? (Provide in MM/DD format (e.g., 12/31).)" +New-su-50,Work life,Sundanese (West Java),What is the main occupation of people in mountainous areas in your country?,What is the main occupation of people in mountainous areas in the US? +New-su-51,Work life,Sundanese (West Java),What is the main occupation of people in coastal areas in your country?,What is the main occupation of people in coastal areas in the US? +New-su-57,Work life,Sundanese (West Java),What is the most common livestock raised in your country?,What is the most common livestock raised in the US? +New-su-58,Work life,Sundanese (West Java),What animals are commonly used for agriculture in your country?,What animals are commonly used for agriculture in the US? +New-su-59,Work life,Sundanese (West Java),What do farmers in your country typically wear to protect themselves from the heat whilst farming?,What do farmers in the US typically wear to protect themselves from the heat whilst farming? +New-su-60,Work life,Sundanese (West Java),What do farmers in your country usually eat for lunch?,What do farmers in the US usually eat for lunch? +New-su-71,Family,Sundanese (West Java),What gifts do parents generally give to their children for their birthdays in your country?,What gifts do parents generally give to their children for their birthdays in the US? +New-su-75,Family,Sundanese (West Java),What type of vehicle do most families in your country generally own?,What type of vehicle do most families in the US generally own? +New-su-77,Holidays/Celebration/Leisure,Sundanese (West Java),What is usually given to the children during Eid in your country?,What is usually given to the children during Eid in the US? +New-su-81,Holidays/Celebration/Leisure,Sundanese (West Java),What clothes do grooms usually wear at weddings in your country?,What clothes do grooms usually wear at weddings in the US? +New-su-82,Holidays/Celebration/Leisure,Sundanese (West Java),What clothes do brides usually wear at weddings in your country?,What clothes do brides usually wear at weddings in the US? +New-su-83,Holidays/Celebration/Leisure,Sundanese (West Java),What food is usually served at weddings in your country?,What food is usually served at weddings in the US? +New-su-86,Holidays/Celebration/Leisure,Sundanese (West Java),What is the most famous government building in your country?,What is the most famous government building in the US? +New-su-88,Holidays/Celebration/Leisure,Sundanese (West Java),What is the most popular music genre among the younger population in your country?,What is the most popular music genre among the younger population in the US? +Ni-en-02,Education,English (UK),"What time do middle school students in your country typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)","What time do middle school students in the US typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)" +Ni-en-03,Education,English (UK),"At what age do people in your country typically go to university? (Provide Arabic numerals (e.g., 12) only.)","At what age do people in the US typically go to university? (Provide Arabic numerals (e.g., 12) only.)" +Ni-en-06,Education,English (UK),"From what age do people need to attend compulsory education in your country? (Provide Arabic numerals (e.g., 12) only.)","From what age do people need to attend compulsory education in the US? (Provide Arabic numerals (e.g., 12) only.)" +Ni-en-09,Education,English (UK),How many days a week do children attend school in your country? (Provide Arabic numerals (0~7) only.),How many days a week do children attend school in the US? (Provide Arabic numerals (0~7) only.) +Ni-en-11,Education,English (UK),"In your country, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)","In the US, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)" +Ni-en-12,Education,English (UK),What is the top university in your country? (Provide the official name.),What is the top university in the US? (Provide the official name.) +Ni-en-13,Education,English (UK),"At what age do most people in your country graduate from university? (Provide Arabic numerals (e.g., 12) only.)","At what age do most people in the US graduate from university? (Provide Arabic numerals (e.g., 12) only.)" +Ni-en-15,Education,English (UK),"At what age do children in your country generally start middle school? (Provide Arabic numerals (e.g., 12) only.)","At what age do children in the US generally start middle school school? (Provide Arabic numerals (e.g., 12) only.)" +Ni-en-17,Work life,English (UK),"How many hours a week does a full-time worker in your country typically work? (Provide Arabic numerals (e.g., 12) only.)","How many hours a week does a full-time worker in the US typically work? (Provide Arabic numerals (e.g., 12) only.)" +Ni-en-19,Work life,English (UK),How many days a week does a full-time worker work in your country? (Provide Arabic numerals (0~7) only.),How many days a week does a full-time worker work in the US? (Provide Arabic numerals (0~7) only.) +Ni-en-20,Work life,English (UK),"At what age do most people start working in your country? (Provide Arabic numerals (e.g., 12) only.)","At what age do most people start working in the US? (Provide Arabic numerals (e.g., 12) only.)" +Ni-en-21,Work life,English (UK),"From what age is an individual allowed to work in your country? (Provide Arabic numerals (e.g., 12) only.)","From what age is an individual allowed to work in the US? (Provide Arabic numerals (e.g., 12) only.)" +Ni-en-31,Holidays/Celebration/Leisure,English (UK),What do people in your country traditionally eat on Christmas Day? ,What do people in the US traditionally eat on Christmas Day? +Ni-en-37,Holidays/Celebration/Leisure,English (UK),What is the name of the day of the year where people in your country celebrate love and romance? ,What is the name of the day of the year where people in the US celebrate love and romance? +Ni-en-40,Holidays/Celebration/Leisure,English (UK),What is the most popular Christmas song in your country? ,What is the most popular Christmas song in the US? +Nu-in-04,Education,Indonesian (Indonesia),"How many semesters are there each academic year at high schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","How many semesters are there each academic year at high schools in the US? (Provide in Arabic numerals (e.g., 7, 8) only.)" +Nu-in-05,Education,Indonesian (Indonesia),In which month does the new school year typically begin in your country? (Provide Arabic numerals (1~12) only.),In which month does the new school year typically begin in the US? (Provide Arabic numerals (1~12) only.) +Nu-in-06,Education,Indonesian (Indonesia),"When is National Teacher's Day commemorated in your country? (Provide in MM/DD format (e.g., 12/31).)","When is National Teacher's Day commemorated in the US? (Provide in MM/DD format (e.g., 12/31).)" +Nu-in-11,Education,Indonesian (Indonesia),"At what time does elementary school start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","At what time does elementary school start in the US? (Provide in HH:MM format (e.g., 18:00, 09:00).)" +Nu-in-20,Family,Indonesian (Indonesia),"When is Children's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)","When is Children's Day celebrated in the US? (Provide in MM/DD format (e.g., 12/31).)" +Nu-in-40,Work life,Indonesian (Indonesia),Which city is the main destination for job seekers in your country?,Which city is the main destination for job seekers in the US? +Sa-en-1,Food,English (UK),What is your country's most popular fast food chain?,What is the US's most popular fast food chain? +Sa-en-13,Food,English (UK),What is the food that is most divisive (either love or hate) in your country?,What is the food that is most divisive (either love or hate) in the US? +Sa-en-16,Sport,English (UK),What is the most popular soccer team among the people from your country?,What is the most popular soccer team among the people from the US? +Sa-en-22,Sport,English (UK),What is the most famous university in your country known for its sports team?,What is the most famous university in the US known for its sports team? +Sa-en-31,Family,English (UK),What is your country's most popular family pet?,What is the US's most popular family pet? +Sa-en-32,Family,English (UK),What is the most popular family TV show in your country?,What is the most popular family TV show in the US? +Sa-en-37,Family,English (UK),What is the most popular family boardgame in your country?,What is the most popular family boardgame in the US? +Sa-en-6,Food,English (UK),What is the most popular takeaway food in your country?,What is the most popular takeaway food in the US? +Sa-en-7,Food,English (UK),What are popular snacks in your country?,What are popular snacks in the US? +Sa-en-9,Food,English (UK),What do people from your country eat at the beach?,What do people from the US eat at the beach? +Ta-pe-10,Family,Persian (Iran),"At what age do men usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)","At what age do men usually get married in the US? (Provide Arabic numerals (e.g., 20) only.)" +Ta-pe-11,Family,Persian (Iran),"At what age do women usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)","At what age do women usually get married in the US? (Provide Arabic numerals (e.g., 20) only.)" +Ta-pe-13,Family,Persian (Iran),"In your parents' generation, what was the average number of members in their family in your country? (Provide Arabic numerals (e.g., 20) only.)","In your parents' generation, what was the average number of members in their family in the US? (Provide Arabic numerals (e.g., 20) only.)" +Ta-pe-17,Sport,Persian (Iran),"In the Olympic Games, which sport is the most popular in your country?","In the Olympic Games, which sport is the most popular in the US?" +Ta-pe-21,Sport,Persian (Iran),Where do children usually play soccer in your country?,Where do children usually play soccer in the US? +Ta-pe-22,Sport,Persian (Iran),Which daily exercise is popular among women in your country?,Which daily exercise is popular among women in the US? +Ta-pe-23,Sport,Persian (Iran),Which daily exercise is popular among men in your country?,Which daily exercise is popular among men in the US? +Ta-pe-25,Sport,Persian (Iran),"What is the most famous rivalry in a national sports league in your country? (e.g., ___ vs ___)","What is the most famous rivalry in a national sports league in the US? (e.g., ___ vs ___)" +Ta-pe-29,Sport,Persian (Iran),Which professional sport is the highest paying in your country?,Which professional sport is the highest paying in the US? +Ta-pe-30,Sport,Persian (Iran),What is/was the most popular sports-related TV program in your country?,What is/was the most popular sports-related TV program in the US? +Ta-pe-32,Holidays/Celebration/Leisure,Persian (Iran),What day of the year is usually dedicated to fireworks in your country?,What day of the year is usually dedicated to fireworks in the US? +Ta-pe-37,Holidays/Celebration/Leisure,Persian (Iran),What is the common symbol of New Year's Eve that is usually found in your country?,What is the common symbol of New Year's Eve that is usually found in the US? +Ta-pe-42,Holidays/Celebration/Leisure,Persian (Iran),What food do people from your country usually eat on New Year's Eve?,What food do people from the US usually eat on New Year's Eve? +Ta-pe-45,Holidays/Celebration/Leisure,Persian (Iran),What is usually eaten during the celebration of the longest night of the year in your country?,What is usually eaten during the celebration of the longest night of the year in the US? +Th-en-01,Sport,English (US),What is the most popular summer sport in your country?,What is the most popular summer sport in the US? +Th-en-03,Sport,English (US),What is the most popular professional sports league in your country?,What is the most popular professional sports league in the US? +Th-en-05,Sport,English (US),What is the most popular women's sports team in your country?,What is the most popular women's sports team in the US? +Th-en-09,Sport,English (US),What is the most popular tournament in your country?,What is the most popular tournament in the US? +Th-en-11,Sport,English (US),Who is the most popular sportperson in your country?,Who is the most popular sportperson in the US? +Th-en-12,Sport,English (US),In which sport has your country been most successful in international competitions?,In which sport has the US been most successful in international competitions? +Th-en-15,Sport,English (US),What is the most popular winter sport in your country?,What is the most popular winter sport in the US? +Th-en-19,Work life,English (US),What is a city or region in your country known for manufacturing industry?,What is a city or region in the US known for manufacturing industry? +Th-en-21,Work life,English (US),What is regarded as the most important perk typically offered to employees in your country?,What is regarded as the most important perk typically offered to employees in the US? +Th-en-22,Work life,English (US),What was the most catastrophic economic period for your country?,What was the most catastrophic economic period for the US? +Th-en-24,Work life,English (US),What region in your country is a major hub for tech workers and start ups?,What region in the US is a major hub for tech workers and start ups? +Th-en-27,Work life,English (US),What is the most important industry in your country?,What is the most important industry in the US? +Th-en-35,Family,English (US),"Which one of the daily meals is commonly shared with family members in your country? (e.g., breakfast, lunch, dinner)","Which one of the daily meals is commonly shared with family members in the US? (e.g., breakfast, lunch, dinner)" +Th-en-36,Family,English (US),What is a popular family activity with a child to do on weekends in your country?,What is a popular family activity with a child to do on weekends in the US? +Th-en-37,Family,English (US),"At what age do children typically become independent from their parents in your country? (Provide Arabic numerals (e.g., 12) only.)","At what age do children typically become independent from their parents in the US? (Provide Arabic numerals (e.g., 12) only.)" +Th-en-38,Family,English (US),What is the most important family holiday in your country?,What is the most important family holiday in the US? +Th-en-39,Family,English (US),What is a popular family game in your country?,What is a popular family game in the US? +Th-en-41,Family,English (US),"What is the average age for couples to have their first child in your country? (Provide Arabic numerals (e.g., 20) only.)","What is the average age for couples to have their first child in the US? (Provide Arabic numerals (e.g., 20) only.)" +Th-en-43,Family,English (US),"How many cars are owned by a typical family in your country? (Provide Arabic numerals (e.g., 12) only.)","How many cars are owned by a typical family in the US? (Provide Arabic numerals (e.g., 12) only.)" +Th-en-44,Family,English (US),What is your country's most popular food for family meals on weekends?,What is the US's most popular food for family meals on weekends? +Th-en-45,Family,English (US),What is the most popular weekday evening family activity in your country?,What is the most popular weekday evening family activity in the US? +Th-en-48,Education,English (US),What is the highest grade given to top-achieving high school students on assignments and exams in your country?,What is the highest grade given to top-achieving high school students on assignments and exams in the US? +Th-en-49,Education,English (US),What is considered the most important exam for high school students in your country?,What is considered the most important exam for high school students in the US? +Th-en-51,Education,English (US),Which subject is considered the most important for students in your country?,Which subject is considered the most important for students in the US? +Th-en-53,Education,English (US),What is the most popular extracurricular social event at schools in your country?,What is the most popular extracurricular social event at schools in the US? +Th-en-58,Education,English (US),What is the most advanced math subject learned before university in your country?,What is the most advanced math subject learned before university in the US? +Tmp-ar-01,Education,Arabic (Algeria),Where do university students in your country usually go to study for their final exams?,Where do university students in the US usually go to study for their final exams? +Tmp-ar-02,Education,Arabic (Algeria),What is a common public transport that people use to go to university in your country?,What is a common public transport that people use to go to university in the US? +Tmp-ar-04,Education,Arabic (Algeria),What do elementary students in your country usually do after school?,What do elementary students in the US usually do after school? diff --git a/data/questions/West_Java_questions.csv b/data/questions/West_Java_questions.csv new file mode 100644 index 0000000000000000000000000000000000000000..b4426affb83ea500cb31c2612f18704fee4670de --- /dev/null +++ b/data/questions/West_Java_questions.csv @@ -0,0 +1,501 @@ +ID,Topic,Source,Question,Translation +Al-en-01,Food,English (US),What is a common snack for preschool kids in your country?,Naon jajanan umum pikeun barudak TK di Jawa Barat? +Al-en-02,Food,English (US),What is a popular food to go with beer in your country?,Naon kadaharan populér nu cocog sareng bir di Jawa Barat? +Al-en-04,Food,English (US),What is the most popular fruit in your country?,Naon buah nu pang populerna di Jawa Barat? +Al-en-06,Food,English (US),What is a common school cafeteria food in your country?,Naon kadaharan kantin sakola anu umum di Jawa Barat? +Al-en-08,Food,English (US),What are the most commonly eaten snacks at shopping malls in your country?,Naon jajanan anu pang mindengna didahar di mal-mal di Jawa Barat? +Al-en-09,Food,English (US),What is a popular snack at an amusement park in your country?,Naon jajanan populér di taman hiburan di Jawa Barat? +Al-en-16,Education,English (US),"At what age do kids start preschool in your country? (Provide Arabic numerals (e.g., 12) only.)","Dina umur sabaraha murangkalih mimiti asup ka PAUD di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 4).)" +Al-en-17,Education,English (US),What is a popular afterschool sport for elementary schools in your country?,Naon olahraga populer saatos sakola pikeun sakola dasar di Jawa Barat? +Al-en-18,Education,English (US),For which subject do elementary students get private education in your country?,Pelajaran naon nu dicokot lesna ku murid SD di Jawa Barat? +Al-en-19,Education,English (US),What is a popular second language for high school students in your country?,Naon basa kadua anu populer pikeun murid SMA di Jawa Barat? +Al-en-21,Education,English (US),Which subject is the most important for gifted education in your country?,Mata pelajaran naon nu pang pentingna pikeun atikan budak berbakat di Jawa Barat? +Al-en-32,Holidays/Celebration/Leisure,English (US),What is the main dish for Thanksgiving in your country?,Naon kadaharan utama pikeun Poe Sukur di Jawa Barat? +Al-en-33,Holidays/Celebration/Leisure,English (US),What do people do to celebrate Halloween in your country?,Naon nu dilakukeun ku urang Sunda pikeun ngarayakeun poé Halloween di Jawa Barat? +Al-en-34,Holidays/Celebration/Leisure,English (US),What do people do to celebrate New Year's Day in your country?,Naon nu dilakukeun ku urang Sunda pikeun ngarayakeun Poé Taun Anyar di Jawa Barat? +Al-en-35,Holidays/Celebration/Leisure,English (US),What do people do to celebrate Christmas in your country?,Naon nu dilakukeun ku urang Sunda pikeun ngarayakeun Natal di Jawa Barat? +Al-en-36,Holidays/Celebration/Leisure,English (US),What food is associated with Halloween in your country?,Naon kadaharan anu pakait jeung Halloween di Jawa Barat? +Al-en-37,Holidays/Celebration/Leisure,English (US),What food is associated with Christmas in your country?,Naon kadaharan anu pakait sareng Natal di Jawa Barat? +Al-en-38,Holidays/Celebration/Leisure,English (US),What food is associated with Valentine's day in your country?,Naon kadaharan anu pakait sareng poé Valentine di Jawa Barat? +Al-en-39,Holidays/Celebration/Leisure,English (US),What do people eat on their birthday in your country?,Naon nu biasa didahar ku urang Sunda dina poé ulang taun di Jawa Barat? +Al-en-40,Holidays/Celebration/Leisure,English (US),What is a popular outdoor place for families to have fun with little kids in your country?,Naon tempat wisata alam anu populer pikeun kulawarga liburan jeung barudak leutik di Jawa Barat? +Al-en-43,Holidays/Celebration/Leisure,English (US),What is a popular indoor activity for families in your country?,Naon kagiatan di jero rohangan anu populer pikeun kulawarga di Jawa Barat? +An-ar-02,Education,Arabic (Algeria),Where do university students have lunch in your country?,Di mana mahasiswa universitas tuang siang di Jawa Barat? +An-ar-03,Education,Arabic (Algeria),Which month is the final exam term usually scheduled at high schools in your country? (Provide Arabic numerals (1~12) only.),Dina bulan sabaraha biasana ujian ahir semester di SMA di Jawa Barat diayakeun? (Pasihkeun nomer Arab (1~12) wungkul.) +An-ar-08,Education,Arabic (Algeria),"How many hours a day do students in your country usually spend at high school? (Provide Arabic numerals in integers (0~24), without any decimal points.)","Sabaraha jam sapoé biasana murid di Jawa Barat nyeepkeun waktosna di SMA? (Pasihkeun angka Arab dina wangun bilangan bulat (0~24), tanpa titik desimal.)" +An-ar-09,Education,Arabic (Algeria),"How many languages do students study at high school in your country? (Provide Arabic numerals (e.g., 5) only.)","Sabaraha basa nu diajarkeun ka murid di SMA di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 5).)" +An-ar-34,Sport,Arabic (Algeria),What is the most popular sport played in a team at school in your country?,Naon olahraga tim nu pang populerna dipaénkeun di sakola di Jawa Barat? +An-ar-35,Sport,Arabic (Algeria),Who is the most popular sport commentator in your country?,Saha komentator olahraga nu pang populerna di Jawa Barat? +An-ar-36,Sport,Arabic (Algeria),What is the most popular sport team in your country?,Naon tim olahraga nu pang populerna di Jawa Barat? +An-ar-43,Sport,Arabic (Algeria),What are the common places or venues where individuals in your country usually gather to watch sports broadcasts?,Naon tempat-tempat umum atawa lokasi di mana jalma-jalma di Jawa Barat biasana ngariung pikeun nongton siaran olahraga? +Ca-sp-05,Food,Spanish (Spain),"How many meals per day do people from your country usually have? (Provide Arabic numerals (e.g., 5) only.)","Sabaraha kali tuang sapoé nu biasa dilakukeun ku urang Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 5).)" +Ca-sp-06,Food,Spanish (Spain),Which is the most important meal of the day to people from your country?,Waktos dahar naon nu pang pentingna dina sapoé keur urang Jawa Barat? +Ca-sp-08,Food,Spanish (Spain),What is the most common ingredient used in your country's diet?,Naon bahan panganan anu pang ilaharna dipake kanggo diet urang Jawa Barat? +Ca-sp-09,Food,Spanish (Spain),What do people from your country usually eat for dessert?,Naon biasana nu didahar ku urang Jawa Barat pikeun hidangan pamungkas? +Ca-sp-11,Food,Spanish (Spain),Which day of the week do people usually organize a family meal in your country?,Poé naon dina saminggu biasana urang Sunda ngayakeun acara dahar kulawarga di Jawa Barat? +Ca-sp-14,Food,Spanish (Spain),Which is the most popular hot drink in your country?,Inuman panas naon nu pang populerna di Jawa Barat? +Ca-sp-19,Holidays/Celebration/Leisure,Spanish (Spain),What do young people from your country usually drink at the night club?,Naon nu biasa diinum ku para nonoman ti Jawa Barat di klub peuting? +Ca-sp-21,Holidays/Celebration/Leisure,Spanish (Spain),At which month do people usually take holidays in your country? (Provide Arabic numerals (1~12) only.),Dina bulan sabaraha biasana urang Sunda nyandak liburan di Jawa Barat? (Pasihkeun nomer Arab (1~12) hungkul.) +Ca-sp-29,Holidays/Celebration/Leisure,Spanish (Spain),What tradition is there in your country for New Year's Eve?,Naon tradisi anu aya di Jawa Barat pikeun wengi Taun Anyar? +Ca-sp-38,Family,Spanish (Spain),Which is the typical type of house for a family in your country?,Naon jenis imah anu umum pikeun kulawarga di Jawa Barat? +Ca-sp-41,Family,Spanish (Spain),Where do the dependent elderly usually live in your country?,Di mana biasana para sepuh anu gumantung cicing di Jawa Barat? +Ca-sp-42,Family,Spanish (Spain),"How long (in weeks) is your country's maternity leave for mums? (Provide Arabic numerals (e.g., 20) only.)","Sabaraha lami (dina minggu) cuti ngalahirkeun di Jawa Barat pikeun ibu-ibu? (Pasihkeun angka Arab wungkul (contona, 20).)" +Ca-sp-43,Family,Spanish (Spain),"How long (in weeks) is your country's paternity leave for dads? (Provide Arabic numerals (e.g., 20) only.)","Sabaraha lami (dina minggu) cuti ngalahirkeun pikeun bapa di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 20).)" +Ca-sp-45,Family,Spanish (Spain),What type of destination is commonly chosen for a family vacation in your country?,Naon jinis tujuan anu ilahar dipilih pikeun liburan kulawarga di Jawa Barat? +Gu-ch-05,Sport,Chinese (China),What sports do seniors like the most in your country?,Olahraga naon nu pang dipikaresep ku para sepuh di Jawa Barat? +Gu-ch-06,Sport,Chinese (China),What sports do men like to play the most in your country?,Olahraga naon nu pang dipikaresep dipaénkeun ku lalaki di Jawa Barat? +Gu-ch-07,Sport,Chinese (China),Who is the most famous basketball player in your country?,Saha atlit basket nu pang kasohorna di Jawa Barat? +Gu-ch-08,Sport,Chinese (China),What is the most popular sports among children in your country?,Naon olahraga nu pang populerna di kalangan barudak di Jawa Barat? +Gu-ch-09,Sport,Chinese (China),What sports do women like to play the most in your country?,Olahraga naon nu pang dipikaresep dipaénkeun ku awéwé di Jawa Barat? +Gu-ch-11,Sport,Chinese (China),What sports event has your country won the most gold medals at the Olympics?,Cabang olahraga naon nu pang lobana ngameunangan medali emas ku Jawa Barat di Olimpiade? +Gu-ch-15,Sport,Chinese (China),What sports do male students in university like to play the most in your country?,Olahraga naon nu pang dipikaresep ku mahasiswa lalaki di universitas pikeun dipaénkeun di Jawa Barat? +Gu-ch-16,Family,Chinese (China),"How many people are there in a family on average in your country? (Provide Arabic numerals (e.g., 12) only.)","Sabaraha jalma nu aya dina hiji kulawarga sacara rata-rata di Jawa Barat? (Pasihkeun nomer Arab (contona, 12) hungkul.)" +Gu-ch-18,Family,Chinese (China),"How many children do couples usually have in your country? (Provide Arabic numerals (e.g., 12) only.)","Sabaraha jumlah budak anu biasana dipiboga ku pasangan di Jawa Barat? (Pasihan nomer Arab wungkul (contona, 12).)" +Gu-ch-31,Education,Chinese (China),"What is the duration of elementary school in years in your country? (Provide Arabic numerals (e.g., 12) only.)","Sabaraha taun durasi sakola dasar di Jawa Barat? (Pasihkeun nomer Arab wungkul (contona, 12).)" +Gu-ch-32,Education,Chinese (China),"What is the duration of compulsory education in years in your country? (Provide Arabic numerals (e.g., 12) only.)","Sabaraha taun wajib atikan di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 12).)" +Gu-ch-33,Education,Chinese (China),"From which age do students start learning their second language in your country? (Provide Arabic numerals (e.g., 12) only.)","Ti umur sabaraha murid-murid di Jawa Barat mimiti diajar basa kadua? (Pasihkeun angka Arab wungkul (contona, 12).)" +Gu-ch-38,Education,Chinese (China),"What is the duration of undergraduate education in your country? (Provide Arabic numerals (e.g., 12) only.)","Sabaraha lila atikan sarjana di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 12).)" +Gu-ch-40,Education,Chinese (China),"What time do younger elementary school students finish school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Tabuh sabaraha murid SD kelas handap réngsé sakola di Jawa Barat? (Pasihkeun dina format HH:MM (contona, 18:00, 09:00).)" +Gu-ch-41,Education,Chinese (China),"How many musical instruments do elementary school students in your country typically play? (Provide Arabic numerals (e.g., 12) only.)","Sabaraha alat musik anu biasa dipaénkeun ku murid-murid sakola dasar di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 12).)" +Ji-ko-02,Work life,Korean (South Korea),What day of the week do people in your country prefer to have company dinners?,Poé naon dina saminggu nu dipikaresep ku urang Jawa Barat pikeun ngayakeun dahar bareng di pausahaan? +Ji-ko-03,Work life,Korean (South Korea),Which region/city has the highest number of financial companies in your country?,Wewengkon/kota mana nu mibanda jumlah pausahaan kauangan pang lobana di Jawa Barat? +Ji-ko-07,Work life,Korean (South Korea),What is the most famous private company in your country?,Naon pausahaan swasta nu pang kasohorna di Jawa Barat? +Ji-ko-08,Work life,Korean (South Korea),"What is the maximum number of hours one can work per week in your country? (Provide Arabic numerals (e.g., 12) only.)","Sabaraha jumlah maksimal jam gawe mingguan di Jawa Barat? (Pasihkeun ngan angka Arab wungkul (contona, 12).)" +Ji-ko-09,Work life,Korean (South Korea),What do people typically eat during company get-together in your country?,Naon biasana nu didahar ku jalma-jalma nalika aya ririungan pausahaan di Jawa Barat? +Ji-ko-14,Work life,Korean (South Korea),What is the representative export item of your country?,Naon barang ékspor anu ngawakilan Jawa Barat? +Ji-ko-15,Work life,Korean (South Korea),"How long (in hours) is the typical lunch break in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","Sabaraha lami (dina jam) istirahat beurang anu biasa di Jawa Barat? (Pasihkeun angka Arab nepi ka hiji tempat desimal (contona, 2, 3.5) wungkul.)" +Ji-ko-16,Family,Korean (South Korea),Where do mothers stay for a certain period after childbirth for recovery in your country?,Di mana ibu-ibu cicing pikeun sababaraha waktu saatos ngalahirkeun pikeun pamulihan di Jawa Barat? +Ji-ko-19,Family,Korean (South Korea),What is your country's most commonly given flower on Parents' Day?,Naon kembang anu pang mindengna dipasihkeun dina Dinten Kolot di Jawa Barat? +Ji-ko-22,Family,Korean (South Korea),What do people especially spend their first salary on in your country's society?,Naon nu biasana dipésér ku jalma-jalma ngangge gajih munggaranana di masarakat Jawa Barat? +Ji-ko-24,Family,Korean (South Korea),What is the most preferred recreational facility among children in your country?,Naon fasilitas rekreasi nu pang dipikaresep ku barudak di Jawa Barat? +Ji-ko-25,Family,Korean (South Korea),What are the family-related holidays in your country?,Naon wae liburan anu sahubungan jeung kulawarga di Jawa Barat? +Ji-ko-26,Family,Korean (South Korea),What are the key milestones associated with children's independence from their parents in your country's society?,Naon waé tahap-tahap penting nu patali jeung kamandirian barudak tina kolotna dina masarakat Jawa Barat? +Ji-ko-27,Family,Korean (South Korea),What is the common gift you give when visiting elderly parents in your country?,Naon hadiah nu ilahar dibikeun nalika ngalongok kolot nu geus sepuh di Jawa Barat? +Ji-ko-28,Family,Korean (South Korea),When is the first day that people celebrate after a child is born in your country?,Iraha poé kahiji nu dirayakeun ku urang sanggeus aya orok nu lahir di Jawa Barat? +Ji-ko-29,Family,Korean (South Korea),Which age's birthday is celebrated the most grandly in your country's society?,Acara tepang taun umur sabaraha nu pang dirayakeun ageung-ageungan dina masarakat Jawa Barat? +Ji-ko-31,Education,Korean (South Korea),Where do middle and high school students in your country usually study for exams?,Di mana biasana murid SMP jeung SMA di Jawa Barat diajar pikeun ujian? +Ji-ko-33,Education,Korean (South Korea),Where do high school students in your country usually go after dinner?,Ka mana biasana murid SMA di Jawa Barat angkat saatos dahar peuting? +Ji-ko-34,Education,Korean (South Korea),How do elementary school students in your country go to school?,Kumaha murid-murid SD di Jawa Barat indit ka sakola? +Ji-ko-35,Education,Korean (South Korea),What is the most common form of private education in your country?,Naon bentuk atikan swasta anu pang umumna di Jawa Barat? +Ji-ko-36,Education,Korean (South Korea),Which subject’s academy/private educational institute do middle or high students most frequently attend in your country?,Akademi/institut atikan swasta naon nu pang mindengna diiluan ku murid SMP atawa SMA di Jawa Barat? +Ji-ko-37,Education,Korean (South Korea),What type of clothing do middle and high school students wear to school in your country?,Naon jinis baju nu dipaké ku murid SMP jeung SMA ka sakola di Jawa Barat? +Ji-ko-38,Education,Korean (South Korea),Which major is considered the most difficult to gain admission to in your country?,Jurusan naon nu dianggap pang héséna pikeun asup di Jawa Barat? +Ji-ko-39,Education,Korean (South Korea),What is the most commonly learned musical instrument by elementary school students in your country?,Naon alat musik anu pang mindengna diajarkeun ka murid-murid sakola dasar di Jawa Barat? +Ji-ko-40,Education,Korean (South Korea),What do high school students typically do during break time in schools in your country?,Naon nu biasa dilakukeun ku murid SMA dina waktos istirahat di sakola-sakola di Jawa Barat? +Ji-ko-41,Education,Korean (South Korea),What kind of shoes do students wear in schools in your country?,Naon jinis sapatu nu dipaké ku murid di sakola-sakola di Jawa Barat? +Ji-ko-42,Education,Korean (South Korea),What are the required subjects in your country's university entrance exam?,Naon waé mata pelajaran anu diperyogikeun dina ujian asup universitas di Jawa Barat? +Ji-ko-44,Education,Korean (South Korea),Which region (within a city) in your country has the highest academic fervor?,Wilayah mana (di jero kota) di Jawa Barat nu mibanda sumanget akademik pang luhurna? +Ji-ko-45,Education,Korean (South Korea),What do people look forward to the most at university festivals in your country?,Naon nu pang dipikaresep ku jalma-jalma dina festival kampus di Jawa Barat? +Jo-sp-01,Sport,Spanish (Spain),What is the second most popular sport in your country?,Naon olahraga nu pang populerna kadua di Jawa Barat? +Jo-sp-02,Sport,Spanish (Spain),What is the most popular sport played without a ball in your country?,Naon olahraga pang populerna nu dipaénkeun tanpa bal di Jawa Barat? +Jo-sp-09,Sport,Spanish (Spain),What sports are most associated with the upper class in your country?,Olahraga naon nu pang pakait jeung kelas luhur di Jawa Barat? +Jo-sp-13,Sport,Spanish (Spain),What is the most popular water sport in your country?,Naon olahraga cai nu pang populerna di Jawa Barat? +Jo-sp-14,Sport,Spanish (Spain),What is the most popular mental sport in your country?,Naon olahraga mental nu pang populerna di Jawa Barat? +Jo-sp-18,Work life,Spanish (Spain),"How many holiday days per year does a standard worker gets in your country? (Provide Arabic numerals (e.g., 12) only.)","Sabaraha dinten libur per taun nu biasa ditarima ku pagawe di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 12).)" +Jo-sp-19,Work life,Spanish (Spain),What region in your country has been traditionally associated with agriculture?,Wewengkon mana di Jawa Barat anu identik sareng tatanén? +Jo-sp-21,Work life,Spanish (Spain),"What time, if any, do people usually leave work for lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Jam sabaraha, upami aya, biasana jalma-jalma ninggalkeun gawé pikeun dahar beurang di Jawa Barat? (Pasihkeun dina format HH:MM (contona, 18:00, 09:00).)" +Jo-sp-31,Education,Spanish (Spain),"What time do high school students tend to leave school in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Tabuh sabaraha murid SMA biasana mulang ti sakola di Jawa Barat? (Pasihkeun dina format HH:MM (contona, 18:00, 09:00).)" +Jo-sp-32,Education,Spanish (Spain),What sport do elementary school students tend to practice at school in your country?,Olahraga naon nu biasa dipraktékkeun ku murid-murid SD di sakola di Jawa Barat? +Jo-sp-36,Education,Spanish (Spain),"How long (in weeks) are summer vacations at elementary schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","Sabaraha lami (dina minggu) liburan usum panas di sakola dasar di Jawa Barat? (Pasihkeun ngan ukur angka Arab (contona, 7, 8).)" +Jo-sp-37,Education,Spanish (Spain),"How long (in weeks) are summer vacations at universities in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","Sabaraha lila (dina minggu) liburan usum panas di universitas-universitas di Jawa Barat? (Pasihkeun ngan ukur angka Arab (contona, 7, 8).)" +Jo-sp-39,Education,Spanish (Spain),"At what age does elementary education begin in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","Di umur sabaraha atikan dasar di Jawa Barat dimimitian? (Pasihkeun ngan ukur angka Arab (contona, 7, 8).)" +Jo-sp-43,Education,Spanish (Spain),"How many languages are studied in elementary education besides your country's official language? (Provide in Arabic numerals (e.g., 7, 8) only.)","Sabaraha basa nu diajarkeun di atikan dasar salian ti basa resmi Jawa Barat? (Pasihkeun ngan ukur angka Arab (contona, 7, 8).)" +Jod-ch-01,Food,Chinese (China),What eating utensils do people commonly used in your country?,Naon alat dahar nu ilahar dipaké ku masarakat di Jawa Barat? +Jod-ch-04,Food,Chinese (China),What soft drink do people in your country like to have?,Inuman naon nu resep dikonsumsi ku urang Jawa Barat? +Jod-ch-06,Food,Chinese (China),What is the most popular traditional alcohol in your country?,Naon inuman alkohol tradisional nu pang populerna di Jawa Barat? +Jod-ch-07,Food,Chinese (China),"How long (in hours) on average does it take for people in your country to have dinner at a restaurant? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","Sabaraha lami (dina jam) rata-rata jalma di Jawa Barat nyéépkeun waktos kanggo dahar peuting di réstoran? (Pasihkeun angka Arab nepi ka hiji titik desimal (contona, 2, 3.5) wungkul.)" +Jod-ch-09,Food,Chinese (China),"What time do people usually have dinner in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Tabuh sabaraha biasana urang tuang wengi di Jawa Barat? (Pasihkeun dina format HH:MM (contona, 18:00, 09:00).)" +Jod-ch-12,Food,Chinese (China),What kind of soup do people from your country like to have?,Naon jinis sop anu dipikaresep ku urang Sunda di Jawa Barat? +Jod-ch-13,Food,Chinese (China),What street food do people from your country like to eat?,Jajanan jalanan naon nu resep didahar ku urang Jawa Barat? +Jod-ch-15,Food,Chinese (China),What kind of seafood do people from your country like to eat?,Naon jinis kadaharan laut anu resep didahar ku urang Jawa Barat? +Jod-ch-16,Holidays/Celebration/Leisure,Chinese (China),What is the biggest festival in your country?,Naon festival pang gedéna di Jawa Barat? +Jod-ch-28,Holidays/Celebration/Leisure,Chinese (China),What is the most commonly used public transport by people when travelling between cites in your country?,Naon moda transportasi umum anu pang mindengna dipake ku masarakat nalika ngumbara antarkota di Jawa Barat? +Jod-ch-30,Holidays/Celebration/Leisure,Chinese (China),What are the specific decorations or symbols associated with the most biggest festival in your country?,Naon hiasan atawa simbol husus nu pakait jeung hajatan pang gedéna di Jawa Barat? +Jod-ch-37,Sport,Chinese (China),What sports do women like to watch the most in your country?,Olahraga naon nu pang dipikaresep ditongton ku awéwé di Jawa Barat? +Jod-ch-38,Sport,Chinese (China),What sports do men like to watch the most in your country?,Olahraga naon nu pang dipikaresep ditongton ku lalaki di Jawa Barat? +Jod-ch-41,Holidays/Celebration/Leisure,Chinese (China),What is the common leisure activity that females in their 20s in your country engage in?,Naon kagiatan luang nu umum dilakukeun ku awéwé umur 20an di Jawa Barat? +Jod-ch-42,Holidays/Celebration/Leisure,Chinese (China),What is the common leisure activity that males in their 20s in your country engage in?,Naon kagiatan luang nu umum dilakukeun ku lalaki nu umurna 20an di Jawa Barat? +Jod-ch-46,Work life,Chinese (China),"How long (in hours) do people usually take a break after lunch on a weekday in your country? (Provide Arabic numerals up to one decimal point (e.g., 2, 3.5) only.)","Sabaraha lami (dina jam) biasana jalma-jalma di Jawa Barat nyandak waktos istirahat saatos dahar beurang dina dinten gawé? (Pasihkeun angka Arab nepi ka hiji titik desimal (contona, 2, 3.5) wungkul.)" +Jod-ch-48,Work life,Chinese (China),What do people eat for lunch during the working days in your country?,Naon nu sok didahar ku jalma-jalma nalika dahar beurang dina dinten gawé di Jawa Barat? +Jod-ch-50,Work life,Chinese (China),"What is the average commute time (in minutes) for people in your country? (Provide Arabic numerals (e.g., 1) only.)","Sabaraha rata-rata waktos di jalan indit-balik (dina menit) pikeun jalma di Jawa Barat? (Pasihkeun nomer Arab (contona, 1) hungkul.)" +Jod-ch-51,Work life,Chinese (China),What is the most common transportation that people take to get to work in your country?,Naon moda transportasi anu pang umumna dipaké ku jalma-jalma pikeun indit gawé di Jawa Barat? +Jod-ch-54,Work life,Chinese (China),"How long (in days) is the marriage leave in your country? (Provide Arabic numerals (e.g., 12) only.)","Sabaraha lami (dina poé) cuti nikah di Jawa Barat? (Pasihkeun angka Arab (contona, 12) hungkul.)" +Jod-ch-56,Work life,Chinese (China),"What is the typical retirement age for women in your country? (Provide Arabic numerals (e.g., 12) only.)","Sabaraha umur pensiunan anu umum pikeun awéwé di Jawa Barat? (Pasihkeun angka Arab (contona, 12) hungkul.)" +Jod-ch-57,Work life,Chinese (China),"What is the typical retirement age for men in your country? (Provide Arabic numerals (e.g., 12) only.)","Sabaraha umur pensiunan anu umum pikeun lalaki di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 12).)" +Jod-ch-58,Work life,Chinese (China),Which profession is the most respected in your country?,Padaleman naon nu pang dihargaan di Jawa Barat? +Jod-ch-60,Work life,Chinese (China),What is the duration (in hours) of a typical workday in your country? (Provide Arabic numerals (0~24) only.),Sabaraha lila (dina jam) umumna jam gawé poean di Jawa Barat? (Pasihkeun angka Arab (0~24) hungkul.) +Jod-ch-61,Work life,Chinese (China),Which occupation is most preferred among females in your country?,Padamelan naon nu pang dipikaresep ku awéwé di Jawa Barat? +Jod-ch-62,Work life,Chinese (China),Which occupation is most preferred among males in your country?,Padamelan naon nu pang dipikaresep ku lalaki di Jawa Barat? +Ki-pe-17,Education,Persian (Iran),"On average, how far do students typically pursue their education in your country? (e.g., elementary, high school)","Sacara rata-rata, sabaraha jauh murid-murid di Jawa Barat biasana nuluykeun atikanana? (contona, sakola dasar, sakola menengah)" +Ki-pe-24,Education,Persian (Iran),What language is taught in schools in your country besides English?,Basa naon nu diajarkeun di sakola-sakola di Jawa Barat salian ti Basa Inggris? +Ki-pe-30,Education,Persian (Iran),What days of the week are schools closed in your country?,Poé naon waé dina saminggu sakola-sakola di Jawa Barat téh libur? +Ki-pe-32,Food,Persian (Iran),What food do the hosts usually prepare for the guests in your country?,Naon kadaharan anu biasana disayogikeun ku nu boga hajat pikeun tamu di Jawa Barat? +Ki-pe-34,Food,Persian (Iran),What is the usual drink in the breakfast in your country?,Naon inuman anu biasa diinum nalika nyarap di Jawa Barat? +Ki-pe-36,Food,Persian (Iran),"Except the food original from your country, which country's food is more popular in your country?","Salian ti kadaharan asli ti Jawa Barat, kadaharan ti nagara mana nu leuwih populér di Jawa Barat?" +Ki-pe-39,Food,Persian (Iran),What food is usually prepared for a family picnic in your country?,Naon kadaharan anu biasa disiapkeun pikeun piknik kulawarga di Jawa Barat? +Ki-pe-40,Food,Persian (Iran),Which food from your country is considered disgusting by the rest of the world?,Panganan naon ti Jawa Barat anu dianggap henteu pikaresepeun ku jalma-jalma di dunya? +Ki-pe-43,Food,Persian (Iran),What is the name of the popular bread in your country?,Naon ngaran roti populér di Jawa Barat? +Ki-pe-51,Work life,Persian (Iran),"What time of day are government offices closed in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Jam sabaraha kantor pamaréntah di Jawa Barat téh nutup? (Pasihkeun dina format HH:MM (contona, 18:00, 09:00).)" +Ki-pe-53,Work life,Persian (Iran),"What is the normal start time of government offices in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Jam sabaraha normalna kantor pamaréntah di Jawa Barat muka? (Pasihkeun dina format HH:MM (contona, 18:00, 09:00).)" +Kik-in-01,Holidays/Celebration/Leisure,Indonesian (Indonesia),What national holiday has the longest duration in your country?,Poé libur nasional naon nu pang panjangna di Jawa Barat? +Kik-in-02,Holidays/Celebration/Leisure,Indonesian (Indonesia),What are the common activities people from your country do to celebrate Independence day?,Naon aktivitas umum anu dilakukeun ku urang Jawa Barat dina raraga miéling Poé Kamerdékaan? +Kik-in-04,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is installed in front of the house when a family member dies in your country?,Naon nu dipasang di hareupeun imah nalika aya anggota kulawarga nu pupus di Jawa Barat? +Kik-in-05,Holidays/Celebration/Leisure,Indonesian (Indonesia),When is a pregnancy celebration or ceremony usually held in your country?,Iraha biasana upacara atawa parayaan kahamilan diayakeun di Jawa Barat? +Kik-in-06,Holidays/Celebration/Leisure,Indonesian (Indonesia),What event is usually held before a wedding in your country?,Naon acara anu biasana diayakeun saméméh hajatan kawinan di Jawa Barat? +Kik-in-07,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is usually shared to the children during (Lunar) New Year in your country?,Naon nu biasa dibagikeun ka barudak nalika Taun Anyar Imlek di Jawa Barat? +Kik-in-08,Holidays/Celebration/Leisure,Indonesian (Indonesia),What activities are usually done days before Ramadan in your country?,Naon kagiatan anu biasa dilakukeun di poé-poé saméméh bulan puasa di Jawa Barat? +Kik-in-10,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most popular tourist attraction for foreign visitors in your country?,Naon objék wisata nu pang populerna pikeun wisatawan asing di Jawa Barat? +Kik-in-11,Holidays/Celebration/Leisure,Indonesian (Indonesia),"What is the most popular religious sites (temple, church, etc.) for tourism in your country?","Naon situs-situs religi (candi, gereja, jsb.) anu pang populerna pikeun wisata di Jawa Barat?" +Kik-in-15,Holidays/Celebration/Leisure,Indonesian (Indonesia),What clothes do women usually wear on graduation commencement ceremony in your country?,Naon pakean anu biasa dipaké ku awéwé dina upacara wisuda di Jawa Barat? +Kik-in-16,Food,Indonesian (Indonesia),What drink is commonly consumed in your country when the weather is cold?,Inuman naon nu ilahar dikonsumsi di Jawa Barat nalika cuacana tiis? +Kik-in-17,Food,Indonesian (Indonesia),What fruit is more commonly sold and found during Ramadan in your country?,Buah naon nu leuwih umum dijual jeung dipanggihan salila bulan Ramadan di Jawa Barat? +Kik-in-24,Food,Indonesian (Indonesia),What carbohydrate is usually served with chicken in a fast-food restaurant in your country?,Karbohidrat naon anu biasana disayogikeun jeung hayam di restoran gancang saji di Jawa Barat? +Kik-in-31,Sport,Indonesian (Indonesia),What is the most famous martial art sports in your country?,Naon olahraga beladiri nu pang kasohorna di Jawa Barat? +Kik-in-34,Sport,Indonesian (Indonesia),What sports are often broadcasted on national television in your country?,Naon olahraga nu mindeng disiarkeun di TV nasional di Jawa Barat? +Kik-in-35,Sport,Indonesian (Indonesia),What sports were popular among people from your country during the COVID-19 pandemic?,Naon olahraga nu populer di kalangan masarakat Jawa Barat salila pandemi COVID-19? +Kik-in-36,Sport,Indonesian (Indonesia),Who is the most popular soccer coach in your country?,Saha pelatih sepak bola nu pang populerna di Jawa Barat? +Kik-in-37,Sport,Indonesian (Indonesia),What soccer teams in your country are famous for their intense rivalry? (e.g. ___ vs ___),Naon tim sepak bola di Jawa Barat nu kasohor ku pasaingan sengitna? (contona ___ lawan ___) +Kik-in-38,Sport,Indonesian (Indonesia),What are the names of soccer supporters in your country who are famous for their intense rivalry? (e.g. ___ vs ___),Naon ngaran-ngaran bobotoh sepak bola di Jawa Barat anu kasohor ku pasaingan sengitna? (contona ___ vs ___) +Kik-in-40,Sport,Indonesian (Indonesia),Who is the most famous male badminton player in your country?,Saha atlit badminton lalaki nu pang kawentarna di Jawa Barat? +Kik-in-41,Sport,Indonesian (Indonesia),Who is the most famous female badminton player in your country?,Saha atlit badminton awéwé nu pang kawéntarna di Jawa Barat? +Kik-in-44,Sport,Indonesian (Indonesia),What sport gets the most support from the government in your country?,Olahraga naon nu pang lobana meunang dukungan ti pamaréntah di Jawa Barat? +Kik-in-45,Sport,Indonesian (Indonesia),What sports field facilities are usually available at schools in your country?,Naon waé fasilitas lapang olahraga anu biasana aya di sakola-sakola di Jawa Barat? +Na-ko-02,Food,Korean (South Korea),What cafe beverage do people from your country most commonly enjoy?,Inuman kafe naon nu pang mindengna dipikaresep ku urang Jawa Barat? +Na-ko-04,Food,Korean (South Korea),What is the preferred hangover cure food for people from your country?,Naon kadaharan pangobatan mabok nu dipikaresep ku urang Jawa Barat? +Na-ko-05,Food,Korean (South Korea),What is the typical delivery food in your country?,Naon kadaharan pangiriman anu has di Jawa Barat? +Na-ko-07,Food,Korean (South Korea),What type of meat is consumed most by people from your country?,Daging naon nu pang lobana dikonsumsi ku urang Jawa Barat? +Na-ko-08,Food,Korean (South Korea),What fruit do people from your country often eat in the autumn season?,Buah naon nu mindeng didahar ku urang Jawa Barat dina usum gugur? +Na-ko-09,Food,Korean (South Korea),What side dish is the most commonly served on a dining table in your country?,Kadaharan palengkep naon nu pang mindengna disayogikeun di meja makan di Jawa Barat? +Na-ko-11,Food,Korean (South Korea),What do people from your country eat while watching a soccer game?,Naon nu didahar ku urang Jawa Barat nalika ningali patandingan sepak bola? +Na-ko-15,Food,Korean (South Korea),What is the representative nourishing food in your country?,Naon kadaharan bergizi nu ngawakilan Jawa Barat? +Na-ko-16,Sport,Korean (South Korea),Who is the most famous soccer player in your country?,Saha pamaén sepak bola nu pang kasohor di Jawa Barat? +Na-ko-17,Sport,Korean (South Korea),What sports do male students enjoy during lunch time at school in your country?,Olahraga naon nu resep dipaénkeun ku murid lalaki nalika waktos istirahat beurang di sakola di Jawa Barat? +Na-ko-18,Sport,Korean (South Korea),What is the most common sport girls participate in during physical education classes in your country?,Naon olahraga anu pang umumna dilakonan ku murid awewe nalika pelajaran atikan jasmani di Jawa Barat? +Na-ko-19,Sport,Korean (South Korea),Who is the most popular volleyball player in your country?,Saha atlit voli nu pang populerna di Jawa Barat? +Na-ko-20,Sport,Korean (South Korea),What sports event do people from your country passionately support the most in international competitions?,Naon acara olahraga nu pang didukung ku urang Jawa Barat dina kompetisi internasional? +Na-ko-22,Sport,Korean (South Korea),Which country is considered the biggest rival in soccer matches for your country?,Nagara mana anu dianggep lawan panggedéna di patandingan sepak bola pikeun Jawa Barat? +Na-ko-23,Sport,Korean (South Korea),What type of sports academies do children attend the most in your country?,Naon jinis akademi olahraga nu pang mindengna diiluan ku barudak di Jawa Barat? +Na-ko-24,Sport,Korean (South Korea),What is the most commonly eaten food in sports stadiums while watching games in your country?,Naon panganan anu pang mindengna didahar di stadion olahraga nalika lalajo patandingan di Jawa Barat? +Na-ko-25,Sport,Korean (South Korea),What are the typical sports played in your country's school sports day?,Naon olahraga-olahraga has nu sok dipaénkeun dina poé olahraga sakola di Jawa Barat? +Na-ko-26,Sport,Korean (South Korea),What are the popular sports among the middle-aged population in your country?,Naon olahraga nu populer di kalangan populasi umur tengah di Jawa Barat? +Na-ko-28,Sport,Korean (South Korea),Who is the most popular winter sports player in your country?,Saha atlit olahraga usum salju nu pang populerna di Jawa Barat? +Na-ko-29,Sport,Korean (South Korea),Who is the most famous swimmer in your country?,Saha atlit ngojay nu pang kawéntarna di Jawa Barat? +Na-ko-30,Sport,Korean (South Korea),What is the most popular e-sports game in your country?,Naon kaulinan e-sports nu pang populerna di Jawa Barat? +Na-ko-33,Holidays/Celebration/Leisure,Korean (South Korea),What symbolic food do people from your country eat on (Lunar) New Year?,Naon kadaharan simbolis nu didahar ku urang Jawa Barat dina Taun Anyar Imlek? +Na-ko-37,Holidays/Celebration/Leisure,Korean (South Korea),What is the most popular domestic vacation spot for people from your country?,Naon tempat liburan domestik nu pang populerna pikeun urang Jawa Barat? +Na-ko-38,Holidays/Celebration/Leisure,Korean (South Korea),What is the most common wedding gift between bride and groom in your country?,Naon kado kawinan anu pang umumna di antara pangantén awéwé jeung pangantén lalaki di Jawa Barat? +Na-ko-39,Holidays/Celebration/Leisure,Korean (South Korea),What is typically given as a congratulatory gesture when attending a friend's wedding in your country?,Naon nu biasana dipasihkeun salaku gestur ucapan salamet nalika ngahadiran hajatan kawinan sobat di Jawa Barat? +Na-ko-40,Holidays/Celebration/Leisure,Korean (South Korea),"How long (in days) does a funeral typically last in your country? (Provide Arabic numerals (e.g., 12) only.)","Sabaraha lami (dina poé) biasana upacara pamakaman di Jawa Barat téh? (Pasihkeun angka Arab wungkul (contona, 12).)" +Na-ko-41,Holidays/Celebration/Leisure,Korean (South Korea),What should you prepare as a condolence offering when attending a funeral in your country?,Naon nu kudu disiapkeun salaku tawisan belasungkawa nalika ngahadiran upacara pamakaman di Jawa Barat? +Na-ko-42,Holidays/Celebration/Leisure,Korean (South Korea),What type of food is commonly provided at funeral parlors in your country?,Naon jinis kadaharan anu ilahar disayogikeun di tempat pamakaman di Jawa Barat? +Na-ko-43,Holidays/Celebration/Leisure,Korean (South Korea),What do people do in your country in the morning of the (Lunar) New Year?,Naon nu dilakukeun ku urang Sunda di Jawa Barat di énjing taun anyar Imlek? +Na-ko-44,Holidays/Celebration/Leisure,Korean (South Korea),When is the day with your country's most severe nationwide traffic congestion?,Iraha dinten nu pang parna macetna lalu lintas di Jawa Barat? +Na-ko-45,Holidays/Celebration/Leisure,Korean (South Korea),What is the most popular honeymoon destination in your country?,Naon tujuan bulan madu nu pang populerna di Jawa Barat? +Ne-ar-05,Holidays/Celebration/Leisure,Arabic (Algeria),What is the most important national holiday in your country?,Naon poé libur nasional nu pang pentingna di Jawa Barat? +Ne-ar-06,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Ramadan?,Naon nu didahar ku urang Jawa Barat dina bulan Ramadan? +Ne-ar-09,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Eid ul Fitr?,Naon nu didahar ku urang Jawa Barat dina waktos Lebaran? +Ne-ar-10,Holidays/Celebration/Leisure,Arabic (Algeria),What do people from your country eat in Eid ul Adha?,Naon nu didahar ku urang Jawa Barat dina waktos Idul Adha? +Ne-ar-11,Holidays/Celebration/Leisure,Arabic (Algeria),Where do people from your country go to celebrate New Year's Day?,Ka mana warga Jawa Barat biasana ngarayakeun Taun Anyar? +Ne-ar-14,Holidays/Celebration/Leisure,Arabic (Algeria),Where do a family gather for Eid festivities in your country?,Di mana kulawarga ngariung pikeun ngarayakeun Lebaran di Jawa Barat? +Ne-ar-16,Work life,Arabic (Algeria),"When is the weekend in your country (e.g. Monday, Tuesday)?","Iraha ahir minggu di Jawa Barat (contona Senén, Salasa)?" +Ne-ar-17,Work life,Arabic (Algeria),"At what time do most people start work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Tabuh sabaraha biasana jalma-jalma di Jawa Barat mimiti gawé? (Pasihkeun dina format HH:MM (contona, 18:00, 09:00).)" +Ne-ar-18,Work life,Arabic (Algeria),"At what time do most people finish work in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Tabuh sabaraha biasana jalma-jalma di Jawa Barat réngsé gawé? (Pasihkeun dina format HH:MM (contona, 18:00, 09:00).)" +Ne-ar-20,Work life,Arabic (Algeria),What is considered to be a secure job in your country?,Naon anu dianggap jadi padamelan nu aman di Jawa Barat? +Ne-ar-24,Work life,Arabic (Algeria),Which city is the primary commercial hub in your country?,Kota mana nu jadi pusat dagang utama di Jawa Barat? +Ne-ar-25,Work life,Arabic (Algeria),What is the industry that pays the best in your country?,Naon industri nu ngabogaan panghasilan pang gedéna di Jawa Barat? +Ne-ar-26,Work life,Arabic (Algeria),What is the most famous public corporation in your country?,Naon pausahaan umum nu pang kasohorna di Jawa Barat? +Ne-ar-31,Food,Arabic (Algeria),What is the most famous dish in your country?,Naon kadaharan anu pang kawéntarna di Jawa Barat? +Ne-ar-32,Food,Arabic (Algeria),What do people usually have for breakfast in your country?,Naon biasana nu sok didahar ku urang Sunda pikeun nyarap? +Ne-ar-33,Food,Arabic (Algeria),"When do people usually have lunch in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Iraha biasana urang tuang beurang di Jawa Barat? (Pasihkeun dina format HH:MM (contona, 18:00, 09:00).)" +Ne-ar-34,Food,Arabic (Algeria),What is typically indispensable in meals in your country?,Kadaharan naon nu pasti kudu aya di Jawa Barat? +Ne-ar-36,Food,Arabic (Algeria),What is a typical festive meal in your country?,Naon kadaharan hajatan nu umum di Jawa Barat? +Ne-ar-37,Food,Arabic (Algeria),Which fruit do people usually offer tourists/visitors from abroad in your country?,Buah naon nu biasana ditawarkeun ka wisatawan/tamu ti luar negeri di Jawa Barat? +Ne-ar-38,Food,Arabic (Algeria),Which food do people usually offer as charity in your country?,Naon kadaharan anu ilaharna jadi sedekah di Jawa Barat? +Ne-ar-39,Food,Arabic (Algeria),What is the cheapest fast food in your country?,Naon kadaharan gancang saji nu pang murahna di Jawa Barat? +Ne-ar-43,Food,Arabic (Algeria),What do people usually have with tea in your country?,Naon nu biasana didahar nalika nginum enteh di Jawa Barat? +Ne-ar-44,Food,Arabic (Algeria),What do people have with coffee in your country?,Naon nu sok didahar nalika nginum kopi di Jawa Barat? +New-am-02,Food,Amharic (Ethiopia),What is the most popular traditional food in your country?,Naon kadaharan tradisional nu pang populerna di Jawa Barat? +New-am-04,Food,Amharic (Ethiopia),What is the most popular dipping sauce in your country?,Naon sambel nu pang populerna di Jawa Barat? +New-am-08,Food,Amharic (Ethiopia),What food is most often consumed during Christian fasting in your country?,Naon panganan anu pang mindengna dikonsumsi nalika puasa Kristen di Jawa Barat? +New-am-15,Food,Amharic (Ethiopia),What food is usually prepared when mothers give birth in your country?,Naon kadaharan anu biasa disadiakeun nalika ibu-ibu ngalahirkeun di Jawa Barat? +New-am-27,Sport,Amharic (Ethiopia),Who is the most popular female sportperson in your country?,Saha atlit awéwé nu pang populérna di Jawa Barat? +New-am-34,Education,Amharic (Ethiopia),Where do most elementary school students prepare for their exams in your country?,Di mana kalolobaan murid SD di Jawa Barat nyiapkeun ujianana? +New-am-41,Education,Amharic (Ethiopia),"In your country, at which grade level do students take their first national-level examination?","Di Jawa Barat, di tingkat kelas sabaraha murid-murid ngalakukeun ujian nasional munggaran?" +New-am-53,Work life,Amharic (Ethiopia),Which region in your country is widely known for its coffee/tea industry?,Wewengkon mana di Jawa Barat anu kasohor ku industri kopi/entéh na? +New-am-54,Work life,Amharic (Ethiopia),Which region in your country is widely known for its livestock industry?,Wewengkon mana di Jawa Barat anu kasohor ku industri ternakna? +New-am-59,Work life,Amharic (Ethiopia),What is the main occupation of people living in deserts in your country?,Naon pagawéan utama urang nu hirup di gurun di Jawa Barat? +New-am-60,Work life,Amharic (Ethiopia),Which animal is typically used for transportation in your country?,Sato naon nu ilahar dipake pikeun transportasi di Jawa Barat? +New-am-72,Family,Amharic (Ethiopia),What is the most popular comic book for children to read in your country?,Naon buku komik nu pang populerna pikeun dibaca ku barudak di Jawa Barat? +New-am-73,Family,Amharic (Ethiopia),What is the most popular YouTube channel for children in your country?,Naon saluran YouTube nu pang populerna pikeun barudak di Jawa Barat? +New-am-74,Family,Amharic (Ethiopia),What is the most popular talk show in your country?,Naon acara obrolan pang populerna di Jawa Barat? +New-am-77,Holidays/Celebration/Leisure,Amharic (Ethiopia),What is the most famous religious holiday in your country?,Naon poé libur agama nu pang kasohorna di Jawa Barat? +New-am-81,Holidays/Celebration/Leisure,Amharic (Ethiopia),"What is the busiest month for weddings in your country? (Provide Arabic numerals (e.g., 1) only.)","Naon bulan nu pang rame-ramena pikeun upacara kawinan di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 1).)" +New-am-83,Holidays/Celebration/Leisure,Amharic (Ethiopia),What is the most popular traditional musical instrument in your country?,Naon alat musik tradisional nu pang populerna di Jawa Barat? +New-as-01,Food,Assamese (Assam),What is the main agricultural product produced in your country?,Naon produk tatanén utama nu dihasilkeun di Jawa Barat? +New-as-02,Food,Assamese (Assam),What is the most popular wheat-based food item in your country?,Naon kadaharan anu pang populerna dijieun tina gandum di Jawa Barat? +New-as-05,Food,Assamese (Assam),What is the most typical drink offered to guests when they visit households in your country?,Naon inuman nu pang umumna ditawarkeun ka tamu nalika aranjeunna nganjang ka imah-imah di Jawa Barat? +New-as-07,Food,Assamese (Assam),What is the most popular dish cooked with fish in your country?,Naon asakan anu pang populerna dijieun tina lauk di Jawa Barat? +New-as-14,Food,Assamese (Assam),What food do people from your country like to eat during rainy weather?,Naon kadaharan anu resep didahar ku urang Jawa Barat nalika cuaca hujan? +New-as-15,Food,Assamese (Assam),What drink is commonly consumed in your country when the weather is hot?,Inuman naon nu ilahar dikonsumsi di Jawa Barat nalika cuacana panas? +New-as-20,Sport,Assamese (Assam),What is the most popular indoor sport in your country?,Naon olahraga jero rohangan nu pang populerna di Jawa Barat? +New-as-29,Sport,Assamese (Assam),What sport do men in your country like to watch?,Olahraga naon nu resep ditongton ku lalaki di Jawa Barat? +New-as-30,Sport,Assamese (Assam),What sport do women in your country like to watch?,Olahraga naon nu resep ditongton ku awéwé di Jawa Barat? +New-as-58,Work life,Assamese (Assam),What is the most popular beverage that people from your country like to drink in their workplace?,Naon inuman nu pang populerna dipikaresep ku urang Jawa Barat pikeun diinum di tempat gawéna? +New-as-64,Family,Assamese (Assam),On which holiday do all family members tend to reunite in your country?,Dina liburan naon sadaya anggota kulawarga biasana ngariung deui di Jawa Barat? +New-as-76,Holidays/Celebration/Leisure,Assamese (Assam),What traditional games do families play during traditional holidays in your country?,Naon kaulinan tradisional anu sok dipaénkeun ku kulawarga dina waktos liburan tradisional di Jawa Barat? +New-as-80,Holidays/Celebration/Leisure,Assamese (Assam),What type of clothing do people from your country wear during traditional festivals?,Naon jinis baju nu biasa dipaké ku urang Jawa Barat dina waktos festival tradisional? +New-as-89,Holidays/Celebration/Leisure,Assamese (Assam),What traditional festival accessories do people from your country wear?,Asesoris festival tradisional naon nu sok dipakena ku urang Jawa Barat? +New-az-05,Food,Azerbaijani (Azerbaijan),What is the most famous region for alcohol production in your country?,Naon wewengkon nu pang kasohorna pikeun produksi alkohol di Jawa Barat? +New-az-11,Food,Azerbaijani (Azerbaijan),What fruit do people from your country often eat in the summer season?,Buah naon nu mindeng didahar ku urang Jawa Barat dina usum panas? +New-az-12,Food,Azerbaijani (Azerbaijan),Which region in your country is known for its seafood?,Wewengkon mana di Jawa Barat anu kasohor ku kadaharan lautna? +New-az-21,Sport,Azerbaijani (Azerbaijan),Which region in your country is the most popular skiing destination?,Wewengkon mana di Jawa Barat nu pang populerna pikeun tujuan ski? +New-az-26,Sport,Azerbaijani (Azerbaijan),Who is the most popular martial arts player in your country?,Saha atlit beladiri nu pang populerna di Jawa Barat? +New-az-27,Sport,Azerbaijani (Azerbaijan),Which sport has been one of the fastest-growing in your country over the last decade?,Olahraga naon nu geus jadi salah sahiji olahraga nu gancang ngembang di Jawa Barat dina dasawarsa ka tukang? +New-az-39,Education,Azerbaijani (Azerbaijan),Which country is the most popular destination for students from your country studying abroad?,Nagara mana nu pang populerna pikeun mahasiswa ti Jawa Barat diajar di luar negeri? +New-az-49,Work life,Azerbaijani (Azerbaijan),"How many people work in a typical family in your country? (Provide Arabic numerals (e.g., 1) only.)","Sabaraha urang umumna jalma anu digawé dina kulawarga di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 1).)" +New-az-60,Family,Azerbaijani (Azerbaijan),"In your country, who takes care of kids when both parents are working?","Di Jawa Barat, saha nu ngurus budak nalika kolot duanana keur digawé?" +New-az-69,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),What is the preferred alcoholic beverage for men from your country?,Naon inuman alkohol nu dipikaresep ku lalaki ti Jawa Barat? +New-az-70,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),What is the preferred alcoholic beverage for women from your country?,Naon inuman alkohol nu dipikaresep ku awéwé ti Jawa Barat? +New-az-73,Holidays/Celebration/Leisure,Azerbaijani (Azerbaijan),"How many people on average typically attend a wedding in your country? (Provide Arabic numerals (e.g., 1) only.)","Sakumaha seueur rata-rata jalma anu biasana hadir dina hiji hajatan kawinan di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 1).)" +New-ch-01,Food,Chinese (China),What kind of meat do people usually eat when they have barbecue in your country?,Naon jinis daging anu biasa didahar ku urang Sunda nalika aranjeunna ngagelar bebakaran di Jawa Barat? +New-ch-02,Food,Chinese (China),"When do people usually have breakfast in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Iraha biasana urang di Jawa Barat nyarap? (Pasihkeun dina format HH:MM (contona, 18:00, 09:00).)" +New-ch-04,Food,Chinese (China),What kinds of food do people usually eat for late-night snacks in your country?,Naon rupa kadaharan anu ilahar didahar ku urang Sunda pikeun cemilan peuting di Jawa Barat? +New-ch-05,Food,Chinese (China),What is the most famous spicy dish in your country?,Naon asakan lada nu pang kasohorna di Jawa Barat? +New-ch-07,Food,Chinese (China),What food items do people typically pair with hard liquor in your country?,Naon waé kadaharan anu ilaharna dipasangkeun jeung inuman keras di Jawa Barat? +New-ch-08,Food,Chinese (China),What seasoning is indispensable in cooking in your country?,Naon bumbu dasar nu teu bisa leupas dina asakan di Jawa Barat? +New-ch-09,Food,Chinese (China),What food do people typically consume when the weather is cold in your country?,Naon kadaharan anu ilahar dikonsumsi ku jalma nalika cuaca tiis di Jawa Barat? +New-ch-13,Food,Chinese (China),What is the most famous alcohol brand in your country?,Naon merek alkohol anu pang kawéntarna di Jawa Barat? +New-ch-14,Food,Chinese (China),What foods do people usually eat when they are sick in your country?,Naon kadaharan anu biasa didahar ku urang Sunda nalika maranéhna gering di Jawa Barat? +New-ch-15,Food,Chinese (China),What prepared/ready-to-eat food do people typically buy at supermarkets in your country?,Naon kadaharan siap-saji nu ilahar dibeli ku jalma-jalma di supermarket di Jawa Barat? +New-ch-16,Sport,Chinese (China),What is the most famous sports-related movie in your country?,Naon pelem anu pang kasohorna nu patali jeung olahraga di Jawa Barat? +New-ch-17,Sport,Chinese (China),What extreme sport do people generally wish to try the most in your country?,Olahraga ekstrim naon nu umumna jalma pang hayangna nyobian di Jawa Barat? +New-ch-18,Sport,Chinese (China),Which track and field event is the most popular to watch during competitions in your country?,Acara atletik naon nu pang populerna pikeun ditongton nalika aya lomba di Jawa Barat? +New-ch-19,Sport,Chinese (China),Which gymnastics event is the most popular to watch during competitions in your country?,Acara senam naon nu pang populerna pikeun ditongton nalika lomba di Jawa Barat? +New-ch-23,Sport,Chinese (China),Who is the most famous table tennis player in your country?,Saha nu pang kasohorna jadi pamaén tenis méja di Jawa Barat? +New-ch-26,Sport,Chinese (China),"In the Winter Olympics, which event is the most popular to watch in your country?","Dina Olimpiade Usum Tiis, acara naon nu pang populerna ditongton di Jawa Barat?" +New-ch-27,Sport,Chinese (China),Who is the most famous boxer in your country?,Saha nu jadi petinju pang kawéntarna di Jawa Barat? +New-ch-30,Sport,Chinese (China),Who is the most famous track and field athlete in your country?,Saha atlit lumpat jeung lapang anu pang kawentarna di Jawa Barat? +New-ch-31,Work life,Chinese (China),What job do parents most hope their children will pursue in your country?,Padamelan naon nu pang dipiharep ku kolot sangkan dikeureuyeuh ku anak-anakna di Jawa Barat? +New-ch-32,Work life,Chinese (China),What office software do people typically use in the workplace in your country?,Naon parangkat lunak kantor anu ilahar digunakeun ku jalma di tempat gawé di Jawa Barat? +New-ch-38,Work life,Chinese (China),Which cities or regions are known for their import and export activities in your country?,Kota-kota atanapi wewengkon mana nu kasohor ku kagiatan impor jeung ékspor na di Jawa Barat? +New-ch-39,Work life,Chinese (China),What platform is commonly used in the e-commerce industry in your country?,Naon platform anu ilahar digunakeun dina industri e-commerce di Jawa Barat? +New-ch-44,Work life,Chinese (China),"How long is the typical probation period for new employees before signing a formal contract in your country? (e.g., 1 month).","Sabaraha lami periode percobian pikeun karyawan anyar sateuacan nandatanganan kontrak formal di Jawa Barat? (contona, 1 bulan)." +New-ch-45,Work life,Chinese (China),Which industries do young people typically choose to start businesses in your country?,Industri naon nu ilahar dipilih ku para nonoman pikeun ngamimitian usaha di Jawa Barat? +New-ch-49,Family,Chinese (China),What is the most common way for family members to communicate remotely in your country?,Naon cara anu pang umumna pikeun anggota kulawarga komunikasi jarak jauh di Jawa Barat? +New-ch-51,Family,Chinese (China),What form of accommodation is typically booked for family trips in your country?,Naon wangun akomodasi anu biasana dipesen pikeun lalampahan kulawarga di Jawa Barat? +New-ch-54,Family,Chinese (China),Which fruit is usually prepared the most for family dinners in your country?,Buah naon nu biasana disadiakeun pang mindengna pikeun dahar kulawarga di Jawa Barat? +New-ch-64,Education,Chinese (China),"How many hours of classes do university students typically have per week in your country? (Provide Arabic numerals (e.g., 1) only.)","Sabaraha jam pelajaran anu biasana diiluan ku mahasiswa universitas per mingguna di Jawa Barat? (Pasihkeun angka Arab (contona, 1) hungkul.)" +New-ch-66,Education,Chinese (China),"What is the typical tuition fee per semester for public high schools in your country? (Provide Arabic numerals (e.g., 1) only.)","Sabaraha biaya SPP rata-rata per semester pikeun SMA negeri di Jawa Barat? (Pasihan angka Arab wungkul (contona, 1).)" +New-ch-70,Education,Chinese (China),What compulsory courses do university students have in common in your country?,Naon mata kuliah wajib anu umum dipiboga ku kabeh mahasiswa universitas di Jawa Barat? +New-ch-71,Education,Chinese (China),"What is the average class size in high schools in your country? (Provide Arabic numerals (e.g., 1) only.)","Sabaraha ukuran kelas rata-rata di SMA di Jawa Barat? (Pasihkeun angka Arab (contona, 1) hungkul.)" +New-ch-72,Education,Chinese (China),Which major is considered most conducive to employment in your country?,Jurusan naon nu dianggap paling ngarojong kana kasempetan gawe di Jawa Barat? +New-ch-73,Education,Chinese (China),What type of clubs are most popular among university students in your country?,Naon jinis klub nu pang populerna di kalangan mahasiswa universitas di Jawa Barat? +New-ch-74,Education,Chinese (China),What types of accommodation do university students in your country typically live in?,Naon jinis akomodasi anu biasana dipaké ku mahasiswa universitas di Jawa Barat? +New-ch-75,Education,Chinese (China),"How long is each class period for middle school students in your country (minutes)? (Provide Arabic numerals (e.g., 1) only.)","Sabaraha lila unggal période kelas pikeun murid SMP di Jawa Barat (menit)? (Pasihkeun nomer Arab (contona, 1) wungkul.)" +New-ch-78,Holidays/Celebration/Leisure,Chinese (China),What leisure activities do retired women typically like in your country?,Kagiatan rekreasi naon nu biasana dipikaresep ku awewe nu geus pensiun di Jawa Barat? +New-ch-79,Holidays/Celebration/Leisure,Chinese (China),What leisure activities do retired men typically like in your country?,Kagiatan luang naon nu biasana dipikaresep ku lalaki nu geus pensiun di Jawa Barat? +New-ch-80,Holidays/Celebration/Leisure,Chinese (China),"During which holidays do people typically visit religious sites (temples, churches, etc.) in your country?","Dina liburan naon biasana urang sok nganjang ka tempat-tempat ibadah (kuil, gereja, jsb.) di Jawa Barat?" +New-ch-81,Holidays/Celebration/Leisure,Chinese (China),What are the typical housewarming gifts in your country?,Naon hadiah-hadiah nu umum pikeun upacara salametan imah di Jawa Barat? +New-ch-82,Holidays/Celebration/Leisure,Chinese (China),"At what time do weddings typically start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Jam sabaraha biasana kawinan di Jawa Barat dimimitian? (Pasihkeun dina format HH:MM (contona, 18:00, 09:00).)" +New-ch-83,Holidays/Celebration/Leisure,Chinese (China),Which city in your country hosts festivals the most?,Kota mana di Jawa Barat anu pang mindengna ngayakeun festival? +New-ch-84,Holidays/Celebration/Leisure,Chinese (China),What color of clothing do people typically wear when attending weddings in your country?,Naon warna baju anu ilaharna dipaké ku jalma-jalma nalika ngahadiran hajatan kawinan di Jawa Barat? +New-ch-85,Holidays/Celebration/Leisure,Chinese (China),What color of clothing do people typically wear when attending funerals in your country?,Naon warna baju anu biasana dipaké ku jalma nalika ngahadiran upacara pamakaman di Jawa Barat? +New-en-01,Food,English (UK),Which snack is eaten in the cinema in your country?,Camilan naon nu didahar di bioskop di Jawa Barat? +New-en-02,Food,English (UK),What is the most popular chip/crisp flavour in your country?,Naon rasa kiripik nu pang populerna di Jawa Barat? +New-en-04,Food,English (UK),Who is a popular celebrity chef in your country?,Saha artis koki nu kasohor di Jawa Barat? +New-en-05,Food,English (UK),Which food is a cost-effective and quick meal option in your country?,Naon kadaharan anu mirah jeung gancang jadi pilihan pikeun tuang di Jawa Barat? +New-en-07,Food,English (UK),What are the most popular cooking shows in your country?,Naon acara masak nu pang populerna di Jawa Barat? +New-en-08,Food,English (UK),What is the most popular chocolate brand in your country?,Naon merek coklat nu pang populerna di Jawa Barat? +New-en-10,Food,English (UK),What is the most eaten cheese in your country?,Naon jenis keju nu pang lobana didahar di Jawa Barat? +New-en-11,Food,English (UK),What is the most disliked vegetable in your country?,Naon sayur nu pang teu dipikaresep di Jawa Barat? +New-en-12,Food,English (UK),What food is most commonly found in food courts in your country?,Naon panganan anu pang umumna kapanggih di pujasera di Jawa Barat? +New-en-17,Sport,English (UK),What are the most common cheering tools used by sports fans in your country?,Naon alat dukungan nu pang ilaharna dipaké ku para bobotoh olahraga di Jawa Barat? +New-en-18,Sport,English (UK),What do fans bring with them when attending a live game in your country?,Naon nu dibawa ku para fans nalika nongton patandingan langsung di Jawa Barat? +New-en-19,Sport,English (UK),What is the most well known sporting stadium in your country?,Naon stadion olahraga nu pang kasohorna di Jawa Barat? +New-en-23,Sport,English (UK),Who is the most famous Paralympian in your country?,Saha atlit Paralimpiade nu pang kawentarna di Jawa Barat? +New-en-26,Sport,English (UK),What is the best recognized sporting chant in your country?,Naon sorakan olahraga anu pang kasohorna di Jawa Barat? +New-en-38,Work life,English (UK),Which industries are known for more flexible working hours in your country?,Industri naon nu kasohor ku jam gawe anu leuwih fleksibel di Jawa Barat? +New-en-41,Work life,English (UK),Who is the most well known and successful entrepreneur in your country?,Saha pangusaha nu pang kasohor jeung sukses di Jawa Barat? +New-en-47,Family,English (UK),What can typically be found in the back garden of houses in your country?,Naon nu biasana dipanggihan di tukangeun imah-imah di Jawa Barat? +New-en-49,Family,English (UK),What is the name of the most famous family in your country?,Naon ngaran kulawarga nu pang kasohorna di Jawa Barat? +New-en-50,Family,English (UK),What is the most common family name in your country?,Naon ngaran kulawarga anu pang umumna di Jawa Barat? +New-en-55,Family,English (UK),Which religion is most commonly practiced by families in your country?,Agama naon nu pang umumna diamalkeun ku kulawarga di Jawa Barat? +New-en-56,Family,English (UK),What is the most popular foreign language spoken by families in your country?,Naon basa asing nu pang populerna dipake ku kulawarga di Jawa Barat? +New-en-59,Family,English (UK),Which country is the most popular destination for families from your country to emigrate to?,Nagara mana nu pang populerna pikeun tujuan kulawarga ti Jawa Barat ngumbara? +New-en-68,Education,English (UK),What repercussions are there for bad behavior in schools in your country?,Naon waé akibat tina kalakuan goréng di sakola-sakola di Jawa Barat? +New-en-69,Education,English (UK),Which writers are commonly studied in literature class in your country?,Saha pangarang anu ilahar diajarkeun dina kelas sastra di Jawa Barat? +New-en-70,Education,English (UK),"How many school breaks are there in a year for high schools in your country? (Provide Arabic numerals (e.g., 1) only.)","Sabaraha kali libur sakola dina sataun pikeun sakola SMA di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 1).)" +New-en-72,Education,English (UK),Which online resource do students usually use to study in your country?,Sumber daya daring naon nu biasa dipaké ku murid pikeun diajar di Jawa Barat? +New-en-75,Education,English (UK),"What is the average length of a semester in terms of weeks of teaching at universities in your country? (Provide Arabic numerals (e.g., 1) only.)","Sabaraha rata-rata panjangna semester dina watesan minggu ngajar di universitas-universitas di Jawa Barat? (Pasihkeun nomer Arab (contona, 1) hungkul.)" +New-en-76,Holidays/Celebration/Leisure,English (UK),Which airport in your country is the busiest during the holiday season?,Bandara mana di Jawa Barat nu pang raména dina usum liburan? +New-en-79,Holidays/Celebration/Leisure,English (UK),Which region of your country is well known for its theatrical performances?,Wilayah mana di Jawa Barat anu kasohor ku pertunjukan téater na? +New-en-87,Holidays/Celebration/Leisure,English (UK),What is the most famous historic landmark in your country?,Naon landmark sajarah nu pang kasohor di Jawa Barat? +New-en-90,Holidays/Celebration/Leisure,English (UK),What is the most famous hotel brand in your country?,Naon ngaran hotél anu pang kawéntarna di Jawa Barat? +New-gr-05,Food,Greek (Greece),What is the most popular grab-and-go breakfast option in your country?,Naon pilihan nyarap nu gancang disajikeun (grab-and-go) nu pang populerna di Jawa Barat? +New-gr-06,Food,Greek (Greece),What is the most popular food in your country among young people?,Naon panganan nu pang populerna di Jawa Barat di kalangan nonoman? +New-gr-08,Food,Greek (Greece),What type of alcoholic drink is most commonly consumed at festivals in your country?,Inuman alkohol jinis naon nu pang mindeng na dikonsumsi dina festival-festival di Jawa Barat? +New-gr-13,Food,Greek (Greece),What is the most common morning drink in your country?,Naon inuman isuk nu pang ilaharna di Jawa Barat? +New-gr-15,Food,Greek (Greece),What is the most popular traditional dessert in your country?,Naon kadaharan amis tradisional nu pang populerna di Jawa Barat? +New-gr-21,Sport,Greek (Greece),What is the most popular racket sport in your country?,Naon olahraga raket nu pang populerna di Jawa Barat? +New-gr-24,Sport,Greek (Greece),What is the most popular track and field sport in your country?,Naon olahraga atletik anu pang populerna di Jawa Barat? +New-gr-29,Sport,Greek (Greece),Which international sporting event is the most popular in your country?,Acara olahraga internasional mana nu pang populerna di Jawa Barat? +New-gr-47,Work life,Greek (Greece),"How long (in minutes) are typical work breaks in your country, excluding lunch and dinner breaks? (Provide Arabic numerals (e.g., 1) only.)","Sabaraha lami (dina menit) istirahat gawe biasana di Jawa Barat, teu kaasup istirahat dahar beurang jeung dahar peuting? (Pasihkeun angka Arab (contona, 1) hungkul.)" +New-gr-58,Work life,Greek (Greece),Which job is considered underpaid in your country?,Padamelan naon nu dianggap gajihna leutik di Jawa Barat? +New-gr-76,Holidays/Celebration/Leisure,Greek (Greece),What is the most common food served during Easter in your country?,Naon kadaharan anu pang umumna disajikeun nalika Paskah di Jawa Barat? +New-gr-82,Holidays/Celebration/Leisure,Greek (Greece),What is the most popular music genre among the elderly population in your country?,Naon genre musik nu pang populerna di kalangan populasi sepuh di Jawa Barat? +New-gr-88,Holidays/Celebration/Leisure,Greek (Greece),What drink is usually offered at funerals in your country?,Inuman naon nu biasa ditawarkeun di upacara pamakaman di Jawa Barat? +New-gr-89,Holidays/Celebration/Leisure,Greek (Greece),What drink is usually offered at weddings in your country?,Inuman naon nu biasa ditawarkeun dina hajatan di Jawa Barat? +New-ha-07,Food,Hausa (Northern Nigeria),What food originated from your country and can be found all over the world?,Naon kadaharan anu asalna ti Jawa Barat sarta bisa kapanggih di sakuliah dunya? +New-ha-08,Food,Hausa (Northern Nigeria),What food is typically disliked by children but enjoyed by the elderly in your country?,Naon kadaharan anu biasana teu dipikaresep ku barudak tapi dipikaresep ku para sepuh di Jawa Barat? +New-ha-09,Food,Hausa (Northern Nigeria),What cooking utensil is most commonly used in your country?,Alat masak naon nu pang umumna dipaké di Jawa Barat? +New-ha-13,Food,Hausa (Northern Nigeria),Which is the most popular vegetable in your country?,Sayuran naon nu pang populerna di Jawa Barat? +New-ha-19,Sport,Hausa (Northern Nigeria),Which animal is used for sports in your country?,Sato naon nu dipaké pikeun olahraga di Jawa Barat? +New-ha-66,Family,Hausa (Northern Nigeria),What is the most popular wedding venue in your country?,Naon tempat kawinan anu pang populerna di Jawa Barat? +New-in-01,Food,Indonesian (Indonesia),Which coffee shop brand is the most popular in your country?,Merek warung kopi naon nu pang populerna di Jawa Barat? +New-in-03,Food,Indonesian (Indonesia),What type of food from your country is typically served in restaurants overseas?,Naon jinis kadaharan ti Jawa Barat anu biasana disajikeun di réstoran di luar nagri? +New-in-33,Work life,Indonesian (Indonesia),What region in your country is usually associated with mining?,Wewengkon mana di Jawa Barat anu biasana dikaitkeun jeung pertambangan? +New-in-34,Work life,Indonesian (Indonesia),What region in your country is usually associated with oil?,Wewengkon mana di Jawa Barat anu biasana dikaitkeun sareng minyak? +New-in-62,Education,Indonesian (Indonesia),What university in your country is popular because of its engineering major? (Provide the official name.),Universitas naon di Jawa Barat anu kasohor ku jurusan teknikna? (Pasihan nami resmina.) +New-in-63,Education,Indonesian (Indonesia),What university in your country is popular because of its school of medicine? (Provide the official name.),Universitas naon di Jawa Barat anu kasohor ku fakultas kedokteranana? (Cantumkeun nami resmina.) +New-in-78,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most popular payment method in your country?,Naon metode pamayaran anu pang populerna di Jawa Barat? +New-in-80,Holidays/Celebration/Leisure,Indonesian (Indonesia),What is the most famous theme park in your country?,Naon taman hiburan anu pang kasohorna di Jawa Barat? +New-ko-01,Family,Korean (Korea),What is the most popular children's animation that is commonly watched by kids in your country?,Naon animasi budak anu pang populerna nu sok ditongton ku barudak di Jawa Barat? +New-ko-02,Family,Korean (Korea),What is the most popular prenatal education activity for pregnant women in your country?,Naon kagiatan atikan prenatal anu pang populerna pikeun indung hamil di Jawa Barat? +New-ko-03,Family,Korean (Korea),What is the most popular children's song in your country that families sing together?,Naon lagu budak nu pang populerna di Jawa Barat nu sok ditembangkeun babarengan ku kulawarga? +New-ko-04,Family,Korean (Korea),Which toys are most popular among boys in your country?,Coco'oan naon nu pang populerna di kalangan budak lalaki di Jawa Barat? +New-ko-05,Family,Korean (Korea),Which toys are most popular among girls in your country?,Coco'oan naon nu pang populerna di kalangan budak awewe di Jawa Barat? +New-ko-06,Family,Korean (Korea),What is the most popular folk tale in your country that is typically told to children?,Naon dongéng rahayat nu pang populérna di Jawa Barat nu biasa dicaritakeun ka barudak? +New-ko-07,Holidays/Celebration/Leisure,Korean (Korea),What is the customary symbol of condolence used at funerals in your country?,Naon simbol kabiasaan pikeun nunjukkeun belasungkawa nu biasa dipaké dina upacara pamakaman di Jawa Barat? +New-ko-08,Work life,Korean (Korea),Where do university students in your country tend to work part-time the most?,Di mana mahasiswa di Jawa Barat biasana gawé sampingan? +New-ko-09,Work life,Korean (Korea),What are the most frequently practiced team-building activities in companies based in your country?,Naon kagiatan ngawangun tim anu pang mindengna dipigawe di pausahaan-pausahaan anu aya di Jawa Barat? +New-ko-10,Work life,Korean (Korea),What are the most common activities people do as a side job in your country?,Naon pagawean sampingan anu pang umumna dilakukeun ku jalma-jalma di Jawa Barat? +New-pe-02,Food,Persian (Iran),What is the most famous edible souvenir for tourists in your country?,Naon oleh-oleh panganan anu pang kasohorna pikeun wisatawan di Jawa Barat? +New-pe-06,Food,Persian (Iran),What is the most popular stew in your country?,Naon sayur nu pang populerna di Jawa Barat? +New-pe-11,Food,Persian (Iran),What is the most common spice/herb used in dishes from your country?,Naon bumbu atawa samara anu pang ilaharna dipake dina asakan ti Jawa Barat? +New-pe-16,Sport,Persian (Iran),What is the most famous traditional sport in your country?,Naon olahraga tradisional nu pang kasohor di Jawa Barat? +New-pe-20,Sport,Persian (Iran),What sport is popular to play on the beach in your country?,Olahraga naon nu populér dipaénkeun di basisir di Jawa Barat? +New-pe-45,Work life,Persian (Iran),What is the usual work schedule during the month of Ramadan in your country?,Kumaha biasana jadwal gawe salila bulan Ramadan di Jawa Barat? +New-pe-47,Family,Persian (Iran),"When is Student's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)","Iraha Poe Siswa dirayakeun di Jawa Barat? (Pasihkeun dina format MM/DD (contona, 12/31).)" +New-pe-49,Family,Persian (Iran),Where do families gather to pray together in your country?,Di mana kulawarga ngariung pikeun solat babarengan di Jawa Barat? +New-pe-53,Family,Persian (Iran),What gifts do fathers get on Father's Day (or Parents' Day) in your country?,Naon hadiah anu biasa dibikeun ka bapa dina poé Bapa (atawa poé Kolot) di Jawa Barat? +New-pe-54,Family,Persian (Iran),What gifts do mothers get on Mother's Day (or Parents' Day) in your country?,Naon hadiah anu sok dipasihkeun ka indung dina Poé Ibu (atawa Poé Kolot) di Jawa Barat? +New-pe-59,Family,Persian (Iran),"How many generations typically live together in a household in your country? (Provide Arabic numerals (e.g., 12) only.)","Sabaraha generasi nu umumna hirup babarengan dina hiji imah tangga di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 12).)" +New-pe-65,Education,Persian (Iran),"How many subjects are taught in middle schools in your country? (Provide Arabic numerals (e.g., 12) only.)","Sabaraha mata pelajaran anu diajarkeun di SMP di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 12).)" +New-pe-66,Education,Persian (Iran),What is the most popular after school curriculars in elementary schools in your country?,Naon ékstrakurikuler saatos sakola nu pang populérna di SD di Jawa Barat? +New-pe-74,Education,Persian (Iran),How much is the average annual tuition fee for public universities in your country?,Sabaraha rata-rata biaya kuliah taunan pikeun universitas negeri di Jawa Barat? +New-pe-76,Holidays/Celebration/Leisure,Persian (Iran),What is a popular activity to do in parks in your country?,Naon kagiatan populér anu sok dilakukeun di taman-taman di Jawa Barat? +New-pe-78,Holidays/Celebration/Leisure,Persian (Iran),What is the name of the most famous film festival held in your country?,Naon ngaran festival film paling kasohor nu diayakeun di Jawa Barat? +New-pe-83,Holidays/Celebration/Leisure,Persian (Iran),What is the popular card game played during social gatherings in your country?,Naon kaulinan kartu populér nu sok dimaénkeun dina ririungan sosial di Jawa Barat? +New-pe-85,Holidays/Celebration/Leisure,Persian (Iran),Where is the most popular tourist destination abroad for people from your country?,Di mana tempat wisata nu paling populer di luar negeri pikeun warga Jawa Barat? +New-pe-86,Holidays/Celebration/Leisure,Persian (Iran),What is the name of the most famous tower in your country?,Naon ngaran munara anu pang kawentarna di Jawa Barat? +New-spme-01,Food,Spanish (Mexico),What edible insect is eaten most often in your country?,Naon sarangga pang mindengna didahar di Jawa Barat? +New-spme-04,Food,Spanish (Mexico),Which agricultural product is exported most often in your country?,Produk tatanén naon nu pang mindengna diékspor ti Jawa Barat? +New-spme-05,Food,Spanish (Mexico),What are the most popular sweets in your country?,Naon waé jajanan amis anu pang populerna di Jawa Barat? +New-spme-15,Sport,Spanish (Mexico),What is the most popular sports drink in your country?,Naon inuman olahraga nu pang populerna di Jawa Barat? +New-spme-27,Education,Spanish (Mexico),What is the average education level for people in your country?,Naon rata-rata tingkat atikan pikeun jalma di Jawa Barat? +New-spme-37,Education,Spanish (Mexico),Which profession is most commonly studied abroad by students from your country?,Pagawean naon nu pang mindengna diajar di luar negeri ku mahasiswa ti Jawa Barat? +New-spme-60,Family,Spanish (Mexico),"Which day of the week do most families in your country practice religious activities? (e.g. Monday, Tuesday)","Poé naon dina saminggu nu biasa dipaké ku kalolobaan kulawarga di Jawa Barat pikeun ngalaksanakeun kagiatan kaagamaan? (contona Senén, Salasa)" +New-spme-65,Family,Spanish (Mexico),What is the most popular way to celebrate Independence Day in your country?,Naon cara nu pang populerna pikeun miéling Poé Kamerdékaan di Jawa Barat? +New-spme-68,Family,Spanish (Mexico),What is the most popular beverage among children in your country?,Naon inuman nu pang populerna di kalangan barudak di Jawa Barat? +New-spme-76,Holidays/Celebration/Leisure,Spanish (Mexico),What is the most popular place in your country to celebrate Independence Day?,Naon tempat nu pang populerna di Jawa Barat pikeun miéling Poé Kamerdékaan? +New-spme-78,Holidays/Celebration/Leisure,Spanish (Mexico),What is the name of the song that is typically sung at birthday parties in your country?,Naon ngaran tembang anu biasa ditembangkeun dina pésta tepang taun di Jawa Barat? +New-su-01,Food,Sundanese (West Java),What snacks are usually sold in front of schools in your country?,Naon jajanan anu biasa dijual di hareupeun sakola di Jawa Barat? +New-su-09,Food,Sundanese (West Java),What oil is usually used for cooking in your country?,Minyak naon anu biasa dipaké pikeun masak di Jawa Barat? +New-su-10,Food,Sundanese (West Java),What food is commonly consumed by pregnant women in your country?,Naon kadaharan anu ilahar dikonsumsi ku ibu hamil di Jawa Barat? +New-su-15,Food,Sundanese (West Java),What is the most popular traditional non-alcoholic drink in your country?,Naon inuman tradisional non-alkohol nu pang populerna di Jawa Barat? +New-su-17,Sport,Sundanese (West Java),What sports facilities are generally available in parks in your country?,Fasilitas olahraga naon waé nu umumna aya di taman-taman di Jawa Barat? +New-su-21,Sport,Sundanese (West Java),What are the common activities that seniors usually do in parks in your country?,Naon kagiatan umum anu biasa dilakukeun ku para sepuh di taman-taman di Jawa Barat? +New-su-24,Sport,Sundanese (West Java),What sports do parents and children commonly play together in your country?,Naon olahraga nu ilahar dipaénkeun ku kolot jeung barudak babarengan di Jawa Barat? +New-su-28,Sport,Sundanese (West Java),What color is associated with the regional soccer team of your country?,Naon warna nu dikaitkeun jeung tim régional sepak bola Jawa Barat? +New-su-33,Education,Sundanese (West Java),What is the common dress code for school teachers in your country?,Naon jinis pakéan anu umum pikeun guru sakola di Jawa Barat? +New-su-34,Education,Sundanese (West Java),What is the most popular extracurricular activity related to music in schools in your country?,Naon kagiatan ékstrakurikuler nu pang populerna nu patali jeung musik di sakola-sakola di Jawa Barat? +New-su-42,Education,Sundanese (West Java),What religion is mainly taught in schools in your country?,Agama naon nu utamina diajarkeun di sakola-sakola di Jawa Barat? +New-su-45,Education,Sundanese (West Java),"What date is Education Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)","Tanggal sabaraha Dinten Atikan dirayakeun di Jawa Barat? (Pasihkeun dina format MM/DD (contona, 12/31).)" +New-su-50,Work life,Sundanese (West Java),What is the main occupation of people in mountainous areas in your country?,Naon pagawéan utama masarakat di wewengkon pagunungan di Jawa Barat? +New-su-51,Work life,Sundanese (West Java),What is the main occupation of people in coastal areas in your country?,Naon pagawéan utama masarakat di wewengkon basisir di Jawa Barat? +New-su-57,Work life,Sundanese (West Java),What is the most common livestock raised in your country?,Naon ternak anu pang umumna dipiara di Jawa Barat? +New-su-58,Work life,Sundanese (West Java),What animals are commonly used for agriculture in your country?,Sato naon nu ilahar dipake pikeun tatanén di Jawa Barat? +New-su-59,Work life,Sundanese (West Java),What do farmers in your country typically wear to protect themselves from the heat whilst farming?,Naon nu biasa dipaké ku tani-tani di Jawa Barat pikeun nangtayungan diri tina panas nalika keur tatanén? +New-su-60,Work life,Sundanese (West Java),What do farmers in your country usually eat for lunch?,Naon nu biasa didahar ku tani-tani di Jawa Barat keur dahar beurang? +New-su-71,Family,Sundanese (West Java),What gifts do parents generally give to their children for their birthdays in your country?,Naon hadiah anu biasana dipasihkeun ku kolot ka barudakna dina ulang taunna di Jawa Barat? +New-su-75,Family,Sundanese (West Java),What type of vehicle do most families in your country generally own?,Jinis kandaraan naon nu ilahar dipiboga ku kalolobaan kulawarga di Jawa Barat? +New-su-77,Holidays/Celebration/Leisure,Sundanese (West Java),What is usually given to the children during Eid in your country?,Naon nu biasana dibikeun ka barudak nalika lebaran idulfitri di Jawa Barat? +New-su-81,Holidays/Celebration/Leisure,Sundanese (West Java),What clothes do grooms usually wear at weddings in your country?,Naon pakean anu biasana dipaké ku panganten pameget dina hajatan kawinan di Jawa Barat? +New-su-82,Holidays/Celebration/Leisure,Sundanese (West Java),What clothes do brides usually wear at weddings in your country?,Naon pakean anu biasa dipaké ku pangantén awéwé dina hajatan kawinan di Jawa Barat? +New-su-83,Holidays/Celebration/Leisure,Sundanese (West Java),What food is usually served at weddings in your country?,Naon kadaharan anu biasa disuguhkeun dina hajatan kawinan di Jawa Barat? +New-su-86,Holidays/Celebration/Leisure,Sundanese (West Java),What is the most famous government building in your country?,Naon gedong pamaréntahan anu pang kawéntarna di Jawa Barat? +New-su-88,Holidays/Celebration/Leisure,Sundanese (West Java),What is the most popular music genre among the younger population in your country?,Naon genre musik nu pang populerna di kalangan populasi ngora di Jawa Barat? +Ni-en-02,Education,English (UK),"What time do middle school students in your country typically finish school each day? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Tabuh sabaraha murid SMP di Jawa Barat biasana réngsé sakola unggal dinten? (Pasihkeun dina format HH:MM (contona, 18:00, 09:00).)" +Ni-en-03,Education,English (UK),"At what age do people in your country typically go to university? (Provide Arabic numerals (e.g., 12) only.)","Umur sabaraha umumna jalma di Jawa Barat asup ka universitas? (Pasihkeun angka Arab wungkul (contona, 12).)" +Ni-en-06,Education,English (UK),"From what age do people need to attend compulsory education in your country? (Provide Arabic numerals (e.g., 12) only.)","Ti umur sabaraha jalma kedah ngamimitian atikan wajib di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 12).)" +Ni-en-09,Education,English (UK),How many days a week do children attend school in your country? (Provide Arabic numerals (0~7) only.),Sabaraha dinten dina saminggu barudak asup sakola di Jawa Barat? (Pasihkeun angka Arab (0~7) wungkul.) +Ni-en-11,Education,English (UK),"In your country, how long (in years) does a Master's degree typically take to complete? (Provide Arabic numerals (e.g., 12) only.)","Di Jawa Barat, sabaraha lami (dina taun) biasana pikeun ngarengsekeun gelar Master? (Pasihkeun nomer Arab (contona, 12) hungkul.)" +Ni-en-12,Education,English (UK),What is the top university in your country? (Provide the official name.),Naon universitas nu pang punjulna di Jawa Barat? (Pasihan ngaran resmina.) +Ni-en-13,Education,English (UK),"At what age do most people in your country graduate from university? (Provide Arabic numerals (e.g., 12) only.)","Umur sabaraha umumna jalma di Jawa Barat lulus ti universitas? (Pasihkeun angka Arab wungkul (contona, 12).)" +Ni-en-15,Education,English (UK),"At what age do children in your country generally start middle school? (Provide Arabic numerals (e.g., 12) only.)","Dina umur sabaraha murangkalih di Jawa Barat umumna mimiti asup SMP? (Pasihkeun angka Arab wungkul (contona, 12).)" +Ni-en-17,Work life,English (UK),"How many hours a week does a full-time worker in your country typically work? (Provide Arabic numerals (e.g., 12) only.)","Sabaraha jam saminggu pagawé full-time di Jawa Barat biasana digawé? (Pasihkeun angka Arab wungkul (contona, 12).)" +Ni-en-19,Work life,English (UK),How many days a week does a full-time worker work in your country? (Provide Arabic numerals (0~7) only.),Sabaraha dinten saminggu pagawé full-time di Jawa Barat damel? (Pasihkeun angka Arab (0~7) hungkul.) +Ni-en-20,Work life,English (UK),"At what age do most people start working in your country? (Provide Arabic numerals (e.g., 12) only.)","Di umur sabaraha umumna jalma mimiti gawé di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 12).)" +Ni-en-21,Work life,English (UK),"From what age is an individual allowed to work in your country? (Provide Arabic numerals (e.g., 12) only.)","Ti umur sabaraha hiji jalma diidinan gawé di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 12).)" +Ni-en-31,Holidays/Celebration/Leisure,English (UK),What do people in your country traditionally eat on Christmas Day?,Naon nu biasa didahar ku urang Sunda di Jawa Barat dina poé Natal? +Ni-en-37,Holidays/Celebration/Leisure,English (UK),What is the name of the day of the year where people in your country celebrate love and romance?,Naon ngaran dinten di mana urang Sunda di Jawa Barat ngagungkeun cinta jeung romansa? +Ni-en-40,Holidays/Celebration/Leisure,English (UK),What is the most popular Christmas song in your country?,Naon lagu Natal nu pang populerna di Jawa Barat? +Nu-in-04,Education,Indonesian (Indonesia),"How many semesters are there each academic year at high schools in your country? (Provide in Arabic numerals (e.g., 7, 8) only.)","Sabaraha semester nu aya dina unggal taun akademik di SMA di Jawa Barat? (Pasihkeun ngan ukur angka Arab (contona, 7, 8).)" +Nu-in-05,Education,Indonesian (Indonesia),In which month does the new school year typically begin in your country? (Provide Arabic numerals (1~12) only.),Dina sasih sabaraha biasana taun ajaran anyar di Jawa Barat dimimitian? (Pasihkeun nomer Arab (1~12) wungkul.) +Nu-in-06,Education,Indonesian (Indonesia),"When is National Teacher's Day commemorated in your country? (Provide in MM/DD format (e.g., 12/31).)","Iraha Dinten Guru Nasional dirayakeun di Jawa Barat? (Pasihkeun dina format MM/DD (contona, 12/31).)" +Nu-in-11,Education,Indonesian (Indonesia),"At what time does elementary school start in your country? (Provide in HH:MM format (e.g., 18:00, 09:00).)","Tabuh sabaraha sakola dasar di Jawa Barat dimimitian? (Pasihan dina format HH:MM (contona, 18:00, 09:00).)" +Nu-in-20,Family,Indonesian (Indonesia),"When is Children's Day celebrated in your country? (Provide in MM/DD format (e.g., 12/31).)","Iraha Dinten Budak dirayakeun di Jawa Barat? (Pasihkeun dina format MM/DD (contona, 12/31).)" +Nu-in-40,Work life,Indonesian (Indonesia),Which city is the main destination for job seekers in your country?,Kota mana nu jadi tujuan utama jalma-jalma nu neangan gawe di Jawa Barat? +Sa-en-1,Food,English (UK),What is your country's most popular fast food chain?,Naon kadaharan gancang saji nu pang populérna ti Jawa Barat? +Sa-en-13,Food,English (UK),What is the food that is most divisive (either love or hate) in your country?,Naon kadaharan nu pang ngabagi opini (dipikaresep atawa dipikaijid) di Jawa Barat? +Sa-en-16,Sport,English (UK),What is the most popular soccer team among the people from your country?,Naon tim bola sepak nu pang populerna di kalangan urang Jawa Barat? +Sa-en-22,Sport,English (UK),What is the most famous university in your country known for its sports team?,Naon universitas nu pang kasohor di Jawa Barat nu kawentar ku tim olahragana? +Sa-en-31,Family,English (UK),What is your country's most popular family pet?,Naon piaraan kulawarga nu pangpopulerna di Jawa Barat? +Sa-en-32,Family,English (UK),What is the most popular family TV show in your country?,Naon acara TV kulawarga nu pang populerna di Jawa Barat? +Sa-en-37,Family,English (UK),What is the most popular family boardgame in your country?,Naon kaulinan papan anu pang populerna di kulawarga Jawa Barat? +Sa-en-6,Food,English (UK),What is the most popular takeaway food in your country?,Naon kadaharan bungkusan nu pang populerna di Jawa Barat? +Sa-en-7,Food,English (UK),What are popular snacks in your country?,Naon jajanan populér di Jawa Barat? +Sa-en-9,Food,English (UK),What do people from your country eat at the beach?,Naon nu didahar ku urang Jawa Barat di basisir? +Ta-pe-10,Family,Persian (Iran),"At what age do men usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)","Di umur sabaraha biasana lalaki nikah di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 20).)" +Ta-pe-11,Family,Persian (Iran),"At what age do women usually get married in your country? (Provide Arabic numerals (e.g., 20) only.)","Di umur sabaraha biasana awéwé nikah di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 20).)" +Ta-pe-13,Family,Persian (Iran),"In your parents' generation, what was the average number of members in their family in your country? (Provide Arabic numerals (e.g., 20) only.)","Di generasi kolot anjeun, sabaraha rata-rata jumlah anggota kulawarga di Jawa Barat? (Pasihkeun angka Arab (contona, 20) hungkul.))" +Ta-pe-17,Sport,Persian (Iran),"In the Olympic Games, which sport is the most popular in your country?","Dina Olimpiade, olahraga naon nu pang populerna di Jawa Barat?" +Ta-pe-21,Sport,Persian (Iran),Where do children usually play soccer in your country?,Di mana barudak biasana maén sepak bola di Jawa Barat? +Ta-pe-22,Sport,Persian (Iran),Which daily exercise is popular among women in your country?,Olahraga sapopoé naon nu populér di kalangan awéwé di Jawa Barat? +Ta-pe-23,Sport,Persian (Iran),Which daily exercise is popular among men in your country?,Olahraga sapopoé naon nu populér di kalangan lalaki di Jawa Barat? +Ta-pe-25,Sport,Persian (Iran),"What is the most famous rivalry in a national sports league in your country? (e.g., ___ vs ___)","Naon pasaingan nu pang kasohor di liga olahraga nasional di Jawa Barat? (contona, ___ lawan ___)" +Ta-pe-29,Sport,Persian (Iran),Which professional sport is the highest paying in your country?,Olahraga profésional naon nu panghasilanana pang gedéna di Jawa Barat? +Ta-pe-30,Sport,Persian (Iran),What is/was the most popular sports-related TV program in your country?,Naon acara olahraga di TV nu pang populerna di Jawa Barat? +Ta-pe-32,Holidays/Celebration/Leisure,Persian (Iran),What day of the year is usually dedicated to fireworks in your country?,Poé naon dina sataun nu biasana didékasikeun pikeun kembang api di Jawa Barat? +Ta-pe-37,Holidays/Celebration/Leisure,Persian (Iran),What is the common symbol of New Year's Eve that is usually found in your country?,Naon simbol umum Taun Baru anu biasana dipanggihan di Jawa Barat? +Ta-pe-42,Holidays/Celebration/Leisure,Persian (Iran),What food do people from your country usually eat on New Year's Eve?,Naon kadaharan anu biasa didahar ku urang Jawa Barat dina wengi Taun Anyar? +Ta-pe-45,Holidays/Celebration/Leisure,Persian (Iran),What is usually eaten during the celebration of the longest night of the year in your country?,Naon nu biasana didahar nalika ngarayakeun peuting pang panjangna dina sataun di Jawa Barat? +Th-en-01,Sport,English (US),What is the most popular summer sport in your country?,Naon olahraga usum panas nu pang populerna di Jawa Barat? +Th-en-03,Sport,English (US),What is the most popular professional sports league in your country?,Naon liga olahraga profésional nu pang populérna di Jawa Barat? +Th-en-05,Sport,English (US),What is the most popular women's sports team in your country?,Naon tim olahraga awéwé nu pang populérna di Jawa Barat? +Th-en-09,Sport,English (US),What is the most popular tournament in your country?,Naon turnamén nu pang populerna di Jawa Barat? +Th-en-11,Sport,English (US),Who is the most popular sportperson in your country?,Saha atlit nu pang populerna di Jawa Barat? +Th-en-12,Sport,English (US),In which sport has your country been most successful in international competitions?,Dina olahraga naon Jawa Barat pang suksésna di kompetisi internasional? +Th-en-15,Sport,English (US),What is the most popular winter sport in your country?,Naon olahraga usum salju nu pangpopulerna di Jawa Barat? +Th-en-19,Work life,English (US),What is a city or region in your country known for manufacturing industry?,Naon kota atanapi wewengkon di Jawa Barat anu kasohor ku industri pabrik? +Th-en-21,Work life,English (US),What is regarded as the most important perk typically offered to employees in your country?,Naon nu dianggap minangka kauntungan pang pentingna nu biasana ditawarkeun ka karyawan di Jawa Barat? +Th-en-22,Work life,English (US),What was the most catastrophic economic period for your country?,Naon periode ékonomi anu pang kacida awonna pikeun Jawa Barat? +Th-en-24,Work life,English (US),What region in your country is a major hub for tech workers and start ups?,Wilayah mana di Jawa Barat nu jadi pusat utama pikeun pagawé téknologi jeung rintisan? +Th-en-27,Work life,English (US),What is the most important industry in your country?,Naon industri anu pang pentingna di Jawa Barat? +Th-en-35,Family,English (US),"Which one of the daily meals is commonly shared with family members in your country? (e.g., breakfast, lunch, dinner)","Waktos dahar mana nu umumna dilakukeun babarengan sareng anggota kulawarga? (contona, nyarap, dahar beurang, dahar peuting)" +Th-en-36,Family,English (US),What is a popular family activity with a child to do on weekends in your country?,Naon kagiatan kulawarga anu populer dipigawe babarengan jeung budak pikeun dilakukeun dina ahir minggu di Jawa Barat? +Th-en-37,Family,English (US),"At what age do children typically become independent from their parents in your country? (Provide Arabic numerals (e.g., 12) only.)","Dina umur sabaraha biasana barudak di Jawa Barat mandiri ti kolotna? (Pasihkeun angka Arab wungkul (contona, 12).)" +Th-en-38,Family,English (US),What is the most important family holiday in your country?,Naon liburan kulawarga anu pang pentingna di Jawa Barat? +Th-en-39,Family,English (US),What is a popular family game in your country?,Naon kaulinan kulawarga anu populer di Jawa Barat? +Th-en-41,Family,English (US),"What is the average age for couples to have their first child in your country? (Provide Arabic numerals (e.g., 20) only.)","Sabaraha umur rata-rata pasangan di Jawa Barat pikeun gaduh anak kahiji? (Pasihkeun angka Arab wungkul (contona, 20).)" +Th-en-43,Family,English (US),"How many cars are owned by a typical family in your country? (Provide Arabic numerals (e.g., 12) only.)","Sabaraha mobil anu dipiboga ku kulawarga nu umum di Jawa Barat? (Pasihkeun angka Arab wungkul (contona, 12).)" +Th-en-44,Family,English (US),What is your country's most popular food for family meals on weekends?,Naon kadaharan pang populerna di Jawa Barat pikeun dahareun kulawarga dina ahir minggu? +Th-en-45,Family,English (US),What is the most popular weekday evening family activity in your country?,Naon kagiatan sore kulawarga nu pang populerna di Jawa Barat? +Th-en-48,Education,English (US),What is the highest grade given to top-achieving high school students on assignments and exams in your country?,Naon nilai pangluhurna nu dibikeun ka murid SMA nu berprestasi dina tugas jeung ujian di Jawa Barat? +Th-en-49,Education,English (US),What is considered the most important exam for high school students in your country?,Naon nu dianggap ujian pang pentingna pikeun murid SMA di Jawa Barat? +Th-en-51,Education,English (US),Which subject is considered the most important for students in your country?,Mata pelajaran naon nu dianggap pang pentingna pikeun murid di Jawa Barat? +Th-en-53,Education,English (US),What is the most popular extracurricular social event at schools in your country?,Naon kagiatan ékstrakurikuler sosial nu pang populerna di sakola-sakola di Jawa Barat? +Th-en-58,Education,English (US),What is the most advanced math subject learned before university in your country?,Naon mata pelajaran matematika anu pang majuna nu diajarkeun saméméh asup ka universitas di Jawa Barat? +Tmp-ar-01,Education,Arabic (Algeria),Where do university students in your country usually go to study for their final exams?,Di mana mahasiswa universitas di Jawa Barat biasana indit pikeun diajar kanggo ujian ahirna? +Tmp-ar-02,Education,Arabic (Algeria),What is a common public transport that people use to go to university in your country?,Naon moda transportasi umum anu ilahar dipaké ku jalma-jalma pikeun indit ka universitas di Jawa Barat? +Tmp-ar-04,Education,Arabic (Algeria),What do elementary students in your country usually do after school?,Naon nu biasa dilakukeun ku murid-murid SD di Jawa Barat saatos sakola? diff --git a/evaluation/evaluate.py b/evaluation/evaluate.py new file mode 100644 index 0000000000000000000000000000000000000000..a89b7fa44155f5d9368e2dfb24a5ec4336909229 --- /dev/null +++ b/evaluation/evaluate.py @@ -0,0 +1,72 @@ +from evaluation_utils import * +from exact_match import * +from multiple_choice_evaluation import * + +def evaluate_all_metrics( + model,country,language, + prompt_no,response_dir,annotation_dir,mc_dir, + id_col,q_col,r_col,annotations_key, + eval_res_filename,annotation_template='{country}_data.json' + ): + + if not os.path.exists(eval_res_filename): + write_csv_row(['model','country','language','prompt_no','eval_method','score'],eval_res_filename) + + res_df = get_model_response_file(data_dir=response_dir,model=model,country=country,language=language,prompt_no=prompt_no) + + real_annotation = get_annotations(data_dir=annotation_dir,country=country,template=annotation_template) + + sem_b,sem_w,res_df = soft_exact_match(country=country,language=language,annotation_dict=real_annotation,response_df=res_df,id_col=id_col,r_col=r_col,annotations_key=annotations_key) + write_csv_row([model,country,language,prompt_no,'SEM-B',sem_b],eval_res_filename) + write_csv_row([model,country,language,prompt_no,'SEM-W',sem_w],eval_res_filename) + + res_df.to_csv(os.path.join(response_dir,f'{model}_{country}_{language}_{prompt_no}_response_score.csv'),index=False,encoding='utf-8') + + # Multiple Choice Question + if language == 'English': + mc_score = multiple_choice_score(model,mc_dir,f'{model}-mc_res.csv',mc_res_file,eval_res_file,wrong_country_ratio_file,country) + write_csv_row([model,country,'English',None,'MC',mc_score],eval_res_file) + + # leave the latest result if duplicated + # Read the file as pd.DataFrame + df = pd.read_csv(eval_res_filename) + + # Delete duplicate lines regarding model, country, language, prompt_no, eval_method + df.drop_duplicates(subset=['model', 'country', 'language', 'prompt_no', 'eval_method'], keep='last', inplace=True) + + # Write the modified DataFrame back to the file + df.to_csv(eval_res_filename, index=False, encoding='utf-8') + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description='Choose your model(s) & language(s)') + parser.add_argument('--model',type=str, + help='Provide the model you want to use. Check and choose from the key values of the MODEL_PATHS variable. If you want to test on multiple models, provide multiple model names with ", " between each (e.g., "gpt-4-0125-preview, aya-101").') + parser.add_argument('--language',type=str,default=None, + help='Provide the language you want to test on. Check and choose from the first values of the LANG_COUNTRY variable. If you want to test on multiple languages, provide multiple languages with ", " between each (e.g., "English, Korean").') + parser.add_argument('--country',type=str,default=None, + help='Provide the country you want to test on. Check and choose from the second values of the LANG_COUNTRY variable. If you want to test on multiple countries, provide multiple countries with ", " between each (e.g., "UK, South Korea"). Make sure you have the same number of countries and languages provided. The language-country pair do not have to be identical with the pairs within the LANG_COUNTRY variable.') + parser.add_argument('--prompt_no',type=str,default=None, + help='Provide the propmt id (ex. inst-1, inst-2, pers-1, etc.') + + parser.add_argument('--id_col',type=str,default=None, + help='Provide the column name from the LLM response csv file name with question IDs.') + parser.add_argument('--question_col',type=str,default=None, + help='Provide the column name from the LLM response csv file name with questions.') + parser.add_argument('--response_col',type=str,default=None, + help='Provide the column name from the LLM response csv file name with LLM responses.') + + parser.add_argument('--response_dir',type=str,default='../model_inference_results', + help='Provide the directory for the output files to be saved.') + parser.add_argument('--annotation_dir',type=str,default='../final_dataset', + help='Provide the directory for the data files from the human annotators.') + parser.add_argument('--mc_dir',type=str,default='./mc_data', + help='Provide the directory for the multiple choice result files.') + parser.add_argument('--annotation_filename',type=str,default='{country}_data.json',) + parser.add_argument('--annotations_key',type=str,default='annotations', + help='Provide the key for the annotations in the annotation file.') + parser.add_argument('--evaluation_result_file',type=str,default='evaluation_results.csv', + help='Provide the filename for the evaluation result file.') + + args = parser.parse_args() + + evaluate_all_metrics(model=args.model,country=args.country,language=args.language,prompt_no=args.prompt_no,response_dir=args.response_dir,annotation_dir=args.annotation_dir,mc_dir=args.mc_dir,id_col=args.id_col,q_col=args.question_col,r_col=args.response_col,eval_res_filename=args.evaluation_result_file,annotations_key=args.annotations_key,annotation_template=args.annotation_filename) \ No newline at end of file diff --git a/evaluation/evaluate.sh b/evaluation/evaluate.sh new file mode 100644 index 0000000000000000000000000000000000000000..2f910feb15903c89b7e32d976c9b933626e80867 --- /dev/null +++ b/evaluation/evaluate.sh @@ -0,0 +1,75 @@ +#!/bin/bash + +# Define model keys +MODEL_KEYS=( + "gpt-4-1106-preview" + "gpt-3.5-turbo-1106" + "aya-101" + "gemini-pro" + "claude-3-opus-20240229" + "claude-3-sonnet-20240229" + "claude-3-haiku-20240307" + "Qwen1.5-72B-Chat" + "Qwen1.5-14B-Chat" + "Qwen1.5-32B-Chat" + "text-bison-002" + "c4ai-command-r-v01" + "c4ai-command-r-plus" +) + +# Define countries and languages as an associative array +declare -A COUNTRY_LANG +COUNTRY_LANG["UK"]="English" +COUNTRY_LANG["US"]="English" +COUNTRY_LANG["South_Korea"]="Korean" +COUNTRY_LANG["Algeria"]="Arabic" +COUNTRY_LANG["China"]="Chinese" +COUNTRY_LANG["Indonesia"]="Indonesian" +COUNTRY_LANG["Spain"]="Spanish" +COUNTRY_LANG["Iran"]="Persian" +COUNTRY_LANG["Mexico"]="Spanish" +COUNTRY_LANG["Assam"]="Assamese" +COUNTRY_LANG["Greece"]="Greek" +COUNTRY_LANG["Ethiopia"]="Amharic" +COUNTRY_LANG["Northern_Nigeria"]="Hausa" +COUNTRY_LANG["Azerbaijan"]="Azerbaijani" +COUNTRY_LANG["North_Korea"]="Korean" +COUNTRY_LANG["West_Java"]="Sundanese" + +# Prompt numbers +PROMPT_NUMBERS=("inst-4" "pers-3") + +# Iterate over models, countries, languages, and prompts +for model_key in "${MODEL_KEYS[@]}"; do + for country in "${!COUNTRY_LANG[@]}"; do + language="${COUNTRY_LANG[$country]}" + for prompt_no in "${PROMPT_NUMBERS[@]}"; do + python evaluate.py --model "$model_key" \ + --language "$language" \ + --country "$country" \ + --prompt_no "$prompt_no" \ + --id_col ID \ + --question_col Translation \ + --response_col response \ + --annotation_filename "${country}_data.json" \ + --annotations_key "annotations" \ + --evaluation_result_file "evaluation_results.csv" + if [ "$language" != "English" ]; then + python evaluate.py --model "$model_key" \ + --language "English" \ + --country "$country" \ + --prompt_no "$prompt_no" \ + --id_col ID \ + --question_col Translation \ + --response_col response \ + --annotation_filename "${country}_data.json" \ + --annotations_key "annotations" \ + --evaluation_result_file "evaluation_results.csv" + fi + done + done +done + + + + diff --git a/evaluation/evaluation_utils.py b/evaluation/evaluation_utils.py new file mode 100644 index 0000000000000000000000000000000000000000..68d32aee4a5d1b8886ded1cf9e7647f60bbb9c96 --- /dev/null +++ b/evaluation/evaluation_utils.py @@ -0,0 +1,170 @@ +import sys +import os + +parent_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) +sys.path.append(parent_dir) + +from utils import * + +import matplotlib.pyplot as plt +import numpy as np + +COUNTRY_ISO = { + "UK": "GB", + "US": "US", + "South_Korea": "KR", + "Algeria": "DZ", + "China": "CN", + "Indonesia": "ID", + "Spain": "ES", + "Iran": "IR", + "Mexico":"MX", + "Assam":"AS", + "Greece":"GR", + "Ethiopia":"ET", + "Northern_Nigeria":"NG", + "Azerbaijan":"AZ", + "North_Korea":"KP", + "West_Java":"JB" +} + +LANG_CODE = { + 'English':'en', + 'Chinese':'zh', + 'Spanish':'es', + 'Indonesian':'id', + 'Greek':'el', + 'Sundanese':'su', + 'Azerbaijani':'az', + 'Korean':'ko', + 'Arabic':'ar', + 'Persian':'fa', + 'Assamese':'as', + 'Amharic':'am', + 'Hausa':'ha', +} + +def get_questions( + filename=None, + data_dir=None, + country=None, + template='{country}_final_questions.csv' +): + + if filename == None: + filename = template.replace('{country}',country.replace(' ','_')) + + if data_dir == None: + assert 'ERROR: No data directory given' + + df = pd.read_csv(os.path.join(data_dir,filename),encoding='utf-8') + + return df + +def get_annotations( + filename=None, + data_dir=None, + country=None, + template='{country}_data_aggregated.json' + ): + + if filename == None: + filename = template.replace('{country}',country.replace(' ','_')) + + if data_dir == None: + assert 'ERROR: No data directory given' + + with open(os.path.join(data_dir,filename),'r') as f: + country_data = json.load(f) + + return country_data + +def get_model_response_file( + filename=None, + data_dir=None, + model=None, + country=None, + language=None, + prompt_no=None, + template='{model}-{country}_{language}_{prompt_no}_result.csv' + ): + + if filename == None: + filename = template.replace('{model}',model).replace('{country}',country.replace(' ','_')).replace('{language}',language).replace('{prompt_no}',prompt_no) + print(filename) + if data_dir == None: + assert 'ERROR: No data directory given' + + model_res_df = pd.read_csv(os.path.join(data_dir,filename),encoding='utf-8') + + return model_res_df + +def delete_prompt_from_answer(text,prompt): + """ + The function `delete_prompt_from_answer` aims to remove 'Answer:' part from the LLM response if there is any. + + :param text: LLM response + :return: LLM response with 'Answer:' part removed + """ + + # Regular expression to find a word followed by a colon, capturing the word before the last colon + text = text.replace(prompt,'').replace(':',':').replace('、',',').replace(',',',').replace('。','.').lower() + prompt = prompt.replace(':',':').replace('、',',').replace(',',',').replace('。','.').lower() + + match = re.findall(r'^(\w+:)\s', text) + extracted = '' + for m in match: + if len(m) > len(extracted) and m.replace(':','') in prompt: + extracted = m + + if match: + return text.replace(extracted,'').strip() # Return the captured word + else: + return text.strip() # Return an empty string if no pattern is found + +def get_llm_response_by_id(res_df,qid,id_col,r_col): + + if qid not in set(res_df[id_col]): + print(qid,'not in LLM response df') + return None + + try: + llm_response = res_df[res_df[id_col]==qid][r_col].values[-1] + prompt = res_df[res_df[id_col]==qid]['prompt'].values[-1] + + llm_response = delete_prompt_from_answer(llm_response,prompt) + llm_response = llm_response.strip('.').lower() + + except: + print(res_df[res_df[id_col]==qid]) + llm_response = None + return llm_response + +def get_nested_json_str(response): + """Extract json object from LLM response + + Args: + response (str): LLM response with JSON format included + + Returns: + dict: Extracted json (dict) object + """ + + try: + response = response.replace('\n','') + if "{" not in response: + print(response) + return response + + response = response.replace('```json','').replace('`','').replace(',}','}') + + jsons = re.findall(r'{.+}',response) + + response = jsons[-1] + json_object = json.loads(response) + except: + return response + + + return json_object + diff --git a/evaluation/exact_match.py b/evaluation/exact_match.py new file mode 100644 index 0000000000000000000000000000000000000000..bb077f8cb7ede207ae1e5a986ac18625f73a9520 --- /dev/null +++ b/evaluation/exact_match.py @@ -0,0 +1,269 @@ +from evaluation_utils import * + +import unicodedata as ud + +# pip install konlpy +from konlpy.tag import Okt + +# pip install hausastemmer +import hausastemmer + +# git clone https://github.com/aznlp-disc/stemmer.git, cp word.txt & suffix.txt. +from stemmer.stemmer import Stemmer as AZStemmer +from string import punctuation + +# pip install nlp-id +from nlp_id.lemmatizer import Lemmatizer as IDLemmatizer + +# pip install hazm +from hazm import Lemmatizer as PRLemmatizer + +# pip install qalsadi +from qalsadi.lemmatizer import Lemmatizer as ARLeammatizer + +# pip install cltk +from cltk import NLP + +# !pip install spark-nlp==5.3.3 pyspark==3.3.1 +from sparknlp.base import * +from sparknlp.annotator import * +from sparknlp.pretrained import PretrainedPipeline +import sparknlp + +from SUSTEM.SUSTEM_S import * + +import spacy + +# pip install jieba +import jieba + +# git clone https://github.com/anoopkunchukuttan/indic_nlp_library.git & https://github.com/anoopkunchukuttan/indic_nlp_resources.git +# The path to the local git repo for Indic NLP library +INDIC_NLP_LIB_HOME=os.path.abspath("./indic_nlp_library") + +# The path to the local git repo for Indic NLP Resources +INDIC_NLP_RESOURCES=os.path.abspath("./indic_nlp_resources") + +sys.path.append(INDIC_NLP_LIB_HOME) +from indicnlp import common +from indicnlp import loader +from indicnlp.tokenize import indic_tokenize + + + +def lemma_check(answer,llm_response,nlp_pipeline,language='Korean'): + if answer in llm_response or answer.replace('-',' ') in llm_response or answer.replace(' ','-') in llm_response: + return True + + if language == 'Korean': + okt = Okt() + answer_tokens = okt.morphs(' '.join([w for w,p in okt.pos(answer) if p!='Josa']),stem=True) + llm_tokens = okt.morphs(' '.join([w for w,p in okt.pos(llm_response) if p!='Josa']),stem=True) + + elif language == 'Hausa': + answer_tokens = [hausastemmer.stem(term.strip('-')) for term in answer.split()] + llm_tokens = [hausastemmer.stem(term.strip('-')) for term in llm_response.split()] + + elif language == 'Amharic': + answer_tokens = [token.result if lemma.result.startswith('_') else lemma.result for token,lemma in zip(nlp_pipeline.fullAnnotate(answer)[0]['lemma'],nlp_pipeline.fullAnnotate(answer)[0]['token'])] + llm_tokens = [token.result if lemma.result.startswith('_') else lemma.result for token,lemma in zip(nlp_pipeline.fullAnnotate(llm_response)[0]['lemma'],nlp_pipeline.fullAnnotate(llm_response)[0]['token'])] + + elif language == 'Azerbaijani': + # Instantiate Stemmer object + my_stemmer = AZStemmer() + + def stem_words(my_text): + my_text=my_text.replace("İ", "I") + my_text=my_text.replace("“", "") + my_text=my_text.replace("”", "") + my_text=my_text.replace("'", "") + my_text=my_text.replace('"', "") + my_text=my_text.split() + my_words=[] + for word in my_text: + my_words.append(''.join(c for c in word if (c not in punctuation) or (c == '-'))) + # Apply stemming to the list of words + my_words = my_stemmer.stem_words(my_words) + # Print words after stemming + return my_words + + answer_tokens = stem_words(answer) + llm_tokens = stem_words(llm_response) + + elif language == 'Indonesian': + lemmatizer = IDLemmatizer() + answer_tokens = lemmatizer.lemmatize(answer).split() + llm_tokens = lemmatizer.lemmatize(llm_response).split() + + elif language == 'Persian': + lemmatizer = PRLemmatizer() + answer_tokens = [lemmatizer.lemmatize(term) for term in answer.split()] + llm_tokens = [lemmatizer.lemmatize(term) for term in llm_response.split()] + + elif language == 'Arabic': + lemmatizer = ARLeammatizer() + answer_tokens = lemmatizer.lemmatize(answer) + llm_tokens = lemmatizer.lemmatize(llm_response) + + elif language == 'Greek': + cltk_nlp = NLP(language="grc", suppress_banner=True) + answer_tokens = cltk_nlp.analyze(text=answer).lemmata + llm_tokens = cltk_nlp.analyze(text=llm_response).lemmata + + elif language == 'Spanish': + answer_tokens = [lemma.result for lemma in nlp_pipeline.fullAnnotate(answer)[0]['lemma']] + llm_tokens = [lemma.result for lemma in nlp_pipeline.fullAnnotate(llm_response)[0]['lemma']] + + elif language == 'Sundanese': + stemmer = EcsStemmer() + answer_tokens = [stemmer.stemmingProcess(word.replace('(','').replace(')','')) for word in answer.split()] + llm_tokens = [stemmer.stemmingProcess(word.replace('(','').replace(')','')) for word in llm_response.split()] + + + elif language == 'English': + answer_tokens = [token.lemma_ for token in nlp_pipeline(answer)] + llm_tokens = [token.lemma_ for token in nlp_pipeline(llm_response)] + + elif language == 'Chinese': + answer_tokens = list(jieba.cut(answer)) + llm_tokens = list(jieba.cut(llm_response)) + + elif language == 'Assamese': + common.set_resources_path(INDIC_NLP_RESOURCES) + loader.load() + + answer_tokens = indic_tokenize.trivial_tokenize(answer) + llm_tokens = indic_tokenize.trivial_tokenize(llm_response) + + d = {ord('\N{COMBINING ACUTE ACCENT}'):None} + + answer_tokens = [ud.normalize('NFD',term).translate(d).lower() for term in answer_tokens if term not in punctuation and term != ''] + llm_tokens = [ud.normalize('NFD',term).translate(d).lower() for term in llm_tokens if term not in punctuation and term != ''] + + for a in answer_tokens: + if a not in llm_tokens: + return False + + return True + +def hard_exact_match(annotation_dict,response_df,id_col,r_col,annotations_key='annotations'): + binary_score = 0 + weight_score = 0 + + for qid,data in annotation_dict.items(): + llm_response = get_llm_response_by_id(response_df,qid,id_col,r_col) + + if llm_response and data[annotations_key]: + max_vote = max(list(data[annotations_key].values())) + + for k,v in sorted(data[annotations_key].items(), key=lambda item: item[1],reverse=True): + if k == llm_response: + binary_score += 1 + weight_score += v/max_vote + break + + binary_score = binary_score / len(annotation_dict) * 100 + weight_score = weight_score / len(annotation_dict) * 100 + + print(binary_score) + print(weight_score) + + return binary_score, weight_score + +def soft_exact_match(country,language,annotation_dict,response_df,id_col,r_col,annotations_key='aggregated_answers'): + binary_score = 0 + weight_score = 0 + valid_question_cnt = 0 + + if language == 'Spanish': + spark = sparknlp.start() + + document_assembler = DocumentAssembler() \ + .setInputCol("text") \ + .setOutputCol("document") + + tokenizer = Tokenizer() \ + .setInputCols(["document"]) \ + .setOutputCol("token") + + lemmatizer = LemmatizerModel.pretrained("lemma", "es") \ + .setInputCols(["token"]) \ + .setOutputCol("lemma") + + nlp_pipeline = Pipeline(stages=[document_assembler, tokenizer, lemmatizer]) + nlpPipeline = LightPipeline(nlp_pipeline.fit(spark.createDataFrame([['']]).toDF('text'))) + + elif language == 'Amharic': + spark = sparknlp.start() + + document_assembler = DocumentAssembler() \ + .setInputCol("text") \ + .setOutputCol("document") + + tokenizer = Tokenizer() \ + .setInputCols(["document"]) \ + .setOutputCol("token") + + lemmatizer = LemmatizerModel.pretrained("lemma", "am") \ + .setInputCols(["token"]) \ + .setOutputCol("lemma") + + nlp_pipeline = Pipeline(stages=[document_assembler,tokenizer,lemmatizer]) + nlpPipeline = LightPipeline(nlp_pipeline.fit(spark.createDataFrame([['']]).toDF('text'))) + + else: + nlpPipeline = None + + en_lemmatizer = spacy.load("en_core_web_sm") + + response_df['binary_score'] = [None]*response_df.shape[0] + response_df['weight_score'] = [None]*response_df.shape[0] + + pb = tqdm(annotation_dict.items(),total=len(annotation_dict)) + + for qid,data in pb: + pb.set_description(qid) + if data['idks']['no-answer']+data['idks']['not-applicable'] >= 3 or data['idks']['idk']>=5 or len(data[annotations_key])==0: + continue + + valid_question_cnt += 1 + + llm_response = get_llm_response_by_id(response_df,qid,id_col,r_col) + flag = False + if llm_response and data[annotations_key]: + max_vote = data[annotations_key][0]['count'] + + for agg_ans in data[annotations_key]: + if language != 'English': + for a in agg_ans['answers']: + if lemma_check(a,llm_response,nlpPipeline,language): + binary_score += 1 + weight_score += agg_ans['count']/max_vote + flag = True + break + if not flag: + for a in agg_ans['en_answers']: + if lemma_check(a,llm_response,en_lemmatizer,'English'): + binary_score += 1 + weight_score += agg_ans['count']/max_vote + flag = True + break + if flag: + break + if flag: + response_df.loc[response_df[id_col]==qid,'binary_score'] = 1 + response_df.loc[response_df[id_col]==qid,'weight_score'] = agg_ans['count']/max_vote + print(response_df.loc[response_df[id_col]==qid]) + else: + response_df.loc[response_df[id_col]==qid,'binary_score'] = 0 + response_df.loc[response_df[id_col]==qid,'weight_score'] = 0 + + pb.set_postfix({'bs':binary_score/valid_question_cnt*100,'ws':weight_score/valid_question_cnt*100}) + + binary_score = binary_score / valid_question_cnt * 100 + weight_score = weight_score / valid_question_cnt * 100 + + print(binary_score) + print(weight_score) + + return binary_score, weight_score, response_df \ No newline at end of file diff --git a/evaluation/mc_data/mc_questions_file.csv b/evaluation/mc_data/mc_questions_file.csv new file mode 100644 index 0000000000000000000000000000000000000000..bbc4b1dcdda08b3fc431cd5a91f2d03dd36c1a33 --- /dev/null +++ b/evaluation/mc_data/mc_questions_file.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e094f985fc79a6e292e7a0164029d503bc2a5a7153a4b1752ea2a538c345529 +size 19169614 diff --git a/evaluation/multiple_choice_evaluation.py b/evaluation/multiple_choice_evaluation.py new file mode 100644 index 0000000000000000000000000000000000000000..25cb6775039ba8fe279023ec59d412cd2d66c40b --- /dev/null +++ b/evaluation/multiple_choice_evaluation.py @@ -0,0 +1,117 @@ +from evaluation_utils import * +from multiple_choice_generation import * + +def get_model_mc_response(model_name,model_cache_dir,mc_dir,questions_file,response_file=None,temperature=1,top_p=0,gpt_azure=True): + if response_file == None: + response_file = f"{model_name}-mc_res.csv" + + questions_df = pd.read_csv(os.path.join(mc_dir,questions_file),encoding='utf-8') + already = None + if not os.path.exists(os.path.join(mc_dir,response_file)): + write_csv_row(list(questions_df.columns)+['full_res','final_ans'],os.path.join(mc_dir,response_file)) + else: + already = pd.read_csv(os.path.join(mc_dir,response_file),encoding='utf-8') + + tokenizer,model = get_tokenizer_model(model_name,MODEL_PATHS[model_name],model_cache_dir) + + pb = tqdm(questions_df.iterrows(),total=len(questions_df)) + right = 0 + for i,row in pb: + + qid = row['MCQID'] + pb.set_description(qid) + + if isinstance(already,pd.DataFrame): + if qid in set(already['MCQID']): + continue + + country = row['country'] + + prompt = row['prompt'] + print(prompt) + full_res = get_model_response(model_name,prompt,model,tokenizer,temperature,top_p,gpt_azure) + print(full_res) + json_res = get_json_str(full_res) + + if isinstance(json_res,dict) and 'answer_choice' in json_res: + try: + final_ans = re.findall(r'[A-Z]',str(json_res['answer_choice']))[0] + if final_ans+'.' not in prompt: + for k,v in json.loads(row['choices']).items(): + if v == json_res['answer_choice']: + final_ans = str(k) + break + else: + final_ans = full_res + + except: + for k,v in json.loads(row['choices']).items(): + if v == json_res['answer_choice']: + final_ans = str(k) + break + else: + final_ans = full_res + else: + try: + final_ans = re.findall(r'[A-Z]',json_res)[0] + except: + final_ans = full_res + + write_csv_row(list(row)+[full_res,final_ans],os.path.join(mc_dir,response_file)) + if final_ans == row['answer_idx']: + right += 1 + pb.set_postfix({'score':right/(i+1)}) + +def multiple_choice_score(model,mc_dir,mrf,mc_res_file,eval_res_file,wrong_country_ratio_file,country): + + df = pd.read_csv(os.path.join(mc_dir,mrf),encoding='utf-8') + df = df[df['country'] == country] + + scores = [] + + for i,row in tqdm(df.iterrows(),total=len(df)): + if str(row['answer_idx']) == str(row['final_ans']): + scores.append(1) + else: + scores.append(0) + + + df['score'] = scores + final_score = df['score'].mean() + + return final_score + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description='Choose your model(s) & language(s)') + + parser.add_argument('--model',type=str, + help='Provide the model you want to use. Check and choose from the key values of the MODEL_PATHS variable. If you want to test on multiple models, provide multiple model names with ", " between each (e.g., "gpt-4-0125-preview, aya-101").') + parser.add_argument('--model_cache_dir',type=str,default='.cache', + help='Provide the directory saving model caches.') + + parser.add_argument('--mc_dir',type=str,default='./mc_data', + help='Provide the directory for the data files from the human annotators.') + parser.add_argument('--questions_file',type=str,default='mc_questions_file.csv', + help='Provide the directory for the data files from the human annotators.') + parser.add_argument('--response_file',type=str,default=None, + help='Provide the filename to save LLM responses.') + + parser.add_argument('--temperature',type=int,default=0, + help='Provide generation temperature for LLMs.') + parser.add_argument('--top_p',type=float,default=1, + help='Provide generation top_p for LLMs.') + + parser.add_argument("--gpt_azure", type=str2bool, nargs='?', + const=True, default=True, + help="Whether you are using the AzureOpenAI for GPT-models' response generation.") + + args = parser.parse_args() + + get_model_mc_response(model_name=args.model, + model_cache_dir=args.model_cache_dir, + mc_dir=args.mc_dir, + questions_file=args.questions_file, + response_file=args.response_file, + temperature=args.temperature, + top_p=args.top_p, + gpt_azure=args.gpt_azure) \ No newline at end of file diff --git a/evaluation/multiple_choice_evaluation.sh b/evaluation/multiple_choice_evaluation.sh new file mode 100644 index 0000000000000000000000000000000000000000..8133b656a6876806370c4e94f54fc9828e8f66cd --- /dev/null +++ b/evaluation/multiple_choice_evaluation.sh @@ -0,0 +1,47 @@ +#!/bin/bash + +export CUDA_VISIBLE_DEVICES="" + +export HF_TOKEN="" +export COHERE_API_KEY="" +export OPENAI_API_KEY="" +export OPENAI_ORG_ID="" +export AZURE_OPENAI_API_KEY="" +export AZURE_OPENAI_API_VER="" +export AZURE_OPENAI_API_ENDPT="" +export CLAUDE_API_KEY="" +export GOOGLE_API_KEY="" +export GOOGLE_APPLICATION_CREDENTIALS="" +export GOOGLE_PROJECT_NAME="" + +# Define model keys +MODEL_KEYS=( + "gpt-4-1106-preview" + "gpt-3.5-turbo-1106" + "aya-101" + "gemini-pro" + "claude-3-opus-20240229" + "claude-3-sonnet-20240229" + "claude-3-haiku-20240307" + "Qwen1.5-72B-Chat" + "Qwen1.5-14B-Chat" + "Qwen1.5-32B-Chat" + "text-bison-002" + "c4ai-command-r-v01" + "c4ai-command-r-plus" + "aya-23" + "SeaLLM-7B-v2.5" + "Merak-7B-v4" + "jais-13b-chat" +) + +for model_key in "${MODEL_KEYS[@]}"; do + python multiple_choice_evaluation.py --model "$model_key" \ + --model_cache_dir '.cache' \ + --mc_dir './mc_data' \ + --questions_file 'mc_questions_file.csv' \ + --response_file "${model_key}-mc_res.csv" \ + --temperature 0 \ + --top_p 1 \ + --gpt_azure 'True' +done \ No newline at end of file diff --git a/evaluation/multiple_choice_generation.py b/evaluation/multiple_choice_generation.py new file mode 100644 index 0000000000000000000000000000000000000000..b48479c4228fbf583766afc946bdc4365e1a1a0d --- /dev/null +++ b/evaluation/multiple_choice_generation.py @@ -0,0 +1,407 @@ +from evaluation_utils import * + +from itertools import combinations + +def no_common_word(s1,s2): + if is_float(s1) and is_float(s2): + if float(s1) == float(s2): + return False + else: + return True + + if s1 in s2 or s2 in s1: + return False + + def split_words(a): + if '/' in a: + a = a.split('/') + else: + a = [a] + tmp_a_list = [] + for tmp_a in a: + tmp_a_list += tmp_a.split() + return tmp_a_list + + s1 = split_words(s1) + s2 = split_words(s2) + + if set(s1) & set(s2): + return False + else: + return True + +def another_similar_term(question,answers,word,country1,country2): + if isinstance(answers,str): + answers = [answers] + simple_flag = False + all_floatortimeordate = True + for c in answers: + if is_float(c) and is_float(word): + if float(c) == float(word): + simple_flag = True + break + elif (is_date_format(c) and is_date_format(word)) or (is_time_format(c) and is_time_format(word)): + if c in word or word in c: + simple_flag=True + break + else: + all_floatortimeordate = False + + if simple_flag: + return True + + if all_floatortimeordate: + return False + + prompt = """Determine if a 'target' word is the same in meaning(e.g., football & soccer or soccer & football) to at least one of the 'answer' words, or one is a subset to another(e.g., fruit & apple or apple & fruit). If so, the 'result' for 'target' word is 'O'. However, if the two simply falls into the same level of hierarchy, the 'result' is 'X' (banana & apple, rose & carnation). + +Note that the 'answer' list is from 'answer_country,' and the 'target' word is from 'target_country,' as written by a person. + +Write down your reasoning first. Do not write any other JSON formatted object in your answer except for the result JSON object, formatted as {"result":"O"} or {"result":"X"}. + +""" + + json_dict = {'answer':answers,'answer_country':country1,'target':word,'target_country':country2} + json_str = json.dumps(json_dict) + print(json_str) + prompt += json_str + prompt += '\n\nReasoning:' + + res = inference_azure(prompt,model_name=MODEL_PATHS['gpt-4-1106-preview']) + res = res.replace('{result:','{"result":') + print(res) + json_res = get_json_str(res) + if type(json_res) == dict and 'result' in json_res: + if json_res['result'] == 'O': + return True + else: + return False + return True + +def filter_mc_questions(original_questions_df,en_annotations,en_annotation_key,mc_dir): + filtered_questions_df = original_questions_df.copy() + + for i,row in original_questions_df.iterrows(): + qid = row['ID'] + + has_idk = False + small_max_vote = False + + for country in en_annotations.keys(): + country_annotation = en_annotations[country] + if qid in country_annotation: + country_annotation_qid = country_annotation[qid] + if ('not-applicable' in country_annotation_qid['idks'] and country_annotation_qid['idks']['not-applicable']>0) or sum(country_annotation_qid['idks'].values()) > 2: + print('idks:',country_annotation_qid['idks']) + has_idk = True + + + elif country_annotation_qid['aggregated_answers'] and country_annotation_qid['aggregated_answers'][0][en_annotation_key] and country_annotation_qid['aggregated_answers'][0]['count'] < 2: + small_max_vote = True + + if has_idk or small_max_vote: + filtered_questions_df = filtered_questions_df.drop(i) + print(qid,country,has_idk,small_max_vote) + break + + print('Leftover questions:',len(filtered_questions_df)) + filtered_questions_df.to_csv(os.path.join(mc_dir,'filtered_questions.csv'),index=False,encoding='utf-8') + return filtered_questions_df + +def generate_answer_choices(country_list,annotation_data_dir,annotation_data_template,question_dir,question_data_template,id_col,question_col,en_annotation_key,mc_dir,output_filename='unique_answer_choice.json'): + country_unique_answer_choice = dict() + + if os.path.exists(os.path.join(mc_dir,output_filename)): + with open(os.path.join(mc_dir,output_filename),'r') as f: + country_unique_answer_choice = json.load(f) + + final_questions = get_questions(data_dir=question_dir,country=country_list[0],template=question_data_template) + english_annotations = {country:get_annotations(data_dir=annotation_data_dir,country=country,template=annotation_data_template) for country in country_list} + + filtered_questions = filter_mc_questions(final_questions,english_annotations,en_annotation_key,mc_dir) + same_dict = defaultdict(dict) + if os.path.exists(os.path.join(mc_dir,'dictionary.json')): + with open(os.path.join(mc_dir,'dictionary.json'),'r') as f: + _same_dict = json.load(f) + for k,v in _same_dict.items(): + same_dict[k] = v + + + for i,row in tqdm(filtered_questions.iterrows(),total=len(filtered_questions)): + qid = row[id_col] + + if qid in country_unique_answer_choice and country_list[-1] in country_unique_answer_choice[qid]['annotations']: + continue + + print(row[question_col]) + + each_qid_dict = dict() + each_qid_dict['question'] = row[question_col] + each_qid_dict['annotations'] = dict() + for country in country_list: + each_country_dict = dict() + annotations = {data[en_annotation_key][0]:data['count'] for data in english_annotations[country][qid]['aggregated_answers'] if len(data[en_annotation_key]) > 0} + print(annotations) + blocked = set() + if annotations: + max_vote = max(list(annotations.values())) + if 'HH:MM' in row[question_col]: + each_country_dict['answer'] = [k for k,v in annotations.items() if v == max_vote and is_time_format(k)] + tmp = {k:v for k,v in annotations.items() if is_time_format(k)} + annotations = tmp + elif 'MM/DD' in row[question_col]: + each_country_dict['answer'] = [k for k,v in annotations.items() if v == max_vote and is_date_format(k)] + tmp = {k:v for k,v in annotations.items() if is_date_format(k)} + annotations = tmp + elif 'Arabic' in row[question_col]: + each_country_dict['answer'] = [k for k,v in annotations.items() if v == max_vote and is_float(k)] + tmp = {k:v for k,v in annotations.items() if is_float(k)} + annotations = tmp + else: + each_country_dict['answer'] = [k for k,v in annotations.items() if v == max_vote] + choices = dict() + + other_countries_annotations = { + other_country: {data[en_annotation_key][0]:data['count'] for data in english_annotations[other_country][qid]['aggregated_answers'] if len(data[en_annotation_key]) > 0} + for other_country in country_list if other_country != country + } + print(other_countries_annotations) + all_answer_choices = sorted( + [(vote_count, answer, other_country) + for other_country, other_annotations in other_countries_annotations.items() + for answer, vote_count in other_annotations.items() + if vote_count >= 2], + key=lambda x: x[0], reverse=True + ) + + print(all_answer_choices) + + for vote_count, answer, other_country in all_answer_choices: + + if other_country in choices: + continue + + if answer in blocked: + continue + + if 'HH:MM' in row[question_col] and not is_time_format(answer): + continue + elif 'MM/DD' in row[question_col] and not is_date_format(answer): + continue + elif 'Arabic' in row[question_col] and not is_float(answer): + continue + + flag = True + for candidate in annotations.keys(): + + if candidate in same_dict and answer in same_dict[candidate] and same_dict[candidate][answer]: + flag = False + break + flag = no_common_word(answer,candidate) + + if not flag: + same_dict[candidate][answer] = not flag + same_dict[answer][candidate] = not flag + blocked.add(answer) + + break + if flag: + final_flag = True + for k,c in choices.items(): + if c in same_dict and answer in same_dict[c]: + if same_dict[c][answer]: + blocked.add(answer) + final_flag=False + break + else: + continue + + if not no_common_word(c,answer) or another_similar_term(each_qid_dict['question'],c,answer,k,other_country): + final_flag=False + same_dict[answer][c] = True + same_dict[c][answer] = True + blocked.add(answer) + else: + same_dict[answer][c] = False + same_dict[c][answer] = False + + if not final_flag: + break + + if final_flag: + all_checked = True + at_least_one = False + for candidate in annotations.keys(): + if not (candidate in same_dict and answer in same_dict[candidate]): + all_checked = False + if candidate in same_dict and answer in same_dict[candidate] and same_dict[candidate][answer]: + at_least_one = True + + if not all_checked or at_least_one: + break + + print('all_checked',all_checked) + print('at_least_one',at_least_one) + if answer in same_dict: + print(same_dict[answer]) + + if at_least_one: + blocked.add(answer) + continue + elif all_checked or not another_similar_term(each_qid_dict['question'],list(annotations.keys()),answer,country,other_country): + choices[other_country] = answer + if not all_checked: + for candidate in annotations.keys(): + same_dict[candidate][answer] = False + same_dict[answer][candidate] = False + + else: + blocked.add(answer) + each_country_dict['choices'] = choices + + with open(os.path.join(mc_dir,'dictionary.json'),'w') as f: + json.dump(same_dict,f,indent=4,ensure_ascii=False) + + + each_qid_dict[country] = each_country_dict + + each_qid_dict['annotations'][country] = annotations + print(each_qid_dict) + country_unique_answer_choice[qid] = each_qid_dict + + with open(os.path.join(mc_dir,output_filename),'w') as f: + json.dump(country_unique_answer_choice,f,indent=4,ensure_ascii=False) + + + +def generate_prompt_mc(question,country,answers,choices,min_choice,dummy_choices): + res = [] + + for answer in answers: + if country in ['US','UK']: + prompt = question.replace('your country',f'the {country}') + else: + prompt = question.replace('your country',country.replace('_',' ')) + + prompt += ' Without any explanation, choose only one from the given alphabet choices(e.g., A, B, C). Provide as JSON format: {"answer_choice":""}\n\n' + + for chosen_choices in combinations(choices.items(),min_choice): + all_choices = sorted([(v,k) for k,v in chosen_choices]+[(answer,country)]+[(dummy,'dummy') for dummy in dummy_choices]) + all_choices_idx = dict() + all_choices_country = dict() + answer_idx = -1 + + this_prompt = prompt + for i,(a,a_country) in enumerate(all_choices): + if a == answer: + answer_idx = chr(ord('A')+i) + all_choices_idx[chr(ord('A')+i)] = a + all_choices_country[chr(ord('A')+i)] = a_country + this_prompt += f'{chr(ord("A")+i)}. {a}\n' + this_prompt += '\nAnswer:' + + res.append((this_prompt,all_choices_idx,all_choices_country,answer_idx)) + return res + +def get_dummy_choices(question,annotations,num): + prompt = 'Provide '+str(num)+' dummy option(s) that makes sense to be the answer(s) of the given "question", and has to exist in real-life (non-fiction), but is totally different from the given "answers" without any explanation. Make sure that the options are different from each other, and cannot be an answer from any country. Provide as JSON format: {"dummy_options":[]}\n\n' + json_str = json.dumps({'question':question,'answers':list(set([v for k in annotations for v in annotations[k] ]))},ensure_ascii=False, indent=4) + prompt += json_str + + print(prompt) + + while True: + res = inference_azure(prompt,temperature=1,top_p=1,model_name=MODEL_PATHS['gpt-4-1106-preview']) + res = res.replace('{dummy_options:','{"dummy_options":') + json_res = get_json_str(res) + print(json_res) + + if type(json_res) == dict and 'dummy_options' in json_res and type(json_res['dummy_options']) == list and len(json_res['dummy_options']) == num and len(set(json_res['dummy_options']))==num and len(set(json_res['dummy_options'])&set([v for k in annotations for v in annotations[k]])) == 0: + return [s.lower() for s in json_res['dummy_options']] + + +def generate_multiple_choice(country_list,mc_dir,answer_choice_file,questions_file,generate_dummy=True): + with open(os.path.join(mc_dir,answer_choice_file),'r') as f: + answer_choices = json.load(f) + + if os.path.exists(os.path.join(mc_dir,questions_file)): + os.remove(os.path.join(mc_dir,questions_file)) + + write_csv_row(['MCQID','ID','country','prompt','choices','choice_countries','answer_idx'],os.path.join(mc_dir,questions_file)) + + pb = tqdm(answer_choices,total=len(answer_choices)) + for qid in pb: + pb.set_description(qid) + question = answer_choices[qid]['question'] + cnt = 0 + + # check the minimum number of answer_choices[qid][country]['choices'] + min_choice = min([len(answer_choices[qid][country]['choices']) for country in country_list]) + + dummy_choices = [] + + if min_choice < 3: + if generate_dummy and 'dummy_choices' not in answer_choices[qid][country]: + dummy_choices = get_dummy_choices(question,answer_choices[qid]['annotations'],3-min_choice) + answer_choices[qid][country]['dummy_choices'] = dummy_choices + with open(os.path.join(mc_dir,answer_choice_file),'w') as f: + json.dump(answer_choices,f,indent=4,ensure_ascii=False) + elif 'dummy_choices' in answer_choices[qid][country]: + dummy_choices = answer_choices[qid][country]['dummy_choices'] + else: + print('ERROR: No dummy choices for',qid,'in',country,'and min_choice:',min_choice) + continue + + for country in country_list: + pb.set_postfix({'country':country}) + prompt_questions = generate_prompt_mc(question,country,answer_choices[qid][country]['answer'],answer_choices[qid][country]['choices'],min(min_choice,3),dummy_choices) + if prompt_questions: + for q,choices,choice_countries,answer_idx in prompt_questions: + write_csv_row([f'{qid}_{cnt}',qid,country,q,json.dumps(choices,indent=4,ensure_ascii=False),json.dumps(choice_countries,indent=4,ensure_ascii=False),answer_idx],os.path.join(mc_dir,questions_file)) + cnt += 1 + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description='Choose your model(s) & language(s)') + + parser.add_argument('--id_col',type=str,default='ID', + help='Provide the column name from the final question file name with question IDs.') + parser.add_argument('--question_col',type=str,default='Question', + help='Provide the column name from the final question file name with questions.') + + parser.add_argument('--question_dir',type=str,default='../data/questions/', + help='Provide the directory for the output files to be saved.') + parser.add_argument('--question_data_template',type=str,default='{country}_questions.csv', + help='Provide the filename template of the question data file.') + parser.add_argument('--annotation_dir',type=str,default='../data/annotations/', + help='Provide the directory for the data files from the human annotators.') + parser.add_argument('--annotation_data_template',type=str,default='{country}_data.json',) + parser.add_argument('--mc_dir',type=str,default='./mc_data', + help='Provide the directory for the data files from the human annotators.') + parser.add_argument('--answer_choice_file',type=str,default='unique_answer_choice.json', + help='Provide the directory for the data files from the human annotators.') + parser.add_argument('--mc_questions_file',type=str,default='mc_questions_file.csv', + help='Provide the directory for the data files from the human annotators.') + parser.add_argument('--en_annotation_key',type=str,default='en_answers', + help='Provide the directory for the data files from the human annotators.') + args = parser.parse_args() + + if not os.path.exists(args.mc_dir): + os.mkdir(args.mc_dir) + + country_list = list(COUNTRY_LANG.keys()) + print(country_list) + generate_answer_choices(country_list=country_list, + annotation_data_dir=args.annotation_dir, + annotation_data_template=args.annotation_data_template, + question_dir=args.question_dir, + question_data_template=args.question_data_template, + id_col=args.id_col, + question_col=args.question_col, + en_annotation_key=args.en_annotation_key, + mc_dir=args.mc_dir, + output_filename=args.answer_choice_file) + + generate_multiple_choice(country_list=country_list, + mc_dir=args.mc_dir, + answer_choice_file=args.answer_choice_file, + questions_file=args.mc_questions_file) \ No newline at end of file diff --git a/evaluation/multiple_choice_generation.sh b/evaluation/multiple_choice_generation.sh new file mode 100644 index 0000000000000000000000000000000000000000..00fccaec09d6dedbda9611cf92777ce35b61c0d7 --- /dev/null +++ b/evaluation/multiple_choice_generation.sh @@ -0,0 +1,24 @@ +export CUDA_VISIBLE_DEVICES="4,5,6,7" + +export HF_TOKEN="" +export COHERE_API_KEY="" +export OPENAI_API_KEY="" +export OPENAI_ORG_ID="" +export AZURE_OPENAI_API_KEY="" +export AZURE_OPENAI_API_VER="" +export AZURE_OPENAI_API_ENDPT="" +export CLAUDE_API_KEY="" +export GOOGLE_API_KEY="" +export GOOGLE_APPLICATION_CREDENTIALS="" +export GOOGLE_PROJECT_NAME="" + +python multiple_choice_generation.py --id_col 'ID' \ + --question_col 'Question' \ + --question_dir '../data/questions' \ + --question_data_template '{country}_questions.csv' \ + --annotation_dir "../data/annotations" \ + --annotation_data_template '{country}_data.json' \ + --mc_dir "./mc_data/" \ + --answer_choice_file "./unique_answer_choice.json" \ + --mc_questions_file "./mc_questions_file.csv" \ + --en_annotation_key 'en_answers' \ No newline at end of file diff --git a/main_figure.png b/main_figure.png new file mode 100644 index 0000000000000000000000000000000000000000..73efd26e53bb1e4b371eb0d978c16e05a6d07478 --- /dev/null +++ b/main_figure.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:527c459f70b1284bb6df14a43782a76e406adaaa7c9d1082bd9b00fa58046ac2 +size 1313149 diff --git a/model_inference.py b/model_inference.py new file mode 100644 index 0000000000000000000000000000000000000000..f5100704d40c83f4c4d5f7b0841650574ea6f443 --- /dev/null +++ b/model_inference.py @@ -0,0 +1,163 @@ +from utils import * + +parser = argparse.ArgumentParser(description='Choose your model(s) & language(s)') +parser.add_argument('--model',type=str, + help='Provide the model you want to use. Check and choose from the key values of the MODEL_PATHS variable. If you want to test on multiple models, provide multiple model names with ", " between each (e.g., "gpt-4-0125-preview, aya-101").') +parser.add_argument('--language',type=str,default=None, + help='Provide the language you want to test on. Check and choose from the first values of the LANG_COUNTRY variable. If you want to test on multiple languages, provide multiple languages with ", " between each (e.g., "English, Korean").') +parser.add_argument('--country',type=str,default=None, + help='Provide the country you want to test on. Check and choose from the second values of the LANG_COUNTRY variable. If you want to test on multiple countries, provide multiple countries with ", " between each (e.g., "UK, South Korea"). Make sure you have the same number of countries and languages provided. The language-country pair do not have to be identical with the pairs within the LANG_COUNTRY variable.') +parser.add_argument('--question_dir',type=str,default=None, + help='Provide the directory name with (translated) questions.') +parser.add_argument('--question_file',type=str,default=None, + help='Provide the csv file name with (translated) questions.') +parser.add_argument('--question_col',type=str,default=None, + help='Provide the column name from the given csv file name with (translated) questions.') +parser.add_argument('--prompt_dir',type=str,default=None, + help='Provide the directory where the propmts are saved.') +parser.add_argument('--prompt_file',type=str,default=None, + help='Provide the name of the csv file where the propmts are saved.') +parser.add_argument('--prompt_no',type=str,default=None, + help='Provide the propmt id (ex. inst-1, inst-2, pers-1, etc.)') +parser.add_argument('--id_col',type=str,default="ID", + help='Provide the column name from the given csv file name with question IDs.') +parser.add_argument('--output_dir',type=str,default='./model_inference_results', + help='Provide the directory for the output files to be saved.') +parser.add.argument('--output_file',type=str,default=None, + help='Provide the name of the output file.') +parser.add_argument('--model_cache_dir',type=str,default='.cache', + help='Provide the directory saving model caches.') +parser.add_argument("--gpt_azure", type=str2bool, nargs='?', + const=True, default=False, + help="Whether you are using the AzureOpenAI for GPT-models' response generation.") +parser.add_argument('--temperature',type=int,default=0, + help='Provide generation temperature for GPT models.') +parser.add_argument('--top_p',type=int,default=0, + help='Provide generation top_p for GPT models.') + +args = parser.parse_args() + +def make_prompt(question,prompt_no,language,country,prompt_sheet): + prompt = prompt_sheet[prompt_sheet['id']==prompt_no] + if language == 'English': + prompt = prompt['English'].values[0] + else: + prompt = prompt['Translation'].values[0] + + return prompt.replace('{q}',question) + +def generate_response(model_name,model_path,tokenizer,model,language,country,q_df,q_col,id_col,output_dir,prompt_no=None): + replace_country_flag = False + if language != COUNTRY_LANG[country] and language == 'English': + replace_country_flag = True + + if q_col == None: + if language == COUNTRY_LANG[country]: + q_col = 'Translation' + elif language == 'English': + q_col = 'Question' + + if prompt_no is not None: + prompt_sheet = import_google_sheet(PROMPT_SHEET_ID,PROMPT_COUNTRY_SHEET[country]) + output_filename = os.path.join(output_dir,f"{model_name}-{country}_{language}_{prompt_no}_result.csv") + else: + output_filename = os.path.join(output_dir,f"{model_name}-{country}_{language}_result.csv") + print(q_df[[id_col,q_col]]) + + guid_list = set() + if os.path.exists(output_filename): + already = pd.read_csv(output_filename) + guid_list = set(already[id_col]) + print(already) + + + else: + write_csv_row([id_col,q_col,'prompt','response','prompt_no'],output_filename) + + pb = tqdm(q_df.iterrows(),desc=model_name,total=len(q_df)) + for _,d in pb: + q = d[q_col] + guid = d[id_col] + pb.set_postfix({'ID':guid}) + + if guid in guid_list: + continue + + if replace_country_flag: + q = replace_country_name(q,country.replace('_',' ')) + + if prompt_no is not None: + prompt = make_prompt(q,prompt_no,language,country,prompt_sheet) + else: + prompt = q + + print(prompt) + + response = get_model_response(model_path,prompt,model,tokenizer,temperature=args.temperature,top_p=args.top_p,gpt_azure=args.gpt_azure) + + print(response) + write_csv_row([guid,q,prompt,response,prompt_no],output_filename) + + del guid_list + +def get_response_from_all(): + models = args.model + languages = args.language + countries = args.country + question_dir = args.question_dir + question_file = args.question_file + question_col = args.question_col + prompt_no = args.prompt_no + id_col = args.id_col + output_dir = args.output_dir + azure = args.gpt_azure + + if not os.path.exists(output_dir): + os.mkdir(output_dir) + + if args.gpus: + os.environ['CUDA_VISIBLE_DEVICES'] = args.gpus + + if ',' in languages: + languages = languages.split(',') + + if ',' in countries: + countries = countries.split(',') + + if ', ' in models: + models = models.split(',') + + if type(languages) == type(countries) and isinstance(languages,list): + if len(languages) != len(countries): + print("ERROR: Same number of languages and countries necessary. If multiple languages and countries are given, each element of the two lists should be in pairs.") + exit() + + def get_questions(language,country): + questions_df = pd.read_csv(os.path.join(question_dir,f'{country}_full_final_questions.csv'),encoding='utf-8') + + return questions_df + + + def generate_response_per_model(model_name): + model_path = MODEL_PATHS[model_name] + + tokenizer,model = get_tokenizer_model(model_name,model_path,args.model_cache_dir) + + if isinstance(languages,str): + + questions = get_questions(languages,countries) + generate_response(model_name,model_path,tokenizer,model,languages,countries,questions,question_col,id_col,output_dir,prompt_no=prompt_no) + else: + for l,c in zip(languages,countries): + questions = get_questions(l,c) + generate_response(model_name,model_path,tokenizer,model,l,c,questions,question_col,id_col,output_dir,prompt_no=prompt_no) + + if isinstance(models,str): + generate_response_per_model(models) + else: + for m in models: + generate_response_per_model(m) + + +if __name__ == "__main__": + get_response_from_all() \ No newline at end of file diff --git a/model_inference.sh b/model_inference.sh new file mode 100644 index 0000000000000000000000000000000000000000..3b26ad2152a867a3fba3817aa78a3b8853051b88 --- /dev/null +++ b/model_inference.sh @@ -0,0 +1,106 @@ +#!/bin/bash + +export CUDA_VISIBLE_DEVICES="" + +export HF_TOKEN="" +export COHERE_API_KEY="" +export OPENAI_API_KEY="" +export OPENAI_ORG_ID="" +export AZURE_OPENAI_API_KEY="" +export AZURE_OPENAI_API_VER="" +export AZURE_OPENAI_API_ENDPT="" +export CLAUDE_API_KEY="" +export GOOGLE_API_KEY="" +export GOOGLE_APPLICATION_CREDENTIALS="" +export GOOGLE_PROJECT_NAME="" + +# Define model keys +MODEL_KEYS=( + "gpt-4-1106-preview" + "gpt-3.5-turbo-1106" + "aya-101" + "gemini-pro" + "claude-3-opus-20240229" + "claude-3-sonnet-20240229" + "claude-3-haiku-20240307" + "Qwen1.5-72B-Chat" + "Qwen1.5-14B-Chat" + "Qwen1.5-32B-Chat" + "text-bison-002" + "c4ai-command-r-v01" + "c4ai-command-r-plus" + "aya-23" + "SeaLLM-7B-v2.5" + "Merak-7B-v4" + "jais-13b-chat" +) + +# Define countries and languages as an associative array +declare -A COUNTRY_LANG +COUNTRY_LANG["UK"]="English" +COUNTRY_LANG["US"]="English" +COUNTRY_LANG["South_Korea"]="Korean" +COUNTRY_LANG["Algeria"]="Arabic" +COUNTRY_LANG["China"]="Chinese" +COUNTRY_LANG["Indonesia"]="Indonesian" +COUNTRY_LANG["Spain"]="Spanish" +COUNTRY_LANG["Iran"]="Persian" +COUNTRY_LANG["Mexico"]="Spanish" +COUNTRY_LANG["Assam"]="Assamese" +COUNTRY_LANG["Greece"]="Greek" +COUNTRY_LANG["Ethiopia"]="Amharic" +COUNTRY_LANG["Northern_Nigeria"]="Hausa" +COUNTRY_LANG["Azerbaijan"]="Azerbaijani" +COUNTRY_LANG["North_Korea"]="Korean" +COUNTRY_LANG["West_Java"]="Sundanese" + +# Prompt numbers +PROMPT_NUMBERS=("inst-4" "pers-3") + +# Iterate over models, countries, languages, and prompts +for model_key in "${MODEL_KEYS[@]}"; do + for country in "${!COUNTRY_LANG[@]}"; do + language="${COUNTRY_LANG[$country]}" + for prompt_no in "${PROMPT_NUMBERS[@]}"; do + python model_inference.py --model "$model_key" \ + --language "$language" \ + --country "$country" \ + --question_dir "./data/questions" \ + --question_file "${country}_questions.csv" \ + --question_col Translation \ + --prompt_dir "./data/prompts" \ + --prompt_file "${country}_prompts.csv" \ + --prompt_no "$prompt_no" \ + --id_col ID \ + --output_dir "./model_inference_results" \ + --output_file "${model_key}-${country}_${language}_${prompt_no}_result.csv" \ + --model_cache_dir ".cache" \ + --gpt_azure "True" \ + --temperature 0 \ + --top_p 1 + if [ "$language" != "English" ]; then + python model_inference.py --model "$model_key" \ + --language "$language" \ + --country "$country" \ + --question_dir "./data/questions" \ + --question_file "${country}_questions.csv" \ + --question_col Question \ + --prompt_dir "./data/prompts" \ + --prompt_file "${country}_prompts.csv" \ + --prompt_no "$prompt_no" \ + --id_col ID \ + --output_dir "./model_inference_results" \ + --output_file "${model_key}-${country}_English_${prompt_no}_result.csv" \ + --model_cache_dir ".cache" \ + --gpt_azure "True" \ + --temperature 0 \ + --top_p 1 + fi + done + done +done + + + + + diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ac8a8ecc01f8a35a6ed52cfc48dc35ad2fc3223 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,24 @@ +anthropic==0.28.0 +cltk==1.3.0 +cohere==5.5.6 +easydict==1.12 +google_cloud_aiplatform==1.43.0 +hausastemmer==1.0 +hazm==0.10.0 +jieba==0.42.1 +konlpy==0.6.0 +matplotlib==3.8.0 +nlp_id==0.1.15.0 +numpy==1.24.3 +openai==1.33.0 +pandas==2.2.2 +peft==0.11.1 +protobuf==5.27.1 +qalsadi==0.5 +Requests==2.32.3 +spacy==3.7.4 +spark_nlp==5.3.3 +together==1.2.0 +torch==2.2.1 +tqdm==4.66.4 +transformers==4.40.1 diff --git a/utils.py b/utils.py new file mode 100644 index 0000000000000000000000000000000000000000..e6950d04240d03f35462dc85bdf24ffbf282af71 --- /dev/null +++ b/utils.py @@ -0,0 +1,908 @@ +import os +import re +import csv +import json +import time +import argparse +import requests +import sys +import numpy as np +import pandas as pd +from pathlib import Path +from tqdm.auto import tqdm +from easydict import EasyDict +from collections import defaultdict, Counter +import pathlib +import textwrap +import os.path as osp +import math + +import openai +from openai import AzureOpenAI,OpenAI +from transformers import T5Tokenizer, T5ForConditionalGeneration, AutoModelForCausalLM, AutoModelForSeq2SeqLM, AutoTokenizer, LlamaTokenizer, pipeline, AutoConfig, BitsAndBytesConfig +from transformers.generation.utils import GenerationConfig +from peft import PeftModel, PeftConfig +import torch +import anthropic +from typing import Union +import google.generativeai as genai +from google.generativeai.types import safety_types +from google.oauth2 import service_account +import vertexai +from vertexai.language_models import TextGenerationModel +import anthropic +from anthropic import HUMAN_PROMPT, AI_PROMPT +import cohere +from together import Together + +MODEL_PATHS = { + "gpt-3.5-turbo-0125":"gpt-3.5-turbo-0125", + "gpt-4-0125-preview":"gpt-4-0125-preview", + "gpt-4-1106-preview":"gpt-4-1106-preview", + "aya-101":"CohereForAI/aya-101", + "gemini-pro":"gemini-pro", + "gemini-1.5-pro":"gemini-1.5-pro-latest", + 'Orion-14B-Chat':'OrionStarAI/Orion-14B-Chat', + "claude-3-opus-20240229":'claude-3-opus-20240229', + "claude-3-sonnet-20240229":'claude-3-sonnet-20240229', + "claude-3-haiku-20240307":'claude-3-haiku-20240307', + 'Qwen1.5-72B-Chat':'Qwen/Qwen1.5-72B-Chat', + 'Qwen1.5-14B-Chat':'Qwen/Qwen1.5-14B-Chat' , + 'Qwen1.5-32B-Chat':'Qwen/Qwen1.5-32B-Chat' , + 'text-bison-002':'text-bison@002', + 'c4ai-command-r-v01':'CohereForAI/c4ai-command-r-v01', + 'c4ai-command-r-plus':'command-r-plus', + 'Mixtral-8x7B-Instruct-v0.1':'mistralai/Mixtral-8x7B-Instruct-v0.1', + 'aya-23':'CohereForAI/aya-23-35B', + 'SeaLLM-7B-v2.5':'SeaLLMs/SeaLLM-7B-v2.5', + 'Merak-7B-v4':'Ichsan2895/Merak-7B-v4', + 'jais-13b-chat':'core42/jais-13b-chat', +} + +COUNTRY_LANG = { + "UK": "English", + "US": "English", + "South_Korea": "Korean", + "Algeria": "Arabic", + "China": "Chinese", + "Indonesia": "Indonesian", + "Spain": "Spanish", + "Iran": "Persian", + "Mexico":"Spanish", + "Assam":"Assamese", + "Greece":"Greek", + "Ethiopia":"Amharic", + "Northern_Nigeria":"Hausa", + "Azerbaijan":"Azerbaijani", + "North_Korea":"Korean", + "West_Java":"Sundanese" +} + + +def get_tokenizer_model(model_name,model_path,model_cache_dir): + tokenizer,model = None,None + + if 'gpt' not in model_name and 'gemini' not in model_name and 'claude' not in model_name and 'bison' not in model_name and 'command' not in model_name and 'Qwen' not in model_name: + if 'llama' in model_name.lower(): + tokenizer = LlamaTokenizer.from_pretrained(model_path, use_fast=False,token=os.getenv("HF_TOKEN")) + model = AutoModelForCausalLM.from_pretrained(model_path, device_map="auto", + torch_dtype=torch.float16, + resume_download=True, + cache_dir=os.path.join(model_cache_dir,model_path),token=os.getenv("HF_TOKEN")) + + elif 'Orion' in model_name or 'polylm' in model_name: + tokenizer = AutoTokenizer.from_pretrained(model_path, use_fast=False, trust_remote_code=True) + model = AutoModelForCausalLM.from_pretrained(model_path, device_map="auto", trust_remote_code=True ,torch_dtype=torch.bfloat16, + resume_download=True, + cache_dir=os.path.join(model_cache_dir,model_path)) + + elif 'aya' in model_name: + tokenizer = AutoTokenizer.from_pretrained(model_path) + if '23' in model_name: + model = AutoModelForCausalLM.from_pretrained(model_path, device_map="auto",token=os.getenv("HF_TOKEN"), + resume_download=True, + cache_dir=os.path.join(model_cache_dir,model_path)) + else: + model = AutoModelForSeq2SeqLM.from_pretrained(model_path, device_map="auto", + resume_download=True, + cache_dir=os.path.join(model_cache_dir,model_path)) + + elif 'mala' in model_name.lower(): + base_model = AutoModelForCausalLM.from_pretrained('meta-llama/Llama-2-7b-hf',token=os.getenv("HF_TOKEN"), device_map="auto", + cache_dir=os.path.join(model_cache_dir,model_path)) + base_model.resize_token_embeddings(260164) + tokenizer = AutoTokenizer.from_pretrained(model_path,token=os.getenv("HF_TOKEN")) + model = PeftModel.from_pretrained(base_model, model_path, device_map="auto", + cache_dir=os.path.join(model_cache_dir,model_path)) + elif 'mistral' in model_path.lower(): + tokenizer = AutoTokenizer.from_pretrained(model_path, use_fast=False,token=os.getenv("HF_TOKEN")) + model = AutoModelForCausalLM.from_pretrained(model_path, device_map="auto", + resume_download=True, + cache_dir=os.path.join(model_cache_dir,model_path),token=os.getenv("HF_TOKEN")) + + elif 'merak' in model_path.lower(): + config = AutoConfig.from_pretrained(model_path) + model = AutoModelForCausalLM.from_pretrained(model_path, + device_map="auto", + trust_remote_code=True, + resume_download=True, + cache_dir=os.path.join(model_cache_dir,model_path)) + + tokenizer = LlamaTokenizer.from_pretrained(model_path) + + elif 'jais' in model_path.lower(): + tokenizer = AutoTokenizer.from_pretrained(model_path) + model = AutoModelForCausalLM.from_pretrained(model_path, + device_map="auto", + trust_remote_code=True, + resume_download=True, + cache_dir=os.path.join(model_cache_dir,model_path)) + + else: + tokenizer = AutoTokenizer.from_pretrained(model_path, use_fast=False) + model = AutoModelForCausalLM.from_pretrained(model_path, device_map="auto", + resume_download=True, + cache_dir=os.path.join(model_cache_dir,model_path)) + + return tokenizer,model + +class Prompter(object): + __slots__ = ("template", "_verbose") + + def __init__(self, template_name: str = "", verbose: bool = False): + self._verbose = verbose + if not template_name: + # Enforce the default here, so the constructor can be called with '' and will not break. + template_name = "alpaca" + file_name = osp.join("templates", f"{template_name}.json") + if not osp.exists(file_name): + raise ValueError(f"Can't read {file_name}") + with open(file_name) as fp: + self.template = json.load(fp) + if self._verbose: + print( + f"Using prompt template {template_name}: {self.template['description']}" + ) + + def generate_prompt( + self, + instruction: str, + input: Union[None, str] = None, + label: Union[None, str] = None, + ) -> str: + # returns the full prompt from instruction and optional input + # if a label (=response, =output) is provided, it's also appended. + if input: + res = self.template["prompt_input"].format( + instruction=instruction, input=input + ) + else: + res = self.template["prompt_no_input"].format( + instruction=instruction + ) + if label: + res = f"{res}{label}" + if self._verbose: + print(res) + return res + + def get_response(self, output: str) -> str: + return output.split(self.template["response_split"])[1].strip() + +def get_together_response( + text, + model_name='Qwen/Qwen1.5-72B-Chat', + temperature=1.0, + top_p=1.0, + max_tokens=512, + greedy=False, + num_sequence=1, + max_try=10, + dialogue_history=None +): + + client = Together(api_key=os.getenv("TOGETHER_API_KEY")) + n_try = 0 + while True: + if n_try == max_try: + outputs = ["something wrong"] + response = None + break + try: + time.sleep(0.5) + response = client.chat.completions.create( + model=model_name, + messages=[{"role": "user", "content": text}], + temperature=temperature, + top_p=top_p, + max_tokens=max_tokens, + ) + + response = response.choices[0].message.content.strip() + break + except KeyboardInterrupt: + raise Exception("KeyboardInterrupted!") + except: + try: + print(response) + except: + print('ERROR') + print("Exception: Sleep for 10 sec") + + time.sleep(10) + n_try += 1 + continue + + return response + +def get_cohere_response( + text, + model_name='command-r-plus', + temperature=1.0, + top_p=1.0, + max_tokens=512, + greedy=False, + num_sequence=1, + max_try=10, + dialogue_history=None +): + + co = cohere.Client(os.getenv("COHERE_API_KEY")) + + n_try = 0 + while True: + if n_try == max_try: + outputs = ["something wrong"] + res = None + break + try: + time.sleep(0.5) + response = co.chat( + model=model_name, + message=text, + temperature=temperature, + p=top_p, + max_tokens=max_tokens, + ) + + res = response.text.strip() + + break + except KeyboardInterrupt: + raise Exception("KeyboardInterrupted!") + except: + try: + print(response) + except: + print('ERROR') + print("Exception: Sleep for 10 sec") + + time.sleep(10) + n_try += 1 + continue + + return res + +def check_gpt_input_list(history): + check = True + for i, u in enumerate(history): + if not isinstance(u, dict): + check = False + break + + if not u.get("role") or not u.get("content"): + check = False + break + + return check + +def get_gpt_response( + text, + model_name, + temperature=1.0, + top_p=1.0, + max_tokens=None, + greedy=False, + num_sequence=1, + max_try=10, + dialogue_history=None +): + + client = OpenAI(api_key=os.getenv("OPENAI_API_KEY"), + organization=os.getenv("OPENAI_ORG_ID")) + + if (model_name.startswith("gpt-3.5-turbo") and 'instruct' not in model_name) or model_name.startswith("gpt-4"): + if dialogue_history: + if not check_gpt_input_list(dialogue_history): + raise Exception("Input format is not compatible with chatgpt api! Please see https://platform.openai.com/docs/api-reference/chat") + messages = dialogue_history + else: + messages = [] + + messages.append({'role': 'user', 'content': text}) + + prompt = { + "model": model_name, + "messages": messages, + "temperature": 0. if greedy else temperature, + "top_p": top_p, + "max_tokens": max_tokens, + "n": num_sequence + } + + else: + prompt = { + "model": model_name, + "prompt": text, + "temperature": 0. if greedy else temperature, + "top_p": top_p, + "max_tokens": max_tokens, + "n": num_sequence + } + + n_try = 0 + while True: + if n_try == max_try: + outputs = ["something wrong"] + break + + try: + if (model_name.startswith("gpt-3.5-turbo") and 'instruct' not in model_name) or model_name.startswith("gpt-4"): + time.sleep(0.5) + res = client.chat.completions.create(**prompt) + outputs = [o['message']['content'].strip("\n ") for o in res['choices']] + else: + res = client.chat.completions.create(**prompt) + outputs = [o['text'].strip("\n ") for o in res['choices']] + break + except KeyboardInterrupt: + raise Exception("KeyboardInterrupted!") + except: + print("Exception: Sleep for 10 sec") + time.sleep(10) + n_try += 1 + continue + + if len(outputs) == 1: + outputs = outputs[0] + return outputs + +def inference_azure(prompt,model_name,temperature=0,top_p=1,max_attempt=10): + client = AzureOpenAI( + api_key=os.getenv("AZURE_OPENAI_API_KEY"), + api_version=os.getenv("AZURE_OPENAI_API_VER"), + azure_endpoint=os.getenv("AZURE_OPENAI_API_ENDPT"), + ) + + attempt = 0 + while attempt < max_attempt: + time.sleep(0.5) + completion = None + try: + completion = client.chat.completions.create( + model=model_name, + temperature=temperature, + top_p=top_p, + messages=[ + { + "role": "user", + "content": prompt, + }, + ], + ) + res = completion.choices[0].message.content + if res == None: + attempt += 1 + print(completion.choices[0].finish_reason) + else: + break + except KeyboardInterrupt: + raise Exception("KeyboardInterrupted!") + except: + print("Exception: Sleep for 10 sec") + time.sleep(10) + attempt += 1 + continue + if attempt == max_attempt: + if completion: + return completion.choices[0].finish_reason + else: + return "openai.BadRequestError" + return res.strip() + +def inference_claude(prompt,temperature=0,top_p=1,model_name="culture-gpt-4-1106-Preview",max_attempt=10): + c = anthropic.Anthropic(api_key=os.getenv('CLAUDE_API_KEY')) + + attempt = 0 + while attempt < max_attempt: + time.sleep(0.5) + completion = None + try: + message = c.messages.create( + model=model_name, + max_tokens=512, + temperature=temperature, + top_p=top_p, + messages=[ + { + "role": "user", + "content": prompt + } + ] + ) + res = message.content[0].text + if res == None: + attempt += 1 + print(message.stop_reason) + time.sleep(10) + else: + break + except KeyboardInterrupt: + raise Exception("KeyboardInterrupted!") + except: + print("Exception: Sleep for 10 sec") + time.sleep(10) + attempt += 1 + continue + if attempt == max_attempt: + if message != None: + return message.error.message + else: + return "UNKNOWN_ERROR" + return res.strip() + +def model_inference(prompt,model_path,model,tokenizer,max_length=512): + if 'Orion' in model_path: + model.generation_config = GenerationConfig.from_pretrained(model_path) + messages = [{"role": "user", "content": prompt}] + result = model.chat(tokenizer, messages,streaming=False) + result = result.replace(prompt,'').strip() + + if 'mistral' in model_path: + model = AutoModelForCausalLM.from_pretrained(model_path, device_map="auto") + + messages = messages = [{"role": "user", "content": prompt}] + + inputs = tokenizer.apply_chat_template(messages, return_tensors="pt").to(model.device) + + outputs = model.generate(inputs, max_new_tokens=max_length) + result = tokenizer.decode(outputs[0], skip_special_tokens=True) + + elif 'Qwen' in model_path: + messages = messages = [{"role": "user", "content": prompt}] + text = tokenizer.apply_chat_template( + messages, + tokenize=False, + add_generation_prompt=True + ) + model_inputs = tokenizer([text], return_tensors="pt").to(model.device) + + generated_ids = model.generate( + model_inputs.input_ids, + max_new_tokens=max_length + ) + generated_ids = [ + output_ids[len(input_ids):] for input_ids, output_ids in zip(model_inputs.input_ids, generated_ids) + ] + + result = tokenizer.batch_decode(generated_ids, skip_special_tokens=True)[0] + + elif 'c4ai' in model_path: + messages = [{"role": "user", "content": prompt}] + input_ids = tokenizer.apply_chat_template(messages, tokenize=True, add_generation_prompt=True, return_tensors="pt").to(model.device) + + gen_tokens = model.generate( + input_ids, + max_new_tokens=max_length, + ) + + s = tokenizer.decode(gen_tokens[0]) + + start_token = "<|CHATBOT_TOKEN|>" + end_token = "<|END_OF_TURN_TOKEN|>" + + start_idx = s.find(start_token) + len(start_token) + end_idx = s.find(end_token, start_idx) + + result = s[start_idx:end_idx] + + elif 'aya-23' in model_path: + messages = [{"role": "user", "content": prompt}] + input_ids = tokenizer.apply_chat_template(messages, tokenize=True, add_generation_prompt=True, return_tensors="pt").to(model.device) + + gen_tokens = model.generate( + input_ids, + max_new_tokens=max_length, + ) + + s = tokenizer.decode(gen_tokens[0]) + + start_token = "<|CHATBOT_TOKEN|>" + end_token = "<|END_OF_TURN_TOKEN|>" + + start_idx = s.find(start_token) + len(start_token) + end_idx = s.find(end_token, start_idx) + + result = s[start_idx:end_idx] + + elif 'SeaLLM' in model_path: + messages = [{"role": "user", "content": prompt}] + + input_ids = tokenizer.apply_chat_template(messages, return_tensors="pt", add_generation_prompt=True).to(model.device) + + generated_ids = model.generate( + input_ids, + max_new_tokens=max_length, + ) + s = tokenizer.batch_decode(generated_ids)[0] + + start_token = "<|im_start|>assistant\n" + end_token = "" + + start_idx = s.find(start_token) + len(start_token) + end_idx = s.find(end_token, start_idx) + + result = s[start_idx:end_idx] + + elif 'Merak' in model_path: + messages = [{"role": "user", "content": prompt}] + inputs = tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True).to(model.device) + inputs = tokenizer(inputs, return_tensors="pt", return_attention_mask=True) + + with torch.no_grad(): + outputs = model.generate(input_ids=inputs["input_ids"].to("cuda"), + attention_mask=inputs.attention_mask, + eos_token_id=tokenizer.eos_token_id, + pad_token_id=tokenizer.eos_token_id, + max_new_tokens=max_length) + response = tokenizer.batch_decode(outputs.detach().cpu().numpy(), skip_special_tokens=True)[0] + + assistant_start = f'''{prompt} \n assistant\n ''' + response_start = response.find(assistant_start) + result = response[response_start + len(assistant_start) :].strip() + + elif 'jais' in model_path: + input_ids = tokenizer(prompt, return_tensors="pt").input_ids + inputs = input_ids.to(model.device) + input_len = inputs.shape[-1] + generate_ids = model.generate( + inputs, + max_length=max_length, + ) + result = tokenizer.batch_decode( + generate_ids, skip_special_tokens=True, clean_up_tokenization_spaces=True + )[0] + + else: + input_ids = tokenizer(prompt, return_tensors="pt", return_token_type_ids=False).to(model.device) + outputs = model.generate(**input_ids,max_length=max_length) + result = tokenizer.decode(outputs[0],skip_special_tokens=True) + result = result.replace(prompt,'').strip() + + return result + +def get_gemini_response(prompt,model_name, + temperature=0, + top_p=1.0, + greedy=False, + max_attempt=10,): + + GOOGLE_API_KEY=os.getenv('GOOGLE_API_KEY') + genai.configure(api_key=GOOGLE_API_KEY) + + safety_settings=[ + { + "category": category, + "threshold": safety_types.HarmBlockThreshold.BLOCK_NONE, + } for category in safety_types._NEW_HARM_CATEGORIES + ] + + generation_config = genai.types.GenerationConfig(temperature=temperature,top_p=top_p) + model = genai.GenerativeModel(model_name,safety_settings) + + attempt = 0 + while attempt < max_attempt: + time.sleep(0.5) + response = model.generate_content(prompt,generation_config=generation_config) + try: + response = model.generate_content(prompt,generation_config=generation_config) + res = response.text + break + except ValueError: + # If the response doesn't contain text, check if the prompt was blocked. + print(response.prompt_feedback) + try: + # Also check the finish reason to see if the response was blocked. + print(response.candidates[0].finish_reason) + # If the finish reason was SAFETY, the safety ratings have more details. + print(response.candidates[0].safety_ratings) + except: + print() + time.sleep(10) + attempt += 1 + continue + except KeyboardInterrupt: + raise Exception("KeyboardInterrupted!") + except: + if '1.5' in model_name: + print("Exception: Sleep for 70 sec") + time.sleep(70) + else: + print("Exception: Sleep for 10 sec") + time.sleep(10) + attempt += 1 + continue + if attempt == max_attempt: + if response: + try: + return response.candidates[0].finish_reason + except: + return response.prompt_feedback + else: + return "" + return res.strip() + +def get_palm_response(prompt,model_name, + temperature=1.0, + top_p=1.0, + greedy=False, + max_attempt=10,): + + GOOGLE_API_KEY=os.getenv('GOOGLE_API_KEY') + genai.configure(api_key=GOOGLE_API_KEY) + + safety_settings=[ + { + "category": category, + "threshold": safety_types.HarmBlockThreshold.BLOCK_NONE, + } for category in safety_types.HarmCategory if category.value < 7 + ] + + attempt = 0 + while attempt < max_attempt: + time.sleep(0.5) + try: + completion = genai.generate_text( + model=model_name, + prompt=prompt, + temperature=temperature, + safety_settings=safety_settings, + top_p=top_p + ) + + res = completion.result + if res == None: + attempt += 1 + print(completion.filters) + print(completion.safety_feedback) + continue + break + except ValueError: + # If the response doesn't contain text, check if the prompt was blocked. + print(completion.filters) + # Also check the finish reason to see if the response was blocked. + print(completion.safety_feedback) + + attempt += 1 + continue + except KeyboardInterrupt: + raise Exception("KeyboardInterrupted!") + except: + print("Exception: Sleep for 10 sec") + time.sleep(10) + attempt += 1 + continue + if attempt == max_attempt: + return completion.filters + return res.strip() + +def get_palm2_response(prompt,model_name, + temperature=1.0, + top_p=1.0, + greedy=False, + max_attempt=10,): + credentials = service_account.Credentials.from_service_account_file(os.getenv('GOOGLE_APPLICATION_CREDENTIALS')) + vertexai.init(project=os.getenv('GOOGLE_PROJECT_NAME'),credentials=credentials) + + GOOGLE_API_KEY=os.getenv('GOOGLE_API_KEY') + genai.configure(api_key=GOOGLE_API_KEY) + + safety_settings=[ + { + "category": category, + "threshold": safety_types.HarmBlockThreshold.BLOCK_NONE, + } for category in safety_types.HarmCategory if category.value < 7 + ] + model = TextGenerationModel.from_pretrained(model_name) + parameters = { + "temperature": temperature, # Temperature controls the degree of randomness in token selection. + "top_p": top_p, # Tokens are selected from most probable to least until the sum of their probabilities equals the top_p value. + "max_output_tokens": 512 + } + + attempt = 0 + while attempt < max_attempt: + time.sleep(0.5) + try: + response = model.predict( + prompt, + **parameters, + ) + + res = response.text + + if res == None: + attempt += 1 + print(response.is_blocked) + print(response.safety_attributes) + continue + break + except ValueError: + print(response.is_blocked) + print(response.safety_attributes) + + attempt += 1 + continue + except KeyboardInterrupt: + raise Exception("KeyboardInterrupted!") + except: + print("Exception: Sleep for 10 sec") + time.sleep(10) + attempt += 1 + continue + if attempt == max_attempt: + return response.safety_attributes + return res.strip() + +def get_model_response(model_name,prompt,model,tokenizer,temperature,top_p,gpt_azure): + + if gpt_azure: + gpt_inference = inference_azure + else: + gpt_inference = get_gpt_response + + if 'gpt' in model_name: + response = gpt_inference(prompt,model_name=model_name,temperature=temperature,top_p=top_p) + elif 'gemini' in model_name: + response = get_gemini_response(prompt,model_name=model_name,temperature=temperature,top_p=top_p) + elif 'bison' in model_name: + response = get_palm2_response(prompt,model_name=model_name,temperature=temperature,top_p=top_p) + elif 'claude' in model_name: + response = inference_claude(prompt,model_name=model_name,temperature=temperature,top_p=top_p) + elif 'command' in model_name: + response = get_cohere_response(prompt,model_name=model_name,temperature=temperature,top_p=top_p) + elif 'Qwen' in model_name: + response = get_together_response(prompt,model_name=model_name,temperature=temperature,top_p=top_p) + else: + response = model_inference(prompt,model_path=model_name,model=model,tokenizer=tokenizer) + + return response + +def get_json_str(response,return_list=False): + """Extract json object from LLM response + + Args: + response (str): LLM response with JSON format included + + Returns: + dict: Extracted json (dict) object + """ + + try: + response = response.replace('\n','') + if "{" not in response: + print(response) + return response + + if return_list: + jsons = re.findall(r'\[\s*{.+}\s*\]',response) + + json_list = [] + json_object = json.loads(jsons[-1]) + else: + jsons = re.findall(r'{[^}]+}',response) + + response = jsons[0] + response = response.replace('```json','').replace('`','').replace('\n','').replace(',}','}') + json_object = json.loads(response) + except: + return response + + + return json_object + +def import_google_sheet(id,gid=0,file_path='google_sheet_tmp.csv',overwrite=False): + + url = f'https://docs.google.com/spreadsheets/d/{id}/export?format=csv&gid={gid}' + response = requests.get(url) + if response.status_code == 200: + with open(file_path, 'wb') as f: + f.write(response.content) + print('CSV file saved to: {}'.format(file_path)) + else: + print(f'Error downloading Google Sheet: {response.status_code}') + sys.exit(1) + + df = pd.read_csv(file_path) + return df + +def read_jsonl(filename): + js = [] + with open(filename) as f: # jsonl 형식임 + for line in f.readlines(): + js.append(json.loads(line)) ## json 라이브러리 이용 + + return js + +def write_csv_row(values,filename): + open_trial = 0 + + while True: + if open_trial > 10: + raise Exception("something wrong") + + try: + with open(filename, "a", encoding="utf-8") as f: + writer = csv.writer(f) + writer.writerow(values) + break + except: + print("open failed") + continue + +def replace_country_name(s,country): + return s.replace('your country',country) + +def str2bool(v): + if isinstance(v, bool): + return v + if v.lower() in ('True','yes', 'true', 't', 'y', '1'): + return True + elif v.lower() in ('False','no', 'false', 'f', 'n', '0'): + return False + else: + raise argparse.ArgumentTypeError('Boolean value expected.') + +def is_time_format(s): + """ + Check if the given string matches the '%d%d:%d%d' time format. + + Args: + s (str): The string to check. + + Returns: + bool: True if the string matches the format, False otherwise. + """ + # Regular expression to match exactly two digits, a colon, and then exactly two more digits + pattern = r"^\d\d:\d\d$" + return bool(re.match(pattern, s)) + +def is_date_format(s): + """ + Check if the given string matches the '%d%d/%d%d' time format. + + Args: + s (str): The string to check. + + Returns: + bool: True if the string matches the format, False otherwise. + """ + # Regular expression to match exactly two digits, a colon, and then exactly two more digits + pattern = r"^\d{1,2}/\d{1,2}$" + return bool(re.match(pattern, s)) + +def is_float(s): + """ + Check if the given string can be converted to a float. + + Args: + s (str): The string to check. + + Returns: + bool: True if the string can be converted to a float, False otherwise. + """ + try: + float(s) # Try converting the string to a float + return True + except ValueError: # If conversion to float fails, it raises ValueError + return False \ No newline at end of file