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,492 @@
1
+ # =========================================================================== #
2
+ # === Clinical Microbiology tag.
3
+ #
4
+ # ctag tag. Clinical tag. Clinic tag. Medicinal Bacteriology. Infekt tag.
5
+ # Infect tag. MolInf tag. Medical microbiology.
6
+ #
7
+ # This file will collect information about microorganisms that play a role
8
+ # in clinical microbiology and medicinal microbiology, including infections
9
+ # originating from microorganisms - in particular bacteria. Pathogenic
10
+ # bacteria and detecting them or assessing their carcinogenic potential,
11
+ # such as via the Ames test, are included as well.
12
+ # =========================================================================== #
13
+
14
+ - Ist <one>Cholera</one> lebensbedrohlich? Durchaus ja. URL: https://de.wikipedia.org/wiki/Cholera []
15
+ - Do gram-positive bacteria produce exotoxins? <one>Yes</one>, some do.
16
+ - Name two areas where <one>lysozyme</one> may be found. A: (1) <one>tears</one> (2) <one>saliva</one>
17
+ - Which person founded <one>medical microbiology</one>? <one>Robert Koch</one>.
18
+ - <one>E. coli</one> may cause <two>UTI</two>, which is ... ? This refers to an <one>urinary tract infection</one>.
19
+ - Can <one>bacteria</one> provoke haemagglutination? Yes. Some strains of Escherichia coli (and other bacteria) can provoke haemagglutination, akin to the influenza virus.
20
+ - Name an interesting fact of <one>pathogenicity islands (PI)</one>. A: They are <one>mobile between strains</one>.
21
+ - Wie heisst der <one>Milzbranderreger</one>? <one>Bacillus anthracis</one>. URL: https://de.wikipedia.org/wiki/Bacillus_anthracis []
22
+ - The <one>Bacillus Anthracin-exotoxin</one> consists of <two>3 proteins</two>, which are secreted. Which 3 components are these? (1) A cell-binding protein, known as "protective antigen" (PA) (2) an enzyme component, called "edema factor" (EF) (3) an enzyme component called <one>lethal factor</one> (<royalblue>LF</royalblue>)
23
+ - Nenne ein Beispiel der <one>Kapselstrategie</one> aus der Immunologie. A: <one>Streptococcus pneumoniae</one> entkommt, dank seiner Kapsel, den Makrophagen. []
24
+ - Unterscheide in der klinischen Mikrobiologie zwischen <one>mdr</one> und <one>xdr</one> strains. A: (1) <royalblue>mdr</royalblue>: <one>multi-drug resistant</one> (2) <royalblue>xdr</royalblue>: <one>eXtensively drug-resistant</one>
25
+ - <one>How many people die</one> worldwide per year due to <two>S. pyogenes</two>? <one>500.000 deaths annually worldwide</one> are caused by <royalblue>S. pyogenes</royalblue>. []
26
+ - In der <one>bakteriellen Diagnostik</one>, im Labor, gibt es den <two>Cytochromoxydase-Test</two>. Kann man damit zwischen <three>Pseudomonas</three> und <three>Enterobakterien</three> unterscheiden? <one>Ja</one>. []
27
+ - Bei <one>AB-Toxinen</one>, für die Herstellung eines Impfstoffes, welche Komponente ist wichtiger? Die <royalblue>B-Komponente</royalblue>. B-Untereinheiten können als Impfstoff verwendet werden. []
28
+ - <one>Thermosensoren</one> werden auch von pathogenen Bakterien verwendet. Nenne ein konkretes Beispiel hierzu. A: Das Bakterium <one>Listeria monocytogenes</one> kann über unterschiedliche Sekundärstrukturen der RNA die Temperatur messen, wie zum Beispiel ob das Bakterium in einem Menschen ist, oder ausserhalb. Der Effekt ist dann das bestimmte Virulenzgene eingeschalten werden können bei einer erhöhten Temperatur.
29
+ - How can the term <one>Pathogenicity</one> be defined? This is <one>the ability of a pathogen to cause disease</one>. URL: https://en.wikipedia.org/wiki/Pathogen#Pathogenicity []
30
+ - <one>Lactobacillus acidophiles</one> befindet sich in der Vagina, aber nicht vor der Pubertät, und auch nicht nach der Menopause. Warum nicht? Aufgrund <one>fehlender Glykogenproduktion</one>.
31
+ - Andere Bezeichnung für <one>Oral-Orale</one> Übertragung, von Bakterien, bei Menschen? <one>Tröpfcheninfektion</one>.
32
+ - Nenne einen berühmten, <one>pathogenen E. coli Stamm</one>. A: <one>O157:H7</one>.
33
+ - Wie nennen wir <one>bakterielle Virulenzfaktoren die auf dem Chromosom codiert vorliegen</one>? <one>Pathogenitätsinseln</one>.
34
+ - Die <one>Harnröhre</one> hat insbesondere Bakterien der Art <one>P ... m ...</one>? <one>Proteus mirabilis</one>. URL: https://en.wikipedia.org/wiki/Proteus_mirabilis
35
+ - Wieso sind die <one>unteren Atemwege</one> (Lunge) im Menschen <two>steril</two>? Aufgrund der aufwärts gerichteten Bewegung der Flimmerhaare.
36
+ - Which phage is important for the Diphtheria-Toxin? The <one>Beta-phage</one>.
37
+ - In <one>AB-Toxins</one>: why the letter B? B ... Binding. (B can bind to different cell types).
38
+ - For <one>AB-Toxins</one>: give a curious word for the A-part. A: This is the business part of the Toxin, e. g. the one with the active domain causing the damage.
39
+ - What is meant with the term <one>bacteria-mediated pathogenesis</one>? This refers, for example, to <one>toxins</one>. Toxins are biological weapons that damage the host (respectively the host cell).
40
+ - For the secretion and expression of Yop in Shigeall: name an important signal. A: Oxygen.
41
+ - Does the <one>needle complex</one> require a chaperone? Yes - due to the small diameter of the needle complex, the proteins that pass through it must be unfolded. Thus a chaperone is required.
42
+ - <one>Diameter of the nedle complex</one>? About <one>28 Angstrom</one> (<two>2.8 nm</two>).
43
+ - The <one>length of the needle complex</one> is regulated similar to ... ? <one>Flagella</one>.
44
+ - ... (which bacterium) can <one>trigger the needle complex</one>? <one>Salmonella</one>.
45
+ - When <one>Salmonella</one> transfers SPI1 to another Salmonella, what may we expect as a consequence of this transfer? The target Salmonella will become virulent / pathogenic.
46
+ - Name two GTP-activity controlling factors used by <one>Salmonella</one> for invasion. A: (1) sopE (2) sopB
47
+ - If <one>Salmonella</one> loses <two>sopE</two> and <two>sopB</two>, what is the effect? These bacteria <one>can no longer escape from epithelial cells</one>.
48
+ - In an infected host cell, Salmonella is surrounded by ... ? Actin.
49
+ - Can <one>Salmonella</one> be taken up by <two>dendritic cells</two>? Yes.
50
+ - Name a bacterium that has an <one>Invasin</one>. A: <one>Yersinia</one>.
51
+ - How can it be determined whether bacteria can invade eukaryotic cells? Name three important steps in order to deduce this. A: (1) Let these bacteria grow on cells. (2) Use <one>gentamycin</one> to kill all bacteria that still reside outside of the cells. (3) Knock out genes that are assumed to play an important role in invasion.
52
+ - <one>Syphilis</one> wird durch <two>Treponema pallidum</two> verursacht. Man sieht Geschwüre im Genitalbereich, die diese Bakterien enthalten. Wie lange dauert dies, in etwa, bis diese Geschwüre sichtbar waren? Nach <one>2-4 Wochen</one> sieht man diese Geschwüre.
53
+ - Wozu benötigen Bakterien <one>Evasionsfaktoren</one>? Zum <one>Umgehen des Immunsystems</one>.
54
+ - Why may <one>some pathogenic bacteria</one> make use of <two>coagulase</two>? <royalblue>Coagulase</royalblue> helps <one>coat the bacterium with fibrin</one>.
55
+ - <one>Mykobakterien</one> werden auch als <two>säurefest</two> bezeichnet. Wieso dieser eigenartige Name? Da die Spezialfärbung nach Ziehl-Neelsen zum Nachweis der Mykolsäure in der Zellwand der Mykobakterien <two>auch mit verdünnten Säuren nicht mehr ausgewaschen werden kann</two>.
56
+ - In the <one>Ames test</one>: the <two>tester strains</two> also carry mutations in the genes responsible for lipopolysaccharide synthesis. Why? This makes their cell walls <one>more permeable</one>.
57
+ - Name <one>an intracellular parasite</one> that can not grow outside of a living eukaryotic cell. A: <one>Rickettsia</one>. URL: https://en.wikipedia.org/wiki/Rickettsia
58
+ - <one>Hemolysins</one> can destroy which cell? <one>Erythrocytes</one>, but also other cells.
59
+ - Nenne ein Bakterium, das den <one>Abbau in den Phagolysosomen</one> widerstehen kann. A: <royalblue>Mycobacterium tuberculosis</royalblue>. URL: https://en.wikipedia.org/wiki/Mycobacterium_tuberculosis
60
+ - Name five general <one>infectious agents</one>. A: (1) "Viruses" (2) "Bacteria" (3) "Fungi" such as Candida or Aspergillus - these are eukaryotes (4) Parasites such as "amoeba" or "helminths" (5) <one>Prions</one>
61
+ - Welches Problem kann durch <one>Streptococcus pneumoniae</one> verursacht werden? Eine <one>Lungenentzündung</one> (<royalblue>Pneumonie</royalblue>).
62
+ - Wirkt <one>Penicillin G</one> gegen <two>intrazelluläre Erreger</two>? Nein.
63
+ - Nenne ein <one>immunologisches Verfahren</one> zwecks <two>Erregercharakterisierung</two>. A: Der <one>ELISA</one>.
64
+ - Which antibodies can <one>very efficiently block bacterial attachment</one> to <two>mucosal epithelia cells</two>? <one>Secretory IgA antibodies</one>.
65
+ - In general: <one>bacteria that reside outside of eukayotic cells</one> <two>cause damage to a host</two> how ...? By <one>secreting toxins</one>.
66
+ - Which bacteria are <one>resistant to complement</one>? <one>Gram-positive bacteria</one>.
67
+ - Which bacterium typically causes <one>boils</one>/carbuncles? <one>Staphylococcous aureus</one>. URL: https://en.wikipedia.org/wiki/Staphylococcus_aureus
68
+ - <one>Adhesion</one> is <two>beneficial for bacterial colonization</two> - but what disadvantage may it bring for the bacterium? Adhesion can also <one>stimulate immune cells</one>, which can become activated and <royalblue>phagocytose the bacterium</royalblue>.
69
+ - Nenne einen Mikroorganismus mit <one>endständigen (terminalen) Sporen</one>. A: <one>Clostridium tetani</one>.
70
+ - How is <one>Anthrax</one> contracted/caused? By <royalblue>inhalation</royalblue> of the <one>endospores</one> of <one>Bacillus anthracis</one>. URL: https://en.wikipedia.org/wiki/Bacillus_anthracis
71
+ - Give an example how the <one>intracellular inflammasome</one> is activated. A: Via pieces of an intracellular microbe, such as flagella, which can bind to <one>pattern recognition receptors</one>, such as TLRs and NLRs. This in turn activates the <royalblue>inflammasome</royalblue>. URL: https://en.wikipedia.org/wiki/Inflammasome
72
+ - Das <one>bakterielle H-Antigen</one> bezeichnet ... ? <one>Flagellen</one>.
73
+ - <one>AB toxins</one>: what does the <two>A</two> stand for? <one>Active</one>. URL: https://en.wikipedia.org/wiki/AB_toxin
74
+ - Give a simple example in <one>how the human body prevents colonization</one>. A: Via <one>flushing the urinary tract</one>.
75
+ - The <one>Salmonella genus</one> has how many different members? About <one>1400</one>. URL: https://en.wikipedia.org/wiki/Salmonella
76
+ - Welche Person begründete die <one>medizinische Mikrobiologie</one>? <one>Robert Koch</one>. URL: https://en.wikipedia.org/wiki/Robert_Koch
77
+ - <one>Which disease</one> can be caused by the <two>Rickettsia</one>? <one>Typhus fever</one>.
78
+ - Give an example of where we may find a case of <one>antigenic variation</one> in animals. A: In the <one>trypanosomes</one>.
79
+ - Treponema pallidum ist der Verursacher der Syphilis. Es ist ein gramnegatives Bakterium des Phylums ... ? Spirochäten.
80
+ - Wird der Milzbrand von Mensch zu Mensch übertragen? Nein.
81
+ - The <one>Shiga toxins</one> are synthesized by "Shigella dysenteriae", but also by at the least one other bacterium. Which one? By the "shigatoxigenic group of Escherichia coli", <royalblue>STEC</royalblue>.
82
+ - Gibt es eine Impfung gegen Tetanus? Ja, die Tetanus-Schutzimpfung, ein Toxoid-Vakzin.
83
+ - Welches Antibiotikum wirkt gegen den Tetanus-Erreger? Metronidazol. Allgemein eignet sich Metronidazol gut zur Therapie bakteriellen Infektionen durch Anaerobier.
84
+ - Sind bakterielle Fimbrien <one>Adhäsine</one>? Ja.
85
+ - Ist Tetanus von Mensch zu Mensch übertragbar? Nein - ein an Wundstarrkrampf erkrankter Mensch kann nicht andere Menschen anstecken.
86
+ - Kann Tetanus, als Krankheit, ausgerottet werden? Neine. Die Bakterien kommen im Boden natürlich vor.
87
+ - Was ist <one>EMB</one> Agar? <one>Eosin-Methylene Blue</one> Agar. URL: https://en.wikipedia.org/wiki/Eosin_methylene_blue
88
+ - Name the 5 <one>groups of agents that cause disease</one>. A: (1) <one>viruses</one> (2) "bacteria" (3) "fungi" (4) "protozoans" (5) <one>helminths</one> aka <royalblue>worms</royalblue>
89
+ - What may have been <one>the greatest triumph of modern medicine</one>? The <one>eradication of smallpox</one>, in 1979.
90
+ - Which <one>three bacteria</one> did Robert Koch isolate? (1) <one>Bacillus anthracis</one> (2) <one>Tuberculosis bacillus</one> (3) <one>Vibrio cholerae</one>
91
+ - Wie lange bleiben die Eier des Spulwurms infektiös? Etwa <one>4 Jahre lang</one>.
92
+ - Wir können den <one>Kanamycin-Äskulin Agar</one> verwenden um <two>Streptokokken</two> nachzuweisen. Wie erkennen wir das Wachstum der Streptokokken? Es bilden sich <one>schwarze Höfe</one> rund um die Kolonien.
93
+ - Nenne <one>ein Oberflächenprotein</one> von <two>Listeria monocytogenes</two>, mit dessen Hilfe dieses Bakterium in Säugetierzellen eindringen kann. A: <one>Internalin A</one>. URL: https://en.wikipedia.org/wiki/Internalin
94
+ - The <one>Diphtheria toxin B fragment</one> binds to ...? This toxin binds to the <one>heparin-binding epidermal growth factor precursor</one> (<royalblue>HB-EGF</royalblue>). URL: https://en.wikipedia.org/wiki/Diphtheria_toxin#Mechanism
95
+ - Are <one>toxoids</one> of the <two>Diphtheria toxin</two> useful at all? Yes - they can (still) <one>induce immunity</one>.
96
+ - Was ist ein <one>Schmalband-Antibiotikum</one>"? Dies ist ein Antibiotikum, das nur gegen bestimmte Erreger wirkt.
97
+ - Nenne ein <one>Antibiotikum</one>, das gegen <two>Methicillin-resistente Staphylokokken</two> wirksam sein kann. A: <one>Tigecyclin</one>. URL: https://en.wikipedia.org/wiki/Tigecycline
98
+ - Nenne ein <one>Quorum Sensing System</one> in <two>Staphylococcus aureus</two>. A: Das "Agr-System". URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC281656/
99
+ - <one>Segmented, filamentous bacteria</one> contain an appendage on one end. How do we call that structure? The <one>holdfast</one>.
100
+ - Bei <one>Scharlach</one>, das von <two>Streptokokken</two> ausgelöst wird: welche "Faktoren" müssen diese Streptokokken aufweisen um Scharlach hervorrufen zu können? Sie müssen einen <royalblue>Bakteriophagen</royalblue> besitzen, der für die Produktion des Scharlach-Toxins verantwortlich ist. Wenn das Toxin in die Haut gelangt, kommt es zu dem für Scharlach typischen Ausschlag.
101
+ - <one>GSP-Agar</one>: wieso diese Abkürzung? (1) <royalblue>G</royalblue> ... <one>Glutamat</one> (2) <royalblue>S</royalblue> ... <one>Stärke</one> (3) <royalblue>P</royalblue> ... <one>Phenolrot</one>
102
+ - What type is the <one>cholera-toxin</one>? A "heat-stable AB enterotoxin".
103
+ - Wenn wir <one>Bodenbakterien</one> isolieren wollen könnten wir welchen Agar verwenden? Den <one>CZAPEK-DOX Agar</one>.
104
+ - What does <one>Gamma hemolysis</one> mean? Gamma hemolysis effectively means <one>no hemolysis</one>.
105
+ - The <one>DtxR repressor</one> (<two>Diphtheria toxin repressor</two>) binds to the "tox-operator" only when? Only <one>when it has bound iron</one> (Fe 2+). URL: https://www.uniprot.org/uniprot/P0DJL7
106
+ - Was macht das <one>Fragment A</one> des <two>Diptherietoxins</two>? Fragment A <one>katalysiert die ADP-Ribosylierung von Elongation Factor 2</one> (<royalblue>EF2</royalblue>).
107
+ - Name <one>a bacterium</one> that <two>can escape from the phagolysosome</two>. A: <one>Listeria monocytogenes</one>.
108
+ - When a person has an "IRAK-4 deficiency", which bacterium may become problematic for this person? <one>Streptococcus pneumoniae</one>.
109
+ - What kind of damage is mediated via the "Staphylococcus aureus alpha-toxin"? <one>Cell membrane damage</one>.
110
+ - How many people die per year because of cholera? <one>200.000</one>.
111
+ - Name the three domains of the <one>Tetanus toxin</one>. A: (1) "binding domain" (2) "catalytic domain" (3) <one>translocation domain</one>
112
+ - <one>Plasmodium falciparum</one>: nenne die drei "zoit-Stadien" in der richtigen Reihenfolge. A: <royalblue>SMT</royalblue> - (1) "Sporozoiten" (2) <one>Merozoiten</one> (3) <one>Trophozoiten</one>
113
+ - What is <one>Streptolysin</one>? This is <one>a streptococcal hemolytic exotoxin</one>.
114
+ - What is the <one>injectisome</one>? This is <one>an organelle in the bacterial envelope</one> that "allows direct transfer of virulence proteins into a host cell", through the <royalblue>needle complex</royalblue>.
115
+ - Name a <one>virulence factor</one> of <two>Streptococcus pneumoniae</two>. A: Its <one>capsule</one>.
116
+ - What disease is caused by <one>Plasmodium vivax</one>? <one>Malaria</one>.
117
+ - The <one>MacConkey agar</one> has one drawback or rather a constraint. Which one is that? Only <royalblue>gram-negative bacteria</royalblue> will grow on it. The reason is that it also employs <one>bile salts</one>, which <one>will inhibit most gram-positive bacteria</one>.
118
+ - May <one>antibiotic therapy</one> be bad for a patient? Yes - <royalblue>antibiotics may destroy the resident microflora</royalblue>, which <one>may give pathogens a new opportunity</one>.
119
+ - The <one>Bacillus anthracis</one> lethal toxin has one component called the <two>lethal factor</two>. Of what type is that part? It is <one>a zinc metalloprotease</one>. URL: https://www.ncbi.nlm.nih.gov/pubmed/7854123
120
+ - Nenne <one>zwei Krankheiten</one> die durch <two>Mycobacterium</two> verursacht werden können. A: (1) "Tuberculosis" (2) <one>Leprosis</one>
121
+ - What is a <one>serovar</one>? This is <one>a strain where surface proteins elicit a distinctive immune response</one>.
122
+ - What is meant with the term <one>susceptibility</one>? This term describes <one>the probability to get infected</one>.
123
+ - How does <one>death from Botulism</one> usually happen? <one>Respiratory failure</one> due to "flaccid muscle paralysis".
124
+ - There is <one>Streptolysin S</one> and <one>Streptolysin O</one>. The smaller of these two is not antigenic. Which one is it? Streptolysin O is larger and thus antigenic, Streptolysin S is smaller - and thus not antigenic. (Mnemonic: S ... smaller)
125
+ - Name a bacterium whose <one>pilin</one> have a <two>highly variable structure</two>. A: <one>Neisseria gonorrheae</one>.
126
+ - What does <one>patient noncompliance</one> mean? Many patients <one>stop taking medication</one> as soon as they feel better.
127
+ - Das <one>O-Antigen</one> in Bakterien ist ... ? Eine <one>Komponente der Lipopolysaccharide</one>.
128
+ - Beim <one>Phenolrot-Bouillon</one>: wie bemerken wir eine erfolgte Vergärung? Indem sich die Farbe von <orangered>rot</orangered> → <yellow>gelb</yellow> ändert.
129
+ - The <one>best studied biofilms</one> belong to which bacteria? <one>Pseudomonas aeruginosa</one>. URL: https://de.wikipedia.org/wiki/Pseudomonas_aeruginosa
130
+ - Name an organism that performs <one>programmed gene rearrangement</one>. A: <one>African trypanosomes</one>. URL: https://en.wikipedia.org/wiki/Trypanosoma_brucei
131
+ - Which part of the <one>complement cascade</one> binds very early to a bacterial surface? <one>C3b</one>.
132
+ - What is <one>the hallmark of tetanus</one>? <one>Spastic paralysis</one>. URL: https://en.wikipedia.org/wiki/Tetanus
133
+ - Was meinen wir mit <one>Phagovar</one> in der Mikrobiologie? Dies sind Mikroorganismen, die als gemeinsame Eigenschaft haben, das sie von einem bestimmten Phagen lysiert werden können.
134
+ - Can we find <one>Clostridium</one> growing in humans? Yes - <royalblue>in the large intestine</royalblue>, as they are <one>obligate anaerobic bacteria</one>.
135
+ - Nenne eine charakteristische, chemische Gruppe bei <one>Ciprofloxacin</one>. A: -OH Gruppe.
136
+ - Name <one>a protected cellular niche</one> for a bacterium. A: The <one>host-cell cytoplasm</one>.
137
+ - Nenne einen <one>Giftstoff</one> von <two>Clostridium difficile</two>. A: Das <one>CDT-Toxin</one>. URL: https://www.ncbi.nlm.nih.gov/pubmed/24253566
138
+ - Name the <one>two main antimicrobial peptide families</one> in humans and other mammals. A: (1) <one>cathelicidins</one> (2) <one>defensins</one>
139
+ - Die <one>Actinobacter</one> haben, in <three>%</three>, welchen Anteil an der normalen Haut-Flora des Menschen? Etwa <one>52%</one>.
140
+ - Sind Mikroorganismen der <one>Risikogruppe 1</one> immer ungefährlich? Nein - sie können zum Beispiel <one>Allergien</one> auslösen.
141
+ - Die <one>Kariesbakterien</one> sind eigentlich ... ? <one>Streptococcus mutans</one>.
142
+ - Wieviele <one>Serovars</one> sind bei <two>Salmonella</two> bekannt? <one>2500</one>.
143
+ - Name two general ways how <one>extracellular bacteria</one> can be <two>pathogens</two>. A: (1) they <one>may produce toxins</one> (2) they <one>may induce a localized inflammatory response</one>
144
+ - For <one>adherence</one>, enterotoxic strains of E. coli contain genes encoding ...? <one>Fimbrial CFA</one> (colonization factor antigens).
145
+ - How can <one>Streptococcus pyogenes</one> <two>inhibit phagocytosis</two>? Via its <one>M protein</one>.
146
+ - <one>Legionelle pneumophila</one> verwendet was für ein Sekretionssystem? <one>Typ-IV-Sekretionssystem</one>. URL: https://de.wikipedia.org/wiki/Bakterielle_Proteinsekretion
147
+ - Andere Bezeichnung für den generellen Vorgang, bei dem (pathogene) Bakterien in eine Wirtszelle (oder in einen Wirt) eindringen. A: <one>Invasion</one>. URL: https://en.wikipedia.org/wiki/Pathogen
148
+ - <one>Blutserum</one> vermag gewisse Bakterien unspezifisch abtöten. Wie? Mit Hilfe von <one>Properdin</one>.
149
+ - <one>Mycobacterium tuberculosis</one>, der Erreger der Tuberkulose, hat welche Besonderheit in seiner Zellwand? <one>Mykolsäure</one>.
150
+ - Die weltweit meisten Todesfälle, durch nur einein einzigen bakteriellen Erreger, werden von ... verursacht. A: Von Mycobacterium tuberculosis - dem Erreger der Tuberkulose.
151
+ - Give an example for <one>a bacterium</one> that uses a <three>pore-forming cytotoxin</three>. A: <one>Staphylococcal Alpha-Toxin</one>.
152
+ - Which step occurs before <one>bacterial invasion of a pathogen</one>? <one>Adhesion</one>.
153
+ - <one>Welche Toxine</one> sind keine Proteine? <one>Endotoxine</one>.
154
+ - Welches <one>Chinone</one> finden wir immer bei den <two>Microbacteriaceae</two>? <royalblue>Menachinone</royalblue>, mit 7-14 Isopreneinheiten in der Seitenkette.
155
+ - Which bacterium causes the <one>flesh-eating disease</one>? <one>Streptococcus pyogenes</one>. URL: https://en.wikipedia.org/wiki/Streptococcus_pyogenes
156
+ - <one>Pseudomonas aeruginosa sad-Mutanten</one>: wofür steht die Abkürzung <two>sad</two> hier? <one>Surface attachment defective</one>.
157
+ - Name a <one>bacterial pathogen</one> that avoids the problem of needing iron, by cutting out a need for iron altogether. A: <one>Treponema pallidum</one>, <royalblue>a spirochaete</royalblue>. URL: https://en.wikipedia.org/wiki/Treponema_pallidum
158
+ - Name three toxin types employed by <one>Salmonella</one>. A: (1) <one>cytotoxin</one> (2) <one>enterotoxin</one> (3) <one>endotoxin</one>
159
+ - Andere Bezeichnung für <one>Frühantikörper</one>? <one>IgM</one>.
160
+ - Is <one>antigenic variation</one> more important for extracellular or for intracellular pathogens? It is more important for <one>extracellular pathogens</one>, as these are the ones that are potentially subject to <royalblue>antibody-coating</royalblue>.
161
+ - Was ist ein <one>direkter Infektionsweg</one>? Die <one>Übertragung von Mensch zu Mensch</one>. URL: https://de.wikipedia.org/wiki/Infektionsweg#Direkte_und_indirekte_Infektion
162
+ - In der <one>klinischen Mikrobiologie</one> werden auch <two>molekularbiologisch basierte Techniken</two> verwendet, die zumindest zwei sehr gravierende Vorteile gegenüber den klassischen Wachstumstests besitzen. Welche Vorteile sind dies? (1) Man kann mit ihnen auch nichtkultivierbare Mikroorganismen detektieren. (2) Sie erlauben eine sehr viel schnellere Identifikation als dies bei den klassischen Wachstumstest möglich wäre.
163
+ - Give an example for <one>an obligatory intracellular parasite that is a bacterium</one>. A: Some <one>rickettsias</one>.
164
+ - The <one>propagation of a pathogen</one> depends on its ability to ... ? To <one>replicate</one> (and <one>spread</one>) in a host.
165
+ - <one>Typhoid fever</one> is caused by which bacterium? By the bacterium <one>Salmonella typhii</one>. URL: https://en.wikipedia.org/wiki/Typhus#19th_century
166
+ - In clinical microbiology: what is meant with the abbreviation <one>SFB</one>? <one>Segmented filamentous bacteria</one>. URL: https://en.wikipedia.org/wiki/Segmented_filamentous_bacteria
167
+ - <one>Pathogene Enterobacteriaceae</one> können wir auf welchem Agar wachsen lassen? Auf <one>Wismutagar</one>.
168
+ - What is the job of <one>bacterial adhesins</one>? To <one>bind to the host surface</one>.
169
+ - Für die <one>Differenzierung einzelner Bakterien</one> verwenden wir vor allem welche Medien? <one>Indikatornährmedien</one>.
170
+ - <one>Streptolysin-O</one> can bind to which eukaryotic protein? It can bind to <one>cholesterol</one>.
171
+ - In clinical microbiology: what are <one>STEC strains</one>? These are <one>Shiga toxin producing Escherichia coli</one> strains.
172
+ - Wenn wir Bakterien identifizieren möchten verwenden wir im mikrobiologischen Labor häufig was ... ? Die <one>bunte Reihe</one>.
173
+ - Der <one>Kligler-Agar</one> wird zur Identifizierung gramnegativer oder grampositiver Bakterien verwendet? Für <royalblue>gramnegative Bakterien</royalblue>, wie <one>E. coli</one> (allgemeiner: für Enterobacteriaceae). URL: https://de.wikipedia.org/wiki/Bunte_Reihe_(Labor)#Kligler-Agar
174
+ - <one>Mykobakterien</one> sind auch in der klinischen Mikrobiologie und in der Pathologie relevant. Welche Färbemethode setzen wir hier für die Mykobakterien ein? Die <one>Ziehl-Neelsen Färbung</one>.
175
+ - Can <one>Mycobacterium</one> move via <two>actin-motility</two>? Yes it can.
176
+ - Trivialname für die <one>Malaria</one>? <one>Wechselfieber</one>.
177
+ - <one>Rathayibacter tritici</one> ist der Erreger der ... ? <one>Spitzen Trockenfäule</one>, aka <royalblue>spike blight</royalblue>.
178
+ - Name <one>a toxin</one> that can <two>act as a superantigen</two>. A: <one>Staphylococcal enterotoxin</one>.
179
+ - Wieso benötigt <one>Salmonella</one> das <two>oxyR Gen</two>? Dieses Genprodukt <one>neutralisiert toxische Sauerstoff-Produkte von Makrophagen</one>.
180
+ - The <one>exfoliative toxin</one> of Staphyloccous can cause which disease in children? This superantigen can cause <one>Staphylococcal scalded skin syndrome</one> (<royalblue>SSSS</royalblue>). URL: https://www.dermnetnz.org/topics/staphylococcal-scalded-skin-syndrome/
181
+ - What is <one>Phagetyping</one>? To test the resistance of bacteria against <one>different phages</one>.
182
+ - Can <one>UPEC stains</one> (<two>uropathogenic Escherichia coli</two>) <three>create biofilms</three>? Yes they can.
183
+ - <one>Clostridium tetani</one> verursacht den <two>Wundstarrkrampf</two>. Wie heisst das proteolytische Toxin, das für diese Muskelkrämpe verantwortlich ist? <one>Tetanospasmin</one>.
184
+ - Um die <one>Tuberkelbakterien</one> bildet sich, im menschlichen Körper, was? Ein <one>Granulom</one>.
185
+ - Why may bacteria <one>wish to modulate actin dynamics</one>? So that they can <one>disseminate</one> within an eukaryotic cell.
186
+ - The <one>cholera toxin</one> consists of <two>n subunits</two>? <royalblue>6</royalblue>; <one>5xB</one>, <one>1xA</one>.
187
+ - <one>How many types</one> of <two>Streptococcus pneumoniae</two> are known? <royalblue>84</royalblue>.
188
+ - Why does it help against <one>caries</one> if we avoid dietary sucrose? Because <one>Streptococcus mutans</one> requires <royalblue>sucrose</royalblue> to build their dextran layer.
189
+ - Give an example for an <one>AB neurotoxin</one>. A: Tetanus toxin of <one>Clostridium tetani</one>.
190
+ - Wir können bei der <one>Strahlendesinfektion</one> UV Licht einsetzen, um Keime zu töten. Bei welcher Wellenlänge? <royalblue>254 nm</royalblue>.
191
+ - How many people died approximately in <one>2004</one> due to infectious diseases (including virus, bacteria, fungi, parasites as causes)? About <one>17.3 million deaths</one>.
192
+ - <one>Streptococcus pyogenes</one> verursacht ... bei Kindern? <one>Scharlach</one>.
193
+ - Nenne ein bekanntes Bakterium, das das Superantigen-Toxin synthetisieren kann. A: <one>Staphylococcus aureus</one>.
194
+ - Welches Bakterium verursacht den Wundstarrkrampf? <one>Clostridium tetani</one>.
195
+ - Wofür steht die Abkürzung <one>EHEC</one> in der klinischen Mikrobiologie? <one>Enterohemorrhagic Escherichia coli</one>.
196
+ - <one>Syphilis</one> wird durch <two>Treponema pallidum</two> verursacht. Welches Medikament könnten wir als Therapie verabreichen? <one>Penicillin G</one>.
197
+ - Name two general receptors that can sample PAMPs (on human cells). A: (1) Toll-like receptors (TLRs) (2) NOD-like receptors (<royalblue>NLRs</royalblue>)
198
+ - What do we mean with <one>frustrated phagocytosis</one> in <two>Immunology</two>? When <one>a bacterium has a capsule</one>.
199
+ - <one>Bakterielle Erkrankungen der Harnwege</one> werden meistens durch <two>welche bakterielle Gruppe</two> verursacht? Durch <one>Enterobakterien</one>.
200
+ - Worldwide, how many people die per year due <one>to tetanus</one>? <one>150.000</one>.
201
+ - <one>Bakterielle Adhäsine</one> sind, chemisch betrachtet, typischerweise ... ? <one>Polysaccharide</one>.
202
+ - <one>Death</one> due to the <two>tetanus toxin</two>, happens usually because of ...? <one>Respiratory failure</one>.
203
+ - <one>Genomic pathogenicity islands</one> are often linked to which gene? A <one>tRNA gene</one>.
204
+ - Durch den <one>Einsatz von Penicillin</one> können sogenannte <two>L-Formen</two> bei Bakterien entstehen. Warum der Buchstabe <three>L</three> hier? <royalblue>L</royalblue> für <one>large</one>.
205
+ - Wenn wir <one>Einzelkolonien von Mikroorganismen</one> erhalten wollen wenden wir welche <three>simple Technik</three> an? Den <one>Verdünnungsausstrich</one>.
206
+ - In <one>microbial pathogenicity</one>: why do pathogens make use of <two>ADP-ribosylation</two>? This will <one>induce depolymerization of the actin cytoskeleton</one>.
207
+ - Name the most famous organism able to cause <one>Ergotism</one>? <one>Claviceps purpura</one>.
208
+ - Gibt es einen <one>Impfstoff gegen Tetanus</one>? Ja.
209
+ - Was heisst <one>Neisseria gonorrhoeae</one> <two>opa</two>? <one>Opacity associated protein</one>.
210
+ - Name the <one>two main forms of leprosy</one>. A: (1) <one>tuberculoid leprosy</one> (2) <one>lepromatous leprosy</one>
211
+ - What is more dangerous: an <one>Endotoxin</one> or an <one>Exotoxin</one>? An "Exotoxin" is more dangerous, because they are sometimes fatal, whereas "Endotoxins" are rarely fatal.
212
+ - Can <one>Corynebacterium dipththeria</one> cause <two>congestive heart failure</two>? Yes, through its <royalblue>exotoxin</royalblue>.
213
+ - Mit Hilfe der <one>Ziehl-Neelsen-Färbung</one> können wir Mykobakterien, Nokardien und welch weitere Bakteriengruppe nachweisen? <one>Corynebakterien</one>.
214
+ - Sind <one>opportunistische Pathogene</one> ein Problem? Nur wenn die normale Widerstandskraft eines Wirtes herabgesetzt ist.
215
+ - Können <one>Virulenzfaktoren</one> Teil eines Bakteriums sein? Ja - zum Beispiel die <one>Kapsel</one>.
216
+ - <one>Simmons</one> hat welchen Agar <two>erfunden</two>? Den <one>Citratagar</one>.
217
+ - Nenne <one>ein allgemeines Ziel pathogener Bakterien</one>. A: Den <royalblue>Zugang</royalblue> zu den Nährstoffquellen in den Wirtszellen zu erhalten, und sich dadurch rasch zu vermehren.
218
+ - In <one>mice</one>: which protein recognizes <two>S. pyogenes</two> cell wall? <one>Tlr2</one>.
219
+ - Spielen <one>Bakteriophagen</one> eine Rolle bei der <two>Entstehung pathogener Baktieren</two>? Ja, sogar eine sehr wichtige: sie <one>können Virulenzfaktoren übertragen</one>.
220
+ - Die <one>Legionärskrankheit</one> wird durch <two>welches Bakterium</two> verursacht? <one>Legionella pneumophila</one>.
221
+ - At the <one>Toxic Shock Syndrome</one>: what is the characteristic triad? (1) high fever (2) hypotension (3) <one>rash</one>
222
+ - Was meinen wir mit dem Begriff <one>aktive Immunisierung</one>? Dies ist dann der Fall, wenn der Antikörper vom Organismus gebildet wird.
223
+ - Was meinen wir mit <one>unspezifischer Immunität</one>? Wenn eine natürliche Resistenz gegeben ist; so ist die Maul- und Klauenseuche nicht auf den Menschen übertragbar.
224
+ - Das Reservoir des Pesterregers <one>Yersinia</one> ist/stind ... ? <one>Nagetiere</one>.
225
+ - Give a reason as to why the incidence of <one>necrotizing fascitis</one> has been increasing in the USA as of late. A: <one>Anti-inflammatory drugs</one>, such as "ibuprofen", have been increasingly used. URL: https://en.wikipedia.org/wiki/Ibuprofen
226
+ - <one>Streptococcus pyogenes</one> infections typically begin where? In the <one>throat</one>.
227
+ - Name a <one>fever</one> caused by <two>Salmonella</two>. A: The <one>typhoid fever</one>.
228
+ - What is <one>the commonest cause of immune deficiencies</one> worldwide? <one>Malnutrition</one>. URL: https://en.wikipedia.org/wiki/Malnutrition
229
+ - The <one>trypanosomes</one> can exchange their <two>VGS genes</two>. Where in a chromosome does the active VSG-gene reside? At the <royalblue>telomere</royalblue> (<one>telomeric expression</one>).
230
+ - Why does <one>Staphylococcous aureus</one> use <two>coagulase</two>? Coagulase causes insoluble fibrin to be deposited on S. aureus cells, protecting them from attack by host cells (<royalblue>camouflage</royalblue>).
231
+ - Can we <one>easily detect</one> <two>Pathogenicity Islands</two> (<three>PAIs</three>)? Well - they do happen to <one>have a distinct GC content</one>, so this could be used for their discovery.
232
+ - What does <one>Unc93b1</one> facilitate? This protein that resides in the ER <one>facilitates the sorting of endosomal</one>/</one>phagosomal TLRs</one>.
233
+ - Wie kann <one>LPS</one> experimentell nachweisen? Mit Hilfe des <one>Limulustestes</one>. URL: https://en.wikipedia.org/wiki/Limulus_amebocyte_lysate
234
+ - Give another word for a <one>biofilm</one>? Complex community structures.
235
+ - Wieso mögen wir das <one>Kaufmann-White Schema</one> verwenden? Wir können hier <one>pathogene Salmonellen</one> unterschieden.
236
+ - <one>Gram-Färbung</one> der Pesterreger? <one>Gram-positiv</one>.
237
+ - Name the three major <one>pathogenic Streptococci</one>. A: (1) Streptococcus pneumoniae (2) Streptococcus pyogenes (3) <one>Streptococcus agaactiae</one>
238
+ - Name one job of the <one>M-cells</one> in the (human) gut. A: They continually sample the microbes in the gut.
239
+ - <one>Streptococcus pneumoniae</one> infections are especially dangerous when combined with ...? Influenza infections.
240
+ - Nenne <one>drei Krankheiten</one>, die durch <two>sexuellen Kontakt</two> verbreitet werden. A: (1) <one>Gonorrhoe</one> (2) Syphilis (3) <one>AIDS</one>
241
+ - Mit Hilfe des <one>GSP-Agars</one> können wir welche 2 Bakteriengruppen nachweisen? (1) <one>Pseudomonas</one> (2) <one>Aeromonas</one>
242
+ - Was ist eine <one>Monoinfektion</one>? Eine <royalblue>Infektion</royalblue>, die durch <one>nur einen Erreger verursacht wurde</one>.
243
+ - Das <one>Kauffmann-White-Schema</one> ist ein Klassifizierungssystem für ... ? Für alle "Salmonellen".
244
+ - Name an alternative drug for treatment of <one>MRSA-infections</one>. A: <one>Vancomycin</one>.
245
+ - Name <one>a bacterium that can block lysosomal fusion with the phagolysosome</one>. A: <one>Mycobacterium avium</one>.
246
+ - Welche Temperatur wird bei der <one>Flash Pasteurization</one> verwendet? <royalblue>72°C</royalblue>.
247
+ - How does <one>Salmonella</one> obtain iron? It <one>produces iron-chelating siderophores</one>.
248
+ - How does <one>Streptococcus pyogenes</one> counter the human clotting mechanism? It <royalblue>uses a fibrinolytic substance</royalblue> - the <one>streptokinase</one>.
249
+ - Pro Jahr sterben wieviele Menschen an <one>Tuberkulose</one>? Mehr als 1 Million Menschen.
250
+ - The <one>Infection Processes</one> is <two>an interplay between</two> ...? <one>Host</one> and <one>Pathogen</one>.
251
+ - <one>Pathogene Bakterien</one> mögen die Haut des Menschen, abgesehen von ihrer Barrierefunktion, als ein Problem erachten. Wieso? Weil die Haut meistens <one>zu trocken ist</one> für Bakterien.
252
+ - Der <one>Kanamycin-Äsculin-Azid Selektivnährboden</one> kann zur Differenzierung welcher Bakteriengruppe herangezogen werden? Zur <one>Differenzierung von Enterokokken</one>.
253
+ - A single <one>Diphtheria</one> bacterium can produce <two>n Diptheria-Toxins per hour</two>? About <one>5000 molecules</one> / <one>hour</one>. URL: http://163.178.103.176/Fisiologia/general/activ_bas_3/Bacterial_Protein_Toxins.htm
254
+ - <one>Scharlach</one> wird durch <two>Streptokokken</two> ausgelöst. Genauer ... ? Von Streptokokken der <one>Lancefield-Gruppe A</one>.
255
+ - The <one>Diphtheria toxin</one> blocks what? It <one>blocks protein synthesis</one>.
256
+ - <one>Treponema pallidum</one> causes which disease? <one>Syphilis</one>. URL: https://en.wikipedia.org/wiki/Treponema_pallidum
257
+ - Which <one>metal</one> is desperately needed by <two>pathogenic bacteria</two>? <royalblue>Iron</royalblue> (<one>Fe 3+</one>).
258
+ - Nenne ein Beispiel für <one>eine tödlich ausgehende, akute Infektionskrankheit</one>. A: Eine <one>bakterielle Hirnhautenzündung</one>.
259
+ - How does <one>Neisseria gonorrhoeae</one> protect itself against secretory IgA-antibodies? By making use of <royalblue>proteases</royalblue> that can cleave at the hinge region. URL: https://en.wikipedia.org/wiki/Neisseria_gonorrhoeae
260
+ - Name two receptors in the human that sample pathogen-associated molecular patterns (PAMPs). A: (1) Toll-like receptors ("TLRs") (2) <one>NOD-like receptors</one> (<royalblue>NLRs</royalblue>)
261
+ - <one>Genomic pathogenicity islands</one> are typically flanked by genes that have which characteristic? These genes show homologes to phage or plasmid genes.
262
+ - Nenne einen bakteriellen Erreger, der <one>Meningitis</one> hervorrufen kann. A: <one>Haemophilus influenza</one>.
263
+ - Patients suffering from <one>cystic fibrosis</one> are often affected by which <two>opportunistic bacterium</two>? <one>Pseudomonas aeruginosa</one>.
264
+ - Where in the human body does <one>Salmonella</one> replicate? In the <royalblue>M cells</royalblue>, which are <one>intestinal epithelial cells</one>.
265
+ - In der <one>bakteriellen Mikrobiologie</one>, im Labor, gibt es einen <two>Ausstrichtypus</two>, der einen Tiernamen besitzt. Welcher ist das? Der <one>Schlangenlinienausstrich</one>. URL: https://de.wikipedia.org/wiki/Ausstrich_(Mikrobiologie)
266
+ - Name <one>a particular strategy</one> used by <two>Mycobacterium</two> inside of a macrophage. A: It <one>can prevent the fusion of the phagosome with the lysosome</one>.
267
+ - <one>LT</one>, <one>PA</one> und <one>LF</one>. Was heisst dies jeweils? (Ohne diese Begriffe genauer zu beschreiben.) A: (1) <royalblue>LT</royalblue> heisst <one>lethal toxin</one>. (2) <royalblue>PA</royalblue> heisst <one>protective antigen</one>. (3) <royalblue>LF</royalblue> heisst <one>lethal factor</one>.
268
+ - Most TLRs <one>signal</one> via ...? Via the <one>MyD88 adaptor</one>.
269
+ - Name <one>a species</one> associated with <two>fungal meningitis</two>. A: <royalblue>Cryptococcosis</royalblue>. URL: https://en.wikipedia.org/wiki/Cryptococcosis
270
+ - What does the <one>TLR2 Receptor</one> recognize? It <royalblue>recognizes bacterial cell wall components</royalblue>, such as <one>lipoteichonic acid</one> or <one>peptidoglycan</one>.
271
+ - <one>Platensimycin</one> acts against ...? <one>Bacterial lipid biosynthesis</one>.
272
+ - When a human has a <one>X-linked properdin deficiency</one>, which bacterial disease may become problematic? "Invasive meningococcal disease", e. g. caused by the gram-negative <royalblue>Neisseria meningitidis</royalblue>. URL: https://en.wikipedia.org/wiki/Neisseria_meningitidis
273
+ - How can <one>S. mutans</one> attach to the tooth? It produces <one>dextran</one> (a <royalblue>glucan</royalblue>), which it uses to attach to the tooth surface. URL: https://en.wikipedia.org/wiki/Dextran
274
+ - Wieso verwenden wir das <one>Griess-Ilosvays Reagenz</one>? Um <royalblue>Nitrit</royalblue> nachzuweisen beziehungsweise zu detektieren.
275
+ - Why is it so difficult for <one>CD8 cytotoxic T cells</one> to target viruses in neurons? Neurones carry very low level of <one>MHC class I molecules</one>.
276
+ - Why does <one>Yersinia</one> make use of its <two>high-pathogenicity island</two> <three>HPI</three>? This island is useful to "snatch iron", which Yersinia can then use.
277
+ - Give an example for an <one>invasive intracellular pathogen</one> that uses <two>clathrin-mediated endocytosis</two> for invasion. A: <one>Listeria monocytogenes</one>.
278
+ - Grösse von <one>Prionen</one>, in nm? <one>Unter 5 nm</one>. URL: https://de.wikipedia.org/wiki/Prion
279
+ - All <one>Plasmodium species</one> are <two>parasitic</two>. Which host systems do they need, in order to reproduce? (1) a <one>vertebrate host</one> (2) an <one>insect host</one>
280
+ - Give an example for <one>a facultative, intracellular pathogen</one> (non-viral one). A: <one>Mycobacterium</one>.
281
+ - <one>Dental caries bacteria</one> synthesize <two>adhesion proteins</two>. <three>Two amino acids</three> dominate here. which ones? (1) <one>Alanine</one> (2) <one>Proline</one>
282
+ - How do we call <one>the most durable cells</one> within a <two>bacterial biofilm</two>? <one>Persisters</one>. URL: https://www.ncbi.nlm.nih.gov/pubmed/15807669
283
+ - Bacteria can use which <one>secretion system</one> as <two>molecular syringe</two>? The Type III secretion system. The bacteria can inject proteins into eukaryotic cells through this <one>syringe system</one>. URL: https://en.wikipedia.org/wiki/Type_three_secretion_system
284
+ - Was ist ein <one>geschlossenes Infektionssystem</one>? Wenn der Erreger nicht nach aussen hin ausgeschieden wird; ist zum Beispiel bei der <one>geschlossenen Tuberkulose</one> der Fall.
285
+ - How many known types of <one>Streptococcus pneumoniae</one> are known? About <royalblue>84</royalblue>.
286
+ - Only when is <one>C. dipththeriae</one> itself dangerous? When it harbours the <one>prophage Beta</one>, which produces the diptherin toxin.
287
+ - Name <one>two families</one> of <two>human antimicrobial peptides</two>. A: (1) <one>defensin</one> (2) <one>cathelicidin</one>
288
+ - Name a <one>bacterium</one> that <two>modulates the actin of the host cell</two>. A: <one>Listeria monocytogenes</one>.
289
+ - What is the function of the <one>Salmonella O antigen</one>? It <one>enhances adherence</one>.
290
+ - <one>Borrelia burgdorferi</one> coats itself with which <two>inhibitory protein</two>? With <royalblue>factor H</royalblue>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC155754/
291
+ - <one>Clostridium difficile</one> has the so-called "binary toxin" (CDT). CDT belongs to the family of ... toxins? It belongs to the family of <one>binary ADP-ribosylating toxins</one>, thus having two separate toxin components.
292
+ - Why were the names <one>streptolysin O</one> and <one>streptolysin S</one> chosen? (1) <royalblue>O</royalblue> for <one>oxygen-labile</one> (2) <royalblue>S</royalblue> for <one>oxygen-stable</one>
293
+ - Name an <one>enzyme</one> employed by <two>Pseudomonas</two> that can act against complement protein(s). A: <one>Elastase</one>.
294
+ - A. W. für <one>ansteckende Krankheit</one>? <one>Infekt</one>.
295
+ - The <one>Tetanus toxin</one> can bind to ...? <one>Inhibitory interneurons</one>.
296
+ - Wie wirken <one>Superantigene</one> (<two>SAG</two>)? T-Zelle und Antigen-präsentierende Zelle kommen zusammen. Durch die Wirkung der <royalblue>SAG</royalblue> heften diese Zellen permanent zusammen, es kommt zu einem massiven Cytokin-Ausschuss, der cytotoxisch sein kann. Man kann dann am <one>septischen Schock</one> sterben.
297
+ - <one>Streptokokken</one> werden in der klinischen Mikrobiologie beziehungsweise der mikrobiellen Hygiene <two>wie eingeteilt</two>? Nach der <one>Art der Hämolyse</one>.
298
+ - Why are the <one>Streptococcus pyogenes</one> diseases so variable? One possible explanation is that <one>different organs are infected</one>.
299
+ - Welche Strategie verfolgt <one>C. difficile</one> um <two>pathogen</two> zu werden? Stellt das Enzym <royalblue>Collagenase</royalblue> her <one>um in Gewebe einzudringen</one>.
300
+ - We have cultures that can be used for <one>plasmid isolation</one>. One is called <two>miniprep</two>. Why the name? Largely <one>due to the small volume</one>, of <royalblue>2-10µl</royalblue>. URL: https://en.wikipedia.org/wiki/Plasmid_preparation#Minipreparation
301
+ - From an <one>infection point of view</one>: why was <two>pasteurization of milk</two> so important? Because it was the main mechanism of transmission for <one>bovine tuberculosis in humans</one>.
302
+ - The most common causative agent for <one>urinary tract infections</one> is ... ? <royalblue>UPEC</royalblue>: <one>Uropathogenic Escherichia coli</one>
303
+ - The <one>bacterial type III secretion systems</one> evolved from ...? <one>Bacterial flagella</one>. URL: https://en.wikipedia.org/wiki/Type_three_secretion_system
304
+ - <one>Where</one> are the genes, that <two>initiate the invasion process of Salmonella</two>, encoded? On the <one>chromosomal Salmonella pathogenicity island 1</one> (<royalblue>SPI1</royalblue>)
305
+ - The <one>Lancefield classification</one> can be used for <two>Staphylococcus pyogenes</two>, based on M protein serotyping. But what exactly is used for this assay? The <one>antigenic differences in the hypervariable region of M protein</one>.
306
+ - Give <one>two examples</one> for a <one>Toxicoinfection</one>. A: (1) <one>Neurotoxins</one> (2) <one>Enterotoxins</one>
307
+ - Im <one>Kanamycin-Äsculin-Azid Selektivnährboden</one> mögen wir schwarze Höfe um die Streptokokken-Kolonien erkennen. Was sind diese schwarze Höfe? Dies sind <one>Eisen-Phenol-Komponenten</one>.
308
+ - Bacteria are getting <one>increasingly resistant against antibiotics</one>. Name one simple but effective way to counter this. A: <one>Combine two unrelated antibiotics</one> against the same bacterium.
309
+ - Many pathogens that <one>grow inside of a macrophage</one> inhibit the production of which three <two>pro-inflammatory cytokines</two>? (1) <one>TNF-Alpha</one> (2) <one>IL-12</one> (3) <one>IFN-Gamma</one>
310
+ - Name <one>a pathogen</one> that can generate its own vacuole. A: <one>Toxoplasma Gondii</one>.
311
+ - <one>Phagocytosis</one> is triggered by the attachment of target particles to ... ? <one>Phagocytic receptors</one>.
312
+ - Welches <one>Klassifizierungskriterium</one> können wir im <two>SIM-Agar</two> verwenden? <one>Indol</one>.
313
+ - What are <one>actin comet tails</one>? These are actin structures formed by the dynamic polymerization of actin beneath <royalblue>some species of intracellular bacteria</royalblue>.
314
+ - How do we call the <one>collective of microorganisms</one> that reside in an organism? The <one>microbiota</one>.
315
+ - Bacteria can misdirect the immune system, including by <one>mimicking cytokines</one>. Name 3 general effects/strategies here. A: (1) downregulate inflammatory cytokine production (2) inhibit apoptosis/pyroptosis/necrosis (3) <one>inhibit autophagy</one>
316
+ - What is <one>profoundly depressed in lepromatous leprosy</one>? <royalblue>Cell-mediated immunity</royalblue>.
317
+ - Wie kann <one>Borreliose</one> beim Menschen, möglichst einfach, erkannt werden? Über die "Wanderröte" (<royalblue>Erythema migrans</royalblue>).
318
+ - Name <one>a bacterium</one> that probably causes <two>Atherosclerosis</two>. A: <royalblue>Chlamydia pneumoniae</royalblue>.
319
+ - Vor allem <one>welche Bakterien</one> bilden <two>Aktin Kometen</two>? Viele <one>intrazelluläre Bakterien</one>.
320
+ - <one>Staphylococcus aureus</one> hat das Protein <two>ClfA</two>. Dieses kann an welch zelluläres Protein binden? An <one>Fibrinogen</one>.
321
+ - Woher stammt das <one>ADP</one>, das das Clostridium diphtheriae toxin benötigt? Von <royalblue>NAD+</royalblue>.
322
+ - Beim Menschen: die <one>häufigsten Erreger von Harnwegsinfektionen</one> sind ... ? E. coli Bakterien.
323
+ - <one>Delayed-type hypersensitivity</one> works very well against intracellular pathogens. Here, CD4+ T cells secrete in particular which cytokine? <royalblue>IFN-Gamma</royalblue>.
324
+ - Im <one>Kanamycin-Äsculin-Azid Selektivnährboden</one> können wir Streptokokken erkennen. Die äussern sich beim Wachstum durch ...? Schwarze Höfe um die Kolonien.
325
+ - Did <one>Linus Pauling</one> study <two>sickle-cell anemia</two>? Yes.
326
+ - Wieso verwenden wir den <one>Stärke-Agar</one>? Um die <one>Bildung von Amylasen</one> nachweisen zu können.
327
+ - Name two bacteria implicated in <one>dental caries</one>. A: (1) <one>Streptococcus mutans</one> (2) <one>Streptococcus sobrinus</one>
328
+ - In <one>clinical microbiology</one>: what are <two>VISA strains</two>? "Vancomycin-resistant Staphylococcus aureus". URL: https://en.wikipedia.org/wiki/Vancomycin-resistant_Staphylococcus_aureus
329
+ - Was heisst <one>suppurative infection</one>? This is a <one>pus-forming infection</one>.
330
+ - Sind <one>Endotoxine</one> oder <one>Exotoxine</one> hitzelabiler? <royalblue>Exotoxine</royalblue>. Endotoxine hingegen sind sehr hitzestabil.
331
+ - Was ist die <one>Inkubationszeit</one>? Dies ist die <one>Zeit vom Eindringen des Erregers</one> bis zum "Auftreten der ersten Krankheitssymptome".
332
+ - Define the term <one>facultative intracellular pathogen</one>. A: These are pathogens that can live either inside host cells - or free.
333
+ - Nenne <one>eine bakterielle Krankheit</one>, die aerogen über Staub übertragen wird. A: Die <one>Legionellose</one>.
334
+ - What is <one>necrotizing fasciitis</one>? Necrosis of the soft tissues with involvement of the fascia plus serious systemtic disease including shock, DIC, failure of organ systems and death.
335
+ - Bildet der <one>Pesterreger</one> eine <two>Kapsel</two> aus? Ja.
336
+ - Anderer Name für den <one>Önöz-Agar</one>? <one>Salmonella-Agar</one>.
337
+ - Im <one>McConkey-Agar</one> sieht man das Bakterien <deeppink>tiefrote Kolonien</deeppink> bilden. Was weiss man hierdurch? Das diese Bakterien <one>lac+</one> sind.
338
+ - <one>Trivialname</one>, in Englisch, für die <two>Tetanus-Symptome</two>? <one>Lockjaw</one>. URL: https://en.wikipedia.org/wiki/Lockjaw
339
+ - Wie nennt man die <one>typischen roten Hautflecken</one> bei Masern? <one>Masern-Exanthem</one>.
340
+ - Name a bacterium that has <one>rhamnose</one> in their cell wall structure. A: <one>Streptococcus pyogenes</one> (Group A Streptococcus, "GAS").
341
+ - A. W. für <one>cause of disease</one>? <one>Etiology</one>.
342
+ - Im Jahr <one>2014</one> starben, nach Angaben der WHO, wieviele Menschen an Tuberkulose? Etwa <one>1,5 Millionen Menschen</one>.
343
+ - Die <one>5-Nitroimidazole</one> werden wogegen eingesetzt? Gegen eine Reihe von Protozoen.
344
+ - Wozu wird das <one>Kovacs-Reagenz</one> eingesetzt? Zum <one>Nachweis von Indol</one>; somit auch zur <royalblue>Tryptophan-Spaltung</royalblue>.
345
+ - Who was <one>the pioneer of antiseptic surgery</one>? <one>Joseph Lister</one>. URL: https://en.wikipedia.org/wiki/Joseph_Lister
346
+ - <one>A46</one> of poxvirus interacts with which part of a protein? Via <one>TIR domains</one>.
347
+ - Do more people die to <one>circulatory diseases</one> or to <one>infectious and parasitic diseases</one>? More people die to <one>circulatory diseases</one>.
348
+ - <one>Anton van Leeuwenhoek</one> entwickelte zwei Vakzine. Gegen <two>welche Erreger</two>? (1) gegen <one>Tollwut</one> (2) gegen <one>Milzbrand</one>
349
+ - <one>Antimicrobial drugs</one> are classified based on which 3 aspects? (1) molecular structure (2) mechanism of action (3) spectrum of antimicrobial activity
350
+ - <one>Desinfektion</one> führt zu einer Keimreduktion um welchen Faktor? Um den <one>Faktor 10 ** -5</one>.
351
+ - Sind <one>Endotoxine</one> hitzestabil? Ja.
352
+ - Name a great way of <one>S. pyogenes</one> to avoid immune detection. A: The capsule is composed of <one>hyaluronic acid</one> which is the same as in the connective tissue in humans → thus, this helps immensely in immune evasion, as the Bacterium is not recognized as a foreign component.
353
+ - Ist die <one>Streptokinase</one> ein <two>Enzym</two>? Nein - es ist ein <one>nichtenzymatisches Protein</one> ohne enzymatische Aktivität, welche von manchen Streptokokken in die Umgebung ausgeschieden wird. URL: https://de.wikipedia.org/wiki/Streptokinase
354
+ - Für den <one>Einsatz von Chemotherapeutika</one>, ist die <two>natürliche Resistenz</two> oder die <two>erworbene Resistenz</two> problematischer? Die <royalblue>erworbene Resistenz</royalblue> ist problematischer.
355
+ - Give one example for <one>emetic toxin formation</one>. A: <one>Bacillus cereus</one>.
356
+ - How many people die, per year, to <one>infectious diseases</one> worldwide? About <one>15 million people per year</one>.
357
+ - Give an example for <one>a general-purpose media</one>. A: Blood agar.
358
+ - <one>SipA</one> stabilizes ... ? <one>F-Actin</one> (<royalblue>stable cable</royalblue>).
359
+ - <one>Salmonella</one> can survive in other cells? Yes, in <one>macrophages</one>, thanks two a two-component system called "phoPQ".
360
+ - Welche <one>Logik</one> steckt hinter dem <two>Tyndallisieren</two>? Auskeimende Sporen werden in den "nachfolgenden Heissphasen" abgetötet.
361
+ - The bacterium <one>Listeria</one> hijacks which cellular protein? <royalblue>Listeria</royalblue> hijacks the cytoskeletal protein <one>actin</one>.
362
+ - What determines <one>the serotype</one> of <two>Streptococcus pyogenes</two>? Its <royalblue>M protein</royalblue>.
363
+ - Is <one>Corynebacterium diphtheriae</one> a deadly pathogen? Yes it is. URL: https://en.wikipedia.org/wiki/Corynebacterium_diphtheriae
364
+ - Nenne die drei <one>zoites</one> die mit dem Lebenszyklus von Plasmodium falciparum einhergehen, in der richtigen Reihenfolge. A: Mnemo: <royalblue>spo-me-tro</royalblue> (1) <one>sporozoite</one> (2) merozoite (3) <one>trophozoite</one>
365
+ - Wenn wir die <one>DNA Gyrase</one> hemmen möchten, können wir welches Antibiotikum verwenden? <royalblue>Ciproflaxin</royalblue>, ein Gyrasehemmer.
366
+ - <one>Which protein</one> initiates the <two>actin-comet formation</two> in <three>Listeria monocytogenes</three>? <one>ActA</one>.
367
+ - Name <one>a disease</one> caused by <two>Shigella flexneri</two>. A: <one>Bloody diarrhea</one>.
368
+ - The <one>Chlamydia infection</one> is caused by which bacterium? It is caused by bacterium <one>Chlamydia trachomatis</one>.
369
+ - <one>Streptococcus pyogenes</one> has the <two>C-substance</two>. Why the letter C? <royalblue>C</royalblue> for <one>capsular polysaccharide</one>.
370
+ - Why was the <one>EliSpot</one> method originally developed? It was originally developed as a method to <one>detect antibody-secreting B-cells</one>.
371
+ - Erreicht man mit <one>chemischen Methoden</one> eine <two>Sterilisation</two>? Nein.
372
+ - <one>Moxifloxacin</one> can be used against ...? <one>Myxobakterium</one>.
373
+ - If we remove the <one>B component</one> from the <two>Diphtheriae toxin</two>, what is the net effect? This would effectively render this <royalblue>exotoxin</royalblue> <one>nontoxic</one>.
374
+ - Unterscheide <one>Pathogen</one> von <one>Parasit</one>. A: (1) Ein Parasit ist ein Mikroorganismus der auf oder in einem Wirt wächst. (2) Ein Pathogen ist ein Parasit, der seinem Wirt Schaden zufügt.
375
+ - Nenne zwei Aspekte, die man mit dem <one>Phenolrot Boullion</one> nachweisen kann. A: (1) <one>Zuckerfermentation</one> (2) <one>Produktion organischer Säuren</one>
376
+ - How do we call <one>bacterial proteins</one>" that are <two>used to kill other bacteria</two>? <one>Bacteriocins</one>. URL: https://en.wikipedia.org/wiki/Bacteriocin
377
+ - <one>Mortality rate</one> of listeriosis in percent? <one>20%</one>.
378
+ - <one>Frühsommermeningoenzephalitis</one> wird wie übertragen? Durch einen <one>Zeckenbiss</one>.
379
+ - Once <one>inside of a phagosome</one>, <two>intracellular pathogens</two> have which general 3 options/strategies to avoid being <three>killed by a phagolysosome</three>? (1) They can <one>escape from the phagosome</one> (2) They can "prevent phagosome-lysosome fusion" (3) They can "survive the result"
380
+ - Was <one>Pasteur</one> the first to propose a <two>germ theory of infectious disease</two>? No.
381
+ - Was ist <one>Sigmoidoscopy</one>? Ein Doktor untersucht den unteren Teil des Colons (Dickdarms), den sogenannten <one>Sigmoid colon</one>.
382
+ - Erreger der <one>Borreliose</one>? Borrelia burgdorferi.
383
+ - <one>TisB</one> is a membrane peptide that was shown to have what effect in bacteria? TisB will "decrease proton motive force" and thus also decrease the cellular concentration of ATP.
384
+ - Which among <one>Vibrio cholerae</one> cause human disease? Those that contain the <royalblue>bacteriophage CTX phi</royalblue> (or that weird symbol with a circle and a line through it).
385
+ - Manche Bakterien können <one>Verdauungsprozesse hemmen</one>, um sich in einem Wirten zu etablieren. Gib ein Beispiel für so ein Bakterium. A: <one>Vibrio cholerae</one>.
386
+ - <one>Cephalosporine</one> der ersten Generation zeichnen sich durch eine gute Wirksamkeit gegen welche Bakteriengruppe aus? Gegen <one>Staphylokokken</one>.
387
+ - Wie erkennen wir E. coli auf einer <one>EMB Platte</one>? Aufgrund ihres <one>metallischen Glanzes</one>.
388
+ - Warum hat <one>Salmonella</one> die <two>pathogenicity island (SPI)-2</two>? Um in Makrophagen wachsen zu können.
389
+ - <one>Respiratory pathogens</one> are typically ... ? Airborne (mode of transmission).
390
+ - Das Peptidoglykan der Zellwand der <one>Microbacteriaceae</one> ist vom ... Typ? <one>B-typ</one>.
391
+ - Ist <one>die Pest</one> ausgerottet? <one>Nein</one>.
392
+ - What does the <one>selective toxicity theory</one> state? It states that a substance could selectively target harmful microorganisms - but "leave human tissues undamaged".
393
+ - Beim <one>CZAPEK-DOX Agar</one>: was ist die einzige Stickstoffquelle? <one>Natriumnitrat</one>.
394
+ - Wie wirkt das <one>Cholera-Toxin</one> in der Zelle? Es <royalblue>verursacht</royalblue> eine <one>cAMP-Überproduktion in ihren Zielzellen</one>.
395
+ - What is <one>a biological host barrier</one>? This is the <one>normal flora</one>.
396
+ - Wie <one>messen</one> Bakterien die <two>Zell-Dichte</two>? Mit Hilfe von <one>Quorum-Sensing</one>.
397
+ - <one>In humans</one>: give a classic example of <two>a pathobiont</two>. A: <one>Helicobacter pylori</one>. URL: https://en.wikipedia.org/wiki/Helicobacter_pylori
398
+ - Was meinen wir mit dem Begriff <one>Abwehr</one>? Dies ist <one>die Summe aller Reaktionen auf das Eindringen eines Fremdkörpers</one>.
399
+ - <one>Joseph Lister</one> was a pioneer of which method? <one>Antiseptic surgery</one>.
400
+ - <one>Alexander Fleming</one> is famous for having discovered penicillin, but he also discovered something else, a few years before that. What was it? The enzyme <one>lysozyme</one>.
401
+ - Was meinen wir mit <one>Biovar</one> in der Mikrobiologie? Dies sind Mikroorganismen, die durch gemeinsame biochemische und/oder pyhsiologische Eigenschaften charakterisiert sind.
402
+ - Gibt es <one>pathogene Serogruppen</one> von <two>Yersinia enterocolitica</two>? Ja, zum Beispiel <one>O:3</one> oder <one>O:27</one>.
403
+ - <one>Type I fimbriae</one> - such as used by <two>Salmonella</two> - are usually used for ...? <one>Adherence</one>.
404
+ - Welche Aufgabe hat die <one>A-chain</one> des <two>Cholera Toxins</two>? Es aktiviert die Adenylatcyclase, die daraufhin "mehr cAMP" produziert.
405
+ - Der Erreger der <one>Geflügelcholera</one> ist ... ? <one>Pasteurella multocida</one>.
406
+ - <one>Listeria</one> uses what in order to break out of a phagosome vacuole, before fusion? <one>Hemolysin</one>.
407
+ - Where can we find the <one>Paneth cells</one>? These specialized host defence cells can be found in the <one>small intestine</one>.
408
+ - <one>Plasmodium falciparum</one> can <two>cause Malaria</two>. What type of organism is it? It is a <one>protozoan parasite</one>.
409
+ - What is meant with the term <one>pyroptosis</one>? <royalblue>Pyroptosis</royalblue> is a <one>highly inflammatory form of programmed cell death</one> that occurs most frequently upon infection with intracellular pathogens and is likely to form part of the antimicrobial response.
410
+ - What are <one>Neutropenia patients</one>? Patients that lack <one>Neutrophils</one>.
411
+ - The <one>Ames test</one> makes use of which bacterium usually? <one>Salmonella typhimurium</one>.
412
+ - From a molecular point of view: what does the <one>tetanus toxin</one> block? It blocks the <one>release of glycine</one>.
413
+ - Wir können den <one>Eisen-3-Zucker Agar</one> zur Identifikation von ... verwenden? Von <one>Enerobacteriaceae</one>.
414
+ - Um <one>Bodenbakterien</one> zu isolieren: welchen <two>Agar</two> mögen wir hier verwenden? <one>CZAPEK-DOX Agar</one>.
415
+ - Warum ist es wichtig, das wir in der <one>klinischen Mikrobiologie</one> mehr über <two>Biofilme</two> Bescheid wissen? Einer großen Zahl <one>chronischer bakterieller Infektionen</one> liegen <royalblue>Biofilme</royalblue> zu Grunde. Diese kann man mit konventionellen Antibiotika kaum beikommen.
416
+ - Nenne einen <one>obligat-intrazellulären Organismus</one>, der mit dem Buchstaben <two>C</two> beginnt. A: <one>Chlamydia trachomatis</one>.
417
+ - Was meinen wir mit <one>Pathovar</one> in der Mikrobiologie? Dies sind Mikroorganismen, die durch gemeinsame pathogene Eigenschaften für bestimmte Wirte charakterisiert sind.
418
+ - The endosomal <one>TLR13 receptor</one> can recognize what exactly? It <royalblue>can recognize a conserved 23S ribosomal RNA sequence</royalblue>, in other words - it <one>can recognize bacterial rRNA</one>.
419
+ - What is <one>a defined minimal medium</one>? This is a medium that contains only those compounds needed for an organism to grow.
420
+ - Name a way for <one>Salmonella</one> to kill macrophages. A: By <one>inducing apoptosis</one>.
421
+ - Was verstehen wir unter einer <one>stillen Feiung</one>? Wenn im Körper ein Schutzzustand gegen einen Erreger erreicht wird.
422
+ - Die <one>normale Hautflora des Menschen</one> besteht überwiegend aus ... Bakterien? <one>Gram-positiven Bakterien</one>.
423
+ - Was meinen wir mit <one>Morphovar</one> in der Mikrobiologie? Dies sind Mikroorganismen mit <one>gemeinsamen, morphologischen Eigenschaften</one>.
424
+ - Name two bacteria that show <one>antigenic variation</one>. A: (1) <one>Neisseria gonorrhoeae</one> (2) <one>Salmonella typhimurium</one>
425
+ - Andere Bezeichnung für <one>Ausbreitung über das Blut</one> bei Bakterien? <one>Sepsis</one>.
426
+ - The <one>diphtheria toxin</one> is what type of toxin? It is an <one>A-B toxin</one>.
427
+ - Nenne drei <one>unterschiedliche Medientypen</one> in der Mikrobiologie. A: (1) "Anreicherungsmedium" (2) "Isolierungsmedium" (3) <one>Selektivmedium</one>
428
+ - Was machen Bakterien um den <one>Komplementproteinen</one> zu entkommen? Sie <one>bilden Kapseln</one>.
429
+ - Was ist eine <one>konfluente Lyse</one>? Wenn ein <royalblue>Phage</royalblue> den gesamten Bakterienrasen lysiert.
430
+ - Was ist die <one>Infektkette</one>? Die Infektkette ist <one>der Weg einer Infektion</one>.
431
+ - Nenne zwei <one>molekularbiologische Methoden</one>, die wir zwecks Klassifizierung von Bakterien verwenden können. A: (1) DNA-Hybridisierung (2) <one>16S rRNA Sequenzierung</one>
432
+ - Hat <one>Neisseria meningitidis</one> ausser dem Menschen auch andere Reservoire? Nein.
433
+ - What is <one>Pathology</one>? The <one>scientific study of disease</one>.
434
+ - Wie tötet <one>Bacillus Anthracin</one> letzten Endes, auf zellulärer Ebene? Durch <one>Apoptose</one>.
435
+ - <one>TLR13</one>, which is localized in the phagosome, recognizes RNA of bacteria, but it requires which additional ER-resident protein? A: <one>Unc93b1</one>.
436
+ - Was ist <one>Parasitismus</one>? Wenn nur der Parasit von einer Symbiose profitiert; es ist somit <one>eine einseitige Wechselwirkung</one>.
437
+ - <one>Who</one> invented the <two>Petri-dish</two>, and <three>when</three>? The German bacteriologist <one>Julius Richard Petri</one>, in <royalblue>1887</royalblue>.
438
+ - Der Toll-like-Rezeptor-4 erkennt grampositive oder gramnegative Bakterien? Gramnegative Bakterien, über deren <one>LPS</one>.
439
+ - Bei der Immunologie in Bakterien: was heisst <one>CRISPRs</one>? <one>Clustered Regularly Interspaced Short Palindromic Repeats</one>.
440
+ - Sind <one>Probiotika</one> meistens gramnegative oder grampositive Bakterien? <one>Grampositiv</one>.
441
+ - Der Erreger der <one>Gonorrhoe</one> ist ... ? <one>Neisseria gonorrhoe</one>.
442
+ - Nenne ein Bakterium das die <one>Cilientätigkeit der Lunge</one> hemmen kann. A: <one>Bordetella pertussis</one>.
443
+ - Warum hilft uns die <one>Maus</one> eher wenig wenn es um <lightseagreen>Malaria</lightseagreen> geht? Da <one>Mäuse keine Malaria bekommen können</one>. Deshalb sind die Erkenntnisse nicht zu 100% auf den Menschen übertragbar.
444
+ - Welches Bakterium ist der <one>Erreger von Gasbrand</one>? <one>Clostridium perfringens</one>.
445
+ - Wie tötet <one>Gramicidin A</one>? Es bildet einen <one>Kanal</one> - dies führt zum Zusammenbruch des Membranpotentials.
446
+ - The Ames test uses the bacterium Salmonella typhimurium. The strain used here carries mutations in genes involved in ... ? <tomato>Histidine synthesis</tomato>.
447
+ - Advantage of "phase variation" for a bacterium? It enables this bacterium to "change certain cell-surface proteins" - and thus "evade the host immune system".
448
+ - Was ist ein "Antibiogramm"? Das Antibiogramm ist ein Labortest zur Bestimmung der Empfindlichkeit bzw. Resistenz von mikrobiellen Krankheitserregern gegenüber Antibiotika.
449
+ - Gegen welche Bakterien wirkt "Daptomycin"? Gegen "gram-positive Bakterien". URL: https://en.wikipedia.org/wiki/Daptomycin
450
+ - How does "Pseudomonas" respond to penicillin? Being a "gram-negative bacterium", Pseudomonas is naturally resistant to penicillin.
451
+ - How do we call it when an infectious agent alters its antigen composition? "Antigenic variation".
452
+ - Shigella can cause which disease in humans? Dysentery. URL: http://healthywa.wa.gov.au/Articles/S_T/Shigella-infection-and-dysentery
453
+ - Salmonella uses "InvC" - of what type is InvC? It is "an ATPase.
454
+ - Virulence factors are encoded, in general, by ... ? "Virulence genes".
455
+ - What can we conclude when a virulence gene is inactivated? The pathogen will lose virulence or pathogenicity.
456
+ - Nowadays, how to create the "diphtheria toxoid"? We treat the exotoxin with "formaldehyde".
457
+ - Name a "horrible disease" caused by Streptococcus pyogenes. A: "Necrotizing fasciitis".
458
+ - Können wir "Neisseria meningitidis" durch die "Polysaccharid-Kapseln" unterscheiden? Ja.
459
+ - Name 5 different microbes that can grow inside of a macrophage. A: (1) "Salmonella" (2) "Yersinia" (3) "Listeria" (4) "Chlamydia" (5) "Myocbacterium tuberculosum"
460
+ - Why is it hard to establish the LD50 for "Streptococcus pneumoniae", in mice? Because of fhe fact that only a few cells are required to establish a fatal infection - and subsequently kill all mice in a test population.
461
+ - Is the "Cholera Toxin" rather "heat-stable" or "heat-labile", as an Enterotoxin? It is rather "heat-labile".
462
+ - The "germ theory" replaced which other, older theory? The germ theory replaced the "miasma theory".
463
+ - Louis Pasteur devised a vaccine against ... ? "Cholera".
464
+ - What is a "pandemic"? This is a widespread, usually "worldwide", epidemic.
465
+ - The Shiga toxin belongs to which family of toxins? It belongs to the "AB5 toxins".
466
+ - Name a pathogen that can cause a "hemorrhagic fever". A: "Ebola".
467
+ - Wenn wir "Rohmilch" auf Bakterien untersuchen möchten, welchen Agar mögen wir hier verwenden? Den "Chinablau-Lactose Agar".
468
+ - Give an example for a "bacterial lecithinase". A: The "Alpha-Toxin" of "Clostridium perfringens".
469
+ - A. W. für "frustrated phagocytosis"? "Capsules".
470
+ - Nenne einen Vorteil für Listeria wenn es sich intrazellulär, durch Aktin-Kometen, bewegt. A: Listeria ist so nie den extrazellulär-zirkulierenden Antikörpern ausgesetzt.
471
+ - Name one of the largest regulatory RNAs in Staphylococcus aureus. A: "RNA III".
472
+ - Which theory was established by Louis Pasteur and Robert Koch? The "germ theory of infectious disease".
473
+ - What means the term "phage conversion"? When we convert a "nonpathogenic bacterium" into a "pathogenic bacterium", by use of a phage (like "phage B" for C. diptheriae).
474
+ - Where inside of a cell can we find the TLR13? In the "phagosome".
475
+ - Was meinen wir mit "Serovar" in der Mikrobiologie? Dies sind Mikroorganismen, die durch "gemeinsame antigene Eigenschaften" charakterisiert sind.
476
+ - "Microbacteriaceae" haben immer eine Diaminosäure, ausser Lysin, in ihrer Zellwand. Nenne eine davon. A: Ornithin.
477
+ - The "LB medium", what does LB stand for? Luria Broth.
478
+ - Sind Archaea pathogen? Nein, so gut wie nie.
479
+ - Where did the sickle-cell mutation originate, geographically? This is a trick question: the sickle-cell mutation arose independently several times, in at the least 5 different places on planet earth.
480
+ - Nenne 5 Typen von Erregern. A: (1) Eukaryotische Mikroben (2) Bakterien (3) Viren (4) Parasiten (5) Prionen
481
+ - The "center for phage therapy" would accept what kind of patients? They will accept patients with "drug-resistant bacterial infections".
482
+ - Wirkt Isopropanol "anti-mikrobiell"? Ja.
483
+ - A. W. für "Dysbiosis"? microbiota imbalance
484
+ - Wofür steht die Abkürzung "HUS" in der klinischen Mikrobiologie? "Hemolytic-uremic syndrome".
485
+ - Welche 5 Punkte prägen die Normalflora? (1) Mutualismus: Mensch und Bakterien profitieren vom Zusammenleben (2) Resorption von Steroiden: durch die Darmflora (3) Stimulierung des Abwehrsystems: mehr sekretorische IgAs werden gebildet (4) Synthese von Vitaminen (5) Verhinderung der Kolonisierung durch Pathogene: = Kolonisationsresistenz
486
+ - Was verstehen wir unter einer "Superinfektion"? Dies ist eine Sekundärinfektion in einem durch einen Erreger vorgeschädigten Organ. Beispiel: Eine bakterielle Infektion im Anschluss an eine Influenzainfektion.
487
+ - Some bacteria stimulate actin assembly in a host cell, through "Rho-family GTPases". Name two of these proteins. A: (1) Rac1 (2) cdc42
488
+ - Name two virulence properties of the M protein of Streptococcus pyogenes? (1) It mediates adhesion to host epithelial cells (2) It mediates resistance to opsonophagocytosis through binding of fibrinogen and immunoglobulin Fc regions
489
+ - Nenne ein Bakterium das gerne auf einem Katheter wachsen kann. A: Staphylococcus aureus.
490
+ - Das Choleratoxin hat wieviele Untereinheiten? 6.
491
+ - Salmonella phoP and phoQ genes do what? They neutralize macrophage-produced antibacterial molecules called "defensins".
492
+ - Why must antibiotics be free of endotoxins? Because Endotoxines could induce fever.
@@ -0,0 +1,5 @@
1
+ # =========================================================================== #
2
+ # === Computer graphics
3
+ # =========================================================================== #
4
+
5
+ - A pixel may be displayed in 2D. How do we call this area typically? This is the <one>display grid</one>.