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