studium 0.18.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (821) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +3310 -0
  3. data/bin/all_passed_exams +14 -0
  4. data/bin/check_description_of_these_lectures +7 -0
  5. data/bin/curriculum_module_displayer +7 -0
  6. data/bin/cycle +7 -0
  7. data/bin/d10 +7 -0
  8. data/bin/d100 +7 -0
  9. data/bin/d15 +7 -0
  10. data/bin/d150 +7 -0
  11. data/bin/d20 +7 -0
  12. data/bin/d25 +7 -0
  13. data/bin/d3 +7 -0
  14. data/bin/d30 +7 -0
  15. data/bin/d5 +7 -0
  16. data/bin/determine_curricula +7 -0
  17. data/bin/display_lecture_url +7 -0
  18. data/bin/exam_registration_at +7 -0
  19. data/bin/exam_statistics +7 -0
  20. data/bin/exams_per_month +9 -0
  21. data/bin/finished_exams_at_this_university +7 -0
  22. data/bin/flashcards +7 -0
  23. data/bin/from_curriculum_id_to_university +9 -0
  24. data/bin/location_to_this_exam_topic.rb +7 -0
  25. data/bin/mandatory_continuous_assessment +7 -0
  26. data/bin/mandatory_upcoming_courses +10 -0
  27. data/bin/n_ECTS +7 -0
  28. data/bin/n_exam_questions_already_answered +15 -0
  29. data/bin/names_of_all_solved_exams +7 -0
  30. data/bin/not_completed_exams +7 -0
  31. data/bin/nquestions +7 -0
  32. data/bin/nsolved +7 -0
  33. data/bin/open_last_exam_question_asked_file +7 -0
  34. data/bin/passed_exams +7 -0
  35. data/bin/passed_pr/303/274fungsimmanente_courses +7 -0
  36. data/bin/passed_this_exam_on +10 -0
  37. data/bin/pdf_for +7 -0
  38. data/bin/question_answer +7 -0
  39. data/bin/random_exam_topic +7 -0
  40. data/bin/registered_for_this_exam +15 -0
  41. data/bin/report_solved_topics +7 -0
  42. data/bin/return_n_ects_from_this_file +7 -0
  43. data/bin/return_n_questions_solved_in_total +7 -0
  44. data/bin/rti_conflict +7 -0
  45. data/bin/search_for_n_ects +7 -0
  46. data/bin/show_lectures_on_the_commandline +7 -0
  47. data/bin/show_passed_exams_having_this_grade +7 -0
  48. data/bin/show_themes +7 -0
  49. data/bin/solved +9 -0
  50. data/bin/solved_ects +7 -0
  51. data/bin/studienkennzahl +7 -0
  52. data/bin/studium +7 -0
  53. data/bin/studium_actions +7 -0
  54. data/bin/studium_skeleton +7 -0
  55. data/bin/ufind +7 -0
  56. data/bin/upcoming_exams +7 -0
  57. data/bin/week_parser +7 -0
  58. data/doc/ECTS_CONSIDERATIONS/ECTS_CONSIDERATIONS.md +85 -0
  59. data/doc/HOW_TO_DETERMINE_WHICH_PART_IS_THE_QUESTION_AND_WHICH_PART_IS_THE_ANSWER/HOW_TO_DETERMINE_WHICH_PART_IS_THE_QUESTION_AND_WHICH_PART_IS_THE_ANSWER.md +44 -0
  60. data/doc/README.gen +3263 -0
  61. data/doc/SQL_database_specification/SQL_database_specification.md +46 -0
  62. data/doc/deprecated_components/deprecated_components.md +46 -0
  63. data/doc/documentation_for_the_file_lecture_information/documentation_for_the_file_lecture_information.md +311 -0
  64. data/doc/elegant_colours/elegant_colours.md +21 -0
  65. data/doc/statistics/yearly_statistics.md +8 -0
  66. data/doc/todo/todo_for_the_graphical_parts_of_the_studium_gem_including_www_related_aspects.md +92 -0
  67. data/doc/todo/todo_for_the_studium_gem.md +55 -0
  68. data/img/STUDIES.png +0 -0
  69. data/lib/studium/actions/actions.rb +134 -0
  70. data/lib/studium/autoinclude.rb +7 -0
  71. data/lib/studium/base/base.rb +3554 -0
  72. data/lib/studium/base/commandline_arguments_module/commandline_arguments_module.rb +115 -0
  73. data/lib/studium/base/html_colours_module.rb +632 -0
  74. data/lib/studium/base/runmode_module/runmode_module.rb +103 -0
  75. data/lib/studium/c/README.md +2 -0
  76. data/lib/studium/c/a.out +0 -0
  77. data/lib/studium/c/obtain_random_entry.c +11 -0
  78. data/lib/studium/check_and_sanitize/README.md +15 -0
  79. data/lib/studium/check_and_sanitize/check_curriculum_for_correct_separation_of_bachelor_and_master.rb +141 -0
  80. data/lib/studium/check_and_sanitize/check_for_all_exam_topics_being_registered.rb +118 -0
  81. data/lib/studium/check_and_sanitize/check_for_correct_themes_of_each_course.rb +100 -0
  82. data/lib/studium/check_and_sanitize/check_for_existing_description_of_this_lecture.rb +194 -0
  83. data/lib/studium/check_and_sanitize/check_important_exams.rb +138 -0
  84. data/lib/studium/check_and_sanitize/check_the_lecture_information_file.rb +166 -0
  85. data/lib/studium/check_and_sanitize/correct_all_dates_in_the_file_lecture_information.rb +115 -0
  86. data/lib/studium/check_and_sanitize/date_sanitizer.rb +350 -0
  87. data/lib/studium/check_and_sanitize/find_duplicate_lectures.rb +124 -0
  88. data/lib/studium/check_and_sanitize/missing_priority_entry.rb +44 -0
  89. data/lib/studium/check_and_sanitize/sanitize_lecture_information.rb +434 -0
  90. data/lib/studium/colours/colours.rb +1711 -0
  91. data/lib/studium/commandline/commandline.rb +1848 -0
  92. data/lib/studium/constants/constants.rb +2063 -0
  93. data/lib/studium/css/project.css +273 -0
  94. data/lib/studium/curricula/attribute_lecture_to_curriculum/attribute_boku_lecture_to_curriculum.rb +384 -0
  95. data/lib/studium/curricula/attribute_lecture_to_curriculum/attribute_lecture_to_curriculum.rb +238 -0
  96. data/lib/studium/curricula/curricula_from_this_website/curricula_from_this_website.rb +141 -0
  97. data/lib/studium/curricula/curriculum.rb +213 -0
  98. data/lib/studium/curricula/curriculum_as_string.rb +280 -0
  99. data/lib/studium/curricula/curriculum_module_displayer/constants.rb +33 -0
  100. data/lib/studium/curricula/curriculum_module_displayer/curriculum_module_displayer.rb +417 -0
  101. data/lib/studium/curricula/curriculum_module_displayer/initialize.rb +25 -0
  102. data/lib/studium/curricula/curriculum_module_displayer/menu.rb +45 -0
  103. data/lib/studium/curricula/curriculum_module_displayer/reset.rb +74 -0
  104. data/lib/studium/curricula/curriculum_module_displayer/run.rb +20 -0
  105. data/lib/studium/curricula/curriculum_module_displayer/set_use_this_curriculum.rb +93 -0
  106. data/lib/studium/curricula/curriculum_module_displayer/show_and_report.rb +190 -0
  107. data/lib/studium/curricula/determine_curricula/constants.rb +11 -0
  108. data/lib/studium/curricula/determine_curricula/determine_curricula.rb +36 -0
  109. data/lib/studium/curricula/determine_curricula/help.rb +39 -0
  110. data/lib/studium/curricula/determine_curricula/initialize.rb +48 -0
  111. data/lib/studium/curricula/determine_curricula/menu.rb +151 -0
  112. data/lib/studium/curricula/determine_curricula/misc.rb +403 -0
  113. data/lib/studium/curricula/determine_curricula/report.rb +141 -0
  114. data/lib/studium/curricula/determine_curricula/reset.rb +59 -0
  115. data/lib/studium/curricula/determine_curricula/run.rb +19 -0
  116. data/lib/studium/curricula/determine_elective_courses_in_this_curriculum.rb +112 -0
  117. data/lib/studium/curricula/display_bachelor_curricula.rb +90 -0
  118. data/lib/studium/curricula/handle_curricula/README.md +9 -0
  119. data/lib/studium/curricula/handle_curricula/handle_curricula.rb +99 -0
  120. data/lib/studium/curricula/handle_curricula/misc.rb +798 -0
  121. data/lib/studium/curricula/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.rb +323 -0
  122. data/lib/studium/curricula/modules/display_on_the_commandline.rb +319 -0
  123. data/lib/studium/curricula/modules/return_n_ects_in_this_module.rb +74 -0
  124. data/lib/studium/curricula/n_percent_solved_in_this_curriculum.rb +73 -0
  125. data/lib/studium/curricula/prepare_individual_curriculum.rb +304 -0
  126. data/lib/studium/curricula/random_curriculum_creator/random_curriculum_creator.rb +164 -0
  127. data/lib/studium/curricula/show_all_unfinished_courses_of_this_curriculum/show_all_unfinished_courses_of_this_curriculum.rb +116 -0
  128. data/lib/studium/curricula/show_lectures_of_this_curriculum.rb +114 -0
  129. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/show_lectures_of_this_curriculum_id.rb +554 -0
  130. data/lib/studium/curricula/show_solved_percentage_among_the_registered_curricula.rb +87 -0
  131. data/lib/studium/curricula/sorted_individual_curricula.rb +121 -0
  132. data/lib/studium/ects/boku_ects_splitter.rb +128 -0
  133. data/lib/studium/ects/ects_per_university/ects_per_university.rb +179 -0
  134. data/lib/studium/ects/ects_scanner.rb +141 -0
  135. data/lib/studium/ects/ects_to_university_parser.rb +142 -0
  136. data/lib/studium/ects/last_entry_is_curriculum.rb +150 -0
  137. data/lib/studium/ects/n_ects_in_these_lectures.rb +196 -0
  138. data/lib/studium/ects/n_ects_points_in_mandatory_presence_courses.rb +47 -0
  139. data/lib/studium/ects/return_n_ects_from_this_file.rb +59 -0
  140. data/lib/studium/ects/return_n_ects_from_this_url.rb +197 -0
  141. data/lib/studium/ects/search_for_n_ects/search_for_n_ects.rb +719 -0
  142. data/lib/studium/ects/show_completed_ects_in_all_curricula.rb +245 -0
  143. data/lib/studium/ects/show_passed_credits_per_curriculum.rb +276 -0
  144. data/lib/studium/ects/simple_total_ects_points.rb +135 -0
  145. data/lib/studium/ects/solved_ects/constants.rb +19 -0
  146. data/lib/studium/ects/solved_ects/reset.rb +50 -0
  147. data/lib/studium/ects/solved_ects/solved_ects.rb +325 -0
  148. data/lib/studium/ects/solved_ects_per_university/reset.rb +25 -0
  149. data/lib/studium/ects/solved_ects_per_university/solved_ects_per_university.rb +116 -0
  150. data/lib/studium/ects/still_missing.rb +129 -0
  151. data/lib/studium/ects/sum_of_ects.rb +144 -0
  152. data/lib/studium/encoding/encoding.rb +109 -0
  153. data/lib/studium/exam_topics/RNAi_siRNA_and_miRNA +100 -0
  154. data/lib/studium/exam_topics/abfall_als_ressource +86 -0
  155. data/lib/studium/exam_topics/advanced_biochemistry +937 -0
  156. data/lib/studium/exam_topics/advanced_biotechnology +234 -0
  157. data/lib/studium/exam_topics/advanced_cellbiology +251 -0
  158. data/lib/studium/exam_topics/advanced_chemistry +547 -0
  159. data/lib/studium/exam_topics/advanced_immunology +225 -0
  160. data/lib/studium/exam_topics/advanced_microbiology +49 -0
  161. data/lib/studium/exam_topics/advanced_topics_in_plant_sciences +117 -0
  162. data/lib/studium/exam_topics/advanced_virology +273 -0
  163. data/lib/studium/exam_topics/ageing +154 -0
  164. data/lib/studium/exam_topics/agrar_ecology +67 -0
  165. data/lib/studium/exam_topics/agrarmarkt +73 -0
  166. data/lib/studium/exam_topics/agrarphysik +35 -0
  167. data/lib/studium/exam_topics/alcohols +30 -0
  168. data/lib/studium/exam_topics/algorithms +104 -0
  169. data/lib/studium/exam_topics/allergie +76 -0
  170. data/lib/studium/exam_topics/allgemeine_genetik +1006 -0
  171. data/lib/studium/exam_topics/allgemeine_mikrobiologie +1012 -0
  172. data/lib/studium/exam_topics/aminoacids +469 -0
  173. data/lib/studium/exam_topics/analytische_chemie_1 +134 -0
  174. data/lib/studium/exam_topics/analytische_chemie_2 +31 -0
  175. data/lib/studium/exam_topics/anatomie +378 -0
  176. data/lib/studium/exam_topics/anorganische_chemie +357 -0
  177. data/lib/studium/exam_topics/anthropologie +239 -0
  178. data/lib/studium/exam_topics/antibodies_and_antigens +790 -0
  179. data/lib/studium/exam_topics/apoptosis +35 -0
  180. data/lib/studium/exam_topics/archaea +112 -0
  181. data/lib/studium/exam_topics/archaeo_viruses +7 -0
  182. data/lib/studium/exam_topics/archaeology +5 -0
  183. data/lib/studium/exam_topics/architecture +8 -0
  184. data/lib/studium/exam_topics/artificial_intelligence +90 -0
  185. data/lib/studium/exam_topics/atomemissionsspektrometrie +6 -0
  186. data/lib/studium/exam_topics/audio +11 -0
  187. data/lib/studium/exam_topics/bacteriophages +266 -0
  188. data/lib/studium/exam_topics/basic_biochemistry +1008 -0
  189. data/lib/studium/exam_topics/basic_biotechnology +1011 -0
  190. data/lib/studium/exam_topics/basic_chemistry +1007 -0
  191. data/lib/studium/exam_topics/basic_virology +1008 -0
  192. data/lib/studium/exam_topics/bauwesen +6 -0
  193. data/lib/studium/exam_topics/betriebssysteme +128 -0
  194. data/lib/studium/exam_topics/betriebswirtschaftslehre +29 -0
  195. data/lib/studium/exam_topics/bioanalytik_und_biosensoren +451 -0
  196. data/lib/studium/exam_topics/biochips +80 -0
  197. data/lib/studium/exam_topics/bioelektrochemie +57 -0
  198. data/lib/studium/exam_topics/biofilms +58 -0
  199. data/lib/studium/exam_topics/bioinformatics +523 -0
  200. data/lib/studium/exam_topics/biological_therapeutics +156 -0
  201. data/lib/studium/exam_topics/biologie +152 -0
  202. data/lib/studium/exam_topics/biomarkers +137 -0
  203. data/lib/studium/exam_topics/biomaterials +90 -0
  204. data/lib/studium/exam_topics/biomedical_studies +16 -0
  205. data/lib/studium/exam_topics/biomembranes +6 -0
  206. data/lib/studium/exam_topics/bionik +65 -0
  207. data/lib/studium/exam_topics/biophysik +34 -0
  208. data/lib/studium/exam_topics/biopolymers +10 -0
  209. data/lib/studium/exam_topics/bioprozesstechnik +149 -0
  210. data/lib/studium/exam_topics/bioressourcenmanagement +78 -0
  211. data/lib/studium/exam_topics/birds +5 -0
  212. data/lib/studium/exam_topics/bodenkunde +384 -0
  213. data/lib/studium/exam_topics/bodenmikrobiologie +40 -0
  214. data/lib/studium/exam_topics/cancerbiology +488 -0
  215. data/lib/studium/exam_topics/cell_cultures +229 -0
  216. data/lib/studium/exam_topics/cellbiology +1011 -0
  217. data/lib/studium/exam_topics/cellular_transport_and_protein_secretion +27 -0
  218. data/lib/studium/exam_topics/cellular_vesicles +11 -0
  219. data/lib/studium/exam_topics/cellulose +6 -0
  220. data/lib/studium/exam_topics/chemische_technologie_anorganischer_stoffe +210 -0
  221. data/lib/studium/exam_topics/chemische_technologie_organischer_stoffe +25 -0
  222. data/lib/studium/exam_topics/chemisches_labor +60 -0
  223. data/lib/studium/exam_topics/chemokines_and_cytokines +45 -0
  224. data/lib/studium/exam_topics/chemotaxis_quorum_sensing_and_motility_in_prokaryotes +116 -0
  225. data/lib/studium/exam_topics/citric_acid_cycle +84 -0
  226. data/lib/studium/exam_topics/clinical_microbiology +520 -0
  227. data/lib/studium/exam_topics/computer_science +309 -0
  228. data/lib/studium/exam_topics/computer_vision_and_computer_graphics +15 -0
  229. data/lib/studium/exam_topics/crispr +51 -0
  230. data/lib/studium/exam_topics/cyanobacteria +45 -0
  231. data/lib/studium/exam_topics/cytogenetics_and_chromosome_biology +598 -0
  232. data/lib/studium/exam_topics/databases_and_sql +126 -0
  233. data/lib/studium/exam_topics/dna_mutation_and_dna_repair +186 -0
  234. data/lib/studium/exam_topics/dna_replication +80 -0
  235. data/lib/studium/exam_topics/ecogenetics +26 -0
  236. data/lib/studium/exam_topics/ecological_agriculture +12 -0
  237. data/lib/studium/exam_topics/ecology +332 -0
  238. data/lib/studium/exam_topics/economy +226 -0
  239. data/lib/studium/exam_topics/electron_microscopy +7 -0
  240. data/lib/studium/exam_topics/elektronenmikroskopie +356 -0
  241. data/lib/studium/exam_topics/elektrophorese +132 -0
  242. data/lib/studium/exam_topics/elektrotechnik_und_elektrizit/303/244t +42 -0
  243. data/lib/studium/exam_topics/elisa +55 -0
  244. data/lib/studium/exam_topics/embryologie_und_entwicklung +657 -0
  245. data/lib/studium/exam_topics/endospores_and_spores +104 -0
  246. data/lib/studium/exam_topics/enzymes_and_cofactors +395 -0
  247. data/lib/studium/exam_topics/epigenetik +188 -0
  248. data/lib/studium/exam_topics/erste_hilfe +414 -0
  249. data/lib/studium/exam_topics/ethik +143 -0
  250. data/lib/studium/exam_topics/evolution_and_evolutionary_genetics +372 -0
  251. data/lib/studium/exam_topics/excel +7 -0
  252. data/lib/studium/exam_topics/fish +19 -0
  253. data/lib/studium/exam_topics/fluorescence_microscopy +10 -0
  254. data/lib/studium/exam_topics/food_microbiology_and_food_biotechnology +92 -0
  255. data/lib/studium/exam_topics/forensik +65 -0
  256. data/lib/studium/exam_topics/forstwirtschaft +53 -0
  257. data/lib/studium/exam_topics/fortgeschrittene_genetik +692 -0
  258. data/lib/studium/exam_topics/fortgeschrittene_gentechnik +221 -0
  259. data/lib/studium/exam_topics/fortgeschrittene_physik +6 -0
  260. data/lib/studium/exam_topics/fungi +119 -0
  261. data/lib/studium/exam_topics/genetische_krankheiten +209 -0
  262. data/lib/studium/exam_topics/genexpression +1008 -0
  263. data/lib/studium/exam_topics/genomics_and_metagenomics +290 -0
  264. data/lib/studium/exam_topics/gentechnik_und_praktische_biochemie +961 -0
  265. data/lib/studium/exam_topics/geochemistry +67 -0
  266. data/lib/studium/exam_topics/geography +9 -0
  267. data/lib/studium/exam_topics/geologie_und_mineralogie +624 -0
  268. data/lib/studium/exam_topics/geometrie +56 -0
  269. data/lib/studium/exam_topics/geschichte +95 -0
  270. data/lib/studium/exam_topics/gluconeogenesis +72 -0
  271. data/lib/studium/exam_topics/glycogen +45 -0
  272. data/lib/studium/exam_topics/glycolysis +118 -0
  273. data/lib/studium/exam_topics/glykomik +131 -0
  274. data/lib/studium/exam_topics/glyoxylatzyklus +31 -0
  275. data/lib/studium/exam_topics/grassland_cultivation +32 -0
  276. data/lib/studium/exam_topics/hormone +152 -0
  277. data/lib/studium/exam_topics/html +8 -0
  278. data/lib/studium/exam_topics/human_ecology +8 -0
  279. data/lib/studium/exam_topics/hygiene +224 -0
  280. data/lib/studium/exam_topics/imaging_and_microscopy +270 -0
  281. data/lib/studium/exam_topics/immunanalytik +94 -0
  282. data/lib/studium/exam_topics/immunologie +1011 -0
  283. data/lib/studium/exam_topics/informatik +117 -0
  284. data/lib/studium/exam_topics/innate_immunity +52 -0
  285. data/lib/studium/exam_topics/insekten +66 -0
  286. data/lib/studium/exam_topics/insulin_and_diabetes +57 -0
  287. data/lib/studium/exam_topics/java +624 -0
  288. data/lib/studium/exam_topics/javascript +29 -0
  289. data/lib/studium/exam_topics/klima +6 -0
  290. data/lib/studium/exam_topics/kryptographie +10 -0
  291. data/lib/studium/exam_topics/landtechnik +26 -0
  292. data/lib/studium/exam_topics/lebensmittel_und_getr/303/244nke +224 -0
  293. data/lib/studium/exam_topics/lebensmitteltechnologie +16 -0
  294. data/lib/studium/exam_topics/light_microscopy +19 -0
  295. data/lib/studium/exam_topics/linux_and_unix +36 -0
  296. data/lib/studium/exam_topics/lipids +145 -0
  297. data/lib/studium/exam_topics/macroeconomics +39 -0
  298. data/lib/studium/exam_topics/marketing +53 -0
  299. data/lib/studium/exam_topics/mathematics +311 -0
  300. data/lib/studium/exam_topics/medizin_und_biomedizinische_technik +254 -0
  301. data/lib/studium/exam_topics/medizinische_chemie_und_pharmazie +441 -0
  302. data/lib/studium/exam_topics/messtechnik_und_regeltechnik +104 -0
  303. data/lib/studium/exam_topics/metabolismus +482 -0
  304. data/lib/studium/exam_topics/meteorologie_und_atmosph/303/244re +120 -0
  305. data/lib/studium/exam_topics/microbial_ecology +37 -0
  306. data/lib/studium/exam_topics/microcontrollers +11 -0
  307. data/lib/studium/exam_topics/mikrobielle_lebensgemeinschaften +58 -0
  308. data/lib/studium/exam_topics/mikrobielle_physiologie +313 -0
  309. data/lib/studium/exam_topics/mitochondria +57 -0
  310. data/lib/studium/exam_topics/mixed +287 -0
  311. data/lib/studium/exam_topics/molecular_biology_of_plants +281 -0
  312. data/lib/studium/exam_topics/molekulare_medizin +133 -0
  313. data/lib/studium/exam_topics/nanotechnologie +456 -0
  314. data/lib/studium/exam_topics/nature_conservation_and_biodiversity +247 -0
  315. data/lib/studium/exam_topics/naturstoffe +9 -0
  316. data/lib/studium/exam_topics/netzwerke +63 -0
  317. data/lib/studium/exam_topics/neuroanatomie +25 -0
  318. data/lib/studium/exam_topics/neurobiology +356 -0
  319. data/lib/studium/exam_topics/nucleotide_sequencing +41 -0
  320. data/lib/studium/exam_topics/nutztierethologie +11 -0
  321. data/lib/studium/exam_topics/object_oriented_modeling +15 -0
  322. data/lib/studium/exam_topics/obstbau +249 -0
  323. data/lib/studium/exam_topics/organische_chemie +1007 -0
  324. data/lib/studium/exam_topics/organische_chemie_2 +137 -0
  325. data/lib/studium/exam_topics/paleobiology +39 -0
  326. data/lib/studium/exam_topics/parasitic_diseases_and_molecular_infection_biology +336 -0
  327. data/lib/studium/exam_topics/patent_law +55 -0
  328. data/lib/studium/exam_topics/pathologie +761 -0
  329. data/lib/studium/exam_topics/pcr +155 -0
  330. data/lib/studium/exam_topics/pentosephosphatweg +61 -0
  331. data/lib/studium/exam_topics/peroxisomes_glycosomes_and_lysosomes +66 -0
  332. data/lib/studium/exam_topics/pflanzenanatomie +262 -0
  333. data/lib/studium/exam_topics/pflanzenbau +24 -0
  334. data/lib/studium/exam_topics/pflanzenschutz +35 -0
  335. data/lib/studium/exam_topics/pflanzenwissenschaften +1009 -0
  336. data/lib/studium/exam_topics/pharmaceutical_biotechnology +252 -0
  337. data/lib/studium/exam_topics/physik +449 -1
  338. data/lib/studium/exam_topics/physikalische_chemie +79 -0
  339. data/lib/studium/exam_topics/physiology_and_histology +592 -0
  340. data/lib/studium/exam_topics/phytochemie +33 -0
  341. data/lib/studium/exam_topics/plant_biotechnology +132 -0
  342. data/lib/studium/exam_topics/plant_breeding +64 -0
  343. data/lib/studium/exam_topics/plant_development +50 -0
  344. data/lib/studium/exam_topics/populationsgenetik +143 -0
  345. data/lib/studium/exam_topics/posttranslationale_modifikation_von_proteinen +198 -0
  346. data/lib/studium/exam_topics/programming +41 -0
  347. data/lib/studium/exam_topics/projektmanagement +226 -0
  348. data/lib/studium/exam_topics/prokaryote_genetics +587 -0
  349. data/lib/studium/exam_topics/protein_engineering +35 -0
  350. data/lib/studium/exam_topics/proteolyse +39 -0
  351. data/lib/studium/exam_topics/proteomik +42 -0
  352. data/lib/studium/exam_topics/protozoans +24 -0
  353. data/lib/studium/exam_topics/prozesstechnik +95 -0
  354. data/lib/studium/exam_topics/psychologie +21 -0
  355. data/lib/studium/exam_topics/python +391 -0
  356. data/lib/studium/exam_topics/quality_management +266 -0
  357. data/lib/studium/exam_topics/rechtsgrundlagen +126 -0
  358. data/lib/studium/exam_topics/research_topics_in_immunobiology +42 -0
  359. data/lib/studium/exam_topics/rna_and_dna +535 -0
  360. data/lib/studium/exam_topics/rna_seq +13 -0
  361. data/lib/studium/exam_topics/robotics +12 -0
  362. data/lib/studium/exam_topics/ruby +240 -0
  363. data/lib/studium/exam_topics/ruby_on_rails +63 -0
  364. data/lib/studium/exam_topics/scientific_writing_and_publishing +38 -0
  365. data/lib/studium/exam_topics/semisynthese_von_proteinen_und_nukleotiden +120 -0
  366. data/lib/studium/exam_topics/sexualbiologie +327 -0
  367. data/lib/studium/exam_topics/signal_transduction_and_laser_systems +215 -0
  368. data/lib/studium/exam_topics/sozialbiologie +17 -0
  369. data/lib/studium/exam_topics/soziologie +5 -0
  370. data/lib/studium/exam_topics/splicing_exons_and_introns +67 -0
  371. data/lib/studium/exam_topics/sport_und_sportverletzungen +6 -0
  372. data/lib/studium/exam_topics/statistik +306 -0
  373. data/lib/studium/exam_topics/stemcells +182 -0
  374. data/lib/studium/exam_topics/stickstofffixierung +91 -0
  375. data/lib/studium/exam_topics/structural_bioinformatics +54 -0
  376. data/lib/studium/exam_topics/strukturbiologie +445 -0
  377. data/lib/studium/exam_topics/system_biology_and_synthetic_biology +108 -0
  378. data/lib/studium/exam_topics/systematische_zoologie +446 -0
  379. data/lib/studium/exam_topics/technical_ecology +144 -0
  380. data/lib/studium/exam_topics/technik +5 -0
  381. data/lib/studium/exam_topics/technische_chemie +208 -0
  382. data/lib/studium/exam_topics/technische_grundlagen_der_informatik +43 -0
  383. data/lib/studium/exam_topics/technische_mikrobiologie +393 -0
  384. data/lib/studium/exam_topics/technisches_zeichnen +5 -0
  385. data/lib/studium/exam_topics/the_bacterial_cell_wall +98 -0
  386. data/lib/studium/exam_topics/the_c_plus_plus_programming_language +531 -0
  387. data/lib/studium/exam_topics/the_c_programming_language +133 -0
  388. data/lib/studium/exam_topics/the_cellcycle +102 -0
  389. data/lib/studium/exam_topics/the_european_union +121 -0
  390. data/lib/studium/exam_topics/the_interferon_system +40 -0
  391. data/lib/studium/exam_topics/the_microbiome +164 -0
  392. data/lib/studium/exam_topics/the_universe +32 -0
  393. data/lib/studium/exam_topics/theoretische_chemie +5 -0
  394. data/lib/studium/exam_topics/theoretische_informatik +161 -0
  395. data/lib/studium/exam_topics/thermodynamics +21 -0
  396. data/lib/studium/exam_topics/tierzucht +139 -0
  397. data/lib/studium/exam_topics/toxikologie +508 -0
  398. data/lib/studium/exam_topics/transcription +188 -0
  399. data/lib/studium/exam_topics/translation_ribosomes_and_translational_control +155 -0
  400. data/lib/studium/exam_topics/umweltbiotechnologie +64 -0
  401. data/lib/studium/exam_topics/umweltchemie +233 -0
  402. data/lib/studium/exam_topics/urbanism_and_traffic +19 -0
  403. data/lib/studium/exam_topics/urea_cycle +56 -0
  404. data/lib/studium/exam_topics/vaccines_and_vaccination +253 -0
  405. data/lib/studium/exam_topics/vectors_and_gene_therapy +247 -0
  406. data/lib/studium/exam_topics/verfahrenstechnik +37 -0
  407. data/lib/studium/exam_topics/verhaltensbiologie +79 -0
  408. data/lib/studium/exam_topics/veterinary_medicine +10 -0
  409. data/lib/studium/exam_topics/vitamine +32 -0
  410. data/lib/studium/exam_topics/wasserkunde +144 -0
  411. data/lib/studium/exam_topics/weinbau +86 -0
  412. data/lib/studium/exam_topics/wissenschaft +20 -0
  413. data/lib/studium/exam_topics/yeast +104 -0
  414. data/lib/studium/exam_topics/zoologie +338 -0
  415. data/lib/studium/exams/afterburn/afterburn.rb +304 -0
  416. data/lib/studium/exams/ask_exam_from_the_upcoming_exams_pool.rb +150 -0
  417. data/lib/studium/exams/ask_exam_topic_question.rb +112 -0
  418. data/lib/studium/exams/ask_question_from_alias.rb +141 -0
  419. data/lib/studium/exams/ask_question_from_any_of_the_still_missing_lectures.rb +130 -0
  420. data/lib/studium/exams/ask_question_from_grouped_themes.rb +141 -0
  421. data/lib/studium/exams/ask_question_from_last_topic.rb +91 -0
  422. data/lib/studium/exams/ask_random_question.rb +195 -0
  423. data/lib/studium/exams/autoinclude.rb +7 -0
  424. data/lib/studium/exams/average_grade/average_grade.rb +404 -0
  425. data/lib/studium/exams/csv/create_csv_passed_exams_file.rb +217 -0
  426. data/lib/studium/exams/cycle.rb +291 -0
  427. data/lib/studium/exams/dataset/dataset.rb +126 -0
  428. data/lib/studium/exams/designate_ten_random_exam_topics/designate_ten_random_exam_topics.rb +88 -0
  429. data/lib/studium/exams/exam/exam.rb +130 -0
  430. data/lib/studium/exams/exam_bubble/exam_bubble.rb +444 -0
  431. data/lib/studium/exams/exam_bubble/menu_for_the_main_loop.rb +111 -0
  432. data/lib/studium/exams/exam_question/README.md +3 -0
  433. data/lib/studium/exams/exam_question/exam_question.rb +434 -0
  434. data/lib/studium/exams/exam_registration_at/constants.rb +49 -0
  435. data/lib/studium/exams/exam_registration_at/exam_registration_at.rb +242 -0
  436. data/lib/studium/exams/exam_registration_at/help.rb +46 -0
  437. data/lib/studium/exams/exam_registration_at/menu.rb +81 -0
  438. data/lib/studium/exams/exam_registration_at/report_and_show.rb +133 -0
  439. data/lib/studium/exams/exam_registration_at/reset.rb +54 -0
  440. data/lib/studium/exams/exam_statistics_from_this_file/exam_statistics_from_this_file.rb +119 -0
  441. data/lib/studium/exams/exam_topics.rb +194 -0
  442. data/lib/studium/exams/exams.rb +20 -0
  443. data/lib/studium/exams/exams_per_month/exams_per_month.rb +2442 -0
  444. data/lib/studium/exams/exams_this_week.rb +182 -0
  445. data/lib/studium/exams/fix_exam_dates.rb +121 -0
  446. data/lib/studium/exams/frozen.rb +36 -0
  447. data/lib/studium/exams/last_exams/last_exams.rb +479 -0
  448. data/lib/studium/exams/lectures_without_exam_entry.rb +137 -0
  449. data/lib/studium/exams/mandatory_continuous_assessment/mandatory_continuous_assessment.rb +1358 -0
  450. data/lib/studium/exams/move_all_unsolved_exam_questions_to_the_top_of_the_file.rb +173 -0
  451. data/lib/studium/exams/move_the_last_exam_question_to_the_top_of_the_file/move_the_last_exam_question_to_the_top_of_the_file.rb +111 -0
  452. data/lib/studium/exams/n_exams_in_these_topics.rb +477 -0
  453. data/lib/studium/exams/next_exam.rb +106 -0
  454. data/lib/studium/exams/next_exams.rb +378 -0
  455. data/lib/studium/exams/not_completed/README.md +5 -0
  456. data/lib/studium/exams/not_completed/not_completed.rb +143 -0
  457. data/lib/studium/exams/open_exam_associated_url/open_exam_associated_url.rb +154 -0
  458. data/lib/studium/exams/open_last_exam_question_asked_file/constants.rb +15 -0
  459. data/lib/studium/exams/open_last_exam_question_asked_file/initialize.rb +29 -0
  460. data/lib/studium/exams/open_last_exam_question_asked_file/open_last_exam_question_asked_file.rb +110 -0
  461. data/lib/studium/exams/push_solved_questions_on_top.rb +180 -0
  462. data/lib/studium/exams/question_answer/question_answer.rb +2936 -0
  463. data/lib/studium/exams/questions_solved_from_day_to_day/questions_solved_from_day_to_day.rb +379 -0
  464. data/lib/studium/exams/remote_ftp_url.rb +52 -0
  465. data/lib/studium/exams/repeat_last_question.rb +78 -0
  466. data/lib/studium/exams/report_total_amount_of_questions_and_answers_for.rb +116 -0
  467. data/lib/studium/exams/show_all_passed_exams_of_this_university.rb +252 -0
  468. data/lib/studium/exams/show_backlog_of_exams/show_backlog_of_exams.rb +114 -0
  469. data/lib/studium/exams/show_exams_for/show_exams_for.rb +172 -0
  470. data/lib/studium/exams/show_themes/constants.rb +28 -0
  471. data/lib/studium/exams/show_themes/menu.rb +61 -0
  472. data/lib/studium/exams/show_themes/misc.rb +538 -0
  473. data/lib/studium/exams/show_themes/reset.rb +62 -0
  474. data/lib/studium/exams/show_themes/show_themes.rb +27 -0
  475. data/lib/studium/exams/show_upcoming_exams/show_upcoming_exams.rb +1537 -0
  476. data/lib/studium/exams/solve_all_questions_from_this_topic.rb +114 -0
  477. data/lib/studium/exams/solved/solved.rb +434 -0
  478. data/lib/studium/exams/timetable/constants.rb +142 -0
  479. data/lib/studium/exams/timetable/timetable.rb +448 -0
  480. data/lib/studium/exams/unsolve_all_questions_from_this_topic.rb +163 -0
  481. data/lib/studium/exams/upcoming_exams/upcoming_exams.rb +555 -0
  482. data/lib/studium/exams/upcoming_exams_at_the_boku/constants.rb +23 -0
  483. data/lib/studium/exams/upcoming_exams_at_the_boku/html.rb +64 -0
  484. data/lib/studium/exams/upcoming_exams_at_the_boku/upcoming_exams_at_the_boku.rb +194 -0
  485. data/lib/studium/exams/upcoming_exams_dataset.rb +247 -0
  486. data/lib/studium/exams/upcoming_registered_exams/upcoming_registered_exams.rb +257 -0
  487. data/lib/studium/exams/upload_exam_topics.rb +360 -0
  488. data/lib/studium/graphviz/README.md +4 -0
  489. data/lib/studium/graphviz/bachelor_vector_based_strategies.dot +160 -0
  490. data/lib/studium/graphviz/master_vector_based_strategies.dot +46 -0
  491. data/lib/studium/gui/gtk3/control_panel/control_panel.rb +40 -0
  492. data/lib/studium/gui/gtk3/lecture_information/lecture_information.rb +191 -0
  493. data/lib/studium/gui/java/exam_question/ExamQuestion$1.class +0 -0
  494. data/lib/studium/gui/java/exam_question/ExamQuestion.class +0 -0
  495. data/lib/studium/gui/java/exam_question/ExamQuestion.java +215 -0
  496. data/lib/studium/gui/javafx/exam_question_widget/exam_question_widget.rb +58 -0
  497. data/lib/studium/gui/jruby/exam_trainer/exam_trainer.rb +637 -0
  498. data/lib/studium/gui/jruby/show_upcoming_exams/show_upcoming_exams.rb +85 -0
  499. data/lib/studium/gui/libui/ask_exam_question/ask_exam_question.rb +347 -0
  500. data/lib/studium/gui/shared_code/control_panel/control_panel_module.rb +305 -0
  501. data/lib/studium/gui/shared_code/exam_trainer/exam_trainer_widget_module.rb +0 -0
  502. data/lib/studium/gui/shared_code/information_about_a_lecture/information_about_a_lecture_module.rb +0 -0
  503. data/lib/studium/gui/shared_code/show_upcoming_exams/show_upcoming_exams_module.rb +129 -0
  504. data/lib/studium/gui/universal_widgets/curriculum_viewer/curriculum_viewer.rb +549 -0
  505. data/lib/studium/gui/universal_widgets/ects_per_university/ects_per_university.rb +302 -0
  506. data/lib/studium/gui/universal_widgets/exam_trainer/exam_trainer.config +6 -0
  507. data/lib/studium/gui/universal_widgets/exam_trainer/exam_trainer.rb +3266 -0
  508. data/lib/studium/gui/universal_widgets/exam_trainer/manifest.yml +12 -0
  509. data/lib/studium/gui/universal_widgets/expand_time_range/expand_time_range.rb +309 -0
  510. data/lib/studium/gui/universal_widgets/information_about_a_lecture/information_about_a_lecture.rb +242 -0
  511. data/lib/studium/gui/universal_widgets/show_upcoming_exams/show_upcoming_exams.rb +252 -0
  512. data/lib/studium/images/libui_ask_exam_question.png +0 -0
  513. data/lib/studium/images/outdated.png +0 -0
  514. data/lib/studium/images/small_logos/DNA.png +0 -0
  515. data/lib/studium/images/small_logos/README.md +2 -0
  516. data/lib/studium/images/small_logos/solved.png +0 -0
  517. data/lib/studium/images/studies_favicon.png +0 -0
  518. data/lib/studium/java/README.md +5 -0
  519. data/lib/studium/java/studium/AskExamQuestion.java +461 -0
  520. data/lib/studium/java/studium/Base.java +123 -0
  521. data/lib/studium/java/studium/Constants.java +122 -0
  522. data/lib/studium/java/studium/EnsureThatTheLogDirectoryExists.java +57 -0
  523. data/lib/studium/java/studium/Mkdir.java +13 -0
  524. data/lib/studium/java/studium/OpenLastExamQuestionurlLinkViaTheBrowser.java +90 -0
  525. data/lib/studium/java/studium/ReturnNQuestionsSolvedInTotal.java +69 -0
  526. data/lib/studium/java/studium/Solved.java +112 -0
  527. data/lib/studium/java/studium/Test.java +60 -0
  528. data/lib/studium/java/studium/studium/AskExamQuestion.class +0 -0
  529. data/lib/studium/java/studium/studium/Base.class +0 -0
  530. data/lib/studium/java/studium/studium/Constants.class +0 -0
  531. data/lib/studium/java/studium/studium/EnsureThatTheLogDirectoryExists.class +0 -0
  532. data/lib/studium/java/studium/studium/Mkdir.class +0 -0
  533. data/lib/studium/java/studium/studium/OpenLastExamQuestionurlLinkViaTheBrowser.class +0 -0
  534. data/lib/studium/java/studium/studium/ReturnNQuestionsSolvedInTotal.class +0 -0
  535. data/lib/studium/java/studium/studium/Solved.class +0 -0
  536. data/lib/studium/java/studium/studium/Test.class +0 -0
  537. data/lib/studium/jobs/jobs.rb +80 -0
  538. data/lib/studium/logging/README.md +2 -0
  539. data/lib/studium/logging/ensure_that_the_log_directory_exists.rb +58 -0
  540. data/lib/studium/logging/html_log_directory.rb +42 -0
  541. data/lib/studium/logging/log_directory.rb +112 -0
  542. data/lib/studium/logging/store_last_question_asked_into_file.rb +138 -0
  543. data/lib/studium/parsers/README.md +2 -0
  544. data/lib/studium/parsers/custom_exam_results_parser.rb +209 -0
  545. data/lib/studium/parsers/parse_remote_lecture.rb +331 -0
  546. data/lib/studium/project/project.rb +88 -0
  547. data/lib/studium/requires/common_popular_requires.rb +37 -0
  548. data/lib/studium/requires/commonly_used_requires.rb +14 -0
  549. data/lib/studium/requires/require_class_exams_solved.rb +7 -0
  550. data/lib/studium/requires/require_ects_scripts.rb +27 -0
  551. data/lib/studium/requires/require_encoding.rb +7 -0
  552. data/lib/studium/requires/require_the_check_and_sanitize_files.rb +31 -0
  553. data/lib/studium/requires/require_the_curricula_files.rb +28 -0
  554. data/lib/studium/requires/require_the_exam_question_class.rb +7 -0
  555. data/lib/studium/requires/require_the_exams_files.rb +46 -0
  556. data/lib/studium/requires/require_the_logging_files.rb +23 -0
  557. data/lib/studium/requires/require_the_parsers.rb +28 -0
  558. data/lib/studium/requires/require_the_studium_constants.rb +7 -0
  559. data/lib/studium/requires/require_the_studium_project.rb +72 -0
  560. data/lib/studium/requires/require_the_toplevel_methods.rb +27 -0
  561. data/lib/studium/requires/require_the_utility_scripts.rb +34 -0
  562. data/lib/studium/requires/require_upcoming_exams.rb +7 -0
  563. data/lib/studium/requires/require_yaml.rb +7 -0
  564. data/lib/studium/requires/return_remote_homepage_of_this_lecture.rb +7 -0
  565. data/lib/studium/requires/with_GUI.rb +13 -0
  566. data/lib/studium/requires/www_mode.rb +17 -0
  567. data/lib/studium/statistics/README.md +4 -0
  568. data/lib/studium/statistics/best_exam_months.rb +92 -0
  569. data/lib/studium/statistics/curriculum_comparer/curriculum_comparer.rb +423 -0
  570. data/lib/studium/statistics/determine_exam_statistics_from_this_file.rb +142 -0
  571. data/lib/studium/statistics/exam_topics_that_are_about_to_be_completed.rb +117 -0
  572. data/lib/studium/statistics/max_stats.rb +169 -0
  573. data/lib/studium/statistics/new_questions_per_year.rb +147 -0
  574. data/lib/studium/statistics/report_how_many_ects_points_per_curriculum_were_completed.rb +167 -0
  575. data/lib/studium/statistics/report_how_many_exam_questions_were_answered.rb +473 -0
  576. data/lib/studium/statistics/show_exam_statistics.rb +75 -0
  577. data/lib/studium/statistics/show_which_courses_are_in_a_bachelor_or_master_curriculum_respectively.rb +104 -0
  578. data/lib/studium/statistics/top_stats.rb +126 -0
  579. data/lib/studium/toplevel_methods/e_and_esystem.rb +34 -0
  580. data/lib/studium/toplevel_methods/find_exam_topic_and_exam_title.rb +3986 -0
  581. data/lib/studium/toplevel_methods/install_the_project_on_the_given_hostsystem.rb +31 -0
  582. data/lib/studium/toplevel_methods/return_remote_homepage_of_this_lecture.rb +11611 -0
  583. data/lib/studium/toplevel_methods/return_remote_moodle_link_of_this_lecture.rb +2405 -0
  584. data/lib/studium/toplevel_methods/roebe.rb +16 -0
  585. data/lib/studium/toplevel_methods/runmode.rb +45 -0
  586. data/lib/studium/toplevel_methods/toplevel_methods.rb +7295 -0
  587. data/lib/studium/universities_in_austria/README.md +2 -0
  588. data/lib/studium/universities_in_austria/boku/README.md +4 -0
  589. data/lib/studium/universities_in_austria/boku/boku_/303/266ffnungszeiten.rb +28 -0
  590. data/lib/studium/universities_in_austria/boku/show_three_pillars_of_these_lectures.rb +110 -0
  591. data/lib/studium/universities_in_austria/boku/three_pillars.rb +237 -0
  592. data/lib/studium/universities_in_austria/tu_vienna/README.md +6 -0
  593. data/lib/studium/universities_in_austria/tu_vienna/tu_ferien.rb +42 -0
  594. data/lib/studium/universities_in_austria/tu_vienna/tu_/303/266ffnungszeiten.rb +34 -0
  595. data/lib/studium/university_course/university_course.rb +409 -0
  596. data/lib/studium/utility_scripts/attribute_lectures_to_university/attribute_lectures_to_university.rb +375 -0
  597. data/lib/studium/utility_scripts/audio_stats.rb +171 -0
  598. data/lib/studium/utility_scripts/auto_stud/auto_stud.rb +252 -0
  599. data/lib/studium/utility_scripts/auto_stud/constants.rb +18 -0
  600. data/lib/studium/utility_scripts/auto_stud/initialize.rb +23 -0
  601. data/lib/studium/utility_scripts/auto_stud/misc.rb +18 -0
  602. data/lib/studium/utility_scripts/autogeneration/autogeneration.rb +158 -0
  603. data/lib/studium/utility_scripts/autopurge_this_lecture_date.rb +100 -0
  604. data/lib/studium/utility_scripts/average_grade_of_this_curriculum.rb +153 -0
  605. data/lib/studium/utility_scripts/blocked_courses.rb +146 -0
  606. data/lib/studium/utility_scripts/calendar/README.md +2 -0
  607. data/lib/studium/utility_scripts/calendar/calendar.rb +251 -0
  608. data/lib/studium/utility_scripts/calendar/misc.rb +35 -0
  609. data/lib/studium/utility_scripts/check_description_of_these_lectures.rb +221 -0
  610. data/lib/studium/utility_scripts/course_registrations/course_registrations.rb +98 -0
  611. data/lib/studium/utility_scripts/courses/courses.rb +177 -0
  612. data/lib/studium/utility_scripts/create/README.md +2 -0
  613. data/lib/studium/utility_scripts/create/webpage_of_university.rb +129 -0
  614. data/lib/studium/utility_scripts/create/webpage_of_university_BOKU.rb +61 -0
  615. data/lib/studium/utility_scripts/create/webpage_of_university_TU.rb +60 -0
  616. data/lib/studium/utility_scripts/create/webpage_of_university_UniWien.rb +60 -0
  617. data/lib/studium/utility_scripts/create_database/create_database.rb +126 -0
  618. data/lib/studium/utility_scripts/current_lectures_belonging_to_both_bachelor_and_master_curriculum.rb +113 -0
  619. data/lib/studium/utility_scripts/currently_participating_in_these_lectures/currently_participating_in_these_lectures.rb +104 -0
  620. data/lib/studium/utility_scripts/display_lecture_url/display_lecture_url.rb +176 -0
  621. data/lib/studium/utility_scripts/expand_time_range/expand_time_range.rb +521 -0
  622. data/lib/studium/utility_scripts/finished_exams_at_this_university/finished_exams_at_this_university.rb +171 -0
  623. data/lib/studium/utility_scripts/foreign_language_percentage/constants.rb +23 -0
  624. data/lib/studium/utility_scripts/foreign_language_percentage/foreign_language_percentage.rb +149 -0
  625. data/lib/studium/utility_scripts/foreign_language_percentage/help.rb +31 -0
  626. data/lib/studium/utility_scripts/foreign_language_percentage/initialize.rb +25 -0
  627. data/lib/studium/utility_scripts/foreign_language_percentage/menu.rb +158 -0
  628. data/lib/studium/utility_scripts/foreign_language_percentage/report.rb +62 -0
  629. data/lib/studium/utility_scripts/foreign_language_percentage/reset.rb +50 -0
  630. data/lib/studium/utility_scripts/foreign_language_percentage/run.rb +19 -0
  631. data/lib/studium/utility_scripts/generate_spreadsheet/generate_spreadsheet.rb +353 -0
  632. data/lib/studium/utility_scripts/generate_spreadsheet/misc.rb +144 -0
  633. data/lib/studium/utility_scripts/holidays/holidays.rb +154 -0
  634. data/lib/studium/utility_scripts/homepage_of_these_courses/homepage_of_these_courses.rb +125 -0
  635. data/lib/studium/utility_scripts/lectures_attributed_to_universities/lectures_attributed_to_universities.rb +336 -0
  636. data/lib/studium/utility_scripts/lva_dates_of_the_important_courses.rb +111 -0
  637. data/lib/studium/utility_scripts/lva_nummer/lva_nummer.rb +427 -0
  638. data/lib/studium/utility_scripts/mandatory_lectures_in_this_month/mandatory_lectures_in_this_month.rb +316 -0
  639. data/lib/studium/utility_scripts/moodle/moodle.rb +214 -0
  640. data/lib/studium/utility_scripts/name_of_this_lva_id/name_of_this_lva_id.rb +110 -0
  641. data/lib/studium/utility_scripts/new_stud.rb +324 -0
  642. data/lib/studium/utility_scripts/next_week/next_week.rb +103 -0
  643. data/lib/studium/utility_scripts/not_yet_registered/not_yet_registered.rb +120 -0
  644. data/lib/studium/utility_scripts/open_last_exam_question_url_link_via_the_browser.rb +76 -0
  645. data/lib/studium/utility_scripts/passed_ects_per_year/passed_ects_per_year.rb +313 -0
  646. data/lib/studium/utility_scripts/passed_pr/303/274fungsimmanente_courses/passed_pr/303/274fungsimmanente_courses.rb +181 -0
  647. data/lib/studium/utility_scripts/pdf/README.md +2 -0
  648. data/lib/studium/utility_scripts/pdf/create_pdf_file_for_this_exam_topic.rb +352 -0
  649. data/lib/studium/utility_scripts/pdf/hexapdf_support.rb +50 -0
  650. data/lib/studium/utility_scripts/preparatory_meetings/preparatory_meetings.rb +317 -0
  651. data/lib/studium/utility_scripts/priority/priority.rb +164 -0
  652. data/lib/studium/utility_scripts/priority_points/priority_points.rb +261 -0
  653. data/lib/studium/utility_scripts/publish_my_exams/publish_my_exams.rb +174 -0
  654. data/lib/studium/utility_scripts/regexes/README.md +1 -0
  655. data/lib/studium/utility_scripts/regexes/generate_regex.rb +314 -0
  656. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_available_moodle_links.rb +55 -0
  657. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_registered_lectures.rb +48 -0
  658. data/lib/studium/utility_scripts/report_outdated_timetable_entries/report_outdated_timetable_entries.rb +142 -0
  659. data/lib/studium/utility_scripts/report_whether_this_lecture_is_registered_in_the_file_lecture_information/report_whether_this_lecture_is_registered_in_the_file_lecture_information.rb +129 -0
  660. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/individual_resolve_practical_courses_date_conflicts.rb +254 -0
  661. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/resolve_practical_courses_date_conflicts.rb +265 -0
  662. data/lib/studium/utility_scripts/scrape_remote_university_url.rb +138 -0
  663. data/lib/studium/utility_scripts/semester_schedule_creator/semester_container.rb +144 -0
  664. data/lib/studium/utility_scripts/semester_schedule_creator/semester_schedule_creator.rb +373 -0
  665. data/lib/studium/utility_scripts/semesterplaner/semesterplaner.rb +311 -0
  666. data/lib/studium/utility_scripts/set_aliases_based_on_this_file.rb +96 -0
  667. data/lib/studium/utility_scripts/show_all_passed_master_lectures/show_all_passed_master_lectures.rb +126 -0
  668. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/show_conflicting_lva_lectures.rb +1385 -0
  669. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/constants.rb +23 -0
  670. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/menu.rb +63 -0
  671. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/reset.rb +33 -0
  672. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/run.rb +50 -0
  673. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/show_descriptions_of_lectures_belonging_to_this_module.rb +145 -0
  674. data/lib/studium/utility_scripts/show_lecturers/show_lecturers.rb +147 -0
  675. data/lib/studium/utility_scripts/show_lectures/show_lectures.rb +906 -0
  676. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_language/show_lectures_fitting_to_this_language.rb +121 -0
  677. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_theme/show_lectures_fitting_to_this_theme.rb +105 -0
  678. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/show_lectures_on_the_commandline.rb +3160 -0
  679. data/lib/studium/utility_scripts/show_lectures_on_this_day/show_lectures_on_this_day.rb +150 -0
  680. data/lib/studium/utility_scripts/show_lva_dates_of_this_lecture/show_lva_dates_of_this_lecture.rb +182 -0
  681. data/lib/studium/utility_scripts/show_mixed_bachelor_master_courses/show_mixed_bachelor_master_courses.rb +92 -0
  682. data/lib/studium/utility_scripts/show_outdated_lva_dates/show_outdated_lva_dates.rb +214 -0
  683. data/lib/studium/utility_scripts/show_passed_exams_having_this_grade/show_passed_exams_having_this_grade.rb +91 -0
  684. data/lib/studium/utility_scripts/show_solved_english_lectures/show_solved_english_lectures.rb +139 -0
  685. data/lib/studium/utility_scripts/steop/README.md +4 -0
  686. data/lib/studium/utility_scripts/steop/show_all_steop_lectures.rb +93 -0
  687. data/lib/studium/utility_scripts/steop/steop_lectures_in_this_curriculum.rb +284 -0
  688. data/lib/studium/utility_scripts/steop/steop_lva_dates.rb +119 -0
  689. data/lib/studium/utility_scripts/studienkennzahl/studienkennzahl.rb +116 -0
  690. data/lib/studium/utility_scripts/studium_skeleton/studium_skeleton.rb +241 -0
  691. data/lib/studium/utility_scripts/stundenplan.rb +600 -0
  692. data/lib/studium/utility_scripts/sync_studium_relevant_entries_one_level_downwards.rb +217 -0
  693. data/lib/studium/utility_scripts/ufind/ufind.rb +106 -0
  694. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/constants.rb +26 -0
  695. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/run.rb +20 -0
  696. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/upcoming_mandatory_presence_courses.rb +187 -0
  697. data/lib/studium/utility_scripts/video_lecture_downloader/video_lecture_downloader.rb +107 -0
  698. data/lib/studium/utility_scripts/week_parser/constants.rb +23 -0
  699. data/lib/studium/utility_scripts/week_parser/help.rb +32 -0
  700. data/lib/studium/utility_scripts/week_parser/menu.rb +59 -0
  701. data/lib/studium/utility_scripts/week_parser/misc.rb +373 -0
  702. data/lib/studium/utility_scripts/week_parser/reset.rb +65 -0
  703. data/lib/studium/utility_scripts/week_parser/run.rb +18 -0
  704. data/lib/studium/utility_scripts/week_parser/show.rb +236 -0
  705. data/lib/studium/utility_scripts/week_parser/week_parser.rb +49 -0
  706. data/lib/studium/utility_scripts/weekday_parser.rb +155 -0
  707. data/lib/studium/utility_scripts/weekly_schedule.rb +198 -0
  708. data/lib/studium/utility_scripts/wochenplanung/wochenplanung.rb +267 -0
  709. data/lib/studium/version/version.rb +46 -0
  710. data/lib/studium/www/exams/exams.cgi +54 -0
  711. data/lib/studium/www/fast_ask_exam_question/fast_ask_exam_question.cgi +156 -0
  712. data/lib/studium/www/handle_curricula/handle_curricula.cgi +154 -0
  713. data/lib/studium/www/next_generation_exam_question_trainer/next_generation_exam_question_trainer.cgi +112 -0
  714. data/lib/studium/www/next_generation_exam_question_trainer/solved.cgi +26 -0
  715. data/lib/studium/www/sinatra/app.rb +231 -0
  716. data/lib/studium/www/sinatra/curriculum_displayer/curriculum_displayer.rb +162 -0
  717. data/lib/studium/www/sinatra/misc.rb +115 -0
  718. data/lib/studium/www/statistics/statistics.cgi +82 -0
  719. data/lib/studium/www/upcoming_exams/upcoming_exams.cgi +36 -0
  720. data/lib/studium/yaml/ad_hoc_trainer/README.md +2 -0
  721. data/lib/studium/yaml/ad_hoc_trainer/exam_topics.md +22 -0
  722. data/lib/studium/yaml/allowed_themes_for_courses/allowed_themes_for_courses.yml +348 -0
  723. data/lib/studium/yaml/array_allowed_entries_for_the_file_lecture_information/array_allowed_entries_for_the_file_lecture_information.yml +71 -0
  724. data/lib/studium/yaml/available_exam_topics/available_exam_topics.yml +234 -0
  725. data/lib/studium/yaml/backlog_of_exams.yml +37 -0
  726. data/lib/studium/yaml/colours/custom_colours.yml +50 -0
  727. data/lib/studium/yaml/colours/use_colours.yml +1 -0
  728. data/lib/studium/yaml/current_exams.yml +30 -0
  729. data/lib/studium/yaml/curricula/README.md +39 -0
  730. data/lib/studium/yaml/curricula/bachelor/bachelor_agrarwissenschaften_033255.yml +147 -0
  731. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_basisblock_033630.yml +71 -0
  732. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_botanik_033630.yml +100 -0
  733. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_ecology_033630.yml +74 -0
  734. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_mikrobiologie_und_genetik_033630.yml +122 -0
  735. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_molekulare_biologie_033630.yml +106 -0
  736. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_zoologie_033630.yml +87 -0
  737. data/lib/studium/yaml/curricula/bachelor/bachelor_chemie_033662.yml +165 -0
  738. data/lib/studium/yaml/curricula/bachelor/bachelor_dummy_curriculum.yml +182 -0
  739. data/lib/studium/yaml/curricula/bachelor/bachelor_elektrotechnik_und_informationstechnik_033235.yml +13 -0
  740. data/lib/studium/yaml/curricula/bachelor/bachelor_forstwirtschaft_033225.yml +115 -0
  741. data/lib/studium/yaml/curricula/bachelor/bachelor_informatik_033521.yml +134 -0
  742. data/lib/studium/yaml/curricula/bachelor/bachelor_ktww_033231.yml +84 -0
  743. data/lib/studium/yaml/curricula/bachelor/bachelor_lmbt_033217.yml +121 -0
  744. data/lib/studium/yaml/curricula/bachelor/bachelor_medizinische_informatik_033533.yml +283 -0
  745. data/lib/studium/yaml/curricula/bachelor/bachelor_molekularbiologie_033665.yml +95 -0
  746. data/lib/studium/yaml/curricula/bachelor/bachelor_nutrition_science_033638.yml +119 -0
  747. data/lib/studium/yaml/curricula/bachelor/bachelor_pharmazie_033305.yml +170 -0
  748. data/lib/studium/yaml/curricula/bachelor/bachelor_technische_chemie_033290.yml +131 -0
  749. data/lib/studium/yaml/curricula/bachelor/bachelor_technische_informatik_033535.yml +23 -0
  750. data/lib/studium/yaml/curricula/bachelor/bachelor_ubrm_033227.yml +142 -0
  751. data/lib/studium/yaml/curricula/bachelor/bachelor_verfahrenstechnik_033273.yml +167 -0
  752. data/lib/studium/yaml/curricula/bachelor/bachelor_wirtschaftsinformatik_033526.yml +29 -0
  753. data/lib/studium/yaml/curricula/experimental/bachelor_informatik_in_den_lebenswissenschaften.yml +137 -0
  754. data/lib/studium/yaml/curricula/individual/bachelor_formale_logik.yml +88 -0
  755. data/lib/studium/yaml/curricula/individual/bachelor_informatik_und_molekulare_biologie.yml +1161 -0
  756. data/lib/studium/yaml/curricula/individual/bachelor_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +1157 -0
  757. data/lib/studium/yaml/curricula/individual/master_bioinformatics_and_nanobiotechnology_in_molecular_medicine.yml +306 -0
  758. data/lib/studium/yaml/curricula/individual/master_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +741 -0
  759. data/lib/studium/yaml/curricula/master/master_bioinformatik_066875.yml +75 -0
  760. data/lib/studium/yaml/curricula/master/master_biologie_molekulare_mikrobiologie_mikrobielle_oekologie_und_immunbiologie_066830.yml +78 -0
  761. data/lib/studium/yaml/curricula/master/master_biologische_chemie_066863.yml +66 -0
  762. data/lib/studium/yaml/curricula/master/master_dummy_curriculum.yml +197 -0
  763. data/lib/studium/yaml/curricula/master/master_genetik_und_entwicklungsbiologie_066877.yml +89 -0
  764. data/lib/studium/yaml/curricula/master/master_lmbt_066418.yml +112 -0
  765. data/lib/studium/yaml/curricula/master/master_molecular_biology_066865.yml +72 -0
  766. data/lib/studium/yaml/curricula/master/master_molekulare_biologie_066834.yml +151 -0
  767. data/lib/studium/yaml/curricula/master/master_pharmazie_066605.yml +176 -0
  768. data/lib/studium/yaml/curricula/master/master_technische_chemie_066490.yml +123 -0
  769. data/lib/studium/yaml/curricula/outdated/master_bioinformatics_and_molecular_biotechnology_including_aspects_from_molecular_medicine.yml +438 -0
  770. data/lib/studium/yaml/curricula/outdated/master_food_science_and_plant_biotechnology.yml +31 -0
  771. data/lib/studium/yaml/curricula.yml +562 -0
  772. data/lib/studium/yaml/daily_questions_solved/daily_questions_solved.yml +2019 -0
  773. data/lib/studium/yaml/daily_questions_solved/daily_questions_solved.yml~ +1983 -0
  774. data/lib/studium/yaml/default_delay.yml +4 -0
  775. data/lib/studium/yaml/default_encoding.yml +1 -0
  776. data/lib/studium/yaml/directory_to_the_exam_topics.yml +0 -0
  777. data/lib/studium/yaml/editor.yml +1 -0
  778. data/lib/studium/yaml/exams/next_exams_to_do.md +9 -0
  779. data/lib/studium/yaml/file_for_exam_questions.yml +1 -0
  780. data/lib/studium/yaml/german/README.md +2 -0
  781. data/lib/studium/yaml/german/german_to_english_month_names.yml +16 -0
  782. data/lib/studium/yaml/grouped_themes/grouped_themes.yml +264 -0
  783. data/lib/studium/yaml/holidays/holidays.yml +201 -0
  784. data/lib/studium/yaml/important_exams.yml +286 -0
  785. data/lib/studium/yaml/inscription_dates_of_universities.yml +60 -0
  786. data/lib/studium/yaml/lecture_aliases.yml +138 -0
  787. data/lib/studium/yaml/lecture_information/lecture_information.yml +66145 -0
  788. data/lib/studium/yaml/log_dir.yml +1 -0
  789. data/lib/studium/yaml/main_topic/main_topic.yml +11 -0
  790. data/lib/studium/yaml/max_stats/max_stats.yml +262 -0
  791. data/lib/studium/yaml/max_stats.yml +263 -0
  792. data/lib/studium/yaml/meta_themes +1 -0
  793. data/lib/studium/yaml/mitbelegung/README.md +4 -0
  794. data/lib/studium/yaml/mitbelegung/mitbelegung.yml +21 -0
  795. data/lib/studium/yaml/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.yml +363 -0
  796. data/lib/studium/yaml/n_total_questions.yml +1 -0
  797. data/lib/studium/yaml/rename_konsole_tab.yml +1 -0
  798. data/lib/studium/yaml/roebe/ad_hoc_exam_topics.md +19 -0
  799. data/lib/studium/yaml/roebe/sommersemester_2024_opportunities.md +441 -0
  800. data/lib/studium/yaml/semester_planner/README.md +4 -0
  801. data/lib/studium/yaml/semester_planner/semester_planner.yml +189 -0
  802. data/lib/studium/yaml/show_topic.yml +1 -0
  803. data/lib/studium/yaml/statistics/lecture_information.yml +1 -0
  804. data/lib/studium/yaml/statistics/max_stats.yml +239 -0
  805. data/lib/studium/yaml/statistics/statistics.yml +77 -0
  806. data/lib/studium/yaml/week/01_monday.yml +25 -0
  807. data/lib/studium/yaml/week/02_tuesday.yml +68 -0
  808. data/lib/studium/yaml/week/03_wednesday.yml +63 -0
  809. data/lib/studium/yaml/week/04_thursday.yml +20 -0
  810. data/lib/studium/yaml/week/05_friday.yml +31 -0
  811. data/lib/studium/yaml/week/06_saturday.yml +16 -0
  812. data/lib/studium/yaml/week/07_sunday.yml +0 -0
  813. data/lib/studium/yaml/week/README.md +10 -0
  814. data/lib/studium.rb +5 -0
  815. data/studium.gemspec +82 -0
  816. data/test/testing_colourized_question_and_answer.rb +18 -0
  817. data/test/testing_studium.rb +244 -0
  818. data/test/testing_studium_base_class.rb +31 -0
  819. data/test/testing_the_file_lecture_information.rb +18 -0
  820. data/test/testing_time_component.rb +29 -0
  821. metadata +1042 -0
