studium 0.10.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of studium might be problematic. Click here for more details.

Files changed (882) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +1982 -0
  3. data/bin/ask_exam_question +7 -0
  4. data/bin/check_description_of_these_lectures +7 -0
  5. data/bin/curriculum_module_displayer +7 -0
  6. data/bin/d10 +7 -0
  7. data/bin/d100 +7 -0
  8. data/bin/d15 +7 -0
  9. data/bin/d20 +7 -0
  10. data/bin/d25 +7 -0
  11. data/bin/d3 +7 -0
  12. data/bin/d30 +7 -0
  13. data/bin/d5 +7 -0
  14. data/bin/determine_curricula +7 -0
  15. data/bin/exam_registration_at +7 -0
  16. data/bin/exam_statistics +7 -0
  17. data/bin/exams_per_month +9 -0
  18. data/bin/finished_exams_at_this_university +7 -0
  19. data/bin/flashcards +7 -0
  20. data/bin/mandatory_continuous_assessment +7 -0
  21. data/bin/mandatory_upcoming_courses +7 -0
  22. data/bin/n_exam_questions_already_answered +16 -0
  23. data/bin/nquestions +7 -0
  24. data/bin/nsolved +7 -0
  25. data/bin/open_last_exam_question_asked_file +7 -0
  26. data/bin/passed_pr/303/274fungsimmanente_courses +7 -0
  27. data/bin/return_n_ects_from_this_file +7 -0
  28. data/bin/show_lectures_on_the_commandline +7 -0
  29. data/bin/show_themes +7 -0
  30. data/bin/solved +9 -0
  31. data/bin/solved_ects +7 -0
  32. data/bin/studienkennzahl +7 -0
  33. data/bin/studium +7 -0
  34. data/bin/studium_skeleton +7 -0
  35. data/bin/ufind +7 -0
  36. data/bin/upcoming_exams +7 -0
  37. data/bin/week_parser +7 -0
  38. data/doc/ECTS_CONSIDERATIONS.md +81 -0
  39. data/doc/HOW_TO_ADAPT_THIS_PROJECT.md +43 -0
  40. data/doc/HOW_TO_DETERMINE_WHICH_PART_IS_THE_QUESTION_AND_WHICH_PART_IS_THE_ANSWER.md +47 -0
  41. data/doc/README.gen +1965 -0
  42. data/doc/TODO_FOR_STUDIUM_GEM.md +113 -0
  43. data/doc/deprecated_components.md +24 -0
  44. data/doc/documentation_for_the_file_lecture_information.md +294 -0
  45. data/doc/elegant_colours.md +20 -0
  46. data/img/STUDIES.png +0 -0
  47. data/lib/studium.rb +5 -0
  48. data/lib/studium/autoinclude.rb +7 -0
  49. data/lib/studium/base/base.rb +84 -0
  50. data/lib/studium/base/cliner.rb +58 -0
  51. data/lib/studium/base/colours.rb +307 -0
  52. data/lib/studium/base/commandline_arguments.rb +64 -0
  53. data/lib/studium/base/constants.rb +34 -0
  54. data/lib/studium/base/curriculum.rb +329 -0
  55. data/lib/studium/base/directory_to_the_exam_topics.rb +23 -0
  56. data/lib/studium/base/editor.rb +28 -0
  57. data/lib/studium/base/encoding.rb +36 -0
  58. data/lib/studium/base/esystem.rb +23 -0
  59. data/lib/studium/base/minimal_prototype.rb +66 -0
  60. data/lib/studium/base/misc.rb +854 -0
  61. data/lib/studium/base/mode.rb +92 -0
  62. data/lib/studium/base/obtain.rb +145 -0
  63. data/lib/studium/base/opnn.rb +46 -0
  64. data/lib/studium/base/prototype.rb +92 -0
  65. data/lib/studium/base/readlines.rb +55 -0
  66. data/lib/studium/base/replace.rb +110 -0
  67. data/lib/studium/base/reset.rb +77 -0
  68. data/lib/studium/base/run.rb +17 -0
  69. data/lib/studium/base/src_dir_at_home.rb +20 -0
  70. data/lib/studium/base/time.rb +634 -0
  71. data/lib/studium/base/unicode.rb +95 -0
  72. data/lib/studium/base/word_wrap.rb +58 -0
  73. data/lib/studium/boku/README.md +4 -0
  74. data/lib/studium/boku/boku_biotechnology_all_master_lectures.rb +142 -0
  75. data/lib/studium/boku/boku_/303/266ffnungszeiten.rb +29 -0
  76. data/lib/studium/boku/show_three_pillars_of_these_lectures.rb +96 -0
  77. data/lib/studium/boku/three_pillars.rb +232 -0
  78. data/lib/studium/check_and_sanitize/README.md +11 -0
  79. data/lib/studium/check_and_sanitize/check_curriculum_for_correct_separation_of_bachelor_and_master.rb +149 -0
  80. data/lib/studium/check_and_sanitize/check_for_all_exam_topics_being_registered.rb +107 -0
  81. data/lib/studium/check_and_sanitize/check_for_existing_description_of_this_lecture.rb +197 -0
  82. data/lib/studium/check_and_sanitize/check_the_lecture_information_file.rb +171 -0
  83. data/lib/studium/check_and_sanitize/missing_priority_entry.rb +44 -0
  84. data/lib/studium/check_and_sanitize/sanitize_this_string_containing_the_lva_dates.rb +79 -0
  85. data/lib/studium/colours/colours.rb +570 -0
  86. data/lib/studium/colours/sfancy.rb +40 -0
  87. data/lib/studium/colours/sfile.rb +35 -0
  88. data/lib/studium/colours/simp.rb +38 -0
  89. data/lib/studium/colours/use_this_colour_for_exam_questions_and_exam_answers.rb +76 -0
  90. data/lib/studium/commandline/commandline.rb +25 -0
  91. data/lib/studium/commandline/constants.rb +16 -0
  92. data/lib/studium/commandline/help.rb +152 -0
  93. data/lib/studium/commandline/initialize.rb +27 -0
  94. data/lib/studium/commandline/menu.rb +760 -0
  95. data/lib/studium/commandline/misc.rb +707 -0
  96. data/lib/studium/commandline/reset.rb +24 -0
  97. data/lib/studium/commandline/run.rb +20 -0
  98. data/lib/studium/constants/boku_wien.rb +52 -0
  99. data/lib/studium/constants/constants.rb +25 -0
  100. data/lib/studium/constants/delay.rb +28 -0
  101. data/lib/studium/constants/editor.rb +28 -0
  102. data/lib/studium/constants/exam_topics.rb +183 -0
  103. data/lib/studium/constants/file_constants.rb +875 -0
  104. data/lib/studium/constants/image_constants.rb +216 -0
  105. data/lib/studium/constants/last_question_asked.rb +38 -0
  106. data/lib/studium/constants/lecture_types_that_are_mandatory_continuous_assessment.rb +47 -0
  107. data/lib/studium/constants/misc.rb +163 -0
  108. data/lib/studium/constants/namespace.rb +14 -0
  109. data/lib/studium/constants/newline.rb +14 -0
  110. data/lib/studium/constants/regexes.rb +35 -0
  111. data/lib/studium/constants/return_file_for_this_curriculum.rb +411 -0
  112. data/lib/studium/constants/roebe.rb +173 -0
  113. data/lib/studium/constants/time.rb +52 -0
  114. data/lib/studium/constants/tu_wien.rb +39 -0
  115. data/lib/studium/constants/uni_wien.rb +24 -0
  116. data/lib/studium/constants/unicode.rb +27 -0
  117. data/lib/studium/constants/week.rb +138 -0
  118. data/lib/studium/constants/www_constants.rb +23 -0
  119. data/lib/studium/curricula/curriculum.rb +199 -0
  120. data/lib/studium/curricula/curriculum_as_string.rb +279 -0
  121. data/lib/studium/curricula/curriculum_module_displayer/constants.rb +38 -0
  122. data/lib/studium/curricula/curriculum_module_displayer/curriculum_module_displayer.rb +417 -0
  123. data/lib/studium/curricula/curriculum_module_displayer/initialize.rb +25 -0
  124. data/lib/studium/curricula/curriculum_module_displayer/menu.rb +45 -0
  125. data/lib/studium/curricula/curriculum_module_displayer/reset.rb +77 -0
  126. data/lib/studium/curricula/curriculum_module_displayer/run.rb +20 -0
  127. data/lib/studium/curricula/curriculum_module_displayer/set_use_this_curriculum.rb +93 -0
  128. data/lib/studium/curricula/curriculum_module_displayer/show_and_report.rb +190 -0
  129. data/lib/studium/curricula/determine_curricula/constants.rb +16 -0
  130. data/lib/studium/curricula/determine_curricula/determine_curricula.rb +36 -0
  131. data/lib/studium/curricula/determine_curricula/help.rb +39 -0
  132. data/lib/studium/curricula/determine_curricula/initialize.rb +48 -0
  133. data/lib/studium/curricula/determine_curricula/menu.rb +138 -0
  134. data/lib/studium/curricula/determine_curricula/misc.rb +402 -0
  135. data/lib/studium/curricula/determine_curricula/report.rb +131 -0
  136. data/lib/studium/curricula/determine_curricula/reset.rb +62 -0
  137. data/lib/studium/curricula/determine_curricula/run.rb +19 -0
  138. data/lib/studium/curricula/determine_elective_courses_in_this_curriculum.rb +112 -0
  139. data/lib/studium/curricula/display_bachelor_curricula.rb +89 -0
  140. data/lib/studium/curricula/mitteilungsbl/303/244tter.rb +336 -0
  141. data/lib/studium/curricula/modules/display_on_the_commandline.rb +316 -0
  142. data/lib/studium/curricula/modules/return_n_ects_in_this_module.rb +74 -0
  143. data/lib/studium/curricula/n_percent_solved_in_this_curriculum.rb +75 -0
  144. data/lib/studium/curricula/random_curriculum_creator.rb +171 -0
  145. data/lib/studium/curricula/show_lectures_of_this_curriculum.rb +114 -0
  146. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/constants.rb +16 -0
  147. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/initialize.rb +27 -0
  148. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/menu.rb +35 -0
  149. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/misc.rb +242 -0
  150. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/report.rb +140 -0
  151. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/reset.rb +67 -0
  152. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/show_lectures_of_this_curriculum_id.rb +37 -0
  153. data/lib/studium/curricula/show_solved_percentage_among_the_registered_curricula.rb +87 -0
  154. data/lib/studium/ects/boku_ects_splitter.rb +127 -0
  155. data/lib/studium/ects/ects_parser.rb +179 -0
  156. data/lib/studium/ects/ects_per_university.rb +140 -0
  157. data/lib/studium/ects/ects_scanner.rb +141 -0
  158. data/lib/studium/ects/ects_to_university_parser.rb +148 -0
  159. data/lib/studium/ects/erledigt.rb +131 -0
  160. data/lib/studium/ects/last_entry_is_curriculum.rb +147 -0
  161. data/lib/studium/ects/n_ects_in_these_lectures.rb +185 -0
  162. data/lib/studium/ects/n_ects_points_in_mandatory_presence_courses.rb +50 -0
  163. data/lib/studium/ects/noch_zu_absolvieren.rb +172 -0
  164. data/lib/studium/ects/return_n_ects_from_this_file.rb +58 -0
  165. data/lib/studium/ects/return_n_ects_from_this_url.rb +202 -0
  166. data/lib/studium/ects/search_for_n_ects.rb +540 -0
  167. data/lib/studium/ects/show_completed_ects_in_all_curricula.rb +210 -0
  168. data/lib/studium/ects/show_passed_credits_per_curriculum.rb +254 -0
  169. data/lib/studium/ects/simple_total_ects_points.rb +143 -0
  170. data/lib/studium/ects/solved_ects/constants.rb +24 -0
  171. data/lib/studium/ects/solved_ects/reset.rb +54 -0
  172. data/lib/studium/ects/solved_ects/solved_ects.rb +325 -0
  173. data/lib/studium/ects/solved_ects_per_university/reset.rb +25 -0
  174. data/lib/studium/ects/solved_ects_per_university/solved_ects_per_university.rb +106 -0
  175. data/lib/studium/ects/still_missing.rb +133 -0
  176. data/lib/studium/ects/sum_of_ects.rb +150 -0
  177. data/lib/studium/encoding/encoding.rb +150 -0
  178. data/lib/studium/exam_topics/RNAi_siRNA_and_miRNA +79 -0
  179. data/lib/studium/exam_topics/abfall_als_ressource +86 -0
  180. data/lib/studium/exam_topics/advanced_biochemistry +762 -0
  181. data/lib/studium/exam_topics/advanced_biotechnology +192 -0
  182. data/lib/studium/exam_topics/advanced_cellbiology +25 -0
  183. data/lib/studium/exam_topics/advanced_chemistry +453 -0
  184. data/lib/studium/exam_topics/advanced_microbiology +44 -0
  185. data/lib/studium/exam_topics/advanced_topics_in_plant_sciences +51 -0
  186. data/lib/studium/exam_topics/advanced_virology +52 -0
  187. data/lib/studium/exam_topics/ageing +101 -0
  188. data/lib/studium/exam_topics/agrar_ecology +61 -0
  189. data/lib/studium/exam_topics/agrarmarkt +70 -0
  190. data/lib/studium/exam_topics/agrarphysik +35 -0
  191. data/lib/studium/exam_topics/alcohols +29 -0
  192. data/lib/studium/exam_topics/algorithms +49 -0
  193. data/lib/studium/exam_topics/allergie +73 -0
  194. data/lib/studium/exam_topics/allgemeine_genetik +1006 -0
  195. data/lib/studium/exam_topics/allgemeine_mikrobiologie +855 -0
  196. data/lib/studium/exam_topics/aminoacids +417 -0
  197. data/lib/studium/exam_topics/analytische_chemie_1 +131 -0
  198. data/lib/studium/exam_topics/analytische_chemie_2 +31 -0
  199. data/lib/studium/exam_topics/anatomie +248 -0
  200. data/lib/studium/exam_topics/anorganische_chemie +289 -0
  201. data/lib/studium/exam_topics/anthropologie +115 -0
  202. data/lib/studium/exam_topics/antibodies_and_antigens +747 -0
  203. data/lib/studium/exam_topics/apoptosis +35 -0
  204. data/lib/studium/exam_topics/archaea +41 -0
  205. data/lib/studium/exam_topics/architecture +8 -0
  206. data/lib/studium/exam_topics/artificial_intelligence +81 -0
  207. data/lib/studium/exam_topics/audio +10 -0
  208. data/lib/studium/exam_topics/bacteriophages +224 -0
  209. data/lib/studium/exam_topics/basic_biochemistry +1008 -0
  210. data/lib/studium/exam_topics/basic_biotechnology +1011 -0
  211. data/lib/studium/exam_topics/basic_chemistry +1007 -0
  212. data/lib/studium/exam_topics/basic_virology +955 -0
  213. data/lib/studium/exam_topics/bauwesen +6 -0
  214. data/lib/studium/exam_topics/betriebssysteme +125 -0
  215. data/lib/studium/exam_topics/betriebswirtschaftslehre +29 -0
  216. data/lib/studium/exam_topics/bioanalytik_und_biosensoren +381 -0
  217. data/lib/studium/exam_topics/biochips +78 -0
  218. data/lib/studium/exam_topics/bioelektrochemie +56 -0
  219. data/lib/studium/exam_topics/biofilms +22 -0
  220. data/lib/studium/exam_topics/bioinformatics +475 -0
  221. data/lib/studium/exam_topics/biological_therapeutics +152 -0
  222. data/lib/studium/exam_topics/biologie +134 -0
  223. data/lib/studium/exam_topics/biomarkers +106 -0
  224. data/lib/studium/exam_topics/biomaterials +46 -0
  225. data/lib/studium/exam_topics/biomembranes +6 -0
  226. data/lib/studium/exam_topics/bionik +65 -0
  227. data/lib/studium/exam_topics/biophysik +34 -0
  228. data/lib/studium/exam_topics/biopolymers +10 -0
  229. data/lib/studium/exam_topics/bioprozesstechnik +139 -0
  230. data/lib/studium/exam_topics/bioressourcenmanagement +78 -0
  231. data/lib/studium/exam_topics/bodenkunde +345 -0
  232. data/lib/studium/exam_topics/bodenmikrobiologie +40 -0
  233. data/lib/studium/exam_topics/cancerbiology +441 -0
  234. data/lib/studium/exam_topics/cell_cultures +154 -0
  235. data/lib/studium/exam_topics/cellbiology +962 -0
  236. data/lib/studium/exam_topics/cellular_transport_and_protein_secretion +27 -0
  237. data/lib/studium/exam_topics/chemische_technologie_anorganischer_stoffe +208 -0
  238. data/lib/studium/exam_topics/chemisches_labor +59 -0
  239. data/lib/studium/exam_topics/chemotaxis_and_motility_in_prokaryotes +74 -0
  240. data/lib/studium/exam_topics/citric_acid_cycle +70 -0
  241. data/lib/studium/exam_topics/clinical_microbiology +486 -0
  242. data/lib/studium/exam_topics/computer_graphics +5 -0
  243. data/lib/studium/exam_topics/computer_science +269 -0
  244. data/lib/studium/exam_topics/crispr +25 -0
  245. data/lib/studium/exam_topics/cyanobacteria +37 -0
  246. data/lib/studium/exam_topics/cytogenetics_and_chromosome_biology +506 -0
  247. data/lib/studium/exam_topics/databases_and_sql +105 -0
  248. data/lib/studium/exam_topics/dna_mutation_and_dna_repair +33 -0
  249. data/lib/studium/exam_topics/dna_replication +53 -0
  250. data/lib/studium/exam_topics/ecogenetics +27 -0
  251. data/lib/studium/exam_topics/ecological_agriculture +12 -0
  252. data/lib/studium/exam_topics/ecology +313 -0
  253. data/lib/studium/exam_topics/economy +210 -0
  254. data/lib/studium/exam_topics/elektronenmikroskopie +353 -0
  255. data/lib/studium/exam_topics/elektrophorese +88 -0
  256. data/lib/studium/exam_topics/elektrotechnik +8 -0
  257. data/lib/studium/exam_topics/elisa +54 -0
  258. data/lib/studium/exam_topics/embryologie_und_entwicklung +541 -0
  259. data/lib/studium/exam_topics/endospores_and_spores +92 -0
  260. data/lib/studium/exam_topics/enzymes_and_cofactors +327 -0
  261. data/lib/studium/exam_topics/epigenetik +177 -0
  262. data/lib/studium/exam_topics/ethik +125 -0
  263. data/lib/studium/exam_topics/evolution_and_evolutionary_genetics +323 -0
  264. data/lib/studium/exam_topics/excel +7 -0
  265. data/lib/studium/exam_topics/fish +19 -0
  266. data/lib/studium/exam_topics/fluorescence_microscopy +7 -0
  267. data/lib/studium/exam_topics/food_microbiology_and_food_biotechnology +17 -0
  268. data/lib/studium/exam_topics/forensik +11 -0
  269. data/lib/studium/exam_topics/forstwirtschaft +52 -0
  270. data/lib/studium/exam_topics/fortgeschrittene_genetik +429 -0
  271. data/lib/studium/exam_topics/fortgeschrittene_gentechnik +189 -0
  272. data/lib/studium/exam_topics/fortgeschrittene_physik +6 -0
  273. data/lib/studium/exam_topics/fungi +78 -0
  274. data/lib/studium/exam_topics/genetische_krankheiten +150 -0
  275. data/lib/studium/exam_topics/genexpression +1008 -0
  276. data/lib/studium/exam_topics/genomics_and_metagenomics +205 -0
  277. data/lib/studium/exam_topics/gentechnik_und_praktische_biochemie +863 -0
  278. data/lib/studium/exam_topics/geochemistry +66 -0
  279. data/lib/studium/exam_topics/geography +5 -0
  280. data/lib/studium/exam_topics/geologie_und_mineralogie +610 -0
  281. data/lib/studium/exam_topics/geschichte +94 -0
  282. data/lib/studium/exam_topics/gluconeogenesis +34 -0
  283. data/lib/studium/exam_topics/glycolysis +95 -0
  284. data/lib/studium/exam_topics/glykomik +42 -0
  285. data/lib/studium/exam_topics/glyoxylatzyklus +23 -0
  286. data/lib/studium/exam_topics/grassland_cultivation +32 -0
  287. data/lib/studium/exam_topics/hormone +122 -0
  288. data/lib/studium/exam_topics/html +7 -0
  289. data/lib/studium/exam_topics/human_ecology +8 -0
  290. data/lib/studium/exam_topics/hygiene +191 -0
  291. data/lib/studium/exam_topics/imaging_and_microscopy +224 -0
  292. data/lib/studium/exam_topics/immunanalytik +88 -0
  293. data/lib/studium/exam_topics/immunologie +888 -0
  294. data/lib/studium/exam_topics/informatik +95 -0
  295. data/lib/studium/exam_topics/innate_immunity +20 -0
  296. data/lib/studium/exam_topics/insekten +30 -0
  297. data/lib/studium/exam_topics/insulin_and_diabetes +55 -0
  298. data/lib/studium/exam_topics/java +440 -0
  299. data/lib/studium/exam_topics/javascript +10 -0
  300. data/lib/studium/exam_topics/klima +6 -0
  301. data/lib/studium/exam_topics/landtechnik +27 -0
  302. data/lib/studium/exam_topics/lebensmittel +206 -0
  303. data/lib/studium/exam_topics/lebensmitteltechnologie +16 -0
  304. data/lib/studium/exam_topics/linux +5 -0
  305. data/lib/studium/exam_topics/lipids +95 -0
  306. data/lib/studium/exam_topics/macroeconomics +39 -0
  307. data/lib/studium/exam_topics/mathematics +175 -0
  308. data/lib/studium/exam_topics/medizin_und_biomedizinische_technik +250 -0
  309. data/lib/studium/exam_topics/medizinische_chemie_und_pharmazie +397 -0
  310. data/lib/studium/exam_topics/messtechnik_und_regeltechnik +104 -0
  311. data/lib/studium/exam_topics/metabolismus +433 -0
  312. data/lib/studium/exam_topics/microbial_ecology +35 -0
  313. data/lib/studium/exam_topics/mikrobielle_lebensgemeinschaften +34 -0
  314. data/lib/studium/exam_topics/mikrobielle_physiologie +153 -0
  315. data/lib/studium/exam_topics/mixed +289 -0
  316. data/lib/studium/exam_topics/molecular_biology_of_plants +235 -0
  317. data/lib/studium/exam_topics/molekulare_medizin +129 -0
  318. data/lib/studium/exam_topics/nanotechnologie +303 -0
  319. data/lib/studium/exam_topics/nature_conservation_and_biodiversity +165 -0
  320. data/lib/studium/exam_topics/naturstoffe +9 -0
  321. data/lib/studium/exam_topics/netzwerke +32 -0
  322. data/lib/studium/exam_topics/neurobiology +266 -0
  323. data/lib/studium/exam_topics/nucleotide_sequencing +30 -0
  324. data/lib/studium/exam_topics/object_oriented_modeling +14 -0
  325. data/lib/studium/exam_topics/obstbau +234 -0
  326. data/lib/studium/exam_topics/organische_chemie +1007 -0
  327. data/lib/studium/exam_topics/organische_chemie_2 +72 -0
  328. data/lib/studium/exam_topics/paleobiology +33 -0
  329. data/lib/studium/exam_topics/parasitic_diseases_and_molecular_infection_biology +335 -0
  330. data/lib/studium/exam_topics/patent_law +55 -0
  331. data/lib/studium/exam_topics/pathologie +713 -0
  332. data/lib/studium/exam_topics/pcr +133 -0
  333. data/lib/studium/exam_topics/peroxisomes_glycosomes_and_lysosomes +54 -0
  334. data/lib/studium/exam_topics/pflanzenanatomie +240 -0
  335. data/lib/studium/exam_topics/pflanzenbau +24 -0
  336. data/lib/studium/exam_topics/pflanzenschutz +35 -0
  337. data/lib/studium/exam_topics/pflanzenwissenschaften +1009 -0
  338. data/lib/studium/exam_topics/pharmaceutical_biotechnology +250 -0
  339. data/lib/studium/exam_topics/physik +338 -0
  340. data/lib/studium/exam_topics/physikalische_chemie +85 -0
  341. data/lib/studium/exam_topics/physiology_and_histology +485 -0
  342. data/lib/studium/exam_topics/phytochemie +33 -0
  343. data/lib/studium/exam_topics/plant_biotechnology +127 -0
  344. data/lib/studium/exam_topics/plant_breeding +64 -0
  345. data/lib/studium/exam_topics/plant_development +50 -0
  346. data/lib/studium/exam_topics/populationsgenetik +136 -0
  347. data/lib/studium/exam_topics/posttranslationale_modifikation_von_proteinen +186 -0
  348. data/lib/studium/exam_topics/projektmanagement +218 -0
  349. data/lib/studium/exam_topics/prokaryote_genetics +470 -0
  350. data/lib/studium/exam_topics/proteomik +38 -0
  351. data/lib/studium/exam_topics/prozesstechnik +95 -0
  352. data/lib/studium/exam_topics/psychologie +9 -0
  353. data/lib/studium/exam_topics/python +350 -0
  354. data/lib/studium/exam_topics/quality_management +241 -0
  355. data/lib/studium/exam_topics/rechtsgrundlagen +115 -0
  356. data/lib/studium/exam_topics/research_topics_in_immunobiology +42 -0
  357. data/lib/studium/exam_topics/rna_and_dna +362 -0
  358. data/lib/studium/exam_topics/rna_seq +11 -0
  359. data/lib/studium/exam_topics/ruby +131 -0
  360. data/lib/studium/exam_topics/ruby_on_rails +62 -0
  361. data/lib/studium/exam_topics/scientific_writing_and_publishing +38 -0
  362. data/lib/studium/exam_topics/semisynthese_von_proteinen_und_nukleotiden +120 -0
  363. data/lib/studium/exam_topics/sexualbiologie +59 -0
  364. data/lib/studium/exam_topics/signal_transduction_and_laser_systems +136 -0
  365. data/lib/studium/exam_topics/splicing_exons_and_introns +57 -0
  366. data/lib/studium/exam_topics/statistik +202 -0
  367. data/lib/studium/exam_topics/stemcells +87 -0
  368. data/lib/studium/exam_topics/structural_bioinformatics +54 -0
  369. data/lib/studium/exam_topics/strukturbiologie +319 -0
  370. data/lib/studium/exam_topics/system_biology_and_synthetic_biology +87 -0
  371. data/lib/studium/exam_topics/systematische_zoologie +430 -0
  372. data/lib/studium/exam_topics/technical_ecology +144 -0
  373. data/lib/studium/exam_topics/technische_chemie +194 -0
  374. data/lib/studium/exam_topics/technische_grundlagen_der_informatik +22 -0
  375. data/lib/studium/exam_topics/technische_mikrobiologie +403 -0
  376. data/lib/studium/exam_topics/technisches_zeichnen +5 -0
  377. data/lib/studium/exam_topics/the_bacterial_cell_wall +86 -0
  378. data/lib/studium/exam_topics/the_c_plus_plus_programming_language +488 -0
  379. data/lib/studium/exam_topics/the_c_programming_language +128 -0
  380. data/lib/studium/exam_topics/the_cellcycle +65 -0
  381. data/lib/studium/exam_topics/the_european_union +119 -0
  382. data/lib/studium/exam_topics/the_interferon_system +32 -0
  383. data/lib/studium/exam_topics/the_microbiome +163 -0
  384. data/lib/studium/exam_topics/the_universe +6 -0
  385. data/lib/studium/exam_topics/theoretische_chemie +5 -0
  386. data/lib/studium/exam_topics/theoretische_informatik +157 -0
  387. data/lib/studium/exam_topics/tierzucht +94 -0
  388. data/lib/studium/exam_topics/toxikologie +403 -0
  389. data/lib/studium/exam_topics/transcription +26 -0
  390. data/lib/studium/exam_topics/translation_ribosomes_and_translational_control +138 -0
  391. data/lib/studium/exam_topics/umweltbiotechnologie +58 -0
  392. data/lib/studium/exam_topics/umweltchemie +233 -0
  393. data/lib/studium/exam_topics/urbanism_and_traffic +19 -0
  394. data/lib/studium/exam_topics/vaccines_and_vaccination +234 -0
  395. data/lib/studium/exam_topics/vectors_and_gene_therapy +237 -0
  396. data/lib/studium/exam_topics/verfahrenstechnik +32 -0
  397. data/lib/studium/exam_topics/veterinary_medicine +10 -0
  398. data/lib/studium/exam_topics/vitamine +19 -0
  399. data/lib/studium/exam_topics/wasserkunde +141 -0
  400. data/lib/studium/exam_topics/weinbau +59 -0
  401. data/lib/studium/exam_topics/wissenschaft +17 -0
  402. data/lib/studium/exam_topics/yeast +97 -0
  403. data/lib/studium/exam_topics/zoologie +329 -0
  404. data/lib/studium/exams/afterburn.rb +264 -0
  405. data/lib/studium/exams/ask_exam_from_the_upcoming_exams_pool.rb +158 -0
  406. data/lib/studium/exams/ask_exam_question/answer.rb +106 -0
  407. data/lib/studium/exams/ask_exam_question/ask_exam_question.rb +135 -0
  408. data/lib/studium/exams/ask_exam_question/constants.rb +74 -0
  409. data/lib/studium/exams/ask_exam_question/delay.rb +101 -0
  410. data/lib/studium/exams/ask_exam_question/help.rb +72 -0
  411. data/lib/studium/exams/ask_exam_question/initialize.rb +70 -0
  412. data/lib/studium/exams/ask_exam_question/menu.rb +382 -0
  413. data/lib/studium/exams/ask_exam_question/misc.rb +938 -0
  414. data/lib/studium/exams/ask_exam_question/question.rb +77 -0
  415. data/lib/studium/exams/ask_exam_question/reset.rb +103 -0
  416. data/lib/studium/exams/ask_exam_question/run.rb +49 -0
  417. data/lib/studium/exams/ask_exam_topic_question.rb +120 -0
  418. data/lib/studium/exams/ask_question_from_alias.rb +151 -0
  419. data/lib/studium/exams/ask_question_from_any_of_the_still_missing_lectures.rb +133 -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 +93 -0
  422. data/lib/studium/exams/ask_random_question.rb +190 -0
  423. data/lib/studium/exams/autoinclude.rb +7 -0
  424. data/lib/studium/exams/class.rb +127 -0
  425. data/lib/studium/exams/csv/create_csv_passed_exams_file.rb +225 -0
  426. data/lib/studium/exams/cycle.rb +283 -0
  427. data/lib/studium/exams/dataset.rb +90 -0
  428. data/lib/studium/exams/exam_registration_at/constants.rb +49 -0
  429. data/lib/studium/exams/exam_registration_at/exam_registration_at.rb +254 -0
  430. data/lib/studium/exams/exam_registration_at/help.rb +46 -0
  431. data/lib/studium/exams/exam_registration_at/menu.rb +81 -0
  432. data/lib/studium/exams/exam_registration_at/report.rb +108 -0
  433. data/lib/studium/exams/exam_registration_at/reset.rb +49 -0
  434. data/lib/studium/exams/exam_statistics_from_this_file/exam_statistics_from_this_file.rb +127 -0
  435. data/lib/studium/exams/exam_topics.rb +202 -0
  436. data/lib/studium/exams/exams.rb +18 -0
  437. data/lib/studium/exams/exams_per_month/colours.rb +81 -0
  438. data/lib/studium/exams/exams_per_month/constants.rb +69 -0
  439. data/lib/studium/exams/exams_per_month/dataset.rb +64 -0
  440. data/lib/studium/exams/exams_per_month/exams_per_month.rb +291 -0
  441. data/lib/studium/exams/exams_per_month/help.rb +72 -0
  442. data/lib/studium/exams/exams_per_month/initialize.rb +39 -0
  443. data/lib/studium/exams/exams_per_month/menu.rb +258 -0
  444. data/lib/studium/exams/exams_per_month/open.rb +139 -0
  445. data/lib/studium/exams/exams_per_month/requires.rb +8 -0
  446. data/lib/studium/exams/exams_per_month/reset.rb +115 -0
  447. data/lib/studium/exams/exams_per_month/run.rb +18 -0
  448. data/lib/studium/exams/exams_per_month/sanitize.rb +129 -0
  449. data/lib/studium/exams/exams_per_month/show_and_report.rb +1281 -0
  450. data/lib/studium/exams/exams_this_week.rb +179 -0
  451. data/lib/studium/exams/fix_exam_dates.rb +129 -0
  452. data/lib/studium/exams/last_exams/last_exams.rb +381 -0
  453. data/lib/studium/exams/lectures_without_exam_entry.rb +145 -0
  454. data/lib/studium/exams/mandatory_continuous_assessment/compare.rb +144 -0
  455. data/lib/studium/exams/mandatory_continuous_assessment/constants.rb +18 -0
  456. data/lib/studium/exams/mandatory_continuous_assessment/help.rb +92 -0
  457. data/lib/studium/exams/mandatory_continuous_assessment/initialize.rb +46 -0
  458. data/lib/studium/exams/mandatory_continuous_assessment/mandatory_continuous_assessment.rb +1115 -0
  459. data/lib/studium/exams/mandatory_continuous_assessment/menu.rb +114 -0
  460. data/lib/studium/exams/mandatory_continuous_assessment/misc.rb +61 -0
  461. data/lib/studium/exams/mandatory_continuous_assessment/reset.rb +85 -0
  462. data/lib/studium/exams/mandatory_continuous_assessment/run.rb +33 -0
  463. data/lib/studium/exams/mandatory_continuous_assessment/set_title_of_the_curriculum.rb +181 -0
  464. data/lib/studium/exams/mandatory_continuous_assessment/show_and_report.rb +147 -0
  465. 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 +119 -0
  466. data/lib/studium/exams/n_exams_in_these_topics.rb +408 -0
  467. data/lib/studium/exams/new_questions_per_year.rb +153 -0
  468. data/lib/studium/exams/next_exam.rb +111 -0
  469. data/lib/studium/exams/next_exams.rb +385 -0
  470. data/lib/studium/exams/open_exam_associated_url.rb +158 -0
  471. data/lib/studium/exams/open_last_exam_question_asked_file/constants.rb +20 -0
  472. data/lib/studium/exams/open_last_exam_question_asked_file/initialize.rb +29 -0
  473. data/lib/studium/exams/open_last_exam_question_asked_file/open_last_exam_question_asked_file.rb +112 -0
  474. data/lib/studium/exams/passed_exams/passed_exams.rb +46 -0
  475. data/lib/studium/exams/pruefung.rb +288 -0
  476. data/lib/studium/exams/push_solved_questions_on_top.rb +188 -0
  477. data/lib/studium/exams/question_answer/question_answer.rb +842 -0
  478. data/lib/studium/exams/questions_solved_from_day_to_day.rb +353 -0
  479. data/lib/studium/exams/repeat_last_question.rb +78 -0
  480. data/lib/studium/exams/show_all_passed_exams_of_this_university.rb +260 -0
  481. data/lib/studium/exams/show_backlog_of_exams.rb +125 -0
  482. data/lib/studium/exams/show_next_exams_for.rb +141 -0
  483. data/lib/studium/exams/show_themes/constants.rb +33 -0
  484. data/lib/studium/exams/show_themes/menu.rb +61 -0
  485. data/lib/studium/exams/show_themes/misc.rb +536 -0
  486. data/lib/studium/exams/show_themes/reset.rb +64 -0
  487. data/lib/studium/exams/show_themes/show_themes.rb +27 -0
  488. data/lib/studium/exams/show_upcoming_exams/consider_autogenerating_exam_aliases.rb +170 -0
  489. data/lib/studium/exams/show_upcoming_exams/constants.rb +82 -0
  490. data/lib/studium/exams/show_upcoming_exams/help.rb +33 -0
  491. data/lib/studium/exams/show_upcoming_exams/initialize.rb +71 -0
  492. data/lib/studium/exams/show_upcoming_exams/menu.rb +53 -0
  493. data/lib/studium/exams/show_upcoming_exams/report.rb +195 -0
  494. data/lib/studium/exams/show_upcoming_exams/reset.rb +38 -0
  495. data/lib/studium/exams/show_upcoming_exams/run.rb +20 -0
  496. data/lib/studium/exams/show_upcoming_exams/show_upcoming_exams.rb +494 -0
  497. data/lib/studium/exams/solve_all_questions_from_this_topic.rb +122 -0
  498. data/lib/studium/exams/solved/constants.rb +37 -0
  499. data/lib/studium/exams/solved/help.rb +23 -0
  500. data/lib/studium/exams/solved/menu.rb +35 -0
  501. data/lib/studium/exams/solved/reset.rb +30 -0
  502. data/lib/studium/exams/solved/solved.rb +306 -0
  503. data/lib/studium/exams/steop.rb +99 -0
  504. data/lib/studium/exams/unsolve_all_questions_from_this_topic.rb +170 -0
  505. data/lib/studium/exams/upcoming_exams/constants.rb +20 -0
  506. data/lib/studium/exams/upcoming_exams/help.rb +38 -0
  507. data/lib/studium/exams/upcoming_exams/initialize.rb +27 -0
  508. data/lib/studium/exams/upcoming_exams/menu.rb +79 -0
  509. data/lib/studium/exams/upcoming_exams/misc.rb +360 -0
  510. data/lib/studium/exams/upcoming_exams/reset.rb +37 -0
  511. data/lib/studium/exams/upcoming_exams/run.rb +25 -0
  512. data/lib/studium/exams/upcoming_exams/upcoming_exams.rb +32 -0
  513. data/lib/studium/exams/upcoming_exams_at_the_boku/constants.rb +23 -0
  514. data/lib/studium/exams/upcoming_exams_at_the_boku/html.rb +64 -0
  515. data/lib/studium/exams/upcoming_exams_at_the_boku/upcoming_exams_at_the_boku.rb +194 -0
  516. data/lib/studium/exams/upcoming_exams_dataset.rb +251 -0
  517. data/lib/studium/exams/upload_exam_topics.rb +357 -0
  518. data/lib/studium/flashcards/flashcards.rb +95 -0
  519. data/lib/studium/graphviz/README.md +4 -0
  520. data/lib/studium/graphviz/bachelor_vector_based_strategies.dot +160 -0
  521. data/lib/studium/graphviz/master_vector_based_strategies.dot +46 -0
  522. data/lib/studium/gui/gtk2/constants.rb +52 -0
  523. data/lib/studium/gui/gtk2/exam_card.rb +199 -0
  524. data/lib/studium/gui/gtk2/flip_card.rb +8 -0
  525. data/lib/studium/gui/gtk2/frame.rb +319 -0
  526. data/lib/studium/gui/gtk2/main_box.rb +188 -0
  527. data/lib/studium/gui/gtk2/misc.rb +99 -0
  528. data/lib/studium/gui/gtk2/module_methods.rb +58 -0
  529. data/lib/studium/gui/gtk2/require_gtk_files.rb +25 -0
  530. data/lib/studium/gui/gtk2/run.rb +47 -0
  531. data/lib/studium/gui/gtk2/show_curriculum_entries.rb +186 -0
  532. data/lib/studium/gui/gtk2/simple_widget_question_answer.rb +185 -0
  533. data/lib/studium/gui/gtk2/vbox.rb +748 -0
  534. data/lib/studium/gui/gtk3/README.md +1 -0
  535. data/lib/studium/gui/gtk3/studium_panel.rb +54 -0
  536. data/lib/studium/lectures/show_lectures_on_the_commandline/constants.rb +22 -0
  537. data/lib/studium/lectures/show_lectures_on_the_commandline/determine.rb +630 -0
  538. data/lib/studium/lectures/show_lectures_on_the_commandline/help.rb +44 -0
  539. data/lib/studium/lectures/show_lectures_on_the_commandline/html.rb +599 -0
  540. data/lib/studium/lectures/show_lectures_on_the_commandline/initialize.rb +53 -0
  541. data/lib/studium/lectures/show_lectures_on_the_commandline/konsole.rb +32 -0
  542. data/lib/studium/lectures/show_lectures_on_the_commandline/menu.rb +466 -0
  543. data/lib/studium/lectures/show_lectures_on_the_commandline/misc.rb +598 -0
  544. data/lib/studium/lectures/show_lectures_on_the_commandline/reset.rb +120 -0
  545. data/lib/studium/lectures/show_lectures_on_the_commandline/run.rb +44 -0
  546. data/lib/studium/lectures/show_lectures_on_the_commandline/show.rb +106 -0
  547. data/lib/studium/lectures/show_lectures_on_the_commandline/show_lectures_on_the_commandline.rb +491 -0
  548. data/lib/studium/lectures/show_lectures_on_the_commandline/sorted_individual_curricula.rb +117 -0
  549. data/lib/studium/logging/README.md +2 -0
  550. data/lib/studium/logging/ensure_that_the_log_directory_exists.rb +47 -0
  551. data/lib/studium/logging/html_log_directory.rb +35 -0
  552. data/lib/studium/logging/log_directory.rb +100 -0
  553. data/lib/studium/logging/store_last_question_asked_into_file.rb +138 -0
  554. data/lib/studium/misc/return_remote_homepage_of_this_lecture.rb +8661 -0
  555. data/lib/studium/misc/return_remote_moodle_link_of_this_lecture.rb +1343 -0
  556. data/lib/studium/parsers/README.md +2 -0
  557. data/lib/studium/parsers/custom_exam_results_parser.rb +208 -0
  558. data/lib/studium/parsers/parse_lva_dates.rb +190 -0
  559. data/lib/studium/pdf/README.md +2 -0
  560. data/lib/studium/pdf/create_pdf_file_for_this_exam_topic.rb +277 -0
  561. data/lib/studium/project/project.rb +80 -0
  562. data/lib/studium/requires/common_popular_requires.rb +37 -0
  563. data/lib/studium/requires/commonly_used_requires.rb +13 -0
  564. data/lib/studium/requires/require_class_exams_solved.rb +7 -0
  565. data/lib/studium/requires/require_ects_scripts.rb +25 -0
  566. data/lib/studium/requires/require_encoding.rb +7 -0
  567. data/lib/studium/requires/require_the_exam_scripts.rb +37 -0
  568. data/lib/studium/requires/require_the_studium_constants.rb +14 -0
  569. data/lib/studium/requires/require_the_studium_project.rb +47 -0
  570. data/lib/studium/requires/require_the_utility_scripts.rb +26 -0
  571. data/lib/studium/requires/require_toplevel_methods.rb +26 -0
  572. data/lib/studium/requires/require_upcoming_exams.rb +7 -0
  573. data/lib/studium/requires/require_yaml.rb +7 -0
  574. data/lib/studium/requires/with_GUI.rb +12 -0
  575. data/lib/studium/requires/www_mode.rb +17 -0
  576. data/lib/studium/sinatra/app.rb +225 -0
  577. data/lib/studium/sinatra/misc.rb +111 -0
  578. data/lib/studium/statistics/README.md +4 -0
  579. data/lib/studium/statistics/best_exam_months.rb +81 -0
  580. data/lib/studium/statistics/curriculum_comparer.rb +344 -0
  581. data/lib/studium/statistics/determine_exam_statistics_from_this_file.rb +140 -0
  582. data/lib/studium/statistics/max_stats.rb +171 -0
  583. data/lib/studium/statistics/report_how_many_ects_points_per_curriculum_were_completed.rb +172 -0
  584. data/lib/studium/statistics/report_how_many_exam_questions_were_answered.rb +478 -0
  585. data/lib/studium/statistics/show_exam_statistics.rb +60 -0
  586. data/lib/studium/statistics/top_stats.rb +122 -0
  587. data/lib/studium/steop/README.md +4 -0
  588. data/lib/studium/steop/show_all_steop_lectures.rb +101 -0
  589. data/lib/studium/steop/steop_lectures_in_this_curriculum.rb +291 -0
  590. data/lib/studium/steop/steop_lva_dates.rb +102 -0
  591. data/lib/studium/toplevel_methods/all_passed_exams.rb +35 -0
  592. data/lib/studium/toplevel_methods/already_solved_this_lecture.rb +98 -0
  593. data/lib/studium/toplevel_methods/available_curricula.rb +71 -0
  594. data/lib/studium/toplevel_methods/available_topics.rb +145 -0
  595. data/lib/studium/toplevel_methods/average_grade.rb +141 -0
  596. data/lib/studium/toplevel_methods/calculate_pr/303/274fungsimmanente_lectures_from_this_file.rb +55 -0
  597. data/lib/studium/toplevel_methods/cd.rb +25 -0
  598. data/lib/studium/toplevel_methods/cd_stud.rb +134 -0
  599. data/lib/studium/toplevel_methods/copy_the_last_backup_of_file_lecture_information.rb +27 -0
  600. data/lib/studium/toplevel_methods/determine_local_directory_of_this_lecture.rb +72 -0
  601. data/lib/studium/toplevel_methods/does_this_course_require_mandatory_presence.rb +44 -0
  602. data/lib/studium/toplevel_methods/download.rb +157 -0
  603. data/lib/studium/toplevel_methods/e.rb +16 -0
  604. data/lib/studium/toplevel_methods/ects_from_lectures.rb +251 -0
  605. data/lib/studium/toplevel_methods/editor.rb +64 -0
  606. data/lib/studium/toplevel_methods/esystem.rb +22 -0
  607. data/lib/studium/toplevel_methods/exams_dataset.rb +45 -0
  608. data/lib/studium/toplevel_methods/filter_away_invalid_questions.rb +77 -0
  609. data/lib/studium/toplevel_methods/find_exam_topic_and_exam_title.rb +2771 -0
  610. data/lib/studium/toplevel_methods/from_curriculum_id_to_university.rb +47 -0
  611. data/lib/studium/toplevel_methods/frozen.rb +32 -0
  612. data/lib/studium/toplevel_methods/handle_archive_of_the_exam_questions.rb +136 -0
  613. data/lib/studium/toplevel_methods/has_a_bachelor_or_master_curriculum.rb +84 -0
  614. data/lib/studium/toplevel_methods/has_this_lecture_been_already_passed_but_the_id_was_changed_lateron.rb +41 -0
  615. data/lib/studium/toplevel_methods/has_this_module_been_completed.rb +206 -0
  616. data/lib/studium/toplevel_methods/install_the_project_on_the_given_hostsystem.rb +32 -0
  617. data/lib/studium/toplevel_methods/is_on_roebe.rb +26 -0
  618. data/lib/studium/toplevel_methods/is_this_exam_topic_included.rb +46 -0
  619. data/lib/studium/toplevel_methods/is_this_homepage_registered.rb +31 -0
  620. data/lib/studium/toplevel_methods/is_this_lecture_a_practical_course.rb +100 -0
  621. data/lib/studium/toplevel_methods/is_this_lecture_part_of_the_vector_curriculum.rb +110 -0
  622. data/lib/studium/toplevel_methods/is_this_lecture_registered_in_upcoming_exams.rb +43 -0
  623. data/lib/studium/toplevel_methods/lecture_information.rb +101 -0
  624. data/lib/studium/toplevel_methods/lectures_without_attribution_to_any_curriculum.rb +42 -0
  625. data/lib/studium/toplevel_methods/lva_numbers.rb +339 -0
  626. data/lib/studium/toplevel_methods/main_dataset.rb +73 -0
  627. data/lib/studium/toplevel_methods/map_curriculum_number_to_curriculum_name.rb +97 -0
  628. data/lib/studium/toplevel_methods/methods_related_to_curricula.rb +47 -0
  629. data/lib/studium/toplevel_methods/methods_related_to_files.rb +197 -0
  630. data/lib/studium/toplevel_methods/mkdir.rb +25 -0
  631. data/lib/studium/toplevel_methods/n_questions_available.rb +128 -0
  632. data/lib/studium/toplevel_methods/n_topics_available.rb +63 -0
  633. data/lib/studium/toplevel_methods/name_of_this_curriculum.rb +38 -0
  634. data/lib/studium/toplevel_methods/names_of_all_solved_exams.rb +71 -0
  635. data/lib/studium/toplevel_methods/note_down_the_start_time_and_how_many_exams_have_been_already_solved.rb +70 -0
  636. data/lib/studium/toplevel_methods/opnn.rb +25 -0
  637. data/lib/studium/toplevel_methods/passed_this_exam_on.rb +105 -0
  638. data/lib/studium/toplevel_methods/pristine.rb +69 -0
  639. data/lib/studium/toplevel_methods/read_dataset_from_a_curriculum_file.rb +133 -0
  640. data/lib/studium/toplevel_methods/read_delay_between_questions_from_file.rb +34 -0
  641. data/lib/studium/toplevel_methods/regexes.rb +90 -0
  642. data/lib/studium/toplevel_methods/registered_for_this_exam.rb +62 -0
  643. data/lib/studium/toplevel_methods/remote_url.rb +57 -0
  644. data/lib/studium/toplevel_methods/remove_comments.rb +26 -0
  645. data/lib/studium/toplevel_methods/remove_exam_topics_that_were_already_answered.rb +27 -0
  646. data/lib/studium/toplevel_methods/remove_tags.rb +26 -0
  647. data/lib/studium/toplevel_methods/report.rb +143 -0
  648. data/lib/studium/toplevel_methods/report_all_lectures_matching_this_lecture_type.rb +45 -0
  649. data/lib/studium/toplevel_methods/report_attributed_lectures_to_universities.rb +30 -0
  650. data/lib/studium/toplevel_methods/report_n_ects_per_university.rb +63 -0
  651. data/lib/studium/toplevel_methods/report_n_entries_in_the_file_lecture_information.rb +36 -0
  652. data/lib/studium/toplevel_methods/report_nquestions_of.rb +96 -0
  653. data/lib/studium/toplevel_methods/report_solved_topics.rb +56 -0
  654. data/lib/studium/toplevel_methods/return_all_exams_on_this_day.rb +66 -0
  655. data/lib/studium/toplevel_methods/return_curriculum_of_this_lva_number.rb +82 -0
  656. data/lib/studium/toplevel_methods/return_dataset_for_this_exam_topic.rb +41 -0
  657. data/lib/studium/toplevel_methods/return_dataset_from_this_curriculum_file.rb +150 -0
  658. data/lib/studium/toplevel_methods/return_directory_for.rb +66 -0
  659. data/lib/studium/toplevel_methods/return_div_timetable_of_upcoming_exams.rb +489 -0
  660. data/lib/studium/toplevel_methods/return_ects_from_this_lecture_stored_in_the_file_lecture_information.rb +197 -0
  661. data/lib/studium/toplevel_methods/return_hash_of_already_solved_lectures.rb +41 -0
  662. data/lib/studium/toplevel_methods/return_local_path_of_this_pwdstud.rb +59 -0
  663. data/lib/studium/toplevel_methods/return_lva_number_of_this_lecture.rb +72 -0
  664. data/lib/studium/toplevel_methods/return_n_percent_solved_from_this_topic.rb +75 -0
  665. data/lib/studium/toplevel_methods/return_n_questions_were_answered_for_this_topic.rb +37 -0
  666. data/lib/studium/toplevel_methods/return_proper_university_image.rb +80 -0
  667. data/lib/studium/toplevel_methods/return_question_answer_string_from_this_topic.rb +56 -0
  668. data/lib/studium/toplevel_methods/return_sanitized_dataset_from_the_file_lecture_information.rb +126 -0
  669. data/lib/studium/toplevel_methods/return_theme_of_the_next_upcoming_exam.rb +38 -0
  670. data/lib/studium/toplevel_methods/return_this_curriculum_as_a_string.rb +26 -0
  671. data/lib/studium/toplevel_methods/return_title_from_this_curriculum_file.rb +91 -0
  672. data/lib/studium/toplevel_methods/rinstall2.rb +34 -0
  673. data/lib/studium/toplevel_methods/rti_conflict.rb +29 -0
  674. data/lib/studium/toplevel_methods/runmode.rb +86 -0
  675. data/lib/studium/toplevel_methods/sanitize_this_theme_topic.rb +128 -0
  676. data/lib/studium/toplevel_methods/sanitized_dataset_from_file_passed_exams_per_month.rb +52 -0
  677. data/lib/studium/toplevel_methods/save_all_registered_upcoming_exams.rb +62 -0
  678. data/lib/studium/toplevel_methods/save_file.rb +81 -0
  679. data/lib/studium/toplevel_methods/save_this_delay_between_questions_and_answers.rb +43 -0
  680. data/lib/studium/toplevel_methods/set_last_file_for_exam_questions.rb +64 -0
  681. data/lib/studium/toplevel_methods/set_this_cd_alias_to.rb +86 -0
  682. data/lib/studium/toplevel_methods/show_passed_ects_in_the_individual_bachelor_and_master_curricula.rb +81 -0
  683. data/lib/studium/toplevel_methods/show_passed_exams_having_this_grade.rb +27 -0
  684. data/lib/studium/toplevel_methods/spacer.rb +18 -0
  685. data/lib/studium/toplevel_methods/time.rb +220 -0
  686. data/lib/studium/toplevel_methods/total_ects_points_passed.rb +72 -0
  687. data/lib/studium/toplevel_methods/try_to_guess_the_most_likely_lva_id.rb +57 -0
  688. data/lib/studium/toplevel_methods/try_to_return_the_expanded_name_of_this_lecture.rb +63 -0
  689. data/lib/studium/toplevel_methods/unfinished.rb +51 -0
  690. data/lib/studium/toplevel_methods/url.rb +74 -0
  691. data/lib/studium/toplevel_methods/verbose_truth.rb +21 -0
  692. data/lib/studium/toplevel_methods/when_was_this_lecture_passed.rb +53 -0
  693. data/lib/studium/toplevel_methods/yes_or_no_ja_oder_nein.rb +33 -0
  694. data/lib/studium/tu_vienna/README.md +6 -0
  695. data/lib/studium/tu_vienna/tu_ferien.rb +38 -0
  696. data/lib/studium/tu_vienna/tu_/303/266ffnungszeiten.rb +29 -0
  697. data/lib/studium/utility_scripts/attribute_lecture_to_curriculum/attribute_boku_lecture_to_curriculum.rb +389 -0
  698. data/lib/studium/utility_scripts/attribute_lecture_to_curriculum/attribute_lecture_to_curriculum.rb +236 -0
  699. data/lib/studium/utility_scripts/attribute_lectures_to_university/attribute_lectures_to_university.rb +385 -0
  700. data/lib/studium/utility_scripts/audio_stats.rb +176 -0
  701. data/lib/studium/utility_scripts/auto_stud/auto_stud.rb +253 -0
  702. data/lib/studium/utility_scripts/auto_stud/constants.rb +23 -0
  703. data/lib/studium/utility_scripts/auto_stud/initialize.rb +23 -0
  704. data/lib/studium/utility_scripts/auto_stud/misc.rb +18 -0
  705. data/lib/studium/utility_scripts/autopurge_this_lecture_date.rb +101 -0
  706. data/lib/studium/utility_scripts/calendar/README.md +2 -0
  707. data/lib/studium/utility_scripts/calendar/calendar.rb +244 -0
  708. data/lib/studium/utility_scripts/calendar/misc.rb +35 -0
  709. data/lib/studium/utility_scripts/check_description_of_these_lectures.rb +224 -0
  710. data/lib/studium/utility_scripts/clean_up_lecture_date.rb +151 -0
  711. data/lib/studium/utility_scripts/current_lectures_belonging_to_both_bachelor_and_master_curriculum.rb +113 -0
  712. data/lib/studium/utility_scripts/currently_participating_in_these_lectures.rb +104 -0
  713. data/lib/studium/utility_scripts/display_lecture_url.rb +117 -0
  714. data/lib/studium/utility_scripts/expand_time_range.rb +422 -0
  715. data/lib/studium/utility_scripts/find_duplicate_lectures.rb +121 -0
  716. data/lib/studium/utility_scripts/finished_exams_at_this_university.rb +94 -0
  717. data/lib/studium/utility_scripts/foreign_language_percentage/constants.rb +28 -0
  718. data/lib/studium/utility_scripts/foreign_language_percentage/foreign_language_percentage.rb +142 -0
  719. data/lib/studium/utility_scripts/foreign_language_percentage/help.rb +29 -0
  720. data/lib/studium/utility_scripts/foreign_language_percentage/initialize.rb +25 -0
  721. data/lib/studium/utility_scripts/foreign_language_percentage/menu.rb +141 -0
  722. data/lib/studium/utility_scripts/foreign_language_percentage/report.rb +62 -0
  723. data/lib/studium/utility_scripts/foreign_language_percentage/reset.rb +57 -0
  724. data/lib/studium/utility_scripts/foreign_language_percentage/run.rb +19 -0
  725. data/lib/studium/utility_scripts/generate_spreadsheet.rb +349 -0
  726. data/lib/studium/utility_scripts/holidays.rb +143 -0
  727. data/lib/studium/utility_scripts/lecture_downloader.rb +115 -0
  728. data/lib/studium/utility_scripts/lectures_attributed_to_universities.rb +344 -0
  729. data/lib/studium/utility_scripts/lva_nummer.rb +440 -0
  730. data/lib/studium/utility_scripts/mandatory_lectures_in_this_month.rb +321 -0
  731. data/lib/studium/utility_scripts/name_of_this_lva_id.rb +110 -0
  732. data/lib/studium/utility_scripts/new_stud.rb +332 -0
  733. data/lib/studium/utility_scripts/next_week.rb +111 -0
  734. data/lib/studium/utility_scripts/passed_ects_per_year.rb +172 -0
  735. data/lib/studium/utility_scripts/passed_pr/303/274fungsimmanente_courses/passed_pr/303/274fungsimmanente_courses.rb +181 -0
  736. data/lib/studium/utility_scripts/prepare_individual_curriculum.rb +182 -0
  737. data/lib/studium/utility_scripts/priority.rb +126 -0
  738. data/lib/studium/utility_scripts/priority_points.rb +263 -0
  739. data/lib/studium/utility_scripts/publish_my_exams.rb +174 -0
  740. data/lib/studium/utility_scripts/regexes/README.md +2 -0
  741. data/lib/studium/utility_scripts/regexes/generate_regex.rb +278 -0
  742. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_available_moodle_links.rb +54 -0
  743. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_registered_lectures.rb +48 -0
  744. data/lib/studium/utility_scripts/report_outdated_timetable_entries.rb +148 -0
  745. data/lib/studium/utility_scripts/report_total_amount_of_questions_and_answers_for.rb +120 -0
  746. data/lib/studium/utility_scripts/report_whether_this_lecture_is_registered_in_the_file_lecture_information.rb +125 -0
  747. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/individual_resolve_practical_courses_date_conflicts.rb +257 -0
  748. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/resolve_practical_courses_date_conflicts.rb +273 -0
  749. data/lib/studium/utility_scripts/scrape_remote_university_url.rb +146 -0
  750. data/lib/studium/utility_scripts/semester_schedule_creator/semester_container.rb +142 -0
  751. data/lib/studium/utility_scripts/semester_schedule_creator/semester_schedule_creator.rb +381 -0
  752. data/lib/studium/utility_scripts/semesterplaner.rb +289 -0
  753. data/lib/studium/utility_scripts/show_all_lectures.rb +403 -0
  754. data/lib/studium/utility_scripts/show_all_passed_master_lectures.rb +127 -0
  755. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/constants.rb +56 -0
  756. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/do_report_the_upcoming_exams.rb +60 -0
  757. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/help.rb +49 -0
  758. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/initialize.rb +28 -0
  759. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/menu.rb +54 -0
  760. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/misc.rb +214 -0
  761. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/report.rb +118 -0
  762. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/reset.rb +80 -0
  763. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/run.rb +22 -0
  764. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/show_conflicting_lva_lectures.rb +651 -0
  765. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/constants.rb +28 -0
  766. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/menu.rb +62 -0
  767. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/reset.rb +36 -0
  768. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/run.rb +35 -0
  769. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/show_descriptions_of_lectures_belonging_to_this_module.rb +145 -0
  770. data/lib/studium/utility_scripts/show_lecturers/show_lecturers.rb +145 -0
  771. data/lib/studium/utility_scripts/show_lectures/constants.rb +16 -0
  772. data/lib/studium/utility_scripts/show_lectures/help.rb +34 -0
  773. data/lib/studium/utility_scripts/show_lectures/initialize.rb +23 -0
  774. data/lib/studium/utility_scripts/show_lectures/menu.rb +106 -0
  775. data/lib/studium/utility_scripts/show_lectures/misc.rb +582 -0
  776. data/lib/studium/utility_scripts/show_lectures/reset.rb +92 -0
  777. data/lib/studium/utility_scripts/show_lectures/run.rb +27 -0
  778. data/lib/studium/utility_scripts/show_lectures/show_lectures.rb +48 -0
  779. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_language.rb +129 -0
  780. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_theme.rb +100 -0
  781. data/lib/studium/utility_scripts/show_lectures_on_this_day.rb +154 -0
  782. data/lib/studium/utility_scripts/show_lva_dates_of_this_lecture.rb +177 -0
  783. data/lib/studium/utility_scripts/show_outdated_lva_dates.rb +218 -0
  784. data/lib/studium/utility_scripts/show_solved_english_lectures.rb +139 -0
  785. data/lib/studium/utility_scripts/show_the_associated_lectures_for_the_individual_curriculum.rb +285 -0
  786. data/lib/studium/utility_scripts/studienkennzahl.rb +109 -0
  787. data/lib/studium/utility_scripts/studium_skeleton.rb +220 -0
  788. data/lib/studium/utility_scripts/stundenplan.rb +603 -0
  789. data/lib/studium/utility_scripts/sync_studium_relevant_entries_one_level_downwards.rb +221 -0
  790. data/lib/studium/utility_scripts/ufind.rb +101 -0
  791. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/constants.rb +31 -0
  792. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/run.rb +20 -0
  793. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/upcoming_mandatory_presence_courses.rb +179 -0
  794. data/lib/studium/utility_scripts/vorbesprechungen.rb +293 -0
  795. data/lib/studium/utility_scripts/week_parser/constants.rb +28 -0
  796. data/lib/studium/utility_scripts/week_parser/help.rb +32 -0
  797. data/lib/studium/utility_scripts/week_parser/menu.rb +56 -0
  798. data/lib/studium/utility_scripts/week_parser/misc.rb +51 -0
  799. data/lib/studium/utility_scripts/week_parser/reset.rb +55 -0
  800. data/lib/studium/utility_scripts/week_parser/run.rb +18 -0
  801. data/lib/studium/utility_scripts/week_parser/show.rb +242 -0
  802. data/lib/studium/utility_scripts/week_parser/week_parser.rb +362 -0
  803. data/lib/studium/utility_scripts/weekday_parser.rb +159 -0
  804. data/lib/studium/utility_scripts/weekly_schedule.rb +209 -0
  805. data/lib/studium/utility_scripts/wochenplanung.rb +278 -0
  806. data/lib/studium/version/version.rb +46 -0
  807. data/lib/studium/www/curricula_displayer.cgi +170 -0
  808. data/lib/studium/www/curriculum_displayer.rb +162 -0
  809. data/lib/studium/www/exams.cgi +50 -0
  810. data/lib/studium/www/statistics.cgi +55 -0
  811. data/lib/studium/yaml/allowed_themes_for_exams.yml +307 -0
  812. data/lib/studium/yaml/array_allowed_entries_for_the_file_lecture_information.yml +68 -0
  813. data/lib/studium/yaml/backlog_of_exams.yml +35 -0
  814. data/lib/studium/yaml/current_exams.yml +19 -0
  815. data/lib/studium/yaml/curricula.yml +530 -0
  816. data/lib/studium/yaml/curricula/README.md +3 -0
  817. data/lib/studium/yaml/curricula/bachelor_agrarwissenschaften_033255.yml +130 -0
  818. data/lib/studium/yaml/curricula/bachelor_biologie_basisblock_033630.yml +65 -0
  819. data/lib/studium/yaml/curricula/bachelor_biologie_botanik_033630.yml +84 -0
  820. data/lib/studium/yaml/curricula/bachelor_biologie_ecology_033630.yml +74 -0
  821. data/lib/studium/yaml/curricula/bachelor_biologie_mikrobiologie_und_genetik_033630.yml +120 -0
  822. data/lib/studium/yaml/curricula/bachelor_biologie_molekulare_biologie_033630.yml +104 -0
  823. data/lib/studium/yaml/curricula/bachelor_biologie_zoologie_033630.yml +87 -0
  824. data/lib/studium/yaml/curricula/bachelor_chemie_033662.yml +164 -0
  825. data/lib/studium/yaml/curricula/bachelor_dummy_curriculum.yml +135 -0
  826. data/lib/studium/yaml/curricula/bachelor_elektrotechnik_und_informationstechnik_033235.yml +13 -0
  827. data/lib/studium/yaml/curricula/bachelor_forstwirtschaft_033225.yml +105 -0
  828. data/lib/studium/yaml/curricula/bachelor_informatik_033521.yml +130 -0
  829. data/lib/studium/yaml/curricula/bachelor_informatik_und_molekulare_biologie.yml +1144 -0
  830. data/lib/studium/yaml/curricula/bachelor_ktww_033231.yml +84 -0
  831. data/lib/studium/yaml/curricula/bachelor_lmbt_033217.yml +108 -0
  832. data/lib/studium/yaml/curricula/bachelor_medizinische_informatik_033533.yml +200 -0
  833. data/lib/studium/yaml/curricula/bachelor_molekularbiologie_033665.yml +93 -0
  834. data/lib/studium/yaml/curricula/bachelor_nutrition_science_033638.yml +117 -0
  835. data/lib/studium/yaml/curricula/bachelor_pharmazie_033305.yml +170 -0
  836. data/lib/studium/yaml/curricula/bachelor_technische_chemie_033290.yml +129 -0
  837. data/lib/studium/yaml/curricula/bachelor_technische_informatik_033535.yml +23 -0
  838. data/lib/studium/yaml/curricula/bachelor_ubrm_033227.yml +140 -0
  839. data/lib/studium/yaml/curricula/bachelor_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +1157 -0
  840. data/lib/studium/yaml/curricula/bachelor_verfahrenstechnik_033273.yml +167 -0
  841. data/lib/studium/yaml/curricula/bachelor_wirtschaftsinformatik_033526.yml +29 -0
  842. data/lib/studium/yaml/curricula/master_bioinformatics_and_molecular_biotechnology_including_aspects_from_molecular_medicine.yml +438 -0
  843. data/lib/studium/yaml/curricula/master_bioinformatik_066875.yml +76 -0
  844. data/lib/studium/yaml/curricula/master_biologie_molekulare_mikrobiologie_mikrobielle_oekologie_und_immunbiologie_066830.yml +78 -0
  845. data/lib/studium/yaml/curricula/master_biologische_chemie_066863.yml +61 -0
  846. data/lib/studium/yaml/curricula/master_dummy_curriculum.yml +137 -0
  847. data/lib/studium/yaml/curricula/master_food_science_and_plant_biotechnology.yml +30 -0
  848. data/lib/studium/yaml/curricula/master_genetik_und_entwicklungsbiologie_066877.yml +90 -0
  849. data/lib/studium/yaml/curricula/master_lmbt_066418.yml +65 -0
  850. data/lib/studium/yaml/curricula/master_molekulare_biologie_066834.yml +142 -0
  851. data/lib/studium/yaml/curricula/master_pharmazie_066605.yml +170 -0
  852. data/lib/studium/yaml/curricula/master_technische_chemie_066490.yml +123 -0
  853. data/lib/studium/yaml/curricula/master_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +741 -0
  854. data/lib/studium/yaml/custom_colours.yml +21 -0
  855. data/lib/studium/yaml/daily_questions_solved.yml +789 -0
  856. data/lib/studium/yaml/default_delay.yml +4 -0
  857. data/lib/studium/yaml/default_encoding.yml +1 -0
  858. data/lib/studium/yaml/directory_to_the_exam_topics.yml +0 -0
  859. data/lib/studium/yaml/editor.yml +1 -0
  860. data/lib/studium/yaml/file_for_exam_questions.yml +1 -0
  861. data/lib/studium/yaml/german/README.md +2 -0
  862. data/lib/studium/yaml/german/german_to_english_month_names.yml +16 -0
  863. data/lib/studium/yaml/grouped_themes.yml +187 -0
  864. data/lib/studium/yaml/holidays.yml +176 -0
  865. data/lib/studium/yaml/important_exams.yml +194 -0
  866. data/lib/studium/yaml/inscription_dates_of_universities.yml +58 -0
  867. data/lib/studium/yaml/lecture_aliases.yml +108 -0
  868. data/lib/studium/yaml/lecture_information.yml +47783 -0
  869. data/lib/studium/yaml/log_dir.yml +1 -0
  870. data/lib/studium/yaml/main_topic.yml +11 -0
  871. data/lib/studium/yaml/max_stats.yml +227 -0
  872. data/lib/studium/yaml/mitteilungsbl/303/244tter.yml +315 -0
  873. data/lib/studium/yaml/n_total_questions.yml +1 -0
  874. data/lib/studium/yaml/participating_in_these_courses.yml +50 -0
  875. data/lib/studium/yaml/rename_konsole_tab.yml +1 -0
  876. data/lib/studium/yaml/show_topic.yml +1 -0
  877. data/lib/studium/yaml/statistics.yml +57 -0
  878. data/lib/studium/yaml/use_colours.yml +1 -0
  879. data/studium.gemspec +79 -0
  880. data/test/testing_studium.rb +244 -0
  881. data/test/testing_time_component.rb +29 -0
  882. metadata +1079 -0
