studium 0.10.1

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

Potentially problematic release.


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

Files changed (882) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +1982 -0
  3. data/bin/ask_exam_question +7 -0
  4. data/bin/check_description_of_these_lectures +7 -0
  5. data/bin/curriculum_module_displayer +7 -0
  6. data/bin/d10 +7 -0
  7. data/bin/d100 +7 -0
  8. data/bin/d15 +7 -0
  9. data/bin/d20 +7 -0
  10. data/bin/d25 +7 -0
  11. data/bin/d3 +7 -0
  12. data/bin/d30 +7 -0
  13. data/bin/d5 +7 -0
  14. data/bin/determine_curricula +7 -0
  15. data/bin/exam_registration_at +7 -0
  16. data/bin/exam_statistics +7 -0
  17. data/bin/exams_per_month +9 -0
  18. data/bin/finished_exams_at_this_university +7 -0
  19. data/bin/flashcards +7 -0
  20. data/bin/mandatory_continuous_assessment +7 -0
  21. data/bin/mandatory_upcoming_courses +7 -0
  22. data/bin/n_exam_questions_already_answered +16 -0
  23. data/bin/nquestions +7 -0
  24. data/bin/nsolved +7 -0
  25. data/bin/open_last_exam_question_asked_file +7 -0
  26. data/bin/passed_pr/303/274fungsimmanente_courses +7 -0
  27. data/bin/return_n_ects_from_this_file +7 -0
  28. data/bin/show_lectures_on_the_commandline +7 -0
  29. data/bin/show_themes +7 -0
  30. data/bin/solved +9 -0
  31. data/bin/solved_ects +7 -0
  32. data/bin/studienkennzahl +7 -0
  33. data/bin/studium +7 -0
  34. data/bin/studium_skeleton +7 -0
  35. data/bin/ufind +7 -0
  36. data/bin/upcoming_exams +7 -0
  37. data/bin/week_parser +7 -0
  38. data/doc/ECTS_CONSIDERATIONS.md +81 -0
  39. data/doc/HOW_TO_ADAPT_THIS_PROJECT.md +43 -0
  40. data/doc/HOW_TO_DETERMINE_WHICH_PART_IS_THE_QUESTION_AND_WHICH_PART_IS_THE_ANSWER.md +47 -0
  41. data/doc/README.gen +1965 -0
  42. data/doc/TODO_FOR_STUDIUM_GEM.md +113 -0
  43. data/doc/deprecated_components.md +24 -0
  44. data/doc/documentation_for_the_file_lecture_information.md +294 -0
  45. data/doc/elegant_colours.md +20 -0
  46. data/img/STUDIES.png +0 -0
  47. data/lib/studium.rb +5 -0
  48. data/lib/studium/autoinclude.rb +7 -0
  49. data/lib/studium/base/base.rb +84 -0
  50. data/lib/studium/base/cliner.rb +58 -0
  51. data/lib/studium/base/colours.rb +307 -0
  52. data/lib/studium/base/commandline_arguments.rb +64 -0
  53. data/lib/studium/base/constants.rb +34 -0
  54. data/lib/studium/base/curriculum.rb +329 -0
  55. data/lib/studium/base/directory_to_the_exam_topics.rb +23 -0
  56. data/lib/studium/base/editor.rb +28 -0
  57. data/lib/studium/base/encoding.rb +36 -0
  58. data/lib/studium/base/esystem.rb +23 -0
  59. data/lib/studium/base/minimal_prototype.rb +66 -0
  60. data/lib/studium/base/misc.rb +854 -0
  61. data/lib/studium/base/mode.rb +92 -0
  62. data/lib/studium/base/obtain.rb +145 -0
  63. data/lib/studium/base/opnn.rb +46 -0
  64. data/lib/studium/base/prototype.rb +92 -0
  65. data/lib/studium/base/readlines.rb +55 -0
  66. data/lib/studium/base/replace.rb +110 -0
  67. data/lib/studium/base/reset.rb +77 -0
  68. data/lib/studium/base/run.rb +17 -0
  69. data/lib/studium/base/src_dir_at_home.rb +20 -0
  70. data/lib/studium/base/time.rb +634 -0
  71. data/lib/studium/base/unicode.rb +95 -0
  72. data/lib/studium/base/word_wrap.rb +58 -0
  73. data/lib/studium/boku/README.md +4 -0
  74. data/lib/studium/boku/boku_biotechnology_all_master_lectures.rb +142 -0
  75. data/lib/studium/boku/boku_/303/266ffnungszeiten.rb +29 -0
  76. data/lib/studium/boku/show_three_pillars_of_these_lectures.rb +96 -0
  77. data/lib/studium/boku/three_pillars.rb +232 -0
  78. data/lib/studium/check_and_sanitize/README.md +11 -0
  79. data/lib/studium/check_and_sanitize/check_curriculum_for_correct_separation_of_bachelor_and_master.rb +149 -0
  80. data/lib/studium/check_and_sanitize/check_for_all_exam_topics_being_registered.rb +107 -0
  81. data/lib/studium/check_and_sanitize/check_for_existing_description_of_this_lecture.rb +197 -0
  82. data/lib/studium/check_and_sanitize/check_the_lecture_information_file.rb +171 -0
  83. data/lib/studium/check_and_sanitize/missing_priority_entry.rb +44 -0
  84. data/lib/studium/check_and_sanitize/sanitize_this_string_containing_the_lva_dates.rb +79 -0
  85. data/lib/studium/colours/colours.rb +570 -0
  86. data/lib/studium/colours/sfancy.rb +40 -0
  87. data/lib/studium/colours/sfile.rb +35 -0
  88. data/lib/studium/colours/simp.rb +38 -0
  89. data/lib/studium/colours/use_this_colour_for_exam_questions_and_exam_answers.rb +76 -0
  90. data/lib/studium/commandline/commandline.rb +25 -0
  91. data/lib/studium/commandline/constants.rb +16 -0
  92. data/lib/studium/commandline/help.rb +152 -0
  93. data/lib/studium/commandline/initialize.rb +27 -0
  94. data/lib/studium/commandline/menu.rb +760 -0
  95. data/lib/studium/commandline/misc.rb +707 -0
  96. data/lib/studium/commandline/reset.rb +24 -0
  97. data/lib/studium/commandline/run.rb +20 -0
  98. data/lib/studium/constants/boku_wien.rb +52 -0
  99. data/lib/studium/constants/constants.rb +25 -0
  100. data/lib/studium/constants/delay.rb +28 -0
  101. data/lib/studium/constants/editor.rb +28 -0
  102. data/lib/studium/constants/exam_topics.rb +183 -0
  103. data/lib/studium/constants/file_constants.rb +875 -0
  104. data/lib/studium/constants/image_constants.rb +216 -0
  105. data/lib/studium/constants/last_question_asked.rb +38 -0
  106. data/lib/studium/constants/lecture_types_that_are_mandatory_continuous_assessment.rb +47 -0
  107. data/lib/studium/constants/misc.rb +163 -0
  108. data/lib/studium/constants/namespace.rb +14 -0
  109. data/lib/studium/constants/newline.rb +14 -0
  110. data/lib/studium/constants/regexes.rb +35 -0
  111. data/lib/studium/constants/return_file_for_this_curriculum.rb +411 -0
  112. data/lib/studium/constants/roebe.rb +173 -0
  113. data/lib/studium/constants/time.rb +52 -0
  114. data/lib/studium/constants/tu_wien.rb +39 -0
  115. data/lib/studium/constants/uni_wien.rb +24 -0
  116. data/lib/studium/constants/unicode.rb +27 -0
  117. data/lib/studium/constants/week.rb +138 -0
  118. data/lib/studium/constants/www_constants.rb +23 -0
  119. data/lib/studium/curricula/curriculum.rb +199 -0
  120. data/lib/studium/curricula/curriculum_as_string.rb +279 -0
  121. data/lib/studium/curricula/curriculum_module_displayer/constants.rb +38 -0
  122. data/lib/studium/curricula/curriculum_module_displayer/curriculum_module_displayer.rb +417 -0
  123. data/lib/studium/curricula/curriculum_module_displayer/initialize.rb +25 -0
  124. data/lib/studium/curricula/curriculum_module_displayer/menu.rb +45 -0
  125. data/lib/studium/curricula/curriculum_module_displayer/reset.rb +77 -0
  126. data/lib/studium/curricula/curriculum_module_displayer/run.rb +20 -0
  127. data/lib/studium/curricula/curriculum_module_displayer/set_use_this_curriculum.rb +93 -0
  128. data/lib/studium/curricula/curriculum_module_displayer/show_and_report.rb +190 -0
  129. data/lib/studium/curricula/determine_curricula/constants.rb +16 -0
  130. data/lib/studium/curricula/determine_curricula/determine_curricula.rb +36 -0
  131. data/lib/studium/curricula/determine_curricula/help.rb +39 -0
  132. data/lib/studium/curricula/determine_curricula/initialize.rb +48 -0
  133. data/lib/studium/curricula/determine_curricula/menu.rb +138 -0
  134. data/lib/studium/curricula/determine_curricula/misc.rb +402 -0
  135. data/lib/studium/curricula/determine_curricula/report.rb +131 -0
  136. data/lib/studium/curricula/determine_curricula/reset.rb +62 -0
  137. data/lib/studium/curricula/determine_curricula/run.rb +19 -0
  138. data/lib/studium/curricula/determine_elective_courses_in_this_curriculum.rb +112 -0
  139. data/lib/studium/curricula/display_bachelor_curricula.rb +89 -0
  140. data/lib/studium/curricula/mitteilungsbl/303/244tter.rb +336 -0
  141. data/lib/studium/curricula/modules/display_on_the_commandline.rb +316 -0
  142. data/lib/studium/curricula/modules/return_n_ects_in_this_module.rb +74 -0
  143. data/lib/studium/curricula/n_percent_solved_in_this_curriculum.rb +75 -0
  144. data/lib/studium/curricula/random_curriculum_creator.rb +171 -0
  145. data/lib/studium/curricula/show_lectures_of_this_curriculum.rb +114 -0
  146. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/constants.rb +16 -0
  147. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/initialize.rb +27 -0
  148. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/menu.rb +35 -0
  149. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/misc.rb +242 -0
  150. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/report.rb +140 -0
  151. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/reset.rb +67 -0
  152. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/show_lectures_of_this_curriculum_id.rb +37 -0
  153. data/lib/studium/curricula/show_solved_percentage_among_the_registered_curricula.rb +87 -0
  154. data/lib/studium/ects/boku_ects_splitter.rb +127 -0
  155. data/lib/studium/ects/ects_parser.rb +179 -0
  156. data/lib/studium/ects/ects_per_university.rb +140 -0
  157. data/lib/studium/ects/ects_scanner.rb +141 -0
  158. data/lib/studium/ects/ects_to_university_parser.rb +148 -0
  159. data/lib/studium/ects/erledigt.rb +131 -0
  160. data/lib/studium/ects/last_entry_is_curriculum.rb +147 -0
  161. data/lib/studium/ects/n_ects_in_these_lectures.rb +185 -0
  162. data/lib/studium/ects/n_ects_points_in_mandatory_presence_courses.rb +50 -0
  163. data/lib/studium/ects/noch_zu_absolvieren.rb +172 -0
  164. data/lib/studium/ects/return_n_ects_from_this_file.rb +58 -0
  165. data/lib/studium/ects/return_n_ects_from_this_url.rb +202 -0
  166. data/lib/studium/ects/search_for_n_ects.rb +540 -0
  167. data/lib/studium/ects/show_completed_ects_in_all_curricula.rb +210 -0
  168. data/lib/studium/ects/show_passed_credits_per_curriculum.rb +254 -0
  169. data/lib/studium/ects/simple_total_ects_points.rb +143 -0
  170. data/lib/studium/ects/solved_ects/constants.rb +24 -0
  171. data/lib/studium/ects/solved_ects/reset.rb +54 -0
  172. data/lib/studium/ects/solved_ects/solved_ects.rb +325 -0
  173. data/lib/studium/ects/solved_ects_per_university/reset.rb +25 -0
  174. data/lib/studium/ects/solved_ects_per_university/solved_ects_per_university.rb +106 -0
  175. data/lib/studium/ects/still_missing.rb +133 -0
  176. data/lib/studium/ects/sum_of_ects.rb +150 -0
  177. data/lib/studium/encoding/encoding.rb +150 -0
  178. data/lib/studium/exam_topics/RNAi_siRNA_and_miRNA +79 -0
  179. data/lib/studium/exam_topics/abfall_als_ressource +86 -0
  180. data/lib/studium/exam_topics/advanced_biochemistry +762 -0
  181. data/lib/studium/exam_topics/advanced_biotechnology +192 -0
  182. data/lib/studium/exam_topics/advanced_cellbiology +25 -0
  183. data/lib/studium/exam_topics/advanced_chemistry +453 -0
  184. data/lib/studium/exam_topics/advanced_microbiology +44 -0
  185. data/lib/studium/exam_topics/advanced_topics_in_plant_sciences +51 -0
  186. data/lib/studium/exam_topics/advanced_virology +52 -0
  187. data/lib/studium/exam_topics/ageing +101 -0
  188. data/lib/studium/exam_topics/agrar_ecology +61 -0
  189. data/lib/studium/exam_topics/agrarmarkt +70 -0
  190. data/lib/studium/exam_topics/agrarphysik +35 -0
  191. data/lib/studium/exam_topics/alcohols +29 -0
  192. data/lib/studium/exam_topics/algorithms +49 -0
  193. data/lib/studium/exam_topics/allergie +73 -0
  194. data/lib/studium/exam_topics/allgemeine_genetik +1006 -0
  195. data/lib/studium/exam_topics/allgemeine_mikrobiologie +855 -0
  196. data/lib/studium/exam_topics/aminoacids +417 -0
  197. data/lib/studium/exam_topics/analytische_chemie_1 +131 -0
  198. data/lib/studium/exam_topics/analytische_chemie_2 +31 -0
  199. data/lib/studium/exam_topics/anatomie +248 -0
  200. data/lib/studium/exam_topics/anorganische_chemie +289 -0
  201. data/lib/studium/exam_topics/anthropologie +115 -0
  202. data/lib/studium/exam_topics/antibodies_and_antigens +747 -0
  203. data/lib/studium/exam_topics/apoptosis +35 -0
  204. data/lib/studium/exam_topics/archaea +41 -0
  205. data/lib/studium/exam_topics/architecture +8 -0
  206. data/lib/studium/exam_topics/artificial_intelligence +81 -0
  207. data/lib/studium/exam_topics/audio +10 -0
  208. data/lib/studium/exam_topics/bacteriophages +224 -0
  209. data/lib/studium/exam_topics/basic_biochemistry +1008 -0
  210. data/lib/studium/exam_topics/basic_biotechnology +1011 -0
  211. data/lib/studium/exam_topics/basic_chemistry +1007 -0
  212. data/lib/studium/exam_topics/basic_virology +955 -0
  213. data/lib/studium/exam_topics/bauwesen +6 -0
  214. data/lib/studium/exam_topics/betriebssysteme +125 -0
  215. data/lib/studium/exam_topics/betriebswirtschaftslehre +29 -0
  216. data/lib/studium/exam_topics/bioanalytik_und_biosensoren +381 -0
  217. data/lib/studium/exam_topics/biochips +78 -0
  218. data/lib/studium/exam_topics/bioelektrochemie +56 -0
  219. data/lib/studium/exam_topics/biofilms +22 -0
  220. data/lib/studium/exam_topics/bioinformatics +475 -0
  221. data/lib/studium/exam_topics/biological_therapeutics +152 -0
  222. data/lib/studium/exam_topics/biologie +134 -0
  223. data/lib/studium/exam_topics/biomarkers +106 -0
  224. data/lib/studium/exam_topics/biomaterials +46 -0
  225. data/lib/studium/exam_topics/biomembranes +6 -0
  226. data/lib/studium/exam_topics/bionik +65 -0
  227. data/lib/studium/exam_topics/biophysik +34 -0
  228. data/lib/studium/exam_topics/biopolymers +10 -0
  229. data/lib/studium/exam_topics/bioprozesstechnik +139 -0
  230. data/lib/studium/exam_topics/bioressourcenmanagement +78 -0
  231. data/lib/studium/exam_topics/bodenkunde +345 -0
  232. data/lib/studium/exam_topics/bodenmikrobiologie +40 -0
  233. data/lib/studium/exam_topics/cancerbiology +441 -0
  234. data/lib/studium/exam_topics/cell_cultures +154 -0
  235. data/lib/studium/exam_topics/cellbiology +962 -0
  236. data/lib/studium/exam_topics/cellular_transport_and_protein_secretion +27 -0
  237. data/lib/studium/exam_topics/chemische_technologie_anorganischer_stoffe +208 -0
  238. data/lib/studium/exam_topics/chemisches_labor +59 -0
  239. data/lib/studium/exam_topics/chemotaxis_and_motility_in_prokaryotes +74 -0
  240. data/lib/studium/exam_topics/citric_acid_cycle +70 -0
  241. data/lib/studium/exam_topics/clinical_microbiology +486 -0
  242. data/lib/studium/exam_topics/computer_graphics +5 -0
  243. data/lib/studium/exam_topics/computer_science +269 -0
  244. data/lib/studium/exam_topics/crispr +25 -0
  245. data/lib/studium/exam_topics/cyanobacteria +37 -0
  246. data/lib/studium/exam_topics/cytogenetics_and_chromosome_biology +506 -0
  247. data/lib/studium/exam_topics/databases_and_sql +105 -0
  248. data/lib/studium/exam_topics/dna_mutation_and_dna_repair +33 -0
  249. data/lib/studium/exam_topics/dna_replication +53 -0
  250. data/lib/studium/exam_topics/ecogenetics +27 -0
  251. data/lib/studium/exam_topics/ecological_agriculture +12 -0
  252. data/lib/studium/exam_topics/ecology +313 -0
  253. data/lib/studium/exam_topics/economy +210 -0
  254. data/lib/studium/exam_topics/elektronenmikroskopie +353 -0
  255. data/lib/studium/exam_topics/elektrophorese +88 -0
  256. data/lib/studium/exam_topics/elektrotechnik +8 -0
  257. data/lib/studium/exam_topics/elisa +54 -0
  258. data/lib/studium/exam_topics/embryologie_und_entwicklung +541 -0
  259. data/lib/studium/exam_topics/endospores_and_spores +92 -0
  260. data/lib/studium/exam_topics/enzymes_and_cofactors +327 -0
  261. data/lib/studium/exam_topics/epigenetik +177 -0
  262. data/lib/studium/exam_topics/ethik +125 -0
  263. data/lib/studium/exam_topics/evolution_and_evolutionary_genetics +323 -0
  264. data/lib/studium/exam_topics/excel +7 -0
  265. data/lib/studium/exam_topics/fish +19 -0
  266. data/lib/studium/exam_topics/fluorescence_microscopy +7 -0
  267. data/lib/studium/exam_topics/food_microbiology_and_food_biotechnology +17 -0
  268. data/lib/studium/exam_topics/forensik +11 -0
  269. data/lib/studium/exam_topics/forstwirtschaft +52 -0
  270. data/lib/studium/exam_topics/fortgeschrittene_genetik +429 -0
  271. data/lib/studium/exam_topics/fortgeschrittene_gentechnik +189 -0
  272. data/lib/studium/exam_topics/fortgeschrittene_physik +6 -0
  273. data/lib/studium/exam_topics/fungi +78 -0
  274. data/lib/studium/exam_topics/genetische_krankheiten +150 -0
  275. data/lib/studium/exam_topics/genexpression +1008 -0
  276. data/lib/studium/exam_topics/genomics_and_metagenomics +205 -0
  277. data/lib/studium/exam_topics/gentechnik_und_praktische_biochemie +863 -0
  278. data/lib/studium/exam_topics/geochemistry +66 -0
  279. data/lib/studium/exam_topics/geography +5 -0
  280. data/lib/studium/exam_topics/geologie_und_mineralogie +610 -0
  281. data/lib/studium/exam_topics/geschichte +94 -0
  282. data/lib/studium/exam_topics/gluconeogenesis +34 -0
  283. data/lib/studium/exam_topics/glycolysis +95 -0
  284. data/lib/studium/exam_topics/glykomik +42 -0
  285. data/lib/studium/exam_topics/glyoxylatzyklus +23 -0
  286. data/lib/studium/exam_topics/grassland_cultivation +32 -0
  287. data/lib/studium/exam_topics/hormone +122 -0
  288. data/lib/studium/exam_topics/html +7 -0
  289. data/lib/studium/exam_topics/human_ecology +8 -0
  290. data/lib/studium/exam_topics/hygiene +191 -0
  291. data/lib/studium/exam_topics/imaging_and_microscopy +224 -0
  292. data/lib/studium/exam_topics/immunanalytik +88 -0
  293. data/lib/studium/exam_topics/immunologie +888 -0
  294. data/lib/studium/exam_topics/informatik +95 -0
  295. data/lib/studium/exam_topics/innate_immunity +20 -0
  296. data/lib/studium/exam_topics/insekten +30 -0
  297. data/lib/studium/exam_topics/insulin_and_diabetes +55 -0
  298. data/lib/studium/exam_topics/java +440 -0
  299. data/lib/studium/exam_topics/javascript +10 -0
  300. data/lib/studium/exam_topics/klima +6 -0
  301. data/lib/studium/exam_topics/landtechnik +27 -0
  302. data/lib/studium/exam_topics/lebensmittel +206 -0
  303. data/lib/studium/exam_topics/lebensmitteltechnologie +16 -0
  304. data/lib/studium/exam_topics/linux +5 -0
  305. data/lib/studium/exam_topics/lipids +95 -0
  306. data/lib/studium/exam_topics/macroeconomics +39 -0
  307. data/lib/studium/exam_topics/mathematics +175 -0
  308. data/lib/studium/exam_topics/medizin_und_biomedizinische_technik +250 -0
  309. data/lib/studium/exam_topics/medizinische_chemie_und_pharmazie +397 -0
  310. data/lib/studium/exam_topics/messtechnik_und_regeltechnik +104 -0
  311. data/lib/studium/exam_topics/metabolismus +433 -0
  312. data/lib/studium/exam_topics/microbial_ecology +35 -0
  313. data/lib/studium/exam_topics/mikrobielle_lebensgemeinschaften +34 -0
  314. data/lib/studium/exam_topics/mikrobielle_physiologie +153 -0
  315. data/lib/studium/exam_topics/mixed +289 -0
  316. data/lib/studium/exam_topics/molecular_biology_of_plants +235 -0
  317. data/lib/studium/exam_topics/molekulare_medizin +129 -0
  318. data/lib/studium/exam_topics/nanotechnologie +303 -0
  319. data/lib/studium/exam_topics/nature_conservation_and_biodiversity +165 -0
  320. data/lib/studium/exam_topics/naturstoffe +9 -0
  321. data/lib/studium/exam_topics/netzwerke +32 -0
  322. data/lib/studium/exam_topics/neurobiology +266 -0
  323. data/lib/studium/exam_topics/nucleotide_sequencing +30 -0
  324. data/lib/studium/exam_topics/object_oriented_modeling +14 -0
  325. data/lib/studium/exam_topics/obstbau +234 -0
  326. data/lib/studium/exam_topics/organische_chemie +1007 -0
  327. data/lib/studium/exam_topics/organische_chemie_2 +72 -0
  328. data/lib/studium/exam_topics/paleobiology +33 -0
  329. data/lib/studium/exam_topics/parasitic_diseases_and_molecular_infection_biology +335 -0
  330. data/lib/studium/exam_topics/patent_law +55 -0
  331. data/lib/studium/exam_topics/pathologie +713 -0
  332. data/lib/studium/exam_topics/pcr +133 -0
  333. data/lib/studium/exam_topics/peroxisomes_glycosomes_and_lysosomes +54 -0
  334. data/lib/studium/exam_topics/pflanzenanatomie +240 -0
  335. data/lib/studium/exam_topics/pflanzenbau +24 -0
  336. data/lib/studium/exam_topics/pflanzenschutz +35 -0
  337. data/lib/studium/exam_topics/pflanzenwissenschaften +1009 -0
  338. data/lib/studium/exam_topics/pharmaceutical_biotechnology +250 -0
  339. data/lib/studium/exam_topics/physik +338 -0
  340. data/lib/studium/exam_topics/physikalische_chemie +85 -0
  341. data/lib/studium/exam_topics/physiology_and_histology +485 -0
  342. data/lib/studium/exam_topics/phytochemie +33 -0
  343. data/lib/studium/exam_topics/plant_biotechnology +127 -0
  344. data/lib/studium/exam_topics/plant_breeding +64 -0
  345. data/lib/studium/exam_topics/plant_development +50 -0
  346. data/lib/studium/exam_topics/populationsgenetik +136 -0
  347. data/lib/studium/exam_topics/posttranslationale_modifikation_von_proteinen +186 -0
  348. data/lib/studium/exam_topics/projektmanagement +218 -0
  349. data/lib/studium/exam_topics/prokaryote_genetics +470 -0
  350. data/lib/studium/exam_topics/proteomik +38 -0
  351. data/lib/studium/exam_topics/prozesstechnik +95 -0
  352. data/lib/studium/exam_topics/psychologie +9 -0
  353. data/lib/studium/exam_topics/python +350 -0
  354. data/lib/studium/exam_topics/quality_management +241 -0
  355. data/lib/studium/exam_topics/rechtsgrundlagen +115 -0
  356. data/lib/studium/exam_topics/research_topics_in_immunobiology +42 -0
  357. data/lib/studium/exam_topics/rna_and_dna +362 -0
  358. data/lib/studium/exam_topics/rna_seq +11 -0
  359. data/lib/studium/exam_topics/ruby +131 -0
  360. data/lib/studium/exam_topics/ruby_on_rails +62 -0
  361. data/lib/studium/exam_topics/scientific_writing_and_publishing +38 -0
  362. data/lib/studium/exam_topics/semisynthese_von_proteinen_und_nukleotiden +120 -0
  363. data/lib/studium/exam_topics/sexualbiologie +59 -0
  364. data/lib/studium/exam_topics/signal_transduction_and_laser_systems +136 -0
  365. data/lib/studium/exam_topics/splicing_exons_and_introns +57 -0
  366. data/lib/studium/exam_topics/statistik +202 -0
  367. data/lib/studium/exam_topics/stemcells +87 -0
  368. data/lib/studium/exam_topics/structural_bioinformatics +54 -0
  369. data/lib/studium/exam_topics/strukturbiologie +319 -0
  370. data/lib/studium/exam_topics/system_biology_and_synthetic_biology +87 -0
  371. data/lib/studium/exam_topics/systematische_zoologie +430 -0
  372. data/lib/studium/exam_topics/technical_ecology +144 -0
  373. data/lib/studium/exam_topics/technische_chemie +194 -0
  374. data/lib/studium/exam_topics/technische_grundlagen_der_informatik +22 -0
  375. data/lib/studium/exam_topics/technische_mikrobiologie +403 -0
  376. data/lib/studium/exam_topics/technisches_zeichnen +5 -0
  377. data/lib/studium/exam_topics/the_bacterial_cell_wall +86 -0
  378. data/lib/studium/exam_topics/the_c_plus_plus_programming_language +488 -0
  379. data/lib/studium/exam_topics/the_c_programming_language +128 -0
  380. data/lib/studium/exam_topics/the_cellcycle +65 -0
  381. data/lib/studium/exam_topics/the_european_union +119 -0
  382. data/lib/studium/exam_topics/the_interferon_system +32 -0
  383. data/lib/studium/exam_topics/the_microbiome +163 -0
  384. data/lib/studium/exam_topics/the_universe +6 -0
  385. data/lib/studium/exam_topics/theoretische_chemie +5 -0
  386. data/lib/studium/exam_topics/theoretische_informatik +157 -0
  387. data/lib/studium/exam_topics/tierzucht +94 -0
  388. data/lib/studium/exam_topics/toxikologie +403 -0
  389. data/lib/studium/exam_topics/transcription +26 -0
  390. data/lib/studium/exam_topics/translation_ribosomes_and_translational_control +138 -0
  391. data/lib/studium/exam_topics/umweltbiotechnologie +58 -0
  392. data/lib/studium/exam_topics/umweltchemie +233 -0
  393. data/lib/studium/exam_topics/urbanism_and_traffic +19 -0
  394. data/lib/studium/exam_topics/vaccines_and_vaccination +234 -0
  395. data/lib/studium/exam_topics/vectors_and_gene_therapy +237 -0
  396. data/lib/studium/exam_topics/verfahrenstechnik +32 -0
  397. data/lib/studium/exam_topics/veterinary_medicine +10 -0
  398. data/lib/studium/exam_topics/vitamine +19 -0
  399. data/lib/studium/exam_topics/wasserkunde +141 -0
  400. data/lib/studium/exam_topics/weinbau +59 -0
  401. data/lib/studium/exam_topics/wissenschaft +17 -0
  402. data/lib/studium/exam_topics/yeast +97 -0
  403. data/lib/studium/exam_topics/zoologie +329 -0
  404. data/lib/studium/exams/afterburn.rb +264 -0
  405. data/lib/studium/exams/ask_exam_from_the_upcoming_exams_pool.rb +158 -0
  406. data/lib/studium/exams/ask_exam_question/answer.rb +106 -0
  407. data/lib/studium/exams/ask_exam_question/ask_exam_question.rb +135 -0
  408. data/lib/studium/exams/ask_exam_question/constants.rb +74 -0
  409. data/lib/studium/exams/ask_exam_question/delay.rb +101 -0
  410. data/lib/studium/exams/ask_exam_question/help.rb +72 -0
  411. data/lib/studium/exams/ask_exam_question/initialize.rb +70 -0
  412. data/lib/studium/exams/ask_exam_question/menu.rb +382 -0
  413. data/lib/studium/exams/ask_exam_question/misc.rb +938 -0
  414. data/lib/studium/exams/ask_exam_question/question.rb +77 -0
  415. data/lib/studium/exams/ask_exam_question/reset.rb +103 -0
  416. data/lib/studium/exams/ask_exam_question/run.rb +49 -0
  417. data/lib/studium/exams/ask_exam_topic_question.rb +120 -0
  418. data/lib/studium/exams/ask_question_from_alias.rb +151 -0
  419. data/lib/studium/exams/ask_question_from_any_of_the_still_missing_lectures.rb +133 -0
  420. data/lib/studium/exams/ask_question_from_grouped_themes.rb +141 -0
  421. data/lib/studium/exams/ask_question_from_last_topic.rb +93 -0
  422. data/lib/studium/exams/ask_random_question.rb +190 -0
  423. data/lib/studium/exams/autoinclude.rb +7 -0
  424. data/lib/studium/exams/class.rb +127 -0
  425. data/lib/studium/exams/csv/create_csv_passed_exams_file.rb +225 -0
  426. data/lib/studium/exams/cycle.rb +283 -0
  427. data/lib/studium/exams/dataset.rb +90 -0
  428. data/lib/studium/exams/exam_registration_at/constants.rb +49 -0
  429. data/lib/studium/exams/exam_registration_at/exam_registration_at.rb +254 -0
  430. data/lib/studium/exams/exam_registration_at/help.rb +46 -0
  431. data/lib/studium/exams/exam_registration_at/menu.rb +81 -0
  432. data/lib/studium/exams/exam_registration_at/report.rb +108 -0
  433. data/lib/studium/exams/exam_registration_at/reset.rb +49 -0
  434. data/lib/studium/exams/exam_statistics_from_this_file/exam_statistics_from_this_file.rb +127 -0
  435. data/lib/studium/exams/exam_topics.rb +202 -0
  436. data/lib/studium/exams/exams.rb +18 -0
  437. data/lib/studium/exams/exams_per_month/colours.rb +81 -0
  438. data/lib/studium/exams/exams_per_month/constants.rb +69 -0
  439. data/lib/studium/exams/exams_per_month/dataset.rb +64 -0
  440. data/lib/studium/exams/exams_per_month/exams_per_month.rb +291 -0
  441. data/lib/studium/exams/exams_per_month/help.rb +72 -0
  442. data/lib/studium/exams/exams_per_month/initialize.rb +39 -0
  443. data/lib/studium/exams/exams_per_month/menu.rb +258 -0
  444. data/lib/studium/exams/exams_per_month/open.rb +139 -0
  445. data/lib/studium/exams/exams_per_month/requires.rb +8 -0
  446. data/lib/studium/exams/exams_per_month/reset.rb +115 -0
  447. data/lib/studium/exams/exams_per_month/run.rb +18 -0
  448. data/lib/studium/exams/exams_per_month/sanitize.rb +129 -0
  449. data/lib/studium/exams/exams_per_month/show_and_report.rb +1281 -0
  450. data/lib/studium/exams/exams_this_week.rb +179 -0
  451. data/lib/studium/exams/fix_exam_dates.rb +129 -0
  452. data/lib/studium/exams/last_exams/last_exams.rb +381 -0
  453. data/lib/studium/exams/lectures_without_exam_entry.rb +145 -0
  454. data/lib/studium/exams/mandatory_continuous_assessment/compare.rb +144 -0
  455. data/lib/studium/exams/mandatory_continuous_assessment/constants.rb +18 -0
  456. data/lib/studium/exams/mandatory_continuous_assessment/help.rb +92 -0
  457. data/lib/studium/exams/mandatory_continuous_assessment/initialize.rb +46 -0
  458. data/lib/studium/exams/mandatory_continuous_assessment/mandatory_continuous_assessment.rb +1115 -0
  459. data/lib/studium/exams/mandatory_continuous_assessment/menu.rb +114 -0
  460. data/lib/studium/exams/mandatory_continuous_assessment/misc.rb +61 -0
  461. data/lib/studium/exams/mandatory_continuous_assessment/reset.rb +85 -0
  462. data/lib/studium/exams/mandatory_continuous_assessment/run.rb +33 -0
  463. data/lib/studium/exams/mandatory_continuous_assessment/set_title_of_the_curriculum.rb +181 -0
  464. data/lib/studium/exams/mandatory_continuous_assessment/show_and_report.rb +147 -0
  465. data/lib/studium/exams/move_the_last_exam_question_to_the_top_of_the_file/move_the_last_exam_question_to_the_top_of_the_file.rb +119 -0
  466. data/lib/studium/exams/n_exams_in_these_topics.rb +408 -0
  467. data/lib/studium/exams/new_questions_per_year.rb +153 -0
  468. data/lib/studium/exams/next_exam.rb +111 -0
  469. data/lib/studium/exams/next_exams.rb +385 -0
  470. data/lib/studium/exams/open_exam_associated_url.rb +158 -0
  471. data/lib/studium/exams/open_last_exam_question_asked_file/constants.rb +20 -0
  472. data/lib/studium/exams/open_last_exam_question_asked_file/initialize.rb +29 -0
  473. data/lib/studium/exams/open_last_exam_question_asked_file/open_last_exam_question_asked_file.rb +112 -0
  474. data/lib/studium/exams/passed_exams/passed_exams.rb +46 -0
  475. data/lib/studium/exams/pruefung.rb +288 -0
  476. data/lib/studium/exams/push_solved_questions_on_top.rb +188 -0
  477. data/lib/studium/exams/question_answer/question_answer.rb +842 -0
  478. data/lib/studium/exams/questions_solved_from_day_to_day.rb +353 -0
  479. data/lib/studium/exams/repeat_last_question.rb +78 -0
  480. data/lib/studium/exams/show_all_passed_exams_of_this_university.rb +260 -0
  481. data/lib/studium/exams/show_backlog_of_exams.rb +125 -0
  482. data/lib/studium/exams/show_next_exams_for.rb +141 -0
  483. data/lib/studium/exams/show_themes/constants.rb +33 -0
  484. data/lib/studium/exams/show_themes/menu.rb +61 -0
  485. data/lib/studium/exams/show_themes/misc.rb +536 -0
  486. data/lib/studium/exams/show_themes/reset.rb +64 -0
  487. data/lib/studium/exams/show_themes/show_themes.rb +27 -0
  488. data/lib/studium/exams/show_upcoming_exams/consider_autogenerating_exam_aliases.rb +170 -0
  489. data/lib/studium/exams/show_upcoming_exams/constants.rb +82 -0
  490. data/lib/studium/exams/show_upcoming_exams/help.rb +33 -0
  491. data/lib/studium/exams/show_upcoming_exams/initialize.rb +71 -0
  492. data/lib/studium/exams/show_upcoming_exams/menu.rb +53 -0
  493. data/lib/studium/exams/show_upcoming_exams/report.rb +195 -0
  494. data/lib/studium/exams/show_upcoming_exams/reset.rb +38 -0
  495. data/lib/studium/exams/show_upcoming_exams/run.rb +20 -0
  496. data/lib/studium/exams/show_upcoming_exams/show_upcoming_exams.rb +494 -0
  497. data/lib/studium/exams/solve_all_questions_from_this_topic.rb +122 -0
  498. data/lib/studium/exams/solved/constants.rb +37 -0
  499. data/lib/studium/exams/solved/help.rb +23 -0
  500. data/lib/studium/exams/solved/menu.rb +35 -0
  501. data/lib/studium/exams/solved/reset.rb +30 -0
  502. data/lib/studium/exams/solved/solved.rb +306 -0
  503. data/lib/studium/exams/steop.rb +99 -0
  504. data/lib/studium/exams/unsolve_all_questions_from_this_topic.rb +170 -0
  505. data/lib/studium/exams/upcoming_exams/constants.rb +20 -0
  506. data/lib/studium/exams/upcoming_exams/help.rb +38 -0
  507. data/lib/studium/exams/upcoming_exams/initialize.rb +27 -0
  508. data/lib/studium/exams/upcoming_exams/menu.rb +79 -0
  509. data/lib/studium/exams/upcoming_exams/misc.rb +360 -0
  510. data/lib/studium/exams/upcoming_exams/reset.rb +37 -0
  511. data/lib/studium/exams/upcoming_exams/run.rb +25 -0
  512. data/lib/studium/exams/upcoming_exams/upcoming_exams.rb +32 -0
  513. data/lib/studium/exams/upcoming_exams_at_the_boku/constants.rb +23 -0
  514. data/lib/studium/exams/upcoming_exams_at_the_boku/html.rb +64 -0
  515. data/lib/studium/exams/upcoming_exams_at_the_boku/upcoming_exams_at_the_boku.rb +194 -0
  516. data/lib/studium/exams/upcoming_exams_dataset.rb +251 -0
  517. data/lib/studium/exams/upload_exam_topics.rb +357 -0
  518. data/lib/studium/flashcards/flashcards.rb +95 -0
  519. data/lib/studium/graphviz/README.md +4 -0
  520. data/lib/studium/graphviz/bachelor_vector_based_strategies.dot +160 -0
  521. data/lib/studium/graphviz/master_vector_based_strategies.dot +46 -0
  522. data/lib/studium/gui/gtk2/constants.rb +52 -0
  523. data/lib/studium/gui/gtk2/exam_card.rb +199 -0
  524. data/lib/studium/gui/gtk2/flip_card.rb +8 -0
  525. data/lib/studium/gui/gtk2/frame.rb +319 -0
  526. data/lib/studium/gui/gtk2/main_box.rb +188 -0
  527. data/lib/studium/gui/gtk2/misc.rb +99 -0
  528. data/lib/studium/gui/gtk2/module_methods.rb +58 -0
  529. data/lib/studium/gui/gtk2/require_gtk_files.rb +25 -0
  530. data/lib/studium/gui/gtk2/run.rb +47 -0
  531. data/lib/studium/gui/gtk2/show_curriculum_entries.rb +186 -0
  532. data/lib/studium/gui/gtk2/simple_widget_question_answer.rb +185 -0
  533. data/lib/studium/gui/gtk2/vbox.rb +748 -0
  534. data/lib/studium/gui/gtk3/README.md +1 -0
  535. data/lib/studium/gui/gtk3/studium_panel.rb +54 -0
  536. data/lib/studium/lectures/show_lectures_on_the_commandline/constants.rb +22 -0
  537. data/lib/studium/lectures/show_lectures_on_the_commandline/determine.rb +630 -0
  538. data/lib/studium/lectures/show_lectures_on_the_commandline/help.rb +44 -0
  539. data/lib/studium/lectures/show_lectures_on_the_commandline/html.rb +599 -0
  540. data/lib/studium/lectures/show_lectures_on_the_commandline/initialize.rb +53 -0
  541. data/lib/studium/lectures/show_lectures_on_the_commandline/konsole.rb +32 -0
  542. data/lib/studium/lectures/show_lectures_on_the_commandline/menu.rb +466 -0
  543. data/lib/studium/lectures/show_lectures_on_the_commandline/misc.rb +598 -0
  544. data/lib/studium/lectures/show_lectures_on_the_commandline/reset.rb +120 -0
  545. data/lib/studium/lectures/show_lectures_on_the_commandline/run.rb +44 -0
  546. data/lib/studium/lectures/show_lectures_on_the_commandline/show.rb +106 -0
  547. data/lib/studium/lectures/show_lectures_on_the_commandline/show_lectures_on_the_commandline.rb +491 -0
  548. data/lib/studium/lectures/show_lectures_on_the_commandline/sorted_individual_curricula.rb +117 -0
  549. data/lib/studium/logging/README.md +2 -0
  550. data/lib/studium/logging/ensure_that_the_log_directory_exists.rb +47 -0
  551. data/lib/studium/logging/html_log_directory.rb +35 -0
  552. data/lib/studium/logging/log_directory.rb +100 -0
  553. data/lib/studium/logging/store_last_question_asked_into_file.rb +138 -0
  554. data/lib/studium/misc/return_remote_homepage_of_this_lecture.rb +8661 -0
  555. data/lib/studium/misc/return_remote_moodle_link_of_this_lecture.rb +1343 -0
  556. data/lib/studium/parsers/README.md +2 -0
  557. data/lib/studium/parsers/custom_exam_results_parser.rb +208 -0
  558. data/lib/studium/parsers/parse_lva_dates.rb +190 -0
  559. data/lib/studium/pdf/README.md +2 -0
  560. data/lib/studium/pdf/create_pdf_file_for_this_exam_topic.rb +277 -0
  561. data/lib/studium/project/project.rb +80 -0
  562. data/lib/studium/requires/common_popular_requires.rb +37 -0
  563. data/lib/studium/requires/commonly_used_requires.rb +13 -0
  564. data/lib/studium/requires/require_class_exams_solved.rb +7 -0
  565. data/lib/studium/requires/require_ects_scripts.rb +25 -0
  566. data/lib/studium/requires/require_encoding.rb +7 -0
  567. data/lib/studium/requires/require_the_exam_scripts.rb +37 -0
  568. data/lib/studium/requires/require_the_studium_constants.rb +14 -0
  569. data/lib/studium/requires/require_the_studium_project.rb +47 -0
  570. data/lib/studium/requires/require_the_utility_scripts.rb +26 -0
  571. data/lib/studium/requires/require_toplevel_methods.rb +26 -0
  572. data/lib/studium/requires/require_upcoming_exams.rb +7 -0
  573. data/lib/studium/requires/require_yaml.rb +7 -0
  574. data/lib/studium/requires/with_GUI.rb +12 -0
  575. data/lib/studium/requires/www_mode.rb +17 -0
  576. data/lib/studium/sinatra/app.rb +225 -0
  577. data/lib/studium/sinatra/misc.rb +111 -0
  578. data/lib/studium/statistics/README.md +4 -0
  579. data/lib/studium/statistics/best_exam_months.rb +81 -0
  580. data/lib/studium/statistics/curriculum_comparer.rb +344 -0
  581. data/lib/studium/statistics/determine_exam_statistics_from_this_file.rb +140 -0
  582. data/lib/studium/statistics/max_stats.rb +171 -0
  583. data/lib/studium/statistics/report_how_many_ects_points_per_curriculum_were_completed.rb +172 -0
  584. data/lib/studium/statistics/report_how_many_exam_questions_were_answered.rb +478 -0
  585. data/lib/studium/statistics/show_exam_statistics.rb +60 -0
  586. data/lib/studium/statistics/top_stats.rb +122 -0
  587. data/lib/studium/steop/README.md +4 -0
  588. data/lib/studium/steop/show_all_steop_lectures.rb +101 -0
  589. data/lib/studium/steop/steop_lectures_in_this_curriculum.rb +291 -0
  590. data/lib/studium/steop/steop_lva_dates.rb +102 -0
  591. data/lib/studium/toplevel_methods/all_passed_exams.rb +35 -0
  592. data/lib/studium/toplevel_methods/already_solved_this_lecture.rb +98 -0
  593. data/lib/studium/toplevel_methods/available_curricula.rb +71 -0
  594. data/lib/studium/toplevel_methods/available_topics.rb +145 -0
  595. data/lib/studium/toplevel_methods/average_grade.rb +141 -0
  596. data/lib/studium/toplevel_methods/calculate_pr/303/274fungsimmanente_lectures_from_this_file.rb +55 -0
  597. data/lib/studium/toplevel_methods/cd.rb +25 -0
  598. data/lib/studium/toplevel_methods/cd_stud.rb +134 -0
  599. data/lib/studium/toplevel_methods/copy_the_last_backup_of_file_lecture_information.rb +27 -0
  600. data/lib/studium/toplevel_methods/determine_local_directory_of_this_lecture.rb +72 -0
  601. data/lib/studium/toplevel_methods/does_this_course_require_mandatory_presence.rb +44 -0
  602. data/lib/studium/toplevel_methods/download.rb +157 -0
  603. data/lib/studium/toplevel_methods/e.rb +16 -0
  604. data/lib/studium/toplevel_methods/ects_from_lectures.rb +251 -0
  605. data/lib/studium/toplevel_methods/editor.rb +64 -0
  606. data/lib/studium/toplevel_methods/esystem.rb +22 -0
  607. data/lib/studium/toplevel_methods/exams_dataset.rb +45 -0
  608. data/lib/studium/toplevel_methods/filter_away_invalid_questions.rb +77 -0
  609. data/lib/studium/toplevel_methods/find_exam_topic_and_exam_title.rb +2771 -0
  610. data/lib/studium/toplevel_methods/from_curriculum_id_to_university.rb +47 -0
  611. data/lib/studium/toplevel_methods/frozen.rb +32 -0
  612. data/lib/studium/toplevel_methods/handle_archive_of_the_exam_questions.rb +136 -0
  613. data/lib/studium/toplevel_methods/has_a_bachelor_or_master_curriculum.rb +84 -0
  614. data/lib/studium/toplevel_methods/has_this_lecture_been_already_passed_but_the_id_was_changed_lateron.rb +41 -0
  615. data/lib/studium/toplevel_methods/has_this_module_been_completed.rb +206 -0
  616. data/lib/studium/toplevel_methods/install_the_project_on_the_given_hostsystem.rb +32 -0
  617. data/lib/studium/toplevel_methods/is_on_roebe.rb +26 -0
  618. data/lib/studium/toplevel_methods/is_this_exam_topic_included.rb +46 -0
  619. data/lib/studium/toplevel_methods/is_this_homepage_registered.rb +31 -0
  620. data/lib/studium/toplevel_methods/is_this_lecture_a_practical_course.rb +100 -0
  621. data/lib/studium/toplevel_methods/is_this_lecture_part_of_the_vector_curriculum.rb +110 -0
  622. data/lib/studium/toplevel_methods/is_this_lecture_registered_in_upcoming_exams.rb +43 -0
  623. data/lib/studium/toplevel_methods/lecture_information.rb +101 -0
  624. data/lib/studium/toplevel_methods/lectures_without_attribution_to_any_curriculum.rb +42 -0
  625. data/lib/studium/toplevel_methods/lva_numbers.rb +339 -0
  626. data/lib/studium/toplevel_methods/main_dataset.rb +73 -0
  627. data/lib/studium/toplevel_methods/map_curriculum_number_to_curriculum_name.rb +97 -0
  628. data/lib/studium/toplevel_methods/methods_related_to_curricula.rb +47 -0
  629. data/lib/studium/toplevel_methods/methods_related_to_files.rb +197 -0
  630. data/lib/studium/toplevel_methods/mkdir.rb +25 -0
  631. data/lib/studium/toplevel_methods/n_questions_available.rb +128 -0
  632. data/lib/studium/toplevel_methods/n_topics_available.rb +63 -0
  633. data/lib/studium/toplevel_methods/name_of_this_curriculum.rb +38 -0
  634. data/lib/studium/toplevel_methods/names_of_all_solved_exams.rb +71 -0
  635. data/lib/studium/toplevel_methods/note_down_the_start_time_and_how_many_exams_have_been_already_solved.rb +70 -0
  636. data/lib/studium/toplevel_methods/opnn.rb +25 -0
  637. data/lib/studium/toplevel_methods/passed_this_exam_on.rb +105 -0
  638. data/lib/studium/toplevel_methods/pristine.rb +69 -0
  639. data/lib/studium/toplevel_methods/read_dataset_from_a_curriculum_file.rb +133 -0
  640. data/lib/studium/toplevel_methods/read_delay_between_questions_from_file.rb +34 -0
  641. data/lib/studium/toplevel_methods/regexes.rb +90 -0
  642. data/lib/studium/toplevel_methods/registered_for_this_exam.rb +62 -0
  643. data/lib/studium/toplevel_methods/remote_url.rb +57 -0
  644. data/lib/studium/toplevel_methods/remove_comments.rb +26 -0
  645. data/lib/studium/toplevel_methods/remove_exam_topics_that_were_already_answered.rb +27 -0
  646. data/lib/studium/toplevel_methods/remove_tags.rb +26 -0
  647. data/lib/studium/toplevel_methods/report.rb +143 -0
  648. data/lib/studium/toplevel_methods/report_all_lectures_matching_this_lecture_type.rb +45 -0
  649. data/lib/studium/toplevel_methods/report_attributed_lectures_to_universities.rb +30 -0
  650. data/lib/studium/toplevel_methods/report_n_ects_per_university.rb +63 -0
  651. data/lib/studium/toplevel_methods/report_n_entries_in_the_file_lecture_information.rb +36 -0
  652. data/lib/studium/toplevel_methods/report_nquestions_of.rb +96 -0
  653. data/lib/studium/toplevel_methods/report_solved_topics.rb +56 -0
  654. data/lib/studium/toplevel_methods/return_all_exams_on_this_day.rb +66 -0
  655. data/lib/studium/toplevel_methods/return_curriculum_of_this_lva_number.rb +82 -0
  656. data/lib/studium/toplevel_methods/return_dataset_for_this_exam_topic.rb +41 -0
  657. data/lib/studium/toplevel_methods/return_dataset_from_this_curriculum_file.rb +150 -0
  658. data/lib/studium/toplevel_methods/return_directory_for.rb +66 -0
  659. data/lib/studium/toplevel_methods/return_div_timetable_of_upcoming_exams.rb +489 -0
  660. data/lib/studium/toplevel_methods/return_ects_from_this_lecture_stored_in_the_file_lecture_information.rb +197 -0
  661. data/lib/studium/toplevel_methods/return_hash_of_already_solved_lectures.rb +41 -0
  662. data/lib/studium/toplevel_methods/return_local_path_of_this_pwdstud.rb +59 -0
  663. data/lib/studium/toplevel_methods/return_lva_number_of_this_lecture.rb +72 -0
  664. data/lib/studium/toplevel_methods/return_n_percent_solved_from_this_topic.rb +75 -0
  665. data/lib/studium/toplevel_methods/return_n_questions_were_answered_for_this_topic.rb +37 -0
  666. data/lib/studium/toplevel_methods/return_proper_university_image.rb +80 -0
  667. data/lib/studium/toplevel_methods/return_question_answer_string_from_this_topic.rb +56 -0
  668. data/lib/studium/toplevel_methods/return_sanitized_dataset_from_the_file_lecture_information.rb +126 -0
  669. data/lib/studium/toplevel_methods/return_theme_of_the_next_upcoming_exam.rb +38 -0
  670. data/lib/studium/toplevel_methods/return_this_curriculum_as_a_string.rb +26 -0
  671. data/lib/studium/toplevel_methods/return_title_from_this_curriculum_file.rb +91 -0
  672. data/lib/studium/toplevel_methods/rinstall2.rb +34 -0
  673. data/lib/studium/toplevel_methods/rti_conflict.rb +29 -0
  674. data/lib/studium/toplevel_methods/runmode.rb +86 -0
  675. data/lib/studium/toplevel_methods/sanitize_this_theme_topic.rb +128 -0
  676. data/lib/studium/toplevel_methods/sanitized_dataset_from_file_passed_exams_per_month.rb +52 -0
  677. data/lib/studium/toplevel_methods/save_all_registered_upcoming_exams.rb +62 -0
  678. data/lib/studium/toplevel_methods/save_file.rb +81 -0
  679. data/lib/studium/toplevel_methods/save_this_delay_between_questions_and_answers.rb +43 -0
  680. data/lib/studium/toplevel_methods/set_last_file_for_exam_questions.rb +64 -0
  681. data/lib/studium/toplevel_methods/set_this_cd_alias_to.rb +86 -0
  682. data/lib/studium/toplevel_methods/show_passed_ects_in_the_individual_bachelor_and_master_curricula.rb +81 -0
  683. data/lib/studium/toplevel_methods/show_passed_exams_having_this_grade.rb +27 -0
  684. data/lib/studium/toplevel_methods/spacer.rb +18 -0
  685. data/lib/studium/toplevel_methods/time.rb +220 -0
  686. data/lib/studium/toplevel_methods/total_ects_points_passed.rb +72 -0
  687. data/lib/studium/toplevel_methods/try_to_guess_the_most_likely_lva_id.rb +57 -0
  688. data/lib/studium/toplevel_methods/try_to_return_the_expanded_name_of_this_lecture.rb +63 -0
  689. data/lib/studium/toplevel_methods/unfinished.rb +51 -0
  690. data/lib/studium/toplevel_methods/url.rb +74 -0
  691. data/lib/studium/toplevel_methods/verbose_truth.rb +21 -0
  692. data/lib/studium/toplevel_methods/when_was_this_lecture_passed.rb +53 -0
  693. data/lib/studium/toplevel_methods/yes_or_no_ja_oder_nein.rb +33 -0
  694. data/lib/studium/tu_vienna/README.md +6 -0
  695. data/lib/studium/tu_vienna/tu_ferien.rb +38 -0
  696. data/lib/studium/tu_vienna/tu_/303/266ffnungszeiten.rb +29 -0
  697. data/lib/studium/utility_scripts/attribute_lecture_to_curriculum/attribute_boku_lecture_to_curriculum.rb +389 -0
  698. data/lib/studium/utility_scripts/attribute_lecture_to_curriculum/attribute_lecture_to_curriculum.rb +236 -0
  699. data/lib/studium/utility_scripts/attribute_lectures_to_university/attribute_lectures_to_university.rb +385 -0
  700. data/lib/studium/utility_scripts/audio_stats.rb +176 -0
  701. data/lib/studium/utility_scripts/auto_stud/auto_stud.rb +253 -0
  702. data/lib/studium/utility_scripts/auto_stud/constants.rb +23 -0
  703. data/lib/studium/utility_scripts/auto_stud/initialize.rb +23 -0
  704. data/lib/studium/utility_scripts/auto_stud/misc.rb +18 -0
  705. data/lib/studium/utility_scripts/autopurge_this_lecture_date.rb +101 -0
  706. data/lib/studium/utility_scripts/calendar/README.md +2 -0
  707. data/lib/studium/utility_scripts/calendar/calendar.rb +244 -0
  708. data/lib/studium/utility_scripts/calendar/misc.rb +35 -0
  709. data/lib/studium/utility_scripts/check_description_of_these_lectures.rb +224 -0
  710. data/lib/studium/utility_scripts/clean_up_lecture_date.rb +151 -0
  711. data/lib/studium/utility_scripts/current_lectures_belonging_to_both_bachelor_and_master_curriculum.rb +113 -0
  712. data/lib/studium/utility_scripts/currently_participating_in_these_lectures.rb +104 -0
  713. data/lib/studium/utility_scripts/display_lecture_url.rb +117 -0
  714. data/lib/studium/utility_scripts/expand_time_range.rb +422 -0
  715. data/lib/studium/utility_scripts/find_duplicate_lectures.rb +121 -0
  716. data/lib/studium/utility_scripts/finished_exams_at_this_university.rb +94 -0
  717. data/lib/studium/utility_scripts/foreign_language_percentage/constants.rb +28 -0
  718. data/lib/studium/utility_scripts/foreign_language_percentage/foreign_language_percentage.rb +142 -0
  719. data/lib/studium/utility_scripts/foreign_language_percentage/help.rb +29 -0
  720. data/lib/studium/utility_scripts/foreign_language_percentage/initialize.rb +25 -0
  721. data/lib/studium/utility_scripts/foreign_language_percentage/menu.rb +141 -0
  722. data/lib/studium/utility_scripts/foreign_language_percentage/report.rb +62 -0
  723. data/lib/studium/utility_scripts/foreign_language_percentage/reset.rb +57 -0
  724. data/lib/studium/utility_scripts/foreign_language_percentage/run.rb +19 -0
  725. data/lib/studium/utility_scripts/generate_spreadsheet.rb +349 -0
  726. data/lib/studium/utility_scripts/holidays.rb +143 -0
  727. data/lib/studium/utility_scripts/lecture_downloader.rb +115 -0
  728. data/lib/studium/utility_scripts/lectures_attributed_to_universities.rb +344 -0
  729. data/lib/studium/utility_scripts/lva_nummer.rb +440 -0
  730. data/lib/studium/utility_scripts/mandatory_lectures_in_this_month.rb +321 -0
  731. data/lib/studium/utility_scripts/name_of_this_lva_id.rb +110 -0
  732. data/lib/studium/utility_scripts/new_stud.rb +332 -0
  733. data/lib/studium/utility_scripts/next_week.rb +111 -0
  734. data/lib/studium/utility_scripts/passed_ects_per_year.rb +172 -0
  735. data/lib/studium/utility_scripts/passed_pr/303/274fungsimmanente_courses/passed_pr/303/274fungsimmanente_courses.rb +181 -0
  736. data/lib/studium/utility_scripts/prepare_individual_curriculum.rb +182 -0
  737. data/lib/studium/utility_scripts/priority.rb +126 -0
  738. data/lib/studium/utility_scripts/priority_points.rb +263 -0
  739. data/lib/studium/utility_scripts/publish_my_exams.rb +174 -0
  740. data/lib/studium/utility_scripts/regexes/README.md +2 -0
  741. data/lib/studium/utility_scripts/regexes/generate_regex.rb +278 -0
  742. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_available_moodle_links.rb +54 -0
  743. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_registered_lectures.rb +48 -0
  744. data/lib/studium/utility_scripts/report_outdated_timetable_entries.rb +148 -0
  745. data/lib/studium/utility_scripts/report_total_amount_of_questions_and_answers_for.rb +120 -0
  746. data/lib/studium/utility_scripts/report_whether_this_lecture_is_registered_in_the_file_lecture_information.rb +125 -0
  747. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/individual_resolve_practical_courses_date_conflicts.rb +257 -0
  748. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/resolve_practical_courses_date_conflicts.rb +273 -0
  749. data/lib/studium/utility_scripts/scrape_remote_university_url.rb +146 -0
  750. data/lib/studium/utility_scripts/semester_schedule_creator/semester_container.rb +142 -0
  751. data/lib/studium/utility_scripts/semester_schedule_creator/semester_schedule_creator.rb +381 -0
  752. data/lib/studium/utility_scripts/semesterplaner.rb +289 -0
  753. data/lib/studium/utility_scripts/show_all_lectures.rb +403 -0
  754. data/lib/studium/utility_scripts/show_all_passed_master_lectures.rb +127 -0
  755. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/constants.rb +56 -0
  756. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/do_report_the_upcoming_exams.rb +60 -0
  757. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/help.rb +49 -0
  758. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/initialize.rb +28 -0
  759. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/menu.rb +54 -0
  760. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/misc.rb +214 -0
  761. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/report.rb +118 -0
  762. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/reset.rb +80 -0
  763. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/run.rb +22 -0
  764. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/show_conflicting_lva_lectures.rb +651 -0
  765. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/constants.rb +28 -0
  766. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/menu.rb +62 -0
  767. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/reset.rb +36 -0
  768. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/run.rb +35 -0
  769. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/show_descriptions_of_lectures_belonging_to_this_module.rb +145 -0
  770. data/lib/studium/utility_scripts/show_lecturers/show_lecturers.rb +145 -0
  771. data/lib/studium/utility_scripts/show_lectures/constants.rb +16 -0
  772. data/lib/studium/utility_scripts/show_lectures/help.rb +34 -0
  773. data/lib/studium/utility_scripts/show_lectures/initialize.rb +23 -0
  774. data/lib/studium/utility_scripts/show_lectures/menu.rb +106 -0
  775. data/lib/studium/utility_scripts/show_lectures/misc.rb +582 -0
  776. data/lib/studium/utility_scripts/show_lectures/reset.rb +92 -0
  777. data/lib/studium/utility_scripts/show_lectures/run.rb +27 -0
  778. data/lib/studium/utility_scripts/show_lectures/show_lectures.rb +48 -0
  779. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_language.rb +129 -0
  780. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_theme.rb +100 -0
  781. data/lib/studium/utility_scripts/show_lectures_on_this_day.rb +154 -0
  782. data/lib/studium/utility_scripts/show_lva_dates_of_this_lecture.rb +177 -0
  783. data/lib/studium/utility_scripts/show_outdated_lva_dates.rb +218 -0
  784. data/lib/studium/utility_scripts/show_solved_english_lectures.rb +139 -0
  785. data/lib/studium/utility_scripts/show_the_associated_lectures_for_the_individual_curriculum.rb +285 -0
  786. data/lib/studium/utility_scripts/studienkennzahl.rb +109 -0
  787. data/lib/studium/utility_scripts/studium_skeleton.rb +220 -0
  788. data/lib/studium/utility_scripts/stundenplan.rb +603 -0
  789. data/lib/studium/utility_scripts/sync_studium_relevant_entries_one_level_downwards.rb +221 -0
  790. data/lib/studium/utility_scripts/ufind.rb +101 -0
  791. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/constants.rb +31 -0
  792. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/run.rb +20 -0
  793. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/upcoming_mandatory_presence_courses.rb +179 -0
  794. data/lib/studium/utility_scripts/vorbesprechungen.rb +293 -0
  795. data/lib/studium/utility_scripts/week_parser/constants.rb +28 -0
  796. data/lib/studium/utility_scripts/week_parser/help.rb +32 -0
  797. data/lib/studium/utility_scripts/week_parser/menu.rb +56 -0
  798. data/lib/studium/utility_scripts/week_parser/misc.rb +51 -0
  799. data/lib/studium/utility_scripts/week_parser/reset.rb +55 -0
  800. data/lib/studium/utility_scripts/week_parser/run.rb +18 -0
  801. data/lib/studium/utility_scripts/week_parser/show.rb +242 -0
  802. data/lib/studium/utility_scripts/week_parser/week_parser.rb +362 -0
  803. data/lib/studium/utility_scripts/weekday_parser.rb +159 -0
  804. data/lib/studium/utility_scripts/weekly_schedule.rb +209 -0
  805. data/lib/studium/utility_scripts/wochenplanung.rb +278 -0
  806. data/lib/studium/version/version.rb +46 -0
  807. data/lib/studium/www/curricula_displayer.cgi +170 -0
  808. data/lib/studium/www/curriculum_displayer.rb +162 -0
  809. data/lib/studium/www/exams.cgi +50 -0
  810. data/lib/studium/www/statistics.cgi +55 -0
  811. data/lib/studium/yaml/allowed_themes_for_exams.yml +307 -0
  812. data/lib/studium/yaml/array_allowed_entries_for_the_file_lecture_information.yml +68 -0
  813. data/lib/studium/yaml/backlog_of_exams.yml +35 -0
  814. data/lib/studium/yaml/current_exams.yml +19 -0
  815. data/lib/studium/yaml/curricula.yml +530 -0
  816. data/lib/studium/yaml/curricula/README.md +3 -0
  817. data/lib/studium/yaml/curricula/bachelor_agrarwissenschaften_033255.yml +130 -0
  818. data/lib/studium/yaml/curricula/bachelor_biologie_basisblock_033630.yml +65 -0
  819. data/lib/studium/yaml/curricula/bachelor_biologie_botanik_033630.yml +84 -0
  820. data/lib/studium/yaml/curricula/bachelor_biologie_ecology_033630.yml +74 -0
  821. data/lib/studium/yaml/curricula/bachelor_biologie_mikrobiologie_und_genetik_033630.yml +120 -0
  822. data/lib/studium/yaml/curricula/bachelor_biologie_molekulare_biologie_033630.yml +104 -0
  823. data/lib/studium/yaml/curricula/bachelor_biologie_zoologie_033630.yml +87 -0
  824. data/lib/studium/yaml/curricula/bachelor_chemie_033662.yml +164 -0
  825. data/lib/studium/yaml/curricula/bachelor_dummy_curriculum.yml +135 -0
  826. data/lib/studium/yaml/curricula/bachelor_elektrotechnik_und_informationstechnik_033235.yml +13 -0
  827. data/lib/studium/yaml/curricula/bachelor_forstwirtschaft_033225.yml +105 -0
  828. data/lib/studium/yaml/curricula/bachelor_informatik_033521.yml +130 -0
  829. data/lib/studium/yaml/curricula/bachelor_informatik_und_molekulare_biologie.yml +1144 -0
  830. data/lib/studium/yaml/curricula/bachelor_ktww_033231.yml +84 -0
  831. data/lib/studium/yaml/curricula/bachelor_lmbt_033217.yml +108 -0
  832. data/lib/studium/yaml/curricula/bachelor_medizinische_informatik_033533.yml +200 -0
  833. data/lib/studium/yaml/curricula/bachelor_molekularbiologie_033665.yml +93 -0
  834. data/lib/studium/yaml/curricula/bachelor_nutrition_science_033638.yml +117 -0
  835. data/lib/studium/yaml/curricula/bachelor_pharmazie_033305.yml +170 -0
  836. data/lib/studium/yaml/curricula/bachelor_technische_chemie_033290.yml +129 -0
  837. data/lib/studium/yaml/curricula/bachelor_technische_informatik_033535.yml +23 -0
  838. data/lib/studium/yaml/curricula/bachelor_ubrm_033227.yml +140 -0
  839. data/lib/studium/yaml/curricula/bachelor_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +1157 -0
  840. data/lib/studium/yaml/curricula/bachelor_verfahrenstechnik_033273.yml +167 -0
  841. data/lib/studium/yaml/curricula/bachelor_wirtschaftsinformatik_033526.yml +29 -0
  842. data/lib/studium/yaml/curricula/master_bioinformatics_and_molecular_biotechnology_including_aspects_from_molecular_medicine.yml +438 -0
  843. data/lib/studium/yaml/curricula/master_bioinformatik_066875.yml +76 -0
  844. data/lib/studium/yaml/curricula/master_biologie_molekulare_mikrobiologie_mikrobielle_oekologie_und_immunbiologie_066830.yml +78 -0
  845. data/lib/studium/yaml/curricula/master_biologische_chemie_066863.yml +61 -0
  846. data/lib/studium/yaml/curricula/master_dummy_curriculum.yml +137 -0
  847. data/lib/studium/yaml/curricula/master_food_science_and_plant_biotechnology.yml +30 -0
  848. data/lib/studium/yaml/curricula/master_genetik_und_entwicklungsbiologie_066877.yml +90 -0
  849. data/lib/studium/yaml/curricula/master_lmbt_066418.yml +65 -0
  850. data/lib/studium/yaml/curricula/master_molekulare_biologie_066834.yml +142 -0
  851. data/lib/studium/yaml/curricula/master_pharmazie_066605.yml +170 -0
  852. data/lib/studium/yaml/curricula/master_technische_chemie_066490.yml +123 -0
  853. data/lib/studium/yaml/curricula/master_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +741 -0
  854. data/lib/studium/yaml/custom_colours.yml +21 -0
  855. data/lib/studium/yaml/daily_questions_solved.yml +789 -0
  856. data/lib/studium/yaml/default_delay.yml +4 -0
  857. data/lib/studium/yaml/default_encoding.yml +1 -0
  858. data/lib/studium/yaml/directory_to_the_exam_topics.yml +0 -0
  859. data/lib/studium/yaml/editor.yml +1 -0
  860. data/lib/studium/yaml/file_for_exam_questions.yml +1 -0
  861. data/lib/studium/yaml/german/README.md +2 -0
  862. data/lib/studium/yaml/german/german_to_english_month_names.yml +16 -0
  863. data/lib/studium/yaml/grouped_themes.yml +187 -0
  864. data/lib/studium/yaml/holidays.yml +176 -0
  865. data/lib/studium/yaml/important_exams.yml +194 -0
  866. data/lib/studium/yaml/inscription_dates_of_universities.yml +58 -0
  867. data/lib/studium/yaml/lecture_aliases.yml +108 -0
  868. data/lib/studium/yaml/lecture_information.yml +47783 -0
  869. data/lib/studium/yaml/log_dir.yml +1 -0
  870. data/lib/studium/yaml/main_topic.yml +11 -0
  871. data/lib/studium/yaml/max_stats.yml +227 -0
  872. data/lib/studium/yaml/mitteilungsbl/303/244tter.yml +315 -0
  873. data/lib/studium/yaml/n_total_questions.yml +1 -0
  874. data/lib/studium/yaml/participating_in_these_courses.yml +50 -0
  875. data/lib/studium/yaml/rename_konsole_tab.yml +1 -0
  876. data/lib/studium/yaml/show_topic.yml +1 -0
  877. data/lib/studium/yaml/statistics.yml +57 -0
  878. data/lib/studium/yaml/use_colours.yml +1 -0
  879. data/studium.gemspec +79 -0
  880. data/test/testing_studium.rb +244 -0
  881. data/test/testing_time_component.rb +29 -0
  882. metadata +1079 -0