@@ -0,0 +1,1011 @@
1
+ # =========================================================================== #
2
+ # === Immunologie tag
3
+ #
4
+ # Bacca tag. Immuno tag. Imm tag. Immtag. Immun tag. Krankheiten tag.
5
+ # Krankheit tag. Disease tag.
6
+ #
7
+ # Antibodies werden seit Mai 2016 NICHT mehr hier gesammelt.
8
+ #
9
+ # Allergene kommen in die Datei "allergie".
10
+ # =========================================================================== #
11
+
12
+ - In immunology: what is meant with the abbreviation <one>LFA-1</one>? <one>Low-affinity integrin</one>.
13
+ - In Immunology the adhesion molecule <one>CD44</one> <two>is a receptor for what exactly</two>? For the glycosaminoglycan <one>hyaluronan</one>.
14
+ - In the <one>human blood</one>: may we find <two>more B cells</two> or <two>more T cells</two>? <one>More B cells</one>; <two>twice the amount than T cells</two>. []
15
+ - In Immunology: the <one>plasma cells</one> <two>derive from ... </two>? <one>B-cells</one>.
16
+ - <one>Which person</one> integrated the <two>variolation procedure</two>, at around the year 1720, from Turkey to England? <one>Mary Montague</one>.
17
+ - Der <one>prozentuale Anteil von Langerhans-Zellen an allen epidermalen Zellen</one> <two>beträgt etwa n%</two>? Etwa <one>3%</one>.
18
+ - Werden <one>TLRs</one> <two>intrazellulär exprimiert</two>? <one>Manche ja</one>; <two>in endosomalen Kompartimenten</two>. Beispiele hierfür: <three>TLR 3, 7, 8 und 9</three>.
19
+ - Vor allem welche Zellen exprimieren <one>TLR9</one>? Die <one>pDCs</one> (<two>plasmacytoid dendritic cells</two>).
20
+ - Wie wird <one>klonale Kontraktion</one> auf englisch genannt? <one>Clonal downsizing</one>.
21
+ - Name <one>four specific examples</one> for <two>phagocytes</two>. A: (1) <one>Macrophages</one> (2) Monocytes (3) <one>Neutrophils</one> (4) <one>Dendritic cells</one>
22
+ - Was bedeutet <one>IgY</one> in der Immunologie, das <two>Y</two>? <one>Y</one> ... <one>yolk</one> (<two>Eidotter</two>) []
23
+ - <one>Which cells</one> actively suppress responses against self-antigens? The <one>regulatory T cells</one>.
24
+ - What happens if we knock out the gene for the <one>Fas-death receptor</one> <two>in mice</two>? This prevents the normal death of some lymphocytes - they will thus accumulate, which may lead to an autoimmune disease.
25
+ - Nenne einen <one>Proteinkomplex</one>, der mit dem Steroidrezeptor im Kern interagieren kann. A: <one>NF Kappa Beta</one>.
26
+ - <one>Gewicht der Milz</one> <two>beim Menschen</two>? <one>200 Gramm</one> (also <two>0.2 kg</two>).
27
+ - Wenn wir in der <one>Fluoreszenzmikroskopie</one> <two>alle Leukocyten markieren wollen</two>, könnten wir einen Antikörper gegen welches CD-Molekül verwenden? <one>Anti-CD45</one>.
28
+ - What is the <one>dual function</one> of dendritic cells? (1) "antigen presentation" (2) <one>phagocytosis</one>
29
+ - Well <one>over 50% of leukocytes circulating in the bloodstream</one> is made up of ... ? <one>Neutrophils</one>. URL: https://en.wikipedia.org/wiki/Neutrophil []
30
+ - <one>1885</one> entwickelte <two>Pasteur</two> was? Einen <one>Impfstoff</one> <two>gegen die Tollwut</two>. URL: https://de.wikipedia.org/wiki/Louis_Pasteur#Pasteurs_erster_humanmedizinischer_Impfstoff:_eine_Therapie_f%C3%BCr_Tollwut []
31
+ - Define <one>fomites</one>. A: These are <one>inanimate objects</one> such as toys or surgical instruments that can also <two>transmit disease</two>.
32
+ - <one>CD8</one> <two>interagiert mit MHC ... </two>? <one>MHC I</one>. []
33
+ - To make an <one>immunotoxin</one>, <two>the binding component of the toxin is replaced with ... </two>? A <one>monoclonal antibody</one>. []
34
+ - <one>MHC I</one> and <one>MHC II</one> <two>are members of which family</two>? They belong to the <one>immunoglobulin superfamily of cell surface proteins</one>.
35
+ - We can find at the least <one>three different domains</one> in the <two>IL-17R family</two> (<three>Interleukin-17 receptor family</three>), namely a "transmembrane domain", a cytoplasmic "SERIF domain" and an extracellular ... domain? An <one>extracellular fibronectin III-like domain</one>.
36
+ - <one>In which year</one> was the term <two>cytokine</two> proposed? In the year <one>1974</one>, when Stanley Cohen published an article describing the production of <two>MIF</two> in virus-infected allantoic membrane and kidney cells. This thus showed that the production of these compounds was not limited to immune cells.
37
+ - <one>Cell-associated PRRs</one> are typically also ... associated. A: <one>Plasma membrane-associated</one>.
38
+ - Was heißt <one>Peripoloese</one>, Wort für Wort? (1) <one>peri</one>: <two>herum</two> (2) <one>polemai</one>: <two>wandern</two>
39
+ - Das <one>Komplementsystem</one> <two>kennt wieviele Lektinwege</two>? <one>2</one>. []
40
+ - How does the human body usually <one>combat toxins</one>, such as the diphtheria toxin? Via <one>antibodies</one> <two>that are selective against these toxins</two>.
41
+ - <one>PAMPs</one> <two>activate which immune response</two>? <one>PAMPs</one> activate the <two>innate immune response</two>. []
42
+ - <one>Welche zwei Wege</one> sind möglich, ausgehend von einer <two>bone marrow stem cell</two>? (1) <one>myeloid precursor</one> (2) <one>lymphoid precursor</one>
43
+ - Warum ist <one>Rauchen</one> gefährlich für <two>Hefe-Konsumenten</two>? <one>Cytochrom P450</one> wandelt Benzo-Alpha-pyren in cancerogene Epoxide um.
44
+ - <one>Welche Funktion</one> haben <two>regulatorische T-Zellen</two>? Sie <one>unterdrücken die Aktivierung des Immunsystems</one> und verhindern dadurch die Entstehung von Autoimmunkrankheiten.
45
+ - <one>Wieviele unabhängige Genfamilien</one> kodieren für ein Immunglobulinmolekül? <one>3</one>.
46
+ - A <one>naïve T cell</one> is a T cell that has not yet encountered ... ? <one>its corresponding antigen</one>.
47
+ - Man kann die <one>Mustererkennungsstrukturen</one> nach ihrer Lokalisation in <two>welche drei Gruppen</two> einteilen? (1) <one>lösliche Rezeptoren</one> (2) <one>zellmembrangebundene Rezeptoren</one> (3) <one>intrazelluläre Rezeptoren</one>
48
+ - In Immunology: what means a <one>double negative</one> cell? <one>All T cells</one> come from progenitor cells from the bone marrow. They start as CD4- CD8- TCR-cells, which is also called the DN stage. DN for <two>double-negative</two>.
49
+ - <one>Surfactant A</one> und <one>B</one> <two>wirken antimikrobiell</two>. <three>Wo vor allem, im Menschen, finden wir sie</three>? In der <one>Lunge</one>. []
50
+ - <one>Welche Zellen</one> besitzen immer den Oberflächenmarker <two>CD3</two>? <one>CD3</one> ist ein <two>Marker für T-Zellen</two>.
51
+ - <one>How can</one> <two>a cell</two> regulate immune function, that is, within its own boundaries? Via <one>ubiquitination</one>.
52
+ - The <one>immunological synapse</one> is <two>the interface between which two cells</two>? (1) An <one>antigen-presenting cell</one> (2) a <one>lymphocyte</one>, such as an effector T cell or Natural Killer cell
53
+ - <one>Alle Immunzellen entstehen</one> letzten Endes aus ... ? Der <one>pluripotenten, hämatopoetischen Stammzelle</one>.
54
+ - Was geschieht in der <one>roten Pulpa der Milz</one>? <one>Gealterte Erythrozyten</one> werden hier <two>aus dem Blut entfernt</two>.
55
+ - <one>Dendritic cells</one> <two>originate from ... </two>? <one>Myeloid</one> progenitors within the bone marrow.
56
+ - Does <one>serum</one> <two>coagulate</two>? <one>No</one>.
57
+ - <one>Which proteins</one> form the <two>active MAC</two> (<three>membrane attack complex</three>)? <one>C5b-C6-C7-C8-C9</one>.
58
+ - Eine <one>natürliche Killerzelle</one> <two>hat welche Zielstrukturen</two>? (1) <one>virusinfizierte Zellen</one> (2) <one>Krebszellen</one>
59
+ - Does the <one>lectin pathway</one> of the complement system depend on antibody for its activation? <one>No</one>. []
60
+ - The <one>B-cell receptor</one> <two>is similar to its corresponding antibody</two>, <three>except for the carboxy terminus</three>. What difference can we see here? The <one>B-cell receptor</one> has a hydrophobic sequence at its carboxy terminus, for membrane-anchoring. The antibody is more hydrophilic in this part, to allow secretion from the cell.
61
+ - Give a <one>physiological example of passive immunity</one>. A: The <one>transfer of maternal antibodies to the fetus</one>. []
62
+ - Was und warum geschieht mit der <one>Milz</one> <two>im Zuge einer Sepsis</two>? Die <one>Milz schwillt an</one> da die Lymphocyten aktiviert werden und somit in ihrer Anzahl zunehmen.
63
+ - Was ist <one>Properdin</one> und <two>wieso ist das von Relevanz für die Immunbiologie</two>? <one>Properdin</one> ist <two>ein Plasmaprotein mit Affinität für C3bBb-Konvertase auf Bakterienzellen</two>.
64
+ - The consequences of <one>IgE-mediated mast cell activation</one> depends on which two aspects? (1) the <one>dose of antigen</one> (2) the <one>route of entry</one>
65
+ - What do we mean with the term <one>opsonin</one>? This is any molecule that can <one>enhance phagocytosis</one> by <two>marking an antigen for an immune response</two>.
66
+ - <one>What happens</one> when <two>the AIRE gene</two> is defect? An <one>organ-specific autoimmune disease</one> is the result.
67
+ - T-Helferzelle und T-cytotoxische Zelle <one>erkennen</one> jeweils verschiedene MHC Moleküle. <two>How can we memorize this</two>? (1) <one>MHC I</one> <two>one helper</two> (2) <one>MHC II</one> <two>to eliminate invaders</two>
68
+ - <one>LPS</one> <two>is specifically recognised by which TLR</two>? <one>TLR4</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2994611/ []
69
+ - The <one>alternative pathway of the complement system</one> <two>involves which four serum proteins</two>? (1) C3 (2) factor B (3) factor D (4) properdin
70
+ - <one>Which immune cells</one> produce <two>Monokines</two>? Only the <one>monocytes</one>. []
71
+ - Der <one>Hauptbestandteil der Epidermis</one> sind ... ? <one>Keratinocyten</one>. URL: https://de.wikipedia.org/wiki/Keratinozyt []
72
+ - Können <one>T-Zellen</one> <two>Antikörper bilden</two>? <one>Nein</one>. []
73
+ - What is <one>the primary job of CTLs</one> (<two>cytotoxic T-lymphocytes</two>)? The primary job of CTLs is to kill cells that produce foreign antigens, such as cells infected by viruses or intracellular bacteria.
74
+ - When it comes to <one>killing ingested microorganisms</one>: <two>neutrophils</two> versus <two>macrophages</two>. <three>Which one is more effective here</three>? The <one>neutrophils</one>. []
75
+ - Can <one>steroids</one> act as <two>hapten</two>? <one>Yes</one>. []
76
+ - Are <one>B-lymphocytes</one> <two>the only cells capable of producing antibodies</two>? <one>Yes</one>. []
77
+ - Name <one>the two mature myeloid cells</one>. A: (1) <one>monocytes</one> (2) <one>granulocytes</one>
78
+ - Beim Menschen findet sich das <one>IFN-Alpha</one> (<two>Interferon Alpha</two>) <three>Gen</three> <four>auf welchem Chromosom</four>? Auf <one>Chromosom 9</one>. []
79
+ - Name the <one>three T-cell functions</one>. A: (1) <one>killing</one> (2) <one>activation</one> (3) <one>regulation</one>
80
+ - <one>Which two cells</one> can have a <two>C3b receptor</two> ("C3bR") on their surface? (1) <one>macrophages</one> (2) <one>natural killer cells</one> (NK cells)
81
+ - <one>Complement components</one> <two>constitute n%</two>, by weight, of the serum globulin fraction. A: <one>5%</one>.
82
+ - The <one>ranks of lymphocytes</one> are rapidly swollen via a process called ... ? <one>clonal expansion</one>.
83
+ - Was zeigen <one>Menschen ohne Milz</one> + Beispiel? A: Ein erhöhtes Risiko für Infektionen durch Bakterien mit Kapsel (Beispiel: <two>Pneumokokken</two>).
84
+ - In Immunology: what dual role does the complement protein <one>C3b</one> have? (1) <one>opsonization</one> (2) lysis of a cell through the membrane attack complex
85
+ - Name <one>the three general roles</one> of the <two>complement system</two>. A: (1) <one>opsonization</one> (2) <one>membrane attack complex</one> (3) <one>enhance inflammation</one>
86
+ - <one>How many Toll-like receptors</one> <two>are known in mankind</two>? <one>13</one>. URL: https://en.wikipedia.org/wiki/Toll-like_receptor#Extended_family
87
+ - Nenne eine <one>immunologische Blotting-Nachweismethode</one>. A: <one>Western Blotting</one>. []
88
+ - Die <one>Komplementkaskade</one> <two>führt letztlich zu einer ...</two>? <one>Akuten Entzündungsreaktion</one>.
89
+ - The <one>activation of natural killer cells</one> <two>by antibodies</two> initiates a <three>cytotoxic mechanism</three> known as ...? <one>ADCC</one>: <two>antibody-dependent cell-mediated cytotoxicity</two>
90
+ - <one>Surfactant protein A</one> <two>has a role in the innate immune system</two>. Which role is that? It is used to <one>opsonize bacterial cells</one> in the alveoli, thus marking them for phagocytosis by "alveolar macrophages".
91
+ - Are <one>the receptors on NK cells</one> <two>distinct from</two> <three>the receptors of T‐ and B‐cells</three>? <one>Yes</one>. []
92
+ - What do we mean with the term <one>immune tolerance</one>? <one>Immune tolerance</one> is <two>the ability of the immune system to distinguish between self and foreign</two>.
93
+ - <one>Macrophages</one> <two>can bind to microbes</two>. How is that possible? <one>Macrophages</one> contain <two>phagocytic receptors</two> that can bind these microbes.
94
+ - Name <one>a metal</one> <two>that can cause</two> a <three>type I hypersensitivity reaction</three>. A: <one>Nickel</one>. URL: https://en.wikipedia.org/wiki/Nickel []
95
+ - Welche <one>Immunantwort</one> sehen wir jeweils bei <two>B-Zellen</two> und bei "T-Zellen"? (1) <one>B-Zellen</one>: <two>Antikörper-vermittelte Immunantwort</two>. (2) T-Zellen: <one>Zell-vermittelte Immunantwort</one>.
96
+ - <one>Which immune cells</one> <two>are</two> by <two>far the strongest activators of naive T cells</two>? <one>Mature dendritic cells</one>.
97
+ - The <one>MBL pathway</one> also has <two>MASP-1</two> and <two>MASP-2</two> <three>which can bind to MBL</three>. <four>What does the abbrevation MASP stand for</four>? <one>MASP</one> stands for <two>MBL-associated serine proteases</two>.
98
+ - As part of the <one>ADCC-response</one> in a human body: <two>which effector cell</two> <three>is the most likely one to participate in this defence</three>? The <one>NK cells</one> (aka <two>natural killer cells</two>). []
99
+ - The <one>HLA-DRB1 shared epitope alleles</one> <two>are related to which antibodies</two>? To <one>autoantibodies</one>, <two>in positive rheumatoid arthritis patients</two>.
100
+ - In general: <one>when</one> does the <two>pentameric IgM antibody</two> assume its so-called staple configuration? When it is bound to antigen on a target surface.
101
+ - Ultrafiltrat des Blutplasmas. Welcher Zweck steht dahinter? Ernährung der umliegenden Gewebszellen.
102
+ - What is meant with the term <one>immunological tolerance</one>? This is <one>the failure to mount an immune response to an antigen</one>.
103
+ - Name a significant difference between the <one>lectin pathway</one> and the <two>classical complement pathway</two>. A: In the lectin pathway <one>no antibody</one> bound to any target is used.
104
+ - <one>Bacterial</one> <two>fMet-Leu-Phe peptides</two> activate ... which protein in a Neutrophil and what happens afterwards? <one>Rac2</one>. This then leads to the bacteria being taken up into a <two>phagosome</two>.
105
+ - The <one>B-cell</one> <two>displays digested antigens to</two> <three>which other cell</three>? To <one>antigen-specific TH2 cells</one>.
106
+ - The <one>first experimental demonstration of humoral immunity</one> was provided by Emil von Behring and Shibasaburo Kitasato in ... which year? <one>1890</one>.
107
+ - In immunology: what does <one>HLA</one> stand for? <one>Human leukocyte antigen</one>. URL: https://en.wikipedia.org/wiki/Human_leukocyte_antigen []
108
+ - <one>Aktiviert</one> <two>das Komplementsystem</two> T-Zellen? <one>Nein</one>.
109
+ - The <one>adaptive immune system</one> <two>is very specific and efficient</two>. Nonetheless the innate immune system is extremely important for vertebrates. <three>Name the four principal components of innate immunity</three>. A: (1) barriers (such as physical or chemical barriers) (2) phagocytic cells, dendritic cells and natural killer cells (3) blood proteins, such as the complement system or mediators of inflammation (4) <one>cytokines</one>
110
+ - Gehören die <one>Tonsillen</one> zu dem <two>MALT-Gewebe</two>? <one>Ja</one>. URL: https://de.wikipedia.org/wiki/Tonsille []
111
+ - Which two epitope-types exist? (1) <one>Conformational determinants</one> (2) <one>Linear determinants</one>
112
+ - <one>MHC class I</one> binds to ... and <one>MHC class II</one> binds to ...? (1) <two>MHC I</two> binds to <one>CD8⁺ cells</one>. (2) <two>MHC II</two> binds to <one>CD4⁺ cells</one>.
113
+ - Name a <one>cell type</one> <two>that can kill virus-infected cells</two>. A: The <one>NK cells</one> (<two>Natural kill cells</two>). []
114
+ - <one>Medizinischer Vorteil</one> von <two>Cyclosporin</two> - und wieso ist dies relevant? <one>Cyclosporin kann geschluckt werden</one> (Cyclosporin hilft bei Transplantationen).
115
+ - The <one>cytokine receptors</one> <two>can be grouped into how many major families</two>, in humans? <one>Six</one>.
116
+ - <one>Lectin</one> can, for example, <two>bind to ... </two>? To <one>mannose</one>.
117
+ - Die <one>Aflatoxine</one> <two>können welche Krankheit verursachen</two>? <one>Leberkrebs</one>. URL: https://de.wikipedia.org/wiki/Aflatoxine
118
+ - <one>IgA</one> <two>kommt in welchen Formen vor</two>? (1) monomer (2) <one>dimer</one> (3) <one>trimer</one>
119
+ - Kann <one>das menschliche Immunsystem</one> <two>Erythrozyten erkennen</two>? <one>Ja</one>, natürlich - <two>siehe das Problem der Blutgruppen und Bluttransfusionen</two>.
120
+ - <one>Cytokines</one> are <two>„... agents“</two>. A: <one>immunomodulating agents</one>.
121
+ - The typical <one>ADCC</one> <two>involves activation of NK cells by antibodies</two>. A NK cell in turn expresses Fc receptors, in particular ... which CD-variant? <one>CD16</one>.
122
+ - The <one>average human</one> requires the production of almost n leukocytes per day? About 4 × 10¹¹ leukocytes per day;this is 400 billion leukocytes per day.
123
+ - <one>Cytosolic DNA sensors</one> <two>typically sense ... </two>? <one>Intracellular bacteria and viruses</one>.
124
+ - Bei einem <one>T-cell antigen receptor</one>: <two>welches Ende</two> <three>ist mit der Membran verankert</three>? Das <one>carboxyterminale Ende</one>.
125
+ - <one>Wie</one> wurden <two>regulatorische T-Zellen</two> früher genannt? <one>Suppressor-T-Zellen</one>.
126
+ - Give an example <one>where</one> and <one>when</one> <two>passive immunity</two> is physiologically important. A: It is <one>important in the transfer of maternal antibodies to the fetus</one>.
127
+ - <one>When</one> was <two>smallpox</two> eradicated? In the year <one>1980</one>. URL: https://en.wikipedia.org/wiki/Smallpox#Eradication
128
+ - In der Immunologie: wofür steht die Abkürzung <one>NLR</one>? <one>Nod-like Rezeptor</one>. URL: https://en.wikipedia.org/wiki/NOD-like_receptor []
129
+ - <one>Why</one> may <two>activation of lymphocytes</two> trigger such a wide response, which may also damage the host? This may often be necessary in order to combat pathogens that, in turn themselves, amplify and proliferate. A small number of lymphocytes has to proliferate in order to deal with amplifying pathogens (such as against pathogenic bacteria or viruses).
130
+ - <one>What exactly</one> is a <two>sepsis</two>? This is <one>a whole-body inflammation</one> <two>caused by an infection</two>.
131
+ - In humans: the <one>confirmed HLA I alleles</one> are ... ? <one>A B C E F G</one>.
132
+ - <one>Wann</one> wurde die <two>CD Nomenklatur</two> etabliert? Im Jahre <one>1982</one>.
133
+ - Name a <one>chaperone</one> that is <two>very important in immunology</two>. A: The <one>BiP</one> (<two>binding protein</two>). URL: https://en.wikipedia.org/wiki/Binding_immunoglobulin_protein []
134
+ - <one>T-Helferzellen</one> <two>besitzen welchen CD-Marker</two>? <one>CD4-Marker</one>. []
135
+ - A few <one>Toll-like receptors</one> <two>can bind</two> <three>MyD88</three>. <four>Which domain can do so</four>? A: The <one>cytoplasmic domain</one>.
136
+ - Name <one>the two major functions of sleep</one>. A: (1) remove aging and damaged blood cells (2) initiate adaptive immune responses
137
+ - Wenn wir <one>Papain</one> einsetzen, <two>um einen Antikörper zu schneiden</two>, <three>entsteht was</three>? 2 monovalente Fab-Fragmente und 1 Fc-Fragment.
138
+ - Give a specific example for <two>parenteral transmission</two>. A: For example, a virus transmitted via the "blood system".
139
+ - <one>Hybridomzellen</one> <two>erhält man woraus</two>? Aus der Fusion von <one>B-Lymphozyten der Maus</one> mit <one>Myelomzellen</one>.
140
+ - <one>Plasmazellen</one> <two>produzieren Antikörper</two>. Etwa wie lange, im Durchschnitt? Etwa <one>2-3 Wochen</one>, danach erfolgt die Apoptose.
141
+ - Besitzen die <one>Interferon-Gene</one> <two>Introns</two>? <one>Nein</one>. []
142
+ - <one>Which cells</one> form the bridge between innate and adaptive immune response? The <one>dendritic cells</one>.
143
+ - In immunology, <one>why</one>/when may we wish to employ the <one>Jerne-Nordin plaque test</one>? So as to <one>make complement action visible</one>.
144
+ - Do <one>Th1 cells</one> and <one>Th2 cells</one> express the same cytokines? No - they <one>express different cytokines</one>.
145
+ - <one>PAMPs</one> sind hoffentlich bekannt - aber was sind <two>DAMPs</two>, als Abkürzung betrachtet? <one>Damage associated molecular patterns</one>. URL: https://pubmed.ncbi.nlm.nih.gov/25744676/ []
146
+ - Nenne <one>zwei</one> <two>invariable Cofaktorproteine des TCR</two>. A: (1) <one>CD3</one> (2) <one>Epsilon-Kette</one>
147
+ - Give an example for <one>Alarmins</one> in the human body. A: The <one>defensins</one>. URL: https://en.wikipedia.org/wiki/Defensin []
148
+ - Die <one>Mukosa</one> <two>besteht aus welchen zwei Schichten</two>? Aus der <one>oberen Epithelschicht</one> und der <one>darunter liegenden Eigenschicht</one>.
149
+ - Wieso hat man <one>Mäuse ohne Thymusdrüse</one> (thymus glands) entwickelt? Diese <one>Mäuse</one> <two>akzeptieren Organe von Menschen</two>.
150
+ - How do we call <one>the time period</one> in which expanded lymphocyte clones die? <one>Contraction phase</one>.
151
+ - Bei der immunologischen Signaltransduktion: <one>IRAK4</one>, <one>IRAK1</one>, und <one>IRAK2</one> kooperieren mit welch anderem Protein das mit dem Buchstaben <two>T</two> beginnt? <one>TRAF3</one>.
152
+ - The <one>complement protein</one> <two>C1r</two> and <two>C1s</two>, as monomers, each contain two important domains. How are these two domains called? (1) <one>catalytic domain</one> (2) <one>interaction domain</one>
153
+ - Nenne <one>eine Krankheit</one>, bei dem sich der Thymus nicht entwickeln kann. A: Das <one>DiGeorge Syndrom</one>. URL: https://en.wikipedia.org/wiki/DiGeorge_syndrome
154
+ - Genetically viewed: <one>where</one> precisely can we find the <two>Recombination Signal Sequences</two>? Next to the regional gene segments - <one>V, D and J</one>.
155
+ - Das <one>C9-Fragment</one> <two>des Komplementsystems</two> bildet einen Kanal von ... <three>n Angstrom</three> Durchmesser? Etwa <one>100 Angstrom</one>.
156
+ - <one>Innate Immunity</one> <two>is largely a function of ... </two>? <one>Phagocytes</one>.
157
+ - Welche drei Klassen von Granulozyten existieren? BEN. (1) basophil (2) eosinophil (3) <one>neutrophil</one>
158
+ - <one>Welche drei Wege</one> gibt es, <two>das Komplementsystem zu aktivieren</two>? (1) <one>klassischer Aktivierungsweg</one> (2) <one>alternativer Aktivierungsweg</one> (3) <one>Lektin Aktivierungsweg</one>
159
+ - In Immunology: there is the so-called <one>CLIP</one>. <two>What does this abbreviation stand for</two>? <one>Class II-associated invariant chain peptide</one>. It belongs to the MHC II molecule.
160
+ - <one>Wie lange</one> benötigt die <two>Herstellung eines polyklonalen Antikörpers</two>? <one>4-6 Wochen</one>.
161
+ - Where exactly can the <one>surrogate light chain</one> be found? In the <one>pre-BCR cell</one>. We can find a heterodimer composed of an immunoglobulin heavy chain molecule (IgH) covalently associated with an immunoglobulin light chain-like molecule - called the "surrogate light chain" (SL) at this point.
162
+ - Name <one>a cell group</one> <two>that can activate T lymphocytes</two>. A: <one>APCs</one>: <two>antigen-presenting cells</two>.
163
+ - Der <one>TLR5-Rezeptor</one> <two>bindet woran</two>? <one>Flagellin</one>.
164
+ - The <one>epitopes</one> <two>recognized by T-cell receptors</two> are often ... ? <one>buried</one>.
165
+ - Der Marker <one>D15S11</one> wird <two>bei der Diagnose wovon</two> verwendet? Beim <one>Prader-Willi Syndrom</one>.
166
+ - Name <one>an important structural feature</one> of "MHC class I". A: It contains a <one>peptide-binding cleft</one>.
167
+ - <one>Immune responses</one> <two>may be harmful</two>. <three>Give three general examples for this</three>. A: (1) <one>allergies</one> (2) <one>transplant rejection</one> (3) <one>autoimmunity</one>
168
+ - <one>Cell-mediated immunity</one> occurs through which cells? The <one>T-lymphocytes</one>.
169
+ - Name <one>two products</one> <two>by Tc-cells</two> that are produced after antigen presentation. A: (1) <one>granzymes</one> (2) <one>perforin</one>
170
+ - <one>IL6</one> <two>can trigger the production of ... </two>? <one>Acute phase proteins</one> <two>from the liver</two>.
171
+ - Einen <one>Follikel</one> <two>mit einem Keimzentrum</two> bezeichnet man als? <one>Sekundärfollikel</one>.
172
+ - A <one>master regulator of T cell development</one> is ... which transcription factor? <one>BCL11b</one>.
173
+ - Which <one>complement pathway</one> <two>is part of the innate immune system</two>? The <one>alternative pathway</one>, <two>as it is antibody-independent</two>.
174
+ - <one>Antigen elimination</one> <two>often requires the participation of cells that are called ... </two>? <one>Effector cells</one>.
175
+ - <one>Welche Fähigkeit</one> verlieren T-Zellen wenn sie die Rezeptoren verlieren? Die Fähigkeit über die HEV in den Lymphknoten zu gelangen.
176
+ - Der Transkriptionsfaktor "Komplex NF-Kappa B" bewirkt die Synthese von ...? <one>Interleukinen</one>.
177
+ - <one>NK cells</one> <two>have a receptor for IgG</two> and can use it for the <three>antibody‐dependent cellular cytotoxicity</three>. <four>Which CD-receptor is that</four>? This is <one>CD16</one>.
178
+ - <one>How long</one> is <two>a good epitope</two>? About <one>18 - 22 Aminoacids</one>.
179
+ - <one>Why</one> does the human body need <two>chemokines</two>? So that <one>more effector cells can be brought to the site of an infection</one>.
180
+ - <one>Modern immunology</one> <two>started with ... </two>? <one>Edward Jenner</one>'s <two>vaccination against</two> <three>smallpox</three>.
181
+ - Das <one>erste Impfgesetz in Deutschland</one> <two>wurde im welchen Jahr beschlossen</two>? <one>1874</one>; siehe auch https://de.wikisource.org/wiki/Impfgesetz
182
+ - <one>Welche Zellen</one> sind <two>extrem wichtig</two> <three>um T-Lymphocyten oder B-Lymphozyten zu entfernen</three>, die ansonsten den eigenen Körper angreifen würden? Die <one>regulatorischen T-Lymphocyten</one>.
183
+ - The <one>Mx Proteins</one> <two>are important in immunology</two>. Give another awesome name for them. A: <one>Antiviral Gatekeepers</one> - the Mx proteins <two>restrain the uninvited</two>.
184
+ - Define <one>polyvalent vaccine</one>. A: A vaccine that immunizes against at the least <one>two different diseases</one>.
185
+ - Define <one>lymphocyte repertoire</one>. A: The lymphocyte repertoire is the total number of antigenic specificities in an individual.
186
+ - What is <one>the major difference</one> between the primary and secondary response? The secondary response is <one>stronger</one> - <two>thus, there will be more antibody in the serum</two>.
187
+ - The <one>TCR</one> (<two>T-cell receptor</two>) consists of <three>n subunits</three>? <one>2</one> - it is a <two>heterodimer</two>. URL: https://en.wikipedia.org/wiki/T-cell_receptor
188
+ - Eine Zelle ist <one>CD3⁺ CD4⁺</one> ... <two>welche Zelle ist dies</two>? Dies ist eine <one>T-Helferzelle</one>.
189
+ - For <one>TLRs</one>: <two>which signal-transduction component</two> towards other elements of the cell is most important? The <one>MyD88 adaptor</one>.
190
+ - Andere Bezeichnung für <one>C5a</one>? <one>Anaphylatoxin</one>.
191
+ - Aus den <one>myeloiden Vorläuferzellen</one> <two>entstehen welche vier Zelltypen</two>? (1) <one>Bluttplättchen</one> (2) <one>Granulozyten</one> (3) <one>Makrophagen</one> (4) <one>Erythrocyten</one>
192
+ - <one>Tc cells</one> <two>release which three cytotoxins</two>? (1) <one>perforin</one> (2) <one>granzymes</one> (3) <one>granulysin</one> URL: https://en.wikipedia.org/wiki/Granulysin
193
+ - Nenne <one>zwei humorale Abwehrfaktoren des Menschen</one>, <two>ausgenommen der Antikörper</two>. A: (1) <one>Lysozym</one> (2) <one>Interferone</one>
194
+ - Do <one>neutrophils</one> <two>kill cells</two> <three>to which they bind</three>? <one>Yes</one>, <two>if it is a microbe</two>, for example.
195
+ - <one>Who or what</one> precisely encodes for the Diphtheria-Toxin? The lysogenic bacteriophage <one>Beta</one>; specifically its <two>tox-genes</two>.
196
+ - The <one>complement reaction sequence</one> <two>begins with ... </two>? An <one>enzyme cascade</one>.
197
+ - Most proteins are <one>immunogenic</one> when injected from a different species. <two>Name two exceptions</two>. A: (1) <one>collagen</one> (2) <one>cytochrome C</one>
198
+ - The <one>lymphoid lineage</one> gives rise to which three cell types? (1) <one>T cell</one> (2) <one>B cell</one> (3) <one>NK cell</one>
199
+ - Was ist ein <one>Idiotyp</one>? Ein <one>Idiotyp</one> ist <two>die Antigenbindungsstelle eines Antikörpers</two>. URL: https://de.wikipedia.org/wiki/Idiotyp_(Immunologie)
200
+ - <one>CxC chemokines</one> <two>can recruit ...</two>? (1) <one>monocytes</one> (2) <one>lymphocytes</one>
201
+ - <one>Wann</one> ist eine <two>Kreuzreaktion</two> erwünscht? Zum Beispiel bei einer Impfung mit Kuhpockenviren gegen die <one>echten Pocken</one>. (Variola)
202
+ - The <one>TLR4-MD-2 complex</one> ist formed by <two>Toll-like receptor (TLR) 4</two> and the <two>myeloid differentiation factor 2 (MD-2)</two>. It thus is a <three>heterodimer</three>. <four>What can it recognize</four>? It <two>can recognize a pattern</two> in <one>structurally diverse LPS molecules</one>.
203
+ - Do <one>natural killer cells</one> <two>kill via apoptosis</two>? <one>No</one> - <two>they kill by binding to their target cell</two> and then <three>releasing cytotoxic factors</three> that cause the death of the target cell.
204
+ - <one>Toll-like Rezeptoren</one> <two>sind bei der angeborenen Immunantwort wichtig</two>. <three>Säugetiere besitzen mindestens n verschiedene Toll-like Rezeptoren</three>? <one>Elf</one> (<one>11</one>).
205
+ - Name <one>4 categories</one> of <two>disease-causing microorganisms</two>. A: (1) <one>fungi</one> (2) <one>viruses</one> (3) <one>bacteria</one> (4) <one>parasites</one>
206
+ - Normalerweise ist <one>die Konzentration von IgE im Serum sehr gering</one>. <two>Bei welcher Personengruppe ist die Konzentration von IgE im Serum hingegen oft sehr stark erhöht</two>? Bei <one>Allergikern</one>.
207
+ - Most people are <one>heterozygous for the MHC</one>. <two>What does this mean, practically</two>? That they will <one>express both MHC variants</one> at the same time.
208
+ - <one>Which protein</one> <two>initiates the assembly of the membrane-attack complex</two>/<two>system</two>? <one>C5b</one>. URL: https://en.wikipedia.org/wiki/Complement_component_5
209
+ - <one>NK-Zellen</one> gehören zu welcher Untergruppe? NK-Zellen gehören zu den <two>Lymphozyten</two>.
210
+ - <one>DAMPs</one> (<two>Damage-associated molecular patterns</two>) <three>can initiate what</three>? They can initiate and perpetuate a <one>noninfectious inflammatory response</one>.
211
+ - Which are <one>the most abundant, circulating white blood cells</one>? The <one>neutrophils</one>.
212
+ - Which <one>immune cell</one> is particularly <one>active</one> (and important) during the <two>ADCC</two> reaction? The <one>natural killer cell</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4515552/#S3title
213
+ - In der Immunologie: was heißt <one>RANTES</one>? <one>Regulated on Activation, Normal T Cell Expressed and Secreted</one>.
214
+ - In der <one>Peripherie</one> <two>unterscheidet man zwischen welchen DCs</two>? A: <one>pre DCs</one> versus <one>conventional DCs</one>.
215
+ - Welchen <one>Verlust</one> erleiden <two>Lymphocyten</two> typischerweise? Ihren <one>Homing-Rezeptor</one>.
216
+ - What is <one>the main effector function</one> <two>of B cells</two>? The <one>secretion of antibodies</one>.
217
+ - Welche <one>Surfactant-Proteine</one> <two>wirken in der Lunge</two>? <one>A</one> + <one>D</one>. Diese Proteine <two>opsonieren Bakterien</two>.
218
+ - <one>Wie beeinflusst</one> ein <two>Vitamin-A-Mangel</two> <three>das Immunsystem</three>? Die <one>Schleimhautbarriere ist geschwächt</one>, dadurch dringen Keime einfacher in den Körper.
219
+ - Is <one>apoptosis</one> <two>important in the immune system</two>? <one>Yes</one>. Activated T-cells whose infectous agent was removed, are no longer needed -> <two>Apoptosis</two>.
220
+ - The <one>Bence Jones protein</one> <two>was first described in which year</two>? In <one>1847</one>.
221
+ - <one>Ficolins</one> <two>can bind ... </two>? <one>Carbohydrates</one>.
222
+ - <one>How many nucleotides</one> can be found in the <two>Recombination Signal Sequences</two>? <one>Seven</one> (<one>7</one>).
223
+ - The <one>danger-hypothesis</one> by Matzinger stated that which constitutes the <two>danger</two> signal? <one>Cellular stress</one> or tissue destruction causes the release of cellular contents, which in turn triggers the <two>danger</two> signal.
224
+ - We wish to <one>replace the IL-nomenclature</one>. <two>How and why</two>? The IL-nomenclature is confusing - we should <one>develop a nomenclature based on cytokine structure</one>.
225
+ - <one>RIG-like receptors</one> <two>can recognize ... </two>? <one>dsRNA</one>.
226
+ - <one>MHC restriction</one> <two>is important for which immune cells</two>? The <one>T cells</one>.
227
+ - Name a big <one>difference</one> between <two>NK cells</two> and T or B-cells. A: <one>NK cells</one> <two>lack antigen specificity</two>.
228
+ - When the <one>RANKL gene</one> is disrupted, there may be a lack of which cells? <one>Osteoclasts</one>.
229
+ - Der <one>Lektin-Weg</one>, <two>im Komplementsystem</two>, erkennt ... ? <one>Mannose-Strukturen</one>.
230
+ - <one>L-Selektin</one> <two>bindet an ...</two>? <one>Vaskuläre Adressine</one>: Mucine vom Typ Lewis.
231
+ - When a leukocyte migrates, and interacts with other cells during adhesion (during the <one>rolling adhesion step</one>), before it enters through cells during <two>diapedesis</two>, which step comes between these two steps? The <one>tight binding</one> step.
232
+ - <one>Myasthenia gravis</one> <two>is an autoimmune disease</two>. What happens there? The affected individual makes antibodies against the acetylcholine receptor on their skeletal muscle cells.
233
+ - What was the first <one>PRR</one> (<two>pattern recognition receptor</two>) that was identified? This was the <one>Toll-receptor</one> in <two>Drosophila</two>. URL: https://en.wikipedia.org/wiki/Toll-like_receptor#Superfamily
234
+ - In immunology, the normal bacterial flora of the body (aka the <one>commensal bacteria</one>) suppresses the growth of many potentially pathogenic bacteria and fungi at superficial sites, by competition for essential nutrients or by production of inhibitory substances. <two>How is this phenomenon called</two>? <one>Microbial antagonism</one>.
235
+ - The <one>neutrophil</one> <two>has what kind of nucleus</two>? A <one>multilobed</one> <two>nucleus</two>.
236
+ - Die für die genomischen Umlagerungsreaktionen notwendige <one>Rekombinasen</one> - im Zuge des adaptiven Immunystems - stammen ab von ... ? <one>Prokaryotischen Transposons</one>.
237
+ - <one>Wo</one> <two>in der PALS Region</two> findet man B-Lymphocyten? Am Rand, wo sie einen Milz-Follikel bilden.
238
+ - <one>Elie Metchnikoff</one> demonstrated that cells may respond to foreign invaders, by studying a translucent starfish larva. In which year did this occur? In <one>1883</one>.
239
+ - Was findet <one>innerhalb</one> der <two>Hassal-Körperchen</two> statt? <one>Abbau apoptotischer Zellen</one>.
240
+ - The <one>complement fragments</one> <two>interact with one another to form functional complexes</two>. These complexes may be denoted with a horizontal bar on top, e. g. for C4b2a. What does this horizontal bar indicate? That this complex has an <one>enzymatic activity</one>.
241
+ - <one>Which CD</one> can be found <two>regulatory T cells</two>? <one>CD25</one>.
242
+ - Was ist <one>Zöliakie</one> und wieso mag dies in der Immunologie von Relevanz sein? <one>Zöliakie</one> ist <two>eine chronische Erkrankung</two>, die durch den Genuss <three>glutenhältiger Speisen</three> ausgelöst wird.
243
+ - Nenne zwei <one>Integrine</one> aus der Familie der <two>Immunglobulin-Super-Genfamilie</two>. A: (1) <one>ICAM-1</one> (2) <one>VCAM-1</one>
244
+ - <one>Neutrophils</one> <two>can trap microorganisms</two>? <one>Yes</one>: <two>Neutrophils can expel their chromatin to produce</two> <three>NETs</three>. They can do so by using the enzyme PAD4, which modifies histones in a way that promotes unraveling of chromatin.
245
+ - The <one>Autoimmune regulator</one> has been <two>shown to interact with which other protein</two>? It can interact with the <one>CREB binding protein</one>.
246
+ - Name the <one>three routes</one> to complement activation. A: (1) <one>classical pathway</one> (2) <one>alternative pathway</one> (3) <one>lectin pathway</one>
247
+ - The <one>tonsils</one> and <one>adenoids</one> <two>form a ring of lymphoid tissues around the entrance of the gut and airway</two>. How is this ring also called? This is the <one>Waldeyer's ring</one>.
248
+ - Wie könnten wir <one>Liposome</one> vor dem Immunsystem schützen? Durch <one>coating mit PEG</one> (<two>Polyethylenglykol</two>).
249
+ - <one>Elie Metchnikoff</one> discovered <two>phagocytosis by neutrophils</two>. <three>How did he call them back then</three>? <one>Microphages</one>.
250
+ - Nenne <one>eine wichtige Fähigkeit der Milz</one>. A: <one>Abbau von</one> <two>überalterten</two> <one>Erythrocyten</one>.
251
+ - During <one>Extravasation</one>, aka the <two>crossing of endothelial cell wall</two>, phagocytes can squeeze through the basal membrane with the aid of <three>enzymatic degradation</three>, via the <four>MMP-9 enzyme</four>. What is that abbreviation? This is the <one>Matrix Metalloproteinase-9</one> enzyme. This enzyme can cut through the ECM matrix.
252
+ - In humans, name a good <one>(bio)marker</one> for <two>memory B cells</two>. A: <one>CD27</one>.
253
+ - What is <one>the major difference</one> between <two>Alarmins</two> and <two>PAMPs</two>? <one>Alaramins</one> are <two>endogenous molecules</two>.
254
+ - In general: what is meant with the term <one>Immunotherapy</one>? This is when a disease is being fought by the body's own immune system.
255
+ - Das <one>C-reaktive Protein</one> <two>ist wichtig bei der Erkennung bestimmter Membranstruktur von Bakterien</two>. <three>Es bindet an ... </three>? <one>Phosphatidylcholinstrukturen</one>.
256
+ - Give <one>a specific example</one> of a danger through <two>immune senescence</two>. A: Older adults are predisposed to a higher risk of latent virus reactivation.
257
+ - Beim Menschen: <one>ab wann</one> <two>bildet sich der Thymus zurück</two>? Bereits <one>mit Einsetzen der Pubertät</one>.
258
+ - In Immunology: <one>which effect</one> does <two>Interleukin-2</two> have in the human body? <one>Interleukin-2</one> <two>triggers the division of immune cells</two>.
259
+ - <one>Was passiert</one> beim <two>Lupus erythematodes</two>? <one>Antikörper</one> <two>gegen</two> die <three>eigenen Histone</three> werden gebildet.
260
+ - Die <one>Immuntoleranz</one> umfasst immunologische Prozesse in Wirbeltieren zur Vermeidung von ... ? Zur <one>Vermeidung einer Immunreaktion</one>.
261
+ - Die <one>von Köhler und Milstein</one> <two>entwickelte Methode</two> nutzt welche Technik? Die <one>Hybridom-Technik</one>. URL: https://de.wikipedia.org/wiki/Hybridom-Technik
262
+ - If a <one>zone of equivalence</one> is reached in vivo, what can we also observe? That <one>large immune complexes will form in the circulation</one>.
263
+ - <one>Warum</one> ist es für <two>Kinder mit PKU</two> wichtiger wenig Phenylalanin zu sich zu nehmen als für Erwachsene (2 Gründe)? Da das Gehirn sich noch entwickelt und da die Blut-Hirn Schranke bei Erwachsenen stärker ausgeprägt ist.
264
+ - Nenne <one>zwei Vertreter der MALTs</one>. A: (1) <one>Tonsillen</one> (2) <one>Peyer'sche Plaques</one>
265
+ - Kurz formuliert: was sind <one>Hybridomzellen</one>? <one>Fusionszellen</one> aus <one>B-Lymphozyten</one> und <two>Myelomzellen</two>.
266
+ - <one>CD14</one> <two>bindet an ...</two>? <one>LPS</one>.
267
+ - Are <one>Neutrophils</one> <two>able to phagocytose</two>? <one>Yes</one> - in fact <two>they are extremely efficient when it comes to phagocytosis</two>.
268
+ - Die <one>Langerhans Zellen</one> gehören zu den ... ? <one>Dendritischen Zellen</one>.
269
+ - <one>Why</one> is the <two>pIgR (Poly-Ig) Fc receptor</two> important? It will facilitate facilitates the transcytosis of the soluble polymeric isoforms of immunoglobulin A.
270
+ - <one>Which cells</one> display <two>MHC II</two>? <one>APCs</one>: <two>macrophages</two>, <two>dendritic cells</two>, <two>B cells</two>
271
+ - <one>Complement proteins</one> target which bacteria group in particular? Gram-negative ones such as E. coli
272
+ - What is typically meant with the expression <one>immune complex</one>? This is a complex consisting of <one>antibodies</one> and (<two>bound</two>) <three>antigens</three>.
273
+ - <one>MHC-Class I</one> kann <two>Peptidfragmente viraler Proteine</two> <three>in der Zelle binden</three>. <four>Wo genau innerhalb einer Zelle</four>? Im <one>ER</one>.
274
+ - The <one>shared epitope</one>, which can be <two>found in rheumatoid arthritis patients</two>, can activate the production of nitric oxide and ... ? <one>Reactive oxygen species</one> (<cornflowerblue>ROS</cornflowerblue>).
275
+ - Was meinen wir mit <one>LTNPs</one> (<two>long-term non-progressors</two>)? Dies sind Menschen die, zum Beispiel <two>mit dem HI-Virus (HIV) infiziert sind</two> aber <one>nicht an AIDS erkranken</one>. URL: https://en.wikipedia.org/wiki/Long-term_nonprogressor
276
+ - In Immunology: <one>ISG15</one> <two>is what gene</two>, as abbreviation? The <one>Interferon stimulated gene 15</one>.
277
+ - Aufgabe der <one>TH2-Zellen</one>? TH2-Zellen <two>stimulieren</two> B-Lymphozyten.
278
+ - <one>Wie</one> werden die <two>Komplementproteine</two> aktiviert? Sequenziell - durch <one>proteolytische Spaltung</one>.
279
+ - Are <one>superantigens</one> <two>connected to</two> <three>MHC class I</three> or <three>MHC class II</three>? <one>Superantigens</one> are connected to <two>MHC class II</two>.
280
+ - If we <one>knock out adaptive immunity</one> but retain innate immunity, what may the most surprising factor be, aside from a slight increase in pathogen load? There will be a <one>substantial increase in the length of infection</one>.
281
+ - <one>Which TNF</one> <two>amplifies the immune response</two> that is also secreted by monocytes? <one>TNF-Alpha</one>.
282
+ - <one>Fc-gamma-RIII</one> <two>has which CD-number</two>? <one>CD16</one>.
283
+ - <one>Welche drei Zelltypen</one> entstehen aus einer <two>lymphoiden Vorläuferzelle</two>? (1) <one>B-Lymphocyten</one> (2) <one>T-Lymphocyten</one> (3) <one>NK Zellen</one>
284
+ - <one>Welche Zellen</one> setzen <two>Akute-Phase-Proteine</two> frei? <one>Hepatocyten</one>.
285
+ - <one>Warum</one> sind die <two>eosinophilen Granulozyten</two> so wichtig? Sie haben eine sehr wichtige Effektorfunktion gegen große, nicht phagozytierbare extrazelluläre Ziele wie Würmer und andere Parasiten.
286
+ - What does <one>VSG</one> in the <two>African trypanosomes</two>, stand for? <one>Variant-specific glycoprotein</one>.
287
+ - Nenne <one>drei verschiedene Formen der Gewinnung von Antikörpern</one>, <two>in Kurzform</two>. A: (1) <one>monoklonal</one> (2) <one>polyklonal</one> (3) <one>rekombinant</one>
288
+ - Give another term for <one>vaccination</one>. A: <one>Artificial active immunity</one>.
289
+ - Owing to <one>genetic recombination</one>, <two>the adaptive immune system can generate a lot of different antibodies</two>. What is the drawback of this procedure? It is prone to producing receptors that recognize self-molecules.
290
+ - Name <one>a chemokine</one> that will activate neutrophils. A: <one>IL-8</one>.
291
+ - <one>Was genau</one> ist die <two>Diapedese</two>? Das Einwandern von Lymphocyten in entzündetes Gewebe, über das Gefässendothel.
292
+ - Nenne <one>drei Beispiele</one> für <two>Epitope tags</two>. A: (1) <one>HA</one> (2) <one>FLAG</one> (3) <one>myc</one>
293
+ - Nenne <one>zwei primäre lymphatische Organe</one> und <two>zwei sekundäre Lymphatische Organe</two>. A: (1) <one>Primäre</one>: Knochenmark und Thymus (2) <one>Sekundäre</one>: <two>Lymphknoten und Milz</two>
294
+ - <one>TLR5</one> erkennt ... ? <one>Flagellin</one>.
295
+ - <one>Dendritic cells</one> have a characteristic morphology, with multiple long cellular processes - the so called <two>dendrites</two>. What is the function of these <two>dendrites</two>? These <one>dendrites</one> allow the dendritic cells to maximize contact with their surroundings.
296
+ - Die <one>Immuntoleranz</one> wird <two>in welche zwei Bereiche unterteilt</two>? (1) die <one>zentrale Toleranz</one> (2) die <one>periphere Toleranz</one>
297
+ - A <one>lymphocyte</one> <two>can turn into a lymphoblast</two>, by which <three>primary stimulus</three>? By <one>encountering an antigen</one>.
298
+ - <one>Anderes Wort</one> für Tumorsuppressorgen? <one>Anti-onkogen</one>.
299
+ - Name <one>the four major components of the Myddosome</one>. A: (1) IRAK1 (2) IRAK2 (3) <one>IRAK4</one> (4) <one>MyD88</one>
300
+ - Nenne <one>zwei verschiedene Typen</one> von <two>dendritischen Zellen</two> (DC) in der <three>Peripherie</three>. A: (1) Konventionelle DCs (2) <one>Vorläufer-DCs</one>
301
+ - <one>Somatic hypermutation</one> <two>occurs where</two> within the human body? In <one>B cells</one>. URL: https://en.wikipedia.org/wiki/Somatic_hypermutation
302
+ - In immunology: in general, <one>what kind of mice strains</one> seem very desirable in research? <one>Inbred mice strains</one>.
303
+ - In Immunology: what is meant with <one>Bence-Jones protein</one>? These are <one>the antibodies light chains</one>. URL: https://en.wikipedia.org/wiki/Bence_Jones_protein
304
+ - Nenne <one>eine Strategie</one> wie <two>Pilze</two> gegen ROS des Immunsystems vorgehen können. A: Pilze können ROS enzymatisch inaktivieren, über die <one>Superoxidismutase</one>.
305
+ - <one>Welche Entdeckung</one> machte <two>Ilja Metschnikow</two>, die ihm den Nobelpreis sicherte? Das <one>Bakterien</one> <two>durch Leukocyten aufgefressen (= phagozytiert) werden</two>.
306
+ - Die <one>zentrale Toleranz</one> beschreibt die Negativselektion von B- und T-Zellen im Knochenmark bzw. im Thymus, durch welche zwei verschiedene Mechanismen? (1) "induzierte Apoptose" (2) <one>Anergie</one>
307
+ - Die <one>Effektorzellen der Transplantatabstoßung</one> sind ... ? Die <one>T-Helferzellen</one>.
308
+ - Name <one>two natural processes</one> <two>involving angiogenesis</two>. A: (1) <one>lactation</one> (2) <one>wound healing</one>
309
+ - Name the <one>four</one> <two>classical inflammation steps</two>. A: Mnemo: <one>red cat tackles donkey</one> (1) <two>rubor</two> (2) <two>calor</two> (3) <two>tumor</two> (4) <two>dolor</two>
310
+ - <one>Effector T cell functions</one> <two>fall into which three broad classes</two>? (1) <one>killing</one> (2) <one>activation</one> (3) <one>regulation</one>
311
+ - <one>Neutrophils</one> <two>can be stained</two>, <three>via the H+E stain</three>. What colour will they then show? <one>Neutrophils</one> stain pink.
312
+ - In der Immunologie: was ist mit dem Begriff <one>Phasenvariation</one> gemeint? Variationen im Bereich der Oberflächenexpression.
313
+ - Anderer Begriff für ein <one>Vakzin</one>? <one>Immunogen</one>.
314
+ - The <one>second marrow pool of neutrophils</one> is the storage pool consisting of cells that are undergoing ... ? <one>Nuclear maturation</one>.
315
+ - What are "immunogens"? Immunogens are substances that can <two>induce an immune response</two>.
316
+ - Was meinen wir mit einer <one>Simultanimpfung</one>? Dies ist <one>die gleichzeitige</one>, also "simultane", Anwendung einer aktiven als auch passiven Immunisierung gegen einen Erreger.
317
+ - <one>What is</one> <two>the normal function of the immune system</two>? <one>Host defense</one>.
318
+ - <one>Welche Substanz</one> <two>aktiviert Makrophagen</two> zur <three>Neopterin-Ausschüttung</three>? <one>Interferon-Gamma</one> (<two>Interferon-γ</two>). URL: https://de.wikipedia.org/wiki/Interferon-%CE%B3
319
+ - Um eine <one>Immunantwort</one> wieder <two>abzuschalten</two>, <three>was ist hierbei am wichtigsten</three>? Die <one>Elimination des Antigens</one>.
320
+ - A <one>group of serovars</one> <two>with common antigens</two> is called ... ? A <one>serogroup</one>.
321
+ - <one>NF-KappaB</one> ist ein <two>Dimer</two>, <three>bestehend aus den beiden Untereinheiten p... und p..</three> A: (1) <one>p50</one> (2) <one>p65</one>
322
+ - The <one>eosinophil</one> <two>can kill parasites</two> - but only under which condition? When said parasite is already <one>coated with antibodies</one>.
323
+ - Was bewirkt <one>Cyclosporin A</one> <two>im menschlichen Körper</two>? Cyclosporin A blockiert die <one>Interleukin-2 Produktion</one>.
324
+ - <one>CD4 T-cells</one> recognize antigen presented by <two>MHC class .. molecules</two>. A: <one>class II molecules</one>.
325
+ - Nenne <one>ein für das Immunsystem</one> <two>sehr wichtige Beispiel</two> für <three>körpereigene Antigene auf der Oberfläche menschlicher Körperzellen</three>. A: Die <one>Genprodukte</one> des MHCs (<two>major histocompatibility complex</two>).
326
+ - From a structural point of view: what is <one>the main difference</one> between the V and C domain of an antibody? The V domain is larger, by having an extra loop forming the antigen-binding site of the immunoglobulin molecule.
327
+ - <one>How</one> do <two>Tc cells</two> kill? By releasing <one>Perforin</one> and <one>Granzymes</one>.
328
+ - <one>Complement action</one> <two>can be made visible</two> <three>through which test</three>? Through the <one>Jerne-Nordin plaque test</one>.
329
+ - <one>T-cells</one> can be subdivided into <two>three broad subsets</two>. Which ones are these? (1) T helper cells (<two>Th</two>) (2) cytotoxic T cells (<two>Tc</two>) (3) regulatory T cells (<one>Treg</one>)
330
+ - <one>Welche Granulozyten</one> speichern <two>Peroxidase</two>? Die <one>eosinophilen Granulozyten</one>.
331
+ - Bei der <one>invasive pneumococcal disease</one> sah man mitunter, das ältere Patienten mildere Symptome haben. Wieso das? Eventuell wird das Immunsystem trainiert.
332
+ - Was heißt <one>doppelt negative Thymocyten</one>? CD4 negativ sowie <one>CD8 negativ</one>.
333
+ - Name <one>four different</one> <two>anti-microbial functions</two> <three>of neutrophils</three>. A: (1) phagocytosis (2) pus formation (3) neutrophil extracellular trap (NET) formation (4) production of anti-microbial molecules, such as anti-microbial peptides or reactive oxygen species
334
+ - The <one>C1 molecule</one> <two>of the complement cascade</two> is stabilized by which metal? <one>Ca²⁺ ions</one>.
335
+ - Give another name to a <one>primary immune response</one>. A: <one>Initial infection</one>.
336
+ - Nenne einen <one>Chemokinrezeptor</one> <two>auf B-Lymphocyten</two>. A: <one>CXCR5</one>.
337
+ - In general: <one>what do</one> <two>toll-like receptors</two> <three>recognize</three>? They recognize <one>pathogen-associated molecular patterns</one> (<two>PAMPs</two>).
338
+ - <one>MHC genes in humans</one> <two>are located on which chromosome</two>? They can be found on <one>chromosome 6</one>.
339
+ - Nenne <one>ein Protein</one> mit einer <two>NACHT Domäne</two>. A: <one>Naip</one>.
340
+ - Name the three members of the <one>secondary lymphoid organs</one>. A: (1) <one>spleen</one> (2) <one>lymph nodes</one> (3) <one>MALT</one>
341
+ - <one>Wie entsteht</one> die löslische Form von CD95L? Durch die <one>Aktivität einer Metalloprotease</one>.
342
+ - <one>T helper cells</one> use which <two>CD designation</two>? <one>CD4⁺</one> (Mnemonic: <two>4-for-to-help</two>).
343
+ - Name <one>a protein</one> that can promote the deadenylation of the <two>tumor necrosis factor Alpha</two>. A: <one>Tristetraprolin</one>. URL: https://en.wikipedia.org/wiki/ZFP36
344
+ - <one>Autoimmune diseases</one> <two>are very often treated with ... </two>? <one>steroids</one>.
345
+ - <one>Jeder (adulte) Mensch</one> <two>besitzt</two> <three>n verschiedene B-Zellen</three>? <one>1 Million</one> (also <one>10⁶</one>).
346
+ - <one>Where</one> is the <two>AIRE Transcription factor</two> <three>expressed</three>? In the <one>medulla of the thymus</one>.
347
+ - <one>Why</one> are <two>cytotoxic T cells</two> important? They can kill <one>cancer cells</one>.
348
+ - <one>Virus-infizierte Zellen</one> <two>produzieren viele Virusproteine</two>. <three>Einige davon werden in den Proteasomen abgebaut</three>. Es entstehen so Peptide, die wie lang sind (von-bis)? Etwa <one>8-10 Aminosäuren</one> lang.
349
+ - What are <one>neutrophil extracellular traps</one>? These are <one>networks</one> of <two>extracellular fibers</two>, primarily composed of DNA from neutrophils, which bind pathogens.
350
+ - <one>All but which cells</one> <two>deriving from the lymphoid and myeloid lineage</two> are called <three>white blood cells</three>? The <one>erythrocyte</one>.
351
+ - <one>Anderer Begriff</one> für eine <two>wiederholte Immunisierung</two>? <one>Boostern</one>.
352
+ - Nenne <one>ein Beispiel</one> für ein <two>Opsonin</two>, das <three>KEIN</three> Antikörper ist. A: Das <one>Komplement-Fragment</one>.
353
+ - Name <one>the two most important</one> <two>cytokine-types</two> in immunology. A: (1) <one>Interleukins</one> (2) <one>Interferons</one>
354
+ - What is <one>the role</one> of <two>the peripheral lymphoid organs</two>? These organs function to concetrate microbial antigens. This is an important step ina the adaptive immune response.
355
+ - <one>Welche Immunzellen</one> besitzen einen Ig-Epsilon Rezeptor? <one>Mastzellen</one>.
356
+ - In immunology: what is meant with the abbreviation <one>CTLs</one>? These are the <one>cytotoxic T-lymphocytes</one>.
357
+ - <one>Cytokines</one> <two>are</two> typically <two>fairly small proteins</two>, in the range of about n to n kDa? About <one>~5-20 kDa</one>.
358
+ - <one>Antimikrobielle Peptide</one> sind vor allem <two>reich an welcher Aminosäure</two>? <one>Arginin</one>.
359
+ - Wo mag ein <one>genome immune system</one> gefunden werden? Zum Beispiel in <one>siRNAs</one>.
360
+ - <one>When</one> was the term <two>Type II secretion system</two> coined? The term <one>Type III secretion system</one> <two>was coined in the year</two> <three>1993</three>.
361
+ - Name <one>an enzyme</one> whose transcription is triggered by a <two>STAT protein</two>. A: The enzyme <one>oligoadenylate synthetase</one>. URL: https://en.wikipedia.org/wiki/2%27-5%27-oligoadenylate_synthase
362
+ - <one>Aufgabe</one> der dendritischen Zellen? A: <one>Dendritische Zellen</one> nehmen Antigene in der Peripherie auf und wandern dann in Lymphknoten, um diese Antigene den naiven T-Zellen zu präsentieren.
363
+ - <one>Complement</one> is <two>a group of around n different plasma proteins</two>? About <one>30</one>.
364
+ - <one>How long is the spacer area</one> that can be found adjacent to the <two>Recombination Signal Sequences</two>? Either <one>12</one> or 23 (unconserved) nucleotides, followed by a conserved nonamer (9 base pairs).
365
+ - <one>Who or what</one> <two>initiates</two> the <three>lectin pathway</three> of the complement-activation pathways? The protein called <one>MBL</one>.
366
+ - Name a <one>functional difference</one> between <two>mature</two> and <three>immature dendritic cells</three>. A: <one>Immature dendritic cells</one> can not stimulate naive T-cells.
367
+ - <one>Pentraxins</one> <two>can bind which ligand</two>? <one>Calcium</one>.
368
+ - Findet in den <one>sekundären lymphatischem Gewebe</one> <two>Lymphopoese</two> statt? <one>Nein</one>.
369
+ - In immunology: what is meant with a <one>CMI response</one>? This refers to a <one>cell-mediated immune response</one>.
370
+ - Name <one>a cell type</one> in immunobiology that is <two>activated by MAMPs</two>. A: The <one>dendritic cell</one>.
371
+ - <one>Welcher Komplementfaktor</one> <two>überwiegt in seiner Konzentration gegenüber den anderen Faktoren</two>? <one>C3</one>.
372
+ - Können <one>Einzeller</one> Schadstoffe aufnehmen? Ja - über <two>Phagozytose</two>.
373
+ - The <one>complement protein C1</one> consists of <two>C1q</two>, <two>C1r</two> and <two>C1s</two>. <three>Which one of these three is by far the longest and thus most important molecule</three>? <one>C1q</one> is by far the longest of these three molecules.
374
+ - <one>Jules Bordet</one> <two>discovered the complement system</two>, in (approximately) which year? In <one>1899</one>.
375
+ - Was heißt <one>immunitas</one>? <one>Freiheit von Infektionen</one>.
376
+ - In Immunology: does <one>CLIP</one> belong to the "immunoglobulin superfamily"? <one>No</one>.
377
+ - Was heisst <one>GALT</one>? <one>Gut associated lymphoid tissue</one>. URL: https://en.wikipedia.org/wiki/Gut-associated_lymphoid_tissue
378
+ - Do <one>B-cells</one> <two>rather recognize</two> <three>hydrophobic</three> or <three>hydrophilic</three> amino acids? Rather <one>hydrophilic aminoacids</one> (on the protein surface).
379
+ - <one>Wieviel % der Europäer</one> sind, in etwa, <two>Rh-positiv</two> (tragen somit Antigen D)? Etwa <one>85%</one>. URL: https://en.wikipedia.org/wiki/Blood_type_distribution_by_country
380
+ - The so-called <one>Myddosome</one> is important for which part of Immunobiology? The <one>Myddosome</one> is important for <two>innate immune signaling</two>. URL: https://www.ncbi.nlm.nih.gov/pubmed/21269878
381
+ - Wie gehen die <one>vier Kochschen Postulate</one>? (1) Der mutmaßliche Krankheitserreger muss immer mit der Krankheit assoziiert sein und darf in gesunden Tieren nicht nachgewiesen werden. (2) Der mutmaßliche Erreger muss in Reinkultur gezüchtet werden. (3) Eine Reinkultur des mutmaßlichen Erregers sollte im gesunden Tier die Krankheit auslösen. (4) Der Organismus muss reisoliert werden und identisch mit dem ursprünglichen Erreger sein.
382
+ - <one>What happens</one> in <two>antibody dependent cell cytotoxicity</two> (<three>ADCC</three>)? This is a process by which <one>NK cells</one> are targeted to <two>IgG-coated cells</two>, resulting in lysis of the antibody coated cells.
383
+ - Which are <one>the two most important subtypes of T lymphocytes</one>? (1) <one>helper T cells</one> (2) <one>cytotoxic T lymphocytes</one>
384
+ - <one>Woraus</one> bestehen allgemein (natürliche) <two>Immunkomplexe</two>? Aus <one>Antigen</one> und <one>Antikörper</one>.
385
+ - How many <one>feet</one> do MHC class I and II have? <one>MHC class I</one> has one foot (transmembrane anchor), <one>MHC class II</one> has two feet.
386
+ - Nenne <one>die beiden Hauptäste des hämatopoetischen Stammbaums</one>. A: (1) <one>lymphoid</one> (2) <one>myeloid</one>
387
+ - Warum wird <one>Blutplasma</one> <two>mehrere Monate gekühlt</two>? Um <one>Viren zu zerstören</one> oder <one>beschädigen</one> (eventuell auch Bakterien), <two>damit man so Infektionskrankheiten minimieren kann</two>.
388
+ - Can <one>mast cells</one> <two>enter tissues</two>? <one>Yes</one> - they do that and then complete their maturation there.
389
+ - <one>Bakterien</one> <two>stimulieren Makrophagen</two> <three>IL-6 zu bilden</three>. Dieses wiederum löst was in Hepatocyten aus? Die <one>Synthese von Akute-Phase Proteinen</one>.
390
+ - <one>Which person</one> coined the term <two>complement</two>? <one>Paul Ehrlich</one>.
391
+ - Name <one>three components</one> of the "Myddosome" within the cell. A: (1) <one>MyD88</one> (2) <one>IRAK1</one> (3) <one>IRAK4</one>
392
+ - Können <one>Makrophagen</one> <two>Lysozym</two> aktiv sezernieren? <one>Ja</one>.
393
+ - <one>Lebensdauer</one> der <two>neutrophilen Granulozyten</two>? Nur <one>ein bis zwei Tage</one>.
394
+ - <one>Welches Verfahren</one> führte <two>Emil von Behring</two> ein? Das Verfahren der <one>passiven Immunisierung</one>.
395
+ - Name <one>three important</one> <two>extrinsic factors</two> for (applied) immunogens. A: (1) dose (2) route of administration (3) foreign nature of the immunogen to the host
396
+ - <one>Wer</one> sind die potentesten Stimulatoren von T-Zellen? <one>Dendritische Zellen</one>.
397
+ - <one>Wie</one> wirkt ein <two>immunologisches Fusionsprotein</two> (<three>Immunotoxin</three>)? Zuerst bindet ein Teil an das Ziel; dann tötet der andere Teil die Zelle ab.
398
+ - Nenne <one>vier immunologisch privilegierte Orte</one>. A: (1) vordere Augenkammer (2) Glaskörper (3) Kornea (4) <one>Gehirn</one>
399
+ - <one>Lady Montagu</one> führte <two>wann</two> die Variolation ein? <one>1721</one>.
400
+ - <one>Welchen Zweck</one> haben <two>Alpha-Defensine</two>? <one>Alpha-Defensine</one> dienen dem <two>Schutz der Schleimhaut im Darm</two>.
401
+ - Which <one>Th helper cell group</one> is <two>very important against intracellular bacteria</two>: Th1 or Th2? <one>Th1 helper cells</one> are very important against <two>intracellular bacteria</two>.
402
+ - Name <one>the three groups of plasma proteins</one>. A: A,F,G. (1) albumins (2) fibrinogen (3) <one>globulins</one>
403
+ - <one>Which cells</one> of the immune system are a prominent host cell for many pathogenic bacteria? Macrophages.
404
+ - Why can it be claimed that the <one>membrane-bound Immunoglobulin</one> <two>of B cells</two> is NOT involved with <three>intracellular signal molecules</three>? Because <one>the cytoplasmic tail is too short</one>.
405
+ - Give an example of an <one>unwanted immune response</one>. A: <one>Autoimmune diseases</one>.
406
+ - Das <one>Komplementsystem</one> besteht aus <two>wieviel verschiedene Serumproteinen</two>? <one>25</one>.
407
+ - The <one>basic difference</one> between innate and adaptive immunity is ... ? The way <one>how</one> they recognize the target molecules.
408
+ - Nenne eine wichtige <one>immunologische Bedeutung</one> von <two>Erythrocyten</two>. A: Über den <one>C3b-Komplementrezeptor</one> beseitigen sie Immunkomplexe.
409
+ - Can <one>Leukocytes</one> <two>migrate</two> through the endothelium? <one>Yes</one>, as part of the <two>inflammatory response</two>.
410
+ - Wie werden die <one>Dendritischen Zellen</one> in den <two>Schleimhäuten</two> genannt? <one>Wächterzellen</one>.
411
+ - In der <one>Epidermis</one> gibt es <two>welche zwei immunologisch wichtige Zellen</two>? (1) <one>Langerhans-Zellen</one> (2) <one>intraepidermale T-Lymphozyten</one>
412
+ - Name <one>a chemoattractant</one> secreted by <two>inflamed tissue</two>. A: <one>Chemokines</one>.
413
+ - Können <one>dendritische Zellen</one> zu professionellen APC-Zellen werden? <one>Ja</one>.
414
+ - The short peptide fragment called <one>CLIP</one> binds to MHC I or MHC II? <one>CLIP</one> binds to <two>MHC II</two>.
415
+ - <one>Who</one> first proposed <two>the cellular theory of immunity</two>? <one>Elie Metchnikoff</one>.
416
+ - <one>Wer</one> gibt wie <two>Neopterin</two> frei? <one>Makrophagen</one>, wenn sie mit <two>Interferon-Gamma</two> (IFN-Gamma) stimuliert werden. URL: https://de.wikipedia.org/wiki/Neopterin
417
+ - What is the <one>antibody repertoire</one>? This is the <one>total number of antibody specificities</one> available to an individual; 10 ** 11 in humans.
418
+ - Name a chemical factor that <one>mast cells</one> can produce, starting with the letter <two>L</two>. A: <one>Leukotrienes</one>.
419
+ - Why is <one>cell-mediated immunity</one> so important? Cell-mediated immunity can eliminate microbes residing in phagocytes. Infected cells can thus be eliminated, and together with them the organisms also gets rid of reservoirs of infection.
420
+ - <one>Woher</one> stammen <two>Anaphylatoxine</two>? Aus <one>Komplementfaktoren</one> - <two>C3a</two>, <two>C4a</two>, <two>C5a</two>.
421
+ - <one>Wann</one> wurde das <two>Alzheimer disease</two> <three>erstmals beschrieben</three>? <one>1907</one>.
422
+ - <one>Good immunogens</one> should have a molecular mass of ... ? More than <one>100.000 Dalton</one>.
423
+ - Name a <one>hallmark of an infectious agent</one>. A: An infectious agent is one that can multiply.
424
+ - What is <one>one of the best studied examples</one> for the existence of genetic factors in regards to influencing host defence against infectious disease? <one>Malaria</one>.
425
+ - During <one>Opsonization</one>, <two>phagocytosis</two> <three>is enhanced by which complement protein</three>? <one>C3b</one>.
426
+ - Name one of the biggest clinical problems in <one>treating fungal diseases</one>. A: The rapid and reliable diagnosis is still a major clinical problem.
427
+ - <one>Langerhans-Zellen</one> findet man zwischen welchen Schichten der Epidermis? <one>Stratum basale</one> und <one>Stratum spinosum</one>.
428
+ - When a <one>TCR</one> engages with antigenic peptide and MHC (peptide/MHC), the <two>T lymphocyte is activated through ... </two>? <one>signal transduction</one>.
429
+ - Do <one>self-antigens</one> <two>exist</two>? <one>Yes</one> - they can give rise to <two>autoimmune diseases</two>.
430
+ - <one>Wo</one> in der Zelle finden wir die <two>JAKs</two>? Im <one>Cytoplasma</one>.
431
+ - <one>Womit</one> beginnt die <one>Phagocytose</one>? Pseudopodien <one>umschließen</one> die Mikroorganismen.
432
+ - <one>Each individual B cell</one> <two>has how many B cell receptors</two>? About <one>10⁵</one> (== <two>100000</two>).
433
+ - Can <one>cytotoxic T cells</one> <two>induce target cells to undergo apoptosis</two>? <one>Yes</one> of course.
434
+ - <one>Which three different categories</one> exist for <two>Exotoxins</two>? (1) <one>cytolytic toxins</one> (2) <one>AB toxins</one> (3) <one>Superantigen Toxins</one>
435
+ - <one>Affinity maturation</one> in "antigen-stimulated B cells" will lead to new ... structures. A: New <one>V domain structures</one>.
436
+ - Name <one>three cells</one> that arise from the "common lymphoid progenitor". A: (1) <one>B cell</one> (2) <one>T cell</one> (3) <one>NK cell</one>
437
+ - Was bewirken <one>Akute Phase Proteine</one>? Diese Proteine bewirken eine <one>bessere Phagozytose von Krankheitserregern</one>.
438
+ - <one>Which three types of proteins</one> on the surface of an antigen-presenting cell are involved in activating a T cell? (1) the T-cell receptor (2) a peptide-loaded MHC molecule (3) a costimulatory proteins
439
+ - In Immunology: what means <one>TSA</one>? <one>Tissue-specific self-antigens</one>.
440
+ - In immunology we have the word <one>RAGE</one>, which is <two>an</two> extremely clumsy <two>abbreviation</two> (sort of) <two>for ... </two>? <one>Multiligand receptor binding advanced glycation end products</one>.
441
+ - <one>How</one> can different classes of lymphoyctes be distinguished from one another? By the expression of <one>surface proteins</one> called <two>CD molecules</two>.
442
+ - Direkte Vorläufer der <one>platelets</one> sind die ... ? <one>Megakaryocytes</one>.
443
+ - The <one>FcRn</one> <two>structurally resembles ... </two>? <one>MHC class I molecules</one>. URL: https://en.wikipedia.org/wiki/Neonatal_Fc_receptor
444
+ - In der Immunologie gibt es ein 24-kDa Enzym namens <one>AID</one>, <two>Activation-induced deaminase</two>. Was macht dieses Enzym? Es <one>induziert Mutationen in der DNA</one> indem es die Amino-Gruppe von einer Cytosine-Base entfernt, und sie so in Uracil konvertiert. Mit anderen Worten, DNA deamination of dC -> dU.
445
+ - <one>Neutrophils</one> make up n% of the granulocyte population? Almost <one>97% of the granulocyte population</one>.
446
+ - What is a <one>syngeneic host</one>? A host with an <one>identical genetic background</one>.
447
+ - In immunology: what is meant with the somewhat akward term <one>sterilizing immunity</one>? This refers to the function of the immune system to mount a response that eliminates an infectious agent from the body.
448
+ - Nenne die vier Kochschen Postulate. A: (1) The Microbe is found in all cases of the disease but absent from healthy individuals, (2) Microbe is isolated and grows in pure culture, (3) Introduction of microbe into healthy host leads to the same disease, (4) the same strain can be obtained from these.
449
+ - Was heißt <one>AIRE Transcription factor</one>? <one>Autoimmune regulator</one>.
450
+ - <one>Rheumatoid arthritis</one> patients may have the <one>shared epitope</one>, which is <two>a risk factor for severe disease</two>. This HLA-DRB1-encoded amino acid sequence motif consists of how many amino acids? <one>Five</one> (5).
451
+ - Name a <one>receptor</one> that <two>can induce the synthesis of IFN-Alpha and IFN-Beta</two>. A: <one>Toll-like receptor TLR-3</one>.
452
+ - What is the <one>size range of human chemokines</one>, in <two>n kDa</two>? <one>8-12 kD</one>.
453
+ - What is <one>the prototypical class of PAMPs</one>? <one>LPS</one> aka <two>Bacterial lipopolysaccharides</two>. These endotoxins are found on the cell membranes of gram-negative bacteria. <three>LPS will specifically be recognised by TLR4</three>.
454
+ - Zählen die <one>NK-Zellen</one> zu den <two>Phagozyten</two>? <one>Nein</one>.
455
+ - Definiere den Begriff <one>Osteomalazie</one>. A: Verminderung der mineralischen Knochenbestandteile.
456
+ - Name <one>three practical points</one> that <two>the ideal vaccine</two> should have. A: (1) it should <one>provide life-long immunity in all immunocompetent vaccinees</one> (2) it should be "elicited with a single dose" (3) it should be <one>without side effects</one>
457
+ - Nenne eine <one>wichtige Aufgabe von Langerhans-Zellen</one>. A: Langerhans-Zellen <one>nehmen Mikroorganismen</one> (vor allem Antigene), die in die <one>Haut</one> eingedrungen sind, <one>auf</one>.
458
+ - <one>When</one> was the <two>side chain theory</two> established? In the year <one>1897</one>.
459
+ - What happens if the Drosophila <one>Toll-protein</one> is mutated? This Drosophila will be <one>more susceptible to fungal infections</one>.
460
+ - Name <one>the four general phases of an immune response</one>. A: (1) recognition (2) expansion (3) effector functions (4) contraction and memory
461
+ - Nenne <one>drei Familien</one> die zu den <two>PRRs</two> zählen. A: (1) C-Typ Lektinfamilie (2) NOD-Rezeptor ähnliche Familie (3) Toll-Rezeptor ähnlichen Familie.
462
+ - <one>NKT cells</one> release ... factors? <one>immune response initiating factors</one>.
463
+ - Ist die <one>Milz</one> <two>an das Lymphgefäßsystem angeschlossen</two>? <one>Nein</one>.
464
+ - Name an advantage of the <one>alternative pathway</one> compared to the <two>classical pathway</two>. A: It is activated without the requirement of antigen-antibody complexes for initiation.
465
+ - Patients with <one>Bruton agammaglobulinemia</one> <two>have which problem</two>? They <one>lack all mature B lymphocytes</one>. URL: http://emedicine.medscape.com/article/1050956-overview
466
+ - Nenne die zwei wichtigsten Rezeptoren des angeborenen Immunsystems. A: (1) TLRs: Toll-like Receptors (2) NODs: <two>NOD-like Receptors</two>
467
+ - Der <one>Abbau in einem Phagosom</one> geschieht primär durch ... ? <one>Hydrolasen</one>. URL: https://de.wikipedia.org/wiki/Hydrolasen
468
+ - Why may <one>alarmins</one> be considered <two>dangerous</two>? Because an excess release of alarmins, such as by severe injury, may result in <one>a potentially lethal cytokine storm</one>.
469
+ - Are <one>testis</one> <two>an immunologically privileged tissue</two>? <one>Yes</one> - <two>there is a tight barrier between blood vessels and the Sertoli cells in the seminiferous tubule, which isolates the later stages of sperm development</two>.
470
+ - <one>T-Lymphocyten</one> <two>wandern in welchen Bereich des Lymphknoten</two>, und warum genau? In den <one>Paracortex</one> aufgrund eines Chemokins, das dort gebildet wird.
471
+ - Nenne <one>zwei Stoffe</one>, die <two>beim Menschen</two> als Adjuvanzien eingesetzt werden können. A: (1) Aluminiumhydroxid (2) bestimmte Toxoide wie das "Tetanustoxoid"
472
+ - Die <one>erworbene Immunität</one> kann <two>unterteilt werden in ... </two>? (1) <one>humorale Immunität</one> (2) <one>zellvermittelte Immunität</one>
473
+ - <one>Immunologic unresponsiveness</one> is <two>also called ... </two>? <one>Tolerance</one>.
474
+ - Can <one>B-cells</one> <two>detect epitopes</two>? <one>Yes</one> - their membrane-bound antibody molecules can <one>recognize soluble antigens</one>.
475
+ - Nenne <one>vier immunologisch privilegierte Regionen</one>. A: (1) <one>Auge</one> (2) <one>Gehirn</one> (3) <one>Hoden</one> (4) <one>Uterus</one>
476
+ - Nenne <one>vier Beispiele</one> für <two>APC Zellen</two>. A: (1) <one>Thymische Epithelialzellen</one> (2) <one>B-Zellen</one> (3) <one>Dendritische Zellen</one> (4) <one>Makrophagen</one>
477
+ - A <one>parasite</one> is rather large and can infect people. Name three type of cells that can act against a large parasite in the human body. A: (1) mast cells (2) <one>eosinophils</one> (3) <one>basophils</one>
478
+ - Nenne <one>zwei Charakteristika</one> von M-Zellen. A: Sie besitzen KEINE Mikrovilli, können aber aktiv pinozytieren.
479
+ - <one>Which proteins</one> cause <two>hemolysis</two>? The <one>hemolysins</one>. URL: https://en.wikipedia.org/wiki/Hemolysin
480
+ - <one>Who</one> causes <two>listeriosis</two>? The gram-positive intracellular bacterium <one>Listeria monocytogenes</one>.
481
+ - An <one>adult human</one> <two>produces how much mucos per day</two>? A liter per day.
482
+ - Which two types of antigens can we, generally, distinguish in immunology? (1) foreign antigens (2) self-antigens
483
+ - Nenne <one>zwei</one> auf <two>Cocain</two> basierende Lokalanästhetika. A: <one>ProLido</one> (1) <two>Procain</two> (2) <two>Lidocain</two>
484
+ - The primary job of the immune system is ... ? To remove antigens.
485
+ - <one>Which cells</one> of the human body synthesize the complement proteins? The <one>liver hepatocytes</one>.
486
+ - Give <one>two examples</one> for <two>autoimmune diseases</two>. A: (1) <one>Multiple sclerosis</one> (2) <one>Rheumatoid arthritis</one>
487
+ - Nenne ein <one>Interleukin</one>, <two>das eine natürliche Killerzelle aktivieren kann</two>. A: <one>Interleukin 12</one>.
488
+ - <one>Rac2</one> <two>induces the assembly of a functional ...</two> in the phagolysosome membrane, leading to the generation of O2 -. A: <one>NADPH oxidase</one>.
489
+ - Do <one>NK cells</one> contain specific receptors? <one>Yes</one> - the NK receptors.
490
+ - <one>Welche allgemeine Strategie</one> mag das Immunsystem gegen Parasiten einsetzen? Eine <one>duale Strategie</one>.
491
+ - Beim <one>septischen Schock</one> sehen wir <two>eher</two> einen hohen oder niedrigen Blutdruck? Eher einen <one>niedrigen Blutdruck</one>. URL: https://flexikon.doccheck.com/de/Septischer_Schock
492
+ - Alternative Bezeichnung für den <one>MHC</one> beim Menschen? <one>HLA</one> (<two>human leukocyte antigen</two>).
493
+ - When we compare <one>CD4</one> and <one>CD8</one>, <two>which one has more subunits</two>? <one>CD4</one>: it has <two>4 D domains</two>.
494
+ - <one>Welche Zellen</one> haben sowohl <two>MHC-1</two> als auch <two>MHC-2</two>? <one>APC Zellen</one>.
495
+ - Name a large <one>difference</one> between the <two>T-cell receptor</two> and the <two>B-cell receptor</two>. A: The T-cell receptor can not bind an antigen directly; instead, it relies on MHC presentation of peptide fragments.
496
+ - Give a better name for <one>B-cells</one>. A: The <one>B-lymphocytes</one>.
497
+ - Wie lange sollte ein <one>Epitop</one> sein um erkannt zu werden? (von-bis). A: <one>10-15 Aminosäuren</one>.
498
+ - Systematik bei der <one>CD-Nummerierung</one>? Sie entstanden <one>in der Reihenfolge ihrer Entdeckung</one>.
499
+ - <one>Which three cell types</one> <two>belong to the granulocytes</two>? (1) the <one>neutrophils</one> (2) the <one>eosinophils</one> (3) the <one>basophils</one>
500
+ - Was würde wohl passieren wenn man die <one>HEV</one> <two>eines Lymphknoten</two> blockieren würde? Der Eintritt von T und B Lymphozyten würde verhindert werden.
501
+ - Why can we say that <one>malaria</one> <two>could be prevented quite easily</two>? Because we could simply <one>use a mosquito net</one>.
502
+ - The <one>immune system</one> does more than just provide protection against infections. Explain this statement. A: The <one>immune system</one> may also <two>prevent the growth of some tumors</two>.
503
+ - <one>Where</one> are <two>memory B cells</two> formed? Within <one>germinal centers</one>.
504
+ - <one>α-Defensine</one> können <two>wo</two> im menschlichen Körper gefunden werden? Im <one>Darm</one>.
505
+ - The <one>Type IV delayed hypersensitivity</one> <two>is an immune response directed at gluten</two>. <three>How do we call this</three>? This is the <one>celiac disease</one>.
506
+ - In mammals: the <one>Toll-like receptor</one> <two>can activate which pathway</two>? The <one>NF-Kappa B pathway</one>. URL: https://en.wikipedia.org/wiki/NF-%CE%BAB#Signaling
507
+ - Unterschied zwischen <one>Diapedese</one> und <one>Emeriploesis</one>? Bei der <one>Diapedese</one> wandern die Lymphocyten ZWISCHEN den Endothelzellen hindurch und nicht durch sie hindurch.
508
+ - The <one>receptors for chemokines</one> belong to which family? To the <one>GPCR superfamily</one>.
509
+ - What is meant with the term <one>selective immunodeficiency</one>? This is when only one type of immunoglobuins, such as <one>IgA</one>, is lacking.
510
+ - In the <one>complement pathway</one>, <two>the lectin pathway specifically</two>, there are Mannose-binding lectins and ... that may recognize carbohydrates on pathogen surface? <one>Ficolins</one>.
511
+ - Name <one>three examples</one> for <one>inflammatory inducers</one>. A: (1) Bacterial lipopolysaccharides (2) ATP (3) <one>urate crystals</one>
512
+ - Name <one>an adhesion molecule</one> that is typically <two>involved in leukocyte interaction</two>. A: <one>Selectin</one>.
513
+ - <one>Welcher Rezeptor</one> ist <two>bei der Opsonierung wichtig</two>? Der <one>Fc-Rezeptor</one>.
514
+ - In immunology: what is meant with the term <one>homeostasis</one>? This term means that all normal immune responses wane with time after antigen simulation, thus returning the immune system to its resting (basal) state again.
515
+ - Welcher <one>Mechanismus</one> <two>schaltet selbstreaktive B- und T-Zellen aus</two>? Der Mechanismus der <one>zentralen Toleranz</one>.
516
+ - The <one>Freud Adjuvant</one> <two>contains what</two>? <one>Dead mycobacteria</one>.
517
+ - Was ist mit <one>Involution</one> in der Immunbiologie gemeint? <one>Involution</one> bezeichnet die <two>Rückbildung des Thymus</two>.
518
+ - <one>What happens</one> when the <two>spleen</two> is removed from an individual? This individual will be <one>highly susceptible to infections with encapsulated bacteria</one>.
519
+ - In immunology: the <one>BiP protein</one> <two>is very important</two>. What does BiP stand for, as an abbreviation? <one>Binding immunoglobulin protein</one>.
520
+ - The <one>Rag recombinase proteins</one> <two>involved in V(D)J recombination</two> for the adaptive immune system of vertebrates, are derived from ... ? <one>Transposons</one>.
521
+ - <one>Steroidrezeptoren</one> <two>liegen im Cytoplasma</two> als Komplexe mit welchem Protein <two>vor</two>? Mit dem Hitzeschockprotein <one>Hsp90</one>.
522
+ - Was ist das gefährlichste bei einer <one>Sepsis</one>? Das <one>Organversagen</one>.
523
+ - <one>Which protein</one> occurs in all three pathways of complement? The <one>C3 Convertase</one>.
524
+ - Give another expression for <one>self-tolerance</one> against self antigens. A: <one>Autoimmune diseases</one>.
525
+ - Name <one>the three different subgroups of helper T cells</one>. A: (1) T-helper 1 (Th1) cells (2) T-helper 2 (Th2) cells (3) T-helper 17 (Th17) cells
526
+ - <one>Which enzyme</one> recognizes the <two>Recombination Signal Sequences</two>? The <one>VDJ recombinase</one>. URL: https://en.wikipedia.org/wiki/V(D)J_recombination
527
+ - What will happen in/to B cells when <one>BLIMP-1</one> is active? They will become <one>plasma cells</one>.
528
+ - In immunology: <one>SOCS</one> are ... ? <one>Suppressor of cytokine signaling</one>.
529
+ - What do we mean with the <one>serum</one>? This is when plasma (or blood) is allowed to clot; the fluid phase we do call <one>serum</one>.
530
+ - <one>Who</one> are <two>the molecular mediators of inflammation</two>? (1) <one>cytokines</one> (2) <one>chemokines</one>
531
+ - Why the name <one>chemokine</one>? <one>Chemotactic cytokine</one>.
532
+ - Which cell bristles with receptors capable of r­ecognizing diverse PAMPs? The <one>m­acrophages</one>.
533
+ - Was ist <one>Oxazolone</one> und wo wird es eingesetzt? Oxazolone ist <one>ein chemisches Allergen</one>, das in immunologischen Experimenten verwendet wird, vor allem bei Experimenten bezüglich "delayed type hypersensitivity".
534
+ - Give another name for <one>epitopes</one>. A: <one>Determinants</one>.
535
+ - <one>Affinity maturation</one> results in an increase in the average ... ? <one>Average binding affinty of antibodies for an antigen as a humoral immune response evolves</one>.
536
+ - Name the two different types of <one>adaptive immunity</one>. A: (1) humoral immunity (2) cell-mediated immunity
537
+ - Why may <one>passive immunity</one> still be employed today? Becase <one>it is a useful method for conferring resistance rapidly</one>.
538
+ - Andere Bezeichnung für die <one>Immuntoleranz</one>? <one>Immunologische Nichtreaktivität</one>.
539
+ - Wie wird die <one>"Schleimhautimmunität"</one> <two>auf englisch</two> genannt? <one>Mucosal immunity</one>. URL: https://en.wikipedia.org/wiki/Mucosal_immunology
540
+ - Was meinen wir mit dem <one>immunologischem Gedächtnis</one>? Wenn die zweite Antwort auf das gleiche Pathogen viel effektiver ist als die erste Antwort.
541
+ - The adaptive immune system originated in jawed vertebrates about 360 million of years ago. What is meant with the term jawed vertebrates? For instance: <one>sharks</one>.
542
+ - In immunology: <one>ILCs</one> are ... ? <one>Innate lymphoid cells</one>.
543
+ - Welches <one>Spaltprodukt von C3</one> wirkt als <lightseagreen>Opsin</lightseagreen>? <one>C3b</one>.
544
+ - In der Immunologie gibt es das <one>LRBA-Gen</one>. <two>Was kann passieren wenn dieses Gen ausfällt</two>? Es kann zu schweren Störungen in der B-Zell-Entwicklung und der T-Zell-Funktion kommen.
545
+ - Zu den <one>PRRs</one> (<two>pattern recognition receptors</two>) gehören auch Lektine, und zwar vom Typ ... ? <one>C-Typ Lektine</one>.
546
+ - <one>Mastzellen</one> besitzen in ihrem Inneren <two>Granula</two>, die welche zwei Substanzen enthalten? (1) <one>Histamin</one> (2) <one>Heparin</one>
547
+ - In the lab, a <one>hapten</one> may be conjugated to ... ? A <one>carrier</one>.
548
+ - <one>Molecules</one> that are <two>involved in the decoration of infectious agents to prepare them for removal</two> <three>are called ... </three>? <one>Opsonins</one>.
549
+ - Name a <one>master regulator</one> of neuroinflammation. A: <one>Interleukin-1</one>.
550
+ - What is the basic problems of vaccines against <one>bioweapons</one>? They <one>must be administered _before_ exposure to bioweapons</one>.
551
+ - <one>MBL</one> (mannose-binding lectin) is a member of which family? <one>MBL</one> belongs to the <two>collectin family</two>.
552
+ - The <one>main components of adaptive immunity</one> are ... ? <one>Cells</one> called lymphocytes and their secreted products.
553
+ - Zählen <one>Lektine</one> zu den <two>Mustererkennungsrezeptoren</two>? <one>Ja</one>.
554
+ - What does <one>specific immunity</one> mean? That the immune system is able to distinguish between different, even closely related microbes and molecules.
555
+ - Nenne eine <one>Proteingruppe</one>, <two>die bei der Abschaltung der Cytokinproduktion eine wichtige Rolle spielt</two>. A: <one>SOCS-Proteine</one>. URL: https://www.ncbi.nlm.nih.gov/pubmed/11553846
556
+ - Nenne <one>einen Unterschied</one> zwischen den <two>dendritischen Zellen</two> und den <two>Makrophagen</two>. A: Dendritische Zellen können sehr leicht aus dem Gewebe auswandern.
557
+ - Das <one>Maximalgewicht des Thymus</one> beträgt in etwa ... n g. A: <one>40 g</one>.
558
+ - Was ist <one>das Hauptziel</one> der <two>zellulären Immunantwort</two>? Die <one>infizierten Zellen</one> <two>werden zerstört</two> - beziehungsweise sollen zerstört werden.
559
+ - <one>Why</one> have <two>Type III secretion systems</two> evolved? They are used by bacterial pathogens to <one>secrete toxins</one> and other products.
560
+ - <one>Complement action</one> <two>can be made visible through ... which test</two>? The <one>Jerne-Nordin plaque test</one>.
561
+ - <one>Plasma cells</one> were identified as <two>antibody producers</two>, by Astrid Fagraeus, in the year ... ? <one>1948</one>.
562
+ - Die sogenannten <one>Treg-Zellen</one> tragen was für <two>CD Marker</two> an der Oberfläche? (1) <one>CD4+</one> (2) <one>CD25+</one>
563
+ - <one>MHC-Klasse-II</one> können Peptide initial nur wo genau innerhalb der Zelle binden? Im <one>Phagolysosom</one>.
564
+ - Was ist die <one>Lymphopoese</one>? Dies ist die <one>Enstehung und Reifung von Lymphozyten in der Hämatopoese</one> (Blutbildung).
565
+ - In der Diagnostik: was heißt <one>PPV</one> und was gibt er an? <one>Positive Predictive value positives</one>. Gibt die Wahrscheinlichkeit an, mit dem ein Testergebnis einen infizierten Patienten angibt.
566
+ - The <one>vacuum cleaners of the immune system</one> are ... ? The <one>macrophages</one>. URL: https://en.wikipedia.org/wiki/Macrophage
567
+ - What would be a better, alternative name for the <one>lectin pathway</one> of the complement system? <one>MBLectin pathway</one> (<two>Mannose-binding</two>).
568
+ - Was ist ein <one>Epitop</one>? Ein Bereich eines Antigens, das vom Immunsystem, insbesondere von Antikörpern, als fremd erkannt wird. URL: https://en.wikipedia.org/wiki/Epitope
569
+ - <one>TLRs</one> können wir <two>in welche zwei Gruppen einteilen</two>? (1) TLRs, die ihre Liganden in Endosomen oder Lysosomen erkennen (2) TLRs, die ihre Liganden auf der Zelloberfläche erkennen
570
+ - The <one>structure of the B-cell receptor</one> is very similar to its corresponding antibody, except for ... ? A small portion of the carboxy terminus of the heavy-chain C region.
571
+ - Verbraucht die <one>Phagozytose</one> <two>ATP</two>? <one>Ja</one>.
572
+ - <one>Wie lange</one> dauert es bis die <two>adaptive immune response</two> erfolgt? <one>Mehr als 96 Stunden</one> (~ <two>+4 Tage</two>).
573
+ - Three roles of <one>inflammation</one> <two>in combating infection</two>? (1) <one>deliver additional effectors to sites of infection</one> (2) <one>induce local blood clotting</one> (3) <one>promote the repair of injured tissue</one>
574
+ - In immunology, at the <one>antigen receptors on cells</one>: <two>which aminoacid</two> is very prevalent? <one>Leucine</one>.
575
+ - Der <one>Vorläufer</one> eines <two>Thrombozyten</two> ist ... ? Ein <one>Megakaryocyt</one>.
576
+ - <one>Wie</one> werden <two>Granulocyten</two> noch genannt? <one>Polymorphkernige Leukocyten</one>.
577
+ - <one>Superantigens</one> <two>can bind to which molecule</two>? <one>Superantigens</one> can bind to the <two>MHC class II molecule</two>.
578
+ - <one>How</one> do we call the ability of the immune system to self-regulate? <one>Immune regulation</one>.
579
+ - Nenne <one>vier markante Eigenschaften</one> der T-Gedächtniszellen. A: (1) Schnellere Aktivierung (2) Keine Kostimulation erforderlich (3) Wanderung in das Gewebe (4) Lange Überlebensdauer
580
+ - <one>Somatic hypermutation</one> in immunology <two>is allowed only in which cells</two>? Only in <one>B-Cells</one> - <two>and strictly forbidden in T-cells</two>.
581
+ - Wie nennt man den Prozess, der bei der Lymphozytenreifung nur die Entwicklung derjenigen Lymphozyten zulässt, die fremde Antigene erkennen? <one>Klonale Selektion</one>.
582
+ - In der Immunologie: wofür steht die Abkürzung <one>BALT</one>? <one>Bronchus associated lymphoid tissue</one>. URL: https://en.wikipedia.org/wiki/Bronchus-associated_lymphoid_tissue
583
+ - Welcher <one>Rezeptor</one> erkennt <two>C3b</two>? Der Komplementrezeptor <one>CR1</one>.
584
+ - Nenne einen Vorteil der <one>aktiven Immunisierung</one>. A: Es werden <one>Gedächtniszellen</one> produziert.
585
+ - Wie wirken <one>Corticosteroide</one> auf das Immunsystem? <one>Corticosteroide</one> sind <two>entzündungshemmende Medikamente</two>.
586
+ - Welchen qualitativen <one>trade-off</one> gibt es bei der <two>angeborenen Immunantwort</two>? Die Erkennung ist sehr schnell; jedoch nicht sehr anspruchsvoll/spezifisch.
587
+ - <one>The movement of an immune cell</one> (or other cells) <two>through the basal membrane</two> <one>is called ... </one>? <one>Diapedesis</one>.
588
+ - In der Immunologie: was heißt <one>DTH-response</one>? <one>Delayed-type hypersensitivity</one>.
589
+ - <one>Langerhans</one> färbte die Langerhans-Zellen mit welcher Technik ein? <one>Goldchlorid-Technik</one>.
590
+ - The earliest cell in the B lymphocyte linage that can produce Ig polypeptides is called ... ? The <one>pre-B cell</one>. URL: http://www2.nau.edu/~fpm/immunology/Exams/Bcelldevelopment-401.html#generation
591
+ - Nenne <one>zwei Bestandteile</one> eines <two>Phagolysosom</two>. A: (1) Phagosom (2) Granula der Phagozyten
592
+ - Nenne <one>zwei wichtige Familien</one> <two>antimikrobieller Peptide</two> in Säugetieren. A: (1) <one>Cathelicidin</one> (2) <one>Defensin</one>
593
+ - For a human being: <one>the simplest way to avoid infection is to ... </one>? To <one>prevent the microorganisms from gaining access to the body</one>.
594
+ - Name <one>three important</one> <two>properties of immunogenicity</two>. A: (1) molecular size (2) sufficient molecular complexity (3) appropriate physical form
595
+ - Name <one>two specific examples</one> for <two>anaphylatoxins</two>. A: (1) C3a (2) <one>C5a</one>
596
+ - <one>Rapamycin</one> <two>kann</two>, in Säugetieren, <two>das Immunsystem unterdrücken</two>. Molekular betrachtet geschieht dies wie? Rapamycin inhibiert die G1→S-Phase Transition in den T-Lymphocyten. Dadurch kann Rapamycin als Immunosuppressivum nach Organtransplantationen verwendet werden.
597
+ - Name the <one>two</one> <two>cellular innate immune response</two> to microbes. A: (1) <one>inflammation</one> (2) <one>antiviral defense</one>
598
+ - Wie können wir, praktischer Natur, <one>CD-Antigene</one> erkennen? Mit Hilfe <one>monoklonaler Antikörper</one>.
599
+ - Andere W. für "Antigen-Antikörper-Komplex"? <one>Immunkomplex</one>.
600
+ - <one>Which immune cells</one> show <two>the phenomena of MHC restriction</two>? <one>T cells</one>.
601
+ - In der Immunologie: was heißt <one>NSP4</one>? <one>Neutrophilen-Serinprotease 4</one>.
602
+ - In Immunology: what does the abbreviation <one>ISGs</one> stand for? <one>Interferon-stimulated genes</one> (<two>ISGs</two>).
603
+ - <one>Blutplättchen</one> gehen aus welchem Zelltyp hervor? Aus <one>Megakaryocyten</one>.
604
+ - Beim Menschen sind etwa n verschiedene Blutgruppensysteme bekannt? Zumindest <one>20</one>.
605
+ - Warum sind <one>überstimulierte Fibroblasten</one> ein Problem für den Menschen? Da sie nun ständig weiße Blutkörperchen aktivieren können, die Entzündungsprozesse initiieren.
606
+ - Name <one>a CD-membrane receptor</one> used by <two>NK cells</two>. A: <one>CD16</one>. URL: https://www.ncbi.nlm.nih.gov/pubmed/23487023
607
+ - <one>Phagocytose im Zuge der Immunantwort</one> reicht <two>bis zu einer Partikelgröße von etwa ... n nm</two>? <one>50 nm</one>.
608
+ - Give <one>an example</one> for a <two>multi-functionality strategy</two> in the human body. A: The <one>DNA recombination</one> that occurs during <two>VDJ recombination</two>.
609
+ - Nenne einen wichtigen <one>Chemokinrezeptor</one> von T-Zellen. A: <one>CCR 7</one>.
610
+ - Die Moleküle, die notwendig sind damit Lymphozyten ihren Bestimmungsort im Körper erreichen, sind ... ? Die <one>Selektine</one>. URL: https://de.wikipedia.org/wiki/Selectine
611
+ - In immunlogy, the protein called <one>tapasin</one> is quite important. <one>Tapasin</one> can also be called ... ? <one>TAP-associated glycoprotein</one>.
612
+ - Was geschieht in den <one>Hassal-Körperchen</one>? A: <one>Abbau apoptotischer Zellen</one>.
613
+ - Which component of the complement system is a particularly effective opsonin? The <one>C3b component</one>. It will enhance towards a more effective phagocytosis by macrophages and neutrophils.
614
+ - Aside from its importance in fly development, name another reason as to why Drosophila requires the <one>Toll receptor</one>. A: It helps produce antimicrobial peptides, which help against <one>fungal infections</one>.
615
+ - <one>Who or what</one> synthesizes the components of the complement proteins? The <one>liver hepatocytes</one>.
616
+ - Give another name for <one>granulocytes</one>. A: <one>Polymorphonuclear leukocytes</one>. (Actually this term may be more applicable to neutrophiles only.)
617
+ - Among the <one>circulating white blood cells</one>: what is the <two>most abundant population</two> of cells there? The <one>Neutrophils</one>. URL: https://en.wikipedia.org/wiki/Neutrophil
618
+ - Name a <one>peripheral lymphoid organ</one> that begins with the letter <two>p</two>. A: The <one>Peyer's patches</one>.
619
+ - Was ist eine <one>Zoonose</one>? Das ist eine von Tier zu Mensch und von Mensch zu Tier übertragbare <one>Infektionskrankheit</one>.
620
+ - <one>Which cells</one> express <two>class II MHC molecules</two>? <one>Antigen-presenting cells</one> (<two>APC</two>).
621
+ - <one>Interferon-alpha</one>, an "interferon type I", is a protein that "interferes with viral replication". It was identifier in which year? <one>1957</one>.
622
+ - Which cells have <one>MHC II</one>? Only <one>antigen-presenting cells</one> (such as dendritic cells).
623
+ - Können <one>B-Zellen</one> <two>durch naive T-Zellen</two> aktiviert werden? <one>Nein</one>.
624
+ - Wofür steht das <one>M</one> in <two>M-Zellen</two>? <one>Membran-Zellen</one>.
625
+ - <one>Which gene</one> <two>directs regulatory T cell development</two>? <one>FOXP3</one>. URL: https://en.wikipedia.org/wiki/FOXP3
626
+ - <one>Why</one> would a eukaryotic cell require <two>Cytosolic DNA Sensors</two>? These sensors can detect dsDNA in the cytosol. Normally mammalian DNA is not present in the cytosol, so such a sensor makes sense.
627
+ - Are <one>PRRs</one> (<two>pattern recognition receptors</two>) <three>clonally expressed</three>? <one>No</one>.
628
+ - Does <one>both</one> the innate and the adaptive immunity have <two>a humoral component</two>? <one>Yes</one> - for instance, the <two>complement system</two> for the innate immunity and the <three>antibodies</three> for the adaptive immunity.
629
+ - <one>Cyclosporin A</one> <two>inhibiert</two> die Synthese welcher Substanz? <one>Interleukin-1</one>.
630
+ - The host to microorganisms (such as a human being) can adopt which three different general strategies to deal with the threat posed by microbes? (1) <one>avoidance</one> (2) <one>resistance</one> (3) <one>tolerance</one>
631
+ - Das <one>Jenner-Experiment</one> fand wann statt? <one>1796</one>. URL: https://de.wikipedia.org/wiki/Edward_Jenner#Vakzination
632
+ - In general: <one>which substances</one> are the <two>most potent immunogens</two>? <one>Proteins</one>.
633
+ - Which person discovered the <one>Basophils</one> in 1879? <one>Paul Ehrlich</one>.
634
+ - <one>Wie</one> treten naive B und T-Lymphozyten in den <two>Lymphknoten</two> ein? A: Über die <one>HEV</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3234668/
635
+ - The <one>memory response</one> <two>in humans</two> has a half-life of about ... ? <two>8-15 years</two>.
636
+ - Andere Bezeichnung für <one>Hapten</one>? <one>Inkomplettes Antigen</one>.
637
+ - Ist die <one>T-Zelle</one> fähig als <two>Gedächtniszelle</two> zu agieren? <one>Ja</one>.
638
+ - Aufgabe von <one>CD71</one>? <one>CD71</one> ist der <two>Transferrin-Rezeptor</two>.
639
+ - The <one>Cyclophilins</one> are a family of proteins. <two>They can bind to which molecule</two>? They can bind to <one>cyclosporine</one>.
640
+ - Nenne <one>ein Schlüsselmolekül der adaptiven Immunität</one>. A: <one>MHC-Moleküle</one>.
641
+ - Nenne ein Beispiel für eine <one>immunologische Naturkatastrophe</one>. A: <one>Verheerende Epidemien</one>.
642
+ - Both the <one>T-cell receptor</one> and an <two>antibody</two> can recognize (and bind to) epitopes. But the T-cell receptor has which additional advantage here? The T-cell receptor can also recognize epitopes that are (normally) buried within the antigen; antigens are first broken down into peptide fragments, before these epitopes are displayed on a MHC molecule to the T-cell receptor.
643
+ - Andere Bezeichnung für <one>Immunologischer Schutz</one>? <one>Feiung</one>.
644
+ - Give another name for <one>DNA vaccines</one>. A: <one>Genetic vaccines</one>.
645
+ - Hauptbestandteil der Epidermis (Zellen)? <one>Keratinozyten</one>.
646
+ - Nenne <one>einen Zelltyp im Immunsystem, der Apoptose induzieren kann</one>. A: <one>NK-Zellen</one> (<two>Natürliche Killerzellen</two>).
647
+ - Was können manche <one>pflanzliche Lektine</one>? Sie können <one>rote Blutkörperchen verklumpen</one>.
648
+ - <one>Welche T-Helferzelle Subklasse</one> aktiviert Epithelzellen und lockt neutrophile Granulocyten an? <one>TH17</one>.
649
+ - Which <one>cellular compartment</one> has <two>the license to kill</two>? The <one>Phagosome</one>. URL: https://en.wikipedia.org/wiki/Phagosome
650
+ - Give another name for <one>Immune senescence</one>. A: The <one>aging of the immune system</one>.
651
+ - <one>Wo</one> mögen wir ein <two>Epitop</two> finden? Als <one>Teil eines Antigens</one>.
652
+ - <one>IgA</one> können wir <two>in welchen drei Formen vorfinden</two>? (1) als <one>Monomer</one> (2) als <one>Dimer mit J-Kette</one> (3) als <one>sekretorische IgA</one>
653
+ - In Immunology we could see the <one>stranger hypothesis</one> and the "danger hypothesis". Who were the people who established these two hypotheses? (1) "stranger hypothesis": Janeway (2) <one>danger hypothesis</one>: <two>Matzinger</two>
654
+ - <one>Since when</one> are <two>Neutrophil extracellular traps</two> known? Since the year <one>2004</one>.
655
+ - Wovon hängt das Endergebnis einer Wirts-Parasitenbeziehung in normalerweise gesunden Menschen primär ab? Von der <one>Pathogenität eines Parasiten</one>.
656
+ - <one>Wann</one> wurde <two>Neomycin</two> entdeckt? <one>1948</one>.
657
+ - <one>Wann</one> liegt eine Infektion vor? Wenn mkikrobielle Keime in den Körper eindringen und sich dort vermehren.
658
+ - Das <one>Beta-Interferon Gen</one> ist normalerweise ausgeschalten. Wann wird es eingeschalten? Bei einer <one>viralen Infektion</one>.
659
+ - What means <one>ligare</one>? <one>Binding</one>.
660
+ - Was sind <one>bispezifische Antikörper</one>? Antikörper bei denen jede Bindungsstelle ein unterschiedliches Antigen bindet.
661
+ - Was findet man bei Menschen mit dem <one>DiGeorges Syndrom</one> kaum? <one>T-Lymphocyten</one>.
662
+ - <one>Wo</one> mögen wir <two>CD34</two> finden? <one>CD34</one> ist ein Adhäsionsprotein das man <two>auf manchen Stammzellen</two> finden kann.
663
+ - <one>Pathogens</one> are not the only causative agents of tissue and cells damage: name another causative agent here. A: <one>Trauma</one>.
664
+ - Give a mnemonic for the three complement-pathways. A: <one>C,A,L</one> - classical, alternative, <two>lectin-pathway</two>.
665
+ - Was detektiert <one>TLR3</one>? <one>dsRNA</one> - also <two>Viren</two>.
666
+ - What do we mean with the term <one>cell-autonomous immunity</one>? This is the process of using Interferons (IFNs) to induce the expression of hundreds of genes as part of an elaborate antimicrobial programme designed to combat infection in nucleated cells.
667
+ - <one>Immunological memory</one> underpins the concept of ... ? <one>vaccination</one>.
668
+ - <one>Which TLR</one> <two>recognizes dsRNA</two>? <one>TLR3</one>.
669
+ - <one>Welche Färbung</one> kann für die Granulozyten verwendet werden? Die <one>Giemsa-Färbung</one>.
670
+ - Was bewirkt ein <one>Zinküberschuss</one> bezogen auf das Immunsystem? Es führt zur <one>Immunsuppression</one>.
671
+ - Aus den <one>lymphoiden Arm</one> des hämatopoetischen Stammbaums gehen <two>welche drei Zelltypen hervor</two>? (1) <one>B-Zellen</one> (2) <one>T-Zellen</one> (3) <one>NK-Zellen</one>
672
+ - <one>Bei welchem Phänomen</one> tritt der sogenannte <two>Zytokinsturm</two> ein? Bei der <one>Sepsis</one>.
673
+ - What is the role of the <one>Cathelicidins</one>? <one>Cathelicidins</one> serve a critical role in <two>mammalian innate immune defense</two> against "invasive bacterial infection".
674
+ - Why is the name <one>Tumor necrosis factor</one> a misnomer? Because it does not cause necrosis; it causes <one>apoptosis</one>,so it should rather be called <two>Tumor apoptosis factor</two>. URL: https://en.wikipedia.org/wiki/Tumor_necrosis_factor_alpha
675
+ - <one>Why</one> has <two>Ferdinand Julius Cohn</two> become famous? He <one>classified bacteria</one> into four groups, based on shape - spherical, short rods, spirals, and threads.
676
+ - Does <one>innate immunity</one> <two>have the feature of memory</two>? <one>No</one>.
677
+ - Englische Bezeichnung für "Wächterzellen". A: <one>Sentinel cells</one>.
678
+ - The <one>Janus-family kinases</one> directly phosphorylate ...? <one>STAT Proteins</one>.
679
+ - <one>Welche Zellen</one> im menschlichen Körper produzieren <two>α-Defensine</two>? Die <one>Paneth-Körnerzellen</one>.
680
+ - In Immunology: is <one>memory</one> a good term to use? It should rather be called <one>immune memory</one>, or even better <one>immunological memory</one>. URL: https://en.wikipedia.org/wiki/Immunological_memory
681
+ - <one>Where</one> can we find the <two>VSG-genes</two> of Trypanosoma? These genes are located <one>near the telomeres</one>.
682
+ - Was bedeutet <one>perivasculare Lokalisierung</one>? Wenn sich Zellen bevorzugt <one>in der Nähe von Blutgefässen</one> aufhalten.
683
+ - Name the <one>two types of adaptive immunity</one>. A: (1) <one>humoral immunity</one> (2) <one>cell-mediated immunity</one>
684
+ - The main first three human defences against pathogens are ... ? (1) <one>Skin and mucosal surfaces</one> (2) <one>Innate immune system</one> (3) <one>Adaptive immune system</one>
685
+ - Give another name for the <one>TH1-cells</one>. A: <one>Inflammatory T cells</one>.
686
+ - Nenne <one>ein Beispiel</one> für einen <two>zellulären Aktivator der Immunglobulin-Gene</two>. A: <one>Nuclear Factor Kappa-Beta</one>. URL: https://de.wikipedia.org/wiki/NF-%CE%BAB
687
+ - Können <one>Neutrophile</one> Granatsplitter auflösen? Ja.
688
+ - <one>CD4 TH2 cells</one> can switch the antibody isotype from .. to <two>IgE</two>. A: <one>IgM</one>.
689
+ - Give a mnemonic to remember <one>CD4⁺ cells</one> versus <one>CD8⁺ cells</one>. A: <one>Help suppress a reaction.</one> <two>T helper cells</two> are <three>CD4+</three> and the "T-Suppressor cells" are <one>CD8+</one>.
690
+ - Nenne eine <one>systemische Entzündungsreaktion</one>. A: <one>Fieber</one>.
691
+ - <one>Welche Person</one> prägte den Begriff <two>Komplement</two>? <one>Paul Ehrlich</one>. URL: https://de.wikipedia.org/wiki/Paul_Ehrlich
692
+ - The <one>precursors of macrophages</one> are ... ? <one>Monocytes</one>.
693
+ - What is the major role of the <one>T-cell receptor</one>? The T-cell receptor is responsible for recognizing fragments of antigen as peptides bound to major histocompatibility complex (MHC) molecules.
694
+ - Pro Tag muss der menschliche Körper wieviel Gramm an <one>neutrophilen Granulozyten</one> synthetisieren? Etwa <one>100 Gramm</one>.
695
+ - <one>Chemokine receptors</one>, such as <two>CD4</two> or "CCR5", often belong to which protein family? They often belong to the <one>seven transmembrane helix family</one>.
696
+ - <two>Welche Person</two> hat die <one>passive Immunisierung</one> eingeführt? <one>Emil von Behring</one>. URL: https://de.wikipedia.org/wiki/Emil_von_Behring
697
+ - What is the <one>Kostmann syndrome</one>? The <one>complete absence of neutrophils</one>.
698
+ - Definiere den Begriff <one>Kreuzreaktion</one>. A: Dies ist die Reaktion eines Antikörpers mit einer Substanz die nicht Anlass für seine Bildung war.
699
+ - <two>Which cell</two> in the human body is especially productive when it comes to the production of <one>interleukins</one>? The <one>T-helper cells</one>.
700
+ - There are <one>three different Interferon genes</one> in the human genome. Which ones are induced "upeon exposure" to a virus/viral RNA? (1) "<u>IFN-Alpha</u>" (2) <one>IFN-Beta</one>
701
+ - Warum sind die <one>Tonsillen</one> wichtig in der Immunologie? Die Tonsillen sind durch ihre <one>Lage</one> wichtig bei der Abwehr von Keimen, die über Mund und Nasenraum eindringen.
702
+ - Name a cell type in the human body able to produce <one>β-defensins</one>. A: The <one>differentiated keratinocytes</one>.
703
+ - <one>TLR signaling triggers</one> ... ? Inflammation.
704
+ - Do <one>TLRs</one> form dimers? Yes, upon ligand‐binding.
705
+ - TLRs (Toll‐like receptors) have which two domains, in general? (1) an <one>extracellular recognition domain</one> (2) an <one>intracellular signaling domain</one>
706
+ - Nenne die <one>drei Komponenten des C1-Komplementproteins</one>. A: (1) <one>C1q</one> (2) <one>C1r</one> (3) <one>C1s</one>
707
+ - Was ist die <one>Avidität</one>? <one>Avidus</one> heisst <two>gierig</two>, und die Avidität eines Antikörpers ist die Stärke einer multivalenten Bindung zwischen Antigen und Antikörper.
708
+ - Anteil der Leukocyten <one>in %</one> im Blut? Nur <one>0.1%</one> der Zellen im Blut sind <two>Leukocyten</two>.
709
+ - Why the name <one>MHC restriction</one>? Because T cells are restricted to recognize only those antigens that are <one>associated with cell-surface MHC molecules</one>.
710
+ - Was heisst <one>FoxP3</one> in der Immunologie? <one>Forkhead box protein 3</one>.
711
+ - In humans, <one>TAP</one> is the <two>antigen peptide transporter</two>. It will transport antigens from the cytoplasm to ... ? To the <one>endoplasmic reticulum</one>.
712
+ - Name the <one>two subpopulations of neutrophils</one>. A: (1) <one>neutrophil-killers</one> (2) <one>neutrophil-cagers</one>
713
+ - Das Protein <one>RIG-1</one> ist ein cytoplasmatischer ... ? <one>RNA-Detektor</one>.
714
+ - Das <one>Tetrodotoxin</one> der <two>Fugu-Fische</two> wirkt wie? Es bindet an Sodium (Natrium) channels in Nervenzellen.
715
+ - Was ist eine <one>Granulozytose</one>? Dies ist <one>eine Vermehrung der Granulozyten im peripheren Blut</one>.
716
+ - An active <one>MAC</one> (<one>membrane attack complex</one>) is composed of the subunits C5b, C6, C7, C8 and C9 molecules. Which one of these molecules is present at the highest copy? <one>C9</one>.
717
+ - <one>T lymphocytes</one> originate from ... ? The <one>bone marrow</one>.
718
+ - What means <one>Hypersensitivity</one>? <two>Hypersensitivity</two> is <one>an immune response</one> that results in host damage.
719
+ - Welche <one>zwei Formen der Immunisierung</one> können unterschieden werden? (1) <one>Aktive Immunisierung</one> (2) <one>Passive Immunisierung</one>
720
+ - Anderer Begriff für eine <one>Ansammlung von B-Zellen</one>? <one>Follikel</one>.
721
+ - How many different subgroups exist among the helper T cells? Three.
722
+ - The <one>MAC</one> (<one>membrane attack complex</one>) protrudes about n nm from the surface of a pathogen? About <one>15 nm</one>.
723
+ - Wofür steht die Abkürzung <one>scFv</one>? A: <one>single chain Fragment variable</one>. URL: https://de.wikipedia.org/wiki/ScFv-Fragment
724
+ - <one>Blutproben im Labor</one> versetzt man warum genau mit <two>Citrat</two>? Um die Gerinnung zu hemmen.
725
+ - Wieso brauchen die Lymphozyten die <one>Selektine</one>? Damit sie <one>ihren Bestimmungsort finden können</one>.
726
+ - Was meinen wir mit <one>parenteral</one>? <one>Am Darm vorbei</one>; also <two>unter Umgehung des Darmes</two>. Dies sind Wege, bei denen Stoffe oder Krankheitserreger unter Umgehung des Darmtraktes in den Körper gelangen. Die <one>Spritze</one> ist ein Beispiel hierzu.
727
+ - What is the <one>effector function of B-cells</one>? The <one>secretion of antibodies</one>.
728
+ - Was sind <one>Opsonine</one>? Das sind Plasmabestandteile, die durch Anlagerung an körperfremde Substanzen deren Elimination durch Phagozytose begünstigen.
729
+ - What is the main function of the MHCs? The main function of MHC molecules is <one>to bind peptide fragments derived from pathogens and display them on the cell surface for recognition by the appropriate T cells</one>.
730
+ - Nenne ein <one>Beispiel</one> für eine <two>dendritische Zelle</two> der Haut. A: Die <one>Langerhanszellen</one>.
731
+ - What are <one>GF-mice</one>? <one>Germ-free mice</one>.
732
+ - In Immunology: what means the <one>RSS</one> Sequence? <one>Recombination signal sequences</one>.
733
+ - <one>Which cell</one> carries the <two>Fc receptor Fc-epsilon-RI</two>? An <one>eosinophil</one>.
734
+ - <one>MBL</one> belongs to which group of proteins? To the <one>acute phase proteins</one>. URL: https://en.wikipedia.org/wiki/Mannan-binding_lectin
735
+ - Welches <one>Interleukin</one> agiert als Wachstumsfaktor für <two>Tc-Zellen</two>? <one>Interleukin-2</one>.
736
+ - Typically <one>inflammation</one> at the site of infection is initiated by which cell in the human body? By <one>macrophages</one>. URL: https://en.wikipedia.org/wiki/Macrophage
737
+ - What is meant with the term <one>xenoimmunity</one>? These are <one>disease-causing immune responses to the commensal microbiota</one>.
738
+ - In der Immunologie: wie heisst der <one>MHC</one> beim Menschen? <one>HLA</one>.
739
+ - Nenne <one>ein Cytokin das zellschädigend ist</one>. A: <one>TNF-Alpha</one>. URL: https://en.wikipedia.org/wiki/Tumor_necrosis_factor_alpha
740
+ - What is a better word for an <one>antigen</one>? An <one>immunogen</one>.
741
+ - Nenne eine <one>Immunzelle</one>, die MHC-II erkennen kann. A: <one>TH-Zellen</one>.
742
+ - <one>Wer</one> ist <two>der Erreger von Malaria</two> und verursacht diese? <one>Plasmodium falciparum</one>.
743
+ - Nenne eine Funktion der <one>Akute-Phase-Proteine</one>. A: Dienen der <one>Opsonierung der Krankheitserreger</one>.
744
+ - <two>Which specific cells</two> in the human body <one>do not express MHC class I receptors</one> on their surface? <one>Red blood cells</one>.
745
+ - Künstlicher Antikörper-Ersatz durch ...? Durch <one>Aptamere</one>.
746
+ - Wie nennen wir <one>MHC-Rezeptoren</one> noch, im Menschen? A: <one>HLA</one>: <two>Humane Leukocytenantigene</two>. URL: https://en.wikipedia.org/wiki/Human_leukocyte_antigen
747
+ - <one>Chemokines</one> are ... ? A group of small proteins that function as chemoattractants for lymphocytes and phagocytes.
748
+ - The <one>adhesion of Leukocytes to endothelia</one> requires ...? Integrin activation.
749
+ - How is a <one>sepsis</one> caused? It is caused by an immune response, triggered by an infection.
750
+ - How can we meaningfully translate the phrase <one>Functio laesa</one>? <one>Loss of function</one>.
751
+ - Gibt es ein Beispiel für eine <one>Abweichung von den Kochschen Postulaten</one>? Die <one>Tuberculosi bacteria</one>. Nur in 10% der Fälle verursachen sie Symptome.
752
+ - What is an <one>Antigen</one>? Any material/molecule that <one>induces an immune response</one>.
753
+ - <one>Where</one> are the complement proteins synthesized? <one>In the liver</one>.
754
+ - <one>Wie lange hält der Schutz</one> durch eine <two>passive Immunisierung</two> an, in etwa? In etwa <one>3 Monate</one>.
755
+ - Nenne einen <one>Vertreter der Lektine</one>, die auch <two>in der Immunologie relevant sind</two>. A: <one>Selektine</one>.
756
+ - Why is <one>prednisone</one> used in immunology? Because prednisone <one>suppresses an immune reaction against a transplanted organ</one>. URL: https://en.wikipedia.org/wiki/Prednisone
757
+ - Was sind <one>Immuntoxine</one>? <one>Antikörper-Toxin Komplexe</one>.
758
+ - What does <one>the concept of immunodominance</one> specify? A particular epitope (on a pathogen) may be dominant and ultimately triggers the immune response. The other epitopes that may exist, are not as effective (also called “subdominant”) and do not lead to an effective response.
759
+ - Another term for an "Epitope"? An epitope is an <one>Antigenic determinant</one>.
760
+ - Other term for <one>septic shock</one>? <one>Severe systemic inflammation</one>.
761
+ - Name the 3 signature properties of <one>adaptive immunity</one>. A: (1) <one>diversity</one> (2) <one>specificity</one> (3) <one>memory</one>
762
+ - <one>Histamin</one> ist bei Entzündungsreaktionen wichtig. <two>Welche Zellen</two> bilden <one>Histamin</one>? Die <one>Mastzellen</one>.
763
+ - <one>Which dendritic cell type</one> is the major one that acts as sentinel against viral infections? The <one>plasmacytoid dendritic cells</one>.
764
+ - Was sind <one>Abzymes</one>? <two>Abzymes</two> sind <one>katalytisch wirksame Antikörper</one>.
765
+ - <one>Wieviele TLRs</one> sind <two>beim Menschen</two> bekannt? <one>10</one>.
766
+ - In general, <one>when</one> may a <two>secondary immune response</two> occur? Upon a <one>re-infection</one>.
767
+ - <one>CD4</one> interagiert mit <two>welchem MHC</two>? <one>MHC II</one>.
768
+ - Give an example for a <one>secondary lymphoid organ</one>. A: The <one>lymph node</one>.
769
+ - What is meant with the <one>clonal selection hypothesis</one>? Lymphocytes specific for a large number of antigens exist before exposure to the antigen. When an antigen enters, it selects the specific cells and activates them.
770
+ - Wo finden wir meistens <one>Toll-like Rezeptoren</one>? In oder an <one>Endosomen</one>.
771
+ - In the immune system, the complement proteins "C3b" and "iC3b" act as opsonins by virtue of the fact that they specifically bind to receptors on which two cells? (1) <one>neutrophils</one> (2) <one>macrophages</one>
772
+ - Which <one>organelle</one> is <two>highly amplified in plasma cells</two>? The <one>rough ER</one>.
773
+ - Name <one>a regulatory protein</one> that can cause a B cell to become a plasma cell. A: <one>BLIMP-1</one>. URL: https://en.wikipedia.org/wiki/Plasma_cell#Immature_plasma_cells
774
+ - In <two>Immunology</two>: what means <one>cSMAC</one> and <one>pSMAC</one>? (1) central supramolecular activation cluster. (2) peripheral supramolecular activation cluster.
775
+ - Werden <one>Lymphknoten</one> durchblutet? Ja.
776
+ - In immunology: the function of <one>MBL</one> is similar to which other protein in the complement pathway? <one>C1q</one>.
777
+ - Name the two main categories of <one>white blood cells</one>. A: (1) <one>lymphoid</one> (2) <one>myeloid</one>
778
+ - Was sind <one>immunologisch privilegierte</one> Regionen? Dies sind <one>durch anatomische Verhältnisse bedingte Regionen</one>, in denen durch fehlende Lymphdrainage Fremdantigene persistieren können. Es kommt hier also nicht zu einer vollentwickelten Abwehr.
779
+ - Der <one>direkte Vorläufer der Neutrophile</one> ist ... ? Der <one>Myeloblast</one>.
780
+ - Wie nennen wir die <one>dendritischen Zellen in der Haut</one>? <one>Langerhans-Zellen</one>.
781
+ - Is <one>an attenuated viral vaccine</one> better than <two>a dead viral vaccine</two>? <one>Yes</one>, the immune response will be stronger.
782
+ - <two>Welche Therapie</two> mögen wir verwenden, um die <one>rheumatoide Arthiritis</one> zu bekämpfen? Die <one>Anti-TNF-alpha-Therapie</one>.
783
+ - What is the primary function of a <one>regulatory T lymphocyte</one>? It is <one>to suppress other T cells</one>.
784
+ - Give another name for <one>tolerance</one>. A: <one>Immunologic unresponsiveness</one>.
785
+ - Historically, <one>one of the first serological tests</one> to be developed was ... ? The <one>precipitation test</one>.
786
+ - What means <one>perinatal</one>? This refers to the period immediately before and after birth.
787
+ - Which model can explain <one>autoimmunity</one>? The <one>Danger Model</one>.
788
+ - <one>T-Zellen</one> mit AlphaBeta-TCR Rezeptor entwickeln sich zu ... ? CD4 und CD8 Zellen.
789
+ - Wofür steht die Abkürzung <one>Flt3</one>? <one>FMS-like tyrosine kinase 3</one>.
790
+ - Was ist mit dem Begriff <one>immunologische Synapse</one> gemeint? Dies ist eine physische Kontaktstelle zwischen Immunzellen und anderen Zellen.
791
+ - Wann wurde die <one>Variolierung</one> in Europa eingeführt? Ca. <one>1720</one>.
792
+ - In der Immunologie: was ist mit dem Begriff <one>anergisiert</one> gemeint? <one>Reaktionsunfähig gemacht</one>.
793
+ - Name <one>a direct predecessor of memory B cells</one>. A: <one>Germinal center B cells</one>. URL: https://en.wikipedia.org/wiki/Germinal_center
794
+ - Give an example for <one>a complex essential virulence factor</one> used by many <three>gram-negative bacteria</three>. A: <one>Type III secretion systems</one> (<two>T3SSs</two>)
795
+ - When the <one>BcR</one> is created, does first <three>V-DJ rearranging</three> or <three>D-J rearranging</three> happen? <one>D-J rearranging</one> comes first.
796
+ - Andere Bezeichnung für <one>massive, horizontale Übertragung von Rhinoviren</one>? <one>Niesen</one>.
797
+ - Ursache der <one>Tay-Sachs Disease</one>? Ausfall von <one>Beta-N-Acetylhexosaminidase</one>.
798
+ - The most common <one>Fc receptor</one> on the surface of an NK cell is called ... ? <one>CD16</one>.
799
+ - Name two <one>transcription factors</one> that can induce the production of <two>IFN-Alpha</two> and <two>IFN-Beta</two>. A: (1) <one>IRF3</one> (2) <one>IRF7</one>
800
+ - Name an extremely primitive way how <one>a tumor</one> could protect itself against <two>immunotoxins</two>. A: By its <one>sheer size</one>.
801
+ - Nenne einen wichtigen Slogan von <one>Polly Matzinger</one>. A: <one>To detect and protect against danger</one>.
802
+ - What is meant with the expression <one>iTreg</one> in Immunology? This refers to <one>inducible regulatory T cells</one>.
803
+ - <one>NOD-like Rezeptoren</one> (NLRs) führen intrazellulär zu einer Ausbildung ... ? Des <one>Inflammasoms</one>.
804
+ - <one>Infektionen</one> lösen eine ... aus. A: <one>Entzündungsreaktion</one>.
805
+ - Name a <one>non-specific immunotherapy</one>. A: Boost the immune system in a general way.
806
+ - Why may it be useful, in immunology, that <one>adhesion</one> to cells is not strong? When adhesion is weak then this may allow, for instance, leukocytes to roll along the vascular endothelial surface.
807
+ - Definiere den Begriff <one>Xenotyp</one>. A: Ein homologes Gen aus einer anderen Spezies, welche für das selbe Protein kodiert.
808
+ - There is <one>ADCC</one> (<two>Antibody-dependent cell-mediated cytotoxicity</two>). Is there also a non-antibody dependent cytotoxicity variant? Yes, <royalblue>CDC</royalblue>, aka <one>complement-dependent cytotoxicity</one>.
809
+ - How could we define the term <one>adjuvants</one>? These are <one>substances that can enhance the immunogenicity of an antigen</one>.
810
+ - Warum die Bezeichnung <one>M cells</one>? <one>M</one> steht hier für <one>microfold cells</one>.
811
+ - <one>NETosis</one> stands for ... ? <one>NET activation and release</one>.
812
+ - What means <one>WBC count</one> im Immunology? <one>White blood cell count</one>.
813
+ - Wie nennen wir <one>die Immunzellen der Insekten</one>? <one>Hämocyten</one>.
814
+ - What is the <one>opposite</one> of <two>immunopathogenic</two>? <one>Immunoprotective</one>.
815
+ - The <one>classical pathway in the complement cascade</one> starts with ... ? <one>C1q</one>.
816
+ - Nenne ein <one>Antihistaminikum</one>. A: <one>Pyribenzamin</one>.
817
+ - The <one>most abundant white blood cells in mammals</one> are ... ? The <one>Neutrophils</one>.
818
+ - How do we call <one>membrane-bound Immunoglobulins</one>? This is the BCR, the <one>B-cell receptor</one>.
819
+ - Give another term for <one>lowest concentration</one> in immunology. A: <one>Highest dilution</one>.
820
+ - Was meinen wir mit dem <one>Bence-Jones Protein</one>? Dies bezieht sich auf <one>zwei leichte Ig-Ketten</one>, die miteinander verbunden sind.
821
+ - Who produces <one>Monokines</one>? <one>Mononuclear phagocytes</one>.
822
+ - <one>Superantigene</one> sind Toxine, die eine Bindung zwischen welchen Zellen vermitteln? Zwischen Zellen mit einem "T-Zell Rezeptor"; und der "MHC class 2" einer <one>APC</one> ("Antigen presenting Cell").
823
+ - What kind of protein is <one>IRAK4</one>? It is a <one>protein kinase</one>.
824
+ - What usually occurs before <one>antigen presentation</one>? <one>Antigen processing</one>.
825
+ - Barriere auf Chitinbasis im Darm der Insekten? Die <one>peritrophische Matrix</one>.
826
+ - Zellulärer Hauptbestandteil des <one>Eiters</one>? <one>Neutrophile Granulocyten</one>.
827
+ - Hauptaufgabe der <one>Akute-Phase-Proteine</one>? Dienen der <one>Opsonierung der Krankheitserreger</one>.
828
+ - <one>Naive T-Zellen</one> können in den Lymphknoten wandern, dank welcher Moleküle an der Oberfläche? <one>L-Selektine</one>.
829
+ - A. W. für ein <one>Epitope</one>? <one>Antigene Determinanten</one>.
830
+ - Der <one>Ductus thoracius</one> mündet in ...? Die <one>vena subclavia sinistra</one>.
831
+ - Humans encode for <one>RANKL</one>, a membrane protein. What does <one>RANKL</one> stand for? <one>Receptor activator of nuclear factor kappa-B ligand</one>.
832
+ - The ligand to <one>P-selectin</one> is typically ... ? <one>sialyl-Lewis</one>.
833
+ - <one>MHC-Klasse-I-Moleküle</one> bestehen aus einer Alpha-Kette durch die Plasmamembran, sowie ... welcher Kette, die diese Struktur stützt? Beta2-Mikroglobulin.
834
+ - Nenne eine wichtige Aufgabe der <one>T-Helfer-Lymphozyten</one>. A: <one>Lymphokin-Sekretion</one>.
835
+ - Was passiert wenn eine T-Helferzelle viel <one>Interleukin-2</one> produziert? Die Zelle proliferiert - dadurch produziert sie auch viele IL-2 Rezeptoren, mit dem Effekt das noch mehr Th-Zellen gebildet werden.
836
+ - Was sind <one>Toxoide</one>? <one>Extrakte von Toxinen</one>.
837
+ - NF-Kappa-Beta ist ein Transkriptionsfaktor. Im Zellkern aktiviert dieser Transkriptionsfaktor vor allem ... welche Gene? Gene die eine Rolle bei der Entzündungsreaktion spielen; also <one>proinflammatorische Gene</one>.
838
+ - Name one critical factor for establishing <one>host specificity</one> of pathogens. A: Attachment to particular cell-surface molecules.
839
+ - Typen von Granulocyten? (1) Eosinophil (2) basophil (3) Neutrophil. (Merkschema: "B-E-N")
840
+ - Eine <one>dendritische Zelle</one> kontaktiert pro Stunde etwa wieviele T-Lymphozyten im Lymphknoten? Etwa <one>500</one>.
841
+ - Was ist die <one>Hämatopoese</one>? Dies ist die <one>Bildung der Blutzellen</one>.
842
+ - Provide another word for <one>swelling</one>. A: <one>Edema</one>.
843
+ - Give another name for the term <one>adjuvant</one>. A: <one>Immune system stimulating material</one>.
844
+ - What is the major task of the <one>MHC protein</one>? To present a foreign peptide to a T cell carrying an appropriate TCR receptor - thereby activating that T cell.
845
+ - Cells infected with <one>viruses</one> that reside in the cytosol are eliminated by ... ? By <one>cytotoxic cells</one>.
846
+ - Wie lange dauert es, in Tagen, bis <one>das angeborene Immunsystem</one> einen Erreger effektiv bekämpft? Etwa <one>5 Tage</one>.
847
+ - Was ist mit dem Begriff <one>soziale Immunität</one> gemeint? Wenn zum Beispiel <one>Bienen</one> Wabenzellen und Artgenossen putzen.
848
+ - Why is <one>self-tolerance</one> important? Because it is vital in order to prevent harmful reactions against one's own cells.
849
+ - Nenne eine <one>Schwachstelle</one> des HIV-Antikörpertests. A: Es gibt eine <one>diagnostische Lücke</one>.
850
+ - Hat die <one>angeborene Immunität</one> ein "Gedächtnis"? Nein.
851
+ - <one>CD28</one> ist ein Marker für welche Zellen? <one>T-Lymphocyten</one>.
852
+ - Lebensdauer der <one>basophilen Granulozyten</one> im Blut? ca. <one>2 Wochen</one>.
853
+ - Das Komplementprotein <one>C1q</one>, Teil von C1, besteht aus wievielen Polypeptidketten? <one>18</one>.
854
+ - <one>Fieber</one> führt zu einer Erhöhung der Körpertemperatur, über Pyrogene. Wer im menschlichen Körper reguliert die Temperatur? Der <one>Hypothalamus</one>.
855
+ - Warum benötigt der menschliche Körper <one>NK-Zellen</one>? Diese töten <one>intrazelluläre Erreger</one>, wie zum Beispiel Viren.
856
+ - First <one>enzymes</one> to be activated in the lectin pathway? MASP-1 and MASP-2; mannose-binding lectin associated serine proteases.
857
+ - Das Genprodukt bei der <one>Gaucher-Krankheit</one> ist ... ? <one>Glucorebrosidase</one>.
858
+ - In immunology: what does the abbreviation <one>MALT</one> stand for? <one>Mucose-associated lymphoid tissue</one>.
859
+ - How many <one>antigen-binding receptors</one> can we find on the surface of a typical, average T cell? About <one>30.000</one>.
860
+ - What are <one>chemokines</one>? Chemokines are secreted proteins that atract cells bearing chemokine receptors, such as neutrophils or monocytes, out of the bloodstream and into an infected tissue.
861
+ - Give another term for the two words <one>adaptive immunity</one>. A: <one>Specific immunity</one>.
862
+ - How did old literature call <one>PAMPs</one>, sort of? As the <one>endotoxin receptor</one>.
863
+ - Define an <one>opportunistic pathogen</one>. A: This is <one>a pathogen that causes disease only in the absence of normal host resistance</one>.
864
+ - Nenne eine Immunzelle, die <one>keine Antigene präsentieren kann</one>. A: Die <one>T-Zellen</one>.
865
+ - TLRs signal via the MYD88 protein. What does <one>MYD</one> stand for here? <one>Myeloid differentiation</one>.
866
+ - In der Immunologie: was bedeutet der Begriff <one>semiallogen</one>? Das heisst <one>zu 50% ein Fremdkörper</one>.
867
+ - Nenne <one>eine gereinigte Trägersubstanz für Antigene</one>. A: <one>Sepharose</one>.
868
+ - What is <one>the most distinctive feature of T cells</one>? The ability to recognize antigens as a small peptide fragment bound to a MHC molecule. That way T cells can detect the presence of an intracellular pathogen.
869
+ - Which <one>hormone</one> can act as <lightseagreen>an anti-inflammatory agent</lightseagreen>? <one>Cortisol</one>.
870
+ - <one>Which component</one> of the complement pathway <two>initiates formation of the membrane-attack complex</two>? <one>C5b</one>.
871
+ - What is meant with the term <one>anaphylatoxin</one>? This refers to a <one>mediator of inflammation</one>.
872
+ - We can see a notation such as <one>C3a</one> and <one>C3b</one> in the complement system. What does the a and b mean here, respectively? This typically means that the component a is the smaller one; thus, in the example given here, C3a is the smaller fragment, and C3b is the larger fragment. This is true for all complement proteins except for C2a, which is larger than C2b.
873
+ - <one>Complement components</one> are designed by numerals typically, such as C1-C9, but may also be a simple letter symbol. Give one such example for the latter. A: <one>factor D</one>.
874
+ - Name two general, important functions of the complement system. A: (1) <one>lysis of bacteria</one>, in particular (2) <one>opsonization</one>, which in turn promotes phagocytosis of particulate antigens
875
+ - In general, <one>the complement cascade</one> may be initiated by several proteins that circulare in the normal serum, collevtively called? The <one>acute phase proteins</one>.
876
+ - Was akkumuliert beim <one>Tay-Sachs Disease</one>? Das <one>Ganglioside GM2</one>.
877
+ - Why does the human body make use of an <one>inflammatory response</one>? To recruit new phagocytic cells and circulating effector molecules to the site of infection.
878
+ - How many amino acids may we find in the <one>J gene segment</one>? Up to <one>13</one>.
879
+ - Deutscher Name für die <one>Tuberkulose</one>? <one>Schwindsucht</one>.
880
+ - <one>Macrophages</one> can synthesize certain chemokines, such as "CXC8". What is the effect of this chemokine - will it attract or reject other cells? It will specifically <one>attract neutrophils</one>.
881
+ - Nenne ein <one>surface antigen</one> das man bei <one>Schweinen</one> aber nicht bei <one>Menschen</one> findet. A: <one>Alpha-1,3-Galactosidase</one>.
882
+ - Was ist die <one>Morbidität</one>? Das <one>Verhältnis</one> von kranken Individuen zur Risikopopulation im Bezugszeitraum.
883
+ - What is the <one>rheumatoid factor</one>? The rheumatoid factor is <one>an autoantibody</one>.
884
+ - In der Immunbiologie: wofür steht die Abkürzung <one>TTSS</one>? <one>Type-III-Secretion-System</one>.
885
+ - In immunology: What is meant with an <one>effector response</one>? That is the response by the immune system that <one>neutralizes an invader</one>.
886
+ - Wann wurde das <violet>Prader-Willi Syndrom</violet> erstmals beschrieben? 1956.
887
+ - Which hypersensitivity type is cell-mediated? <one>Type IV</one> Hypersensitivity is cell-mediated.
888
+ - Was sind die <violet>Hassal-Körperchen</violet>? Granuläre Bereiche innerhalb der Markregion des Thymus. Dort werden wahrscheinlich apoptotische Zellen abgebaut.
889
+ - Formation of fibrin is "secondary hemostasis" or "primary hemostasis"? It is <one>secondary hemostasis</one>.
890
+ - Give a specific example for a <one>hapten</one>. A: <one>Vitamin K1</one>.
891
+ - All the cellular elements of blood, including the cells of the immune system, arise from ... in the ... ? Arise from "pluripotent hematopoietic stem cells in the bone marrow".
892
+ - The most common Fc receptor on the surface of a <one>natural killer cell</one> is called Fc-gamma-RIII. Give another name for it (CD-name). A: <one>CD16</one>.
893
+ - Why is <one>immunological memory</one> considered to be so important? Because that way people may be protected from a particular infection in a life-long manner.
894
+ - Welche histologischen Bereiche finden wir in einem <one>Lymphknoten</one> üblicherweise? (1) Cortex (2) Paracortex (3) Medulla
895
+ - Plasmazytoide DCs produzieren was? <one>Interferon</one> (nach "Antigenkontakt")
896
+ - Was ist die normale Funktion des <one>IRAK4-Proteins</one>? NF-Kappa B zu aktivieren (ein Transkriptionsfaktor).
897
+ - <one>NETs</one> are formed by which cells? By "Neutrophiles". (Mnemonic: beginnt mit dem Buchstaben "N")
898
+ - Where in a cell are MHC class I molecules synthesized? In the "endoplasmic reticulum" (<one>ER</one>).
899
+ - Which cells are in a "granuloma"? "<u>Macrophages</u>".
900
+ - What is "<u>the key physiological function of NF-kappa-B</u>"? The orchestration of the inflammatory responses to both infection and tissue damage.
901
+ - What are "<u>Superantigens</u>"? Proteins capable of eliciting a very strong response because they activate more T-Cells than a normal response.
902
+ - IRAK4 and IRAK1 are associated with MyD88, but which receptor is associated with the latter, connected to TRAM and TIRAP? The "TLR4-receptor".
903
+ - Name an "activity" of the "JAK proteins". A: JAKs possess a "kinase activity".
904
+ - How do Tc cells kill a bacterium? By "inducing apoptosis" in an infected eukaryotic cell.
905
+ - Why the name "C-reactive protein"? It can bind "pneumococcal C polysaccharid".
906
+ - Why may it be a bad idea to inject a too-low dose of an antigen? (1) Because no immune response may be induced (2) or, even worse, tolerance may be induced
907
+ - Nenne die beiden "klassischen Entzündungszellen". A: (1) Makrophagen (2) neutrophile Granulocyten
908
+ - Nenne zwei Funktionen der roten Pulpa des Milzparenchym! A: (1) Abbau überalterter Erythrozyten sowie (2) Blutspeicherung
909
+ - Another word for "harmless antigen"? "Innocous antigen".
910
+ - When were the "Henle-Koch postulates" first formulated? In "1840". URL: https://de.wikipedia.org/wiki/Henle-Koch-Postulate
911
+ - In der Immunologie sprechen wir vom dem berühmten "immunologischen Trio". Was bezeichnen wir damit? (1) die "dendritische Zelle", die Th und Tc aktiviert (2) die "Th Zelle", die die "Tc Zelle" unterstützt (3) die Tc Zelle, die hierbei "erstaktiviert" wird
912
+ - "NKT cells" are a subpopulation of ...? "T cells".
913
+ - Warum brauchen wir IgE? Gegen "helminthic parasites".
914
+ - Name the 2 effector mechanisms of the "adaptive immune system". A: (1) "antibodies" (2) "effector T cells"
915
+ - Name a "co-stimulatory molecule" needed by mature dendritic cells but missing in immature dendritic cells. A: The "B7 molecule".
916
+ - Name the 3 subpopulations of T cells. A: (1) "T helper cells" (2) "T cytotoxic cells" (3) "T regulatory cells"
917
+ - Diameter of monocytes (from, to)? 10-15 micrometers.
918
+ - W. h. "morbidus"? Krank.
919
+ - How is C3b normally stabilized? When it meets LPS.
920
+ - Why is MHC I important? It can capture viral protein fragments and display these on the cell surface.
921
+ - Is MHC I or MHC II more widespread? MHC I. Almost every nucleated cell of the body has it.
922
+ - What is the job of the "AIRE Transcription factor"? It prevents the immune system from attacking the body itself.
923
+ - "Tylosin" wird gegen welches Bakterium eingesetzt? Gegen Mycoplasma.
924
+ - Does Serum contain clotting proteins? No.
925
+ - Gib 5 allgemeine Beispiele für Erreger-Wirt-Wechselbeziehungen. A: (1) Kommensalismus (Erreger lebt vom Überschuß des Wirts) (2) Mutualismus: gegenseitiger Vorteil, keine Lebensnotwendigkeit (3) Symbiose: Leben in einem Abhängigkeitsverhältnis (4) Phoresie: Transportgelegenheit (5) Parasitismus
926
+ - Why does it take several days to develop a protective adaptive response? Initially only a few lymphocytes are available to interact with each antigen.
927
+ - <one>Who</one> established the <two>side chain theory</two>? <one>Paul Ehrlich</one>. URL: https://de.wikipedia.org/wiki/Paul_Ehrlich []
928
+ - Are <one>basophils</one> <two>phagocytic</two>? <one>No</one>. URL: https://en.wikipedia.org/wiki/Basophil []
929
+ - <one>Histamine</one> is <two>a ...active amino acid</two>, important for mast cells. A: <one>Histamine</one> is <two>a vasoactive amino acid</two>. []
930
+ - Der <one>direkte Vorläufer eines Erythrocyten</one> ist ... ? Ein <one>Erythroblast</one>. URL: https://de.wikipedia.org/wiki/Erythropoese#Erythroblast []
931
+ - In der Evolution des Immunystems: gab es <one>zuerst Komplement</one> <two>oder</two> <one>zuerst Antikörper</one>? <one>Zuerst</one> <two>entstand das Komplementsystem</two>; <three>danach entstanden die Antikörper</three>. []
932
+ - In Immunology: what is typically meant with an <one>immune complex</one>? This refers to an <one>antigen-antibody complex</one> normally. []
933
+ - Nenne <one>zwei primäre lymphatische Organe</one>. A: (1) <one>Knochenmark</one> (2) <one>Thymus</one> []
934
+ - <one>Wieviel Prozent</one> der <two>Lymphocyten im Blut</two> <three>sind NK-Zellen</three>? <one>5-10%</one>. []
935
+ - Das <one>weltweit erste Vakzin</one> <two>wurde wann entwickelt</two>? <one>1796</one>. []
936
+ - During inoculation, <one>which Immunoglobulin</one> can we find when we inject an antigen for the <two>first time</two>, and then for the second time? Initially, <one>IgM</one> is produced. At the second injection (<two>booster</two>), the body creates <three>IgG</three>. []
937
+ - <one>Which cells</one> <two>proliferate into effector cells</two>? The <one>lymphocytes</one>. []
938
+ - Are <one>cytokines</one> stored? <two>No</two> - Cytokines are <one>usually not stored</one>. []
939
+ - <one>Opsonization</one> typically leads to the activity of ... <two>which cell</two> in the human body? A <one>phagocyte</one>. []
940
+ - <one>Which immune cell</one> is famous for its role in <two>promoting vasodilation</two>? <one>Mast cells</one>. URL: https://en.wikipedia.org/wiki/Mast_cell []
941
+ - <one>Which cells</one> <two>kill other cells infected with virus</two>? The <one>cytotoxic T cells</one>. []
942
+ - Can <one>mechanical forces</one> <two>induce inflammation</two>? <one>Yes</one>. []
943
+ - <one>Cytotoxische T-Zellen</one> <two>erkennen was genau auf der Zelloberfläche</two>? <one>Cytotoxische Z-Zellen</one> erkennen die <two>MHC-I Klasse</two>. []
944
+ - <one>T-Lymphozyten</one> <two>durchlaufen im Thymus</two> <three>wieviele Selektionsschritte</three>? <one>Zwei</one>. []
945
+ - Do <one>memory T cells</one> <two>react more rapidly to antigen challenges</two> <three>than do naive T cells</three>? <one>Yes</one>. []
946
+ - What typically happens to a <one>lymphocyte</one> <two>when they are deprived of stimuli occurring via antigen contact</two>? They will <one>die by apoptosis</one> (<two>excluding memory cells</two>). []
947
+ - <one>Which component</one> of the <two>complement system</two> <three>enhances inflammation</three>? <one>C3a</one>. URL: https://en.wikipedia.org/wiki/C3a_(complement) []
948
+ - <one>Wie lange</one> dauert es, <two>bis die adaptive Immunantwort anläuft</two>? Etwa <one>5 Tage</one>. []
949
+ - Wie beeinflusst <one>Cortisol</one> <two>die Immunantwort</two>? <one>Cortisol</one> <two>hemmt</two> <three>die Immunantwort</three>. []
950
+ - Lateinisch für die <one>Pocken</one>? <one>Variola</one>. URL: https://de.wikipedia.org/wiki/Pocken []
951
+ - Nenne <one>die Effektorzellen</one> der <two>erworbenen Immunität</two>. A: (1) <one>B-Zellen</one> (2) <one>T-Zellen</one> []
952
+ - The <one>predominant cells in pus</one> <two>are ... </two>? The <one>neutrophils</one>. URL: https://en.wikipedia.org/wiki/Pus []
953
+ - The <one>components</one> found in an <two>Abzyme</two> are ... ? <one>Antibody</one> + <one>Enzyme</one>. URL: https://en.wikipedia.org/wiki/Abzyme []
954
+ - <one>MadCAM1</one> <two>gehört zu welcher Familie</two>? <one>MadCAM1</one> ist ein <two>Adressin</two>. []
955
+ - <one>Which signals</one> <two>(may) trigger</two> <three>the adaptive immune system</three>? <one>Danger signals</one>. []
956
+ - <one>Wo</one> genau können wir <two>FR</two> (<one>Framework Regions</one>) finden? Im <one>variablen Anteil eines Antikörpers</one>. []
957
+ - Um zu einer <one>Antikörper-produzierenden Plasmazelle</one> <two>zu differenzieren</two>, <three>müssen B-Zellen mit welcher Zelle interagieren</three>? Mit <one>TH-Zellen</one>. []
958
+ - Are <one>MHC molecules</one> <two>glycoproteins</two>? <one>Yes</one> they are. []
959
+ - Die <one>Bluttplättchen</one> <two>gehen aus welchen Zellen hervor</two>? <one>Megakaryocyten</one>. URL: https://en.wikipedia.org/wiki/Megakaryocyte []
960
+ - Are <one>neutrophils</one> <two>phagocytes</two>? <one>Yes</one>. []
961
+ - Wissenschaftlicher Name für die <one>Kinderlähmung</one>? <one>Poliomyelitis</one>. URL: https://de.wikipedia.org/wiki/Poliomyelitis []
962
+ - Is a <one>PAMP</one> <two>normally found in the human body</two>? <one>No</one>, a <two>PAMP</two> is <three>not</three> normally found in the body. []
963
+ - Is <one>smallpox</one> <two>caused by a virus</two> or <two>by a bacterium</two>? By a <one>virus</one>. []
964
+ - Der <one>Hauptproduzent von</one> <two>TNF-Alpha</two> im menschlichen Körper ist ... ? <one>Makrophagen</one>. URL: https://de.wikipedia.org/wiki/Makrophage []
965
+ - The <one>secondary adaptive immune response</one> <two>is possible only because of which phenomenon</two>? <one>Memory</one>. []
966
+ - How do we call molecules that <one>stimulate immune responses</one>? <one>Immunogens</one>. URL: https://en.wikipedia.org/wiki/Immunogen []
967
+ - Können <one>β-Defensine</one> die <two>Bakterienwände zerstören</two>? <one>Ja</one>. URL: https://en.wikipedia.org/wiki/Beta_defensin []
968
+ - In der Immunologie: andere Bezeichnung, in Deutsch, für <one>Lobuli</one> in der Immunologie? <one>Thymuslappen</one>. URL: https://de.wikipedia.org/wiki/Thymus []
969
+ - <one>Lymphocytes</one> <two>that have not (yet) encountered a particular antigen</two> <three>are said to be ... </three>? <one>Naive</one>. []
970
+ - <one>Andere Bezeichnung</one> für das <two>quantitative Maß der Pathogenität eines Pathogens</two>? Die <one>Virulenz</one>. URL: https://de.wikipedia.org/wiki/Virulenz []
971
+ - Name a so-called <one>vasoactive factor</one>. A: <one>Histamine</one>. []
972
+ - The <one>daily production of which Ig</one> - in humans - is <two>the largest</two>? <one>IgA</one>. []
973
+ - <one>Histamin</one> <two>ist bei Entzündungsreaktionen wichtig</two>. <three>Welche Zellen bilden Histamin</three>? Die <one>Mastzellen</one>. []
974
+ - <one>Which immune cell</one> produces <two>Monokines</two>? Only the <one>monocytes</one>. URL: https://en.wikipedia.org/wiki/Monocyte []
975
+ - Die <one>Aktivierung der Mastzellen</one> steht <two>im Zusammenhang mit welchen Antikörpern</two>? <one>IgE</one>. []
976
+ - Besitzen <one>Vögel</one> <two>ein adaptives Immunsystem</two>? <one>Ja</one>. []
977
+ - <one>How</one> are the <two>macrophages</two> in the liver called? <one>Kupffer cells</one>. URL: https://en.wikipedia.org/wiki/Kupffer_cell []
978
+ - Das <one>Cholera-Toxin</one> <two>ist was für ein Toxin-Typ</two>? <one>Enterotoxin</one>, ein <two>AB-Toxin</two>. URL: https://en.wikipedia.org/wiki/Cholera_toxin []
979
+ - Give another name for <one>non-self</one>. A: <one>Foreign</one>. []
980
+ - Are <one>immature dendritic cells</one> considered to be <two>phagocytic cells</two>? <one>Yes</one>. []
981
+ - <one>MHC molecules</one> are <two>what type of proteins</two>? <one>MHC molecules</one> are <two>glycoproteins</two>. URL: https://en.wikipedia.org/wiki/Major_histocompatibility_complex []
982
+ - Are <one>chemokines</one> <two>more basic</two> or <two>more acidic</two>? <one>Chemokines</one> are <two>small, basic proteins</two>. []
983
+ - Was ist <one>der dominierende Antikörperisotyp in Vögeln</one>? <one>Ig Ypsilon</one> (<two>IgY</two>). URL: https://en.wikipedia.org/wiki/Immunoglobulin_Y []
984
+ - <one>Which person</one> was <two>the founder of medical statistics</two>? <one>Florence Nightingale</one>. URL: https://en.wikipedia.org/wiki/Florence_Nightingale []
985
+ - Von den <one>Lymphocyten im Blut</one>: <two>n%</two> sind <three>natürliche Killerzellen</three>? <two>10%</two>. []
986
+ - Can <one>Eosinophils</one> <two>phagocytize</two>? <one>Yes</one> they can. []
987
+ - <one>Which person</one> <two>discovered</two> the <three>blood groups</three>? <one>Karl Landsteiner</one>. URL: https://en.wikipedia.org/wiki/Karl_Landsteiner []
988
+ - <one>Cytotoxische T-Zellen</one> <two>besitzen welchen CD-Marker</two>? <one>CD8-Marker</one>. URL: https://de.wikipedia.org/wiki/Zytotoxische_T-Zelle []
989
+ - <one>Inflammation</one> <two>can be classified into which two groups</two>? (1) <one>acute</one> (2) <one>chronic</one> []
990
+ - <one>MHC class II molecules</one> are <two>homodimers</two> or <two>heterodimers</two>? MHC class II molecules are <one>heterodimers</one>. []
991
+ - Do <one>all three complement-activating pathways</one> lead up to the build-up of the membrane attack complex (<two>MAC</two>)? <one>Yes</one>. []
992
+ - <one>... cells</one> <two>form the bridge between innate and adaptive immune responses</two>. A: <one>Dendritic cells</one>. []
993
+ - Kann <one>das adaptive Immunsystem</one> <two>vom angeborenen Immunsystem</two> <three>unabhängig ablaufen</three>? <one>Nein</one>. []
994
+ - Produzieren wir <one>Menschen</one> <two>Antikörper gegen Haptene</two>? <one>Nein</one>. []
995
+ - Can <one>Langerhands cells</one> <two>leave the skin area</two>? <one>Yes</one> - they can <two>migrate to the lymphatic system</two> after they have taken up antigen. []
996
+ - Does <one>MyD88</one> have a <two>TIR domain</two>? <one>Yes</one> it does. []
997
+ - <one>T-reg cells</one> <two>originate from where</two>? From the <one>thymus</one>. []
998
+ - Do <one>memory CD8 T cells</one> <two>exist</two>? <one>Yes</one>. []
999
+ - Die <one>passive Immunisierung</one> bedeutet ... ? Das einem Menschen (oder einem Tier) <one>bereits fertige Antikörper verabreicht werden</one>. []
1000
+ - Are <one>PAMPs</one> <two>a subset of</two> <three>DAMPs</three> (<four>damage associated molecular patterns</four>)? <one>Yes</one>. []
1001
+ - <one>Who</one> coined the term <two>antibodies</two>? <one>Paul Ehrlich</one>. URL: https://de.wikipedia.org/wiki/Paul_Ehrlich []
1002
+ - Können <one>T-Zellen</one> <two>Antigene direkt erkennen</two>? <one>Nein</one>. []
1003
+ - Die <one>Selektine</one> sind <two>Vertreter der ... </two>? <one>Lektine</one>. URL: https://de.wikipedia.org/wiki/Selectine []
1004
+ - Can the <one>T-cell receptor</one> <two>interact with free antigen</two>? <one>No</one>. []
1005
+ - What does the term <one>pyogenic</one> mean? <one>Pus-forming</one>. []
1006
+ - Können <one>Liposomen</one> <two>das Immunsystem aktivieren</two>? <one>Ja</one>. []
1007
+ - Was meinen wir in der <one>Immunbiologie</one> mit einem <two>„inneren Angriff“</two>? Diese Bezeichnung meint primär <one>entartete Zellen</one>. []
1008
+ - Sind <one>Verletzungen</one> der <two>Milz</two> <three>heilbar</three>? <one>Nein</one>. []
1009
+ - Are <one>heteropolymers</one> or <one>homopolymers</one> <two>more immunogenic</two>? <one>Heteropolymers</one> are usually <two>more immunogenic</two>. []
1010
+ - Do <one>Toll-like receptors</one> <two>play a role in innate immunity</two>? <one>Yes</one> - in particular during <two>innate immune recognition</two>. []
1011
+ - <one>Epithelial cells</one> <two>in the vertebrates</two> <three>secrete</three> which antimicrobial molecules? <one>Defensins</one>. URL: https://de.wikipedia.org/wiki/Defensine []