@@ -0,0 +1,888 @@
1
+ # =========================================================================== #
2
+ # === IMMUNOLOGIE TAG
3
+ #
4
+ # Bacca tag. Immuno tag. Imm tag. Immtag. Immun tag.
5
+ # Krankheiten tag. 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
+ - Which immune cells produce <one>Monokines</one>? Only the <one>monocytes</one>.
13
+ - <one>Complement action</one> can be made visible through ... which test? The <one>Jerne-Nordin plaque test</one>.
14
+ - <one>Cytokines</one> are <two>"... agents"</two>. A: <one>immunomodulating agents</one>.
15
+ - In der Immunologie: W. h. <one>DTH-response</one>? "Delayed-type hypersensitivity".
16
+ - Welche Zellen setzen <one>Akute-Phase-Proteine</one> frei? <one>Hepatocyten</one>.
17
+ - Anderer Begriff für <one>wiederholte Immunisierung</one>? <one>Boostern</one>.
18
+ - 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
19
+ - What does the concept of immunodominance 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.
20
+ - 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>)
21
+ - Nenne zwei primäre lymphatische Organe und 2 sekundäre Lymphatische Organe. A: (1) Primäre: Knochenmark und Thymus (2) Sekundäre: Lymphknoten und Milz
22
+ - What is the "size range of human chemokines", in kDa? <one>8-12 kD</one>.
23
+ - 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.
24
+ - Welche zwei Wege sind möglich, ausgehend von einer <one>bone marrow stem cell</one>? (1) <one>myeloid precursor</one> (2) <one>lymphoid precursor</one>
25
+ - <one>LPS</one> is specifically recognised by which TLR? <one>TLR4</one>.
26
+ - <one>NF-KappaB</one> ist ein Dimer, bestehend aus den beiden Untereinheiten p... und p.. A: (1) <one>p50</one> (2) <one>p65</one>
27
+ - <one>CD8</one> interagiert mit MHC ... ? <one>MHC I</one>. []
28
+ - Welche <one>Surfactant-Proteine</one> wirken in der Lunge? A + D. Sie opsonieren Bakterien.
29
+ - <one>Elie Metchnikoff</one> discovered <two>phagocytosis by neutrophils</two>. How did he call them back then? <one>Microphages</one>.
30
+ - Wie lange dauert es bis ein <one>adaptive immune response</one> erfolgt? Mehr als 96 Stunden (~ "+4 Tage")
31
+ - <one>MBL</one> belongs to which group of proteins? To the <one>acute phase proteins</one>.
32
+ - Der Marker <one>D15S11</one> wird bei der Diagnose wovon verwendet? Beim <one>Prader-Willi Syndrom</one>.
33
+ - Toll-like Rezeptoren sind bei der angeborenen Immunantwort wichtig. Säugetiere besitzen mindestens n verschiedene Toll-like Rezeptoren? <one>Elf</one> (<one>11</one>).
34
+ - Andere Bezeichnung für <one>massive, horizontale Übertragung von Rhinoviren</one>? <one>Niesen</one>. []
35
+ - <one>Rapamycin</one> kann, in Säugetieren, das Immunsystem unterdrücken. 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.
36
+ - Warum wird <one>Blutplasma</one> mehrere Monate gekühlt? Um <orange>Viren zu zerstören</orange> oder beschädigen (evtl. auch Bakterien), damit man so Infektionskrankheiten minimieren kann.
37
+ - In Immunology: what dual role does the complement protein <one>C3b</one> have? (1) opsonization (2) lysis of a cell through the membrane attack complex
38
+ - Woher stammen <one>Anaphylatoxine</one>? Aus <one>Komplementfaktoren</one> - <two>C3a</two>, C4a, C5a.
39
+ - Wie nennen wir <one>"Schleimhautimmunität"</one> auf englisch? <one>Mucosal immunity</one>. URL: https://en.wikipedia.org/wiki/Mucosal_immunology
40
+ - Ursache der <one>Tay-Sachs Disease</one>? Ausfall von <one>Beta-N-Acetylhexosaminidase</one>.
41
+ - The most common <one>Fc receptor</one> on the surface of an NK cell is called ... ? <one>CD16</one>.
42
+ - 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 <tomato>CD8+</tomato>.
43
+ - 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>
44
+ - The <one>TCR</one> (<three>T-cell receptor</three>) consist of <two>n subunits</two>? 2 - it is a <one>heterodimer</one>. URL: https://en.wikipedia.org/wiki/T-cell_receptor []
45
+ - Name an extremely primitive way how <one>a tumor</one> could protect itself against <two>immunotoxins</two>. A: By its <one>sheer size</one>. []
46
+ - Nenne eine Funktion der "Akute-Phase-Proteine". A: Dienen der <one>Opsonierung der Krankheitserreger</one>.
47
+ - Die <one>Bluttplättchen</one> gehen aus welchen Zellen hervor? <one>Megakaryocyten</one>. URL: https://en.wikipedia.org/wiki/Megakaryocyte []
48
+ - <one>MHC I</one> and <one>MHC II</one> are members of which family? They belong to the <one>immunoglobulin superfamily of cell surface proteins</one>.
49
+ - Was und warum geschieht mit der <one>Milz</one> im Zuge einer Sepsis? Sie schwillt an da die Lymphocyten aktiviert werden und somit in ihrer Anzahl zunehmen.
50
+ - Nenne <one>eine wichtige Fähigkeit der Milz</one>. A: <one>Abbau von überalterten Erythrocyten</one>.
51
+ - In der Immunologie gibt es das <one>LRBA-Gen</one>. Was kann passieren wenn dieses Gen ausfällt? Es kann zu schweren Störungen in der B-Zell-Entwicklung und der T-Zell-Funktion kommen.
52
+ - <one>MBL</one> (mannose-binding lectin) is a member of which family? MBL belongs to the <one>collectin family</one>.
53
+ - 3 roles of <one>inflammation</one> in combating infection? (1) deliver additional effectors to sites of infection (2) induce local blood clotting (3) <one>promote the repair of injured tissue</one>
54
+ - Nenne drei Beispiele für <one>Epitope tags</one>. A: (1) HA (2) FLAG (3) <one>myc</one>
55
+ - The <one>Mx Proteins</one> are important in immunology. Give another awesome name for them. A: "Antiviral Gatekeepers" - the Mx proteins "restrain the uninvited".
56
+ - Which specific cells in the human body <one>do not express MHC class I receptors</one> on their surface? <one>Red blood cells</one>.
57
+ - <one>Hybridomzellen</one> erhält man woraus? Aus der Fusion von "B-Lymphozyten der Maus" mit <one>Myelomzellen</one>.
58
+ - Die <one>passive Immunisierung</one> bedeutet ... ? Das einem Menschen bereits fertige Antikörper verabreicht werden.
59
+ - Der <one>Lektin-Weg</one>, im Komplementsystem, erkennt ... ? <one>Mannose-Strukturen</one>.
60
+ - Nenne einen wichtigen Slogan von <one>Polly Matzinger</one>. A: <one>To detect and protect against danger</one>.
61
+ - Why may <one>alarmins</one> be considered dangerous? Because an excess release of alarmins, such as by severe injury, may result in a potentially lethal cytokine storm.
62
+ - <one>Chemokine receptors</one>, such as "CD4" or "CCR5", often belong to which protein family? They often belong to the <one>seven transmembrane helix family</one>.
63
+ - What is meant with the expression <one>iTreg</one> in Immunology? This refers to <one>inducible regulatory T cells</one>.
64
+ - Welcher <one>Rezeptor</one> erkennt "C3b"? Der Komplementrezeptor <one>CR1</one>.
65
+ - What happens in <one>antibody dependent cell cytotoxicity</one> (<two>ADCC</two>)? 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.
66
+ - <one>NOD-like Rezeptoren</one> (NLRs) führen intrazellulär zu einer Ausbildung ... ? Des <one>Inflammasoms</one>.
67
+ - <one>Rac2</one> induces the assembly of a functional ... in the phagolysosome membrane, leading to the generation of O2 -. A: <one>NADPH oxidase</one>.
68
+ - <one>Infektionen</one> lösen eine ... aus. A: <one>Entzündungsreaktion</one>.
69
+ - Name a <one>non-specific immunotherapy</one>. A: Boost the immune system in a general way.
70
+ - In immunology: <one>SOCS</one> are ... ? <royalblue>Suppressor of cytokine signaling</royalblue>.
71
+ - 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.
72
+ - When it comes to killing ingested microorganisms: <one>neutrophils</one> versus <one>macrophages</one>. Which one is more effective here? The <one>neutrophils</one>.
73
+ - <one>Myasthenia gravis</one> is an autoimmune disease. What happens there? The affected individual makes antibodies against the acetylcholine receptor on their skeletal muscle cells.
74
+ - The second marrow pool of neutrophils is the storage pool consisting of cells that are undergoing ... ? <one>Nuclear maturation</one>.
75
+ - Wechen Zweck haben <one>Alpha-Defensine</one>? Sie dienen dem <one>Schutz der Schleimhaut im Darm</one>.
76
+ - Are <one>basophils</one> <two>phagocytic</two>? No.
77
+ - Definiere den Begriff <one>Xenotyp</one>. A: Ein homologes Gen aus einer anderen Spezies, welche für das selbe Protein kodiert.
78
+ - In Immunology: is <one>memory</one> a good term to use? It should rather be called <one>immune memory</one>.
79
+ - 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>.
80
+ - Direkter Vorläufer der Neutrophile ist ... ? Der <one>Myeloblast</one>.
81
+ - How could we define the term <one>adjuvants</one>? These are <one>substances that can enhance the immunogenicity of an antigen</one>.
82
+ - The predominant cells in pus are ... ? The <one>neutrophils</one>.
83
+ - Man kann die <one>Mustererkennungsstrukturen</one> nach ihrer Lokalisation in welche 3 Gruppen einteilen? (1) lösliche Rezeptoren (2) zellmembrangebundene Rezeptoren (3) <one>intrazelluläre Rezeptoren</one>
84
+ - Warum die Bezeichnung <one>M cells</one>? <tomato>M</tomato> steht hier für <one>microfold cells</one>.
85
+ - Which <one>cellular compartment</one> has <two>the license to kill</two>? The <one>Phagosome</one>.
86
+ - Are neutrophils phagocytes? Yes.
87
+ - The neutrophil has what kind of nucleus? A <one>multilobed</one> nucleus.
88
+ - Neutrophils can be stained, via the H+E stain. What colour will they show? Neutrophils stain pink.
89
+ - Nenne zwei humorale Abwehrfaktoren des Menschen, ausgenommen der Antikörper. A: (1) <one>Lysozym</one> (2) <one>Interferone</one>
90
+ - Name four different <one>anti-microbial functions</one> of neutrophils. 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
91
+ - <one>NETosis</one> stands for ... ? <tomato>NET activation and release</tomato>.
92
+ - Genetically viewed: where precisely can we find the "Recombination Signal Sequences"? Next to the regional gene segments - <one>V, D and J</one>.
93
+ - What means <one>WBC count</one> im Immunology? <one>White blood cell count</one>.
94
+ - Which cells display <one>MHC II</one>? <one>APCs</one> (macrophages, dendritic cells, B cells).
95
+ - <one>MHC class I</one> binds to ... and MHC class II binds to ...? (1) <violet>MHC I</violet> binds to "CD8+ cells". (2) <violet>MHC II</violet> binds to <one>CD4+ cells</one>.
96
+ - Name the two subpopulations of neutrophils. A: (1) <one>neutrophil-killers</one> (2) <one>neutrophil-cagers</one>
97
+ - Ist die <one>T-Zelle</one> fähig als <two>Gedächtniszelle</two> zu agieren? Ja.
98
+ - The <one>HLA-DRB1 shared epitope alleles</one> are related to which antibodies? To <one>autoantibodies</one>, in positive rheumatoid arthritis patients.
99
+ - Wie nennen wir <one>die Immunzellen der Insekten</one>? <one>Hämocyten</one>.
100
+ - What is the <one>opposite</one> of <two>immunopathogenic</two>? <one>Immunoprotective</one>.
101
+ - The <one>classical pathway in the complement cascade</one> starts with ... ? <one>C1q</one>.
102
+ - Was sind <one>Hybridomzellen</one> (wie gewinnt man sie)? <royalblue>Fusionszellen</royalblue> aus <one>B-Lymphozyten</one> und <one>Myelomzellen</one>.
103
+ - Nenne ein <one>Antihistaminikum</one>. A: <one>Pyribenzamin</one>.
104
+ - Die sogenannten <one>Treg-Zellen</one> tragen was für <two>CD Marker</two> an der Oberfläche? (1) "CD4+" (2) <one>CD25+</one>
105
+ - Was findet man bei Menschen mit dem <one>DiGeorges Syndom</one> kaum? <one>T-Lymphocyten</one>.
106
+ - The <one>most abundant white blood cells in mammals</one> are ... ? The <one>Neutrophils</one>.
107
+ - Nenne zwei verschiedene Typen von Dendritischen Zellen (DC) in der "Peripherie"! A: (1) Konventionelle DCs (2) Vorläufer-DCs
108
+ - <one>T helper cells</one> use which <two>CD designation</two>? <one>CD4+</one> (Mnemonic: <royalblue>4-for-to-help</royalblue>).
109
+ - Was findet innerhalb der <one>Hassal-Körperchen</one> statt? Abbau apoptotischer Zellen.
110
+ - Can the <one>BCR</one> <two>bind glycoproteins</two>? Yes.
111
+ - <one>DAMPs</one> (Damage-associated molecular patterns) can initiate what? They can initiate and perpetuate a <one>noninfectious inflammatory response</one>.
112
+ - In Immunology, what means the <one>RSS</one> Sequence? <one>Recombination signal sequences</one>.
113
+ - <one>CD14</one> bindet an? <one>LPS</one>.
114
+ - A. W. für <one>non-self</one>? <one>Foreign</one>.
115
+ - <one>Somatic hypermutation</one> occurs where in the human body? In <one>B cells</one>.
116
+ - Name the two different types of <one>adaptive immunity</one>. A: (1) humoral immunity (2) cell-mediated immunity
117
+ - Was sind <one>Abzymes</one>? Abzymes sind <one>katalytisch wirksame Antikörper</one>.
118
+ - Das weltweite erste Vakzin wurde wann entwickelt? <one>1796</one>.
119
+ - Where can we find the <one>VSG-genes</one> of Trypanosoma? These genes are located <one>near the telomeres</one>.
120
+ - Nenne ein Beispiel für ein <one>Opsonin</one>, das <crimson>KEIN</crimson> Antikörper ist. A: Das <one>Komplement-Fragment</one>.
121
+ - 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) "danger hypothesis": <one>Matzinger</one>
122
+ - What do we mean with the term <one>opsonin</one>? This is any molecule that can <one>enhance phagocytosism</one> by "marking an antigen for an immune response".
123
+ - How do we call <one>membrane-bound Immunoglobulins</one>? This is the BCR, the <orange>B-cell receptor</orange>.
124
+ - The complement protein C1 consists of <one>C1q</one>, <one>C1r</one> and <one>C1s</one>. Which one of these three is by far the longest and thus most important molecule? <one>C1q</one> is by far the longest of these three molecules.
125
+ - Welches <one>Spaltprodukt von C3</one> wirkt als <lightseagreen>Opsin</lightseagreen>? <one>C3b</one>.
126
+ - Give another term for <one>lowest concentration</one> in immunology. A: <one>Highest dilution</one>.
127
+ - Was meinen wir mit dem <one>Bence-Jones Protein</one>? Dies bezieht sich auf <one>zwei leichte Ig-Ketten</one>, die miteinander verbunden sind.
128
+ - <one>Superantigens</one> can bind to which molecule? They can bind to the MHC class II molecule.
129
+ - Which three different categories exist for <one>Exotoxins</one>? (1) cytolytic toxins (2) AB toxins (3) <one>Superantigen Toxins</one>
130
+ - In general: what do <one>toll-like receptors</one> recognize? They recognize <one>pathogen-associated molecular patterns</one> (<royalblue>PAMPs</royalblue>).
131
+ - Who produces <one>Monokines</one>? <one>Mononuclear phagocytes</one>.
132
+ - What do we mean with the term <one>immune tolerance</one>? <one>Immune tolerance</one> is the ability of the immune system to distinguish between self and foreign.
133
+ - <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 <orange>APC</orange> ("Antigen presenting Cell").
134
+ - Können <one>Neutrophile</one> Granatsplitter auflösen? Ja.
135
+ - <one>Antimikrobielle Peptide</one> sind vor allem reich an welcher Aminosäure? <one>Arginin</one>.
136
+ - <one>Cytokine receptors</one> typically consist of at the least two chains, the cytoplasmic domains of which can bind ... ? JAKs - aka "<u>Janus kinases</u>".
137
+ - <one>Steroidrezeptoren</one> liegen im Cytoplasma als Komplexe mit welchem Protein vor? Mit dem Hitzeschockprotein "Hsp90".
138
+ - In Immunology: what means <one>cSMAC</one> and "pSMAC"? (1) central supramolecular activation cluster. (2) peripheral supramolecular activation cluster.
139
+ - Welche Person hat die <one>passive Immunisierung</one> eingeführt? <one>Emil von Behring</one>.
140
+ - Surfactant A und B wirken antimikrobiell. Wo vor allem, im Menschen, finden wir sie? In der <one>Lunge</one>.
141
+ - Womit beginnt die <one>Phagocytose</one>? Pseudopodien <one>umschliessen</one> die Mikroorganismen.
142
+ - What kind of protein is <one>IRAK4</one>? It is a <one>protein kinase</one>.
143
+ - What usually occurs before <one>antigen presentation</one>? <one>Antigen processing</one>.
144
+ - Are <one>cytokines</one> stored? No - they are <one>usually not stored</one>.
145
+ - Barriere auf Chitinbasis im Darm der Insekten? Die <one>peritrophische Matrix</one>.
146
+ - Zellulärer Hauptbestandteil des <one>Eiters</one>? <one>Neutrophile Granulocyten</one>.
147
+ - Das <one>Komplementsystem</one> besteht aus wievielen Serumproteinen? <one>25</one>.
148
+ - In general: which substances are the <one>most potent immunogens</one>? <one>Proteins</one>.
149
+ - "PAMPs" sind hoffentlich bekannt - aber was sind <one>DAMPs</one>, als Abkürzung betrachtet? <one>Damage associated molecular patterns</one>.
150
+ - Hauptaufgabe der <one>Akute-Phase-Proteine</one>? Dienen der <one>Opsonierung der Krankheitserreger</one>.
151
+ - Give another term for <one>vaccination</one>? <one>Artificial active immunity</one>.
152
+ - The MBL pathway also has MASP-1 and MASP-2 which can bind to MBL. What does this abbrevation stand for? MASP stands for <one>MBL-associated serine proteases</one>.
153
+ - Welchen qualitativen <one>trade-off</one> gibt es bei der angeborenen Immunantwort? Die Erkennung ist sehr schnell; jedoch nicht sehr anspruchsvoll/spezifisch.
154
+ - <one>Naive T-Zellen</one> können in den Lymphknoten wandern, dank welcher Moleküle an der Oberfläche? <one>L-Selektine</one>.
155
+ - A. W. für ein <one>Epitope</one>? <one>Antigene Determinanten</one>.
156
+ - The term <one>interleukin</one> was initially used by researchers for those cytokines whose presumed targets are principally .... ? <one>Leukocytes</one>.
157
+ - Name an enzyme whose transcription is triggered by a <one>STAT protein</one>. A: The enzyme <one>oligoadenylate synthetase</one>. URL: https://en.wikipedia.org/wiki/2%27-5%27-oligoadenylate_synthase
158
+ - Wie beeinflusst <one>Cortisol</one> die Immunantwort? Cortisol <one>hemmt</one> die Immunantwort.
159
+ - Wann wurde <one>Neomycin</one> entdeckt? <one>1948</one>.
160
+ - What is a better word for an <one>antigen</one>? An <one>immunogen</one>.
161
+ - <one>Histamin</one> ist bei Entzündungsreaktionen wichtig. <orange>Welche Zellen</orange> bilden Histamin? Die <one>Mastzellen</one>.
162
+ - Der <one>Ductus thoracius</one> mündet in ...? Die <one>vena subclavia sinistra</one>.
163
+ - Humans encode for <one>RANKL</one>, a membrane protein. What does <tomato>RANKL</tomato> stand for? <one>Receptor activator of nuclear factor kappa-B ligand</one>.
164
+ - The ligand to <one>P-selectin</one> is typically ... ? <one>sialyl-Lewis</one>.
165
+ - Wie treten naive B und T-Lymphozyten in den <one>Lymphknoten</one> ein? A: Über die <one>HEV</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3234668/
166
+ - Name the four <one>classical inflammation steps</one>. A: Mnemo: <royalblue>red cat tackles donkey</royalblue> (1) <tomato>rubor</tomato> (2) <tomato>calor</tomato> (3) <tomato>tumor</tomato> (4) <one>dolor</one>
167
+ - In Immunology: the <one>plasma cells</one> derive from ...? <one>B-cells</one>.
168
+ - <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.
169
+ - Nenne eine Strategie wie <one>Pilze</one> gegen ROS des Immunsystems vorgehen können. A: Pilze können ROS enzymatisch inaktivieren, über die <one>Superoxidismutase</one>.
170
+ - Nenne eine wichtige Aufgabe der <one>T-Helfer-Lymphozyten</one>. A: <one>Lymphokin-Sekretion</one>.
171
+ - 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.
172
+ - What means <one>Hypersensitivity</one>? Hypersensitivity is <one>an immune response</one> that results in host damage.
173
+ - Was sind <one>Toxoide</one>? <one>Extrakte von Toxinen</one>.
174
+ - 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>.
175
+ - Name one critical factor for establishing <one>host specificity</one> of pathogens. A: Attachment to particular cell-surface molecules.
176
+ - Nenne zwei <one>Integrine</one> aus der Familie der "Immunglobulin-Super-Genfamilie". A: (1) "ICAM-1" (2) "VCAM-1"
177
+ - Why has <one>Ferdinand Julius Cohn</one> become famous? He "classified bacteria" into four groups, based on shape - spherical, short rods, spirals, and threads.
178
+ - Welchen <one>Verlust</one> erleiden Lymphocyten typischerweise? Ihren <one>Homing-Rezeptor</one>.
179
+ - Why have <one>Type III secretion systems</one> evolved? They are used by bacterial pathogens to <one>secrete toxins</one> and other products.
180
+ - Name a protein that can promote the deadenylation of the <one>tumor necrosis factor Alpha</one>. A: <one>Tristetraprolin</one>. URL: https://en.wikipedia.org/wiki/ZFP36
181
+ - Alternative Bezeichnung für den <one>MHC</one> beim Menschen? <one>HLA</one> ("human leukocyte antigen").
182
+ - Das C-reaktive Protein ist wichtig bei der Erkennung bestimmter Membranstruktur von Bakerien. Es bindet an ... ? <one>Phosphatidylcholinstrukturen</one>.
183
+ - Wie wirken <one>Corticosteroide</one> auf das Immunsystem? Corticosteroide sind <tomato>entzündungshemmende Medikamente</tomato>.
184
+ - Nenne die <one>drei Komponenten des C1-Komplementproteins</one>. A: (1) <one>C1q</one> (2) <one>C1r</one> (3) <one>C1s</one>
185
+ - Bei welchem Phänomen tritt der sogenannte <one>Zytokinsturm</one> ein? Bei der <tomato>Sepsis</tomato>.
186
+ - Typen von Granulocyten? (1) Eosinophil (2) basophil (3) Neutrophil. (Merkschema: "B-E-N")
187
+ - Eine <one>dendritische Zelle</one> kontaktiert pro Stunde etwa wieviele T-Lymphozyten im Lymphknoten? Etwa <one>500</one>.
188
+ - Was ist die <one>Hämatopoese</one>? Dies ist die <one>Bildung der Blutzellen</one>.
189
+ - Provide another word for <one>swelling</one>. A: <one>Edema</one>.
190
+ - Wenn wir <one>Papain</one> einsetzen, um einen Antikörper zu schneiden, entsteht was? 2 monovalente Fab-Fragmente und 1 Fc-Fragment
191
+ - Name a metal that can cause a <one>type I hypersensitivity reaction</one>. A: <one>Nickel</one>. URL: https://en.wikipedia.org/wiki/Nickel
192
+ - Give another name for the term <one>adjuvant</one>. A: <one>Immune system stimulating material</one>.
193
+ - Was würde wohl passieren wenn man die <one>HEV</one> eines Lymphknoten blockieren würde? Der Eintritt von T und B Lymphozyten würde verhindert werden.
194
+ - What would be a better, alternative name for the <one>lectin pathway</one> of the complement system? <one>MBLectin pathway</one> (<royalblue>Mannose-binding</royalblue>).
195
+ - 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.
196
+ - When was the <one>side chain theory</one> established? In the year <one>1897</one>.
197
+ - In general, what do we mean with the term <one>Immunotherapy</one>? This is when a disease is being fought by the body's own immune system.
198
+ - Nenne zwei Bestandteile eines <one>Phagolysosom</one>. A: (1) Phagosom (2) Granula der Phagozyten
199
+ - Which <one>Th helper cell group</one> is very important against intracellular bacteria: Th1 or Th2? <tomato>Th1 helper cells</tomato> are very important against <one>intracellular bacteria</one>.
200
+ - Welche Substanz aktiviert Makrophagen zur <one>Neopterin-Ausschüttung</one>? <one>Interferon-Gamma</one> (<one>Interferon-γ</one>). URL: https://de.wikipedia.org/wiki/Interferon-%CE%B3
201
+ - Name the two "cellular innate immune response" to microbes. A: (1) "inflammation" (2) <one>antiviral defense</one>
202
+ - <one>Macrophages</one> can bind to microbes. How is that possible? They have <one>phagocytic receptors</one> that can bind these microbes.
203
+ - The components of <one>Abzymes</one> are ... ? <one>Antibody</one> + <one>Enzyme</one>.
204
+ - Who or what initiates the <one>lectin pathway</one> of the complement-activation pathways? The protein called <one>MBL</one>.
205
+ - Einen <one>Follikel</one> mit einem Keimzentrum bezeichnet man als? <one>Sekundärfollikel</one>.
206
+ - When a leukocyte migrates, and interacts with other cells during adhesion (during the <one>rolling adhesion step</one>), before it enters through cells during "diapedesis", which step comes between these two steps? The <one>tight binding</one> step.
207
+ - Cells infected with <tomato>viruses</tomato> that reside in the cytosol are eliminated by ... ? By <one>cytotoxic cells</one>.
208
+ - Anteil der Leukocyten <one>in %</one> im Blut? Nur <one>0.1%</one> der Zellen im Blut sind Leukocyten.
209
+ - Wie lange dauert es, in Tagen, bis <one>das angeborene Immunsystem</one> einen Erreger effektiv bekämpft? Etwa <one>5 Tage</one>.
210
+ - Nenne zwei wichtige Familien <one>antimikrobieller Peptide</one> in Säugetieren. A: (1) <one>Cathelicidin</one> (2) <one>Defensin</one>
211
+ - Do Th1 cells and <one>Th2 cells</one> express the same cytokines? No - they <one>express different cytokines</one>.
212
+ - The <one>FcRn</one> structurally resembles ... ? "MHC class I molecules". URL: https://en.wikipedia.org/wiki/Neonatal_Fc_receptor
213
+ - 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 "serum".
214
+ - Was ist mit dem Begriff <one>soziale Immunität</one> gemeint? Wenn zum Beispiel <one>Bienen</one> Wabenzellen und Artgenossen putzen.
215
+ - Does <one>serum</one> coagulate? <one>No</one>.
216
+ - Why is <one>self-tolerance</one> important? Because it is vital in order to prevent harmful reactions against one's own cells.
217
+ - <one>Cytokines</one> act through ... ? <one>receptors</one>.
218
+ - In immunlogy, the protein called <one>tapasin</one> is quite important. Tapasin can also be called ... ? <royalblue>TAP-associated glycoprotein</royalblue>.
219
+ - Can <one>B-cells</one> detect epitopes? Yes - their membrane-bound antibody molecules can <one>recognize soluble antigens</one>.
220
+ - Wissenschaftlicher Name für die <one>Kinderlähmung</one>? <one>Poliomyelitis</one>. URL: https://de.wikipedia.org/wiki/Poliomyelitis
221
+ - The activation of natural killer cells by antibodies initiates a <one>cytotoxic mechanism</one> known as ...? <royalblue>ADCC</royalblue>: <one>antibody-dependent cell-mediated cytotoxicity</one>
222
+ - Nenne eine <one>Schwachstelle</one> des HIV-Antikörpertests. A: Es gibt eine <one>diagnostische Lücke</one>.
223
+ - Nenne ein <one>Interleukin</one>, das eine natürliche Killerzelle aktivieren kann. A: <one>Interleukin 12</one>.
224
+ - Hat die <one>angeborene Immunität</one> ein "Gedächtnis"? Nein.
225
+ - Was passiert beim <one>Lupus erythematodes</one>? Antikörper gegen die <one>eigenen Histone</one> werden gebildet.
226
+ - Anderer Begriff für eine <one>Ansammlung von B-Zellen</one>? <one>Follikel</one>.
227
+ - <one>CD28</one> ist ein Marker für welche Zellen? <one>T-Lymphocyten</one>.
228
+ - Lebensdauer der <one>basophilen Granulozyten</one> im Blut? ca. <one>2 Wochen</one>.
229
+ - Was heisst <one>GALT</one>? <one>Gut associated lymphoid tissue</one>. URL: https://en.wikipedia.org/wiki/Gut-associated_lymphoid_tissue
230
+ - Does <one>MyD88</one> have a <orange>TIR domain</orange>? Yes it does.
231
+ - Das Komplementprotein <one>C1q</one>, Teil von C1, besteht aus wievielen Polypeptidketten? <one>18</one>.
232
+ - Um zu einer <one>Antikörper-produzierenden Plasmazelle</one> zu differenzieren, müssen B-Zellen mit welcher Zelle interagieren? Mit <one>TH-Zellen</one>.
233
+ - Name two natural processes involving angiogenesis. A: (1) lactation (2) <one>wound healing</one>
234
+ - The function of MBL is similar to which other protein in the complement pathway? <one>C1q</one>.
235
+ - A. W. für "granulocytes"? <one>Polymorphonuclear leukocytes</one>.
236
+ - Most proteins are <one>immunogenic</one> when injected from a different species. Name two exceptions. A: (1) <one>collagen</one> (2) <one>cytochrome C</one>
237
+ - <one>MHC restriction</one> is important for which immune cells? The <one>T cells</one>.
238
+ - What do we typically mean with an <one>immune complex</one>? This is a complex consisting of <violet>antibodies</violet> and (<orange>bound</orange>) <violet>antigens</violet>.
239
+ - <one>Plasmazellen</one> produzieren Antikörper. Etwa wie lange, im Durchschnitt? Etwa <one>2-3 Wochen</one>, danach erfolgt die Apoptose.
240
+ - What happens when the <one>spleen</one> is removed from an individual? This individual will be <one>highly susceptible to infections with encapsulated bacteria</one>.
241
+ - Welche Färbung kann für die Granulozyten verwendet werden? Die <one>Giemsa-Färbung</one>.
242
+ - Which <one>complement pathway</one> is part of the innate immune system? The <one>alternative pathway</one>, as it is antibody-independent.
243
+ - Why the name <one>MHC restriction</one>? Because T cells are restricted to recognize only those antigens that are "associated with cell-surface MHC molecules".
244
+ - The <one>Cyclophilins</one> are a family of proteins. They can bind to which molecule? They can bind to <one>cyclosporine</one>.
245
+ - In the <one>human blood</one>: may we find "more B cells" or "more T cells"? <one>More B cells</one>; twice the amount than T cells.
246
+ - <one>Pentraxins</one> can bind which ligand? <one>Calcium</one>.
247
+ - Welche Therapie mögen wir verwenden, um die <one>rheumatoide Arthiritis</one> zu bekämpfen? Die <one>Anti-TNF-alpha-Therapie</one>.
248
+ - Name the two main categories of "white blood cells". A: (1) <one>lymphoid</one> (2) <one>myeloid</one>
249
+ - <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>.
250
+ - Welche <one>Immunantwort</one> sehen wir jeweils bei "B-Zellen" und bei "T-Zellen"? (1) B-Zellen: "Antikörper-vermittelte Immunantwort". (2) T-Zellen: <one>Zell-vermittelte Immunantwort</one>.
251
+ - Warum benötigt der menschliche Körper <one>NK-Zellen</one>? Diese töten <one>intrazelluläre Erreger</one>, wie zum Beispiel Viren.
252
+ - Who causes <one>listeriosis</one>? The gram-positive intracellular bacterium <one>Listeria monocytogenes</one>.
253
+ - In which year was the term <one>cytokine</one> proposed? In the year <tomato>1974</tomato>, when Stanley Cohen published an article describing the production of "MIF" in virus-infected allantoic membrane and kidney cells. This thus showed that the production of these compounds was not limited to immune cells.
254
+ - <one>IgA</one> kommt in welchen Formen vor? (1) monomer (2) dimer (3) <one>trimer</one>
255
+ - First <one>enzymes</one> to be activated in the lectin pathway? MASP-1 and MASP-2; mannose-binding lectin associated serine proteases.
256
+ - Which cells have <one>MHC II</one>? Only antigen-presenting cells (such as dendritic cells).
257
+ - Nenne einen Unterschied zwischen den <one>dendritischen Zellen</one> und den <one>Makrophagen</one>. A: Dendritische Zellen können sehr leicht aus dem Gewebe auswandern.
258
+ - Wie werden <one>Granulocyten</one> noch genannt? <one>Polymorphkernige Leukocyten</one>.
259
+ - Alle Immunzellen entstehen letzten Endes aus ... ? Der <one>pluripotenten, hämatopoetischen Stammzelle</one>.
260
+ - Welche Zellen haben sowohl <one>MHC-1</one> als auch <one>MHC-2</one>? <one>APC Zellen</one>.
261
+ - Was ist eine <one>Granulozytose</one>? Dies ist eine "Vermehrung der Granulozyten im peripheren Blut".
262
+ - When was <one>smallpox</one> eradicated? In the year <one>1980</one>. URL: https://en.wikipedia.org/wiki/Smallpox#Eradication
263
+ - Vor allem welche Zellen exprimieren <one>TLR9</one>? Die <royalblue>pDCs</royalblue> ("plasmacytoid dendritic cells").
264
+ - In Immunology: which effect does <one>Interleukin-2</one> have in the human body? Interleukin-2 triggers the division of immune cells.
265
+ - Name a CD-membrane receptor used by <one>NK cells</one>. A: <one>CD16</one>. URL: https://www.ncbi.nlm.nih.gov/pubmed/23487023
266
+ - Which cell in the human body is especially productive when it comes to the production of <one>interleukins</one>? The <one>T-helper cells</one>.
267
+ - Das Genprodukt bei der <one>Gaucher-Krankheit</one> ist ... ? <one>Glucorebrosidase</one>.
268
+ - <one>Inflammation</one> can be classified into which two groups? (1) <one>acute</one> (2) <one>chronic</one>
269
+ - In immunology: what does the abbreviation <one>MALT</one> stand for? <one>Mucose-associated lymphoid tissue</one>.
270
+ - In mammals: the <one>Toll-like receptor</one> can activate which pathway? The <one>NF-Kappa B pathway</one>. URL: https://en.wikipedia.org/wiki/NF-%CE%BAB#Signaling
271
+ - How many <one>antigen-binding receptors</one> can we find on the surface of a typical, average T cell? About <one>30.000</one>.
272
+ - <one>T lymphocytes</one> originate from ... ? The <one>bone marrow</steelbue>.
273
+ - Do <one>Toll-like receptors</one> play a role in innate immunity? Yes, in particular during <orange>innate immune recognition</orange>.
274
+ - 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.
275
+ - Typically <one>inflammation</one> at the site of infection is initiated by which cell in the human body? By <one>macrophages</one>.
276
+ - What happens if we knock out the gene for the <one>Fas-death receptor</one> in mice? This prevents the normal death of some lymphocytes - they will thus accumulate, which may lead to an autoimmune disease.
277
+ - <one>Cytokines</one> are typically fairly small proteins, in the range of about n to n kDa? About <one>~5-20 kDa</one>.
278
+ - Was heisst <one>Peripoloese</one>? (1) peri: <orange>herum</orange> (2) polemai: <one>wandern</one>
279
+ - Give another term for the two words <one>adaptive immunity</one>. A: <one>Specific immunity</one>.
280
+ - Who first proposed <one>the cellular theory of immunity</one>? <one>Elie Metchnikoff</one>.
281
+ - Can the <one>T-cell receptor</one> interact with free antigen? No.
282
+ - Precursors of macrophages are ... ? <one>Monocytes</one>.
283
+ - Die <one>Komplementkaskade</one> führt letztlich zu einer ...? <one>Akuten Entzündungsreaktion</one>.
284
+ - What is the basic problems of vaccines against <one>bioweapons</one>? They must be administered _before_ exposure to bioweapons.
285
+ - Name the three members of the <one>secondary lymphoid organs</one>. A: (1) <one>spleen</one> (2) lymph nodes (3) MALT
286
+ - Die <one>Aktivierung der Mastzellen</one> steht im Zusammenhang mit welchen Antikörpern? <one>IgE</one>.
287
+ - How did old literature call <one>PAMPs</one>, sort of? As the <one>endotoxin receptor</one>.
288
+ - <one>CD4</one> interagiert mit welchem MHC? <one>MHC II</one>.
289
+ - The receptors for chemokines belongs to which family? To the <one>GPCR superfamily</one>.
290
+ - Why can we say that <one>malaria could be prevented quite easily</one>? Because we could simply <one>use a mosquito net</one>.
291
+ - In immunology: the <one>BiP protein</one> is very important. What does BiP stand for, as an abbreviation? <one>Binding immunoglobulin protein</one>.
292
+ - Define an <one>opportunistic pathogen</one>. A: This is <one>a pathogen that causes disease only in the absence of normal host resistance</one>.
293
+ - Nenne eine Immunzelle, die <one>keine Antigene präsentieren kann</one>. A: Die <one>T-Zellen</one>.
294
+ - <one>Gewicht der Milz</one> beim Menschen? 200 Gram (also <one>0.2 kg</one>).
295
+ - Welche Funktion haben <one>regulatorische T-Zellen</one>? Sie unterdrücken die Aktivierung des Immunsystems und verhindern dadurch die Entstehung von Autoimmunkrankheiten.
296
+ - <one>Epithelial cells</one> in the vertebrates secrete which antimicrobial molecules? <one>Defensins</one>.
297
+ - Lateinisch für <one>Pocken<one>? <one>Variola</one>. URL: https://de.wikipedia.org/wiki/Pocken
298
+ - TLRs signal via the MYD88 protein. What does <one>MYD</one> stand for here? <one>Myeloid differentiation</one>.
299
+ - Nenne einen <one>Chemokinrezeptor</one> auf B-Lymphocyten. A: <one>CXCR5</one>.
300
+ - <one>Dectin-1</one> binds beta-glucan. Why is this of relevance in immunology? Because beta-glucan is the major component of the yeast form of "Candida albicans".
301
+ - In der Immunologie: was bedeutet der Begriff <one>semiallogen</one>? Das heisst <one>zu 50% ein Fremdkörper</one>.
302
+ - Who was <one>the founder of medical statistics</one>? <one>Florence Nightingale</one>.
303
+ - Name a significant difference between the <one>lectin pathway</one> and the "classical complement pathway". A: In the lectin pathway <one>no antibody</one> bound to any target is used.
304
+ - Ist die <one>Milz</one> an das Lymphgefässystem angeschlossen? Nein.
305
+ - Was ist <one>Zöliakie</one> und wieso mag dies in der Immunologie von Relevanz sein? Zöliakie ist eine chronische Erkrankung, die durch den Genuss "glutenhältiger Speisen" ausgelöst wird.
306
+ - Aus den <one>myeloiden Vorläuferzellen</one> entsteht (4) was? (1) Bluttplättchen (2) Granulozyten (3) Makrophagen (4) <one>Erythrocyten</one>
307
+ - Nenne <one>eine gereinigte Trägersubstanz für Antigene</one>. A: <one>Sepharose</one>.
308
+ - Nenne vier immunologisch privilegierte Regionen. A: (1) Auge (2) Gehirn (3) Hoden (4) <one>Uterus</one>
309
+ - Direkte Vorläufer der <one>platelets</one>? <one>Megakaryocytes</one>.
310
+ - Die <one>erworbene Immunität</one> können wir unterteilen in ... ? (1) <one>humorale Immunität</one> (2) <one>zellvermittelte Immunität</one>
311
+ - The <one>TLR4-MD-2 complex</one> ist formed by "Toll-like receptor (TLR) 4" and the "myeloid differentiation factor 2 (MD-2)". It thus is a "heterodimer". What can it recognize? It can recognize a pattern in <one>structurally diverse LPS molecules</one>.
312
+ - Bei der immunologischen Signaltransduktion: <one>IRAK4</one>, IRAK1, und IRAK2 kooperieren mit welch anderem Protein das mit dem Buchstaben "T" beginnt? <one>TRAF3</one>.
313
+ - Name the three general roles of the <one>complement system</one>. A: (1) <one>opsonization</one> (2) "membrane attack complex" (3) "enhance inflammation"
314
+ - Nenne eine <one>wichtige Aufgabe von Langerhans-Zellen</one>. A: Sie nehmen Mikroorganismen (vor allem Antigene), die in die <one>Haut</one> eingedrungen sind, auf.
315
+ - Was meinen wir in der <orange>Immunbiologie</orange> mit einem <one>inneren Angriff</one>? Dies meint <one>entartete Zellen</one>.
316
+ - Do <one>neutrophils</one> kill cells to which they bind? Yes, <one>if it is a microbe</one>, for example.
317
+ - Wo in der Zelle finden wir die <one>JAKs</one>? Im <one>Cytoplasma</one>.
318
+ - 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.
319
+ - Give an example for <one>Alarmins</one> in the human body. A: The <one>defensins</one>.
320
+ - Among the <one>circulating white blood cells</one>: what is the "most abundant population" of cells there? The <one>Neutrophils</one>.
321
+ - Name three inflammatory cytokines that are also <one>endogenous pyrogens</one>, aiding in the process of inflammation? (1) IL-1 (2) IL-6 (3) TNF-Alpha
322
+ - Which <one>hormone</one> can act as <lightseagreen>an anti-inflammatory agent</lightseagreen>? <one>Cortisol</one>.
323
+ - In immunology we have the word <one>RAGE</one>, which is an extremely clumsy abbreviation (sort of) for ... ? <one>Multiligand receptor binding advanced glycation end products</one>.
324
+ - Does the lectin pathway of the complement system depend on antibody for its activation? No.
325
+ - The alternative pathway of the complement system involves which four serum proteins? (1) C3 (2) factor B (3) factor D (4) properdin
326
+ - In der Immunologie: wofür steht die Abkürzung <one>BALT</one>? "Bronchus associated lymphoid tissue". URL: https://en.wikipedia.org/wiki/Bronchus-associated_lymphoid_tissue
327
+ - Was meinen wir mit <one>parenteral</one>? <one>Am Darm vorbei</one>; also "unter Umgehung des Darmes". Dies sind Wege, bei denen Stoffe oder Krankheitserreger unter Umgehung des Darmtraktes in den Körper gelangen. Die <orange>Spritze</orange> ist ein Beispiel hierzu.
328
+ - The <one>danger-hypothesis</one> by Matzinger stated that which constitutes the "danger" signal? Cellular stress or tissue destruction causes the release of cellular contents, which in turn triggers the "danger" signal.
329
+ - Which component of the complement pathway <one>initiates formation of the membrane-attack complex</one>? <one>C5b</one>.
330
+ - What is meant with the term <one>anaphylatoxin</one>? This refers to a <one>mediator of inflammation</one>.
331
+ - Do all three complement-activating pathways lead up to the build-up of the membrane attack complex (MAC)? Yes.
332
+ - <one>T-Lymphocyten</one> wandern in welchen Bereich des Lymphknoten, und warum genau? In den "Paracortex" aufgrund eines Chemokins, das dort gebildet wird.
333
+ - <one>Mastzellen</one> besitzen in ihrem Inneren "<ud>Granula</ud>", die welche zwei Substanzen enthalten? (1) "Histamin" (2) <one>Heparin</one>
334
+ - Wie lange sollte ein <one>Epitope</one> sein um erkannt zu werden? 10-15 Aminosäuren.
335
+ - Give an example for a <one>secondary lymphoid organ</one>. A: The <one>lymph node</one>.
336
+ - The complement protein C1r and C1s, as monomers, each contain two important domains. How are these two domains called? (1) <one>catalytic domain</one> (2) <one>interaction domain</one>
337
+ - In general: when does the <one>pentameric IgM antibody</one> assume its so-called staple configuration? When it is bound to antigen on a target surface.
338
+ - The <one>C1 molecule</one> of the complement cascade is stabilized by which metal? <one>Ca 2+ ions<7one>.
339
+ - How long is <one>a good epitope</one>? About <one>18 - 22 Aminoacids</one>.
340
+ - The <one>lymphoid lineage</one> gives rise to which 3 cell types? (1) T cell (2) B cell (3) <one>NK cell</one>
341
+ - The complement fragments interact with one another to form functional complexes. 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>.
342
+ - 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.
343
+ - In Immunology: what is typically meant with an <one>immune complex</one>? This refers to an <one>Antigen-Antibody complex</one> normally.
344
+ - Opsonization typically leads to the activity of which cell in the human body? A <one>phagocyte</one>.
345
+ - Complement components 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>.
346
+ - Complement components constitute n%, by weight, of the serum globulin fraction. A: <one>5%</one>.
347
+ - The complement reaction sequence begins with ... ? An enzyme cascade.
348
+ - Which cells of the human body synthesize the complement proteins? The <one>liver hepatocytes</one>.
349
+ - The adhesion of Leukocytes to endothelia requires ...? Integrin activation.
350
+ - Who established the "side chain theory"? Paul Ehrlich.
351
+ - Who coined the term <one>complement</one>? Paul Ehrlich.
352
+ - Who coined the term "antibodies"? Paul Ehrlich.
353
+ - 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
354
+ - A. W. für <one>epitopes</one>? <one>Determinants</one>.
355
+ - 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>.
356
+ - Welches <one>Interleukin</one> agiert als Wachstumsfaktor für Tc-Zellen? <one>Interleukin-2</one>.
357
+ - How do <one>Tc cells</one> kill? By releasing "Perforin" and <one>Granzymes</one>.
358
+ - Name a <one>chaperone</one> that is very important in immunology. A: The "<u>BiP</u>" (<one>binding protein</one>). URL: https://en.wikipedia.org/wiki/Binding_immunoglobulin_protein
359
+ - Was akkumuliert beim <one>Tay-Sachs Disease</one>? Das <one>Ganglioside GM2</one>.
360
+ - Nenne 4 <one>APC Zellen</one>. A: (1) Thymische Epithelialzellen (2) B-Zellen (3) Dendritische Zellen (4) <one>Makrophagen</one>
361
+ - Welches Verfahren führte <one>Emil von Behring</one> ein? Das Verfahren der <one>passiven Immunisierung</one>.
362
+ - Findet in den <one>sekundären lymphatischem Gewebe</one> <lightseagreen>Lymphopoese</lightseagreen> statt? Nein.
363
+ - 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.
364
+ - During inoculation, <one>which Immunoglobulin</one> can we find when we inject an antigen for the first time, and then for the second time? Initially, <violet>IgM</violet> is produced. At the second injection (<royalblue>booster</royalblue>), the body creates <one>IgG</one>.
365
+ - How many amino acids may we find in the <one>J gene segment</one>? Up to <one>13</one>.
366
+ - <one>PAMPs</one> activate which immune response? PAMPs activate the <one>innate immune response</one>.
367
+ - Welcher <one>Mechanismus</one> schaltet selbstreaktive B- und T-Zellen aus? Der Mechanismus der <one>zentralen Toleranz</one>.
368
+ - Deutscher Name für die <one>Tuberkulose</one>? <one>Schwindsucht</one>.
369
+ - <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>.
370
+ - Wie wurden <one>regulatorische T-Zellen</one> früher genannt? <one>Suppressor-T-Zellen</one>.
371
+ - The <one>secondary adaptive immune response</one> is possible only because of which phenomenon? <one>Memory</one>.
372
+ - "Virus-infizierte Zellen" produzieren viele Virusproteine. Einige davon werden in den Proteasomen abgebaut. Es entstehen so Peptide, die wie lang sind (von-bis)? Etwa <one>8-10 Aminosäuren</one> lang.
373
+ - In der Immunologie, wofür steht die Abkürzung <one>NLR</one>? <one>Nod-like Rezeptor</one>.
374
+ - Nenne einen <one>Vertreter der Lektine</one>, die auch in der Immunologie relevant sind. A: <one>Selektine</one>.
375
+ - Nenne ein <orange>surface antigen</orange> das man bei <one>Schweinen</one> aber nicht bei <one>Menschen</one> findet. A: <one>Alpha-1,3-Galactosidase</one>.
376
+ - Which <one>gene</one> directs regulatory T cell development? <tomato>FOXP3</tomato>. URL: https://en.wikipedia.org/wiki/FOXP3
377
+ - <one>Lectin</one> can, for example, bind to ... ? To <one>mannose</one>.
378
+ - Where are <one>memory B cells</one> formed? Within <one>germinal centers</one>.
379
+ - Wann wurde die <one>CD Nomenklatur</one> etabliert? Im Jahre <one>1982</one>.
380
+ - <one>Modern immunology</one> started with ... ? <one>Edward Jenner</one>'s vaccination against smallpox.
381
+ - Was ist die <one>Morbidität</one>? Das <one>Verhältnis</one> von kranken Individuen zur Risikopopulation im Bezugszeitraum.
382
+ - What is the <one>rheumatoid factor</one>? The rheumatoid factor is <one>an autoantibody</one>.
383
+ - Wo mögen wir ein <one>Epitope</one> finden? Als <one>Teil eines Antigens</one>.
384
+ - In immunology, at the "antigen receptors on cells": <orange>which aminoacid</orange> is very prevalent? <one>Leucine</one>.
385
+ - Beim <one>septischen Schock</one> sehen wir eher einen hohen oder niedrigen Blutdruck? Eher einen <one>niedrigen Blutdruck</one>. URL: https://flexikon.doccheck.com/de/Septischer_Schock
386
+ - How do we call the time period in which expanded lymphocyte clones die? <one>Contraction phase</one>.
387
+ - In Immunology: what do we mean with <one>Bence-Jones protein</one>? These are <one>the antibodies light chains</one>. URL: https://en.wikipedia.org/wiki/Bence_Jones_protein
388
+ - In der Immunbiologie: wofür steht die Abkürzung <one>TTSS</one>? <one>Type-III-Secretion-System</one>.
389
+ - 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>.
390
+ - Name a cell type that can kill virus-infected cells. A: The <tomato>NK cells</tomato> (Natural kill cells).
391
+ - Das "C9-Fragment" des Komplementsystems bildet einen Kanal von ... <orange>n Angstrom</orange> Durchmesser? Etwa "<u>100 Angstrom</u>".
392
+ - Was heisst "immunitas"? <tomato>Freiheit von Infektionen</tomato>.
393
+ - Was meinen wir mit "<u>LTNPs</u>" ("long-term non-progressors")? Dies sind Menschen die, zum Beispiel mit dem HI-Virus (HIV) infiziert sind aber <tomato>nicht an AIDS erkranken</tomato>. URL: https://en.wikipedia.org/wiki/Long-term_nonprogressor
394
+ - As part of the ADCC-response in a human body, which effector cell is the most likely one to participate in this defence? The <violet>NK cells</violet> (aka <tomato>natural killer cells</tomato>).
395
+ - T-Helferzellen haben welchen CD-Marker? <tomato>CD4-Marker</tomato>.
396
+ - In der Immunologie, wie heisst der "MHC" beim Menschen? <tomato>HLA</tomato>.
397
+ - NK-Zellen gehören zu welcher Untergruppe? Sie gehören zu den <tomato>Lymphozyten</tomato>.
398
+ - Wann wurde das <violet>Prader-Willi Syndrom</violet> erstmals beschrieben? 1956.
399
+ - Name the four major components of the Myddosome. A: (1) IRAK1 (2) IRAK2 (3) IRAK4 (4) MyD88
400
+ - An active MAC ("membrane attack complex") is composed of the subunits C5b, C6, C7, C8 and C9 molecules. Which one of these molecules is present at the highest copy? <tomato>C9</tomato>.
401
+ - Name the three groups of plasma proteins. A: A,F,G. (1) albumins (2) fibrinogen (3) globulins
402
+ - A. W. für "Immunologischer Schutz"? <tomato>Feiung</tomato>.
403
+ - What is meant with the term <tomato>xenoimmunity</tomato>? These are <one>disease-causing immune responses to the commensal microbiota</one>.
404
+ - During <violet>Opsonization</violet>, phagocytosis is enhanced by which complement protein? C3b.
405
+ - Wo mögen wir <tomato>CD34</tomato> finden? CD34 ist ein Adhäsionsprotein das man auf "manchen Stammzellen" finden kann.
406
+ - Was detektiert TLR3? <violet>dsRNA</violet> - also <tomato>Viren</tomato>.
407
+ - Nenne einen Zelltyp im Immunsystem, der Apoptose induzieren kann. A: <violet>NK-Zellen</violet> ("Natürliche Killerzellen").
408
+ - Who are <violet>the molecular mediators of inflammation</violet>? (1) "cytokines" (2) "chemokines"
409
+ - Jeder Mensch besitzt "n verschiedene B-Zellen"? <orange>1 Million</orange> (also <tomato>10 ** 6</tomato>).
410
+ - Gehören die "Tonsillen" zu dem MALT-Gewebe? Ja.
411
+ - What was the first "PRR" ("pattern recognition receptor") that was identified? This was the "Toll-receptor" in <violet>Drosophila</violet>. URL: https://en.wikipedia.org/wiki/Toll-like_receptor#Superfamily
412
+ - Was ist das gefährlichste bei einer <violet>Sepsis</violet>? Das <tomato>Organversagen</tomato>.
413
+ - Name 3 components of the "Myddosome" within the cell. A: (1) <tomato>MyD88</tomato> (2) <tomato>IRAK1</tomato> (3) <tomato>IRAK4</tomato>
414
+ - Is <tomato>Apoptosis</tomato> important in the immune system? Yes. Activated T-cells whose infectous agent was removed, are no longer needed -> Apoptosis.
415
+ - Do <one>natural killer cells</one> kill via apoptosis? <violet>No</violet> - they kill by binding to their target cell and then <tomato>releasing cytotoxic factors</tomato> that cause the death of the target cell.
416
+ - Wie nennen wir "MHC-Rezeptoren" noch, im Menschen? A: <tomato>HLA</tomato>: "<u>Humane Leukocytenantigene</u>". URL: https://en.wikipedia.org/wiki/Human_leukocyte_antigen
417
+ - Nenne die Effektorzellen der "erworbenen Immunität"! A: (1) <tomato>B-Zellen</tomato> (2) <tomato>T-Zellen</tomato>
418
+ - Which hypersensitivity type is cell-mediated? <tomato>Type IV</tomato> Hypersensitivity is cell-mediated.
419
+ - Nenne 3 verschiedene Formen der Gewinnung von Antikörpern, in Kurzform! A: (1) "monoklonal" (2) "polyklonal" (3) "rekombinant"
420
+ - Langerhans färbte die Langerhans-Zellen mit welcher Technik ein? <gold>Goldchlorid-Technik</gold>
421
+ - Which are the most abundant, circulating white blood cells? The <tomato>neutrophils</tomato>.
422
+ - The shared epitope, which can be found in rheumatoid arthritis patients, can activate the production of nitric oxide and ... ? Reactive oxygen species (<cornflowerblue>ROS</cornflowerblue>).
423
+ - The <violet>Janus-family kinases</violet> directly phosphorylate ...? "STAT Proteins".
424
+ - All but which cells deriving from the lymphoid and myeloid lineage are called "white blood cells"? The <tomato>erythrocyte</tomato>.
425
+ - Was sind die <violet>Hassal-Körperchen</violet>? Granuläre Bereiche innerhalb der Markregion des Thymus. Dort werden wahrscheinlich apoptotische Zellen abgebaut.
426
+ - MHC class II molecules are homodimers or heterodimers? Heterodimers.
427
+ - Formation of fibrin is "secondary hemostasis" or "primary hemostasis"? It is <tomato>secondary hemostasis</tomato>.
428
+ - Was meinen wir mit "anergisiert"? <tomato>Reaktionsunfähig gemacht</tomato>.
429
+ - Rheumatoid arthritis patients may have the <tomato>shared epitope</tomato>, which is a risk factor for severe disease. This HLA-DRB1-encoded amino acid sequence motif consists of how many amino acids? Five (5).
430
+ - What is the major difference between the primary and secondary response? The secondary response is <violet>stronger</violet> - there will be more antibody in the serum.
431
+ - Produzieren wir Menschen <lightblue>Antikörper gegen Haptene</lightblue>? Nein.
432
+ - Können <violet>T-Zellen</violet> Antigene direkt erkennen? Nein.
433
+ - In immunology, what do we mean with "LFA-1"? <tomato>Low-affinity integrin</tomato>.
434
+ - Innate Immunity is largely a function of ... ? <tomato>Phagocytes</tomato>.
435
+ - Sind Verletzungen der <violet>Milz</violet> heilbar? Nein.
436
+ - Nenne eine <orange>Proteingruppe</orange>, die bei der Abschaltung der Cytokinproduktion eine wichtige Rolle spielt. A: <violet>SOCS-Proteine</violet>. URL: https://www.ncbi.nlm.nih.gov/pubmed/11553846
437
+ - Do "<u>self-antigens</u>" exist? Yes - they can give rise to "autoimmune diseases".
438
+ - Die <one>Aflatoxine</one> können welche Krankheit verursachen? <tomato>Leberkrebs</tomato>.
439
+ - <one>Cyclosporin A</one> inhibiert die Synthese welcher Substanz? <tomato>Interleukin-1</tomato>.
440
+ - Give a specific example for a <orange>hapten</orange>. A: <tomato>Vitamin K1</tomato>.
441
+ - What do we mean with "selective immunodeficiency"? This is when only one type of immunoglobuins, such as <one>IgA</one>, is lacking.
442
+ - Which cell carries the "Fc receptor Fc-epsilon-RI"? An "eosinophil".
443
+ - Name the <orange>two types of adaptive immunity</orange>. A: (1) <tomato>humoral immunity</tomato> (2) <tomato>cell-mediated immunity</tomato>
444
+ - Why does the human body need <tomato>chemokines</tomato>? So that "more effector cells can be brought to the site of an infection".
445
+ - Was genau ist die "Diapedese"? Das Einwandern von Lymphocyten in entzündetes Gewebe, über das Gefässendothel.
446
+ - Wie lange benötigen wir für die Herstellung eines polyklonalen Antikörpers? <tomato>4-6 Wochen</tomato>.
447
+ - 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".
448
+ - What happens when <one>the AIRE gene</one> is defect? An organ-specific autoimmune disease is the result.
449
+ - Warum sind die "Tonsillen" wichtig in der Immunologie? Sie sind durch ihre <tomato>Lage</tomato> wichtig bei der Abwehr von Keimen, die über Mund und Nasenraum eindringen.
450
+ - 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: <tomato>CD16</tomato>.
451
+ - The typical ADCC involves activation of NK cells by antibodies. A NK cell in turn expresses Fc receptors, in particular ... which CD-variant? <tomato>CD16</tomato>.
452
+ - Which immune cells show the phenomena of MHC restriction? T cells.
453
+ - Why is <orange>immunological memory</orange> considered to be so important? Because that way people may be protected from a particular infection in a life-long manner.
454
+ - Name a regulatory protein tht can cause a B cell to become a plasma cell. A: BLIMP-1. URL: https://en.wikipedia.org/wiki/Plasma_cell#Immature_plasma_cells
455
+ - What will happen in/to B cells when BLIMP-1 is active? They will become <violet>plasma cells</violet>.
456
+ - The <tomato>memory response</tomato> in humans has a half-life of about ... ? 8-15 years.
457
+ - "Dendritic cells" originate from ... ? <tomato>Myeloid</tomato> progenitors within the bone marrow.
458
+ - Welche histologischen Bereiche finden wir in einem <tomato>Lymphknoten</tomato> üblicherweise? (1) Cortex (2) Paracortex (3) Medulla
459
+ - What is the prototypical class of PAMPs? LPS aka <tomato>Bacterial lipopolysaccharides</tomato>. These endotoxins are found on the cell membranes of gram-negative bacteria. LPS will specifically be recognised by TLR4.
460
+ - Which TLR recognizes dsRNA? <tomato>TLR3</tomato>.
461
+ - A <tomato>group of serovars</tomato> with common antigens is called ... ? A "serogroup".
462
+ - Wofür steht die Abkürzung <tomato>Flt3</tomato>? FMS-like tyrosine kinase 3.
463
+ - Nenne eine wichtige <tomato>immunologische Bedeutung</tomato> von Erythrocyten! A: Über den C3b-Komplementrezeptor beseitigen sie Immunkomplexe.
464
+ - When a TCR engages with antigenic peptide and MHC (peptide/MHC), the T lymphocyte is activated through ... ? <tomato>signal transduction</tomato>.
465
+ - What is the major role of the "T-cell receptor"? The T-cell receptor is responsible for recognizing fragments of antigen as peptides bound to major histocompatibility complex (MHC) molecules.
466
+ - Who precisely encodes for the Diphtheria-Toxin? The lysogenic bacteriophage <tomato>Beta</tomato>, its "tox-genes".
467
+ - What does <tomato>VSG</tomato> in the "African trypanosomes", stand for? "Variant-specific glycoprotein".
468
+ - Do <tomato>memory CD8 T cells</tomato> exist? Yes.
469
+ - Plasmazytoide DCs produzieren was? <tomato>Interferon</tomato> (nach "Antigenkontakt")
470
+ - What exactly is a "sepsis"? This is <tomato>a whole-body inflammation</tomato> caused by an infection.
471
+ - Somatic hypermutation in Immunology is allowed only in which cells? Only in <tomato>B-Cells</tomato> - and strictly forbidden in T-cells.
472
+ - In humans, name a good <tomato>(bio)marker</tomato> for "memory B cells". A: "CD27".
473
+ - Name the three different subgroups of helper T cells. A: (1) T-helper 1 (Th1) cells (2) T-helper 2 (Th2) cells (3) T-helper 17 (Th17) cells
474
+ - How many different subgroups exist among the helper T cells? Three.
475
+ - Which <tomato>organelle</tomato> is highly amplified in plasma cells? The <orange>rough ER</orange>.
476
+ - "CD4 T-cells" recognize antigen presented by <orange>MHC class .. molecules</orange>. A: "class II molecules".
477
+ - Since when are "Neutrophil extracellular traps" known? Since the year <orange>2004</orange>.
478
+ - Give another name to a <tomato>primary immune response</tomato>. A: <slateblue>Initial infection</slateblue>.
479
+ - <tomato>Effector T cell functions</tomato> fall into which three broad classes? (1) <orange>killing</orange> (2) <orange>activation</orange> (3) <orange>regulation</orange>
480
+ - In general, when may a <tomato>secondary immune response</tomato> occur? Upon a <one>re-infection</one>.
481
+ - The B-cell displays digested antigens to what other cell? To <tomato>antigen-specific TH2 cells</tomato>.
482
+ - Can <tomato>Leukocytes</tomato> migrate through the endothelium? Yes, as part of the "inflammatory response".
483
+ - Most people are heterozygous for the MHC. What does this mean, practically? That they will <tomato>express both MHC variants</tomato> at the same time.
484
+ - Was ist die normale Funktion des <tomato>IRAK4-Proteins</tomato>? NF-Kappa B zu aktivieren (ein Transkriptionsfaktor).
485
+ - The tonsils and adenoids form a ring of lymphoid tissues around the entrance of the gut and airway. How is this ring also called? This is the <orange>Waldeyer's ring</orange>.
486
+ - Which <orange>immune cell</orange> is particularly <tomato>active</tomato> (and important) during the "ADCC" reaction? The "<u>natural killer cell</u>". URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4515552/#S3title
487
+ - We wish to <tomato>replace the IL-nomenclature</tomato>. How and why? It is confusing - we should "develop a nomenclature based on cytokine structure".
488
+ - Which immune cells are by far the strongest activators of naive T cells? <orange>Mature dendritic cells</orange>.
489
+ - The production of "type I Interferon" may be prohibited by which cytokine? By the cytokine known as "Interleukin-10" (<orange>IL-10</orange>).
490
+ - Eine Zelle ist <orange>CD3+ CD4+</orange> ... welche Zelle ist es? Dies ist eine "T-Helferzelle".
491
+ - Pro Tag muss der menschliche Körper wieviel Gramm an "neutrophilen Granulozyten" synthetisieren? Etwa "<u>100 Gramm</u>".
492
+ - Name a "peripheral lymphoid organ" that begins with the letter <orange>p</orange>. A: The "Peyer's patches".
493
+ - Nenne ein <tomato>Beispiel</tomato> für eine "dendritische Zelle" der Haut. A: Die "Langerhanszellen".
494
+ - Nenne eine "immunologische Blotting-Nachweismethode". A: "<u>Western Blotting</u>".
495
+ - Are <tomato>superantigens</tomato> connected to MHC class I or MHC class II? They are connected to <orange>MHC class II</orange>.
496
+ - The epitopes recognizes by T-cell receptors are often ... ? <orange>buried</orange>.
497
+ - Name the two most important <orange>cytokine-types</orange> in Immunology. A: (1) "Interleukins" (2) "Interferons"
498
+ - The short peptide fragment called CLIP binds to MHC I or MHC II? It binds to <tomato>MHC II</tomato>.
499
+ - Can <orange>Langerhands cells</orange> leave the skin area? Yes; they can <orange>migrate to the lymphatic system</orange> after they have taken up antigen.
500
+ - Name the 3 signature properties of "adaptive immunity". A: (1) <tomato>diversity</tomato> (2) <tomato>specificity</tomato> (3) <tomato>memory</tomato>
501
+ - <royalblue>NKT cells</royalblue> release ... factors? <orange>immune response initiating factors</orange>.
502
+ - The Bence Jones protein was first described in which year? In "1847".
503
+ - In Immunology the adhesion molecule <orange>CD44</orange> is a receptor for what exactly? For the glycosaminoglycan "hyaluronan".
504
+ - The "Type IV delayed hypersensitivity" is an immune response directed at gluten. How do we call this? This is the <orange>celiac disease</orange>.
505
+ - What is <royalblue>the main effector function</royalblue> of B cells? The <orange>secretion of antibodies</orange>.
506
+ - Are <orange>chemokines</orange> more basic or acidic? They are "small, basic proteins".
507
+ - Give an example of an "unwanted immune response". A: <orange>Autoimmune diseases</orange>.
508
+ - Was ist eine "Zoonose"? Das ist eine von Tier zu Mensch und von Mensch zu Tier übertragbare <orange>Infektionskrankheit</orange>.
509
+ - In immunology, why/when may we wish to emply the <orange>Jerne-Nordin plaque test</orange>? So as to "make complement action visible".
510
+ - Can <orange>cytotoxic T cells</orange> induce target cells to undergo apoptosis? Yes of course.
511
+ - Nenne eine <orange>systemische Entzündungsreaktion</orange>. A: "<u>Fieber</u>".
512
+ - Mit "Peyer-Plaque" assoziierte Plasmazellen sezernieren meist welche Antikörper? <crimson>IgA</crimson>.
513
+ - Besitzen <orange>Vögel</orange> ein adaptives Immunsystem? Ja.
514
+ - T-Lymphozyten durchlaufen im Thymus <orange>wieviele Selektionsschritte</orange>? Zwei.
515
+ - Von den Lymphocyten im Blut, n% sind "natürliche Killerzellen"? <orange>10%</orange>.
516
+ - Which protein occurs in all 3 pathways of complement? The <orange>C3 Convertase</orange>.
517
+ - What is the major difference between "Alarmins" and "PAMPs"? Alaramins are <orange>endogenous molecules</orange>.
518
+ - Pathogens are not the only causative agents of tissue and cells damage: name another causative agent here. A: <orange>Trauma</orange>.
519
+ - From a structural point of view, what is the main difference 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.
520
+ - T-Helferzelle und T-cytotoxische Zelle <orange>erkennen</orange> jeweils verschiedene MHC Moleküle. Wie können wir uns dies merken? (1) MHC I "one helper" (2) MHC II "to eliminate invaders"
521
+ - In humans, <orange>TAP</orange> is the "antigen peptide transporter". It will transport antigens from the cytoplasm to ... ? To the <orange>endoplasmic reticulum</orange>.
522
+ - <orange>NETs</orange> are formed by which cells? By "Neutrophiles". (Mnemonic: beginnt mit dem Buchstaben "N")
523
+ - Name two specific examples for "anaphylatoxins". A: (1) C3a (2) C5a
524
+ - The B-cell receptor is similar to its corresponding antibody, except for the carboxy terminus. What difference can we see here? The B-cell receptor 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.
525
+ - The structure of the B-cell receptor is very similar to its corresponding antibody, except for ... ? A small portion of the carboxy terminus of the heavy-chain C region.
526
+ - Nenne zwei auf <orange>Cocain</orange> basierende Lokalanästhetika! A: "<u>ProLido</u>" (1) "Procain" (2) "Lidocain"
527
+ - Andere Bezeichnung, in Deutsch, für "Lobuli" in der Immunologie? "<u>Thymuslappen</u>".
528
+ - Wie wirkt ein "immunologisches Fusionsprotein" (Immunotoxin)? Zuerst bindet ein Teil an das Ziel; dann tötet der andere Teil die Zelle ab.
529
+ - Who or what synthesizes the components of the complement proteins? The <orange>liver hepatocytes</orange>.
530
+ - Complement action can be made visible through which test? Through the "Jerne-Nordin plaque test".
531
+ - Gibt es ein Beispiel für eine <orange>Abweichung von den Kochschen Postulaten</orange>? Tuberculosi bacteria. Nur in 10% der Fälle verursachen sie Symptome.
532
+ - Wie lange hält der Schutz durch eine <orange>passive Immunisierung</orange> an, in etwa? In etwa <orange>3 Monate</orange>.
533
+ - Define "polyvalent vaccine". A: A vaccine that immunizes against at the least <orange>two different diseases</orange>.
534
+ - Which cells express "class II MHC molecules"? <crimson>Antigen-presenting cells</crimson> (APC).
535
+ - Systematik bei der <orange>CD-Nummerierung</orange>? Sie entstanden "in der Reihenfolge ihrer Entdeckung".
536
+ - A. W. für "Antigen-Antikörper-Komplex"? "Immunkomplex".
537
+ - MHC genes in humans are located on which chromosome? They can be found on <orange>chromosome 6</orange>.
538
+ - Are MHC molecules glycoproteins? Yes they are.
539
+ - Name two general classification ways for cytokines. A: (1) <orange>structural classification</orange> (2) <orange>functional classification</orange>
540
+ - Which dendritic cell type is the major one that acts as sentinel against viral infections? The <orange>plasmacytoid dendritic cells</orange>.
541
+ - Was bedeutet "perivasculare Lokalisierung"? Wenn sich Zellen bevorzugt <orange>in der Nähe von Blutgefässen</orange> aufhalten.
542
+ - Name a cell type in immunobiology that is <orange>activated by MAMPs</orange>. A: The "dendritic cell".
543
+ - ... cells form the bridge between innate and adaptive immune responses. A: <orange>Dendritic cells</orange>.
544
+ - Name a large difference between the <orange>T-cell receptor</orange> and the <orange>B-cell receptor</orange>. A: The T-cell receptor can not bind an antigen directly; instead, it relies on MHC presentation of peptide fragments.
545
+ - Um eine <crimson>Immunantwort</crimson> wieder abzuschalten, was ist am wichtigsten? Die "Elimination des Antigens".
546
+ - In der <orange>Epidermis</orange> gibt es welche 2 immunologisch wichtige Zellen? (1) Langerhans-Zellen (2) intraepidermale T-Lymphozyten
547
+ - Wo genau können wir FR ("Framework Regions") finden? Im variablen Anteil eines Antikörpers.
548
+ - Where in a cell are MHC class I molecules synthesized? In the "endoplasmic reticulum" (<orange>ER</orange>).
549
+ - In der Immunologie gibt es ein 24-kDa Enzym namens AID, "Activation-induced deaminase". Was macht dieses Enzym? Es <orange>induziert Mutationen in der DNA</orange> indem es die Amino-Gruppe von einer Cytosine-Base entfernt, und sie so in Uracil konvertiert. Mit anderen Worten, DNA deamination of dC -> dU.
550
+ - Historically, <orange>one of the first serological tests</orange> to be developed was ... ? The "<u>precipitation test</u>".
551
+ - In the lab, a <orange>hapten</orange> may be conjugated to ... ? A "carrier".
552
+ - When we compare CD4 and CD8, which one has more subunits? <orange>CD4</orange>: it has "4 D domains".
553
+ - Name <orange>an adhesion molecule</orange> that is typically involved in leukocyte interaction. A: "Selectin".
554
+ - The movement of an immune cell (or other cells) through the basal membrane is called ... ? <orange>Diapedesis</orange>.
555
+ - During <crimson>Extravasation</crimson>, aka the "crossing of endothelial cell wall", phagocytes can squeeze through the basal membrane with the aid of <lightgreen>enzymatic degradation</lightgreen>, via the "MMP-9 enzyme". What is that abbreviation? This is the "Matrix Metalloproteinase-9" enzyme. It can cut through the ECM matrix.
556
+ - Name the biggest <crimson>constraint</crimson> of innate immunity. A: It is "<u>non-specific</u>".
557
+ - Which cells are in a "granuloma"? "<u>Macrophages</u>".
558
+ - "Histamin" ist bei Entzündungsreaktionen wichtig. Welche Zellen bilden Histamin? Die "<u>Mastzellen</u>".
559
+ - Bacterial fMet-Leu-Phe peptides activate ... which protein in a Neutrophil and what happens afterwards? Rac2. This then leads to the bacteria being taken up into a "phagosome".
560
+ - Englisch für "Wächterzellen". A: "<u>Sentinel cells</u>".
561
+ - Name an important structural feature of "MHC class I". A: It contains a "<u>peptide-binding cleft</u>".
562
+ - Are "PAMPs" a subset of "DAMPs" (damage associated molecular patterns)? Yes.
563
+ - "MHC molecules" are what type of proteins? They are "<u>glycoproteins</u>".
564
+ - Are PRRs ("pattern recognition receptors") clonally expressed? No.
565
+ - T-reg cells originate where? In the "<u>thymus</u>".
566
+ - Name the two mature myeloid cells. A: (1) "<u>monocytes</u>" (2) "<u>granulocytes</u>"
567
+ - Name a "<u>master regulator</u>" of neuroinflammation. A: "Interleukin-1".
568
+ - We can find at the least three different domains in the IL-17R family ("Interleukin-17 receptor family"), namely a "transmembrane domain", a cytoplasmic "SERIF domain" and an extracellular ... domain? An "extracellular fibronectin III-like domain".
569
+ - Which immune cell produces "Monokines"? Only the "monocytes".
570
+ - Lebensdauer der "neutrophilen Granulozyten"? Nur "<u>ein bis zwei Tage</u>".
571
+ - What is "<u>the key physiological function of NF-kappa-B</u>"? The orchestration of the inflammatory responses to both infection and tissue damage.
572
+ - "<u>Interferon-alpha</u>", an "interferon type I", is a protein that "interferes with viral replication". It was identifier in which year? "1957".
573
+ - What is a "cytokine storm"? This is a potentially fatal immune reaction consisting of a positive feedback loop between cytokines and white blood cells, with highly elevated levels of various cytokines.
574
+ - Wie können wir ein Cytokin definieren? Ein Molekül, das die Immunsystem reguliert bzw. regulieren kann.
575
+ - Why the name "chemokine"? "chemotactic cytokine".
576
+ - Name two "inflammatory cytokines". A: (1) "IL-1" (2) "TNF"
577
+ - Macrophage activation by which cytokine? "IFN-gamma".
578
+ - Nenne ein Cytokin das zellschädigend ist. A: "TNF-Alpha". URL: https://en.wikipedia.org/wiki/Tumor_necrosis_factor_alpha
579
+ - Both the "T-cell receptor" and an "antibody" 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.
580
+ - In immunology, what is meant with "CTLs"? These are the "<u>cytotoxic T-lymphocytes</u>".
581
+ - The "eosinophil" can kill parasites, but only under which condition? When said parasite is already coated with antibodies.
582
+ - Name one of the biggest clinical problems in "<u>treating fungal diseases</u>". A: The rapid and reliable diagnosis is still a major clinical problem.
583
+ - There are "three different Interferon genes" in the human genome. Which ones are induced "upeon exposure" to a virus/viral RNA? (1) "<u>IFN-Alpha</u>" (2) "<u>IFN-Beta</u>"
584
+ - What are "<u>Superantigens</u>"? Proteins capable of eliciting a very strong response because they activate more T-Cells than a normal response.
585
+ - Each individual B cell has how many B cell receptors? About 10 ** 5 (== 100000).
586
+ - In immunology, what is meant with a "CMI respons"? This refers to a "cell-mediated immune response".
587
+ - Why is the pIgR (Poly-Ig) Fc receptor important? It will facilitate facilitates the transcytosis of the soluble polymeric isoforms of immunoglobulin A.
588
+ - MHC-Klasse-II können Peptide initial nur wo genau innerhalb der Zelle binden? Im "Phagolysosom".
589
+ - Does both the innate and the adaptive immunity have "a humoral component"? Yes; for example, the "complement system" for the innate immunity and the "antibodies" for the adaptive immunity.
590
+ - Does "<u>innate immunity</u>" have the feature of memory? No.
591
+ - Who secretes the "CXCL8 chemokine"? "Activated macrophages".
592
+ - 1885 entwickelte Pasteur was? Einen "Impfstoff gegen die Tollwut".
593
+ - Wer gibt wie "Neopterin" frei? Makrophagen, wenn sie mit "Interferon-Gamma" (IFN-Gamma) stimuliert werden.
594
+ - Wovon hängt das Endergebnis einer Wirts-Parasitenbeziehung in normalerweise gesunden Menschen primär ab? Von der "Pathogenität eines Parasiten".
595
+ - IRAK4 and IRAK1 are associated with MyD88, but which receptor is associated with the latter, connected to TRAM and TIRAP? The "TLR4-receptor".
596
+ - The earliest cell in the B lymphocyte linage that can produce Ig polypeptides is called ... ? The "pre-B cell". URL: http://www2.nau.edu/~fpm/immunology/Exams/Bcelldevelopment-401.html#generation
597
+ - Die "zentrale Toleranz" beschreibt die Negativselektion von B- und T-Zellen im Knochenmark bzw. im Thymus, durch welche zwei verschiedene Mechanismen? (1) "induzierte Apoptose" (2) "Anergie"
598
+ - Die "Immuntoleranz" wird in welche zwei Bereiche unterteilt? (1) die "zentrale Toleranz" (2) die "periphere Toleranz"
599
+ - Nenne ein Protein mit einer "NACHT Domäne"! A: "Naip".
600
+ - Wie werden die "<ud>Komplementproteine</ud>" aktiviert? Sequenziell - durch "proteolytische Spaltung".
601
+ - Können Einzeller Schadstoffe aufnehmen? Ja - über "Phagozytose".
602
+ - Können B-Zellen durch naive T-Zellen aktiviert werden? Nein.
603
+ - How do we call molecules that "stimulate immune responses"? "Immunogens".
604
+ - If a "zone of equivalence" is reached in vivo, what can we also observe? That large immune complexes will form in the circulation.
605
+ - "Affinity maturation" results in an increase in the average ... ? "Average binding affinty of antibodies for an antigen as a humoral immune response evolves".
606
+ - "<ud>Affinity maturation</ud>" in "antigen-stimulated B cells" will lead to new ... structures. A: New "V domain structures".
607
+ - "Lady Montagu" führte wann die Variolation ein? "1721".
608
+ - Which person integrated the "<ud>variolation procedure</ud>", at around the year 1720, from Turkey to England? "Mary Montague".
609
+ - Name a big difference between NK cells and T or B-cells. A: NK cells "lack antigen specificity".
610
+ - Which two cells can have a "C3b receptor" ("C3bR") on their surface? (1) macrophages (2) natural killer cells (NK cells)
611
+ - Fc-gamma-RIII has which CD-number? "CD16".
612
+ - Name an "activity" of the "JAK proteins". A: JAKs possess a "kinase activity".
613
+ - Woraus bestehen allgemein (natürliche) "Immunkomplexe"? Aus "Antigen" und "Antikörper".
614
+ - Nenne einen wichtigen Chemokinrezeptor von T-Zellen! A: "CCR 7".
615
+ - In Immunology, what does the abbreviation "ISGs" stand for? "Interferon-stimulated genes" (ISGs).
616
+ - Where exactly can we find the "surrogate light chain"? In the "pre-BCR cell". 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.
617
+ - Können "Liposomen" das Immunsystem aktivieren? Ja.
618
+ - Wo finden wir meistens "Toll-like Rezeptoren"? In oder an Endosomen.
619
+ - "Surfactant protein A" has a role in the innate immune system. Which role is that? It is used to opsonize bacterial cells in the alveoli, thus marking them for phagocytosis by "alveolar macrophages".
620
+ - Do B-cells rather recognize hydrophobic or hydrophilic amino acids? Rather "hydrophilic aminoacids" (on the protein surface).
621
+ - Was meinen wir mit einer "Simultanimpfung"? Dies ist die gleichzeitige, also "simultane", Anwendung einer aktiven als auch passiven Immunisierung gegen einen Erreger.
622
+ - Welche zwei Formen der Immunsierung können wir unterscheiden? (1) "Aktive Immunisierung" (2) "Passive Immunisierung"
623
+ - What does "HLA" stand for, in immunology? "Human leukocyte antigen".
624
+ - Can "Eosinophils" phagotize? Yes they can.
625
+ - Die "Mukosa" besteht aus welchen zwei Schichten? Aus der oberen Epithelschicht und der darunter liegenden Eigenschicht.
626
+ - "Autoimmune diseases" are very often treated with ... ? "steroids".
627
+ - Why is the name "Tumor necrosis factor" a misnomer? Because it does not cause necrosis; it causes "apoptosis". URL: https://en.wikipedia.org/wiki/Tumor_necrosis_factor_alpha
628
+ - 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) "neutrophils" (2) "macrophages"
629
+ - In der Immunologie, was heisst "NSP4"? Neutrophilen-Serinprotease 4.
630
+ - Wie kann ich "Liposome" vor dem Immunsystem schützen? Durch "coating mit PEG" ("Polyethylenglykol").
631
+ - Wie nennen wir die "dendritischen Zellen in der Haut"? "Langerhans-Zellen".
632
+ - How can we translate the phrase "Functio laesa"? "Loss of function".
633
+ - Was ist das Hauptziel der "zellulären Immunantwort"? Die "infizierten Zellen" werden zerstört - beziehungsweise sollen zerstört werden.
634
+ - Welcher Komplementfaktor überwiegt in seiner Konzentration gegenüber den anderen Faktoren? "C3".
635
+ - In Immunology, does "CLIP" belong to the "immunoglobulin superfamily"? No.
636
+ - In der Evolution, gab es zuerst Komplement oder zuerst Antikörper? Zuerst entstand das Komplementsystem; danach entstanden die Antikörper.
637
+ - Wie nennen wir die "Dendritischen Zellen" in den "Schleimhäuten"? "Wächterzellen".
638
+ - What is one of the best studied examples for the existence of genetic factors in regards to influencing host defence against infectious disease? "Malaria".
639
+ - Are "heteropolymers" or "homopolymers" more immunogenic? "Heteropolymers" are usually "more immunogenic".
640
+ - Welche Granulozyten speichern "Peroxidase"? Die "eosinophilen Granulozyten".
641
+ - A. W. für "quantitatives Maß für die Pathogenität eines Pathogens"? Die "Virulenz".
642
+ - How do Tc cells kill a bacterium? By "inducing apoptosis" in an infected eukaryotic cell.
643
+ - How many nucleotides can we find in the "Recombination Signal Sequences"? "Seven".
644
+ - Nenne die 4 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.
645
+ - How does the human body usually "combat toxins", such as the diphtheria toxin? By antibodies that are selective against these toxins.
646
+ - Wer prägte den Begriff "Komplement"? "Paul Ehrlich". URL: https://de.wikipedia.org/wiki/Paul_Ehrlich
647
+ - How can we claim that the "membrane-bound Immunoglobulin" of B cells is NOT involved with "intracellular signal molecules"? Because "the cytoplasmic tail is too short".
648
+ - A. W. für "Hapten"? "Inkomplettes Antigen".
649
+ - To make an "immunotoxin", the binding component of the toxin is replaced with ... ? A "monoclonal antibody".
650
+ - Name an advantage of the "alternative pathway" compared to the "classical pathway". A: It is activated without the requirement of antigen-antibody complexes for initiation.
651
+ - Aufgabe der "TH2-Zellen"? Sie stimulieren B-Lymphozyten.
652
+ - Is "smallpox" caused by a virus or by a bacterium? By a virus.
653
+ - Why the name "C-reactive protein"? It can bind "pneumococcal C polysaccharid".
654
+ - Name a "hallmark of an infectious agent". A: An infectious agent is one that can multiply.
655
+ - What is the "antibody repertoire"? This is the "total number of antibody specificities" available to an individual; 10 ** 11 in humans.
656
+ - 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
657
+ - Give another name for "tolerance". A: "Immunologic unresponsiveness".
658
+ - A few Toll-like receptors can bind "MyD88". Which domain can do so? A: The "cytoplasmic domain".
659
+ - Why is "prednisone" used in immunology? Because it "suppresses an immune reaction against a transplanted organ". URL: https://en.wikipedia.org/wiki/Prednisone
660
+ - Can steroids act as "hapten"? Yes.
661
+ - What is an "Antigen"? Any material/molecule that "induces an immune response".
662
+ - Good immunogens should have a molecular mass of ... ? More than 100.000 Dalton.
663
+ - How can a cell regulate immune function, that is, within its own boundaries? Via "Ubiquitination".
664
+ - Another term for an "Epitope"? "Antigenic determinant".
665
+ - Vorläufer eines "Thrombozyten"? Ein "Megakaryocyt".
666
+ - Welche Zellen besitzen immer den Oberflächenmarker "CD3"? "CD3" ist ein "Marker für T-Zellen".
667
+ - Cytotoxische T-Zellen haben welchen CD-Marker? CD8-Marker.
668
+ - CxC chemokines can recruit ...? (1) "monocytes" (2) "lymphocytes"
669
+ - Nenne die beiden "klassischen Entzündungszellen". A: (1) Makrophagen (2) neutrophile Granulocyten
670
+ - Nenne zwei Stoffe, die beim Menschen als Adjuvanzien eingesetzt werden können. A: (1) Aluminiumhydroxid (2) bestimmte Toxoide wie das "Tetanustoxoid"
671
+ - For TLRs, which signal-transduction component towards other elements of the cell is most important? The "MyD88 adaptor".
672
+ - Mnemonic für die 3 Complement-Pathways? C,A,L - classical, alternative, lektin-pathway.
673
+ - MHC-Class I kann Peptidfragmente viraler Proteine in der Zelle binden. Wo genau innerhalb einer Zelle? Im "ER".
674
+ - Which CD is on "regulatory T cells"? "CD25".
675
+ - Where is the "AIRE Transcription factor" expressed? In the "medulla of the thymus".
676
+ - Name 3 cells that arise from the "common lymphoid progenitor". A: (1) "B cell" (2) "T cell" (3) "NK cell"
677
+ - When was the term "Type II secretion system" coined? The term Type III secretion system was coined in "1993".
678
+ - Was bewirkt ein Zinküberschuss bezogen auf das Immunsystem? Es führt zur "Immunsuppression".
679
+ - Medizinischer Vorteil von "Cyclosporin" und wieso ist dies relevant? Kann geschluckt werden (Cyclosporin hilft bei Transplantationen).
680
+ - Wie nennen wir "klonale Kontraktion" auf englisch? "Clonal downsizing".
681
+ - Was zeigen Menschen ohne Milz + Beispiel? A: Ein erhöhtes Risiko für Infektionen durch Bakterien mit Kapsel (Beispiel: "Pneumokokken").
682
+ - Name 4 categories of disease-causing microorganisms. A: (1) "fungi" (2) "viruses" (3) "bacteria" (4) "parasites"
683
+ - What is the "effector function of B-cells"? The "secretion of antibodies".
684
+ - MadCAM1 gehört zu welcher Familie? MadCAM1 ist ein "Adressin".
685
+ - Name three practical points that "the ideal vaccine" should have. A: (1) it should "provide life-long immunity in all immunocompetent vaccinees" (2) it should be "elicited with a single dose" (3) it should be "without side effects"
686
+ - The consequences of "IgE-mediated mast cell activation" depends on which two aspects? (1) the "dose of antigen" (2) the "route of entry"
687
+ - Name a chemical factor that "mast cells" can produce, starting with the letter "L". A: "Leukotrienes".
688
+ - Nenne zwei Funktionen der roten Pulpa des Milzparenchym! A: (1) Abbau überalterter Erythrozyten sowie (2) Blutspeicherung
689
+ - Another word for "harmless antigen"? "Innocous antigen".
690
+ - Was heisst "scFv"? A: "single chain Fragment variable". URL: https://de.wikipedia.org/wiki/ScFv-Fragment
691
+ - Warum ist es für Kinder mit PKU wichtiger wenig Phenylalanine 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.
692
+ - Was ist "Oxazolone" und wo wird es eingesetzt? Dies ist ein chemisches Allergen, das in immunologischen Experimenten verwendet wird, vor allem bei Experimenten bezüglich "delayed type hypersensitivity".
693
+ - What is the "dual function" of dendritic cells? (1) "antigen presentation" (2) "phagocytosis"
694
+ - Which proteins form the "active MAC" (membrane attack complex)? C5b-C6-C7-C8-C9.
695
+ - When were the "Henle-Koch postulates" first formulated? In "1840". URL: https://de.wikipedia.org/wiki/Henle-Koch-Postulate
696
+ - Wann wurde das "Alzheimer disease" zuerst beschrieben? 1907.
697
+ - Was bewirkt "Cyclosporin A" im Körper? Blockiert die "Interleukin-2 Produktion".
698
+ - Tc cells release which 3 cytotoxins? (1) "perforin" (2) "granzymes" (3) "granulysin" URL: https://en.wikipedia.org/wiki/Granulysin
699
+ - Nenne einen Vorteil der "aktiven Immunisierung". A: Es werden "Gedächtniszellen" produziert.
700
+ - An adult human produces how much mucos per day? A liter per day.
701
+ - 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
702
+ - "NKT cells" are a subpopulation of ...? "T cells".
703
+ - Anderes Wort für Tumorsuppressorgen? "Anti-onkogen".
704
+ - If we knock out adaptive immunity but retain innate immunity, what may the most surprising factor be, aside from a slight increase in pathogen load? There will be a "substantial increase in the length of infection".
705
+ - A. W. für "Vaccine"? "Immunogen".
706
+ - Wer ist der Erreger von Malaria und verursacht diese? "Plasmodium falciparum".
707
+ - Wie können wir, praktischer Natur, "CD-Antigene" erkennen? Mit Hilfe "monoklonaler Antikörper".
708
+ - Name a "functional difference" between "mature" and "immature dendritic cells". A: Immature dendritic cells can not stimulate naive T-cells.
709
+ - A lymphocyte can turn into a lymphoblast. By which "primary stimulus"? By "encountering an antigen".
710
+ - Warum brauchen wir IgE? Gegen "helminthic parasites".
711
+ - "CD4 TH2 cells" can switch the antibody isotype from .. to "IgE". A: "IgM".
712
+ - Bakterien stimulieren Makrophagen IL-6 zu bilden. Dieses wiederum löst was in Hepatocyten aus? Die "Synthese von Akute-Phase Proteinen".
713
+ - Nenne die beiden Hauptäste des hämatopoetischen Stammbaums! A: (1) "lymphoid" (2) "myeloid"
714
+ - Welche 3 Klassen von Granulozyten existieren? BEN. (1) basophil (2) eosinophil (3) neutrophil
715
+ - Name the 2 effector mechanisms of the "adaptive immune system". A: (1) "antibodies" (2) "effector T cells"
716
+ - What is meant with the "clonal selection hypothesis"? 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.
717
+ - How do we call the ability of the immune system to self-regulate? "immune regulation".
718
+ - Give a "physiological example of passive immunity". A: The "transfer of maternal antibodies to the fetus".
719
+ - Was können manche pflanzliche Lektine? Sie können "rote Blutkörperchen verklumpen".
720
+ - What is the role of the "Cathelicidins"? Cathelicidins serve a critical role in "mammalian innate immune defense" against "invasive bacterial infection".
721
+ - Wieso brauchen die Lymphozyten die Selektine? Damit sie "ihren Bestimmungsort finden können".
722
+ - A. W. für C5a? "Anaphylatoxin".
723
+ - Name a "co-stimulatory molecule" needed by mature dendritic cells but missing in immature dendritic cells. A: The "B7 molecule".
724
+ - A. W. für "TH1-cells"? "Inflammatory T cells".
725
+ - Name the 3 subpopulations of T cells. A: (1) "T helper cells" (2) "T cytotoxic cells" (3) "T regulatory cells"
726
+ - Name a chemoattractant secreted by "inflamed tissue". A: "Chemokines".
727
+ - Patients with "Bruton agammaglobulinemia" have which problem? They "lack all mature B lymphocytes". URL: http://emedicine.medscape.com/article/1050956-overview
728
+ - The immune system does more than just provide protection against infections. Explain this statement. A: The immune system also prevents the growth of some tumors.
729
+ - What is the primary function of a "regulatory T lymphocyte"? It is to suppress other T cells.
730
+ - Give two examples for "autoimmune diseases". A: (1) "Multiple sclerosis" (2) "Rheumatoid arthritis"
731
+ - Which cells proliferate into effector cells? The "lymphocytes".
732
+ - When the RANKL gene is disrupted, there may be a lack of which cells? Osteoclasts.
733
+ - What are "neutrophil extracellular traps"? These are networks of "extracellular fibers", primarily composed of DNA from neutrophils, which bind pathogens.
734
+ - Was geschieht in den "Hassal-Körperchen"? A: Abbau apoptotischer Zellen.
735
+ - Nenne 1 Beispiel für einen "zellulären Aktivator der Immunglobulin-Gene"! A: Nuclear Factor Kappa-Beta. URL: https://de.wikipedia.org/wiki/NF-%CE%BAB
736
+ - Werden Lymphknoten durchblutet? Ja.
737
+ - Bei der "invasive pneumococcal disease" sah man mitunter, das ältere Patienten mildere Symptome haben. Wieso das? Eventuell wird das Immunsystem trainiert.
738
+ - Which enzyme recognize the "Recombination Signal Sequences"? The "VDJ recombinase". URL: https://en.wikipedia.org/wiki/V(D)J_recombination
739
+ - Welcher Rezeptor ist bei der Opsonierung wichtig? Der "Fc-Rezeptor".
740
+ - Nenne 2 "invariable Cofaktorproteine des TCR". A: (1) CD3 (2) Epsilon-Kette
741
+ - Nenne zwei primäre lymphatische Organe! A: (1) Knochenmark (2) Thymus
742
+ - A. W. für "DNA vaccines". A: Genetic vaccines.
743
+ - Aktiviert das Komplementsystem T-Zellen? Nein.
744
+ - Wieviel Prozent der Lymphocyten im Blut sind NK-Zellen? 5-10%.
745
+ - Warum heissen die "Chemokine" so? Aufgrund ihrer "Chemotaxis".
746
+ - What do we mean with the term "immunological tolerance"? This is the failure to mount an immune response to an antigen.
747
+ - Was ist mit "Involution" in der Immunbiologie gemeint? Die "Rückbildung des Thymus".
748
+ - The so-called "Myddosome" is important for which part of Immunobiology? It is important for "innate immune signaling". URL: https://www.ncbi.nlm.nih.gov/pubmed/21269878
749
+ - What are "immunogens"? Substances that can "induce an immune response".
750
+ - Name a cell group that can activate T lymphocytes. A: APCs: antigen-presenting cells.
751
+ - What happens if the Drosophila Toll-protein is mutated? This Drosophila will be "more susceptible to fungal infections".
752
+ - Welche 3 Zelltypen entstehen aus einer "lymphoiden Vorläuferzelle"? (1) B-Lymphocyten (2) T-Lymphocyten (3) NK Zellen
753
+ - Eine "natürliche Killerzelle" hat welche Zielstrukturen? (1) virusinfizierte Zellen (2) Krebszellen
754
+ - Wer sind die potentesten Stimulatoren von T-Zellen? Dendritische Zellen.
755
+ - Which proteins cause "hemolysis"? The "hemolysins".
756
+ - Define "fomites". A: These are "inanimate objects" such as toys or surgical instruments that can also transmit disease.
757
+ - Chemokines are ... ? A group of small proteins that function as chemoattractants for lymphocytes and phagocytes.
758
+ - Def. "Osteomalazie"! A: Verminderung der mineralischen Knochenbestandteile.
759
+ - Give a specific example for "parenteral transmission". A: For example, a virus transmitted via the "blood system".
760
+ - TLR5 erkennt ... ? Flagellin.
761
+ - Die von Köhler und Milstein entwickelte Methode nutzt welche Technik? Die "Hybridom-Technik". URL: https://de.wikipedia.org/wiki/Hybridom-Technik
762
+ - Welche T-Helferzelle Subklasse aktiviert Epithelzellen und lockt neutrophile Granulocyten an? TH17.
763
+ - Was ist die "Lymphopoese"? Dies ist die "Enstehung und Reifung von Lymphozyten in der Hämatopoese" (Blutbildung).
764
+ - Kann das adaptive Immunsystem vom angeborenen Immunsystem unabhängig ablaufen? Nein.
765
+ - Nenne eine Immunzelle, die MHC-II erkennen kann. A: TH-Zellen.
766
+ - Cytotoxische T-Zellen erkennen was genau auf der Zelloberfläche? Cytotoxische Z-Zellen erkennen die "MHC-I Klasse".
767
+ - Hauptproduzent von TNF-Alpha? Makrophagen.
768
+ - In Immunology, der is the "CLIP". What does this abbreviation stand for? Class II-associated invariant chain peptide. It belongs to the MHC II molecule.
769
+ - Why are cytotoxic T cells important? They can kill "cancer cells".
770
+ - Was bewirken "Akute Phase Proteine"? Diese Proteine bewirken eine "bessere Phagozytose von Krankheitserregern".
771
+ - Was sind "bispezifische Antikörper"? Antikörper bei denen jede Bindungsstelle ein unterschiedliches Antigen bindet.
772
+ - Other term for "septic shock"? severe systemic inflammation
773
+ - Definiere eine "Kreuzreaktion". A: Dies ist die Reaktion eines Antikörpers mit einer Substanz die nicht Anlass für seine Bildung war.
774
+ - Define "lymphocyte repertoire". A: This is the total number of antigenic specificities in an individual.
775
+ - Diameter of monocytes (from, to)? 10-15 micrometers.
776
+ - How do we call the Macrophages in the liver? Kupffer cells.
777
+ - Nenne 2 Vertreter der MALTs. A: (1) Tonsillen (2) Peyer'sche Plaques
778
+ - Direkter Vorläufer eines Erythrocyten? Erythroblast.
779
+ - Was bedeutet "IgY" in der Immunologie, das "Y"? Y ... yolk (Eidotter)
780
+ - Which component of the "complement system" enhances inflammation? C3a.
781
+ - Das "Jenner-Experiment" fand wann statt? 1796.
782
+ - Bei einem "T-cell antigen receptor", welches Ende ist mit der Membran verankert? Das "Carboxyterminale Ende".
783
+ - Aside from its importance in fly development, name another reason as to why Drosophila requires the "Toll receptor". A: It helps produce antimicrobial peptides, which help against "fungal infections".
784
+ - Was meinen wir mit dem "immunologischem Gedächtnis"? Wenn die zweite Antwort auf das gleiche Pathogen viel effektiver ist als die erste Antwort.
785
+ - Der Transkriptionsfaktor­ "Komplex NF-Kappa B" bewirkt die Synthese von ...? Interleukinen.
786
+ - Nenne die 2 wichtigsten Rezeptoren des angeborenen Immunsystems. A: (1) TLRs: Toll-like Receptors (2) NODs: NOD-like Receptors
787
+ - W. h. "morbidus"? Krank.
788
+ - Name a receptor that can induce the synthesis of IFN-Alpha and IFN-Beta! A: Toll-like receptor TLR-3.
789
+ - What do we mean with the term "cell-autonomous immunity"? 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.
790
+ - The "immunological synapse" is the interface between which two cells? (1) An antigen-presenting cell (2) a lymphocyte, such as an effector T cell or Natural Killer cell
791
+ - Was ist der dominierende Antikörperisotyp in Vögeln? Ig Ypsilon.
792
+ - Name the 2 major functions of the sleep. A: (1) remove aging and damaged blood cells (2) initiate adaptive immune responses.
793
+ - Welche Immunzellen haben einen Ig-Epsilon Rezeptor? Mastzellen.
794
+ - Name the two main structural families of cytokines. A: (1) hematopoietin family (2) TNF family
795
+ - Was heisst "FoxP3" in der Immunologie? forkhead box protein 3
796
+ - Was ist ein "Epitop"? Ein Bereich eines Antigens, das vom Immunsystem, insbesondere von Antikörpern, als fremd erkannt wird. URL: https://en.wikipedia.org/wiki/Epitope
797
+ - In der Immunologie, was heisst "RANTES"? "Regulated on Activation, Normal T Cell Expressed and Secreted".
798
+ - Das Komplementsystem kennt wieviele Lektinwege? 2.
799
+ - Was ist ein "Idiotyp"? Die Antigenbindungsstelle eines Antikörpers.
800
+ - Was ist eine "immunologische Synapse"? Dies ist eine physische Kontaktstelle zwischen Immunzellen und anderen Zellen.
801
+ - Können dendritische Zellen zu professionellen APC-Zellen werden? Ja.
802
+ - Erstes Impfgesetz in Deutschland? 1874; siehe http://de.wikisource.org/wiki/Impfgesetz
803
+ - What does the term "pyogenic" mean? Pus-forming.
804
+ - Was sind "immunologisch privilegierte" Regionen? Dies sind durch anatomische Verhältnisse bedingte Regionen, in denen durch fehlende Lymphdrainage Fremdantigene persistieren können. Es kommt hier also nicht zu einer vollentwickelten Abwehr.
805
+ - Nenne vier immunologisch privilegierte Orte. A: (1) vordere Augenkammer (2) Glaskörper (3) Kornea (4) Gehirn
806
+ - Langerhans-Zellen findet man zwischen welchen Schichten der Epidermis? Stratum basale und Stratum spinosum.
807
+ - Bei Diagnostik, was heisst PPV und was gibt er an? "Positive Predictive value positives". Gibt die Wahrscheinlichkeit an, mit dem ein Testergebnis einen infizierten Patienten angibt.
808
+ - How is C3b normally stabilized? When it meets LPS.
809
+ - Name the 3 T-cell functions. A: (1) killing (2) activation (3) regulation
810
+ - Was heisst "doppelt negative Thymocyten"? CD4 und CD8 negativ.
811
+ - The daily production of which Ig is the greatest? IgA.
812
+ - What means "perinatal"? This is the period immediately before and after birth.
813
+ - Why is MHC I important? It can capture viral protein fragments and display these on the cell surface.
814
+ - Nenne einen Proteinkomplex, der mit dem Steroidrezeptor im Kern interagieren kann. A: NF Kappa Beta.
815
+ - How many "feet" do MHC class I and II have? MHC class I has one foot (transmembrane anchor), MHC class II has two feet.
816
+ - Which TNF amplifies the immune response that is also secreted by monocytes? TNF-Alpha.
817
+ - Give an example for a "multi-functionality strategy" in the human body. A: The DNA recombination that occurs during "VDJ recombination".
818
+ - Is an attenuated viral vaccine better than a dead viral vaccine? Yes, the immune response will be stronger.
819
+ - Name the 3 routes to complement activation. A: (1) classical pathway (2) alternative pathway (3) lectin pathway
820
+ - A parasite is rather large and can infect people. Name 3 type of cells that can act against a large parasite in the human body. A: (1) mast cells (2) eosinophils (3) basophils
821
+ - Name 2 products by Tc-cells that are produced after antigen presentation. A: (1) granzymes (2) perforin
822
+ - How many Toll-like receptors are known in mankind? 13.
823
+ - How is a "sepsis" caused? It is caused by an immune response, triggered by an infection.
824
+ - What is a "syngeneic host"? A host with an "identical genetic background".
825
+ - Is MHC I or MHC II more widespread? MHC I. Almost every nucleated cell of the body has it.
826
+ - Was heisst "AIRE Transcription factor"? Autoimmune regulator.
827
+ - Wie beeinflusst ein Vitamin-A-Mangel das Immunsystem? Die Schleimhautbarriere ist geschwächt, dadurch dringen Keime einfacher in den Körper.
828
+ - Künstlicher Antikörper-Ersatz durch ...? Durch "Aptamere".
829
+ - Nenne 4 markante Eigenschaften der T-Gedächtniszellen. A: (1) Schnellere Aktivierung (2) Keine Kostimulation erforderlich (3) Wanderung in das Gewebe (4) Lange Überlebensdauer
830
+ - Name 3 important "extrinsic factors" for (applied) immunogens. A: (1) dose (2) route of administration (3) foreign nature of the immunogen to the host
831
+ - The "Autoimmune regulator" has been shown to interact with which other protein? It can interact with the CREB binding protein.
832
+ - In Immunology, what means "TSA"? "tissue-specific self-antigens"
833
+ - What is the job of the "AIRE Transcription factor"? It prevents the immune system from attacking the body itself.
834
+ - IgA können wir in welche 3 Formen vorfinden? (1) als Monomer (2) als Dimer mit J-Kette (3) als sekretorische IgA
835
+ - "Tylosin" wird gegen welches Bakterium eingesetzt? Gegen Mycoplasma.
836
+ - Wieviele TLRs sind beim Menschen bekannt? 10.
837
+ - Die TLRs können wir in welche 2 Gruppen einteilen? (1) TLRs, die ihre Liganden in Endosomen oder Lysosomen erkennen (2) TLRs, die ihre Liganden auf der Zelloberfläche erkennen
838
+ - Was ist "Properdin" und wieso ist das von Relevanz für die Immunbiologie? Ein Plasmaprotein mit Affinität für C3bBb-Konvertase auf Bakterienzellen.
839
+ - Warum sind die "eosinophilen Granulozyten" so wichtig? Sie haben eine sehr wichtige Effektorfunktion gegen große, nicht phagozytierbare extrazelluläre Ziele wie Würmer und andere Parasiten.
840
+ - The "Freud Adjuvant" contains what? Dead mycobacteria.
841
+ - Aufgabe von CD71? Das ist der Transferrin-Rezeptor.
842
+ - Complement proteins target which bacteria group in particular? Gram-negative ones such as E. coli
843
+ - Where are the complement proteins synthesized? In the liver.
844
+ - Which three types of proteins 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
845
+ - Welche 3 Wege gibt es, das Komplementsystem zu aktivieren? (1) klassischer Aktivierungsweg (2) alternativer Aktivierungsweg (3) Lektin Aktivierungsweg
846
+ - What is the "Kostmann syndrome"? The complete absence of neutrophils.
847
+ - Name 3 important "properties of immunogenicity". A: (1) molecular size (2) sufficient molecular complexity (3) appropriate physical form
848
+ - Does Serum contain clotting proteins? No.
849
+ - Wann ist eine "Kreuzreaktion" erwünscht? Zum Beispiel bei einer Impfung mit Kuhpockenviren gegen die "echten Pocken". (Variola)
850
+ - Was geschieht in der roten Pulpa der Milz? Gealterte Erythrozyten werden hier aus dem Blut entfernt.
851
+ - Was sind "Immuntoxine"? Antikörper-Toxin Komplexe.
852
+ - 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
853
+ - How long is the spacer area that can be found adjacent to the "Recombination Signal Sequences"? Either 12 or 23 (unconserved) nucleotides, followed by a conserved nonamer (9 base pairs).
854
+ - Which granulocyte is central to "innate immunity"? The neutrophil.
855
+ - In Immunology, what means a "double negative" cell? All T cells come from progenitor cells from the bone marrow. They start as CD4- CD8- TCR-cells, which is also called the DN stage. DN for "double-negative".
856
+ - What means "ligare"? Binding.
857
+ - Wieso hat man Mäuse ohne thymus glands entwickelt? Diese Mäuse akzeptieren Organe von Menschen.
858
+ - Wieviele unabhängige Genfamilien kodieren für ein Immunglobulinmolekül? 3.
859
+ - Welche 2 Epitop-Typen gibt es? (1) Conformational determinant (2) Linear determinant
860
+ - Nenne 4 Beispiele für "Phagocytes". A: (1) Macrophages (2) Monocytes (3) Neutrophils (4) Dendritic cells
861
+ - Was ist die "Avidität"? avidus heisst "gierig", und die Avidität eines Antikörpers ist die Stärke einer multivalenten Bindung zwischen Antigen und Antikörper.
862
+ - Wann wurde die "Variolierung" in Europa eingeführt? Ca. 1720.
863
+ - Das Cholera-Toxin ist was für ein Toxin-Typ? Enterotoxin, ein AB-Toxin.
864
+ - Wie gehen die 4 Kochschen Postulate? (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.
865
+ - Was sind "Opsonine"? Das sind Plasmabestandteile, die durch Anlagerung an körperfremde Substanzen deren Elimination durch Phagozytose begünstigen.
866
+ - In der Immunologie, was ist die "Phasenvariation"? Variationen im Bereich der Oberflächenexpression.
867
+ - Neutrophils can trap microorganisms? Yes. They can expel their chromatin to produce "NETs". They can do so by using the enzyme PAD4, which modifies histones in a way that promotes unraveling of chromatin.
868
+ - Why does it take several days to develop a protective adaptive response? Initially only a few lymphocytes are available to interact with each antigen.
869
+ - Der TLR5-Rezeptor bindet woran? Flagellin.
870
+ - Blutproben im Labor versetzt man warum mit Citrat? Um die Gerinnung zu hemmen.
871
+ - Warum ist Rauchen gefährlich für "Hefe-Konsumenten"? Cytochrom P450 wandelt Benzo-Alpha-pyren in cancerogene Epoxide um.
872
+ - Das Tetrodotoxin der Fugu-Fische wirkt wie? Es bindet an Sodium (Natrium) channels in Nervenzellen.
873
+ - Wie entsteht die löslische Form von CD95L? Durch die Aktivität einer Metalloprotease.
874
+ - In der Peripherie unterscheidet man zwischen welchen DCs? A: pre DCs vs. conventional DCs.
875
+ - Genome Immune System? Ja. siRNAs.
876
+ - Welche Strategie gegen Parasiten? Duale Strategie.
877
+ - Ultrafiltrat des Blutplasmas. Welcher Zweck? Ernährung der umliegenden Gewebszellen.
878
+ - Nenne 3 Familien die zu den PRRs zählen! A: (a) C-Typ Lektinfamilie (b) NOD-Rezeptor ähnliche Familie (c) Toll-Rezeptor ähnlichen Familie.
879
+ - Unterschied zwischen Diapedese und Emeriploesis? Bei Diapedese wandern die Lymphocyten ZWISCHEN den Endothelzellen hindurch und nicht durch sie hindurch.
880
+ - Wofür steht das "M" in M-Zellen? Membran-Zellen.
881
+ - L-Selektin bindet an? Vaskuläre Adressine (Mucine vom Typ Lewis)
882
+ - 2 Charakteristika von M-Zellen nennen. A: Sie besitzen KEINE Mikrovilli, können aber aktiv pinozytieren.
883
+ - Welche Fähigkeit verlieren T-Zellen wenn sie die Rezeptoren verlieren? Die Fähigkeit über die HEV in den Lymphknoten zu gelangen.
884
+ - Hauptbestandteil der Epidermis (Zellen)? Keratinozyten.
885
+ - Wo in der PALS Region findet man B-Lymphocyten? Am Rand, wo sie einen Milz-Follikel bilden.
886
+ - T-Zellen mit AlphaBeta-TCR Rezeptor entwickeln sich zu ... ? CD4 und CD8 Zellen.
887
+ - Aufgabe der dendritischen Zellen? A: Nehmen Antigene in der Peripherie auf und wandern dann in Lymphknoten, um diese Antigene den naiven T-Zellen zu präsentieren.
888
+ - Which protein initiates the assembly of the membrane-attack complex/system? <orange>C5b</orange>. URL: https://en.wikipedia.org/wiki/Complement_component_5