@@ -0,0 +1,855 @@
1
+ # =========================================================================== #
2
+ # === Allgemeine Mikrobiologie
3
+ #
4
+ # Mikrobiologie tag. Witte und Bacca. Mikro tag. mi tag. amm tag.
5
+ # Allgemeine Mikrobiologie- Witte, Baccarini und Wagner. Wager tag.
6
+ # Witte tag. Basic Microbiology. Microbio tag.
7
+ #
8
+ # Auch Mikrobiologie-Übungen der AW. Und Umweltmikrobiologie tag.
9
+ # Dies ist praktisch der "Grundbereich" der Mikrobiologie.
10
+ #
11
+ # Synthesewege von Bakterien werden hingegen in mikrobielle_physiologie
12
+ # gesammelt.
13
+ # =========================================================================== #
14
+
15
+ - What is <one>Adenylylation</one>? This is a posttranslational modification, involving a phosphodiester bond between a hydroxyl group of the molecule undergoing adenylylation and the phosphate group of AMP.
16
+ - Definiere den Begriff <one>Infektion</one>. A: Jede Situation in der ein Mikroorganismus auf oder in einem Wirt Fuß fassen und sich vermehren kann, unabhängig davon ob der Wirtsorganismus dadurch geschädigt wird.
17
+ - <one>SIM-Agar</one>: was heisst SIM? Sulfide, Indole, <one>Motility</one>.
18
+ - Was heisst <one>HOSCH-Filter</one>? Hochleistungs-Schwebstoff-Luftfilter.
19
+ - In the <one>DnaA protein</one>: which domain is the "DNA-binding domain"? "<u>Domain IV</u>".
20
+ - In regards to the <one>oriC</one>: what are <three>slow-stop mutants</three>? These are bacteria with defects - they can complete the current round of replication, but can not initiate a new round of DNA replication.
21
+ - Was sind <one>Magnetosome</one>? Intrazelluläre Kristallpartikel des Eisenminerals Magnetit (Fe3 O4).
22
+ - Give one example for a <one>peptide siderophore</one>. A: <one>Aquachelin</one>.
23
+ - Nenne zwei MOs in denen echte Denitrifikation erfolgt. A: (1) <one>Pseudomonas stutzeri</one> (2) <one>Paracoccus denitrificans</one>
24
+ - The <one>neutral theory of evolution</one> follows a ...? A <one>stochastic approach</one>.
25
+ - Beim <one>SeqA-Protein</one>: warum der Name <two>Seq</two>? <one>Seq</one> steht hier für "Sequestration", also Trennung. URL: https://en.wikipedia.org/wiki/SeqA_protein_domain
26
+ - Nenne 5 <one>Komponenten eines Lichtmikroskops</one>. A: (1) <one>Okular</one> (2) <one>Objektiv</one> (3) Objektträger (4) Kondensor (5) <one>Beleuchtungsspiegel</one>
27
+ - <one>Welche Bakterienfamilie</one> ist berühmt für ihre "Antibiotika-Synthesewege für Polyketide"? Die <one>Actinomyceten</one>.
28
+ - Define <one>selective medium</one> in Microbiology. A: A "selective medium" contains compounds that inhibit the growth of some microorganisms, but not others.
29
+ - In der Mikrobiologie: was geht der <one>septum formation</one> voraus? <one>Cell elongation</one>.
30
+ - Aufgrund des <one>pH-Werts</one> können wir grob welche 3 Gruppen an Mikroorganismen unterscheiden? (1) <one>acidophile</one> Mikroorganismen (2) <one>alkalophile</one> Mikroorganismen (3) <one>neutrophile</one> Mikroorganismen []
31
+ - Most stringent <one>Biosafety Level</one>? <one>Level 4</one>. []
32
+ - Welche herausragende Eigenschaft hat <one>Pyrolobus fumarii</one>? <two>Pyrolobus fumarii</two> ist <one>sehr hitzeresistent</one>. URL: https://en.wikipedia.org/wiki/Pyrolobus_fumarii
33
+ - A. W. für <one>Zip1</one>? <one>FtsZ Anchor</one>.
34
+ - Durchmesser eines F-Pilus? <one>8 nm</one>.
35
+ - <one>Welcher Sigmafaktor</one> erkennt den <three>Hitzeschock-Promotor</one>? <one>Sigmafaktor 32</one>. []
36
+ - What are <one>extremozymes</one>? Extremozymes are Enzymes that <one>function at environmental extremes</one>, such as high or low temperature, or pH.
37
+ - Most bacteria are <lightgreen>monomorphic</lightgreen>. What does this mean? This means that these bacteria <orange>maintain a single shape</orange>; they do not occur in more than a single shape (aka <two>pleomorphic</two>).
38
+ - The largest phylum of bacteria can be found among the ... ? The <one>Proteobacteria</one>.
39
+ - Name two different <one>cocci-form</one> of bacteria. A: (1) <orange>diplococci</orange> (2) <one>streptococci</one>
40
+ - Bei der <one>Sulfatreduktion</one> gibt es assimilatorischen und dissimilatorischen Weg. Welche Substanz wird hierbei jeweils verwendet? (1) PAPS im ass. (2) APS im diss.
41
+ - Wie nennen wir <one>Viererpakete von Bakterien</one>? <one>Sarcinen</one>.
42
+ - Name a MO used for chlortetracycline production. A: <one>Streptomyces aureofaciens</one>.
43
+ - <one>Volvox</one> kann wieviele Zellen haben? A: <one>20.000</one>. []
44
+ - Was sind <one>atriche Zellen</one>? <one>Zellen ohne Flagellen</one>.
45
+ - Bacterial culture medium may be of which type? (1) <one>liquid</one> (2) <one>solid</one>
46
+ - Was hat <one>Bacteriochlorophyll</one> im Zentrum? <one>Mg</one> (<one>Magnesium</one>). []
47
+ - Name two molecules that are able to <one>trigger a stringent response</one>. A: (1) <one>ppGpp</one> (2) <one>pppGpp</one> []
48
+ - A. W. für <one>Inokulum</one>? <one>Kleine Menge</one>.
49
+ - Name a stain that is used for <one>M. tuberculosis</one>. A: The <one>Ziehl-Neelsen stain</one>.
50
+ - Was weiss man allgemein wenn man <one>petite</one> colonies sieht? Die <one>Wachstumsrate dieser Bakterien ist verlangsamt</one>.
51
+ - Define the term <one>Progenote</one>. A: This is <one>the last universal common ancestor</one>.
52
+ - <one>n %</one> der marinen Organismen können biolumineszieren? <one>75%</one>.
53
+ - Do insects <crimson>love</crimson> <one>Wolbachia</one>? Sort of! Without Wolbachia, some can not reproduce or even survive.
54
+ - <one>Why</one> do Bacteria use the <three>carbon catabolite repression</three> system? It allows them to swiftly adapt to "changing nutrient supplies".
55
+ - How many bacteria exist on Earth? <one>10 ** 30</one>
56
+ - Nenne ein Beispiel für ein "green non-sulfur bacteria". A: <one>Chloroflexi</one>.
57
+ - <one>Zymomonas mobilis</one> ist gram + oder gram -? Zymomonas mobilis ist <one>gram -</one>, so wie auch E. coli. []
58
+ - Die <one>Dipicolinsäure</one> besitzt wieviele N-Atome? 1.
59
+ - What is a <one>Barophile</one>? Also provide a general example for this term. A: A <one>barophile</one> is an organism which thrives at high pressures, such as "deep sea bacteria".
60
+ - Nenne die wichtigste Reaktionsgleichung von <one>Pyrodictium</one>. A: H2 + S0 -> H2S (+ATP)
61
+ - Why is the <one>Winogradsky column</one> employed? The Winogradsky column is a simple device for culturing a large diversity of microorganisms.
62
+ - How does <one>Myxococcus</one> kill bacteria? <two>Myxococcus</two> will kill and lyse bacteria through a strategy of <one>cooperating swarms of single cells</one>.
63
+ - The <one>Entner-Doudoroff pathway</one> is widely distributed among? The <one>pseudomonas</one> group.
64
+ - Das <one>Mesosom</one> entspricht was? Gar nichts. Es sind Artefakte, siehe URL: https://en.wikipedia.org/wiki/Mesosome
65
+ - In molecular biology: what is the <one>pan-genome</one>? This is the full complement of genes in a species. It is the union of the gene sets of all the strains of this species.
66
+ - Das Lipopolysaccharid bei <one>gram-negativen Bakterien</one> hat eine äquivalente Funktion zu ... von "gram-positiven Bakterien". A: <one>den Teichonsäuren</one>.
67
+ - Where exactly does <one>transpeptidation</one> occur? Outside the cell, where ATP is unavailable.
68
+ - ... ... stimulieren die Septumbildung in Bakterien. A: <one>Replizierende Nukleotide</one>.
69
+ - Briefly differ between the tasks of class I und class II <one>bacteriocins</one>. A: (1) class I Bacteriocins blocks the transport of units for peptidoglycan and forms a pore. (2) class II Bacteriocins makes leakage in membrane.
70
+ - What is <one>codon bias</one> and does it correlate with anything? Certain codons for the same amino acid are more frequently transcribed rather than others. Apparently these codons are preferred over others that encode the same amino acid. Codon bias is correlated with <one>a corresponding bias in the concentration of different tRNA molecules</one>.
71
+ - Andere Bezeichnung für eine <one>osmotisch inerte Form</one>? <one>Wasserunlöslich</one>.
72
+ - In <one>E. coli</one>: welche 2 Proteine sind verantwortlich für das Abschneiden der 3 Strich Ende der mRNA wenn die RNA-Polymerase stehen bleibt? <one>GreA</one> und <one>GreB</one>.
73
+ - <one>Bdellovibrio</one> attacks which bacteria? Only <one>gram-negative bacteria</one>. []
74
+ - Why the name <one>permissive face</one> for the Tus-Protein? Because when the replisome makes contact with it, the Tus protein dissociates from the DNA.
75
+ - <one>Magnetosomes</one> haben "Fe3O4". Nenne 1 MO der sie hat. A: <one>Magnetospirillum gryphiswaldense</one>.
76
+ - Nenne zwei Vertreter der "Euryarchaeota"! A: (1) methanogens (2) <one>extreme Halophile</one>
77
+ - Mikroben halten wie viel Prozent des biologischen Stickstoff auf der Erde? <one>90%</one>.
78
+ - Is <one>Bacillus stearothermophilus</one> a slow grower? No, its <one>generation time</one> is only <two>11 minutes</two>.
79
+ - Die DNA in Bakterien wird an der Zellmembran verankert. Dies verhindert die Neuinitiation am oriC und die Promoteraktivierung am dnaA-Gen. Welches Protein sorgt für diese Verankerung? Das Protein <one>SeqA</one>.
80
+ - Die zwei in der Natur am weitesten verbreiteten "anorganischen Stickstoffverbindungen" sind? (1) Nitrat (2) <one>Ammoniak</one>
81
+ - What is the <one>major shape-determining protein</one> in prokaryotes? <one>MreB</one>.
82
+ - Which domain of DnaA changes upon binding of ATP? The <one>AAA+ domain</one>.
83
+ - <one>DnaA assembly</one> is incompatible with ...? With binding dsDNA.
84
+ - Nenne zwei Funktionen der <one>Peptidoglykanschicht</one>. A: (1) gibt dem Bakterium seine Form und Stabilität (2) schützt das Bakterium vor osmotischen Lyse
85
+ - Können Bakterien ihre <one>Fluidität anpassen</one>? Ja. Bei unterschiedlichen Temperaturen werden Phospholipide mit unterschiedlicher Länge der Fettsäureresten mit oder ohne Doppelbindung eingebaut.
86
+ - <one>Pneumococcus</one> hat wie viele "smooth capsid-types"? <one>3</one>.
87
+ - Name <one>a bacterial protein capable of producing Alarmones</one>. A: <one>RelA</one>.
88
+ - Name the 3 <one>philes</one> in microbiology in regards to pH. A: (1) acidophiles (2) alkaliphiles (3) <one>neutrophils</one>
89
+ - Welche Person gilt als <one>Begründer der modernen Mikrobiologie</one>? <one>Robert Koch</one>. URL: https://de.wikipedia.org/wiki/Robert_Koch
90
+ - In the <one>phosphotransferasesystem</one>: which enzyme parts are nonspecific? (1) Hpr (2) <one>EnzI</one>
91
+ - Allgemein: wie ist <one>DNA in einer bakteriellen Zelle</one> <three>angeordnet</three>? In <one>loops</one>, die <two>domains</two> genannt werden.
92
+ - Nenne die 3 Grundstrukturen bei einem bakteriellen <one>Filament</one>. A: (1) Basalkörper (2) Haken (3) <one>Filament</one>
93
+ - Was ist das wichtigste, strukturbestimmende Protein bei Prokaryoten? <one>MreB</one>.
94
+ - <one>Pyrodictium</one> ist was für ein Organismus? Pyrodictium ist ein submariner, hyperthermophiler Archaea.
95
+ - <one>FtsA</one> ähnelt welch anderem Protein? <one>Actin</one>. (Mnemo: A ... Actin)
96
+ - When a plasmid belongs to the same <one>Inc group</one>, what does this mean? That this plasmid can not replicate in the same cell as other plasmids with the same Incompatibility group.
97
+ - Do <one>bacterial chaperones</one> also <three>help assemble multiprotein complexes</three>? Yes they do. []
98
+ - Wie lange dauert der <one>ames-Test</one>? Mindestens 1 Nacht.
99
+ - Das Bodenbakterium <one>Ktedonobacter racemifer</one> hat wie viele Protein-kodierende Gene? 11_453.
100
+ - Nenne 5 <one>Proteobacteria-Vertreter</one>. A: (1) Agrobacterium (2) Acetobacter (3) Bordetella (4) Neisseria (5) Aeromonas
101
+ - Beim <one>Tyndallisieren</one> setzen wir welchen Temperaturbereich ein (von, bis)? <one>70 - 100 °C</one>.
102
+ - Why should we prefer the term <one>poly-Beta-hydroxyalkanoate</one> rather than "poly-Beta-hydroxy-butyric acid"? Because butyric acid implies C4, whereas there can be C3 up to C18 C-Atoms instead.
103
+ - <one>PhoQ</one> in Salmonella senses ... ? <one>Magnesium</one>.
104
+ - Input, Output bei den <one>Nitrifiers</one>? (1) <one>Input</one>: <two>NH4+</two>. (2) <one>Output</one>: <two>NH3-</two>.
105
+ - Welche zwei Metalle finden wir in <one>Ferredoxin</one>? <one>Eisen</one> + <one>Schwefel</one>. []
106
+ - Give an example for a bacterium which may show <one>cannibalism</one>. A: Sporulating <one>Bacillus subtilis</one>.
107
+ - The bacterium <one>Wolbachia</one> infects in particular ... ? <one>Arthropods</one>.
108
+ - In microbiology: what is a <one>pure culture</one>? A pure culturei is a culture containing only a single kind of microorganism.
109
+ - What is meant with a <one>peritrichous cell</one>? This is when the flagella are randomly distributed around the bacterial cell.
110
+ - Warum genau verwenden wir ausgerechnet <one>Leberenzyme</one> im Ames-Test? Um die Chemikalien in ihre aktive, mutagene Form zu konvertieren.
111
+ - <one>Clostridium</one> has what shape? It has <one>a drumstick-shape</one>.
112
+ - Temperaturrekord (Hitze) für Bakterien? <one>121 °C</one>.
113
+ - Name 1 genus of bacteria able to cause <one>bacterial dysentery</one>? The genus <one>Shigella</one>.
114
+ - <one>Mycoplasma genitalium</one> has n genes? <one>485 genes</one>.
115
+ - Name a <one>developmental process</one> in bacteria. A: <one>Sporulation</one>. []
116
+ - Beim <one>Phosphotransferasesystem</one>: <three>HPr</three> findet sich zwischen welchen anderen beiden Komponenten? (1) Enz I (2) Enz IIa
117
+ - What is <one>Hydrotaxis</one>? This allows bacteria that inhabit dry environments to glide toward a gradient of increasing moisture.
118
+ - <one>Beweglichkeit</one> bei den Protozoa ist oft gegeben über ... ? <one>Pseudopodien</one>.
119
+ - Wann wenden wir die <one>Gassterilisation</one> (chemische Sterilisation) an? Bei "hitzelabilen Gegenständen".
120
+ - Why the name <one>proteo</one> in <orange>Proteorhodopsin</orange>? It refers to <one>Proteobacteria</one>.
121
+ - Gib ein Beispiel für einen Organismus, in dem wir <one>Bacteriorhodopsin</one> finden können. A: <one>Halobacterium</one>.
122
+ - Welches ist das wichtigste Modell um <one>bakterielle Membranen</one> zu beschreiben und wer hat es aufgestellt? Das <one>Fluid Mosaic Model</one>. Aufgestellt wurde es von <two>Singer und Nicholson</two>.
123
+ - How many different <one>Type secretion systems are known in Bacteria</one>? <one>6</one>.
124
+ - Name a bacterium that employs a <one>twitching motility</one>. A: <one>Pseudomonas aeruginosa</one>. URL: https://en.wikipedia.org/wiki/Pseudomonas_aeruginosa
125
+ - Was bringt eine <one>Rodacplatte</one>? Diese <one>Abklatschplatte</one> erlaubt es uns die Keimbelastung an einer Oberfläche zu beurteilen.
126
+ - <one>ppGpp</one> is synthesized from ...? <one>GTP</one>.
127
+ - Is <one>Arthrobacter luteus</one> gram-positive or gram-negative? It is a species of <one>gram-positive bacteria</one>.
128
+ - Give an example for <one>a green, nonsulfur bacterium</one>. A: <one>Chloroflexus</one>. URL: https://en.wikipedia.org/wiki/Chloroflexus_aurantiacus []
129
+ - For <one>tmRNA rescue</one> to happen, the tmRNA needs which protein, in order to form a complex? <one>SmpB</one>.
130
+ - <one>Quorum sensing</one> was first discovered in ...? <one>Vibrio fischeri</one>. URL: https://de.wikipedia.org/wiki/Aliivibrio_fischeri
131
+ - Das <one>Propionibacterium</one> ist <two>gram-positiv</two> oder <two>gram-negativ</two>? <one>Gram-positiv</one>. []
132
+ - Which two aminoacids are very important in <one>two-component systems</one>? (1) Aspartate (2) <one>Histidine</one>
133
+ - Was sind die <one>Gallionella</one>? Dies sind die <one>Eisenbakterien</one>. URL: https://de.wikipedia.org/wiki/Gallionella
134
+ - What are <one>cidal</one> agents? Agents that kill organisms - or in this case, bacteria.
135
+ - What is the most famous domain in the DnaA protein? The <one>AAA+ domain</one>.
136
+ - Wieviele <one>Ascomyceten</one>-Arten sind bekannt? ca. 60.000 Arten
137
+ - Wie speichern Bakterien, wie zum Beispiel die <one>Pseudomonaden</one>, lösliche Phosphate? Sie speichern sie in Form von "Polyphosphat".
138
+ - Who is <one>the most abundant prokaryote in the ocean</one>? <one>Pelagibacter</one>.
139
+ - Nenne <one>die zwei verbreitesten Differenzierungsfärbungen</one>. A: (1) <one>Gram-Färbung</one> (2) <one>Säurefestigkeitsfärbung</one>
140
+ - A. W. für <one>Eiskristallbildende Bakterien</one>? <one>Pseudomonas syringae</one>.
141
+ - Das <one>70S Ribosom</one> hat einen Durchmesser von ca. ...? <one>25nm</one>.
142
+ - Wie unterscheiden sich <one>Typ I Topoisomerasen</one> von <one>Typ II Topoisomerasen</one>? (1) <one>Typ I Topoisomerasen</one> machen einen <two>Einzelstrangbruch</two>. (2) <one>Typ II Topoisomerasen</one> hingegen einen <two>Doppelstrangbruch</two>.
143
+ - Anderer Begriff für die <one>Syntrophie</one>? <one>Interspezies H2-Transfer</one>.
144
+ - In Bacteriology: name <one>two plot-types</one>. A: (1) logarithmic plot (2) arithmetic plot
145
+ - Name <one>two key regulatory proteins</one> of the <two>SOS response</two>. A: (1) <one>LexA</one> (2) <one>RecA</one>
146
+ - Die wichtigste Voraussetzung für <one>bakterielle Magnetotaxis</one> ist ... ? Das <one>Magnetosom</one>.
147
+ - Nenne eine ungewöhnliche Gruppe von Bakterien die <one>Sauerstoff zum Wachstum</one> benötigt. A: <one>Mikroaerophile Bakterien</one>. URL: https://en.wikipedia.org/wiki/Microaerophile
148
+ - Welche Reaktion katalysieren <one>methanoxidierende Bakterien</one>? Sie wandeln Methan in CO2 um.
149
+ - Der <one>KOH-Test</one> lysiert welche Zellen? Der KOH-Test <one>lysiert gram-negative Zellen</one>.
150
+ - Wo findet man <one>H-Antigene</one>? Bei <one>bakteriellen Flagellen</one>.
151
+ - <one>Zymogene Bodenorganismen</one> sind <two>bei höherer Stoffzufuhr</two> <three>kompetitiver</three> oder <three>weniger kompetitiv</three> als andere Populationen? Sie sind <one>bei höherer Stoffzufuhr kompetitiver als andere Populationen</one>.
152
+ - Was produziert der mikrobielle <one>ANAMMOX Prozess</one>? <one>N2</one>.
153
+ - What <one>structure</one> defines the existence of a bacterial cell? The <royalblue>cell membrane</royalblue>.
154
+ - Unter optimalen Wachstumsbedingungen besteht <one>wieviel Prozent der bakteriellen Zellmasse aus Ribosomen</one>, in etwa? In etwa <one>25%</one>.
155
+ - What does <one>oxygenic photosynthesis</one> produce? <one>O2</one>.
156
+ - Wann kommt es in <one>E. coli</one> zur sogenannten <two>stringenten Kontrolle</two>? Zum Beispiel <one>bei Aminosäuremangel</one>.
157
+ - Where could we find <one>marine snow</one>? In the <royalblue>deep ocean</royalblue>.
158
+ - Besitzen <one>Hefezellen</one> <two>Vakuolen</two>? Ja.
159
+ - Name two major types of <one>cell movement for bacteria</one>. A: (1) <one>gliding</one> (2) <one>swimming</one>
160
+ - Ein Vertreter der <one>säurefesten Bakterien</one>? Die <one>Mykobakterien</one>. URL: https://de.wikipedia.org/wiki/Mykobakterien
161
+ - Ist <one>ein Chemostat</one> <two>kontinuierlich</two> oder <two>diskontinuierlich</two>? <one>Kontinuierlich</one>.
162
+ - Wie nennt man, auf englisch, den Zustand eines Bakterium, welches künstlich so präpariert wurde, das sie ihre <tomato>Oberflächenstrukturen abwirft</tomato>? "shaven", in other words: <one>agitated to lose surface structures</one>.
163
+ - Nenne ein <orange>Vitamin</orange>, das "Neurospora crassa" benötigt. A: <one>Biotin</one>. URL: https://en.wikipedia.org/wiki/Biotin
164
+ - Is the <violet>SIM Medium</violet> used to detect gram-positive or gram-negative bacteria? It is used to detect "gram-negative" bacteria.
165
+ - Warum ist die <one>Diaminopimelinsäure</one> so wichtig für die Struktur einer Bakterienzelle? Die Zellwand der Bakterien hat spezifische Tetrapeptide, die direkt miteinander verbunden sind. Die Aminogruppe der Diaminopimelinsäure des einen Peptids ist mit der Carboxygruppe des terminalen D-Alanins des benachbarten Peptids verknüpft.
166
+ - Nenne einen <one>Aflatoxin-Bildner</one>. A: <one>Aspergillus flavus</one>.
167
+ - Can <one>mycoplasma</one> reproduce outside of living host cells? Yes.
168
+ - Was macht die <one>Pyruvate Dehydrogenase</one>? A: Katalysiert die "oxidative Decarboxylierung" von Pyruvat. Dabei entsteht <royalblue>Acetyl-CoA</royalblue>.
169
+ - Welche <one>Brücke</one> finden wir bei Gram-positiven Bakterien in der Zellwand? Eine <one>Pentaglycinbrücke</one>.
170
+ - Nenne einen <one>Pilz</one> der Phenole abbauen kann. A: <one>Trichosporon cutaneum</one>.
171
+ - Was sind <one>Kompatible Solute</one>? Osmolyte, die auch bei hohen cytoplasmatischen Konzentrationen nicht mit dem Zellstoffwechsel interferieren.
172
+ - What do we mean with <one>Transduction</one>? This is when viruses pick up fragments of host DNA and carry them to another host cell.
173
+ - Is <one>ATP</one> available in the periplasm of gram-negative bacteria? No.
174
+ - A. W. für <one>Schlauchpilze</one>? <one>Ascomycetes</one>.
175
+ - In bacteria: what do we mean with <one>a dim domain</one>? This is a dimerization domain; thus, it is important for dimerization.
176
+ - Im <one>Phosphotransferasesystem</one>: was heisst <two>Hpr</two>? <one>Histidine-rich protein</one>.
177
+ - Name an enzyme that <one>Pseudomonas aeruginosa</one> lacks. A: <one>Phosphofructokinase</one>.
178
+ - Nenne ein <one>monopolar monotriches</one> Bakterium. A: <one>Vibrio cholerae</one>.
179
+ - How did Horowitz define <two>life</two>? Life possesses the properties of (1) replication (2) catalysis (3) mutability
180
+ - The <one>Primase</one> forms a complex with ...? <one>Helicase</one>.
181
+ - The <one>polymerized Fts Z molecules</one> attract which two other <two>divisome proteins</two>? (1) <one>Fts A</one> (2) <one>Zip A</one>
182
+ - Do <one>Entamoeba histolytica</one> have mitochondria? No.
183
+ - Aus Sicht einer bakteriellen Zelle: wo kann das <one>ComP Protein</one> gefunden werden? Dieses "sensor protein" ist <crimson>in der Membran verankert</crimson>.
184
+ - Wie erkennen wir ob das Enzym <one>Katalase</one> bei Bakterien aktiv ist? Durch <one>Entwicklung von Gasbläschen</one>.
185
+ - Name <one>an evolutionary advantage</one> pertaining to genetics that Prokaryotes have, compared to Eukaryotes. A: They can <orange>mutate and thus evolve more rapidly</orange> than eukaryotes, and in doing so, more rapidly adapt to changing environmental conditions. This enables them to exploit new habitats more easily.
186
+ - Name a technique that <one>Beijerinck</one> has developed. A: The <one>enrichment culture technique</one>.
187
+ - Give a specific example for a <one>two-component regulatory system</one> in bacteria. A: The "ComP/ComA" regulatory system. It is composed of: (1) the sensor histidine kinase <lightgreen>ComP</lightgreen> (2) and the response regulator <lightgreen>ComA</lightgreen>
188
+ - Definiere <one>bacteriostatic agents</one>. A: These are <one>agents that inhibit bacterial growth</one>.
189
+ - What happens structurally if <one>the AAA+ domain of DnaA</one> binds ATP? In the ADP-bound state the "base" and the "lid" adopt a closed conformation. This conformation will rearrange to a more open state in the presence of ATP, and will thus permit binding of a second subunit.
190
+ - Maximale Absorption in Nanometer bei Bacterochlorophyll a (von-bis)? <one>800-925 nm</one>.
191
+ - Allgemein formuliert: <one>Darmbakterien</one> sind <two>besonders resistent</two> gegenüber welchen <three>Säuren</three>? <one>Gallensäuren</one>.
192
+ - Hängt die <one>Gram-Färbung</one> vom Alter der Bakterien ab? Ja, zum Teil: ältere Bakterien-Kolonien lassen sich allgemein schlechter einfärben als junge Bakterien.
193
+ - In der Mikrobiologie setzen wir die sogenannte <one>Ziehl-Neelsen-Färbung</one> ein. Wieso tun wir dies? Wir können so "säurefeste" Bakterien, wie die <tomato>Mykobakterien</tomato> und die <tomato>Nocardien</tomato>, von den sogenannten nicht "säurefesten" Bakterien, unterscheiden.
194
+ - The <one>hyperthermophiles</one> contain which unique enzyme? <one>Reverse DNA gyrase</one>.
195
+ - Was macht <one>RelA</one>? It adds <royalblue>two phosphate groupe from ATP</royalblue> to either GTP or GDP, thus producing <one>pppGpp</one> or ppGpp.
196
+ - <one>Puromycin</one>, an "aminonucleoside antibiotic", has been derived from which bacterium? From <one>Streptomyces alboniger</one>.
197
+ - How is the <one>cholera toxin</one> exported? Through a type II secretion system.
198
+ - In microbiology: what is <one>a viable cell</one>? One that is able to divide and form offspring.
199
+ - Who is <one>spiral shaped</one>? <one>Spirilla</one>.
200
+ - Langer Name für <one>Bactoprenol</one>? <one>Undecapenoldiphosphate</one>.
201
+ - <one>Thermophiles</one> haben was für einen Membrantypus? A: rigid, haben also <one>eher starre Membranen</one>.
202
+ - Name a bacterium that can grow near pH0. A: <one>Ferroplasmum</one>.
203
+ - In Microbiology: what is <one>Volutin</one>? <royalblue>Volutin</royalblue> granules are intracytoplasmic granules complexed, inorganic polyphosphate. It is <one>a storage form</one>.
204
+ - Wann wurde <one>Helicobacter pylori</one> erstmals kultiviert? <one>1982</one> - also erst relativ spät.
205
+ - Why can we use <one>Isoniazid</one> against Mycobacterium? Isoniazid interferes with the synthesis of mycolic acid, a mycobacterial cell wall component.
206
+ - Nenne eine Mikroorganismus-Gruppe die <orange>CH4</orange> (<three>Methan</three) produziert. A: <one>Methanogene Archaea</one>.
207
+ - What are the <one>Alkaliphiles</one>? The <one>Alkaliphiles</one> are a class of extremophilic microbes capable of survival in alkaline environments, with an optimal pH of about 10, and a preferred pH range of 8.5-11.
208
+ - Was sind <one>Spiroplasmen</one>? Schnelle, spiralförmige Bakterien.
209
+ - Wo finden wir <one>Peptidoglycan</one>? Nur in <one>Bakterien</one>.
210
+ - Warum benötigen die Bakterien das Enzym <one>Katalase</one>? Für <one>aerobes Wachstum</one>.
211
+ - Define <one>Attenuation</one>. A: Attenuation is <one>the decrease or loss of virulence of a pathogen</one>.
212
+ - Wer entdeckte die <one>Archaea</one>? <one>Carl Woese</one>. URL: https://en.wikipedia.org/wiki/Carl_Woese
213
+ - Warum oder wann vor allem wird die <one>Säurefestigkeits-Färbung</one> nach <three>Ziehl-Nelsen</three> eingesetzt? Um <one>Mycobacterium tuberculosis</one> nachzuweisen.
214
+ - Nenne ein Bakterium, das <one>Granulose</one> enthält. A: <one>Clostridium butyricum</one>.
215
+ - Wer oder was fungiert als <one>Glucosesensor</one> in Bakterien? Die <one>Adenylat-Cyclase</one>.
216
+ - <one>Epulopiscium fishelsoni</one> is not only very large, but has what other curious feature? It <one>contains multiple copies of its genome</one>.
217
+ - Nenne einen Mikroorganismus der sowohl <one>Butanol</one> als auch <one>Aceton</one> herstellen kann! A: <one>Clostridium acetobutylicum</one>.
218
+ - <one>ABC transporters</one> in molecular biology, as well as in bacteria, require energy derived from ..? <one>ATP</one>.
219
+ - Der <one>datA Locus</one> hat 5 hochaffine DnaA Bindungsstellen. Wozu? Dies hilft die freie Menge an DnaA Proteinen zu titrieren, ausserhalb des oriC Locus.
220
+ - What is a <one>viable bacterial organism</one>? This is <one>a bacterium capable of replicating</one>.
221
+ - What can be found in <oneCarboxysomes</one>? A lot of the enzyme "RuBisCO" (Ribulose-1,5-biphosphate carboxylase/oxygenase)
222
+ - Durchmesser <one>Nucleus</one>, von-bis? <one>5-10 Mikrometer</one>.
223
+ - Was sind <one>aseptic environments</one>? These are "environments free of microbes".
224
+ - Anderer Begriff für die <one>Acetobacter</one>? <one>Essigsäurebakterien</one>. URL: https://de.wikipedia.org/wiki/Acetobacteraceae
225
+ - Der <one>aw-Wert</one> beeinflusst das mikrobielle Wachstum. Ab wann sehen wir das kein Wachstum mehr möglich ist? Bei einem <one>aw-Wert unter 0.6</one>.
226
+ - Formel für die <one>durchschnittliche Generationszeit</one> bei Bakterien? g = t / n
227
+ - When <one>a bacterium divides</one>: how do we call the thing that forms right between them, before the septum emerges? The <one>Z-ring</one>.
228
+ - Nenne die 4 wichtigen Schritte beim <one>Gram-Staining</one> (inklusive Angabe der Zeit!). A: (1) Crystal Violet: für 1 Minute (2) <royalblue>Iodine</royalblue>: für eine Minute (3) Alcohol Acetone: für einige Sekunden (4) Safranin Stain: für 1 Minute
229
+ - Wie sieht eine <one>ethanolamine group</one> aus? <royalblue>H3N+ - CH2 - CH2 - O</royalblue>
230
+ - Was ist <one>Snowmax</one> und wozu wird es verwendet? Snowmax sind <royalblue>Frostbakterien</royalblue>, die künstlichen Schnee produzieren können.
231
+ - Wo finden wir die <one>meso-Diaminopimelinsäure</one>? In gram-negativen Bakterien (wie E. coli).
232
+ - Give an example for <one>positive control in Bacteria</one>. A: Maltose Catabolism in E. coli.
233
+ - Die <one>Zellwand der Hefe</one> besteht aus? <one>Chitin</one> und <one>Hemicellulose</one>.
234
+ - <one>Welche Bakteriengruppe</one> verwendet die <two>Aminopeptidase</two>? <one>Gram-negative Bakterien</one>.
235
+ - Was ist mit dem Begriff <one>Antibiose</one> gemeint? Wenn die Vermehrung phytopathogener Bodenkeime durch andere Mikroben unterdrückt wird.
236
+ - How is <one>microbial growth</one> defined? This is <royalblue>an increase in the number of cells in a population</royalblue>.
237
+ - Where could <one>phycocyanins</one> be found? In <one>cyanobacteria</one>.
238
+ - Lebenszyklus der <one>Rickettsia</one>? Dies sind <one>Parasiten</one>.
239
+ - How old is the <one>first evidence of microbial life</one>? A: About <one>3.45 billion years ago</one>.
240
+ - Nenne zwei Bakteriengruppen die <one>anoxygene Photosynthese</one> betreiben. A: (1) Schwefelbakterien (2) Purpurbakterien
241
+ - Warum sind <one>dormante Mikroorganismen</one> im Boden so wichtig? Sie reduzieren die Wahrscheinlichkeit des Aussterbens eines Mikroorganismus.
242
+ - Kleinster Organismus, der <one>O2-autotroph</one> ist? <one>Prochlorococcus</one>.
243
+ - Die <one>bakterielle DNA-Polymerase III</one> besteht aus <two>n Untereinheiten</two>? <one>10</one>.
244
+ - Was heisst <one>S</one>/<one>V ratio</one>? <one>Surface to volume ratio</one>.
245
+ - Name a <one>classification system</one> based on <two>cell wall properties</two>. A: (1) <one>mycoplasma</one> (2) gram + (3) gram -
246
+ - Which <one>two phyla</one> are part of the <two>Archaea</two>? (1) <one>Euryarchaeota</one> (2) <one>Crenarchaeota</one>
247
+ - Nenne Beispiel für <one>eine Gruppentranslokation</one>. A: Das <royalblue>PTS</royalblue>: <one>Phosphotransferasesystem</one>.
248
+ - Name a bacterium that <one>can survive the conditions inside of a lysosome</one>. A: <one>Salmonella</one>.
249
+ - <one>Glucosamine 6-phosphate</one> is a precursor in what synthetic pathway? In the "peptidoglycan synthesis" pathway.
250
+ - In Bacteriology: where do we find <one>nucleoid occlusion</one>? Around the nucleoid.
251
+ - Nenne einen Unterschied zwischen den <one>Basenanaloga</one> und den <one>alkylierenden Verbindungen</one>. A: Basenanaloga wirken nur in replizierender DNA, alkylierende Verbindungen wirken auch in nichtreplizierender DNA.
252
+ - Was geschieht im <one>Hydrogenosom</one>? Die Oxidation von Pyruvat zu Acetyl-CoA, CO2 und H2.
253
+ - Difference between a <one>batch culture</one> and a <one>continuous culture device</one>? (1) A batch culture is a closed system. (2) A continuous culture is not closed.
254
+ - Where does <one>Bdellovibrio</one> replicate? In the periplasmic space of the prey cell.
255
+ - The <one>initiator</one> (of DNA synthesis) binds to ...? The <one>replicator</one>.
256
+ - <one>Enterobactine</one> sind Derivate von ...? A: Der aromatischen Verbindung <royalblue>Catechol</royalblue>.
257
+ - Name a bacterium that has a "phage-inducible chromosomal island". A: <one>Staphylococcus aureus</one>.
258
+ - Der <one>Glyoxylatzyklus</one> ermöglicht es welche Kohlenstoffquelle zu verwenden? <one>Acetat</one>.
259
+ - Welches Bakterium ist <oneD50S</one>? Deinococcus radiodurans.
260
+ - Bei einer <one>Verdünnungsreihe</one>: welche Verdünnungsstufe hat die Originalprobe? <royalblue>Verdünnungsstufe 0</royalblue>.
261
+ - <one>Maximum temperature of growth</one> for <two>Pyrobolus</two>? <royalblue>113°C</royalblue>.
262
+ - Name <one>a bacterium</one> that attacks other bacteria and thus uses them as <two>a bacterial prey cell</two>. A: <royalblue>Bdellovibrio</royalblue>. URL: https://en.wikipedia.org/wiki/Bdellovibrio
263
+ - Was ist die <one>durchschnittliche Generationszeit</one>? Dies ist die Zeit, die eine aktiv wachsende Bakterienkultur zur Verdoppelung benötigt.
264
+ - Name one organism that <one>produces red pigments</one>. A: <one>Serratia marcescens</one>. URL: https://de.wikipedia.org/wiki/Serratia_marcescens
265
+ - Name four risks of <one>newly emerging diseases</one>. A: (1) zoonotic pathogens from wildlife (2) drug-resistant pathogens (3) zoonotic pathogens from non-wildlife (4) vector-borne pathogens
266
+ - What is the task of <one>transport proteins</one>? They accumulate soluates against the concentration gradient.
267
+ - Was gibt der <one>BSB5-Wert</one> an? Den biochemischen Sauerstoffbedarf in 5 Tagen unter Standardbedingungen.
268
+ - Give an example for an <one>AB exotoxin</one>. A: <one>Diphtheria toxin</one>.
269
+ - Der <one>Zellertrag durch Bakterien</one> ist, biochemisch betrachtet, <two>direkt proportional der</two> ...? A: Der <one>produzierten ATP Menge</one>.
270
+ - Welches Enzym wirkt an <one>GATC Sequenzen</one>? <royalblue>Dam-Methylase</royalblue>, die am Adenin methylieren.
271
+ - <one>Welches Bakterium</one> erzeugt <two>Lysostaphin</two>? <royalblue>Staphylococcus simulans</royalblue>. Es wirkt gegen Staphylococcus aureus. Andere Quellen sagen das dies von Staphylococcus staphylolyticus erzeugt wird.
272
+ - Was machen <one>Methanobacteriae</one>? Konvertieren <one>CO2</one> zu <one>Methan</one>.
273
+ - Wieviele <one>DNA-Polymerasen</one> werden für die Synthese des Folgestrangs benötigt? <one>2</one>.
274
+ - Welche Gene im Bakterium sorgen dafür das das <one>Septum</one> <two>richtig lokalisiert</two> ist? Die Gene im Min-System.
275
+ - Nenne einen Organismus, der eine <one>parakristalline S-Schicht</one> besitzt. A: <one>Thermoproteus</one>.
276
+ - Die meisten der <one>nitrifizierenden Prokaryoten</one> gehören zu den? <one>Proteobacteria</one>.
277
+ - <one>Hitzeschockproteine</one>, zumindest in E. coli, haben oft mit welchem Areal der bakteriellen Zelle zu tun? Mit der <one>Zellmembran</one>.
278
+ - Beim bakteriellen Phosphotransferasesystem zur Aufnahme von Glucose, welches Enzym ist membrangebunden? Das Enzym <royalblue>IIc</royalblue>.
279
+ - FtsK hält einen Rekord. Welchen? Es ist die schnellste bekannte <tomato>DNA-Pumpe</tomato>.
280
+ - Der oriC hat wieviele <violet>GATC Sequenzen</violet>? 11.
281
+ - In microbiology, which two (technical) means of fixation of bacteria are commonly employed? (1) "heat fixation" (2) "chemical fixation"
282
+ - Bei der "Auslösung der Sporulation" in "Bacillus subtilis" - wieviele Sensorkinasen kommen zum Einsatz? <tomato>4</tomato> ("KinA", "KinB", "KinC", "KinD"). URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC1221893/
283
+ - What is the "counterstain" used in gram staining? <tomato>Safranin</tomato>.
284
+ - "Salmonella typhimurium" produziert welche "phenolische Siderophore"? <tomato>Enterobactine</tomato>.
285
+ - Pseudomonas love which sugar source? <tomato>Succinate</tomato>.
286
+ - Glycogen is a storehouse for ...? (1) <tomato>carbon</tomato> (2) <tomato>energy</tomato>
287
+ - Welche Person hat erstmals Bakterien (mit einem Mikroskop) sehen können? <tomato>Antonie van Leeuwenhoek</tomato>. URL: https://en.wikipedia.org/wiki/Antonie_van_Leeuwenhoek
288
+ - Der beim <tomato>Ames-Test</tomato> verwendete Mineralagar enthält Spuren welcher, für diesen Test sehr wichtigen, Aminosäuren? Histidin.
289
+ - There are bacteria called "mollicutes". Why that name? <tomato>Mollis</tomato> is "soft", <tomato>cutis</tomato> is "skin". These are bacteria without a cell well.
290
+ - Was ist die "key property of living organisms"? A: They <tomato>carry an internal description of themselves</tomato>.
291
+ - Längeres Wort für "Alarmone"? <tomato>Alarmsubstanzen</tomato>.
292
+ - "Moll" (but later cyanobacteria) How do cyanobacteria glide? They secrete a polysaccharide slime on the outer surface of the cell.
293
+ - The best known gliding bacteria are ... ? The <orange>filamentous cyanobacteria</orange>. URL: https://www.sciencedirect.com/science/article/pii/B9780123858764000049
294
+ - In Microbiology, give an example for a "differential plate". A: The <orange>McConky Plate</orange>. It uses Lactose to differentiate one bacteria from another.
295
+ - From an "anatomical" point of view, is there something interesting to note about the <oange>origin of replication</orange> in a bacterial cell? Yes - the origin is attached to the cell envelope at about the cell's equator, about halfway between the two poles of that cell.
296
+ - What "dual-role" may bacterial proteins such as H-NS or HU have? (1) they can <orange>bind DNA</orange> (2) tehy can also <orange>regulate gene expression</orange>
297
+ - Are group translocation systems also ABC transporters? No they are not.
298
+ - Does "group translocation" move nutrients against a concentration gradient? Yes.
299
+ - Was passiert wenn wir den <orange>datA Locus</orange> deletieren? Dies führt zu einer deregulierten (also asynchronen) Initiation der Replikation.
300
+ - Nenne die zwei Klassen der <orange>Mikroalgen</orange>. A: (1) "eukaryotische Grünalgen" (2) "prokaryotische Cyanobakterien"
301
+ - Nenne einen Organismus der das <orange>LucCDABE-Operon</orange> exprimiert! A: "Vibrio fischeri".
302
+ - Eine einzelne E. coli Zelle hat in etwa <orange>wieviele Ribosomes</orange>? 200.000.
303
+ - Wie ist das bakterielle Chromosom in der Zelle organisiert? In Form von <orange>superhelikalen Schleifen</orange>, die durch Proteine wie HU stabilisiert werden.
304
+ - "PEP" can be synthesized from which key intermediate of the CAC? "<u>Oxalacetate</u>".
305
+ - Haben "halophile Organismen" einen <orange>Nachteil</orange>? Ja. Sie stellen ihr Wachstum ein oder sterben, wenn die Salinität unter eine bestimmte Schwelle sinkt.
306
+ - Was machen Mikroben mit <orange>D-Aminoacids</orange>? Sie verwenden sie für "nonprotein-structural molecules".
307
+ - Bei gram- Bakterien, wie ist der Lipid-A Anteil mit dem <orange>core polysaccharide</orange> verknüpft? Mittels "glucosamine phosphat".
308
+ - Welche <orange>Bakteriengruppe</orange> mag "Axialfilamente" haben? Zum Beispiel die "Spirochäten".
309
+ - Aus Sicht der "mikrobiellen Physiologie", welche zwei Funktionen haben <orange>Stoffwechselwege</orange>? (1) Bereitstellung von Vorstufen (2) Energie für Synthesen und andere Energie-verbrauchende Prozesse bereitzustellen
310
+ - Innerhalb einer Zelle, was ist der zentrale Punkt in der NH4+ Übertragung? Die <crimson>Glutamin Synthase</crimson>.
311
+ - Wie lang kann <orange>Spirulina</orange> werden? A: Einen halben Millimeter (<lightgreen>0.5 mm</lightgreen>).
312
+ - Are "<u>MCPs</u>" important in Phototaxis? No - they are <orange>replaced by a light sensor protein</orange>.
313
+ - In bacteria, sites of "<u>Dam methylation</u>" are typically ...? Seuqneces of GATC, aka <orange>GATC sites</orange>.
314
+ - Wir sehen einen eukaryotischen Mikroorganismus mit <orange>Hydrogenosomes</orange>. Was können wir hier über diesen MO mutmassen? Er wird wohl keine Mitochondrien besitzen.
315
+ - Nenne einen konkreten Vorteil wenn "P. aeruginosa" signal molecules verwendet. A: Die <orange>Biofilm community</orange> ist widerstandsfähiger gegenüber PMNs (polymorphonuclear leukocytes).
316
+ - Woraus kamen die <orange>Plastiden</orange> und die <orange>Mitochondrien</orange> jeweils? Plastiden aus "Cyanobakterien" (-> https://de.wikipedia.org/wiki/Cyanobakterien), Mitochondrien aus "Proteobakterien".
317
+ - In Bacteria, we can find a process termed "RIDA". What does this process do? <orange>RIDA</orange> means "regulatory inactivation of DnaA". It can inactivate DnaA-ATP into DnaA-ADP, with help from the proteins Hda, DnaA and DNA-loaded beta-clamp proteins.
318
+ - Über welchen intrazellulären Mechanismus erfolgt die Regulation der Glutamin-Synthase? Über <orange>Adenylierung</orange>.
319
+ - Nenne ein chemisches Gift für die meisten <lightgreen>Pilze</lightgreen>. A: "Phenol".
320
+ - The <orange>competence master regulator</orange> in bacteria is ... ? The "ComK-protein".
321
+ - Bakterien stellen oft Toxine, aber auch Antitoxine her. Beides wird meistens von dem selben Toxin kodiert. Wieso kann das aber funktionieren? Das Antitoxin ist, im Gegensatz zum Toxin, <crimson>nur wenig stabil</crimson>. Wenn eine Zelle bei einer Teilung das Plasmid verliert, gehen beide Gene verloren. Da aber das Toxin stabiler ist als das Antitoxin und seine Wirkung deshalb länger vorhält, sterben solche Zellen ab. Somit stellen die Toxin-Antitoxin-Paare einen natürlichen Selektionsmechanismus dar, der dafür sorgt, dass nur diejenigen Zellen überleben, die das betreffende Plasmid behalten.
322
+ - <lightgreen>Bacillus subtilis</lightgreen> has a protein called CFS. This abbreviation stands for ... ? <orange>Competence and sporulation factor</orange>.
323
+ - What exactly is a "RNA Thermosensor"? A <orange>RNA Thermosensor</orange> is typically stable at low temperatures, unstable at high temperatures.
324
+ - Give an example for a bacterium with more than one chromosome. A: "<u>Vibrio cholerae</u>".
325
+ - Bakterien besitzen das DnaA Initiatorprotein. Dieses kann an DnaA-Boxen binden, aber nur wenn welche Kondition erfüllt ist? Der Bereich an den das DnaA Protein binden soll, muss <crimson>negativ superspiralisiert</crimson> vorliegen.
326
+ - Growth of lichens per year? <orange>1mm / year</orange>.
327
+ - The "sensor kinase" typically interacts strongly with which other protein, in a "bacterial two-component system"? With a "response regulator". URL: https://en.wikipedia.org/wiki/Response_regulator
328
+ - Mutations in the <crimson>ftsZ gene</crimson> block ... ? "Septum formation".
329
+ - Was ist NodM? Eine <crimson>Glucosaminsynthetase</crimson>, die an der Nod-Faktor Synthese beteiligt ist.
330
+ - How do we call four rod-shaped bacteria attached to one another in a linear manner? <orange>Streptobacilli</orange>. URL: https://en.wikipedia.org/wiki/Streptobacillus
331
+ - In Bacteria, what happens right before "septum formation"? <orange>Cell elongation</orange>.
332
+ - What does "<u>bacilli</u>" mean, translated? <orange>Little staffs</orange>.
333
+ - <orange>Signaltransduktion</orange> in Bakterien wird typischerweise implementiert durch die Bindung eines Signalmoleküls an einen Rezeptor. Dieser Rezeptor ist meistens was für ein Typ? Die Rezeptoren sind hier primär "Sensorkinasen".
334
+ - Name the three basic shapes of bacteria. A: (1) cocci (2) rod-shaped bacillus (3) spiral shape
335
+ - NlpD in Bakterien ist ein Divisom-assoiziierter Faktor. Was kann er aktivieren? <orange>Amidasen</orange>.
336
+ - How do we call cocci that divide in three planes and still remain attached to one another in cubelike groups of eight? "Sarcina". URL: https://www.britannica.com/science/coccus-bacterial-shape#ref44969
337
+ - Which proteins transport specific proteins through the membranes of Bacteria? The "translocases".
338
+ - In which bacteria-group could we find "axial filaments"? In the "<slateblue>spirochete</slateblue>" group. URL: https://en.wikipedia.org/wiki/Spirochaete
339
+ - "<u>Pleomorphic bacteria</u>" can have many shapes. Give two specific examples of such bacteria. A: (1) <tomato>Corynebacterium</tomato> (2) <tomato>Rhizobium</tomato>
340
+ - <crimson>Moll</crimson>: In most bacteria, the SRP consists of an RNA molecule ("4.5S") and ... which protein? The "<u>Ffh protein</u>".
341
+ - What dictates the "upper limits" for the size of prokaryotic cells? Problems related to "<u>nutrient uptake</u>".
342
+ - What does "<u>Glycocalyx</u>" mean, literally? <crimson>Sugar coat</crimson>. URL: https://en.wikipedia.org/wiki/Glycocalyx
343
+ - Bacteria that lack flagella are also called ... ? <slateblue>Atrichous</slateblue>. URL: https://en.wiktionary.org/wiki/atrichous
344
+ - The "DNA synthesis initiator" DnaA has how many domains? "<u>4</u>".
345
+ - Is "<u>Bacillus</u>" gram-positive or gram-negative? Bacillus is gram-positive.
346
+ - In Helicobacter we can see "dark granules". What are these for? They store "<u>polyphosphate</u>".
347
+ - Name two bacteria with more than one "chromosome". A: (1) "Vibrio cholerae" (2) "Rhizobium meliloti"
348
+ - The intracellular response of prokaryotic cells to environmental change is mediated by which two signalling circuits in general? (1) "phosphorylation-dependent signalling circuits" (2) "methylation-dependent signalling circuits"
349
+ - Was sind die sogenannten "H-Antigene"? Oberflächenorganellen wie Geißeln / Flagellen.
350
+ - Nenne 3 Taxien die wir in Bakterien finden können. A: (1) "Aerotaxis" (2) "Chemotaxis" (3) "Phototaxis"
351
+ - Nenne ein möglichst einfaches Kriterium, an dem man messen kann ob es einer Mikrobe gut geht. A: "<u>Fortpflanzung</u>" / "<u>Fortpflanzungserfolg</u>".
352
+ - Nenne a "<u>DNA-bridging protein" in Bacteria. A: "H-NS".
353
+ - Welche Aufgabe hat das bakterielle "ZipA Protein"? It is an anchor that connects the FtsZ ring to the cytoplasmic membrane.
354
+ - A. W. für "auxotrophe Bakterien". A: "<u>Mangelmutanten</u>".
355
+ - Durchmesser der kleinsten Bakterien in Mikrometer? "200 Mikrometer".
356
+ - Andere Bezeichnung für die "<u>Giemsa Färbung</u>"? "Trypsin-G Färbung".
357
+ - Welche Bakterien produzieren Schwefel? Die "Purpurschwefelbakterien".
358
+ - Was genau sind "Methanogene"? Das sind "Archaea", die Methan (CH4) produzieren, und zwar ausgehend von "CO2" und "H2".
359
+ - Der Schwefeloxidierer "Thiomargarita namibiensis" kann wie gross werden (in Mikrometer)? Bis zu "<u>750 Mikrometer</u>".
360
+ - Nenne ein Bakteriuem mit "linearen Plasmiden". A: "Borrelia burgdorferi".
361
+ - Some Archaea may grow up to about 120°C, but there is also at the least one bacterium that can grow in hot springs at about 90°C. Name this bacterium (or another one with such a high temperature range). A: "Thermotoga maritima". URL: https://en.wikipedia.org/wiki/Thermotoga_maritima
362
+ - Ist "Pseudomonas" gram-positiv oder gram-negativ? Es ist "gram-negativ", so wie auch E. coli.
363
+ - Aside from stopping ribosome-biosynthesis, the "stringest response" in bacteria also inhibits the initiation of ... ? "DNA-replication".
364
+ - Is E. coli smaller than a human platelet? Yes.
365
+ - Name a bacterium where no septum formation occurs upon cell division. A: "Caulobacter".
366
+ - In der Mikrobiologie, nenne einen anderen Begriff für "Septum"? "Partition".
367
+ - Welche chemische Reaktion führt die ATPase durch? Sie katalysiert ADP + Pi -> ATP (und die reverse Reaktion).
368
+ - Welche zwei "faces" finden wir am Tus-Protein? (1) "nonpermissive face" (2) "permissive face"
369
+ - What does the word "PRION" stand for? "Proteinaceous infectious agent".
370
+ - Give an example for "conformational protection" in microbiology. A: The "nitrogenase" in Azotobacter is protected from oxygen inactivation by complexing with a specific protein.
371
+ - Name a siderophore expressed by "P. aeruginosa". A: "Pyoverdine".
372
+ - Andere Bezeichnung für "non-moving cells", in regards to bacteria? "Sessile cells".
373
+ - Wie unterscheiden sich Staphylococci-Biofilms von denen anderer Mikroroganismen? Meistens sind Biofilms "multispecies microbial communities", in diesem Fall aber eher monospecies.
374
+ - Name three responses in bacteria controlled by "quorum sensum". A: (1) Virulence factor secretion (2) Biofilm formation (3) Sporulation
375
+ - Why do bacteria use "Phenazines"? These aromatic compounds are helpful for bacteria forming biofilms.
376
+ - In der Biologie, wo finden wir "fluid-filled channels" auf makrozellulärer Ebene (Eukarya exkludiert)? In "Biofilms".
377
+ - Durch welche zwei verschiedenen Prozesse wird ATP generiert? A: (1) Substratkettenphosphorylierung und (2) Electron-Transport generation.
378
+ - Photocyanins absorb what? "Longer-wavelength red light".
379
+ - What is the first protein in a bacterial two-component system? The "sensor kinase".
380
+ - Name a problem of proteins destined to the periplasm. A: They are delivered unfolded and thus "require a set of chaperones".
381
+ - Who theorized in the early 1970s that "Earth behaves like a superorganism"? "James Lovelock".
382
+ - Which two main techniques are widely used for bacterial transformation? (1) electroporation (2) treat cells with calcium ions and use a brief heat shock to pulse DNA into cells
383
+ - In Bakterien wie "Bacillus subtilis" - was passiert wenn das "SpoOA Protein" phosphoryliert wird? Die Phosphorylierung des "response regulators SpoOA" führt zur Expression der Sporulationsgene; und damit zur "Endosporen-Bildung". URL: https://www.sciencedirect.com/science/article/pii/092325089190061E
384
+ - Ist "Thermus aquaticus" ein Bakterium oder eine Archaea? Ein "Bakterium".
385
+ - Nenne ein Bakterium das PHB-Granula enhält! A: "Rhodovibrio sodomensis".
386
+ - Wie lang, in etwa, ist ein einzelnes, durchschnittliches E. coli Bakterium? "2-3 micrometre".
387
+ - Give an example of "differential staining". A: Gram staining. It uses two different dyes.
388
+ - In Bacteria, give another term for "a dormant state". A: "Spores".
389
+ - Do Wolbachia species prefer mature eggs or mature sperm? "Mature eggs".
390
+ - Name the three classes of transport systems in Microbiology. How are they functionally different from one another? We have "simple transport", group translocation and ABC transporters. Only "group translocation" results in a chemical modification though!
391
+ - "S. simulans" tötet "S. aureus" mit Hilfe welchen Toxins? "Lysostaphin".
392
+ - Ist das bakterielle Chromosom mit der Zellmembran verknüpft? Ja.
393
+ - Nenne ein Bakterium das die beiden cell types "motile" und "stationary" besitzt. A: "Caulobacter" (ein gram-negatives Bakterium).
394
+ - A. W. für "positive regulators of transcription"? "Activator proteins".
395
+ - Nenne einen "mikrobiellen Eisenchelatbildner". A: "Hydroxamat".
396
+ - Nenne ein oder zwei sehr hitzebeständige Organismen. A: (1) "Pyrolobus fumarii" (2) "Strain 121"
397
+ - What is the main protein to induce sporulation in "Bacillus subtilis"? "Spo01".
398
+ - Was sind "Protoplasten"? "Zellwandlose Bakterien". URL: https://de.wikipedia.org/wiki/Protoplast
399
+ - Kommen "Magnetosomen" in Eukaryoten vor? Ja. In "Algen".
400
+ - Qualitative Zusammensetzung der Zellen. Unterschied zwischen Prokarya und Eukarya? (1) Prokarya: mehr RNA. (2) Eukarya: höherer Proteingehalt.
401
+ - Was ist der Angriffspunkt des Lysozym? Lysozym hydrolyisert "Beta-1,4-glykosidische Bindungen" zwischen N-Acetylmuraminsäure- (NAM) und N-Acetylglucosaminresten (NAG), in Peptidoglykanen.
402
+ - "DnaA" has an intrinsic ... activity. A: It has an "intrinsic ATPase activity".
403
+ - Name two "environment-sensitive molecular elements" that may provide (genetic) cues for microorganisms. A: (1) "transposable elements" (TEs) (2) "epigenetic components" (ECs)
404
+ - Welche Person erfand das Ausstreichen von Bakterien auf Agarplatten? "Robert Koch". URL: https://de.wikipedia.org/wiki/Robert_Koch
405
+ - Die "Generationszeit von E. coli" bei 37°C in einem Minimalmedium beträgt ... n Minuten? 60-90 Minuten.
406
+ - Die optimale Wachstumstemperatur für E. coli beträgt ... ? "37°C".
407
+ - Nenne ein "Schwefelbakterium"! A: "Thiobacillus ferrooxidans".
408
+ - The "diphteria toxin" can add a "ADP-Ribose" to the eukaryotic translation elongation factor "EF-2". To which particular amino acid there? To a "Histidine".
409
+ - We can find D-aminoacids in bacterial cell walls - but name another area in bacteria, where we may be able to find D-aminoacids. A: In some "peptide antibiotics", such as "actinomycin D". URL: https://de.wikipedia.org/wiki/Actinomycin_D
410
+ - Is there a well-defined microbial species concept? No.
411
+ - Give 1 example for a bacterium that divides asymmetrically. A: "Caulobacter".
412
+ - Wie lange dauert eine Replikationsrunde in E. coli? "40 Minuten".
413
+ - Why are so many copies of the "Epulopiscium" genome necessary? It is "a huge cell" and requires so many copies to support the translational needs of the cell.
414
+ - In der Mikrobiologie, was sind ETEC-Stämme? "Enterotoxische E. coli Stämme".
415
+ - Nenne einen Inhibitor von "Bactoprenol". A: "Bacitracin". (Mnemonic: B und B)
416
+ - Is "Treponema pallidum" a bacterium? Yes, it is.
417
+ - Name a microbial species that lacks the TCA cycle. A: "Treponema pallidum". URL: https://en.wikipedia.org/wiki/Treponema_pallidum
418
+ - Warum mag die Alge "Dunaliella" rot erscheinen? Sie hat viel "Carotinoid" in der Zelle. URL: https://en.wikipedia.org/wiki/Dunaliella
419
+ - What is the "Thermosome"? The Thermosome is a chaperonin protein complex that functions in archaea.
420
+ - When we can finally see a colony on an agar plate, how many individual cells there? 10 ** 7 cells.
421
+ - Definieren den Begriff "Ribozyme"! A: Dies sind RNAs, die als Enzyme (RNA-Enzyme) katalytisch wirksam sind.
422
+ - Was sind "barophile Mikroorganismen"? Diese MOs "benötigen einen hohen Druck".
423
+ - Welches Enzym ist für "stickstoffoxidierende Mikroorganismen" extrem wichtig? Die "Nitrogenase".
424
+ - Nenne 1 chemische Substanz, mittels der wir bakterielle Zellen aufbrechen können. A: Chloroform.
425
+ - Bacteria can sense their environment, and changes within the environment. Give four short examples for this. A: (1) temperature (2) nutrient availability (3) osmolarity (4) cell density ("quorum sensing")
426
+ - Wie sah die frühe Atmosphäre aus? A: Kein Sauerstoff - aber viele Sulfide dank der Reserven.
427
+ - Bakterielle Langstäbchen haben welche typische Länge? Etwa 8 µm.
428
+ - Wie sind die beiden Zuckerderivatmoleküle N-Acetylglucosamin und N-Acetylmuraminsäure miteinander verbunden? Beta (1->4) glycosidisch.
429
+ - Can bacteria make colored antibiotics? Yes.
430
+ - Gib 2 Beispiele für Proteinglykosylierungen an! A: Verknüpfung von Zuckerresten (=Glykosylierung) über eine Sauerstoffbrücke bei Serin und Threonin, oder über eine Stickstoffbrücke über Asparagin.
431
+ - Nenne einen typischen "Einschluss" in E. coli. A: Glykogeneinschlüsse.
432
+ - Welche besondere Proteine findet man in der Zellwand von Pilzen? Mannoseproteins.
433
+ - Name one very deadly toxin produced by fungi. A: Aflatoxin.
434
+ - Nenne "sterol-like molecules" in bakteriellen Membranen. A: Hopanoids.
435
+ - Wie ermitteln wir die "spezifische Wachstumsrate (k)" in der Mikrobiologie? Sie entspricht der "Steigung der Geraden".
436
+ - Microbial communities can be shaped by predation. Name four influencing factors for these, that is, "predators". A: (1) viruses (2) bacterial predators (3) protozoa (4) microfauna
437
+ - Wo wurden die "Volutinkörner" entdeckt? In "Spirillum volutans". URL: https://en.wikipedia.org/wiki/Spirillum_volutans
438
+ - Bdellovibrio is gram-positive or gram-negative? Gram-negative like E. coli.
439
+ - Welche Bakteriengruppe hat einen Typ-IV Pilus? Die gram-negativen Bakterien.
440
+ - How do "diplococci" arise? When cocci divide and remain together.
441
+ - Who was the first person to report having seen a microorganism? Robert Hooke.
442
+ - Zellschrumpfung und Plasmolyse. Ordne diese Begriffe jeweils gram-positiven oder gram-negativen Zellen zu. A: (1) Plasmolyse: gram-positive Zellen. (2) Zellschrumpfung: gram-negative Zellen.
443
+ - Nenne eine "kristallbildende Bakterienart". A: Pseudomonas syringae.
444
+ - Nenne eine Bakterienart die "Rhamnolipide" erzeugt? Pseudomonas aeruginosa.
445
+ - Hfq in Pseudomonas represses what ... ? Catabolic genes, at the post-transcriptional level.
446
+ - Name a bacterium that is used in "denitrification". A: Pseudomonas stutzeri.
447
+ - Why does the "Halobacterium salinarum" (http://en.wikipedia.org/wiki/Halobacterium_salinarum) require Bacteriorhodopsin? It produces ATP under "anoxic conditions" and thus supports slow growth.
448
+ - Acetic acid bacteria such as Acetobacter, can create vinegar, by using alcohol. Energy for this is taken from ... ? ATP.
449
+ - Why does "Neisseria gonorrhoeae" produce pili? Because it requires these to attach to the "urogenital epithelium".
450
+ - In microbial systematics, what does the abbreviation "MLST" stand for? Multilocus sequence typing.
451
+ - Are "Streptomyces" bacteria? Yes - they are the largest genus of the "Actinobacteria".
452
+ - Eine bakterielle Zelle hat wieviel Prozent Protein-Anteil? 55%.
453
+ - Bei welchen Bakterien verwenden wir "Karbolfuchsin"? Bei "gram-negativen Bakterien".
454
+ - CrcZ in Pseudomonads, is what exactly? It is a "regulatory RNA".
455
+ - Wo vor allem finden wir "Fimbrien"? Bei "gram-negativen Bakterien".
456
+ - What is the "key intermediate" in acetate production? Acetyl-CoA.
457
+ - Caulobacter has been used to study which molecular phenomenon? The "cell division process".
458
+ - What is the main purpose of "Salmonella SPI2"? So that Salmonella can grow within macrophages.
459
+ - Um NADPH herzustellen verwenden "Purple Bacteria" was? Einen "external electron donor" (hydrogen, sulfur, sulfite) to feed electrons into a reverse electron transport chain.
460
+ - Nenne 1 Unterschied zwischen "Cyanobacteriota" und "Bakterien". A: Erstere besitzen "Chlorophyll a".
461
+ - Actin-like filaments in Bacteria? Mre-Proteins. URL: https://en.wikipedia.org/wiki/MreB
462
+ - Give an example for a "reproductive parasite". A: The bacterium Wolbachia.
463
+ - Ohne Mikroorganismen würde höheres Leben nicht existieren. Gib hierzu ein Beispiel an. A: Sauerstoff in der Atmosphäre entstand durch die Aktivität des mikrobiellen Stoffwechsels.
464
+ - Name 1 reason why microorganism fix nitrogen, from an ecological point of view. A: Being able to fix nitrogen frees them from depending on fixed nitrogen in its environment - and thus confers a significant ecologiy advantage.
465
+ - Chemolithotrophs obtain their carbon how? From CO2.
466
+ - Welches ist die grösste Untereinheit von Pol III? Die "Alpha Untereinheit" mit etwa 140.000 Dalton.
467
+ - Which aminoacid is used to connect to "m-diaminopimelic acid"? D-alanine.
468
+ - Give another term for a "dormant, microbial subpopulation". A: "persister cells".
469
+ - Which bacteria use "scotophototaxis"? The "phototrophic purple bacteria".
470
+ - Wo genau greift "Lysozym" an? Es spaltet die Beta-1,4-Bindung zwischen "N-Acetylglucosamin" und "N-Acetyl-muraminsäure".
471
+ - How many percent of the microorganisms around us can be cultured? About 0.1%.
472
+ - Name 5 parameters that affect the growth of microorganisms. A: (1) Temperature (2) pH (3) Water activity (== Humidity) (4) Salt (Osmolarity) (5) Oxygen supply
473
+ - In regards to the salt requirement of a microorganism, there are 4 different groups. Name them. A: (1) Halotolerant (2) Halophile (3) Extreme halophile (4) Nonhalophile
474
+ - Give 1 example of a "global response" widespread in all 3 domains of life. A: The "heat shock response".
475
+ - Was sind "xerophile MOs"? Das sind Organismen, die "trockene Lebensräume" bevorzugen.
476
+ - Hydroxamate group complexes which atom (be precise!)? Fe 3-
477
+ - Welche Bakterien haben einen "metallischen Glanz"? E. Coli.
478
+ - Was meinen wir mit "thermotoleranten Organismen"? Dies sind Organismen, die bis zu 50°C noch zu wachsen vermögen.
479
+ - Was kann man mit dem "Phenolrot Boullion Test" nachweisen? Zuckerfermentation.
480
+ - Nenne einen Eukaryoten mit einem Pan-Genom. A: Die Kalkalge "Emilliania huxleyi".
481
+ - Säurefeste Bakterien wie "Mycobacterium" oder "Nocardia" sind nicht gram-differenzierbar. Nenne eine weitere Gruppe an Bakterien, die nicht gram-differenzierbar sind. A: Die "coryneformen Bakterien".
482
+ - The mycoplasma belong to which genus? They belong to the "Mollicutes".
483
+ - The smallest bacteria are n micrometer in diameter? About 0.3 Micrometer.
484
+ - Which bacteria have a "S-layer"? gram+ bacteria
485
+ - Eine E. coli Zelle hat wieviele DnaA Moleküle? Etwa ~1000.
486
+ - A. W. für "log-phase"? Exponentielles Wachstum.
487
+ - Wann ist die Erde entstanden? Vor etwa 4.5 Mrd Jahren.
488
+ - Who has "cold enzymes"? The Psychrophiles. URL: en.wikipedia.org/wiki/Psychrophile
489
+ - Nenne 1 Bakterium das ohne Insertionssequenzen auskommt. A: Bacillus subtilis.
490
+ - Why the name "defined media"? Because we know the exact composition of the (defined) medium.
491
+ - What is "aerotaxis"? Movement towards or away from oxygen. Aerobic bacteria show positive aerotaxis, anaerobic bacteria show negative aerotaxis.
492
+ - A. W. für "Teilungsapparat der bakteriellen Zelle"? Divisom.
493
+ - Unterschiede CW und CCW movement of bacterias. A: CCW bewegt die Zelle zu einem attractant ("forward"), CW veranlasst die Zelle die Richtung zu ändern ("change"). Also wie bei einem 400 Meter Lauf bei Olympia.
494
+ - How do mitochondria reproduce? By "binary fission".
495
+ - W. h. "Fts"? Filamentous temperature sensitive.
496
+ - Nenne 1 "halophilic archaeon"! A: Haloarcula Marismortui
497
+ - Wie mag man type I fimbriae erkennen? Sie sind "uniform an der Oberfläche der Zelle" verteilt.
498
+ - "Bakterielle Gasvesikel" bestehen aus welchen 2 Proteinen? GvpA und GvpC.
499
+ - Tubulin in Eukarya ähnelt ... in Bacteria. A: FtsZ.
500
+ - Name a Bacterium with two chromosomes. A: Vibrio cholerae.
501
+ - In der Mikrobiologie, was sind "EHEC-Stämme"? Enterohämorrhagische E.coli Stämme (begleitet von "blutigem Durchfall").
502
+ - Durchmesser eines bakteriellen Gasvesikels? 100 nm.
503
+ - Give a specific example for "group translocation" in Bacteria. A: The "Phosphotransferase System".
504
+ - Wer produziert "Tetracycline" und wie wirken sie? Sie werden von "Streptomyceten" gebildet und binden an die 30S UE der Ribosomen.
505
+ - Wer hat das "Cholera-Bakterium" entdeckt? Robert Koch.
506
+ - Bei Bakterien, was heisst "ruv"? Resistance gegenüber UV-Licht.
507
+ - A. W. für "Nitratatmung"? Denitrifikation.
508
+ - MinCD inhibiert ...? FtsZ.
509
+ - Wie bestimmen wir die "Luftkeimzahl"? Mit Hilfe eines "Luftkeimsammlers".
510
+ - Nenne 3 Möglichkeiten bei der Konsistenz der bakteriellen Nährmedien. A: (1) feste Medien (2) Halbfeste Medien (3) flüssige Medien
511
+ - What do Saprophages use as their "food"? Dead organic matter of all kind.
512
+ - What means "morphology" in microbiology? Cell shape.
513
+ - Was binden die "selektiven Siderophore" bevorzugt? Dreiwertiges Eisen (Fe 3+).
514
+ - The SRP interacts with which Fts component? Fts Y.
515
+ - Helix-Turn-Helix has which 2 Helices? (1) "recognition helix" (2) "stabilizing helix"
516
+ - Spirilla have what shape? Spiral-shaped.
517
+ - Warum verwenden wir die "Agarstichkultur" im mikrobiellen Labor? Um das Verhalten von Bakterien gegenüber "Luftstauerstoff" festzustellen.
518
+ - Mit Hilfe des "Kligler-Agar" kann man in der mikrobiologischen Diagnostik was genau nachweisen? Gramnegative Bakterien.
519
+ - Welche 3 Abteilungen unterscheidet man innerhalb der Bacteria? (1) Cyanobacteriota (2) Negibacteriota (3) Posibacteriota
520
+ - Which group of bacteria are usually unaffected by Penicillin? Gram-negative Bacteria.
521
+ - In general, by which logic can we identify "virulence genes" in a bacterium? Mutations that inactivate these genes, will render the bacterium non-pathogenic.
522
+ - Which gene codes for "adenylate cyclase"? cya.
523
+ - Conjugation depends on ...? The F factor.
524
+ - Gasvesikel: Das GvpA-Protein macht wieviel Prozent im Gasvesikel aus? 97%.
525
+ - A. W. für "generation time" for cells in culture? The "doubling time".
526
+ - Give 2 reasons for why a bacterium may wish to form a calcium-dipicoline acid complex. A: (1) binds water thus helps dehydrate the Endospore (2) intercalates DNA, thus protects it against heat denaturation
527
+ - In order to yield H2, starting from Pyruvate, catalyzed by the enzyme "Hydrogenase", we need ...? The iron-sulfur protein "Ferredoxin".
528
+ - Was verändert sich in einer Batch-Kultur nicht? Das Medium.
529
+ - Name 2 (more or less natural) ways how "microbial growth" can be halted. A: (1) When nutrients are exhausted (2) accumulation of toxic waste products
530
+ - Name the 3 archaeal promoter elements. A: (1) INIT (2) TATA-box (3) BRE: B recognition element
531
+ - What role does the GvpC protein have in a gas vesicle? It strengthens the shellf of the gas vesicle, by cross-linking copies of Gvp1.
532
+ - Es gibt ausser O2 auch alternative Elektronenakzeptoren. Nenne 3 energiereiche davon. A: (1) Fe3+ (2) NO3- (3) NO2
533
+ - Nenne die 3 Importer-Typen! A: (1) Antiporter (2) Symporter (3) Uniporter
534
+ - Wo in der Biologie mögen wir "Dipicolinsäure" finden? Dies ist eine Substanz, die während der Sporulation von Mikroorganismen gebildet wird.
535
+ - Was sind "kryptische Plasmide"? Diese verleihen der Zelle keine neuen Eigenschaften.
536
+ - Definiere Dehalogenierung! A: Das ist das "Abspalten der Halogensubstituenten" aus organischen Verbindungen (durch MO in diesem Kontext)
537
+ - How to find enzymes that function at high salinity? We can look at "halophiles".
538
+ - Warum produziert H. pylori "Urease"? Um im Magen Ammonium (NH4+) zu produzieren, welches die Magensäure neutralisiert.
539
+ - Salopp formuliert, was machen Integrons? Sie fangen Gene aus anderen Quellen ein; sind Bestandteil einiger Transposons.
540
+ - Define "Bacteremia". A: Bacteremia is the "presence of bacteria in the bloodstream".
541
+ - Nenne einen Mikroorganismus der Citronensäure herstellt! A: Der Pilz "Aspergillus".
542
+ - Wie wird Dipicolinsäure quervernetzt? Über Ca 2+ Ionen.
543
+ - Hat Acinetobacter eine Kapsel? Ja.
544
+ - Wie dick sind Fimbrien? Etwa 30-40nm.
545
+ - Nenne 1 Beispiel für ein "peritriches Bakterium". A: Proteus sp.
546
+ - Name the two most famous members of the "Euryarchaeota". A: (1) the methanogens (2) the halophiles
547
+ - A. W. für "viele Ribosomen"? Polysomen.
548
+ - Wie nennen wir die "Vorstufe von Protoplasten"? Sphäroplasten.
549
+ - Welches Bakterium sieht aus wie ein gekrümmtes Stäbchen? Vibrio cholerae.
550
+ - A. W. für "Kugelförmige Bakterien"? Kokken.
551
+ - Wie lange dauert "Flash Pasteurization"? 15 Sekunden.
552
+ - Wie nennen wir den verankerten Teil einer Geißel? Basalkörper.
553
+ - How much ATP is required per fixed N2? 16 ATP.
554
+ - Metaphorically speaking, Penicillium looks like ...? A house, and a garage. The garage door is affected.
555
+ - Where in a bacterial cell do we find "cardiolipins? In patches called "domains" near the "cell poles".
556
+ - Welche Ladung trägt Ethanolamine? +
557
+ - For Bioterrorism, which bacterium is "useful"? Bacillus anthracis.
558
+ - Nenne die fünf "Key Genera" des Phyla Spirochaetes in alphabetischer Reihenfolge. A: (1) Borrelia (2) Cristispira (3) Leptospira (4) Spirochaeta (5) Treponema
559
+ - Wo findet man den "Fenna-Matthews-Olson Complex"? Bei Photolithoautotrophs.
560
+ - Familie von E. coli? Enterobacteriaceae.
561
+ - Warum braucht der Wasserfarn Azolla das Cyanobakterium "Anabaena azollae"? Anabaena azollae versorgt den Farn mit Stickstoff.
562
+ - Where does the "deep sea" start? At water depth greater than 1000m.
563
+ - What is an "oligotroph"? This is an organism that grows best at very low concentration of nutrients.
564
+ - Was geschieht in den "Heterocysten" der Cyanobakterien? Stickstofffixierung - hier wird molekularer Stickstoff (N2) in Ammonium (NH4+) umgewandelt.
565
+ - Give one example for a "marine ammonia-oxidizing bacteria". A: Nitrosococcus
566
+ - Wann wurde Proteorhodopsin erstmals entdeckt? Im Jahr 2000.
567
+ - Name a big biosynthetic difference between Archae and Bacteria. A: The archaeal lipids have an L-glycerol while bacteria and eukaryotes have a D-glycerol. This is strong evidence for a different biosynthetic pathway.
568
+ - Name an organism that can "replicate asymmetrically". A: "Hyphomicrobium".
569
+ - Antibacterial agents can be classified into which 3 classes? (1) bacteriostatic (2) bacteriocidal (3) bacteriolytic
570
+ - Gib ein Beispiel für "chemolithotrophe Bakterien". A: Nitrifikanten
571
+ - Warum eigentlich können Mikroorganismen bei zu niedrigen Temperaturen nicht mehr wachsen? Die Membran erstarrt - Transportprozesse verlangsamen.
572
+ - Nenne einen natürlich-vorkommenden Vertreter der auxotrophen Mikroorganismen. A: Milchsäurebakterien.
573
+ - Formel für Wachstum der Bakterien? 2 ** n, wobei n die Generation ist. Generation 10 ist also 2 ** 10.
574
+ - Pili ... pilus... was heisst eigentlich pilus? Haar.
575
+ - Was sind die "F-Antigene"? Das sind die Proteine der Fimbrien.
576
+ - When do we use the KOH Test? We use this quick, inexpensive as a fungal test-system. For instance, to find out whether Candida albicans has infected the skin or not.
577
+ - Wie nennen wir Mikroorganismen, die saure Bedingungen für ein Wachstum bevorzugen? Acidophile Mikroorganismen.
578
+ - What are the "haloalkaliphiles"? These are alkaliphiles that require high salt content to survive.
579
+ - Sind Mycobakterien bei der Gram-Färbung eher gram-negativ oder gram-positiv? Gram-positiv.
580
+ - Gib ein Beispiel wo die Gram-Färbung nicht funktioniert. A: Säurefeste Bakterien wie "Mycobacterien" sind nicht Gram-differenzierbar.
581
+ - Warum wachsen die Mycobakterien so langsam? Ihre wichtige Lipidschicht behindert den Nährstoffaustausch. Sehr viel Energie wird für für die Synthese dieser Lipide verwendet.
582
+ - Chemolitotrophs use what substance as their carbon source? CO2.
583
+ - Nenne 2 keulenförmige Bakterien. A: (1) Bifidobakterien (2) Corynebakterien
584
+ - Was ist der "Aw-Wert"? Activity of Water. Die Wasseraktivität ist ein Mass für frei verfügbares Wasser in einem Material (p / p0). Wichtig ist er wegen der Haltbarket von Lebensmitteln.
585
+ - What exactly is the "FtsK" in a bacterium? FtsK is a septum-located "DNA translocase".
586
+ - Nenne 4 Mechanismen zur Resistenzentwicklung bei Bakterien. A: (1) Verhinderung der Aufnahme: Antibiotikum wird nicht mehr aufgenommen (2) Efflux: Efflux-Pumpen pumpen das Antibiotikum wieder heraus (3) Modifikation: Antibiotikum wird modifiziert, z.B. durch Acetylierung (4) Inaktivierung: Antibiotikum wird gespalten und damit inaktiviert
587
+ - Welche 3 Aminosäuren werden im "3-Phosphoglycerate Weg" synthetisiert? Mnemo: In 3-Phosphoglycerate kommt s, g und c vor, ergo -> (1) Serine (2) Glycin (3) Cysteine
588
+ - Was heisst der "Anstieg" bei einem Wachstumsgraphen in einer Bakterienpopulation auf englisch? Slope.
589
+ - Warum sind "Salterns" (=Hypersaline Water) rot? A: Aufgrund des Bacteriorhodopsin.
590
+ - A. W. für "mordant"? Binding agent.
591
+ - Welche funktionelle Gruppen finden wir bei "Ethanolamine"? -O-CH2-CH2-NH3 +1
592
+ - Bacteria can have alter egos? Yes, in form of "pathogenic strains".
593
+ - What means "lophotrichous"? When several flagella appear only at the same (one) pole.
594
+ - In Bacteria, "quorum sensing" is mediated by ...? Farnesol.
595
+ - Where can we find an "interbridge" among the Bacteria? In the cell wall of gram-positive bacteria, like "Staphylococcus aureus".
596
+ - Nenne drei gebräuchliche Fluorophores in der Mikroskopie. A: (1) FITC (2) DAPI (4 Strich 6-Di-amidino-2-phenylindol) (3) Acridine orange
597
+ - Warum ist "Bdellovibrio" so besonders? Es infiltriert gram-negative Bakterien, indem es in das Periplasma wandert und dort Biopolymere verdaut.
598
+ - Für die praktische Isolierung von Mutanten können wir welche zwei Arten von Mutationen unterscheiden? (a) selektierbare und (b) nicht selektierbare Mutationen.
599
+ - Wie kann man experimentell zwischen "azi S" und "azi R" unterscheiden? Durch Verwendung von "sodium azide".
600
+ - Ich gebe Cycloheximid zu Archae und Eukarya. Effekt? Eukarya sind sensitiv gegenüber Cycloheximid, das als "Translationshemmer" wirkt.
601
+ - Unterscheide "high affinity DnaA binding sites" von "weak affinity DnaA binding sites". A: Eine "weak affinity DnaA binding sites" kann nur DnaA binden wenn es auch ATP gebunden hat; an die "high affinity DnaA binding sites" hingegen kann DnaA binden mit aber auch ohne gebundenem ATP.
602
+ - What are "phenazines"? These are nitrogen-containing heterocyclic compounds.
603
+ - Wo finde ich "Phthiocerole"? In der "äußeren Hülle bei Mycobakterien".
604
+ - Name an unusual contributor to a mycoplasma cell wall. A: Sterols.
605
+ - Which bacteria have the "sortase"? The gram-positive bacteria.
606
+ - Which two important factors - other than pH and temperature - can be controlled in a chemostat? (1) Growth Rate (2) Cell density of the culture
607
+ - Welche Aufgabe hat der datA Locus? Er fischt überflüssige DnaA Proteine weg.
608
+ - Wo bindet Arg399 des DnaA-Proteins am oriC allgemein? In die minor groove der DNA - aber nur wenn die DNA negativ superspiralisiert ist.
609
+ - Name 2 prokaryotes without cell walls. A: (1) Mycoplasma (2) Thermoplasma
610
+ - Name the main structural motif of "membrane-spanning transporters" in Bacteria. A: 12x Alpha-Helices.
611
+ - What are "symporters"? These are transporters (co-transporters actually) that transport a substance together with another molecule (usually a proton).
612
+ - Das cytoplasmatische Material in einer Bakterienzelle, also Ribosomen, Plasmide etc., wird wie auf die Tochterzellen verteilt? Es wird nach dem Zufallsprinzip segregiert, es erfolgt also eine "dispersive Segregation".
613
+ - Why do Bacteria store "polyphosphat" in granules? These PO4 3- granules can be used to lateron generate ATP and can also be used for nucleic acid synthesis.
614
+ - Mittels Photometer können wir die Bakteriendichte messen, aber das hat einen Nachteil (ausgenommen der Tatsache das wir auch tote Zellen zählen mögen). Welchen? Die Messung hat nur einen kleinen Bereich, in dem sie linear verläuft.
615
+ - How many Bacteria may exist on planet earth? 5 x 10 ** 30.
616
+ - Wie viele Chromosomen hat "Dictyostelium discoideum"? 6.
617
+ - Nenne ein Bakterium mit 2 circulären Chromosomen. A: Vibrio cholerae.
618
+ - Im Sec-abhängigen Weg bei Bakterien, nenne die 3 Schritte. A: (1) Targeting (2) Translokation (3) Freisetzung
619
+ - Woher bezieht das "Tat-Export System" die Energie für die Translokation von Proteinen? Durch die PMF.
620
+ - Was ist der wichtigste Punkt bei der "Sec-abhängigen Proteinsekretion" in Bakterien? Die Protein sind ungefalten während sie durch die cytoplasmatische Membran transloziert werden.
621
+ - What is the "nucleoid occlusion factor"? SImA.
622
+ - Was heisst "Fts KOPS"? FtsK Oriented Polar Sequences. Diese Sequence ist: GGGNAGGG.
623
+ - Name two differences of pili, compared to fimbriae, in bacteria. A: (1) Pili are typically longer than fimbriae (2) There is usually only one Pili on the surface to be found
624
+ - Welche Aufgabe hat MinE? MinE bringt den MinCD-Komplex an die Pole; er agiert somit als eine Art Transporter.
625
+ - "Acetogenese" versus "Methanogenese". Wer liefert mehr Energie? Die Methanogenese.
626
+ - A. W. für "Zip A"? FtsZ-Anker.
627
+ - Es gibt spezifische Tetrapeptide in der bakteriellen Zellmembran. Dabei ist vor allem die Diaminopimelinsäure wichtig für die Quervernetzung, die an ... welcher Aminosäure erfolgt? An die Carboxygruppe des terminalen D-Alanins des benachbarten Peptids.
628
+ - Was für ein Typ ist das "Bacteriohopanetetrol", das man in manchen Membranen finden kann? Ein "Hopanoid".
629
+ - Which bacteria occur in three dimensional cubes? Sarcina.
630
+ - In E. coli, was ist "DnaC" und was ist "DnaB"? DnaC ist der "Helicase loader", DnaB ist die Helicase (als Hexamer).
631
+ - Nenne ein sehr kälteliebendes Bakterium, das auch bei Temperaturen von -10°C noch herumschwimmen kann! A: Colwellia psychrerythraea. URL: http://microbewiki.kenyon.edu/index.php/Colwellia_psychrerythraea
632
+ - In Microbiology, what means "amensalism"? This is a relationship in which the product (or action) of one organism has a negative effect on another organism. URL: http://en.wikipedia.org/wiki/Biological_interaction#Amensalism
633
+ - Explain "bridging DnaA"? Yes. The DiaA tetramer can bind multiple molecules of DnaA, and thus serves as a bridge to bring two DnaA molecules together.
634
+ - How do we call organisms with an optimal pH at 5.5 - 7.9? Neutrophils.
635
+ - Welche Energie verwendet FtsZ? GTP.
636
+ - What enzyme is required for making new bacterial cell wall? Autolysin.
637
+ - Name 6 important proteins that can be found at the oriC locus. A: (1) DnaA (2) DnaB (3) DnaC (4) HU (5) gyrase (6) SSB
638
+ - Why the name "penicillin-binding protein"? These proteins are inhibited by penicillin.
639
+ - What is the role of the "thumb" of the DNA-Polymerase? It binds the DNA as it exits the enzyme - this is important for processivity.
640
+ - What type is "FtsA"? It is an ATPase.
641
+ - Warum benötigt das DnaA Protein eine Alpha-Helix und Arginin an Position 399? Diese sind für die spezifischen Erkennung der DnaA box verantwortlich.
642
+ - Why do eukaryotic microbes reach stationary phase sooner than Bacteria? They are bigger - that is why.
643
+ - Name an antibiotic that can function against "Clostridium difficile". A: Vancomycin.
644
+ - What special structure does Bdellovibrio have? A spherical structure called "bdelloplast".
645
+ - Can a H+ proton diffuse through a bacterial membrane? No.
646
+ - Was ist die "Anhydrobiose", wo finden wir sie? Anhydrobiose ist "Leben ohne Wasser". Wir finden sie bei den Tardigrada (den Bärtierchen).
647
+ - Name a very characteristic property of the "periplasmic binding protein"! A: It has a high affinity for its substrate.
648
+ - Name an antibiotic that "Serratia marcescens" can produce. A: "prodigiosin".
649
+ - MinE inhibiert ...? MinCD.
650
+ - The SimA dimer can bind what exactly? Two FtsZ protofilaments.
651
+ - What is the name of the "nucleoid occlusion factor"? SImA.
652
+ - FtsW hat was für eine Aufgabe? Es bringt FtsI an den Z-Ring.
653
+ - Was machen "Penicillin-bindende Proteine" (PBPs) normalerweise? Sie katalysieren die Polymerisation von NAG und NAM (Transglycosylierung) sowie die Verknüpfung zwischen den Peptidbrücken (Transpeptidierung).
654
+ - N-Acetylglucosamin unterscheidet sich N-Acetylmuraminsäure. Welches der beiden Moleküle ist grösser und komplexer? N-Acetylmuraminsäure.
655
+ - Zur Erhaltung der Stabilität der Lipopolysaccharidschicht ist welches Ion notwendig? Ca2+.
656
+ - Bei der DNA Replikation, was genau macht das Tur protein? Es hält die DnaB Helikase an der Ter-Stelle auf.
657
+ - How does "Actinomycin" work? It inhibits RNA synthesis by combining with DNA and blocking RNA elongation.
658
+ - Bei der Biosynthese von Methionin, nenne 1 wichtigen Unterschied zwischen Eukaryoten und Prokaryoten. A: Eukaryoten verwenden Acetyl-CoA, Prokaryoten verwenden Succinyl-CoA.
659
+ - What does the LuxS gene produce? Autoinducer AI-2.
660
+ - Can Bacteria sense spatial gradients of chemicals? No.
661
+ - In the DnaA Protein, which domain is responsible for dimer-formation? Domain I.
662
+ - The Protein SeqA shows an affinity for ...? Hemimethylated origins.
663
+ - In Bacteria, what do the "Rsb proteins" activate? The stress sigma factor Sigma B.
664
+ - Im OriC gibt es AT-reiche 13bp Sequenzen, die man auch 13mers nennt. Nenne ein weiteres, anderes Wort für diese Elemente. A: "DNA unwinding element"
665
+ - Which two types of "random movement" are available to bacteria? (1) runs (2) tumbles
666
+ - Was nimmt der SRP Komplex als Energie? GTP, da er eine GTPase-Aktivität hat.
667
+ - What is the "dilution rate"? This is the rate at which fresh medium is pumped in and spent medium is removed.
668
+ - What is the final step in cell wall synthesis? Transpeptidation.
669
+ - How is "growth" defined in microbiology? An increase in the number of cells.
670
+ - FtsZ is a homolog towards? TUBULIN.
671
+ - How would you define a "batch culture"? No fresh medium is added during incubation, thus nutrient concentration decline and waste products accumulate during growth.
672
+ - How do we control cell density in a chemostat? We limit a nutrient, just as in a batch culture.
673
+ - Give an example for a microbe with 3 replication origins. A: Sulfolobus acidocaldarius. URL: http://de.wikipedia.org/wiki/Sulfolobus_acidocaldarius
674
+ - Bei Bakterien, wie unterscheiden sich "Kapsel" und "Schleimhülle" voneinander? Die Kapsel ist mit der Zellwand fest verankert, die Schleimhülle nicht.
675
+ - Wie tötet "Bacillus thuringiensis"? Bildet kristallförmige Eiweisse, die im Raupendarm in die Giftform konvertiert werden.
676
+ - In Bakterien gibt es die DNA-Helikase DnaB. Wieviele Untereinheiten hat dieses Protein? Es ist ein Hexamer, also 6.
677
+ - Was meinen wir mit "Sequestrierung des dnaA Gen Promoters"? Das er an die Zellwand geheftet wird.
678
+ - How do bacteria form Pentoses? They remove one carbon atom from a hexose in the form of CO2.
679
+ - Der oriC locus hat Bindestellen für DnaA, aber es gibt in der Nähe noch einen weiteren locus der 5 DnaA Bindungsstellen hat. Wie heisst diese Locus? datA Locus.
680
+ - Welche Domäne im DnaA Protein bindet ATP? Domain III.
681
+ - Für die DNA Replikation von Bakterien gibt es ein Protein namens DiaA. Was heisst "DiaA"? DnaA initiator-associating protein.
682
+ - Vergleicht man "Rickettsia prowazekii" mit anderen Bakterien-Genomen fällt einem was auf das besonders ist? 24% nicht codierender DNA-Anteil (dies ist ein hoher Wert für Bakterien).
683
+ - "Rickettsia Prowazekii" hat wie viele bp im Genom? 1.1 Mio bp.
684
+ - The DnaA protein has a domain IV. What is the role of this domain? This domain of 11 kDa in size, constitutes the "DNA-binding domain".
685
+ - What states does the initiator protein DnaA have? An active ATP-bound form and an inactive ADP-bound form.
686
+ - Erkläre den Unterschied in quorum sensing zwischen gram+ und gram- Bakterien. A: gram- Bakterien verwenden acyl-homoserine lactone, gram+ verwenden kurze Peptide die oft chemisch modifiziert sind.
687
+ - Die bakterielle DNA ist um strukturelle Proteine gewickelt. Nenne 3 davon. A: (1) H-NS (2) IHF (3) HU
688
+ - Was macht das Enzym "ATP-Sulfurylase"? Heftet Sulfation an ein Phoshphat an ATP. Es entsteht APS DAS IST NOCH NICHT PERFEKT HIER.
689
+ - Was ermöglicht der Chemostat? Er ermöglicht es das eine Kultur von grossen Bakterienmengen bei konstanten Bedingungen wachsen kann.
690
+ - Why is it so important for the cell to generate "acetate" from "pyruvate"? Because it also generates ATP when doing so.
691
+ - Was können Methanobacterien? CO2 zu Methan reduzieren.
692
+ - Bacillus subtilis is gram+ or gram-? It is gram+, unlike E. coli.
693
+ - SecB gehört zu welchem Sekretionssystem? Type II secretion pathway.
694
+ - In der Mikrobiologie, welches Medium steht hinter "CMD"? Cornmeal dextrose agar.
695
+ - Nenne 1 Bakterium mit linearer DNA im Genom. A: Borrelia burgdorferi.
696
+ - Acetate hat wieviele C? 2.
697
+ - "Sarcina" bei Zellen hat wieviele Zellen? 8.
698
+ - Bakterien können wie schnell, gemessen an ihrer Körperlänge, schwimmen? Bis zum 50-fachen ihrer Körperlänge.
699
+ - Which MO has the largest prokaryotic genome known? Sorangium cellulosum.
700
+ - Warum verwenden manche Prokaryoten Gasvesikel? Um der Schwerkraft entgegenzuwirken.
701
+ - Which bacteria are renowned for their many vitamin requirements? Lactic acid bacteria.
702
+ - Der CRISPR locus hat den cascade complex, der welche Untereinheiten hat? CasA, CasB, CasC, CasD, CasE.
703
+ - What is a "one-component regulatory system"? This is a system in where a single protein detecs a signal and carries out a regulatory response.
704
+ - Was ist "methicillin"? A semisynthetic penicillin.
705
+ - Do Prokaryotes have an immune system? Yes, CRISPRs.
706
+ - How does a bacterial cell know that the competence pheromone comes from other cells? By cutting out the peptide as a larger protein as it passes through the membrane of the cell in which it is synthesized.
707
+ - What molecule inhibits the synthesis of cyclicAMP? Glucose.
708
+ - Name 1 Protozoa that has multiple nuclei within each single cell. A: Paramecium.
709
+ - What is "Chlamydia"? An intracellular bacterial parasite.
710
+ - The CRISPR system provides a form of acquired immunity. How does it achieve this? Short segments of foreign DNA (= "spacers") are incorporated into the genome between CRISPR repeats, and serve as a memory of past exposures.
711
+ - Brucella abortus seeks which sugar in the placenta? Erythritol.
712
+ - Definiere "Glycocalyx". A: A Polymer secreted by a microorganism that coats the surface of the microorganism.
713
+ - A. W. für "fraktionierende Sterilisationsmethode"? Tyndallisieren.
714
+ - What is the "thermal death zone"? The time it takes to kill all cells at a given temperature.
715
+ - Why does attenuation occur in the laboratory? These may grow faster than the more virulent strains.
716
+ - Wer widerlegte die "Urzeugungstheorie"? Louis Pasteur.
717
+ - "Bacillus subtilis" kodiert für n verschiedene Sigmafaktoren? 18.
718
+ - Sigmafaktor RpoS hat welche zelluläre Aufgabe? Adaptation to environmental stress.
719
+ - In quorum sensing, how does induction of the lux genes work? They are turned on only when the bacterium is close to other bacteria.
720
+ - Compare the general division strategy between prokaryotes and eukaryotes! A: Prokaryotes divide by fission, eukaryotes divide by mitosis and cytokinesis.
721
+ - "Fusarium graminearum" verursacht was genau und wo? A: Wurzelfäule, bei Weizen.
722
+ - What means "Diauxie"? Growth on two sugars, such as lactose and glucose.
723
+ - What is a "regulon"? When more than 1 operon is under the control of a single regulatory protein.
724
+ - A. W. für "bacterial pheromones"? Autoinducers.
725
+ - Give a specific example for "quorum sensing". A: Pathogenic bacteria. The coordinated expression of a toxin may successfully cause disease.
726
+ - What are "Bacteriocins"? Bacterially produced, small heat-stable peptides that are active against other bacteria.
727
+ - What is "quorum quenching"? This is the process of preventing quorum sensing by disrupting the signalling, usually by degrading the signalling molecule.
728
+ - What is the "archaellum"? A whip-like structure on the cell surface of many archaea.
729
+ - Was ist eine "Coenocyte"? Eine Coenocyte ist eine multinucleate cell, bei dem sich das Cytoplasma von einem Nuclei zum nächsten erstreckt. So ein Organismus ist somit "vielkernig".
730
+ - Was ist die "Salt-in" Strategie bei Mikroorganismen? Die Aufnahme anorganischer Salze in das Cytoplasma.
731
+ - Wo genau finden wir das Protein RelA? Es ist assoziiert mit der 50S Untereinheit des Ribosoms.
732
+ - In Bacteria, what do we find in the spacer between 16S + 23S rRNA gene? A tRNA Gene.
733
+ - Das Wort "Enzybiotics" ist ein Mix aus ... ? "Enzyme" und "Antibiotics".
734
+ - Was entsteht neu bei der bakteriellen Reduktion von Nitrat zu Nitrit? H2O.
735
+ - In Microbiology, why do we use "sulfa drugs"? They are growth factor analogs that can inhibit the growth of bacteria.
736
+ - What can the Fts protein form? The divisome.
737
+ - In der Mikrobiologie, welche Rolle hat das Protein MinE? It directs the formation of the FtsZ ring.
738
+ - Nenne den genauen (stöchiometrisch korrekten) "Input" und "Output" der Nitrogenase. A: (1) N2 ist Input (2) 2x NH3 (Ammoniak) ist Output
739
+ - How does "Epulopiscium" reproduce? It reproduces exclusively through an unusual form of sporulation.
740
+ - What is "decontamination"? The treatment of a surface to make it safe to handle.
741
+ - What is "sterilization"? The killing or removal of all viable organisms.
742
+ - Was sind "Mixotrophe"? Dies sind Chemolithotrophe, die mit einer organischen Kohlenstoffquelle und einem anorganischen Elektronendonor wachsen.
743
+ - Which MO grows on "burnt trees"? Neurospora.
744
+ - Wie geht die mikrobielle "Alkoholreihe"? Ethanol zu Acetaldehyd zu Essigsäure (EAE).
745
+ - In der Mikrobiologie, was ist eine "Transaminase"-Reaktion? Das Verschieben einer NH2-Gruppe von einer Aminosäure auf eine organische Säure.
746
+ - Was heisst "Desinfektion"? Keimreduzieren.
747
+ - Why do bacteria use "gas vesicles"? So that they can float.
748
+ - What is "Hydrotaxis"? Movement towards or away from water - water acts as the stimulus for the movement. See at URL: http://www.answers.com/topic/hydrotaxis
749
+ - Which bacteria have a perisplam? Only gram negative bacteria.
750
+ - Name a gliding myxobacterium. A: Myxococcus xanthus.
751
+ - Proteins are exported by ...? Translocases.
752
+ - Welches Mineral finden wir in bakteriellen Magnetosomes? Fe3O4.
753
+ - Name one very large procaryote. A: Epulopiscium fishelsoni.
754
+ - Wofür steht der Name "ABC transport systems"? ABC steht für "ATP-binding cassette". Diese Struktur kann also ATP binden.
755
+ - Geobacter wächst bei n °C? 121 °C.
756
+ - 1 Beispiel für einen Symporter nennen. A: Lac Y-Permease.
757
+ - Wieso wirkt Isopropanol besser als Ethanol gegen Bakterien? Kann die bakterielle Membran leichter überwinden.
758
+ - Nenne einen "bakteriellen Lipidcarrier". A: Bactoprenol.
759
+ - Nenne 4 Enzyme die bei der Denitrifikation eine Rolle spielen. A: (1) Nitratreduktase (2) Nitritreduktase (3) Stickstoffmonoxid-Reduktase (4) Distickstoffmonoxid-Reduktase
760
+ - Wieviele Moleküle Glucose nimmt eine E. coli Zelle pro Sekunde auf? 200.000 Moleküle Glucose.
761
+ - Was besagt die GAIA Theory von James Lovelock? Life on Earth functions as a single organism which actually defines and maintains environmental conditions necessary for its survival.
762
+ - Nenne eine "methylotrophe Hefe". A: Picchia pastoris.
763
+ - What does "Teicoplanin" do? This antibiotic inhibits the construction of bacterial cell walls.
764
+ - Welche Atome finden wir in einer "Hydroxamate Group"? N-OH-C=O.
765
+ - Bakterien brauchen und verwenden Eisen. Durch welches Atom kann es ersetzt werden? Mn2+ (Mangane).
766
+ - What is the "evolutionary rate"? This is the number of Nucleotide changes per site per year.
767
+ - In Biology, what is "disruptive selection" and when does it take place? It takes place when two phenotypes with high fitness are separated by intermediate phenotypes of lower fitness. This usually occurs in patchy environments, with more than one discrete phase.
768
+ - Einige Bakterien verwenden welche Alternative zu Ubichinon? Menachinon.
769
+ - Sind die "Mesosomes" Organellen? Nein, es sind Artefakte, die durch die chemische Fixierung entstanden sind.
770
+ - Was ist "Skotophobotaxis"? Dies kann mit "Taumeln bei Dunkelheit" übersetzt werden. Ein phototrophes Bakterium schwimmt aus dem beleuchteten Gesichtsfeld in die Dunkelheit.
771
+ - Welche Farbe haben gram positive, welche Farbe gram negative Bakterien? Gram positiv sind violett, Gram negativ sind rot.
772
+ - Nenne ein Protein in dem wir Pantothensäure finden mögen. A: Acylcarrierprotein.
773
+ - Welche "Blockade" gibt es während der Glycolyse? NAD+ muss vorhanden sein.
774
+ - In dem zellulären Stoffwechsel wird NAD/NADH und NADP/NADHPH eingesetzt. Wie genau allgemein? NAD für katabole Prozesse, NADP für anabole Prozesse.
775
+ - Wann, in welcher Phase, sind Bakterien allgemein kompetent? During the late phase of their growth cycle.
776
+ - Nenne einen Vertreter eines typischen Carotinoids. A: Beta-Carotin.
777
+ - A. W. für "generation time"? Doubling Time.
778
+ - Welche Farbe hat "Retinal" und wo findet es eine Verwendung bei den Bakterien? Es ist purple (violett) und ein Chromophore in Bacteriorhodopsin.
779
+ - In welche 2 Teile kann man den Stoffwechsel einteilen? (1) Energiestoffwechsel (2) Leistungsstoffwechsel
780
+ - Nenne 3 phototrophe Mikroorganismen. A: (1) Cyanobacteria (2) Purpurbacter (3) Helicobacter
781
+ - Welcher Genus zeigt einen "Hydroxypropionate pathway of CO2 incorporation"? Chloroflexi.
782
+ - Ich entziehe einem Bakterium Glucose. Was geschieht intrazellulär? Der cAMP Gehalt steigt an, da die Adenylat-Cyclase aktiver wird.
783
+ - The "S. aureus" colonization of abiotic surfaces depends on ..? The charge of its teichoic acid.
784
+ - Welche allgemeine Aufgabe übernimmt NAD/NADH? Die Nicotinamidadenindinucleotide fungieren als "Elektronenüberträger bei Redoxreaktionen".
785
+ - Nenne 2 allgemein unterschiedliche Möglichkeiten zwischen verschiedenen Mikroorganismen biochemisch im Labor zu unterscheiden. A: (1) Katalase-Reaktion (2) Oxidase-Reaktion
786
+ - Welches Bakterium erzeugte Lysostaphin? Staphylococcus staphylolyticus.
787
+ - Welche Bakterien können (allgemein) Stickstoff fixieren? Diazotrophe Bakterien.
788
+ - Typische Grösse von Bakterien (von, bis)? 1 bis 5 Mikrometer.
789
+ - Ich möchte FtsI inhibieren. Was tun? Penicillin zugeben.
790
+ - In der Mikrobiologie, was heissen "Fts-Proteine" und was machen sie? Fts ... filamentös temperatur empfindlich. Dies sind Zellen die, wenn sie mutiert sind, Schwierigkeiten haben sich zu teilen.
791
+ - In der Mikrobiologie, was ist die "Generation"? Die Zeiteinheit die eine Zelle benötigt um zwei Zellen zu bilden.
792
+ - Wie verhindert Chlorella lophophora die Verdauung durch das Phagosom von Paramecium? Durch Produktion des Lektins Concanavalin A, sowie besonderer Oberflächenstrukturen.
793
+ - Bei "Bacillus subtilis" während der Aerotaxis, wie funktioniert das Protein HemAT? Dieses Protein sendet über eine Signalkette Kommandos an den Motor der Schwimmgeißel des Bakteriums. Zunächst bindet Sauerstoff an die Häm-Gruppe von HemAT (die sogenannte "sensorische Domäne"). Dadurch ändert die Struktur, und dies löst weitere strukturelle Veränderungen in HemAT aus, die letztendlich die Signal-Domäne des Proteins erreichen. Die Signal-Domäne überträgt dann die Information über die steigende Sauerstoffkonzentration an weitere Proteine in der Zelle. Diese Proteine leiten die Botschaft an den Motor der Schwimmgeißel weiter.
794
+ - Unterschiede Monotrichous, Lophotrichous, Amphitrichous, Peritrichous. A: Eingeisselig, Vielgeisselig, Bigeisselig, vielgeisselig.
795
+ - Nenne 1 Bakterium mit 3 Chromosomen. A: Sinorhizobium meliloti. URL: http://en.wikipedia.org/wiki/Sinorhizobium_meliloti
796
+ - Wann wurde die Sequenzierung von S. pneumonia abgeschlossen? 2001.
797
+ - Was bedeutet "Serovar"? Das sind unterscheidbare Variationen innerhalb der Subspezies von Bakterien oder Viren.
798
+ - Dunaliella sind "Flagellata". Warum sind sie bemerkenswert? Sie haben eine "aussergewöhnliche Salztoleranz".
799
+ - Nenne und beschreibe die aussergewöhnlichste Fortpflanzungsstrategie eines Bakteriums. A: Epulopiscium fishelsoni reproduziert sich ähnlich wie in der Sporulation durch meistens zwei, manchmal aber auch bis zu zwölf neue Tochterzellen in der Mutterzelle heran. Letztere löst sich danach auf und gibt die neuen Individuen frei. Diese Tochterzellen sind, im Gegensatz zur Sporulation, aktive Zellen.
800
+ - Wo findet man Lectine bei Bakterien wie E.coli? Auf den Pili.
801
+ - Nenne einen Vertreter der "Photoorganoheterotrophs"! A: Chloroflexus.
802
+ - Es gibt die attachment organelle, den "stalk". Was sekretiert dieser? "Adhesion factors" die man "holdfasts" nennt.
803
+ - Acidophile Bakterien mögen wozu dienen in der Industrie? A: Extraktion von Metallen.
804
+ - Bakterien können ihre Membranzusammensetzung verändern, vor allem mittels Fettsäuren. Vergleiche niedrige und hohe Temperatur. A: Wächst das Bakterium bei niedriger Temperatur so hat es mehr ungesättigte Fettsäuren in der Membran. Bei hoher Temperatur haben die Phospholipide mehr gesättigte Fettsäuren.
805
+ - Warum gibt es Magnetotaxis bei den Bakterien? Zur Orientierung. Sie können so zum Boden des Teiches schwimmen.
806
+ - Arginine Biosynthesis beginnt mit ...? Condensation of Glutamate mit Acetyl-CoA.
807
+ - Was ist eine Gruppentranslokation? Ein Transportvorgang bei dem die Substanz chemisch verändert wird.
808
+ - Im Glyoxylate-Cycle, was geschieht mit Isocitrate? Es wird gespalten in Succinate (4C Körper, für Biosynthesis) und Glyoxylate (2C).
809
+ - E. fishelsoni ist sehr gross, aber es gibt mind. noch ein grösseres Bakterium. Welches? Thiomargarita namibiensis. 1997 entdeckt.
810
+ - Actinomycetes produzieren lange Filamente, die wie genannt werden? Hyphae.
811
+ - Myxobacteria form what? Fruiting bodies.
812
+ - Schlüsselenzym bei Sulfatreduktion? ATP-Sulfurylase.
813
+ - Nenne eine Substanz die von einigen extrem halophilen Bakterien synthetisiert wird. A: Ectoin, ein Derivat der zyklischen Aminosäure Prolin.
814
+ - Was macht Beggiota mit H2S? Oxidiert es zu H2SO4.
815
+ - Beggiota gehört zu welcher Gruppe? Chemolitotroph Organisms that feed solely on inorganic minerals.
816
+ - Bei der Synthese von Aminosäuren, welche zwei Wege stammen aus dem Citratzyklus? Alpha-Ketoglutarat (E,P,Q,R) und Oxalacetat (D,N,K,M,T,I)
817
+ - Nenne einen Weg wie man nach "Carcinogenes" screenen kann. A: Der Ames-Test.
818
+ - Woraus besteht "Thiomargarita namibiensis" zu 98%? Aus einer Vacuole.
819
+ - Nenne 1 Bedingung damit man den Ames-Test durchführen kann. A: Die ursprüngliche Mutation muss 1 Punktmutation sein.
820
+ - Erreger der Kreuzlähme der Pferde? Trypanosoma equinus.
821
+ - Alle Nitrogen-fixierenden Organismen müssen einen Mechanismus besitzen um die Konzentration an Sauerstoff niedrig zu halten. Warum? A: Weil das Enzym Nitrogenase sehr sensitiv gegenüber Sauerstoff ist.
822
+ - Die Sporangien gehen woraus hervor? Aus dem Mycel.
823
+ - Nenne 3 Hefen die nicht nur im neutralen, sondern auch im sauren Milieu leben können. A: (1) S. cerevisae (2) Candida Krusei (3) Pichia saitoi
824
+ - Was ist der "assimilatorische Stickstoffwechsel"? Die Verwendung von NO3- SO4 2-, CO2.
825
+ - Wie viel Prozent der Photosynthese (von-bis) auf der Erde werden durch die Cyanobacteria erledigt? 20-30%.
826
+ - Nenne den mobile water-soluble electron carrier in Cyanobacteria und Pflanzen. A: Cytochrome c6 in Cyanobacteria, Plastocyanin in Pflanzen.
827
+ - GvpA macht wieviel Prozent des Gasvesikels aus? 97%.
828
+ - Die "light-harvesting Systems" in Cyanobacteria haben statt dem Chlorophyll was? Phycobilins.
829
+ - Nenne ein Bakterium der green-sulfur-bacteria Art, das bei 2500 Metern Tiefe lebt. A: GSB1
830
+ - Nenne ein Bakterium das Dextran bildet. A: Leuconostoc mesenteroides.
831
+ - Es gibt zwei Electron Transfer Pathways in der Photosynthese bei MO, den cyclic und non-cyclic electron transfer. Bitte charakterisieren sie die beiden. A: In cyclic electron transfer, electrons are removed from an excited chlorophyll molecule, passed through an electron transport chain to a proton pump, and then returned to the chlorophyll. In noncyclic electron transfer, electrons are removed from an excited chlorophyll molecule and used to reduce NAD+ to NADH. Replacement of electrons is accomplished by removing electrons from H2S, which is oxidized to sulfur - hence the name "green sulfur bacteria".
832
+ - Das Hydrogenosom findet man nur bei eukaryoten MO, die wo leben? In sauerstoffreichen Lebensräumen.
833
+ - Aufgabe Autolysine? Machen Löcher in die Bakterienwand. Dort werden dann neue Zellwandstrukturen eingelagert.
834
+ - Polyketide sind Vorläufer welcher zweier Stoffe? (1) Griseofulvin (2) Tetracyclin
835
+ - Bakterienzellen können vor allem welche Proteinmodifikation nicht? Glycosylierungen.
836
+ - Wie heisst das Glycinverbindungsstück in Staphylococcus? Pentaglycinbrücke.
837
+ - Was sind Endomycetes? Sprosspilze.
838
+ - Wann findet die bakterielle Sporulation statt? Wenn das Wachstum zum Stillstand gekommen ist (Trigger: ein limitierender Faktor)
839
+ - Die Bakteriengeissel wächst wo aus? Von der Spitze ausgehend.
840
+ - Gib ein Beispiel für ein ABC-Transportsystem! A: ABC-System für Maltose in E. coli.
841
+ - Gib ein Beispiel für eine Kieselalge. A: Stephanodiscus.
842
+ - Gib 3 Beispiele für Rhodopsin-Pigmente. A: (1) Bacteriorhodopsin (2) Proteorhodopsin (3) Xanthorhodopsin
843
+ - Warum ist das Rippentierchen Aspidisca ein Nitratindikator? Zum Einen dadurch das die Rippen umso höher liegen je mehr Nitrat im Wasser vorhanden ist. Zum Anderen durch die blosse Anzahl- je mehr Rippentierchen, umso mehr Nitrat.
844
+ - Nenne 3 mögliche Nachteile die Proteine aufweisen können wenn sie in Bakterien (für Eukaryoten) produziert werden! A: (1) Instabil (2) keine biologische Aktivität und (3) eventuell verunreinigt trotz sorgfältiger Reinigung
845
+ - Wozu dient dem Bakterium "Alcaligenes eutrophus" das aus Zucker erzeugte PHB (Polyhydroxybutyrat)? Als Energiespeicher.
846
+ - Nenne eine Methan-produzierende, anaerobe Archae. A: Methanococcus jannaschii.
847
+ - Gib 1 Beispiel für einen Organismus der Ammonium degradieren kann! A: Candidatus Brocadia anammoxidans.
848
+ - Bei Mikroorganismen, nenne die spezifische Gruppe und die Abbauschritte ausgehend (und inklusive) von Bezaldehyd. A: Benzaldehyd hat eine -CHO Gruppe, danach kommt Benzoesäure mit -COOH und schliesslich Brenzcatechin mit 2-OH Gruppen.
849
+ - FAD is derived from ...? A: The Vitamin "Riboflavin".
850
+ - Wie gleicht Dundiella den externen, osmotischen Wert aus? A: Durch interne Anreicherung an Glycin.
851
+ - Chlorella und Scenedesmus haben was für eine Wand? A: Cellulosewand mit Sporopollenin-Einlagerung.
852
+ - Anderes Wort für Alkanhefe? A: Candida.
853
+ - Bei Ecoli, welchen Unterschied gibt es zwischen dem Wachstum in Minimalmedium und dem Wachstum in einem komplexem Medium? Im Minimalmedium teilt sich Ecoli alle 24 Stunden einmal. Im komplexen Medium teilt sich Ecoli alle 20 Minuten.
854
+ - Wie konnten die BIF entstehen? A: Fe2+ wurde zu Fe3+ oxidiert, diese Eisenoxide sammelten sich an als Banded Iron Formation (BIF)
855
+ - Gib 4 Gründe an warum rRNA ein guter Chronometer ist! A: (1) Die rRNA Sequenz ist lange und hat viele hypervariable Regionen. (2) rRNA ist in praktisch allen Organismen vorhanden (3) funktionell ähnelt sich rRNA da alle Organismen in Proteinsynthese partizipieren müssen (4) rRNA Sequenzen ändern sich nur langsam (gut für Chronometer) und können so gut zwischen 2 Organismen verglichen werden.