studium 0.18.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (821) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +3310 -0
  3. data/bin/all_passed_exams +14 -0
  4. data/bin/check_description_of_these_lectures +7 -0
  5. data/bin/curriculum_module_displayer +7 -0
  6. data/bin/cycle +7 -0
  7. data/bin/d10 +7 -0
  8. data/bin/d100 +7 -0
  9. data/bin/d15 +7 -0
  10. data/bin/d150 +7 -0
  11. data/bin/d20 +7 -0
  12. data/bin/d25 +7 -0
  13. data/bin/d3 +7 -0
  14. data/bin/d30 +7 -0
  15. data/bin/d5 +7 -0
  16. data/bin/determine_curricula +7 -0
  17. data/bin/display_lecture_url +7 -0
  18. data/bin/exam_registration_at +7 -0
  19. data/bin/exam_statistics +7 -0
  20. data/bin/exams_per_month +9 -0
  21. data/bin/finished_exams_at_this_university +7 -0
  22. data/bin/flashcards +7 -0
  23. data/bin/from_curriculum_id_to_university +9 -0
  24. data/bin/location_to_this_exam_topic.rb +7 -0
  25. data/bin/mandatory_continuous_assessment +7 -0
  26. data/bin/mandatory_upcoming_courses +10 -0
  27. data/bin/n_ECTS +7 -0
  28. data/bin/n_exam_questions_already_answered +15 -0
  29. data/bin/names_of_all_solved_exams +7 -0
  30. data/bin/not_completed_exams +7 -0
  31. data/bin/nquestions +7 -0
  32. data/bin/nsolved +7 -0
  33. data/bin/open_last_exam_question_asked_file +7 -0
  34. data/bin/passed_exams +7 -0
  35. data/bin/passed_pr/303/274fungsimmanente_courses +7 -0
  36. data/bin/passed_this_exam_on +10 -0
  37. data/bin/pdf_for +7 -0
  38. data/bin/question_answer +7 -0
  39. data/bin/random_exam_topic +7 -0
  40. data/bin/registered_for_this_exam +15 -0
  41. data/bin/report_solved_topics +7 -0
  42. data/bin/return_n_ects_from_this_file +7 -0
  43. data/bin/return_n_questions_solved_in_total +7 -0
  44. data/bin/rti_conflict +7 -0
  45. data/bin/search_for_n_ects +7 -0
  46. data/bin/show_lectures_on_the_commandline +7 -0
  47. data/bin/show_passed_exams_having_this_grade +7 -0
  48. data/bin/show_themes +7 -0
  49. data/bin/solved +9 -0
  50. data/bin/solved_ects +7 -0
  51. data/bin/studienkennzahl +7 -0
  52. data/bin/studium +7 -0
  53. data/bin/studium_actions +7 -0
  54. data/bin/studium_skeleton +7 -0
  55. data/bin/ufind +7 -0
  56. data/bin/upcoming_exams +7 -0
  57. data/bin/week_parser +7 -0
  58. data/doc/ECTS_CONSIDERATIONS/ECTS_CONSIDERATIONS.md +85 -0
  59. data/doc/HOW_TO_DETERMINE_WHICH_PART_IS_THE_QUESTION_AND_WHICH_PART_IS_THE_ANSWER/HOW_TO_DETERMINE_WHICH_PART_IS_THE_QUESTION_AND_WHICH_PART_IS_THE_ANSWER.md +44 -0
  60. data/doc/README.gen +3263 -0
  61. data/doc/SQL_database_specification/SQL_database_specification.md +46 -0
  62. data/doc/deprecated_components/deprecated_components.md +46 -0
  63. data/doc/documentation_for_the_file_lecture_information/documentation_for_the_file_lecture_information.md +311 -0
  64. data/doc/elegant_colours/elegant_colours.md +21 -0
  65. data/doc/statistics/yearly_statistics.md +8 -0
  66. data/doc/todo/todo_for_the_graphical_parts_of_the_studium_gem_including_www_related_aspects.md +92 -0
  67. data/doc/todo/todo_for_the_studium_gem.md +55 -0
  68. data/img/STUDIES.png +0 -0
  69. data/lib/studium/actions/actions.rb +134 -0
  70. data/lib/studium/autoinclude.rb +7 -0
  71. data/lib/studium/base/base.rb +3554 -0
  72. data/lib/studium/base/commandline_arguments_module/commandline_arguments_module.rb +115 -0
  73. data/lib/studium/base/html_colours_module.rb +632 -0
  74. data/lib/studium/base/runmode_module/runmode_module.rb +103 -0
  75. data/lib/studium/c/README.md +2 -0
  76. data/lib/studium/c/a.out +0 -0
  77. data/lib/studium/c/obtain_random_entry.c +11 -0
  78. data/lib/studium/check_and_sanitize/README.md +15 -0
  79. data/lib/studium/check_and_sanitize/check_curriculum_for_correct_separation_of_bachelor_and_master.rb +141 -0
  80. data/lib/studium/check_and_sanitize/check_for_all_exam_topics_being_registered.rb +118 -0
  81. data/lib/studium/check_and_sanitize/check_for_correct_themes_of_each_course.rb +100 -0
  82. data/lib/studium/check_and_sanitize/check_for_existing_description_of_this_lecture.rb +194 -0
  83. data/lib/studium/check_and_sanitize/check_important_exams.rb +138 -0
  84. data/lib/studium/check_and_sanitize/check_the_lecture_information_file.rb +166 -0
  85. data/lib/studium/check_and_sanitize/correct_all_dates_in_the_file_lecture_information.rb +115 -0
  86. data/lib/studium/check_and_sanitize/date_sanitizer.rb +350 -0
  87. data/lib/studium/check_and_sanitize/find_duplicate_lectures.rb +124 -0
  88. data/lib/studium/check_and_sanitize/missing_priority_entry.rb +44 -0
  89. data/lib/studium/check_and_sanitize/sanitize_lecture_information.rb +434 -0
  90. data/lib/studium/colours/colours.rb +1711 -0
  91. data/lib/studium/commandline/commandline.rb +1848 -0
  92. data/lib/studium/constants/constants.rb +2063 -0
  93. data/lib/studium/css/project.css +273 -0
  94. data/lib/studium/curricula/attribute_lecture_to_curriculum/attribute_boku_lecture_to_curriculum.rb +384 -0
  95. data/lib/studium/curricula/attribute_lecture_to_curriculum/attribute_lecture_to_curriculum.rb +238 -0
  96. data/lib/studium/curricula/curricula_from_this_website/curricula_from_this_website.rb +141 -0
  97. data/lib/studium/curricula/curriculum.rb +213 -0
  98. data/lib/studium/curricula/curriculum_as_string.rb +280 -0
  99. data/lib/studium/curricula/curriculum_module_displayer/constants.rb +33 -0
  100. data/lib/studium/curricula/curriculum_module_displayer/curriculum_module_displayer.rb +417 -0
  101. data/lib/studium/curricula/curriculum_module_displayer/initialize.rb +25 -0
  102. data/lib/studium/curricula/curriculum_module_displayer/menu.rb +45 -0
  103. data/lib/studium/curricula/curriculum_module_displayer/reset.rb +74 -0
  104. data/lib/studium/curricula/curriculum_module_displayer/run.rb +20 -0
  105. data/lib/studium/curricula/curriculum_module_displayer/set_use_this_curriculum.rb +93 -0
  106. data/lib/studium/curricula/curriculum_module_displayer/show_and_report.rb +190 -0
  107. data/lib/studium/curricula/determine_curricula/constants.rb +11 -0
  108. data/lib/studium/curricula/determine_curricula/determine_curricula.rb +36 -0
  109. data/lib/studium/curricula/determine_curricula/help.rb +39 -0
  110. data/lib/studium/curricula/determine_curricula/initialize.rb +48 -0
  111. data/lib/studium/curricula/determine_curricula/menu.rb +151 -0
  112. data/lib/studium/curricula/determine_curricula/misc.rb +403 -0
  113. data/lib/studium/curricula/determine_curricula/report.rb +141 -0
  114. data/lib/studium/curricula/determine_curricula/reset.rb +59 -0
  115. data/lib/studium/curricula/determine_curricula/run.rb +19 -0
  116. data/lib/studium/curricula/determine_elective_courses_in_this_curriculum.rb +112 -0
  117. data/lib/studium/curricula/display_bachelor_curricula.rb +90 -0
  118. data/lib/studium/curricula/handle_curricula/README.md +9 -0
  119. data/lib/studium/curricula/handle_curricula/handle_curricula.rb +99 -0
  120. data/lib/studium/curricula/handle_curricula/misc.rb +798 -0
  121. data/lib/studium/curricula/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.rb +323 -0
  122. data/lib/studium/curricula/modules/display_on_the_commandline.rb +319 -0
  123. data/lib/studium/curricula/modules/return_n_ects_in_this_module.rb +74 -0
  124. data/lib/studium/curricula/n_percent_solved_in_this_curriculum.rb +73 -0
  125. data/lib/studium/curricula/prepare_individual_curriculum.rb +304 -0
  126. data/lib/studium/curricula/random_curriculum_creator/random_curriculum_creator.rb +164 -0
  127. data/lib/studium/curricula/show_all_unfinished_courses_of_this_curriculum/show_all_unfinished_courses_of_this_curriculum.rb +116 -0
  128. data/lib/studium/curricula/show_lectures_of_this_curriculum.rb +114 -0
  129. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/show_lectures_of_this_curriculum_id.rb +554 -0
  130. data/lib/studium/curricula/show_solved_percentage_among_the_registered_curricula.rb +87 -0
  131. data/lib/studium/curricula/sorted_individual_curricula.rb +121 -0
  132. data/lib/studium/ects/boku_ects_splitter.rb +128 -0
  133. data/lib/studium/ects/ects_per_university/ects_per_university.rb +179 -0
  134. data/lib/studium/ects/ects_scanner.rb +141 -0
  135. data/lib/studium/ects/ects_to_university_parser.rb +142 -0
  136. data/lib/studium/ects/last_entry_is_curriculum.rb +150 -0
  137. data/lib/studium/ects/n_ects_in_these_lectures.rb +196 -0
  138. data/lib/studium/ects/n_ects_points_in_mandatory_presence_courses.rb +47 -0
  139. data/lib/studium/ects/return_n_ects_from_this_file.rb +59 -0
  140. data/lib/studium/ects/return_n_ects_from_this_url.rb +197 -0
  141. data/lib/studium/ects/search_for_n_ects/search_for_n_ects.rb +719 -0
  142. data/lib/studium/ects/show_completed_ects_in_all_curricula.rb +245 -0
  143. data/lib/studium/ects/show_passed_credits_per_curriculum.rb +276 -0
  144. data/lib/studium/ects/simple_total_ects_points.rb +135 -0
  145. data/lib/studium/ects/solved_ects/constants.rb +19 -0
  146. data/lib/studium/ects/solved_ects/reset.rb +50 -0
  147. data/lib/studium/ects/solved_ects/solved_ects.rb +325 -0
  148. data/lib/studium/ects/solved_ects_per_university/reset.rb +25 -0
  149. data/lib/studium/ects/solved_ects_per_university/solved_ects_per_university.rb +116 -0
  150. data/lib/studium/ects/still_missing.rb +129 -0
  151. data/lib/studium/ects/sum_of_ects.rb +144 -0
  152. data/lib/studium/encoding/encoding.rb +109 -0
  153. data/lib/studium/exam_topics/RNAi_siRNA_and_miRNA +100 -0
  154. data/lib/studium/exam_topics/abfall_als_ressource +86 -0
  155. data/lib/studium/exam_topics/advanced_biochemistry +937 -0
  156. data/lib/studium/exam_topics/advanced_biotechnology +234 -0
  157. data/lib/studium/exam_topics/advanced_cellbiology +251 -0
  158. data/lib/studium/exam_topics/advanced_chemistry +547 -0
  159. data/lib/studium/exam_topics/advanced_immunology +225 -0
  160. data/lib/studium/exam_topics/advanced_microbiology +49 -0
  161. data/lib/studium/exam_topics/advanced_topics_in_plant_sciences +117 -0
  162. data/lib/studium/exam_topics/advanced_virology +273 -0
  163. data/lib/studium/exam_topics/ageing +154 -0
  164. data/lib/studium/exam_topics/agrar_ecology +67 -0
  165. data/lib/studium/exam_topics/agrarmarkt +73 -0
  166. data/lib/studium/exam_topics/agrarphysik +35 -0
  167. data/lib/studium/exam_topics/alcohols +30 -0
  168. data/lib/studium/exam_topics/algorithms +104 -0
  169. data/lib/studium/exam_topics/allergie +76 -0
  170. data/lib/studium/exam_topics/allgemeine_genetik +1006 -0
  171. data/lib/studium/exam_topics/allgemeine_mikrobiologie +1012 -0
  172. data/lib/studium/exam_topics/aminoacids +469 -0
  173. data/lib/studium/exam_topics/analytische_chemie_1 +134 -0
  174. data/lib/studium/exam_topics/analytische_chemie_2 +31 -0
  175. data/lib/studium/exam_topics/anatomie +378 -0
  176. data/lib/studium/exam_topics/anorganische_chemie +357 -0
  177. data/lib/studium/exam_topics/anthropologie +239 -0
  178. data/lib/studium/exam_topics/antibodies_and_antigens +790 -0
  179. data/lib/studium/exam_topics/apoptosis +35 -0
  180. data/lib/studium/exam_topics/archaea +112 -0
  181. data/lib/studium/exam_topics/archaeo_viruses +7 -0
  182. data/lib/studium/exam_topics/archaeology +5 -0
  183. data/lib/studium/exam_topics/architecture +8 -0
  184. data/lib/studium/exam_topics/artificial_intelligence +90 -0
  185. data/lib/studium/exam_topics/atomemissionsspektrometrie +6 -0
  186. data/lib/studium/exam_topics/audio +11 -0
  187. data/lib/studium/exam_topics/bacteriophages +266 -0
  188. data/lib/studium/exam_topics/basic_biochemistry +1008 -0
  189. data/lib/studium/exam_topics/basic_biotechnology +1011 -0
  190. data/lib/studium/exam_topics/basic_chemistry +1007 -0
  191. data/lib/studium/exam_topics/basic_virology +1008 -0
  192. data/lib/studium/exam_topics/bauwesen +6 -0
  193. data/lib/studium/exam_topics/betriebssysteme +128 -0
  194. data/lib/studium/exam_topics/betriebswirtschaftslehre +29 -0
  195. data/lib/studium/exam_topics/bioanalytik_und_biosensoren +451 -0
  196. data/lib/studium/exam_topics/biochips +80 -0
  197. data/lib/studium/exam_topics/bioelektrochemie +57 -0
  198. data/lib/studium/exam_topics/biofilms +58 -0
  199. data/lib/studium/exam_topics/bioinformatics +523 -0
  200. data/lib/studium/exam_topics/biological_therapeutics +156 -0
  201. data/lib/studium/exam_topics/biologie +152 -0
  202. data/lib/studium/exam_topics/biomarkers +137 -0
  203. data/lib/studium/exam_topics/biomaterials +90 -0
  204. data/lib/studium/exam_topics/biomedical_studies +16 -0
  205. data/lib/studium/exam_topics/biomembranes +6 -0
  206. data/lib/studium/exam_topics/bionik +65 -0
  207. data/lib/studium/exam_topics/biophysik +34 -0
  208. data/lib/studium/exam_topics/biopolymers +10 -0
  209. data/lib/studium/exam_topics/bioprozesstechnik +149 -0
  210. data/lib/studium/exam_topics/bioressourcenmanagement +78 -0
  211. data/lib/studium/exam_topics/birds +5 -0
  212. data/lib/studium/exam_topics/bodenkunde +384 -0
  213. data/lib/studium/exam_topics/bodenmikrobiologie +40 -0
  214. data/lib/studium/exam_topics/cancerbiology +488 -0
  215. data/lib/studium/exam_topics/cell_cultures +229 -0
  216. data/lib/studium/exam_topics/cellbiology +1011 -0
  217. data/lib/studium/exam_topics/cellular_transport_and_protein_secretion +27 -0
  218. data/lib/studium/exam_topics/cellular_vesicles +11 -0
  219. data/lib/studium/exam_topics/cellulose +6 -0
  220. data/lib/studium/exam_topics/chemische_technologie_anorganischer_stoffe +210 -0
  221. data/lib/studium/exam_topics/chemische_technologie_organischer_stoffe +25 -0
  222. data/lib/studium/exam_topics/chemisches_labor +60 -0
  223. data/lib/studium/exam_topics/chemokines_and_cytokines +45 -0
  224. data/lib/studium/exam_topics/chemotaxis_quorum_sensing_and_motility_in_prokaryotes +116 -0
  225. data/lib/studium/exam_topics/citric_acid_cycle +84 -0
  226. data/lib/studium/exam_topics/clinical_microbiology +520 -0
  227. data/lib/studium/exam_topics/computer_science +309 -0
  228. data/lib/studium/exam_topics/computer_vision_and_computer_graphics +15 -0
  229. data/lib/studium/exam_topics/crispr +51 -0
  230. data/lib/studium/exam_topics/cyanobacteria +45 -0
  231. data/lib/studium/exam_topics/cytogenetics_and_chromosome_biology +598 -0
  232. data/lib/studium/exam_topics/databases_and_sql +126 -0
  233. data/lib/studium/exam_topics/dna_mutation_and_dna_repair +186 -0
  234. data/lib/studium/exam_topics/dna_replication +80 -0
  235. data/lib/studium/exam_topics/ecogenetics +26 -0
  236. data/lib/studium/exam_topics/ecological_agriculture +12 -0
  237. data/lib/studium/exam_topics/ecology +332 -0
  238. data/lib/studium/exam_topics/economy +226 -0
  239. data/lib/studium/exam_topics/electron_microscopy +7 -0
  240. data/lib/studium/exam_topics/elektronenmikroskopie +356 -0
  241. data/lib/studium/exam_topics/elektrophorese +132 -0
  242. data/lib/studium/exam_topics/elektrotechnik_und_elektrizit/303/244t +42 -0
  243. data/lib/studium/exam_topics/elisa +55 -0
  244. data/lib/studium/exam_topics/embryologie_und_entwicklung +657 -0
  245. data/lib/studium/exam_topics/endospores_and_spores +104 -0
  246. data/lib/studium/exam_topics/enzymes_and_cofactors +395 -0
  247. data/lib/studium/exam_topics/epigenetik +188 -0
  248. data/lib/studium/exam_topics/erste_hilfe +414 -0
  249. data/lib/studium/exam_topics/ethik +143 -0
  250. data/lib/studium/exam_topics/evolution_and_evolutionary_genetics +372 -0
  251. data/lib/studium/exam_topics/excel +7 -0
  252. data/lib/studium/exam_topics/fish +19 -0
  253. data/lib/studium/exam_topics/fluorescence_microscopy +10 -0
  254. data/lib/studium/exam_topics/food_microbiology_and_food_biotechnology +92 -0
  255. data/lib/studium/exam_topics/forensik +65 -0
  256. data/lib/studium/exam_topics/forstwirtschaft +53 -0
  257. data/lib/studium/exam_topics/fortgeschrittene_genetik +692 -0
  258. data/lib/studium/exam_topics/fortgeschrittene_gentechnik +221 -0
  259. data/lib/studium/exam_topics/fortgeschrittene_physik +6 -0
  260. data/lib/studium/exam_topics/fungi +119 -0
  261. data/lib/studium/exam_topics/genetische_krankheiten +209 -0
  262. data/lib/studium/exam_topics/genexpression +1008 -0
  263. data/lib/studium/exam_topics/genomics_and_metagenomics +290 -0
  264. data/lib/studium/exam_topics/gentechnik_und_praktische_biochemie +961 -0
  265. data/lib/studium/exam_topics/geochemistry +67 -0
  266. data/lib/studium/exam_topics/geography +9 -0
  267. data/lib/studium/exam_topics/geologie_und_mineralogie +624 -0
  268. data/lib/studium/exam_topics/geometrie +56 -0
  269. data/lib/studium/exam_topics/geschichte +95 -0
  270. data/lib/studium/exam_topics/gluconeogenesis +72 -0
  271. data/lib/studium/exam_topics/glycogen +45 -0
  272. data/lib/studium/exam_topics/glycolysis +118 -0
  273. data/lib/studium/exam_topics/glykomik +131 -0
  274. data/lib/studium/exam_topics/glyoxylatzyklus +31 -0
  275. data/lib/studium/exam_topics/grassland_cultivation +32 -0
  276. data/lib/studium/exam_topics/hormone +152 -0
  277. data/lib/studium/exam_topics/html +8 -0
  278. data/lib/studium/exam_topics/human_ecology +8 -0
  279. data/lib/studium/exam_topics/hygiene +224 -0
  280. data/lib/studium/exam_topics/imaging_and_microscopy +270 -0
  281. data/lib/studium/exam_topics/immunanalytik +94 -0
  282. data/lib/studium/exam_topics/immunologie +1011 -0
  283. data/lib/studium/exam_topics/informatik +117 -0
  284. data/lib/studium/exam_topics/innate_immunity +52 -0
  285. data/lib/studium/exam_topics/insekten +66 -0
  286. data/lib/studium/exam_topics/insulin_and_diabetes +57 -0
  287. data/lib/studium/exam_topics/java +624 -0
  288. data/lib/studium/exam_topics/javascript +29 -0
  289. data/lib/studium/exam_topics/klima +6 -0
  290. data/lib/studium/exam_topics/kryptographie +10 -0
  291. data/lib/studium/exam_topics/landtechnik +26 -0
  292. data/lib/studium/exam_topics/lebensmittel_und_getr/303/244nke +224 -0
  293. data/lib/studium/exam_topics/lebensmitteltechnologie +16 -0
  294. data/lib/studium/exam_topics/light_microscopy +19 -0
  295. data/lib/studium/exam_topics/linux_and_unix +36 -0
  296. data/lib/studium/exam_topics/lipids +145 -0
  297. data/lib/studium/exam_topics/macroeconomics +39 -0
  298. data/lib/studium/exam_topics/marketing +53 -0
  299. data/lib/studium/exam_topics/mathematics +311 -0
  300. data/lib/studium/exam_topics/medizin_und_biomedizinische_technik +254 -0
  301. data/lib/studium/exam_topics/medizinische_chemie_und_pharmazie +441 -0
  302. data/lib/studium/exam_topics/messtechnik_und_regeltechnik +104 -0
  303. data/lib/studium/exam_topics/metabolismus +482 -0
  304. data/lib/studium/exam_topics/meteorologie_und_atmosph/303/244re +120 -0
  305. data/lib/studium/exam_topics/microbial_ecology +37 -0
  306. data/lib/studium/exam_topics/microcontrollers +11 -0
  307. data/lib/studium/exam_topics/mikrobielle_lebensgemeinschaften +58 -0
  308. data/lib/studium/exam_topics/mikrobielle_physiologie +313 -0
  309. data/lib/studium/exam_topics/mitochondria +57 -0
  310. data/lib/studium/exam_topics/mixed +287 -0
  311. data/lib/studium/exam_topics/molecular_biology_of_plants +281 -0
  312. data/lib/studium/exam_topics/molekulare_medizin +133 -0
  313. data/lib/studium/exam_topics/nanotechnologie +456 -0
  314. data/lib/studium/exam_topics/nature_conservation_and_biodiversity +247 -0
  315. data/lib/studium/exam_topics/naturstoffe +9 -0
  316. data/lib/studium/exam_topics/netzwerke +63 -0
  317. data/lib/studium/exam_topics/neuroanatomie +25 -0
  318. data/lib/studium/exam_topics/neurobiology +356 -0
  319. data/lib/studium/exam_topics/nucleotide_sequencing +41 -0
  320. data/lib/studium/exam_topics/nutztierethologie +11 -0
  321. data/lib/studium/exam_topics/object_oriented_modeling +15 -0
  322. data/lib/studium/exam_topics/obstbau +249 -0
  323. data/lib/studium/exam_topics/organische_chemie +1007 -0
  324. data/lib/studium/exam_topics/organische_chemie_2 +137 -0
  325. data/lib/studium/exam_topics/paleobiology +39 -0
  326. data/lib/studium/exam_topics/parasitic_diseases_and_molecular_infection_biology +336 -0
  327. data/lib/studium/exam_topics/patent_law +55 -0
  328. data/lib/studium/exam_topics/pathologie +761 -0
  329. data/lib/studium/exam_topics/pcr +155 -0
  330. data/lib/studium/exam_topics/pentosephosphatweg +61 -0
  331. data/lib/studium/exam_topics/peroxisomes_glycosomes_and_lysosomes +66 -0
  332. data/lib/studium/exam_topics/pflanzenanatomie +262 -0
  333. data/lib/studium/exam_topics/pflanzenbau +24 -0
  334. data/lib/studium/exam_topics/pflanzenschutz +35 -0
  335. data/lib/studium/exam_topics/pflanzenwissenschaften +1009 -0
  336. data/lib/studium/exam_topics/pharmaceutical_biotechnology +252 -0
  337. data/lib/studium/exam_topics/physik +449 -1
  338. data/lib/studium/exam_topics/physikalische_chemie +79 -0
  339. data/lib/studium/exam_topics/physiology_and_histology +592 -0
  340. data/lib/studium/exam_topics/phytochemie +33 -0
  341. data/lib/studium/exam_topics/plant_biotechnology +132 -0
  342. data/lib/studium/exam_topics/plant_breeding +64 -0
  343. data/lib/studium/exam_topics/plant_development +50 -0
  344. data/lib/studium/exam_topics/populationsgenetik +143 -0
  345. data/lib/studium/exam_topics/posttranslationale_modifikation_von_proteinen +198 -0
  346. data/lib/studium/exam_topics/programming +41 -0
  347. data/lib/studium/exam_topics/projektmanagement +226 -0
  348. data/lib/studium/exam_topics/prokaryote_genetics +587 -0
  349. data/lib/studium/exam_topics/protein_engineering +35 -0
  350. data/lib/studium/exam_topics/proteolyse +39 -0
  351. data/lib/studium/exam_topics/proteomik +42 -0
  352. data/lib/studium/exam_topics/protozoans +24 -0
  353. data/lib/studium/exam_topics/prozesstechnik +95 -0
  354. data/lib/studium/exam_topics/psychologie +21 -0
  355. data/lib/studium/exam_topics/python +391 -0
  356. data/lib/studium/exam_topics/quality_management +266 -0
  357. data/lib/studium/exam_topics/rechtsgrundlagen +126 -0
  358. data/lib/studium/exam_topics/research_topics_in_immunobiology +42 -0
  359. data/lib/studium/exam_topics/rna_and_dna +535 -0
  360. data/lib/studium/exam_topics/rna_seq +13 -0
  361. data/lib/studium/exam_topics/robotics +12 -0
  362. data/lib/studium/exam_topics/ruby +240 -0
  363. data/lib/studium/exam_topics/ruby_on_rails +63 -0
  364. data/lib/studium/exam_topics/scientific_writing_and_publishing +38 -0
  365. data/lib/studium/exam_topics/semisynthese_von_proteinen_und_nukleotiden +120 -0
  366. data/lib/studium/exam_topics/sexualbiologie +327 -0
  367. data/lib/studium/exam_topics/signal_transduction_and_laser_systems +215 -0
  368. data/lib/studium/exam_topics/sozialbiologie +17 -0
  369. data/lib/studium/exam_topics/soziologie +5 -0
  370. data/lib/studium/exam_topics/splicing_exons_and_introns +67 -0
  371. data/lib/studium/exam_topics/sport_und_sportverletzungen +6 -0
  372. data/lib/studium/exam_topics/statistik +306 -0
  373. data/lib/studium/exam_topics/stemcells +182 -0
  374. data/lib/studium/exam_topics/stickstofffixierung +91 -0
  375. data/lib/studium/exam_topics/structural_bioinformatics +54 -0
  376. data/lib/studium/exam_topics/strukturbiologie +445 -0
  377. data/lib/studium/exam_topics/system_biology_and_synthetic_biology +108 -0
  378. data/lib/studium/exam_topics/systematische_zoologie +446 -0
  379. data/lib/studium/exam_topics/technical_ecology +144 -0
  380. data/lib/studium/exam_topics/technik +5 -0
  381. data/lib/studium/exam_topics/technische_chemie +208 -0
  382. data/lib/studium/exam_topics/technische_grundlagen_der_informatik +43 -0
  383. data/lib/studium/exam_topics/technische_mikrobiologie +393 -0
  384. data/lib/studium/exam_topics/technisches_zeichnen +5 -0
  385. data/lib/studium/exam_topics/the_bacterial_cell_wall +98 -0
  386. data/lib/studium/exam_topics/the_c_plus_plus_programming_language +531 -0
  387. data/lib/studium/exam_topics/the_c_programming_language +133 -0
  388. data/lib/studium/exam_topics/the_cellcycle +102 -0
  389. data/lib/studium/exam_topics/the_european_union +121 -0
  390. data/lib/studium/exam_topics/the_interferon_system +40 -0
  391. data/lib/studium/exam_topics/the_microbiome +164 -0
  392. data/lib/studium/exam_topics/the_universe +32 -0
  393. data/lib/studium/exam_topics/theoretische_chemie +5 -0
  394. data/lib/studium/exam_topics/theoretische_informatik +161 -0
  395. data/lib/studium/exam_topics/thermodynamics +21 -0
  396. data/lib/studium/exam_topics/tierzucht +139 -0
  397. data/lib/studium/exam_topics/toxikologie +508 -0
  398. data/lib/studium/exam_topics/transcription +188 -0
  399. data/lib/studium/exam_topics/translation_ribosomes_and_translational_control +155 -0
  400. data/lib/studium/exam_topics/umweltbiotechnologie +64 -0
  401. data/lib/studium/exam_topics/umweltchemie +233 -0
  402. data/lib/studium/exam_topics/urbanism_and_traffic +19 -0
  403. data/lib/studium/exam_topics/urea_cycle +56 -0
  404. data/lib/studium/exam_topics/vaccines_and_vaccination +253 -0
  405. data/lib/studium/exam_topics/vectors_and_gene_therapy +247 -0
  406. data/lib/studium/exam_topics/verfahrenstechnik +37 -0
  407. data/lib/studium/exam_topics/verhaltensbiologie +79 -0
  408. data/lib/studium/exam_topics/veterinary_medicine +10 -0
  409. data/lib/studium/exam_topics/vitamine +32 -0
  410. data/lib/studium/exam_topics/wasserkunde +144 -0
  411. data/lib/studium/exam_topics/weinbau +86 -0
  412. data/lib/studium/exam_topics/wissenschaft +20 -0
  413. data/lib/studium/exam_topics/yeast +104 -0
  414. data/lib/studium/exam_topics/zoologie +338 -0
  415. data/lib/studium/exams/afterburn/afterburn.rb +304 -0
  416. data/lib/studium/exams/ask_exam_from_the_upcoming_exams_pool.rb +150 -0
  417. data/lib/studium/exams/ask_exam_topic_question.rb +112 -0
  418. data/lib/studium/exams/ask_question_from_alias.rb +141 -0
  419. data/lib/studium/exams/ask_question_from_any_of_the_still_missing_lectures.rb +130 -0
  420. data/lib/studium/exams/ask_question_from_grouped_themes.rb +141 -0
  421. data/lib/studium/exams/ask_question_from_last_topic.rb +91 -0
  422. data/lib/studium/exams/ask_random_question.rb +195 -0
  423. data/lib/studium/exams/autoinclude.rb +7 -0
  424. data/lib/studium/exams/average_grade/average_grade.rb +404 -0
  425. data/lib/studium/exams/csv/create_csv_passed_exams_file.rb +217 -0
  426. data/lib/studium/exams/cycle.rb +291 -0
  427. data/lib/studium/exams/dataset/dataset.rb +126 -0
  428. data/lib/studium/exams/designate_ten_random_exam_topics/designate_ten_random_exam_topics.rb +88 -0
  429. data/lib/studium/exams/exam/exam.rb +130 -0
  430. data/lib/studium/exams/exam_bubble/exam_bubble.rb +444 -0
  431. data/lib/studium/exams/exam_bubble/menu_for_the_main_loop.rb +111 -0
  432. data/lib/studium/exams/exam_question/README.md +3 -0
  433. data/lib/studium/exams/exam_question/exam_question.rb +434 -0
  434. data/lib/studium/exams/exam_registration_at/constants.rb +49 -0
  435. data/lib/studium/exams/exam_registration_at/exam_registration_at.rb +242 -0
  436. data/lib/studium/exams/exam_registration_at/help.rb +46 -0
  437. data/lib/studium/exams/exam_registration_at/menu.rb +81 -0
  438. data/lib/studium/exams/exam_registration_at/report_and_show.rb +133 -0
  439. data/lib/studium/exams/exam_registration_at/reset.rb +54 -0
  440. data/lib/studium/exams/exam_statistics_from_this_file/exam_statistics_from_this_file.rb +119 -0
  441. data/lib/studium/exams/exam_topics.rb +194 -0
  442. data/lib/studium/exams/exams.rb +20 -0
  443. data/lib/studium/exams/exams_per_month/exams_per_month.rb +2442 -0
  444. data/lib/studium/exams/exams_this_week.rb +182 -0
  445. data/lib/studium/exams/fix_exam_dates.rb +121 -0
  446. data/lib/studium/exams/frozen.rb +36 -0
  447. data/lib/studium/exams/last_exams/last_exams.rb +479 -0
  448. data/lib/studium/exams/lectures_without_exam_entry.rb +137 -0
  449. data/lib/studium/exams/mandatory_continuous_assessment/mandatory_continuous_assessment.rb +1358 -0
  450. data/lib/studium/exams/move_all_unsolved_exam_questions_to_the_top_of_the_file.rb +173 -0
  451. data/lib/studium/exams/move_the_last_exam_question_to_the_top_of_the_file/move_the_last_exam_question_to_the_top_of_the_file.rb +111 -0
  452. data/lib/studium/exams/n_exams_in_these_topics.rb +477 -0
  453. data/lib/studium/exams/next_exam.rb +106 -0
  454. data/lib/studium/exams/next_exams.rb +378 -0
  455. data/lib/studium/exams/not_completed/README.md +5 -0
  456. data/lib/studium/exams/not_completed/not_completed.rb +143 -0
  457. data/lib/studium/exams/open_exam_associated_url/open_exam_associated_url.rb +154 -0
  458. data/lib/studium/exams/open_last_exam_question_asked_file/constants.rb +15 -0
  459. data/lib/studium/exams/open_last_exam_question_asked_file/initialize.rb +29 -0
  460. data/lib/studium/exams/open_last_exam_question_asked_file/open_last_exam_question_asked_file.rb +110 -0
  461. data/lib/studium/exams/push_solved_questions_on_top.rb +180 -0
  462. data/lib/studium/exams/question_answer/question_answer.rb +2936 -0
  463. data/lib/studium/exams/questions_solved_from_day_to_day/questions_solved_from_day_to_day.rb +379 -0
  464. data/lib/studium/exams/remote_ftp_url.rb +52 -0
  465. data/lib/studium/exams/repeat_last_question.rb +78 -0
  466. data/lib/studium/exams/report_total_amount_of_questions_and_answers_for.rb +116 -0
  467. data/lib/studium/exams/show_all_passed_exams_of_this_university.rb +252 -0
  468. data/lib/studium/exams/show_backlog_of_exams/show_backlog_of_exams.rb +114 -0
  469. data/lib/studium/exams/show_exams_for/show_exams_for.rb +172 -0
  470. data/lib/studium/exams/show_themes/constants.rb +28 -0
  471. data/lib/studium/exams/show_themes/menu.rb +61 -0
  472. data/lib/studium/exams/show_themes/misc.rb +538 -0
  473. data/lib/studium/exams/show_themes/reset.rb +62 -0
  474. data/lib/studium/exams/show_themes/show_themes.rb +27 -0
  475. data/lib/studium/exams/show_upcoming_exams/show_upcoming_exams.rb +1537 -0
  476. data/lib/studium/exams/solve_all_questions_from_this_topic.rb +114 -0
  477. data/lib/studium/exams/solved/solved.rb +434 -0
  478. data/lib/studium/exams/timetable/constants.rb +142 -0
  479. data/lib/studium/exams/timetable/timetable.rb +448 -0
  480. data/lib/studium/exams/unsolve_all_questions_from_this_topic.rb +163 -0
  481. data/lib/studium/exams/upcoming_exams/upcoming_exams.rb +555 -0
  482. data/lib/studium/exams/upcoming_exams_at_the_boku/constants.rb +23 -0
  483. data/lib/studium/exams/upcoming_exams_at_the_boku/html.rb +64 -0
  484. data/lib/studium/exams/upcoming_exams_at_the_boku/upcoming_exams_at_the_boku.rb +194 -0
  485. data/lib/studium/exams/upcoming_exams_dataset.rb +247 -0
  486. data/lib/studium/exams/upcoming_registered_exams/upcoming_registered_exams.rb +257 -0
  487. data/lib/studium/exams/upload_exam_topics.rb +360 -0
  488. data/lib/studium/graphviz/README.md +4 -0
  489. data/lib/studium/graphviz/bachelor_vector_based_strategies.dot +160 -0
  490. data/lib/studium/graphviz/master_vector_based_strategies.dot +46 -0
  491. data/lib/studium/gui/gtk3/control_panel/control_panel.rb +40 -0
  492. data/lib/studium/gui/gtk3/lecture_information/lecture_information.rb +191 -0
  493. data/lib/studium/gui/java/exam_question/ExamQuestion$1.class +0 -0
  494. data/lib/studium/gui/java/exam_question/ExamQuestion.class +0 -0
  495. data/lib/studium/gui/java/exam_question/ExamQuestion.java +215 -0
  496. data/lib/studium/gui/javafx/exam_question_widget/exam_question_widget.rb +58 -0
  497. data/lib/studium/gui/jruby/exam_trainer/exam_trainer.rb +637 -0
  498. data/lib/studium/gui/jruby/show_upcoming_exams/show_upcoming_exams.rb +85 -0
  499. data/lib/studium/gui/libui/ask_exam_question/ask_exam_question.rb +347 -0
  500. data/lib/studium/gui/shared_code/control_panel/control_panel_module.rb +305 -0
  501. data/lib/studium/gui/shared_code/exam_trainer/exam_trainer_widget_module.rb +0 -0
  502. data/lib/studium/gui/shared_code/information_about_a_lecture/information_about_a_lecture_module.rb +0 -0
  503. data/lib/studium/gui/shared_code/show_upcoming_exams/show_upcoming_exams_module.rb +129 -0
  504. data/lib/studium/gui/universal_widgets/curriculum_viewer/curriculum_viewer.rb +549 -0
  505. data/lib/studium/gui/universal_widgets/ects_per_university/ects_per_university.rb +302 -0
  506. data/lib/studium/gui/universal_widgets/exam_trainer/exam_trainer.config +6 -0
  507. data/lib/studium/gui/universal_widgets/exam_trainer/exam_trainer.rb +3266 -0
  508. data/lib/studium/gui/universal_widgets/exam_trainer/manifest.yml +12 -0
  509. data/lib/studium/gui/universal_widgets/expand_time_range/expand_time_range.rb +309 -0
  510. data/lib/studium/gui/universal_widgets/information_about_a_lecture/information_about_a_lecture.rb +242 -0
  511. data/lib/studium/gui/universal_widgets/show_upcoming_exams/show_upcoming_exams.rb +252 -0
  512. data/lib/studium/images/libui_ask_exam_question.png +0 -0
  513. data/lib/studium/images/outdated.png +0 -0
  514. data/lib/studium/images/small_logos/DNA.png +0 -0
  515. data/lib/studium/images/small_logos/README.md +2 -0
  516. data/lib/studium/images/small_logos/solved.png +0 -0
  517. data/lib/studium/images/studies_favicon.png +0 -0
  518. data/lib/studium/java/README.md +5 -0
  519. data/lib/studium/java/studium/AskExamQuestion.java +461 -0
  520. data/lib/studium/java/studium/Base.java +123 -0
  521. data/lib/studium/java/studium/Constants.java +122 -0
  522. data/lib/studium/java/studium/EnsureThatTheLogDirectoryExists.java +57 -0
  523. data/lib/studium/java/studium/Mkdir.java +13 -0
  524. data/lib/studium/java/studium/OpenLastExamQuestionurlLinkViaTheBrowser.java +90 -0
  525. data/lib/studium/java/studium/ReturnNQuestionsSolvedInTotal.java +69 -0
  526. data/lib/studium/java/studium/Solved.java +112 -0
  527. data/lib/studium/java/studium/Test.java +60 -0
  528. data/lib/studium/java/studium/studium/AskExamQuestion.class +0 -0
  529. data/lib/studium/java/studium/studium/Base.class +0 -0
  530. data/lib/studium/java/studium/studium/Constants.class +0 -0
  531. data/lib/studium/java/studium/studium/EnsureThatTheLogDirectoryExists.class +0 -0
  532. data/lib/studium/java/studium/studium/Mkdir.class +0 -0
  533. data/lib/studium/java/studium/studium/OpenLastExamQuestionurlLinkViaTheBrowser.class +0 -0
  534. data/lib/studium/java/studium/studium/ReturnNQuestionsSolvedInTotal.class +0 -0
  535. data/lib/studium/java/studium/studium/Solved.class +0 -0
  536. data/lib/studium/java/studium/studium/Test.class +0 -0
  537. data/lib/studium/jobs/jobs.rb +80 -0
  538. data/lib/studium/logging/README.md +2 -0
  539. data/lib/studium/logging/ensure_that_the_log_directory_exists.rb +58 -0
  540. data/lib/studium/logging/html_log_directory.rb +42 -0
  541. data/lib/studium/logging/log_directory.rb +112 -0
  542. data/lib/studium/logging/store_last_question_asked_into_file.rb +138 -0
  543. data/lib/studium/parsers/README.md +2 -0
  544. data/lib/studium/parsers/custom_exam_results_parser.rb +209 -0
  545. data/lib/studium/parsers/parse_remote_lecture.rb +331 -0
  546. data/lib/studium/project/project.rb +88 -0
  547. data/lib/studium/requires/common_popular_requires.rb +37 -0
  548. data/lib/studium/requires/commonly_used_requires.rb +14 -0
  549. data/lib/studium/requires/require_class_exams_solved.rb +7 -0
  550. data/lib/studium/requires/require_ects_scripts.rb +27 -0
  551. data/lib/studium/requires/require_encoding.rb +7 -0
  552. data/lib/studium/requires/require_the_check_and_sanitize_files.rb +31 -0
  553. data/lib/studium/requires/require_the_curricula_files.rb +28 -0
  554. data/lib/studium/requires/require_the_exam_question_class.rb +7 -0
  555. data/lib/studium/requires/require_the_exams_files.rb +46 -0
  556. data/lib/studium/requires/require_the_logging_files.rb +23 -0
  557. data/lib/studium/requires/require_the_parsers.rb +28 -0
  558. data/lib/studium/requires/require_the_studium_constants.rb +7 -0
  559. data/lib/studium/requires/require_the_studium_project.rb +72 -0
  560. data/lib/studium/requires/require_the_toplevel_methods.rb +27 -0
  561. data/lib/studium/requires/require_the_utility_scripts.rb +34 -0
  562. data/lib/studium/requires/require_upcoming_exams.rb +7 -0
  563. data/lib/studium/requires/require_yaml.rb +7 -0
  564. data/lib/studium/requires/return_remote_homepage_of_this_lecture.rb +7 -0
  565. data/lib/studium/requires/with_GUI.rb +13 -0
  566. data/lib/studium/requires/www_mode.rb +17 -0
  567. data/lib/studium/statistics/README.md +4 -0
  568. data/lib/studium/statistics/best_exam_months.rb +92 -0
  569. data/lib/studium/statistics/curriculum_comparer/curriculum_comparer.rb +423 -0
  570. data/lib/studium/statistics/determine_exam_statistics_from_this_file.rb +142 -0
  571. data/lib/studium/statistics/exam_topics_that_are_about_to_be_completed.rb +117 -0
  572. data/lib/studium/statistics/max_stats.rb +169 -0
  573. data/lib/studium/statistics/new_questions_per_year.rb +147 -0
  574. data/lib/studium/statistics/report_how_many_ects_points_per_curriculum_were_completed.rb +167 -0
  575. data/lib/studium/statistics/report_how_many_exam_questions_were_answered.rb +473 -0
  576. data/lib/studium/statistics/show_exam_statistics.rb +75 -0
  577. data/lib/studium/statistics/show_which_courses_are_in_a_bachelor_or_master_curriculum_respectively.rb +104 -0
  578. data/lib/studium/statistics/top_stats.rb +126 -0
  579. data/lib/studium/toplevel_methods/e_and_esystem.rb +34 -0
  580. data/lib/studium/toplevel_methods/find_exam_topic_and_exam_title.rb +3986 -0
  581. data/lib/studium/toplevel_methods/install_the_project_on_the_given_hostsystem.rb +31 -0
  582. data/lib/studium/toplevel_methods/return_remote_homepage_of_this_lecture.rb +11611 -0
  583. data/lib/studium/toplevel_methods/return_remote_moodle_link_of_this_lecture.rb +2405 -0
  584. data/lib/studium/toplevel_methods/roebe.rb +16 -0
  585. data/lib/studium/toplevel_methods/runmode.rb +45 -0
  586. data/lib/studium/toplevel_methods/toplevel_methods.rb +7295 -0
  587. data/lib/studium/universities_in_austria/README.md +2 -0
  588. data/lib/studium/universities_in_austria/boku/README.md +4 -0
  589. data/lib/studium/universities_in_austria/boku/boku_/303/266ffnungszeiten.rb +28 -0
  590. data/lib/studium/universities_in_austria/boku/show_three_pillars_of_these_lectures.rb +110 -0
  591. data/lib/studium/universities_in_austria/boku/three_pillars.rb +237 -0
  592. data/lib/studium/universities_in_austria/tu_vienna/README.md +6 -0
  593. data/lib/studium/universities_in_austria/tu_vienna/tu_ferien.rb +42 -0
  594. data/lib/studium/universities_in_austria/tu_vienna/tu_/303/266ffnungszeiten.rb +34 -0
  595. data/lib/studium/university_course/university_course.rb +409 -0
  596. data/lib/studium/utility_scripts/attribute_lectures_to_university/attribute_lectures_to_university.rb +375 -0
  597. data/lib/studium/utility_scripts/audio_stats.rb +171 -0
  598. data/lib/studium/utility_scripts/auto_stud/auto_stud.rb +252 -0
  599. data/lib/studium/utility_scripts/auto_stud/constants.rb +18 -0
  600. data/lib/studium/utility_scripts/auto_stud/initialize.rb +23 -0
  601. data/lib/studium/utility_scripts/auto_stud/misc.rb +18 -0
  602. data/lib/studium/utility_scripts/autogeneration/autogeneration.rb +158 -0
  603. data/lib/studium/utility_scripts/autopurge_this_lecture_date.rb +100 -0
  604. data/lib/studium/utility_scripts/average_grade_of_this_curriculum.rb +153 -0
  605. data/lib/studium/utility_scripts/blocked_courses.rb +146 -0
  606. data/lib/studium/utility_scripts/calendar/README.md +2 -0
  607. data/lib/studium/utility_scripts/calendar/calendar.rb +251 -0
  608. data/lib/studium/utility_scripts/calendar/misc.rb +35 -0
  609. data/lib/studium/utility_scripts/check_description_of_these_lectures.rb +221 -0
  610. data/lib/studium/utility_scripts/course_registrations/course_registrations.rb +98 -0
  611. data/lib/studium/utility_scripts/courses/courses.rb +177 -0
  612. data/lib/studium/utility_scripts/create/README.md +2 -0
  613. data/lib/studium/utility_scripts/create/webpage_of_university.rb +129 -0
  614. data/lib/studium/utility_scripts/create/webpage_of_university_BOKU.rb +61 -0
  615. data/lib/studium/utility_scripts/create/webpage_of_university_TU.rb +60 -0
  616. data/lib/studium/utility_scripts/create/webpage_of_university_UniWien.rb +60 -0
  617. data/lib/studium/utility_scripts/create_database/create_database.rb +126 -0
  618. data/lib/studium/utility_scripts/current_lectures_belonging_to_both_bachelor_and_master_curriculum.rb +113 -0
  619. data/lib/studium/utility_scripts/currently_participating_in_these_lectures/currently_participating_in_these_lectures.rb +104 -0
  620. data/lib/studium/utility_scripts/display_lecture_url/display_lecture_url.rb +176 -0
  621. data/lib/studium/utility_scripts/expand_time_range/expand_time_range.rb +521 -0
  622. data/lib/studium/utility_scripts/finished_exams_at_this_university/finished_exams_at_this_university.rb +171 -0
  623. data/lib/studium/utility_scripts/foreign_language_percentage/constants.rb +23 -0
  624. data/lib/studium/utility_scripts/foreign_language_percentage/foreign_language_percentage.rb +149 -0
  625. data/lib/studium/utility_scripts/foreign_language_percentage/help.rb +31 -0
  626. data/lib/studium/utility_scripts/foreign_language_percentage/initialize.rb +25 -0
  627. data/lib/studium/utility_scripts/foreign_language_percentage/menu.rb +158 -0
  628. data/lib/studium/utility_scripts/foreign_language_percentage/report.rb +62 -0
  629. data/lib/studium/utility_scripts/foreign_language_percentage/reset.rb +50 -0
  630. data/lib/studium/utility_scripts/foreign_language_percentage/run.rb +19 -0
  631. data/lib/studium/utility_scripts/generate_spreadsheet/generate_spreadsheet.rb +353 -0
  632. data/lib/studium/utility_scripts/generate_spreadsheet/misc.rb +144 -0
  633. data/lib/studium/utility_scripts/holidays/holidays.rb +154 -0
  634. data/lib/studium/utility_scripts/homepage_of_these_courses/homepage_of_these_courses.rb +125 -0
  635. data/lib/studium/utility_scripts/lectures_attributed_to_universities/lectures_attributed_to_universities.rb +336 -0
  636. data/lib/studium/utility_scripts/lva_dates_of_the_important_courses.rb +111 -0
  637. data/lib/studium/utility_scripts/lva_nummer/lva_nummer.rb +427 -0
  638. data/lib/studium/utility_scripts/mandatory_lectures_in_this_month/mandatory_lectures_in_this_month.rb +316 -0
  639. data/lib/studium/utility_scripts/moodle/moodle.rb +214 -0
  640. data/lib/studium/utility_scripts/name_of_this_lva_id/name_of_this_lva_id.rb +110 -0
  641. data/lib/studium/utility_scripts/new_stud.rb +324 -0
  642. data/lib/studium/utility_scripts/next_week/next_week.rb +103 -0
  643. data/lib/studium/utility_scripts/not_yet_registered/not_yet_registered.rb +120 -0
  644. data/lib/studium/utility_scripts/open_last_exam_question_url_link_via_the_browser.rb +76 -0
  645. data/lib/studium/utility_scripts/passed_ects_per_year/passed_ects_per_year.rb +313 -0
  646. data/lib/studium/utility_scripts/passed_pr/303/274fungsimmanente_courses/passed_pr/303/274fungsimmanente_courses.rb +181 -0
  647. data/lib/studium/utility_scripts/pdf/README.md +2 -0
  648. data/lib/studium/utility_scripts/pdf/create_pdf_file_for_this_exam_topic.rb +352 -0
  649. data/lib/studium/utility_scripts/pdf/hexapdf_support.rb +50 -0
  650. data/lib/studium/utility_scripts/preparatory_meetings/preparatory_meetings.rb +317 -0
  651. data/lib/studium/utility_scripts/priority/priority.rb +164 -0
  652. data/lib/studium/utility_scripts/priority_points/priority_points.rb +261 -0
  653. data/lib/studium/utility_scripts/publish_my_exams/publish_my_exams.rb +174 -0
  654. data/lib/studium/utility_scripts/regexes/README.md +1 -0
  655. data/lib/studium/utility_scripts/regexes/generate_regex.rb +314 -0
  656. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_available_moodle_links.rb +55 -0
  657. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_registered_lectures.rb +48 -0
  658. data/lib/studium/utility_scripts/report_outdated_timetable_entries/report_outdated_timetable_entries.rb +142 -0
  659. data/lib/studium/utility_scripts/report_whether_this_lecture_is_registered_in_the_file_lecture_information/report_whether_this_lecture_is_registered_in_the_file_lecture_information.rb +129 -0
  660. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/individual_resolve_practical_courses_date_conflicts.rb +254 -0
  661. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/resolve_practical_courses_date_conflicts.rb +265 -0
  662. data/lib/studium/utility_scripts/scrape_remote_university_url.rb +138 -0
  663. data/lib/studium/utility_scripts/semester_schedule_creator/semester_container.rb +144 -0
  664. data/lib/studium/utility_scripts/semester_schedule_creator/semester_schedule_creator.rb +373 -0
  665. data/lib/studium/utility_scripts/semesterplaner/semesterplaner.rb +311 -0
  666. data/lib/studium/utility_scripts/set_aliases_based_on_this_file.rb +96 -0
  667. data/lib/studium/utility_scripts/show_all_passed_master_lectures/show_all_passed_master_lectures.rb +126 -0
  668. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/show_conflicting_lva_lectures.rb +1385 -0
  669. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/constants.rb +23 -0
  670. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/menu.rb +63 -0
  671. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/reset.rb +33 -0
  672. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/run.rb +50 -0
  673. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/show_descriptions_of_lectures_belonging_to_this_module.rb +145 -0
  674. data/lib/studium/utility_scripts/show_lecturers/show_lecturers.rb +147 -0
  675. data/lib/studium/utility_scripts/show_lectures/show_lectures.rb +906 -0
  676. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_language/show_lectures_fitting_to_this_language.rb +121 -0
  677. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_theme/show_lectures_fitting_to_this_theme.rb +105 -0
  678. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/show_lectures_on_the_commandline.rb +3160 -0
  679. data/lib/studium/utility_scripts/show_lectures_on_this_day/show_lectures_on_this_day.rb +150 -0
  680. data/lib/studium/utility_scripts/show_lva_dates_of_this_lecture/show_lva_dates_of_this_lecture.rb +182 -0
  681. data/lib/studium/utility_scripts/show_mixed_bachelor_master_courses/show_mixed_bachelor_master_courses.rb +92 -0
  682. data/lib/studium/utility_scripts/show_outdated_lva_dates/show_outdated_lva_dates.rb +214 -0
  683. data/lib/studium/utility_scripts/show_passed_exams_having_this_grade/show_passed_exams_having_this_grade.rb +91 -0
  684. data/lib/studium/utility_scripts/show_solved_english_lectures/show_solved_english_lectures.rb +139 -0
  685. data/lib/studium/utility_scripts/steop/README.md +4 -0
  686. data/lib/studium/utility_scripts/steop/show_all_steop_lectures.rb +93 -0
  687. data/lib/studium/utility_scripts/steop/steop_lectures_in_this_curriculum.rb +284 -0
  688. data/lib/studium/utility_scripts/steop/steop_lva_dates.rb +119 -0
  689. data/lib/studium/utility_scripts/studienkennzahl/studienkennzahl.rb +116 -0
  690. data/lib/studium/utility_scripts/studium_skeleton/studium_skeleton.rb +241 -0
  691. data/lib/studium/utility_scripts/stundenplan.rb +600 -0
  692. data/lib/studium/utility_scripts/sync_studium_relevant_entries_one_level_downwards.rb +217 -0
  693. data/lib/studium/utility_scripts/ufind/ufind.rb +106 -0
  694. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/constants.rb +26 -0
  695. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/run.rb +20 -0
  696. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/upcoming_mandatory_presence_courses.rb +187 -0
  697. data/lib/studium/utility_scripts/video_lecture_downloader/video_lecture_downloader.rb +107 -0
  698. data/lib/studium/utility_scripts/week_parser/constants.rb +23 -0
  699. data/lib/studium/utility_scripts/week_parser/help.rb +32 -0
  700. data/lib/studium/utility_scripts/week_parser/menu.rb +59 -0
  701. data/lib/studium/utility_scripts/week_parser/misc.rb +373 -0
  702. data/lib/studium/utility_scripts/week_parser/reset.rb +65 -0
  703. data/lib/studium/utility_scripts/week_parser/run.rb +18 -0
  704. data/lib/studium/utility_scripts/week_parser/show.rb +236 -0
  705. data/lib/studium/utility_scripts/week_parser/week_parser.rb +49 -0
  706. data/lib/studium/utility_scripts/weekday_parser.rb +155 -0
  707. data/lib/studium/utility_scripts/weekly_schedule.rb +198 -0
  708. data/lib/studium/utility_scripts/wochenplanung/wochenplanung.rb +267 -0
  709. data/lib/studium/version/version.rb +46 -0
  710. data/lib/studium/www/exams/exams.cgi +54 -0
  711. data/lib/studium/www/fast_ask_exam_question/fast_ask_exam_question.cgi +156 -0
  712. data/lib/studium/www/handle_curricula/handle_curricula.cgi +154 -0
  713. data/lib/studium/www/next_generation_exam_question_trainer/next_generation_exam_question_trainer.cgi +112 -0
  714. data/lib/studium/www/next_generation_exam_question_trainer/solved.cgi +26 -0
  715. data/lib/studium/www/sinatra/app.rb +231 -0
  716. data/lib/studium/www/sinatra/curriculum_displayer/curriculum_displayer.rb +162 -0
  717. data/lib/studium/www/sinatra/misc.rb +115 -0
  718. data/lib/studium/www/statistics/statistics.cgi +82 -0
  719. data/lib/studium/www/upcoming_exams/upcoming_exams.cgi +36 -0
  720. data/lib/studium/yaml/ad_hoc_trainer/README.md +2 -0
  721. data/lib/studium/yaml/ad_hoc_trainer/exam_topics.md +22 -0
  722. data/lib/studium/yaml/allowed_themes_for_courses/allowed_themes_for_courses.yml +348 -0
  723. data/lib/studium/yaml/array_allowed_entries_for_the_file_lecture_information/array_allowed_entries_for_the_file_lecture_information.yml +71 -0
  724. data/lib/studium/yaml/available_exam_topics/available_exam_topics.yml +234 -0
  725. data/lib/studium/yaml/backlog_of_exams.yml +37 -0
  726. data/lib/studium/yaml/colours/custom_colours.yml +50 -0
  727. data/lib/studium/yaml/colours/use_colours.yml +1 -0
  728. data/lib/studium/yaml/current_exams.yml +30 -0
  729. data/lib/studium/yaml/curricula/README.md +39 -0
  730. data/lib/studium/yaml/curricula/bachelor/bachelor_agrarwissenschaften_033255.yml +147 -0
  731. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_basisblock_033630.yml +71 -0
  732. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_botanik_033630.yml +100 -0
  733. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_ecology_033630.yml +74 -0
  734. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_mikrobiologie_und_genetik_033630.yml +122 -0
  735. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_molekulare_biologie_033630.yml +106 -0
  736. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_zoologie_033630.yml +87 -0
  737. data/lib/studium/yaml/curricula/bachelor/bachelor_chemie_033662.yml +165 -0
  738. data/lib/studium/yaml/curricula/bachelor/bachelor_dummy_curriculum.yml +182 -0
  739. data/lib/studium/yaml/curricula/bachelor/bachelor_elektrotechnik_und_informationstechnik_033235.yml +13 -0
  740. data/lib/studium/yaml/curricula/bachelor/bachelor_forstwirtschaft_033225.yml +115 -0
  741. data/lib/studium/yaml/curricula/bachelor/bachelor_informatik_033521.yml +134 -0
  742. data/lib/studium/yaml/curricula/bachelor/bachelor_ktww_033231.yml +84 -0
  743. data/lib/studium/yaml/curricula/bachelor/bachelor_lmbt_033217.yml +121 -0
  744. data/lib/studium/yaml/curricula/bachelor/bachelor_medizinische_informatik_033533.yml +283 -0
  745. data/lib/studium/yaml/curricula/bachelor/bachelor_molekularbiologie_033665.yml +95 -0
  746. data/lib/studium/yaml/curricula/bachelor/bachelor_nutrition_science_033638.yml +119 -0
  747. data/lib/studium/yaml/curricula/bachelor/bachelor_pharmazie_033305.yml +170 -0
  748. data/lib/studium/yaml/curricula/bachelor/bachelor_technische_chemie_033290.yml +131 -0
  749. data/lib/studium/yaml/curricula/bachelor/bachelor_technische_informatik_033535.yml +23 -0
  750. data/lib/studium/yaml/curricula/bachelor/bachelor_ubrm_033227.yml +142 -0
  751. data/lib/studium/yaml/curricula/bachelor/bachelor_verfahrenstechnik_033273.yml +167 -0
  752. data/lib/studium/yaml/curricula/bachelor/bachelor_wirtschaftsinformatik_033526.yml +29 -0
  753. data/lib/studium/yaml/curricula/experimental/bachelor_informatik_in_den_lebenswissenschaften.yml +137 -0
  754. data/lib/studium/yaml/curricula/individual/bachelor_formale_logik.yml +88 -0
  755. data/lib/studium/yaml/curricula/individual/bachelor_informatik_und_molekulare_biologie.yml +1161 -0
  756. data/lib/studium/yaml/curricula/individual/bachelor_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +1157 -0
  757. data/lib/studium/yaml/curricula/individual/master_bioinformatics_and_nanobiotechnology_in_molecular_medicine.yml +306 -0
  758. data/lib/studium/yaml/curricula/individual/master_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +741 -0
  759. data/lib/studium/yaml/curricula/master/master_bioinformatik_066875.yml +75 -0
  760. data/lib/studium/yaml/curricula/master/master_biologie_molekulare_mikrobiologie_mikrobielle_oekologie_und_immunbiologie_066830.yml +78 -0
  761. data/lib/studium/yaml/curricula/master/master_biologische_chemie_066863.yml +66 -0
  762. data/lib/studium/yaml/curricula/master/master_dummy_curriculum.yml +197 -0
  763. data/lib/studium/yaml/curricula/master/master_genetik_und_entwicklungsbiologie_066877.yml +89 -0
  764. data/lib/studium/yaml/curricula/master/master_lmbt_066418.yml +112 -0
  765. data/lib/studium/yaml/curricula/master/master_molecular_biology_066865.yml +72 -0
  766. data/lib/studium/yaml/curricula/master/master_molekulare_biologie_066834.yml +151 -0
  767. data/lib/studium/yaml/curricula/master/master_pharmazie_066605.yml +176 -0
  768. data/lib/studium/yaml/curricula/master/master_technische_chemie_066490.yml +123 -0
  769. data/lib/studium/yaml/curricula/outdated/master_bioinformatics_and_molecular_biotechnology_including_aspects_from_molecular_medicine.yml +438 -0
  770. data/lib/studium/yaml/curricula/outdated/master_food_science_and_plant_biotechnology.yml +31 -0
  771. data/lib/studium/yaml/curricula.yml +562 -0
  772. data/lib/studium/yaml/daily_questions_solved/daily_questions_solved.yml +2019 -0
  773. data/lib/studium/yaml/daily_questions_solved/daily_questions_solved.yml~ +1983 -0
  774. data/lib/studium/yaml/default_delay.yml +4 -0
  775. data/lib/studium/yaml/default_encoding.yml +1 -0
  776. data/lib/studium/yaml/directory_to_the_exam_topics.yml +0 -0
  777. data/lib/studium/yaml/editor.yml +1 -0
  778. data/lib/studium/yaml/exams/next_exams_to_do.md +9 -0
  779. data/lib/studium/yaml/file_for_exam_questions.yml +1 -0
  780. data/lib/studium/yaml/german/README.md +2 -0
  781. data/lib/studium/yaml/german/german_to_english_month_names.yml +16 -0
  782. data/lib/studium/yaml/grouped_themes/grouped_themes.yml +264 -0
  783. data/lib/studium/yaml/holidays/holidays.yml +201 -0
  784. data/lib/studium/yaml/important_exams.yml +286 -0
  785. data/lib/studium/yaml/inscription_dates_of_universities.yml +60 -0
  786. data/lib/studium/yaml/lecture_aliases.yml +138 -0
  787. data/lib/studium/yaml/lecture_information/lecture_information.yml +66145 -0
  788. data/lib/studium/yaml/log_dir.yml +1 -0
  789. data/lib/studium/yaml/main_topic/main_topic.yml +11 -0
  790. data/lib/studium/yaml/max_stats/max_stats.yml +262 -0
  791. data/lib/studium/yaml/max_stats.yml +263 -0
  792. data/lib/studium/yaml/meta_themes +1 -0
  793. data/lib/studium/yaml/mitbelegung/README.md +4 -0
  794. data/lib/studium/yaml/mitbelegung/mitbelegung.yml +21 -0
  795. data/lib/studium/yaml/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.yml +363 -0
  796. data/lib/studium/yaml/n_total_questions.yml +1 -0
  797. data/lib/studium/yaml/rename_konsole_tab.yml +1 -0
  798. data/lib/studium/yaml/roebe/ad_hoc_exam_topics.md +19 -0
  799. data/lib/studium/yaml/roebe/sommersemester_2024_opportunities.md +441 -0
  800. data/lib/studium/yaml/semester_planner/README.md +4 -0
  801. data/lib/studium/yaml/semester_planner/semester_planner.yml +189 -0
  802. data/lib/studium/yaml/show_topic.yml +1 -0
  803. data/lib/studium/yaml/statistics/lecture_information.yml +1 -0
  804. data/lib/studium/yaml/statistics/max_stats.yml +239 -0
  805. data/lib/studium/yaml/statistics/statistics.yml +77 -0
  806. data/lib/studium/yaml/week/01_monday.yml +25 -0
  807. data/lib/studium/yaml/week/02_tuesday.yml +68 -0
  808. data/lib/studium/yaml/week/03_wednesday.yml +63 -0
  809. data/lib/studium/yaml/week/04_thursday.yml +20 -0
  810. data/lib/studium/yaml/week/05_friday.yml +31 -0
  811. data/lib/studium/yaml/week/06_saturday.yml +16 -0
  812. data/lib/studium/yaml/week/07_sunday.yml +0 -0
  813. data/lib/studium/yaml/week/README.md +10 -0
  814. data/lib/studium.rb +5 -0
  815. data/studium.gemspec +82 -0
  816. data/test/testing_colourized_question_and_answer.rb +18 -0
  817. data/test/testing_studium.rb +244 -0
  818. data/test/testing_studium_base_class.rb +31 -0
  819. data/test/testing_the_file_lecture_information.rb +18 -0
  820. data/test/testing_time_component.rb +29 -0
  821. metadata +1042 -0
@@ -0,0 +1,1012 @@
1
+ # =========================================================================== #
2
+ # === Allgemeine Mikrobiologie (Mikrobiologie tag, Witte und Bacca. Mikro tag.
3
+ # mi tag. amm tag. Allgemeine Mikrobiologie.
4
+ # Baccarini und Wagner. Wagner tag. Witte tag.
5
+ # Basic Microbiology. Microbio tag. Auch
6
+ # Mikrobiologie-Übungen der AW. Und
7
+ # Umweltmikrobiologie tag.)
8
+ #
9
+ # This gathers topics from general microbiology. Synthetic pathways of
10
+ # bacteria are stored in the file mikrobielle_physiologie instead.
11
+ # =========================================================================== #
12
+
13
+ - Bei der Synthese von Aminosäuren in Mikroorganismen: <one>welche zwei Wege</one> <two>stammen aus dem Citratzyklus</two>? <one>Alpha-Ketoglutarat</one> (<two>E,P,Q,R</two>) und <one>Oxalacetat</one> (<two>D,N,K,M,T,I</two>)
14
+ - Name a very characteristic property of the <one>periplasmic binding protein</one>. A: The perisplasmic binding protein has a high affinity for its substrate.
15
+ - <one>Bdellovibrio</one> <two>attacks which bacteria</two>? <one>Bdellovibrio</one> <two>only attacks</two> <three>gram-negative bacteria</three>. []
16
+ - <one>Pseudomonas</one> <two>love which sugar source</two>? <one>Succinate</one>.
17
+ - Nenne den <one>mobile water-soluble electron carrier</one> in <two>Cyanobacteria</two> sowie in <two>Pflanzen</two>. A: (1) Cytochrome c6 in Cyanobacteria. (2) Plastocyanin in Pflanzen.
18
+ - Nenne einen Mikroorganismus der <one>Citronensäure</one> herstellt. A: Der Pilz <one>Aspergillus niger</one>. URL: https://en.wikipedia.org/wiki/Aspergillus_niger []
19
+ - <one>Which microscopy technique</one> revealed that microbial biofilms are extremely important? <one>Confocal microscopy</one>.
20
+ - <one>Durchmesser</one> eines <two>bakteriellen Gasvesikels</two>? <one>100 nm</one>. []
21
+ - In general, <one>by which logic</one> can we identify <two>virulence genes</two> in a bacterium? Mutations that inactivate these genes, will render the bacterium <one>non-pathogenic</one>.
22
+ - Sind die <one>Mesosomes</one> <two>Organellen</two>? <one>Nein</one>, es sind <two>Artefakte, die durch die chemische Fixierung entstanden sind</two>.
23
+ - Name <one>an enzyme</one> that is used by many bacteria able to catalyze the reduction of Hg²⁺ to Hg⁰ (aka mercury variants). A: The <one>Mercury(II) reductase</one>, an <two>oxidoreductase enzyme</two>. URL: https://en.wikipedia.org/wiki/Mercury(II)_reductase
24
+ - <one>Clostridium</one> <two>has what shape</two>? It has <one>a drumstick-shape</one>.
25
+ - Zur Erhaltung der Stabilität der Lipopolysaccharidschicht ist <one>welches Ion</one> <two>notwendig</two>? <one>Ca²⁺</one>. []
26
+ - Nenne <one>ein Bakterium mit</one> <two>linearer DNA</two> <one>in seinem Genom</one>. A: <one>Borrelia burgdorferi</one>. URL: https://de.wikipedia.org/wiki/Borrelia_burgdorferi []
27
+ - Was genau sind <one>Methanogene</one>? Das sind <one>Archaea</one>, die <two>Methan</two> (CH₄) produzieren, und zwar ausgehend von <three>CO₂</three> und <two>H₂</two>.
28
+ - <one>Das cytoplasmatische Material in einer Bakterienzelle</one>, also Ribosomen, Plasmide etc., <two>wird wie auf die Tochterzellen verteilt</two>? Es wird nach dem <one>Zufallsprinzip</one> segregiert; es erfolgt also eine <two>dispersive Segregation</two>.
29
+ - <one>Magnetosomes</one> haben <two>Fe₃O₄</two>. <three>Nenne einen Mikroorganismus der sie hat</three>. A: <one>Magnetospirillum gryphiswaldense</one>.
30
+ - Nenne die wichtigste Reaktionsgleichung von <one>Pyrodictium</one>. A: <one>H₂</one> + S0 → <one>H₂S</one> (+ATP).
31
+ - Anderer Begriff für die <one>Syntrophie</one>? <one>Interspezies H₂-Transfer</one>. URL: https://de.wikipedia.org/wiki/Syntrophie []
32
+ - There are <one>two electron transfer pathways</one> <two>in der Photosynthese</two> bei Mikroorganismen, den cyclic und non-cyclic electron transfer. Charakterisiere beide. 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 <one>green sulfur bacteria</one>.
33
+ - Can <one>sulfate</one> <two>be found in the periplasm of bacteria</two>? <one>Yes</one>. []
34
+ - A <one>nutrient material</one> prepared for the growth of microorganisms in a laboratory is called ... ? a <one>culture medium</one>.
35
+ - Bei Bakterien: wofür steht die Abkürzung <one>ruv</one>? <one>Resistance</one> gegenüber <one>UV-Licht</one>.
36
+ - <one>MinCD</one> <two>inhibiert ...</two>? <one>FtsZ</one>.
37
+ - In regards to the <one>oriC</one>: what are <two>slow-stop mutants</two>? These are <one>bacteria with defects</one> - <two>they can complete the current round of replication, but can not initiate a new round of DNA replication</two>.
38
+ - Are there <one>microorganisms</one> <two>with positively supercoiled DNA</two>? <one>Yes</one> - <two>Archaea</two> living at very high temperature have positively supercoiled DNA.
39
+ - <one>Acetat</one> <two>besitzt wieviele C-Atome</two>? <one>2</one>. []
40
+ - <one>Maximale Absorption</one> <two>in Nanometer</two> bei <three>Bacterochlorophyll a</three> (von-bis)? <one>800-925 nm</one>.
41
+ - What is the purpose behind <one>Hydrotaxis</one>? This allows bacteria that inhabit dry environments to <one>glide toward a gradient of increasing moisture</one>.
42
+ - <one>Pyrodictium</one> <two>ist was für ein Organismus</two>? <one>Pyrodictium</one> ist <two>ein submariner, hyperthermophiler Archaea</two>.
43
+ - <one>Tubulin</one> <two>in Eukarya</two> ähnelt ... in Bacteria. A: <one>FtsZ</one>. []
44
+ - <one>Bacillus stearothermophilus</one> <two>has an optimal generation time</two>, under best conditions, <two>of n minutes</two>? <one>11 minutes</one>.
45
+ - Name the three <one>philes</one> in microbiology in regards to pH. A: (1) <one>acidophiles</one> (2) <one>alkaliphiles</one> (3) <one>neutrophils</one>
46
+ - Name <one>the three basic shapes of</one> <two>bacteria</two>. A: (1) <one>cocci</one> (2) <one>rod-shaped bacillus</one> (3) <one>spiral shape</one> []
47
+ - Wie konnten vor vielen Jahren die <one>BIF</one> entstehen? A: Fe²⁺ wurde zu Fe3⁺ oxidiert, diese Eisenoxide sammelten sich an als Banded Iron Formation (BIF)
48
+ - <one>For cultivating bacteria</one>: <two>give another name for the optical density in a tube</two>. A: The <one>turbidity</one>. (This can be measured by a photometer.) []
49
+ - Name <one>an evolutionary advantage</one> <two>pertaining to genetics</two> that Prokaryotes have, compared to Eukaryotes. A: Prokaryotes can <one>mutate and thus evolve more rapidly</one> than eukaryotes, and in doing so, more rapidly adapt to changing environmental conditions. This enables them to exploit new habitats more easily.
50
+ - Compare <one>the general division strategy</one> between prokaryotes and eukaryotes. A: <one>Prokaryotes</one> <two>divide by fission</two>, eukaryotes divide by mitosis and cytokinesis.
51
+ - Name <one>a bacterium</one> that can hijack cellular systems, causing actin to polymerize and propel itself like a rocket within the host cytoplasm. A: <one>Listeria</one>.
52
+ - Das <one>70S Ribosom</one> hat einen <two>Durchmesser</two> von ca. ...? <one>25nm</one>. []
53
+ - Der <one>KOH-Test</one> <two>lysiert welche Zellen</two>? Der <one>KOH-Test</one> <two>lysiert gram-negative Zellen</two>.
54
+ - Name <one>a potent inhibitor of prokaryotic type II topoisomerases</one>. A: The <one>fluoroquinolones</one>.
55
+ - <one>Where</one> could <two>phycocyanins</two> <three>be found</three>? In <one>cyanobacteria</one>. URL: https://en.wikipedia.org/wiki/Phycocyanin
56
+ - Nenne einen <one>natürlich-vorkommenden Vertreter</one> <two>der auxotrophen Mikroorganismen</two>. A: <one>Milchsäurebakterien</one>.
57
+ - Beim <one>Phosphotransferasesystem</one>: <two>HPr</two> <three>findet sich zwischen welchen anderen beiden Komponenten</three>? (1) <one>Enz I</one> (2) <one>Enz IIa</one>
58
+ - What are <one>aseptic environments</one>? These are <one>environments free of microbes</one>.
59
+ - <one>Das klassische Magnet-Bakterium</one> schlechthin ist ... ? <one>Magnetospirillum magnetotacticum</one>. URL: https://de.wikipedia.org/wiki/Magnetospirillum_magnetotacticum
60
+ - Wie nennen wir <one>Viererpakete von Bakterien</one>? <one>Sarcinen</one>. URL: https://de.wikipedia.org/wiki/Sarcina_(Bakterium)
61
+ - <one>Hfq</one> <two>in Pseudomonas</two> <three>represses what ... </three>? <one>Catabolic genes</one>, at the post-transcriptional level.
62
+ - <one>Who</one> among the microorganisms has <two>cold enzymes</two>? The <one>Psychrophiles</one>. URL: https://en.wikipedia.org/wiki/Psychrophile
63
+ - <one>Warum</one> benötigt das <two>DnaA Protein</two> eine Alpha-Helix und Arginin an Position 399? Diese sind für die spezifischen Erkennung der DnaA box verantwortlich.
64
+ - The bacterium <one>Leuconostoc mesenteroides</one> <two>contains a glucose polymer slime layer</two>. <three>What particular glucose is used there</three>? A thick <one>dextran</one> layer.
65
+ - Name <one>an antibiotic</one> that can function against <two>Clostridium difficile</two>. A: <one>Vancomycin</one>. URL: https://en.wikipedia.org/wiki/Vancomycin
66
+ - Das <one>Hydrogenosom</one> <two>findet man nur bei eukaryoten Mikroorganismen, die wo leben</two>? In <one>sauerstoffreichen Lebensräumen</one>.
67
+ - Nenne eine Mikroorganismus-Gruppe die <one>CH₄</one> (<two>Methan</two>) produziert. A: <one>Methanogene Archaea</one>. URL: https://de.wikipedia.org/wiki/Methanbildner []
68
+ - <one>Thiomargarita magnifica</one> <two>kann wie lange werden</two>? Bis zu <one>zwei Zentimeter</one>.
69
+ - <one>Koch's crowning scientific accomplishment</one> <two>was ... </two>? .. his <one>discovery of the causative agent of</one> <two>tuberculosis</two>.
70
+ - Ist <one>das bakterielle Chromosom</one> <two>mit der Zellmembran verknüpft</two>? <one>Ja</one>. []
71
+ - If we <one>lock ferric iron</one>: <two>how does this in general influence microbial growth</two>? This will <one>limit microbial growth</one>.
72
+ - <one>The energy</one> to drive the ­phosphotransferase system comes from ... ? <one>Phosphoenolpyruvate</one> (aka <two>PEP</two>). URL: https://en.wikipedia.org/wiki/Phosphoenolpyruvic_acid
73
+ - In the <one>DnaA Protein</one>: <two>which domain</two> is <three>responsible for dimer-formation</three>? <one>Domain I</one>.
74
+ - The <one>lab rat</one> <two>of the bacterial world</two> is ... ? <one>E. coli</one>. URL: https://en.wikipedia.org/wiki/Escherichia_coli []
75
+ - The <one>size of plasmids</one> often varies. <two>pSymB</two>, found in <three>Sinorhizobium meliloti</three>, <four>has a total size of ... </four>? <one>1683 kbp</one>.
76
+ - <one>Autotrophs</one> <two>can synthesize their own organic compounds</two> <three>from ... </three>? <one>Carbon dioxide</one> (<two>CO₂</two>). []
77
+ - Nenne <one>drei Beispiele</one> für bakterielle <two>Rhodopsin-Pigmente</two>. A: (1) <one>Bacteriorhodopsin</one> (2) <one>Proteorhodopsin</one> (3) <one>Xanthorhodopsin</one>
78
+ - In microbiology: the term <one>morphology</one> <two>means ... </two>? <one>cell shape</one>.
79
+ - Nenne ein Beispiel wo die Gram-Färbung nicht funktioniert. A: <one>Säurefeste Bakterien</one> wie <two>Mycobacterien</two> sind nicht Gram-differenzierbar.
80
+ - The <one>phosphotransferase system</one> <two>consists of a family of n proteins</two> that work in concert? <one>Five proteins</one> (<two>5</two>). []
81
+ - Do <one>Wolbachia species</one> prefer <two>mature eggs</two> or <two>mature sperm</two>? <one>Mature eggs</one>.
82
+ - <one>Wie</one> sind die beiden Zuckerderivatmoleküle <two>N-Acetylglucosamin</two> und <two>N-Acetylmuraminsäure</two> miteinander verbunden? <one>Beta (1→4) glycosidisch</one>. []
83
+ - <one>Wie heißt</one> das <two>Glycinverbindungsstück</two> <three>in Staphylococcus</three>? <one>Pentaglycinbrücke</one>. []
84
+ - <one>What role</one> does the <two>GvpC protein</two> have <three>in a gas vesicle</three>? <one>GvpC</one> <two>strengthens the shell of the gas vesicle</two>, by cross-linking copies of Gvp1.
85
+ - Do <one>hydrogenosomes</one> in bacteria contain <two>cristae</two>? No, they lack <one>cristae</one>. Thus, this is another difference to <two>mitochondria</two>. []
86
+ - <one>ppGpp</one> <two>is synthesized from ...</two>? <one>GTP</one>. URL: https://en.wikipedia.org/wiki/Guanosine_pentaphosphate []
87
+ - The ability of <one>a bacterium</one> to move toward or away from various stimuli has ecological significance. Give two important reasons why such directed movement may be important. A: (1) it <one>may enhance that bacterium's access to resources</one>. (2) it <one>may allow that bacterium to avoid harmful substances that could otherwise damage or kill it</one>.
88
+ - In biology: what is <one>disruptive selection</one> 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.
89
+ - <one>Bacteria</one>, <two>from a taxonomic point of view</two>, <three>should rather be called ... </three>? <one>Eubacteria</one>. []
90
+ - <one>How many percent</one> <two>of the microorganisms around us</two> <three>can be cultured</three>? About <one>0.1%</one>.
91
+ - Wie tötet <one>Bacillus thuringiensis</one>? <one>Bacillus thuringiensis</one> <two>bildet kristallförmige Eiweisse</two>, die im Raupendarm in die Giftform konvertiert werden.
92
+ - <one>Welche Farbe</one> hat <two>Retinal</two> und wo findet es eine Verwendung bei den Bakterien? <one>Retinal</one> ist <two>purple</two> (violett) und ein Chromophor in Bacteriorhodopsin.
93
+ - What is <one>quorum quenching</one>? This is <one>the process of preventing quorum sensing</one> by disrupting the signalling, usually by degrading the signalling molecule.
94
+ - Give an example for <one>differential staining</one>. A: <one>Gram staining</one>: <two>it makes use of two different dyes</two>.
95
+ - Andere Bezeichnung für <one>viele Ribosomen</one>? <one>Polysomen</one>. URL: https://de.wikipedia.org/wiki/Polysom []
96
+ - <one>Welche Bakterien</one> können (allgemein) Stickstoff fixieren? <one>Diazotrophe Bakterien</one>.
97
+ - Are <one>Archaea</one> <two>prokaryotic cells</two>? <one>Yes</one>. []
98
+ - <one>Which group of bacteria</one> are <two>usually unaffected by Penicillin</two>? <one>Gram-negative Bacteria</one>. URL: https://en.wikipedia.org/wiki/Penicillin []
99
+ - The <one>Aquaporin Z protein</one> in <two>E. coli</two> is <three>a channel that permits osmotically driven movement of water</three> in ... how many directions? In <one>two</one>, aka <two>in both directions</two>.
100
+ - Bei der <one>Biosynthese von Methionin</one>: nenne einen <two>wichtigen Unterschied</two> zwischen Eukaryoten und Prokaryoten. A: Eukaryoten verwenden Acetyl-CoA, Prokaryoten verwenden Succinyl-CoA.
101
+ - Ist <one>ein Chemostat</one> <two>kontinuierlich</two> oder <two>diskontinuierlich</two>? <one>Kontinuierlich</one>. URL: https://de.wikipedia.org/wiki/Chemostat-Bioreaktor []
102
+ - What do <one>Saprophages</one> use as their <two>food</two>? <one>Dead organic matter of all kind</one>. URL: https://en.wikipedia.org/wiki/Saprophagy []
103
+ - ... ... <one>stimulieren die</one> <two>Septumbildung</two> <one>in Bakterien</one>. A: <one>Replizierende Nukleotide</one>.
104
+ - How are the <one>three-dimensional cubes</one> <two>in bacteria</two> called? <one>Sarcina</one>. URL: https://de.wikipedia.org/wiki/Sarcina_(Bakterium) []
105
+ - <one>Welches Bakterium</one> erzeugt <two>Lysostaphin</two>? <one>Staphylococcus simulans</one>. Lysostaphin wirkt gegen Staphylococcus aureus. Andere Quellen sagen das dies von Staphylococcus staphylolyticus erzeugt wird.
106
+ - Ohne Mikroorganismen würde höheres Leben nicht existieren. Unterstreiche diese Aussage mit einem konkreten Beispiel. A: <one>Sauerstoff in der Atmosphäre</one> entstand durch die Aktivität des mikrobiellen Stoffwechsels.
107
+ - Wie geht die mikrobielle <one>Alkoholreihe</one>? <one>Ethanol</one> zu <one>Acetaldehyd</one> zu <one>Essigsäure</one> (EAE).
108
+ - Nenne <one>fünf</one> <two>Proteobacteria-Vertreter</two>. A: (1) Agrobacterium (2) Acetobacter (3) Bordetella (4) <one>Neisseria</one> (5) <one>Aeromonas</one>
109
+ - Welche <one>Brücke</one> finden wir bei <two>Gram-positiven Bakterien</two> in der Zellwand? Eine <one>Pentaglycinbrücke</one>. URL: https://de.wikipedia.org/wiki/Peptidoglycane []
110
+ - <one>Wo</one> genau greift <two>Lysozym</two> an? Lysozym spaltet die Beta-1,4-Bindung zwischen <one>N-Acetylglucosamin</one> und <two>N-Acetyl-muraminsäure</two>.
111
+ - <one>Actin-like filaments</one> <two>in Bacteria</two>? The <one>mre-Proteins</one>. URL: https://en.wikipedia.org/wiki/MreB
112
+ - <one>Bacterial culture medium</one> <two>may be of which type</two>? (1) <one>liquid</one> (2) <one>solid</one>
113
+ - Andere Bezeichnung für den <one>Teilungsapparat der bakteriellen Zelle</one>? <one>Divisom</one>. URL: https://en.wikipedia.org/wiki/Divisome []
114
+ - How do <one>mitochondria</one> <two>reproduce</two>? By <one>binary fission</one>. URL: https://en.wikipedia.org/wiki/Fission_(biology)#Binary_fission []
115
+ - The <one>chemostat's primary role</one> is to keep a cell population in which phase? In the <one>exponential growth phase</one>.
116
+ - Do <one>prokaryotes</one> <two>have an immune system</two>? <one>Yes</one>: <two>CRISPRs</two>. []
117
+ - What does <one>teicoplanin</one> do? This <one>antibiotic</one> inhibits the construction of bacterial cell walls.
118
+ - Welche <one>Blockade</one> <two>gibt es während der Glycolyse</two>, die auch von Bakterien einschränkend wirkt? <one>NAD⁺</one> <two>muss vorhanden sein</two>.
119
+ - Anderer Begriff für die <one>Acetobacter</one>? <one>Essigsäurebakterien</one>. URL: https://de.wikipedia.org/wiki/Acetobacteraceae []
120
+ - <one>FtsZ</one> <two>verwendet welche Energiequelle</two>? <one>GTP</one>. []
121
+ - Was ist eine <one>Gruppentranslokation</one>? Ein <one>Transportvorgang</one>, bei dem die Substanz chemisch verändert wird.
122
+ - <one>Wieviele Moleküle Glucose</one> <two>nimmt eine E. coli Zelle</two> pro Sekunde auf? <one>200.000 Moleküle Glucose</one>.
123
+ - Warum wird die <one>Agarstichkultur</one> im mikrobiellen Labor verwendet? Um das Verhalten von Bakterien gegenüber <one>Luftstauerstoff</one> festzustellen.
124
+ - <one>Bacteria</one> <two>do happen to require vitamins</two>. Vitamins, in turn, function usually as ... ? <one>Eenzyme cofactors</one>.
125
+ - <one>High GC contents</one> <two>are characteristic for ...</two> <three>which microbes in general</three>? For microbes that live under <two>extreme temperature conditions</two>.
126
+ - <one>Beweglichkeit</one> <two>bei den Protozoa</two> ist oft gegeben über ... ? <one>Pseudopodien</one>. URL: https://de.wikipedia.org/wiki/Scheinf%C3%BC%C3%9Fchen
127
+ - Warum produziert <one>H. pylori</one> <two>Urease</two>? Um im Magen <one>Ammonium</one> (NH₄⁺) zu produzieren, welches die Magensäure neutralisiert.
128
+ - Nenne ein Bakterium mit <one>zwei circulären Chromosomen</one>. A: <one>Vibrio cholerae</one>. []
129
+ - Nenne <one>drei Möglichkeiten</one> bei der Konsistenz der bakteriellen Nährmedien. A: (1) feste Medien (2) Halbfeste Medien (3) <one>flüssige Medien</one>
130
+ - Are all <one>Archaea</one> <two>extremophiles</two>? <one>No</one>. []
131
+ - What is <one>the final step</one> <two>in cell wall synthesis</two>? <one>Transpeptidation</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC1306805/ []
132
+ - Ein Vertreter der <one>säurefesten Bakterien</one> ist ... ? Die <one>Mykobakterien</one>. URL: https://de.wikipedia.org/wiki/Mykobakterien []
133
+ - Can <one>Bacteria</one> <two>sense spatial gradients of chemicals</two>? <one>No</one>.
134
+ - Der kleinste Organismus, der <one>O₂-autotroph</one> ist, ist ... ? <one>Prochlorococcus</one>. URL: https://de.wikipedia.org/wiki/Prochlorococcus_marinus
135
+ - <one>PhoQ</one> <two>in Salmonella</two> <three>senses ... </three>? <one>Magnesium</one>. URL: https://pubmed.ncbi.nlm.nih.gov/12507481/
136
+ - <one>Warum</one> verwenden manche Prokaryoten <two>Gasvesikel</two>? Um der Schwerkraft entgegenzuwirken. URL: https://de.wikipedia.org/wiki/Vesikel_(Biologie)
137
+ - Nenne <one>zwei Vertreter</one> der <two>Euryarchaeota</two>. A: (1) <one>methanogens</one> (2) <one>extreme Halophile</one>
138
+ - <one>E. coli</one> <two>can double (== its generation time) every 20 minutes</two>. Name a bacterium that is even faster than E. coli, with an optimum generation time of about 10 minutes. A: <one>Clostridium perfringens</one>. URL: https://www.britannica.com/science/bacteria/Growth-of-bacterial-populations#ref955453
139
+ - Der <one>oriC locus</one> <two>besitzt Bindestellen für DnaA</two> aber es gibt in der Nähe noch einen weiteren locus der 5 DnaA Bindungsstellen hat. Wie heisst diese Locus? <one>datA Locus</one>.
140
+ - Are <one>hydrogenosomes</one> <two>anoxic</two>? <one>Yes</one>. URL: https://en.wikipedia.org/wiki/Hydrogenosome []
141
+ - Die <one>bakterielle DNA</one> ist um strukturelle Proteine gewickelt. Nenne 3 davon. A: (1) H-NS (2) IHF (3) <one>HU</one>
142
+ - Is the eukaryotic protist <one>Paramecium</one> larger than <two>Epulopiscium fishelsoni</two>? <one>No</one>. <two>Epulopiscium fishelsoni is about 5x as large as Paramecium</two>, give or take. []
143
+ - What does the abbreviation <one>S</one>/<one>V ratio</one> stand for? <one>Surface to volume ratio</one>. []
144
+ - <one>Sarcina</one> bei Zellen <two>umfasst wieviele Zellen</two>? <one>8</one>. URL: https://de.wikipedia.org/wiki/Sarcina_(Bakterium) []
145
+ - Name <one>a genus of bacteria</one> <two>able to cause</two> <three>bacterial dysentery</three>? The genus <one>Shigella</one>. []
146
+ - What does <one>oxygenic photosynthesis</one> <two>produce</two>? <one>O₂</one>. []
147
+ - The <one>first protein</one> <two>in bacteria</two> to move to the division site that will separate the two daughter cells, is ... ? <one>FtsZ</one>. []
148
+ - In einer Bakterienzelle: <one>wie</one> wird <two>der verankerten Teil einer Geißel</two> genannt? Dies ist der <one>Basalkörper</one>. []
149
+ - <one>Bakterien brauchen und verwenden Eisen</one>. <two>Durch welches Atom kann Eisen mitunter ersetzt werden</two>? <one>Mn²⁺</one> (<two>Mangan</two>). []
150
+ - For <one>tmRNA rescue</one> to happen, <two>the tmRNA needs which protein</two>, in order to form a complex? <one>SmpB</one>.
151
+ - Über welchen <one>intrazellulären Mechanismus</one> <two>erfolgt die Regulation der Glutamin-Synthase</two>? Über <one>Adenylierung</one>.
152
+ - Can <one>a H⁺ proton</one> <two>diffuse through a bacterial membrane</two>? <one>No</one>.
153
+ - Bei <one>E. coli</one>: <two>welchen Unterschied</two> 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.
154
+ - <one>Dunaliella</one> sind <two>Flagellata</two>. <three>Warum sind sie bemerkenswert</three>? <one>Dunaliella</one> zeigen eine <two>aussergewöhnliche Salztoleranz</two>.
155
+ - What does <one>axenic</one> mean? <one>Axenic</one> <two>describes the state of a culture in which only a single species is present</two>.
156
+ - <one>Warum oder wann vor allem</one> wird die <two>Säurefestigkeits-Färbung</two> nach <three>Ziehl-Nelsen</three> eingesetzt? Um <one>Mycobacterium tuberculosis</one> nachzuweisen.
157
+ - <one>Which proteins</one> <two>transport specific proteins</two> through the membranes of Bacteria? The <one>translocases</one>.
158
+ - Nenne ein Beispiel für <one>eine Gruppentranslokation</one>. A: Das <one>PTS</one>: <two>Phosphotransferasesystem</two>. URL:https://de.wikipedia.org/wiki/Phosphotransferasesystem []
159
+ - The <one>DnaA protein</one> <two>contains a domain called domain IV</two>. What is the role of this domain? This domain of 11 kDa in size, constitutes the <one>DNA-binding domain</one>.
160
+ - Der beim <one>Ames-Test</one> <two>verwendete Mineralagar</two> enthält Spuren welcher, für diesen Test sehr wichtigen, <three>Aminosäure</three>? <one>Histidin</one>. []
161
+ - <one>FtsZ proteins</one> <two>can assemble into a structure called ... </two>? a <one>Z-ring</one>.
162
+ - The <one>cytoplasmic membrane of bacteria</one> is <two>about n nm thick</two> (from-to)? About <one>8-10 nanometers</one>.
163
+ - Warum ist <one>Bdellovibrio</one> so besonders? <one>Bdellovibrio</one> <two>infiltriert gram-negative Bakterien</two>, indem es in das Periplasma wandert und dort Biopolymere verdaut.
164
+ - <one>Wie viel Prozent der Photosynthese</one> (<two>von-bis</two>) auf der Erde werden durch die Cyanobacteria erledigt? <one>20-30%</one>.
165
+ - The <one>cytoplasmic membranes of some bacteria</one> <two>are strengthened by</two> <three>sterol-like molecules called ... </three>? <one>hopanoids</one>. []
166
+ - In der Mikrobiologie: <one>welches Medium</one> steht hinter <two>CMD</two>? <one>Cornmeal dextrose agar</one>.
167
+ - Give another name for the <one>generation time</one> in bacteria. A: The <one>doubling time</one>. []
168
+ - <one>Welche Reaktion</one> katalysieren <two>methanoxidierende Bakterien</two>? Diese Bakterien wandeln <one>Methan</one> in <two>CO₂</two> um. []
169
+ - <one>Stromatolites</one> can be found at which bay in australia? At <one>Shark Bay</one>.
170
+ - Bacteria created an environment that allowed plants and animals to ... ? <one>evolve</one>.
171
+ - <one>Which two aminoacids</one> are very important in <two>two-component systems</two>? (1) <one>Aspartate</one> (2) <one>Histidine</one> []
172
+ - A <one>medium</one> <two>that contains only the nutrients required by prototrophic bacteris is termed ... </two>? a <one>minimal medium</one>. URL: https://en.wikipedia.org/wiki/Growth_medium []
173
+ - In bacteria: what can the <one>Fts protein</one> form? The <one>divisome</one>. URL: https://en.wikipedia.org/wiki/Divisome
174
+ - <one>Welcher Sigmafaktor</one> <two>erkennt den</two> <three>Hitzeschock-Promotor</three> in Bakterien? <one>Sigmafaktor 32</one>.
175
+ - Was ist <one>das wichtigste, strukturbestimmende Protein bei Prokaryoten</one>? <one>MreB</one>. []
176
+ - <one>Welche chemische Reaktion</one> führt die ATPase durch? Die ATPase katalysiert die Reaktion von ATP -> hin zu ADP und einem freien Phosphat-Ion (Pi). URL: https://en.wikipedia.org/wiki/ATPase
177
+ - Give <one>an example for</one> an <two>AB exotoxin</two>. A: <one>Diphtheria toxin</one>. URL: https://en.wikipedia.org/wiki/Diphtheria_toxin
178
+ - Bacteria have form of adaptive immunity. Why has this evolved? This system evolved to provide a <one>highly phage-specific defense</one>.
179
+ - <one>Welche Aufgabe</one> hat <two>MinE</two>? <one>MinE</one> <two>bringt den MinCD-Komplex an die Pole</two>; er agiert somit als eine Art Transporter.
180
+ - The classic exemplar of aggregative multicellularity in bacteria is given by which bacterium? By <one>Bacillus subtilis</one>.
181
+ - Do <one>green algae</one> require flagella? Yes. These are are essential to keep afloat on top of the ocean or lake, in order to gain energy from sunlight.
182
+ - Die <one>Generationszeit von E. coli</one> <two>bei 37°C</two> <three>in einem Minimalmedium</three> beträgt ... n Minuten? 60-90 Minuten.
183
+ - What are <one>symporters</one>? These are <one>transporters</one> (<two>co-transporters</two> actually) that transport a substance together with another molecule (usually a proton).
184
+ - <one>Cell division in prokaryotes</one> is usually performed by ... ? <one>binary fission</one>.
185
+ - <one>Magnetosome synthesis</one> <two>in bacteria</two> typically begins with ... ? The <one>insertion of magnetosome-specific proteins into the cytoplasmic membrane</one>, followed by invagination of the membrane to form a vesicle.
186
+ - <one>Which bacteria</one> have a <two>S-layer</two>? <one>Gram⁺ bacteria</one>.
187
+ - <one>Wo</one> kann <two>FeMoCo</two> gefunden werden? In dem <one>Nitrogenase-Enzym</one>, in der Untereinheit I.
188
+ - Are <one>uncultivated phyla</one> <two>the majority</two>? <one>Yes</one>.
189
+ - Nenne <one>eine chemische Substanz</one>, <two>mittels deren Hilfe bakterielle Zellen aufgebrochen werden können</two>. A: <one>Chloroform</one>.
190
+ - <one>Volvox</one> <two>kann wieviele Zellen haben</two>? A: <one>20.000</one>.
191
+ - The <one>fastest-growing bacterium known</one> has a doubling time of ... ? <one>6 minutes</one>.
192
+ - <one>A bacterial cell</one> that is <two>spherical or ovoid</two> in morphology is called ... ? A <one>coccus</one>.
193
+ - Bei einer <one>Verdünnungsreihe</one>: <two>welche Verdünnungsstufe hat die Originalprobe</two>? <one>Verdünnungsstufe 0</one>.
194
+ - In Bacteria: what can be found in the <one>spacer</one> between <two>16S + 23S rRNA gene</two>? A <one>tRNA gene</one>.
195
+ - Why is it so important for the cell to generate <one>acetate</one> from <two>pyruvate</two>? Because this <one>also generates ATP</one> when doing so.
196
+ - Name <one>two bacteria</one> with more than one <two>chromosome</two>. A: (1) <one>Vibrio cholerae</one> (2) <one>Rhizobium meliloti</one>
197
+ - Die <one>Sporangien</one> <tow>gehen woraus hervor</two>? Aus dem <one>Mycel</one>.
198
+ - Unter <one>optimalen Wachstumsbedingungen</one> besteht <two>wieviel Prozent der bakteriellen Zellmasse aus Ribosomen</two>, <three>in etwa</three>? In etwa <one>25%</one>.
199
+ - Metaphorically speaking: <one>Penicillium</one> looks like ...? A <one>house</one>, and a <one>garage</one>. The garage door is affected.
200
+ - Das Wort <one>Enzybiotics</one> ist ein Mix aus ... ? <one>Enzyme</one> und <one>Antibiotics</one>. URL: https://en.wikipedia.org/wiki/Enzybiotics
201
+ - In Bacteria: <one>quorum sensing</one> <two>is mediated by ...</two>? <one>Farnesol</one>.
202
+ - Are <one>group translocation systems</one> also <two>ABC transporters</two>? <one>No</one> they are not.
203
+ - <one>Myxobacteria</one> <two>form what</two>? <one>Fruiting bodies</one>.
204
+ - Nenne <one>drei Hefen</one> die nicht nur im neutralen, sondern auch im sauren Milieu leben können. A: (1) <one>S. cerevisae</one> (2) <one>Candida Krusei</one> (3) <one>Pichia saitoi</one>
205
+ - <one>Which bacteria</one> <two>changed the world</two>? All of them, but specifically the <one>cyanobacteria</one>: <two>they caused the Great Oxygenation Event, which ultimately allowed multicellularity to emerge</two>.
206
+ - What are <one>cidal</one> agents? <one>Agents</one> <two>that kill organisms</two> - or in this case, bacteria.
207
+ - <one>Warum</one> gibt es <one>Magnetotaxis</one> bei den Bakterien? <one>Zur Orientierung</one>. <two>Sie können so zum Boden des Teiches schwimmen</two>.
208
+ - Name <one>a bacterium</one> <two>that attacks other bacteria</two> and thus uses them as <three>a bacterial prey cell</three>. A: <one>Bdellovibrio</one>. URL: https://en.wikipedia.org/wiki/Bdellovibrio
209
+ - <one>Microbial diversity</one> is beyond practical ... ? <one>calculation</one>.
210
+ - Aside from humans: name an organism that Listeria infects. A: <one>Amoebae</one>.
211
+ - Wie werden Mikroorganismen genannt, die <one>saure Bedingungen für ihr Wachstum bevorzugen</one>? <one>Acidophile Mikroorganismen</one>.
212
+ - <one>Warum</one> genau verwenden wir ausgerechnet <one>Leberenzyme</one> im Ames-Test? Um <one>die Chemikalien in ihre aktive, mutagene Form zu konvertieren</one>.
213
+ - Most stringent <one>Biosafety Level</one>? <one>Level 4</one>.
214
+ - Name <one>a bacterium with two chromosomes</one>. A: <one>Vibrio cholerae</one>. URL: https://en.wikipedia.org/wiki/Vibrio_cholerae
215
+ - Bei <one>Bacillus subtilis</one> während der <two>Aerotaxis</two>: <three>wie funktioniert das Protein HemAT</three>? Dieses Protein sendet über eine Signalkette Informationen an den <one>Motor der Schwimmgeißel des Bakteriums</one>. 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.
216
+ - <one>MamK</one> <two>ensures the organization of m...</two>? <one>Magnetosomes</one>.
217
+ - <one>When</one> - that is <two>in which phase</two> - are bacteria in general competent? During the <one>late phase of their growth cycle</one>.
218
+ - Nenne die drei <one>Importer-Typen</one> in Bakterien. A: (1) <one>Antiporter</one> (2) <one>Symporter</one> (3) <one>Uniporter</one>
219
+ - <one>DnaA assembly</one> <two>is incompatible with ...</two>? With <one>binding dsDNA</one>.
220
+ - The <one>phosphotransferase system</one> consists of <two>a family of n proteins</two> that work in concert to transport any given sugar. A: <one>5 proteins</one>.
221
+ - Die zwei in der Natur am weitesten verbreiteten <one>anorganischen Stickstoffverbindungen</one> sind? (1) Nitrat (NO3-) (2) <one>Ammoniak</one> (<two>NH4⁺</two>)
222
+ - <one>CrcZ</one> <two>in Pseudomonads</two>, is what exactly? <one>CrcZ</one> is a <two>regulatory RNA</two>.
223
+ - <one>DnaA</one> <two>has an intrinsic ... activity</two>. A: <one>DnaA</one> has an <two>intrinsic ATPase activity</two>.
224
+ - <one>Peptidoglycan</one> <two>can be destroyed by ... </two>? <one>Lysozyme</one>. URL: https://en.wikipedia.org/wiki/Lysozyme
225
+ - <one>The signature molecule of Bacteria</one>, if we can even define that there is a single such molecule, <two>would be</two> ... ? <one>Peptidoglycan</one>.
226
+ - Eine einzelne <one>E. coli Zelle</one> besitzt <two>wieviele DnaA Moleküle</two>? Etwa <one>~1000</one>.
227
+ - In which bacterium was topoisomerase first discovered? In <one>Escherichia coli</one>.
228
+ - Nenne <one>eine Substanz</one> die von einigen extrem halophilen Bakterien synthetisiert wird. A: <one>Ectoin</one>, ein Derivat der zyklischen Aminosäure Prolin.
229
+ - <one>Aliivibrio fischeri</one> <two>makes use of which enzyme</two> <three>in order to bioluminescence</three>? <one>Luciferase</one>.
230
+ - <one>MreB</one> <two>can be found inside of a bacterial cell</two> in ... what form? <one>MreB</one> forms a helical filament inside the bacterial cell.
231
+ - Does inserting supercoils into DNA require energy? <one>Yes</one>, via ATP. Releasing supercoils does not require energy.
232
+ - Nenne <one>zwei allgemein unterschiedliche Möglichkeiten</one> <two>zwischen verschiedenen Mikroorganismen biochemisch im Labor zu unterscheiden</two>. A: (1) <one>Katalase-Reaktion</one> (2) <one>Oxidase-Reaktion</one>
233
+ - Nenne einen <one>Unterschied</one> zwischen den <two>Basenanaloga</two> und den <two>alkylierenden Verbindungen</two>. A: Basenanaloga wirken nur in replizierender DNA, alkylierende Verbindungen wirken auch in nichtreplizierender DNA.
234
+ - The <one>CRISPR system</one> provides a form of acquired immunity. How does it achieve this? <one>Short segments of foreign DNA</one> (= <two>spacers</two>) are incorporated into the genome between CRISPR repeats, and serve as a memory of past exposures.
235
+ - <one>Staining</one> <two>is widely used in light microscopy</two>. <three>Name a disadvantage of staining, though</three>. A: <one>Staining often kills cells</one>; it can also distort their features.
236
+ - Can <one>Acidithiobacillus ferrooxidans</one> <two>grow at a pH below 2</two>? <one>Yes</one> - in fact <two>it thrives in such acidic conditions</two>.
237
+ - Nenne ein Bakterium der green-sulfur-bacteria Art, das bei 2500 Metern Tiefe lebt. A: <one>GSB1</one>.
238
+ - Nenne <one>drei gebräuchliche Fluorophore</one> in der Mikroskopie bei Bakterien. A: (1) <one>FITC</one> (2) <one>DAPI</one> (4' 6-Di-amidino-2-phenylindol) (3) <one>Acridine orange</one>
239
+ - Was ist die <one>durchschnittliche Generationszeit</one>? Dies ist <one>die Zeit</one>, <two>die eine aktiv wachsende Bakterienkultur zur Verdoppelung benötigt</two>.
240
+ - <one>Zymomonas mobilis</one> ist <two>gram +</two> oder <two>gram -</two>? <one>Zymomonas mobilis</one> ist <two>gram -</two>, <three>so wie auch E. coli</three>.
241
+ - <one>Polyketide</one> sind <two>Vorläufer welcher zweier Stoffe</two>? (1) <one>Griseofulvin</one> (2) <one>Tetracyclin</one>
242
+ - What means <one>Diauxie</one>? <one>Growth on two different sugars</one>, such as <two>lactose</two> and <two>glucose</two>.
243
+ - What is a <one>one-component regulatory system</one>? This is a system in where <one>a single protein detecs a signal and carries out a regulatory response</one>.
244
+ - Bakterien stellen oft <one>Toxine</one>, aber auch <two>Antitoxine</two> her. Beides wird meistens von dem selben Toxin kodiert. Wieso kann das aber funktionieren? Das <one>Antitoxin</one> ist, im Gegensatz zum Toxin, <two>nur wenig stabil</two>. 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.
245
+ - <one>Geobacter</one> <two>wächst bei n °C</two>? <one>121 °C</one>. URL: https://de.wikipedia.org/wiki/Geobacter
246
+ - <one>Welche Organismen</one> haben <two>Peptidoglycan</two>? Nur <one>Bakterien</one>.
247
+ - Why does a lag phase occur in bacteria? Their metabolism has to speed up again from a lower ground state, which requires time.
248
+ - Der <one>CRISPR locus</one> hat den <two>cascade complex</two>, der <three>welche Untereinheiten</three> hat? <one>CasA</one>, CasB, <one>CasC</one>, <one>CasD</one>, <one>CasE</one>.
249
+ - <one>How old</one> is the <two>first evidence of microbial life</two>? A: About <one>3.45 billion years ago</one>.
250
+ - <one>SecB</one> <two>gehört zu welchem Sekretionssystem</two>? <one>Type II secretion pathway</one>.
251
+ - In regards to bacteria: what is meant with <one>planktonic growth</one>? This basically means that these bacteria will grow in suspensions.
252
+ - Wie wird die <one>Luftkeimzahl</one> bestimmt? Mit Hilfe eines <one>Luftkeimsammlers</one>.
253
+ - The <one>lux operons</one> encode proteins needed for bioluminescence. They are under control of the activator protein ... ? <one>LuxR</one>.
254
+ - Does Pseudomonas aeruginosa make use of Ferredoxin? Yes.
255
+ - What is meant with the awkward expression microbial dark matter? This refers primarily to uncultivated species.
256
+ - <one>Resuscitation signals</one> for bacteria, to break through dormancy, are often ... released from the ... ? Muropeptides, released from the cell wall
257
+ - Are <one>persister cells</one> in general more resistant against antibiotic treatment than regular cells? Yes.
258
+ - Say that you have Micrococcus luteus on a solid plate but it will not grow. What may be the reason for this? Micrococcus luteus may need sulfated galactans, as inducers of growth.
259
+ - <one>Chlorella</one> und <one>Scenedesmus</one> haben <two>was für eine Wand</two>? A: Eine <one>Cellulosewand</one>, mit <two>Sporopollenin-Einlagerung</two>.
260
+ - Nenne vier 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.
261
+ - The smallest mycoplasma coccus (in culture) that is still able to reproduce, has a diameter of ... n nm? <one>300 nm</one>. URL: https://www.ncbi.nlm.nih.gov/books/NBK7637/#A2044
262
+ - <one>Welches Bakterium</one> kann als leicht nachzuweisenden Indikatorkeim für fäkale Verschmutzungen herangezogen werden? <one>E. coli</one>.
263
+ - Nenne ein Bakterium das caffeine abbauen kann. A: <one>Pseudomonas putida</one>.
264
+ - The length of a <one>Paramecium</one> is roughly equivalent to the diameter of ... ? <one>a human hair</one>.
265
+ - Name a bacterium with a fairly small genome, that is so specialized for infection that it shows no evidence of complete metabolic pathways. A: <one>Chromulinavorax destructans</one>.
266
+ - <one>Kokken</one> sind kugelig-runde bis leicht ovale Bakterien. Ihr Durchmesser beträgt in etwa ... ? <one>1 Mikrometer</one> (<two>1 µm</two>).
267
+ - Do <one>halophiles</one> <two>require a high concentrations of salt to survive</two>? <one>Yes</one> indeed they do.
268
+ - <one>Welche allgemeine Aufgabe</one> übernimmt NAD/NADH? Die <one>Nicotinamidadenindinucleotide</one> fungieren als <two>Elektronenüberträger bei Redoxreaktionen</two>.
269
+ - <one>Which four aminoacids</one> can be found in the <two>glycan tetrapeptide</two>? (1) <one>L-alanine</one> (2) <one>D-alanine</one> (3) <one>D-glutamic acid</one> (4) <one>L-lysine or diaminopimelic acid (DAP)</one>
270
+ - Wie werden Mikroorganismen gennant, die bei tiefen Temperaturen gedeihen? <one>Psychrophil</one>.
271
+ - Carbon catabolite repression (CCR) in Escherichia coli occurs primarily at which level? It occurs primarily at the transcriptional level.
272
+ - Nenne <one>zwei ATP-hydrolysierende Proteasen</one> in E. coli, die mit dem Buchstaben C respektive L beginnen. A: (1) <one>Lon</one> (2) <one>Clp</one>
273
+ - Es gibt außer <one>O₂</one> auch alternative Elektronenakzeptoren. Nenne drei energiereiche davon. A: (1) <one>Fe3+</one> (2) <one>NO3⁻</one> (3) <one>NO₂</one>
274
+ - The intracellular response of prokaryotic cells to environmental change is mediated by which <one>two signalling circuits</one> in general? (1) <one>phosphorylation-dependent signalling circuits</one> (2) <one>methylation-dependent signalling circuits</one>
275
+ - Was ist <one>Skotophobotaxis</one>? Dieser Begriff kann mit <one>Taumeln bei Dunkelheit</one> übersetzt werden. Ein phototrophes Bakterium schwimmt aus dem beleuchteten Gesichtsfeld in die Dunkelheit.
276
+ - The <one>anammoxosome</one> is surrounded by a membrane containing ... <two>which particular lipid</two>? The <one>ladderane</one>.
277
+ - Instead of sterols, many bacterial membranes contain ... ? <one>hopanoids</one>.
278
+ - <one>ParM</one> in bacteria mediates p ... s ... A: <one>plasmid segregation</one>.
279
+ - If the <one>MreB proteins</one> are mutated, how may the shape of the affected bacterium be? They will be round/roundish, thus rounded cell - a coccus shape will be the result.
280
+ - Where inside of a cell may the protein <one>FtsZ</one> be found normally? FtsZ would normally form a ring <one>in the middle of the cell</one>.
281
+ - Bacteria may require energy in order to perform mechanical work. What is meant with this? This refers primarily to <one>motility</one>.
282
+ - <one>Why</one> do bacteria employ <two>Phenazines</two>? These aromatic compounds are helpful <one>for bacteria forming biofilms</one>.
283
+ - In der Biologie: <one>wo</one> finden wir <two>fluid-filled channels</two> auf makrozellulärer Ebene (Eukarya exkludiert)? In einem <one>Biofilm</one>.
284
+ - <one>Why</one> does <two>attenuation</two> occur in the laboratory? These attenuated bacteria may grow faster than the more virulent strains.
285
+ - Wie sah die <one>frühe Atmosphäre</one> aus, auf dem Planeten Erde? A: <one>Kein Sauerstoff</one> - aber <two>viele Sulfide dank der Reserven</two>.
286
+ - In microbiology: <one>why</one> are <two>sulfa drugs</two> employed? <one>Sulfa drugs</one> are growth factor analogs that can inhibit the growth of bacteria.
287
+ - <one>How many microbial cells exist on earth</one>, roughly? About <one>2 * 10³⁰ microbial cells</one> exist on Planet Earth.
288
+ - About <one>n% of a microbial cell's wet weight</one> is taken up by water? About <one>75%</one>.
289
+ - <one>S. simulans</one> tötet <two>S. aureus</two> mit Hilfe welchen Toxins? <one>Lysostaphin</one>.
290
+ - <one>Welche Bakteriengruppe</one> besitzt einen <two>Typ-IV Pilus</two>? Die gram-negativen Bakterien.
291
+ - Was ist der wichtigste Punkt bei der <one>Sec-abhängigen Proteinsekretion</one> in Bakterien? Die <one>Proteine sind ungefalten</one> während sie durch die cytoplasmatische Membran transloziert werden.
292
+ - Name <one>two</one> <two>environment-sensitive molecular elements</two> that may provide (genetic) cues for microorganisms. A: (1) <one>transposable elements</one> (<two>TEs</two>) (2) <one>epigenetic components</one> (<two>ECs</two>)
293
+ - Nenne <one>die drei Grundstrukturen</one> bei einem bakteriellen <two>Filament</two>. A: (1) <one>Basalkörper</one> (2) <one>Haken</one> (3) <one>Filament</one>
294
+ - <one>Welche Aufgabe</one> hat der <two>datA Locus</two>? Der <one>datA Locus</one> <two>fischt überflüssige DnaA Proteine weg</two>.
295
+ - Name <one>two key regulatory proteins</one> of the <two>SOS response</two>. A: (1) <one>LexA</one> (2) <one>RecA</one>
296
+ - In bacteria: sites of <one>Dam methylation</one> are typically ...? Sequences of <one>GATC</one>, aka <two>GATC sites</two>.
297
+ - <one>Why</one> do bacteria use <two>gas vesicles</two>? So that these bacteria can <one>float</one>.
298
+ - Most bacteria are <one>monomorphic</one>. <two>What does this mean</two>? This means that these bacteria <one>maintain a single shape</one>; they do not occur in more than a single shape (aka <two>pleomorphic</two>).
299
+ - <one>Wann</one> kommt es in <two>E. coli</two> zur sogenannten <three>stringenten Kontrolle</three>? Zum Beispiel bei einem <one>Aminosäuremangel</one>.
300
+ - <one>Temperaturrekord</one> (<two>Hitze</two>) für Bakterien? <one>121 °C</one>.
301
+ - <one>Salmonella typhimurium</one> produziert welche <two>phenolische Siderophore</two>? <one>Enterobactine</one>.
302
+ - Nenne ein oder zwei <one>sehr hitzebeständige Organismen</one>. A: (1) <one>Pyrolobus fumarii</one> (2) <one>Strain 121</one>
303
+ - What are <one>Bacteriocins</one>? Bacterially produced, <one>small heat-stable peptides</one> that are active against other bacteria.
304
+ - Der <one>oriC</one> besitzt wieviele <two>GATC Sequenzen</two>? <one>11</one>.
305
+ - Unterschiede folgende Begriffe: <one>Monotrichous</one>, <one>Lophotrichous</one>, <one>Amphitrichous</one>, Peritrichous. A: Eingeisselig, <one>Vielgeisselig</one>, <one>Bigeisselig</one>, <one>Vielgeisselig</one>.
306
+ - <one>In which bacteria-group</one> could we find <two>axial filaments</two>? In the <one>spirochete</one> group. URL: https://en.wikipedia.org/wiki/Spirochaete
307
+ - <i>Chloroflexus aggregans</i> was <one>originally isolated from ... </one>? <one>hot springs</one> <two>in Japan</two>.
308
+ - <one>Typische Größe von Bakterien</one> (von, bis)? 1 bis 5 Mikrometer.
309
+ - <one>Who</one> was <two>the first person</two> to report having seen a microorganism? <one>Robert Hooke</one>. URL: https://en.wikipedia.org/wiki/Robert_Hooke#Microscopy
310
+ - Anderes Wort für die <one>eiskristallbildende Bakterien</one>? <one>Pseudomonas syringae</one>. URL: https://en.wikipedia.org/wiki/Pseudomonas_syringae
311
+ - <one>How</one> does <two>Myxococcus</two> <three>kill bacteria</three>? <two>Myxococcus</two> will kill and lyse bacteria through a strategy of <one>cooperating swarms of single cells</one>.
312
+ - Nenne ein <one>Schwefelbakterium</one>. A: <one>Thiobacillus ferrooxidans</one>.
313
+ - Andere Bezeichnung für die <one>Alkanhefe</one>? A: <one>Candida</one>.
314
+ - Die Familie von E. coli ist ... ? <one>Enterobacteriaceae</one>.
315
+ - <one>Warum</one> eigentlich können Mikroorganismen bei zu niedrigen Temperaturen nicht mehr wachsen? <one>Die Membran erstarrt</one> → <two>Transportprozesse verlangsamen</two>.
316
+ - Der <one>aw-Wert</one> beeinflusst das mikrobielle Wachstum. <two>Ab wann sehen wir das kein Wachstum mehr möglich ist</two>? Bei einem <one>aw-Wert unter 0.6</one>.
317
+ - Im <one>Glyoxylat-Zyklus</one>: was geschieht mit <two>Isocitrat</two>? <one>Isocitrat</one> wird gespalten in Succinat (4C Körper, für Biosynthesis) und Glyoxylate (2C).
318
+ - Is <one>Treponema pallidum</one> <two>a bacterium</two>? <one>Yes</one>, it is.
319
+ - Bacteria tend to use make use of <one>storage granules</one> such as <two>PHB</two> (poly-b-hydroxybutyric acid). The monomer of PHB is <two>hydroxybutyrate</two>. How many C-atoms does <two>hydroxybutyrate</two> contain? <one>Four</one>.
320
+ - <one>NlpD in Bakterien</one> ist <two>ein Divisom-assoziierter Faktor</two>. <two>Was kann er aktivieren</two>? <one>Amidasen</one>.
321
+ - Wieviele <one>Ascomyceten</one>-Arten sind bekannt? ca. <one>60.000 Arten</one>.
322
+ - <one>How many bacteria</one> exist on Earth? <one>10³⁰</one>.
323
+ - What is <one>Adenylylation</one>? This is <one>a posttranslational modification</one>, involving a phosphodiester bond between a hydroxyl group of the molecule undergoing adenylylation and the phosphate group of AMP.
324
+ - Nenne <one>zwei Funktionen</one> der <two>Peptidoglykanschicht</two>. A: (1) gibt dem Bakterium seine Form und Stabilität (2) schützt das Bakterium vor osmotischen Lyse
325
+ - How did <one>Horowitz</one> define <two>life</two>? Life possesses the properties of (1) replication (2) <one>catalysis</one> (3) <one>mutability</one>
326
+ - <one>Which microorganism</one> has <two>the largest prokaryotic genome known</two>? <one>Sorangium cellulosum</one>, at a genome size of <two>13,033,779 base pairs</two>. URL: https://en.wikipedia.org/wiki/Sorangium_cellulosum
327
+ - <one>Welches</one> ist <two>das wichtigste Modell</two> um <three>bakterielle Membranen</three> zu beschreiben und wer hat es aufgestellt? Das <one>Fluid Mosaic Model</one>. Aufgestellt wurde es von <two>Singer und Nicholson</two>.
328
+ - Warum sind <one>Salterns</one> (=<two>Hypersaline Water</two>) rot? A: Aufgrund des <one>Bacteriorhodopsin</one>.
329
+ - Wie unterscheidet sich <one>CW</one> und <one>CCW</one> Bewegung der Bakterien voneinander? A: <one>CCW</one> bewegt die Zelle zu einem attractant (<two>forward</two>), CW veranlasst die Zelle die Richtung zu ändern (<two>change</two>). Also wie bei einem 400 Meter Lauf bei Olympia.
330
+ - Are <one>MCPs</one> <two>important in phototaxis</two>? <one>No</one> - they are <two>replaced by a light sensor protein</two>.
331
+ - Nenne ein Beispiel für ein <one>green non-sulfur bacteria</one>. A: <one>Chloroflexi</one>.
332
+ - The <one>hyperthermophiles</one> <two>contain which unique enzyme</two>? <one>Reverse DNA gyrase</one>.
333
+ - <one>Why</one> do eukaryotic microbes reach stationary phase sooner than Bacteria? They are bigger - that is why.
334
+ - <one>Acetic acid bacteria</one> such as <i>Acetobacter</i>, <two>can create vinegar</two>, by using alcohol. Energy for this is taken from ... ? <one>ATP</one>.
335
+ - Nenne einen konkreten Vorteil wenn <one>P. aeruginosa</one> <two>signal molecules</two> verwendet. A: Die <one>Biofilm community</one> ist widerstandsfähiger gegenüber PMNs (polymorphonuclear leukocytes).
336
+ - In Microbiology: what is <one>Volutin</one>? <royalblue>Volutin</royalblue> granules are intracytoplasmic granules complexed, inorganic polyphosphate. It is <two>a storage form</two>.
337
+ - Name <one>two different</one> <two>cocci-form</two> of bacteria. A: (1) <one>diplococci</one> (2) <one>streptococci</one>
338
+ - Bei der <one>Auslösung der Sporulation</one> in <i>Bacillus subtilis</i> - <two>wieviele Sensorkinasen kommen zum Einsatz</two>? <one>4</one> (<two>KinA</two>, <two>KinB</two>, <two>KinC</two>, <two>KinD</two>). URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC1221893/
339
+ - How is <one>growth</one> defined in microbiology? An increase in the number of cells.
340
+ - Name <one>a stain</one> that is used for <two>M. tuberculosis</two>. A: The <one>Ziehl-Neelsen stain</one>.
341
+ - Why is <one>Thiomargarita</one> so big? <one>It needs a large nitrate container</one>, to last out the intervals between storms. About 98% of its volume is storage space, allowing it to hoard large reserves of nitrate under a thin layer of cytoplasm.
342
+ - <one>Wie</one> ist <two>das bakterielle Chromosom</two> in der Zelle organisiert? In Form von <one>superhelikalen Schleifen</one>, die durch Proteine wie HU stabilisiert werden.
343
+ - <one>Bacillus subtilis</one> has a protein called <two>CFS</two>. This abbreviation stands for ... ? <one>Competence and sporulation factor</one>.
344
+ - When we can finally see <one>a colony on an agar plate</one>, <two>how many individual cells will be part of that colony</two>? <one>10⁷ cells</one>.
345
+ - Warum braucht der Wasserfarn <one>Azolla</one> das Cyanobakterium <two>Anabaena azollae</two>? <one>Anabaena azollae</one> <two>versorgt den Farn mit Stickstoff</two>.
346
+ - Im Zuge der Gramfärbung: <one>welche Farbe</one> haben <two>gram positive Bakterien</two> und <one>welche Farbe</one> haben gram negative Bakterien? <one>Gram positive Mikroorganismen</one> <two>erscheinen violett</two>. <one>Gram negative Mikroorganismen</one> <two>erscheinen rot</two>.
347
+ - In the <one>DnaA protein</one>: which domain is the <two>DNA-binding domain</two>? <one>Domain IV</one>.
348
+ - <one>Conjugation</one> depends on ...? The <one>F factor</one>. URL: https://en.wikipedia.org/wiki/Bacterial_conjugation
349
+ - Are <one>bacteria</one> with <two>polar flagella</two> restricted to polar flagella? Not necessarily so. For instance, <i>R. centenum</i> normally is polarly flagellated, but under certain growth conditions they can form - and use - peritrichous flagella.
350
+ - Name a big <one>biosynthetic difference</one> between <two>Archaea</two> and <two>Bacteria</two>. A: The <one>archaeal lipids</one> have an L-glycerol while bacteria and eukaryotes have a D-glycerol. This is strong evidence for a different biosynthetic pathway.
351
+ - <one>Bacteria can sense their environment</one>, and changes within the environment. Give four short examples for this. A: (1) temperature (2) nutrient availability (3) <one>osmolarity</one> (4) <one>cell density</one> (<two>quorum sensing</two>)
352
+ - <one>Which enzyme</one> is <two>required for making new bacterial cell wall</two>? <one>Autolysin</one>. URL: https://en.wikipedia.org/wiki/Autolysin
353
+ - <one>What states</one> does <two>the initiator protein DnaA</two> have? An <one>active ATP-bound form</one> and an <one>inactive ADP-bound form</one>.
354
+ - <one>ABC Transporters</one> (<two>in bacteria</two>) are powered by ... ? <one>ATP</one>.
355
+ - <one>Spirilla</one> have <two>what shape</two>? <one>Spiral-shaped</one>.
356
+ - Name a <one>Protozoa</one> that has <two>multiple nuclei</two> within each single cell. A: <one>Paramecium</one>.
357
+ - <one>Which</one> <two>two important factors</two> - other than pH and temperature - can be controlled in a chemostat? (1) Growth Rate (2) Cell density of the culture
358
+ - Vibrio fischeri was originally called ... ? <one>Photobacterium fischeri</one>.
359
+ - <one>Wo</one> können <two>Phthiocerole</two> gefunden werden? In der <one>äußeren Hülle bei Mycobakterien</one>.
360
+ - How does <one>Epulopiscium</one> reproduce? <one>Epulopiscium</one> reproduces exclusively through <two>an unusual form of sporulation</two>.
361
+ - Warum mag die Alge <one>Dunaliella</one> rot erscheinen? <one>Dunaliella</one> hat <two>viel Carotinoid</two> in der Zelle. URL: https://en.wikipedia.org/wiki/Dunaliella
362
+ - <one>Welche Domäne</one> <two>im DnaA Protein</two> <three>bindet ATP</three>? <one>Domain III</one>.
363
+ - Serratia marcescens produces a red pigment. Is this a pigment? Not really - it is actually an antibiotic.
364
+ - Serratia marcescens produces a red pigmented antibiotic, but only if the temperature is below ... ? <one>Below 30°C</one>. Then they will be colourless; otherwise red.
365
+ - Was ist die <one>Anhydrobiose</one>, <two>wo</two> finden wir sie? <one>Anhydrobiose</one> ist <two>Leben ohne Wasser</two>. Wir finden sie bei den Tardigrada (den Bärtierchen).
366
+ - Name a bacterium that produces a red pigmented antibiotic called <one>prodigiosin</one>. A: <one>Serratia marcescens</one>.
367
+ - Give an example used in transmission electron micrography to <one>reveal the capsule of a bacterium</one>. A: Use <one>ruthenium red</one>.
368
+ - <one>Mutations</one> in the <two>ftsZ gene</two> block ... ? <one>Septum formation</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4905991/
369
+ - How do we call organisms with an optimal pH at 5.5 - 7.9? <one>Neutrophils</one>.
370
+ - <one>Arginine biosynthesis</one> begins with ...? Condensation of Glutamate mit Acetyl-CoA.
371
+ - Können <one>Bakterien</one> ihre <two>Fluidität anpassen</two>? <one>Ja</one>. Bei unterschiedlichen Temperaturen werden Phospholipide mit unterschiedlicher Länge der Fettsäureresten mit oder ohne Doppelbindung eingebaut.
372
+ - Andere Bezeichnung für <one>kugelförmige Bakterien</one>? <one>Kokken</one>.
373
+ - In <one>E. coli</one>: was ist <two>DnaC</two> und was ist <three>DnaB</three>? (1) <one>DnaC</one> ist der <two>Helicase loader</two>. (2) <one>DnaB</one> ist die <two>Helicase</two> (als Hexamer).
374
+ - Nenne <one>vier</one> <two>Mechanismen zur Resistenzentwicklung bei Bakterien</two>. 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
375
+ - <one>Wann</one> wenden wir die <two>Gassterilisation</two> (chemische Sterilisation) an? Bei <one>hitzelabilen Gegenständen</one>.
376
+ - How is <one>microbial growth</one> defined? Microbial growth can be defined as an <one>an increase in the number of cells in a population</one>.
377
+ - Was macht die <one>Pyruvate Dehydrogenase</one>? A: Katalysiert die <one>oxidative Decarboxylierung</one> <two>von Pyruvat</two>. Dabei entsteht <three>Acetyl-CoA</three>. URL: https://en.wikipedia.org/wiki/Pyruvate_dehydrogenase
378
+ - Name a <one>classification system</one> based on <two>cell wall properties</two>. A: (1) <one>mycoplasma</one> (2) <one>gram+</one> (3) <one>gram-</one>
379
+ - <one>Wo</one> vor allem finden wir <two>Fimbrien</two>? Fimbrien findet man vor allem bei <one>gram-negativen Bakterien</one>.
380
+ - <one>Die optimale Wachstumstemperatur für E. coli</one> beträgt ... ? <one>37°C</one>.
381
+ - <one>Bakterielle Gasvesikel</one> bestehen aus welchen 2 Proteinen? GvpA und <one>GvpC</one>.
382
+ - Give an example for <one>conformational protection</one> in microbiology. A: The <one>nitrogenase</one> in <i>Azotobacter</i> is protected from oxygen inactivation by complexing with a specific protein.
383
+ - Wie gleicht <one>Dundiella</one> den <two>externen, osmotischen Wert</two> aus? A: Durch <one>interne Anreicherung an Glycin</one>.
384
+ - In microbiology: what means <one>amensalism</one>? This is <one>a relationship</one> in which the product (or action) of one organism has a negative effect on another organism. URL: https://en.wikipedia.org/wiki/Biological_interaction#Amensalism
385
+ - Nenne die vier wichtigen Schritte beim <one>Gram-Staining</one> (inklusive Angabe der Zeit!). A: (1) <one>Crystal Violet</one>: <two>für 1 Minute</two> (2) <royalblue>Iodine</royalblue>: für eine Minute (3) Alcohol Acetone: für einige Sekunden (4) <one>Safranin Stain</one>: für <two>1 Minute</two>
386
+ - Was nimmt der <one>SRP Komplex</one> als Energie? <one>GTP</one>, da er eine GTPase-Aktivität hat.
387
+ - <one>Mikroben</one> halten <two>wie viel Prozent des biologischen Stickstoff</two> auf der Erde? <one>90%</one>.
388
+ - Kommen <one>Magnetosomen</one> <two>in Eukaryoten</two> vor? Ja. In <one>Algen</one>.
389
+ - Es gibt <one>spezifische Tetrapeptide in der bakteriellen Zellmembran</one>. 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.
390
+ - In bacteria: <one>proteins are exported by ... </one>? <one>Translocases</one>.
391
+ - Was produziert der mikrobielle <one>ANAMMOX Prozess</one>? <one>N₂</one>.
392
+ - Nenne ein Bakterium mit <one>drei Chromosomen</one>. A: <i>Sinorhizobium meliloti</i>. URL: https://en.wikipedia.org/wiki/Sinorhizobium_meliloti
393
+ - <one>Antibacterial agents</one> can be classified into which 3 classes? (1) bacteriostatic (2) <one>bacteriocidal</one> (3) <one>bacteriolytic</one>
394
+ - Nenne <one>drei mögliche Nachteile</one> 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
395
+ - Ist <one>Pseudomonas</one> <two>gram-positiv</two> oder <two>gram-negativ</two>? <one>Pseudomonas</one> ist <two>gram-negativ</two>, so wie auch E. coli.
396
+ - In microbiology: give an example for a <one>differential plate</one>. A: The <one>MacConky Plate</one>. It <two>uses lactose</two> to differentiate one bacteria from another.
397
+ - <one>Sigmafactor RpoS</one> has <two>which cellular task</two>? <one>Adaptation to environmental stress</one>.
398
+ - Nenne <one>zwei Mikroorganismen</one> in denen <two>echte Denitrifikation</two> erfolgt. A: (1) <one>Pseudomonas stutzeri</one> (2) <one>Paracoccus denitrificans</one>
399
+ - The <one>diphteria toxin</one> can add a <two>ADP-Ribose</two> to the eukaryotic translation elongation factor <three>EF-2</three>. To which particular amino acid there? To a <one>histidine</one>.
400
+ - Nenne <one>zwei Beispiele</one> für <two>Proteinglykosylierungen</two>. A: Verknüpfung von Zuckerresten (=Glykosylierung) über eine <one>Sauerstoffbrücke</one> bei Serin und Threonin, oder über eine <one>Stickstoffbrücke</one> über Asparagin.
401
+ - In der Mikrobiologie setzen wir die sogenannte <one>Ziehl-Neelsen-Färbung</one> ein. Wieso tun wir dies? Wir können so <one>säurefeste</one> Bakterien, wie die <two>Mykobakterien</two> und die <one>Nocardien</one>, von den sogenannten nicht "säurefesten" Bakterien, unterscheiden.
402
+ - Does <i>Neisseria gonorrhoeae</i> <one>employ siderophores</one>? <one>No</one>. The causative agent of gonorrhea does not use siderophores - it simples employs receptors on its surface that can bind human iron complexes, such as transferrin or lactoferrin, and wrest the iron from them.
403
+ - Give an example for <one>a bacterium that divides asymmetrically</one>. A: <one>Caulobacter</one>.
404
+ - <one>Bacteria</one> communicate with each other to build elaborate multicellular reproductive structures. <two>Provide two examples for these</two>. A: (1) <one>fruiting bodies</one> (2) <one>complex multispecies biofilms</one>
405
+ - <one>Wo</one> bindet <two>Arg399</two> des DnaA-Proteins am oriC allgemein? In die minor groove der DNA - aber nur wenn die DNA negativ superspiralisiert ist.
406
+ - A <one>single cell of Escherichia coli</one> <two>weighs</two> about n g? About <one>10⁻¹² g</one>.
407
+ - Anderer Begriff für die <one>Nitratatmung</one>? <one>Denitrifikation</one>.
408
+ - In <one>quorum sensing</one>: <two>how does induction of the lux genes work</two>? They are turned on only when the bacterium is close to other bacteria.
409
+ - Was machen <one>Penicillin-bindende Proteine</one> (PBPs) normalerweise? Sie katalysieren die Polymerisation von NAG und NAM (Transglycosylierung) sowie die Verknüpfung zwischen den Peptidbrücken (Transpeptidierung).
410
+ - Give <one>two reasons</one> for <two>why a bacterium may wish to form a calcium-dipicoline acid complex</two>. A: (1) binds water thus helps dehydrate the Endospore (2) intercalates DNA, thus protects it against heat denaturation
411
+ - What can be found in <one>Carboxysomes</one>? A lot of the enzyme <one>RuBisCO</one> (<two>Ribulose-1,5-biphosphate carboxylase/oxygenase</two>).
412
+ - Name <one>four risks</one> of <two>newly emerging diseases</two>. A: (1) zoonotic pathogens from wildlife (2) drug-resistant pathogens (3) zoonotic pathogens from non-wildlife (4) vector-borne pathogens
413
+ - Definiere den Begriff <one>Ribozyme</one>. A: <one>Ribozyme</one> sind RNAs, die als Enzyme (RNA-Enzyme) katalytisch wirksam sind.
414
+ - <one>Welches Mineral</one> (die Summenformel) finden wir in <two>bakteriellen Magnetosomes</two>? <one>Fe₃O₄</one> - aka <two>Magnetit</two>. URL: https://de.wikipedia.org/wiki/Magnetit
415
+ - Can <one>Rickettsia prowazekii</one> <two>grow in chicken embryo fibroblasts</two>? <one>Yes</one>.
416
+ - <one>Helix-Turn-Helix</one> has <two>which two distinct helices</two>? (1) <one>recognition helix</one> (2) <one>stabilizing helix</one>
417
+ - <one>Wie</one> wird die <two>Dipicolinsäure</two> <three>quervernetzt</three>? Über <one>Ca²⁺ Ionen</one>.
418
+ - <one>Wie lange</one> dauert <two>Flash Pasteurization</two>? <one>15 Sekunden</one>.
419
+ - What do we mean with <one>Transduction</one>? <one>Transduction</one> refers to <two>when viruses pick up fragments of host DNA and carry them to another host cell</two>.
420
+ - Nenne <one>zwei keulenförmige Bakterien</one>. A: (1) <one>Bifidobakterien</one> (2) <one>Corynebakterien</one>
421
+ - Was sind <one>kompatible Solute</one>? Osmolyte, die auch bei hohen cytoplasmatischen Konzentrationen nicht mit dem Zellstoffwechsel interferieren.
422
+ - <one>FtsK</one> hält einen Rekord. <two>Welchen</two>? <one>FtsK</one> ist die schnellste bekannte <two>DNA-Pumpe</two>.
423
+ - The <one>mycoplasma genitalium</one> genome contains n genes? <one>525 genes</one>. URL: https://en.wikipedia.org/wiki/Mycoplasma_genitalium#Genome
424
+ - Die <one>light-harvesting systems</one> der <i>Cyanobacteria</i> haben <two>statt dem Chlorophyll was</two>? <one>Phycobilins</one>.
425
+ - Nenne <one>ein sehr kälteliebendes Bakterium</one>, das auch <two>bei Temperaturen von -10°C noch herumschwimmen kann</two>. A: <i>Colwellia psychrerythraea</i>. URL: https://microbewiki.kenyon.edu/index.php/Colwellia_psychrerythraea
426
+ - Does <i>E. coli</i> contain a glycerol transporter? Yes.
427
+ - In Bacteria, we can find a process termed <one>RIDA</one>. <two>What does this process do</two>? <one>RIDA</one> means <two>regulatory inactivation of DnaA</two>. It can inactivate DnaA-ATP into DnaA-ADP, with help from the proteins Hda, DnaA and DNA-loaded beta-clamp proteins.
428
+ - Was verändert sich in einer Batch-Kultur nicht? Das <one>Medium</one>.
429
+ - <one>ABC Transporters</one> require ATP, but why specifically is energy in the form of ATP required? Because these transporters have an ATPase activity in one of the component. This component is responsible for opening the membrane channel.
430
+ - <one>Qualitative Zusammensetzung der Zellen</one>: Unterschied zwischen Prokarya und Eukarya? (1) Prokarya: mehr RNA. (2) <one>Eukarya</one>: <two>höherer Proteingehalt</two>.
431
+ - <one>Bacteria</one> can <two>import nutrients</two> against their <three>natural concentration gradients</three> - but why or where is this critically important? In <one>aquatic habitats</one>, where nutrient concentrations are generally low.
432
+ - <one>Microbial communities</one> can be <two>shaped by predation</two>. Name four influencing factors for these, that is, <three>predators</three>. A: (1) <one>viruses</one> (2) bacterial predators (3) <one>protozoa</one> (4) <one>microfauna</one>
433
+ - We can not culture the so-called 'phantom microbes'. Why do we know about them, though? Because we can <one>use modern genomic techniques to expose their existence</one>.
434
+ - Im <one>sec-abhängigen Weg</one> bei Bakterien: <two>nenne die drei Schritte</two>. A: (1) <one>Targeting</one> (2) Translokation (3) Freisetzung
435
+ - One (simple) factor <one>limiting microbial growth</one> is ... ? The <one>finite supply of nutrients</one>.
436
+ - <one>Welcher Genus</one> zeigt einen <two>Hydroxypropionate pathway of CO₂ incorporation</two>? <one>Chloroflexi</one>.
437
+ - A medium that lacks an essential nutrient, such as a medium lacking leucine, is called ... ? A <one>selective medium</one>.
438
+ - Welches ist <one>die größte Untereinheit von Pol III</one>? Die <one>Alpha Untereinheit</one> mit etwa 140.000 Dalton.
439
+ - Andere Bezeichnung für <one>fraktionierende Sterilisationsmethode</one>? <one>Tyndallisieren</one>.
440
+ - In Bacteria: give another term for <one>a dormant state</one>. A: <one>Spores</one>.
441
+ - Name <one>one very large prokaryote</one>. A: <one>Epulopiscium fishelsoni</one>. URL: https://en.wikipedia.org/wiki/Epulonipiscium#Naming_and_discovery
442
+ - Nenne ein möglichst einfaches Kriterium, an dem man messen kann ob es einer Mikrobe gut geht. A: <one>Fortpflanzung</one> / <one>Fortpflanzungserfolg</one>.
443
+ - <one>Welche Atome</one> finden wir in einer <two>Hydroxamate Group</two>? <one>N-OH-C=O</one>.
444
+ - In the <one>phosphotransferase system</one>: <two>which component phosphorylates the substance that is taken up</two>? The <one>Enzyme IIc</one> component. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4169766/
445
+ - <one>Schlüsselenzym</one> bei der Sulfatreduktion? <one>ATP-Sulfurylase</one>.
446
+ - <one>Maximum temperature of growth</one> for <two>Pyrobolus</two>? <one>113°C</one>.
447
+ - Für die praktische Isolierung von Mutanten können wir <one>welche zwei Arten von Mutationen</one> unterscheiden? (1) selektierbare und (2) <one>nicht selektierbare Mutationen</one>.
448
+ - Angenommen wir <one>entziehen einem Bakterium Glucose</one>. Was geschieht intrazellulär? Der intrazelluläre <one>cAMP Gehalt steigt</one> an, da die Adenylat-Cyclase aktiver wird.
449
+ - Give an example for <one>positive control in Bacteria</one>. A: <one>Maltose Catabolism</one> in E. coli.
450
+ - <one>Welche Person</one> erfand <two>das Ausstreichen von Bakterien auf Agarplatten</two>? <one>Robert Koch</one>. URL: https://de.wikipedia.org/wiki/Robert_Koch
451
+ - <one>Wo</one> innerhalb der Biologie mag <two>Dipicolinsäure</two> gefunden werden? Dies ist eine Substanz, die während der Sporulation von Mikroorganismen gebildet wird.
452
+ - The <one>SRP</one> interacts with <two>which Fts component</two>? <one>Fts Y</one>. URL: https://www.wikigenes.org/e/gene/e/947978.html
453
+ - <one>Glycogen</one> is <two>a storehouse for ... </two>? (1) <one>carbon</one> (2) <one>energy</one>
454
+ - Wie nennt man, auf englisch, den Zustand eines Bakterium, welches künstlich so präpariert wurde, das sie ihre <one>Oberflächenstrukturen abwirft</one>? <one>shaven</one>, in other words: <two>agitated to lose surface structures</two>.
455
+ - What is <one>Hydrotaxis</one>? <one>Hydrotaxis</one> refers to movement towards or away from water - thus, water acts as the stimulus for the movement. See at URL: https://www.answers.com/topic/hydrotaxis
456
+ - In the <one>phosphotransferase system</one>: which enzyme class is called the <two>specific components</two>? <one>Enz IIa</one> and <one>Enz IIb</one>.
457
+ - What is meant with a <one>peritrichous cell</one>? This is <one>when the flagella are randomly distributed around the bacterial cell</one>.
458
+ - <one>Bdellovibrio</one> is <two>gram-positive</two> or <two>gram-negative</two>? <one>Bdellovibrio</one> is gram-negative like E. coli. URL: https://en.wikipedia.org/wiki/Bdellovibrio
459
+ - <one>Genomic studies of motile Archaea</one> revealed that <two>the archaellum</two> did have a structural counterpart in Bacteria. <two>Which one is that</two>? The <one>type IV pilus</one>.
460
+ - <one>Wo</one> findet man den <two>Fenna-Matthews-Olson Complex</two>? Bei <one>Photolithoautotrophs</one>.
461
+ - Nenne <one>drei phototrophe Mikroorganismengruppen</one>. A: (1) <one>Cyanobacteria</one> (2) <one>Purpurbacter</one> (3) <one>Helicobacter</one>
462
+ - What are the <one>haloalkaliphiles</one>? These are <one>alkaliphiles</one> that require high salt content to survive.
463
+ - <one>Which aminoacid</one> is used to connect to <two>m-diaminopimelic acid</two>? <one>D-alanine</one>.
464
+ - <one>Säurefeste Bakterien</one> wie <two>Mycobacterium</two> oder "Nocardia" sind nicht gram-differenzierbar. Nenne eine weitere Gruppe an Bakterien, die nicht gram-differenzierbar sind. A: Die <one>coryneformen Bakterien</one>.
465
+ - Warum sind <one>dormante Mikroorganismen</one> im Boden so wichtig? Dormante Mikroorganismen reduzieren die Wahrscheinlichkeit des Aussterbens eines Mikroorganismus.
466
+ - <one>Chemolithotrophs</one> <two>obtain their carbon how</two>? From <one>CO₂</one>.
467
+ - Nenne fünf <one>Komponenten eines Lichtmikroskops</one>. A: (1) <one>Okular</one> (2) <one>Objektiv</one> (3) <one>Objektträger</one> (4) <one>Kondensor</one> (5) <one>Beleuchtungsspiegel</one>
468
+ - Name the <one>three major functions</one> of the cytoplasmic membrane in bacteria. A: (1) the cytoplasmic membrane <one>prevents leakage</one> (2) the cytoplasmic membrane anchors proteins (3) the cytoplasmic membrane conserves energy
469
+ - How would a <one>batch culture</one> be defined? No fresh medium is added during incubation, thus nutrient concentration decline and waste products accumulate during growth.
470
+ - <one>Wo</one> kann die <one>meso-Diaminopimelinsäure</one> gefunden werden? In <one>gram-negativen Bakterien</one>, wie zum Beispiel <two>E. coli</two>.
471
+ - Name <one>the three classes of transport systems in Microbiology</one>. <two>How are they functionally different from one another</two>? We have <one>simple transport</one>, <one>group translocation</one> and <one>ABC transporters</one>. Only <two>group translocation</two> results in a chemical modification, though.
472
+ - Nenne einen Unterschied zwischen <one>Cyanobacteriota</one> und <one>Bakterien</one>. A: Erstere besitzen <one>Chlorophyll a</one>.
473
+ - Was ist <one>der Angriffspunkt des Lysozym</one>? Lysozym hydrolyisert "Beta-1,4-glykosidische Bindungen" zwischen N-Acetylmuraminsäure- (NAM) und N-Acetylglucosaminresten (NAG), in Peptidoglykanen.
474
+ - Wieso wirkt <one>Isopropanol</one> besser als <two>Ethanol</two> gegen Bakterien? Isopropanol kann die bakterielle Membran leichter überwinden.
475
+ - Bei Bakterien: <one>wie</one> unterscheiden sich <two>Kapsel</two> und <three>Schleimhülle</three> voneinander? Die <one>Kapsel</one> ist mit der Zellwand fest verankert, die Schleimhülle nicht.
476
+ - What is the <one>Thermosome</one>? The <one>Thermosome</one> is <two>a chaperonin protein complex that functions in archaea</two>.
477
+ - Aus Sicht der <one>mikrobiellen Physiologie</one>: <two>welche zwei Funktionen</two> haben <three>Stoffwechselwege</three>? (1) Bereitstellung von Vorstufen (2) Energie für Synthesen und andere Energie-verbrauchende Prozesse bereitzustellen
478
+ - Nenne eine Bedingung damit man den <one>Ames-Test</one> durchführen kann. A: Die ursprüngliche Mutation muss eine <one>Punktmutation</one> sein.
479
+ - <one>Which bacteria</one> are notorious for forming <two>'blooms'</two> in lakes? <one>Cyanobacteria</one>.
480
+ - Give an example for a <one>reproductive parasite</one>. A: The bacterium <one>Wolbachia</one>. URL: https://en.wikipedia.org/wiki/Wolbachia
481
+ - <one>Signaltransduktion</one> in Bakterien wird typischerweise implementiert durch die Bindung eines Signalmoleküls an einen Rezeptor. <two>Dieser Rezeptor ist meistens was für ein Typ</two>? Die Rezeptoren sind hier primär <one>Sensorkinasen</one>.
482
+ - In <one>Helicobacter</one> we can see <two>dark granules</two>. What are these for? A: These store <one>polyphosphate</one>.
483
+ - Nenne ein Protein in dem wir <one>Pantothensäure</one> finden mögen. A: <one>Acylcarrierprotein</one>.
484
+ - Define the term <one>Bacteremia</one>. A: <one>Bacteremia</one> is the <two>presence of bacteria in the bloodstream</two>. URL: https://en.wikipedia.org/wiki/Bloodstream_infections
485
+ - <one>Wie lange dauert</one> <two>eine Replikationsrunde in E. coli</two>? <one>40 Minuten</one>.
486
+ - Andere Bezeichnung für die <one>log-phase</one>? <one>Exponentielles Wachstum</one>.
487
+ - Gasvesikel: Das <one>GvpA-Protein</one> macht <two>wieviel Prozent im Gasvesikel</two> aus? <one>97%</one>.
488
+ - Is <one>ATP</one> available in the periplasm of gram-negative bacteria? No.
489
+ - Durch <one>welche zwei verschiedenen Prozesse</one> wird ATP generiert? A: (1) <one>Substratkettenphosphorylierung</one> und (2) Electron-Transport generation.
490
+ - Was sind <one>xerophile Mikrorganismen</one>? Das sind <one>Organismen, die trockene Lebensräume bevorzugen</one>.
491
+ - When <one>a bacterium divides</one>: <two>how do we call the thing that forms right between them, before the septum emerges</two>? The <one>Z-ring</one>.
492
+ - What is <one>the most famous domain</one> <two>in the DnaA protein</two>? The <one>AAA+ domain</one>.
493
+ - Was sind <one>atriche Zellen</one>? <one>Zellen ohne Flagellen</one>.
494
+ - Give another name for <one>positive regulators of transcription</one> in bacteria. A: <one>Activator proteins</one>.
495
+ - The <one>"Sulfur pearl of Namibia"</one>, also known as the <two>giant sulfur-eating microbe</two>, refers to which bacterium specifically? <one>Thiomargarita namibiensis</one>. URL: https://en.wikipedia.org/wiki/Thiomargarita_namibiensis
496
+ - Wir sehen einen eukaryotischen Mikroorganismus mit <one>Hydrogenosomes</one>. Was können wir hier über diesen Mikroorganismus mutmassen? Dieser Mikroorganismus wird wohl keine Mitochondrien besitzen.
497
+ - Durchmesser eines <one>F-Pilus</one>? <one>8 nm</one>. URL: https://en.wikipedia.org/wiki/Pilus
498
+ - Was bedeutet <one>Serovar</one>? Das sind unterscheidbare Variationen innerhalb der Subspezies von Bakterien oder Viren.
499
+ - Nenne ein Beispiel für <one>chemolithotrophe Bakterien</one>. A: <one>Nitrifikanten</one>.
500
+ - Welche zwei <one>faces</one> finden wir am <two>Tus-Protein</two>? (1) <one>nonpermissive face</one> (2) <one>permissive face</one>
501
+ - In der Mikrobiologie: wofür steht die Abkürzung <one>Fts</one>? <one>Filamentous temperature sensitive</one>.
502
+ - Im bakteriellen <one>OriC</one> gibt es AT-reiche 13bp Sequenzen, die man auch <two>13mers</two> nennt. Nenne ein weiteres, anderes Wort für diese Elemente. A: <one>DNA unwinding element</one>.
503
+ - Name one reason <one>why microorganism fix nitrogen</one>, 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.
504
+ - Bei der <one>Sulfatreduktion</one> gibt es assimilatorischen und dissimilatorischen Weg. <two>Welche Substanz wird hierbei jeweils verwendet</two>? (1) <one>PAPS</one> im ass. (2) <one>APS</one> im dissimilatorischen Weg.
505
+ - Bei <one>gram- Bakterien</one>: <two>wie</two> ist der Lipid-A Anteil mit dem <three>core polysaccharide</three> verknüpft? Mittels <one>glucosamine phosphat</one>.
506
+ - Erkläre den Unterschied in <one>quorum sensing</one> zwischen <two>gram+</two> und <two>gram-</two> Bakterien. A: gram- Bakterien verwenden acyl-homoserine lactone, gram+ verwenden kurze Peptide die oft chemisch modifiziert sind.
507
+ - <one>Pili</one> ... pilus... was heisst eigentlich pilus? <one>Haar</one>.
508
+ - What <one>structure</one> defines the existence of a bacterial cell? The <one>cell membrane</one>.
509
+ - In der Mikrobiologie: was ist eine <one>Transaminase</one>-Reaktion? Das Verschieben einer NH₂-Gruppe von einer Aminosäure auf eine organische Säure.
510
+ - Name a bacterium that <one>can survive the conditions inside of a lysosome</one>. A: <one>Salmonella</one>.
511
+ - <one>Bacteria that lack flagella</one> are also called ... ? <one>Atrichous</one>. URL: https://en.wiktionary.org/wiki/atrichous
512
+ - The microbiological process of forming minerals is called ... ? <one>Biomineralization</one>. URL: https://en.wikipedia.org/wiki/Biomineralization
513
+ - <one>Zellschrumpfung</one> und <one>Plasmolyse</one>. Ordne diese Begriffe jeweils gram-positiven oder gram-negativen Zellen zu. A: (1) <one>Plasmolyse</one>: <two>gram-positive Zellen</two>. (2) <one>Zellschrumpfung</one>: <two>gram-negative Zellen</two>.
514
+ - In der Mikrobiologie: was sind <one>ETEC-Stämme</one>? <one>Enterotoxische E. coli Stämme</one>.
515
+ - Der Schwefeloxidierer <one>Thiomargarita namibiensis</one> kann wie gross werden (in Mikrometer)? Bis zu <one>750 Mikrometer</one> (<two>0.75 mm</two>). URL: https://en.wikipedia.org/wiki/Thiomargarita_namibiensis
516
+ - Name <one>a siderophore</one> expressed by <two>P. aeruginosa</two>. A: <one>Pyoverdine</one> + ADD URL.
517
+ - <one>Wer</one> hat das <two>Cholera-Bakterium</two> entdeckt? <one>Robert Koch</one>. URL: https://en.wikipedia.org/wiki/Robert_Koch
518
+ - Nenne <one>sterol-like molecules</one> in bakteriellen Membranen. A: <one>Hopanoids</one>.
519
+ - <one>Why</one> do Bacteria store <two>polyphosphat</two> in granules? These PO43⁻ granules can be used to lateron generate ATP and can also be used for nucleic acid synthesis.
520
+ - Nenne ein Bakterium das <one>PHB-Granula</one> enhält. A: <one>Rhodovibrio sodomensis</one>.
521
+ - Wieviele <one>DNA-Polymerasen</one> werden für die Synthese des Folgestrangs benötigt? <one>2</one>.
522
+ - <one>Hitzeschockproteine</one>, zumindest in E. coli, haben oft mit <two>welchem Areal der bakteriellen Zelle zu tun</two>? Mit der <one>Zellmembran</one>.
523
+ - Give an example for <one>a microbe with three replication origins</one>. A: <one>Sulfolobus acidocaldarius</one>. URL: https://de.wikipedia.org/wiki/Sulfolobus_acidocaldarius
524
+ - For bioterrorism: which bacterium is considered to be <one>very useful</one>? <one>Bacillus anthracis</one>.
525
+ - Name <one>six important proteins</one> that can be found at the <two>oriC locus</two>. A: (1) DnaA (2) DnaB (3) DnaC (4) HU (5) <one>Gyrase</one> (6) <one>SSB</one>
526
+ - Give another term for a <one>dormant, microbial subpopulation</one>. A: <one>Persister cells</one>. URL: https://en.wikipedia.org/wiki/Persister_cells
527
+ - In der Mikrobiologie: nenne einen anderen Begriff für <one>Septum</one>. A: <one>Partition</one>.
528
+ - <one>Bacillus subtilis</one> is <two>gram⁺</two> or <two>gram⁻</two>? <one>Bacillus subtilis</one> is <two>gram⁺</two>, unlike E. coli.
529
+ - Nenne <one>3 Taxien</one> die wir in Bakterien finden können. A: (1) "Aerotaxis" (2) <one>Chemotaxis</one> (3) <one>Phototaxis</one>
530
+ - Wie verhindert <one>Chlorella lophophora</one> die Verdauung durch das Phagosom von Paramecium? <one>Durch Produktion des Lektins Concanavalin A</one>, sowie besonderer Oberflächenstrukturen.
531
+ - <one>Wo</one> findet man <two>Lectine</two> bei Bakterien wie E. coli? Auf den <one>Pili</one>.
532
+ - Aside from stopping ribosome-biosynthesis, the <one>stringent response</one> in bacteria also inhibits the initiation of ... ? <one>DNA-replication</one>.
533
+ - Was ist <one>methicillin</one>? A <one>semisynthetic penicillin</one>, discovered in 1960. URL: https://en.wikipedia.org/wiki/Methicillin
534
+ - Welche Gene im Bakterium sorgen dafür das das <one>Septum</one> <two>richtig lokalisiert</two> ist? Die Gene im <one>Min-System</one>.
535
+ - Es gibt die attachment organelle, den <one>stalk</one>. <two>Was sekretiert dieser</two>? <one>Adhesion factors</one> die man <two>holdfasts</two> nennt.
536
+ - <one>Wie dick</one> sind <two>Fimbrien</two>, in nm? Etwa <one>30nm - 40nm</one>.
537
+ - Do <one>prokaryotes</one> <two>have proteins associated with their DNA</two>? Yes.
538
+ - In <one>E. coli</one>: <two>welche zwei Proteine</two> sind verantwortlich für das Abschneiden der 3' Ende der mRNA wenn die RNA-Polymerase stehen bleibt? <one>GreA</one> und <one>GreB</one>.
539
+ - Name a microbial species that lacks the TCA cycle. A: <one>Treponema pallidum</one>. URL: https://en.wikipedia.org/wiki/Treponema_pallidum
540
+ - <one>ABC transporters</one> in molecular biology, as well as in bacteria, <two>require energy derived from ...</two>? <one>ATP</one>.
541
+ - Nenne ein Beispiel für <one>ein bakterielles ABC-Transportsystem</one>. A: Das <one>ABC-System</one> <two>für Maltose</two> in E. coli.
542
+ - Nenne <one>die zwei verbreitesten Differenzierungsfärbungen</one>. A: (1) <one>Gram-Färbung</one> (2) <one>Säurefestigkeitsfärbung</one>
543
+ - Nenne die zwei Klassen der <one>Mikroalgen</one>. A: (1) "eukaryotische Grünalgen" (2) <one>prokaryotische Cyanobakterien</one>
544
+ - In regards to <one>the salt requirement of a microorganism</one>, there are <two>four different groups</two>. Name them. A: (1) Halotolerant (2) Halophile (3) Extreme halophile (4) <one>Nonhalophile</one>
545
+ - Bakterien können wie schnell, gemessen an ihrer Körperlänge, schwimmen? Bis zum <one>50-fachen ihrer Körperlänge</one>.
546
+ - <one>Which domain of DnaA</one> <two>changes upon binding of ATP</two>? The <one>AAA+ domain</one>.
547
+ - Nenne <one>eine Methan-produzierende, anaerobe Archaea</one>. A: <one>Methanococcus jannaschii</one>.
548
+ - How do <one>diplococci</one> arise? When cocci divide and remain together.
549
+ - Nenne einen Vertreter der <one>Photoorganoheterotrophs</one>. A: <one>Chloroflexus</one>.
550
+ - <one>Welches Enzym</one> wirkt an <two>GATC Sequenzen</two>? Die <one>Dam-Methylase</one>, die an der Adeninstelle methyliert.
551
+ - Nenne und beschreibe <one>die aussergewöhnlichste Fortpflanzungsstrategie eines Bakteriums</one>. A: <one>Epulopiscium fishelsoni</one> 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.
552
+ - <one>E. fishelsoni</one> ist sehr gross, aber es gibt mind. noch ein grösseres Bakterium. Welches? <one>Thiomargarita namibiensis</one>. 1997 entdeckt. URL: https://en.wikipedia.org/wiki/Thiomargarita_namibiensis
553
+ - How do we <one>control cell density</one> in a <two>chemostat</two>? We can <one>limit a nutrient</one>, just as in a batch culture.
554
+ - Give one famous example for <one>pathogenic bacteria</one> that has <two>a capsule of protein</two>, and another example for <two>a capsule of polysacharide</two>. A: (1) <one>capsule of protein</one>: <two>Bacillus anthracis</two> (2) <one>capsule of polysacharide</one>: <two>Streptococcus pneumoniae</two>
555
+ - Was sind <one>barophile Mikroorganismen</one>? Diese Mikroorganismen <one>benötigen einen hohen Druck</one>.
556
+ - In der Mikrobiologie: was heissen <one>Fts-Proteine</one> und <two>was machen sie</two>? <one>Fts</one> ... filamentös temperatur empfindlich. Dies sind Zellen die, wenn sie mutiert sind, Schwierigkeiten haben sich zu teilen.
557
+ - In microbial systematics: what does the abbreviation <one>MLST</one> stand for? <one>Multilocus sequence typing</one>.
558
+ - Was binden die <one>selektiven Siderophore</one> bevorzugt? <one>Dreiwertiges Eisen</one> (<two>Fe³⁺</two>).
559
+ - Wie ermitteln wir die <one>spezifische Wachstumsrate (k)</one> in der Mikrobiologie? Sie entspricht der <one>Steigung der Geraden</one>.
560
+ - Warum ist <one>das Rippentierchen</one> <two>Aspidisca</two> <three>ein Nitratindikator</three>? Zum Einen dadurch das <one>die Rippen umso höher liegen je mehr Nitrat im Wasser vorhanden ist</one>. Zum Anderen durch die blosse Anzahl- <two>je mehr Rippentierchen, umso mehr Nitrat</two>.
561
+ - <one>Woraus</one> besteht <two>Thiomargarita namibiensis</two> zu 98%? Aus einer <one>Vacuole</one>. URL: https://en.wikipedia.org/wiki/Thiomargarita_namibiensis
562
+ - If a bacterium lacks a cell well, such as the <one>mycoplasmas</one>, what can we assume from this be the case, out of necessity alone? That these cells will contain <one>unusually tough cytoplasmic membranes</one>, which is indeed the case.
563
+ - Nenne die fünf <one>Key Genera</one> des Phyla Spirochaetes in alphabetischer Reihenfolge. A: (1) Borrelia (2) Cristispira (3) Leptospira (4) Spirochaeta (5) <one>Treponema</one>
564
+ - <one>Welche besondere Proteine</one> findet man in der Zellwand von Pilzen? <one>Mannoseproteins</one>.
565
+ - In the <one>phosphotransferasesystem</one>: <two>which enzyme parts are nonspecific</two>? (1) <one>Hpr</one> (2) <one>EnzI</one>
566
+ - <one>Hydroxamate group</one> <two>complexes which atom</two> (be precise!)? <one>Fe³⁻</one>.
567
+ - How do we call <one>cocci</one> that divide in three planes and still remain attached to one another in cubelike groups of eight? <one>Sarcina</one>. URL: https://www.britannica.com/science/coccus-bacterial-shape#ref44969
568
+ - There are bacteria called <one>mollicutes</one>. Why that name? <one>Mollis</one> is <two>soft</two>, <two>cutis</two> is <three>skin</three>. These are bacteria without a cell well.
569
+ - Wie lange dauert der <one>ames-Test</one>? Mindestens <one>eine Nacht</one>.
570
+ - Was gibt der <one>BSB5-Wert</one> an? Den <one>biochemischen Sauerstoffbedarf in 5 Tagen</one> <two>unter Standardbedingungen</two>.
571
+ - Nenne ein Bakterium das die beiden cell types <one>motile</one> und <one>stationary</one> besitzt. A: <one>Caulobacter</one> (ein gram-negatives Bakterium).
572
+ - Durchmesser der kleinsten Bakterien in Mikrometer? <one>200 Mikrometer</one>.
573
+ - <one>Welche Bakterienfamilie</one> ist berühmt für ihre <two>Antibiotika-Synthesewege für Polyketide</two>? Die <one>Actinomyceten</one>.
574
+ - <one>Which microorganism</one> grows on <two>burnt trees</two>? <one>Neurospora</one>.
575
+ - In Bacteria, what happens right before <one>septum formation</one>? <one>Cell elongation</one>.
576
+ - In order to <one>yield H₂</one>, starting from Pyruvate, catalyzed by the enzyme <two>Hydrogenase</two>, we need ...? The iron-sulfur protein <one>Ferredoxin</one>.
577
+ - <one>Caulobacter</one> has been used to <two>study which molecular phenomenon</two>? The <one>cell division process</one>.
578
+ - Die <one>DNA in Bakterien wird an der Zellmembran verankert</one>. <two>Dies verhindert die Neuinitiation am oriC</two> und die Promoteraktivierung am dnaA-Gen. Welches Protein sorgt für diese Verankerung? Das Protein <one>SeqA</one>.
579
+ - Die meisten der <one>nitrifizierenden Prokaryoten</one> gehören zu den? <one>Proteobacteria</one>. URL: https://de.wikipedia.org/wiki/Proteobacteria
580
+ - Was sind <one>kryptische Plasmide</one>? Dies sind Plasmide, die der Wirtszelle keine neuen Eigenschaften verleihen.
581
+ - <one>Enterobactine</one> sind <two>Derivate von ...</two>? A: Der aromatischen Verbindung <one>Catechol</one>.
582
+ - <one>How</one> does <two>Actinomycin</two> work? <one>Actinomycin</one> inhibits RNA synthesis by combining with DNA and blocking RNA elongation.
583
+ - What is the main purpose of <one>Salmonella SPI2</one>? So that <one>Salmonella can grow within macrophages</one>.
584
+ - <one>MinE</one> inhibiert ...? <one>MinCD</one>.
585
+ - Movement of bacteria toward or away from oxygen is called ... ? <one>Aerotaxis</one>. URL: https://en.wikipedia.org/wiki/Taxis#Classification
586
+ - From an <one>anatomical</one> point of view, is there something interesting to note about the <two>origin of replication</two> 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.
587
+ - Was ist <one>Snowmax</one> und wozu wird es verwendet? Snowmax sind <one>Frostbakterien</one>, die künstlichen Schnee produzieren können.
588
+ - In Bakterien gibt es die <one>DNA-Helikase DnaB</one>. Wieviele Untereinheiten hat dieses Protein? <one>DnaB</one> ist ein Hexamer; besitzt somit 6 Untereinheiten.
589
+ - Aus Sicht einer bakteriellen Zelle: <one>wo</one> kann das <two>ComP Protein</two> gefunden werden? Dieses <one>sensor protein</one> ist <two>in der Membran verankert</two>.
590
+ - Give an example for a bacterium that is <one>multicellular</one>. A: <one>Magnetoglobus</one>.
591
+ - What is <one>the main protein</one> to induce sporulation in <two>Bacillus subtilis</two>? <one>Spo01</one>.
592
+ - Beim <one>SeqA-Protein</one>: warum der Name <two>Seq</two>? <one>Seq</one> steht hier für <two>Sequestration</two>, also Trennung. URL: https://en.wikipedia.org/wiki/SeqA_protein_domain
593
+ - <one>Which bacteria</one> have the <two>sortase</two>? The <one>gram-positive bacteria</one>. URL: https://en.wikipedia.org/wiki/Sortase
594
+ - Give an example for <one>a bacterium with more than one chromosome</one>. A: <one>Vibrio cholerae</one>.
595
+ - <one>Fusarium graminearum</one> verursacht was genau und wo? A: <one>Wurzelfäule</one>, <two>bei Weizen</two>.
596
+ - Durchmesser des <one>Nucleus</one>, von-bis? <one>5-10 Mikrometer</one>.
597
+ - Why do bacteria make use of <one>fimbriae</one>? <one>Fimbriae</one> <two>enable cells to stick to surfaces</two>.
598
+ - <one>Glucosamine 6-phosphate</one> is <two>a precursor in what synthetic pathway</two>? In the <one>peptidoglycan synthesis</one> pathway.
599
+ - Was ist die <one>Salt-in</one> Strategie bei Mikroorganismen? Die <one>Aufnahme anorganischer Salze in das Cytoplasma</one>.
600
+ - <one>Welche drei Abteilungen</one> unterscheidet man innerhalb der Bacteria? (1) <one>Cyanobacteriota</one> (2) <one>Negibacteriota</one> (3) <one>Posibacteriota</one>
601
+ - Nenne einen Eukaryoten mit einem <one>Pan-Genom</one>. A: Die Kalkalge <one>Emilliania huxleyi</one>.
602
+ - The Protein <one>SeqA</one> shows <two>an affinity for</two> ...? <one>Hemimethylated origins</one>.
603
+ - Innerhalb einer Zelle: was ist der zentrale Punkt in der <one>NH4⁺ Übertragung</one>? Die <one>Glutamin Synthase</one>.
604
+ - <one>Bakterienzellen</one> können vor allem <two>welche Proteinmodifikation</two> nicht durchführen? <one>Glykosylierungen</one>.
605
+ - What dictates the <one>upper limits</one> for the size of prokaryotic cells? Problems related to <one>nutrient uptake</one>.
606
+ - Nenne <one>ein Bakterium das Dextran bildet</one>. A: <one>Leuconostoc mesenteroides</one>.
607
+ - Where does <one>Bdellovibrio</one> replicate? In the <one>periplasmic space</one> of the prey cell.
608
+ - Give another term for <one>non-moving cells</one>, in regards to bacteria. A: <one>Sessile cells</one>.
609
+ - <one>What is the main task</one> of the bacterial <two>ZipA Protein</two>? <one>ZipA</one> is an anchor that connects the FtsZ ring to the cytoplasmic membrane.
610
+ - Nenne <one>vier Enzyme</one> die bei der <two>Denitrifikation</two> eine Rolle spielen. A: (1) Nitratreduktase (2) Nitritreduktase (3) Stickstoffmonoxid-Reduktase (4) Distickstoffmonoxid-Reduktase
611
+ - Do <one>gram-positive bacteria</one> have <two>ABC transport systems</two>? Yes.
612
+ - Which <one>two types</one> of <two>random movement</two> are available to bacteria? (1) <one>runs</one> (2) <one>tumbles</one>
613
+ - Was sind die sogenannten <one>H-Antigene</one>? <one>Oberflächenorganellen</one> wie Geißeln / <two>Flagellen</two>.
614
+ - Woher bezieht das <one>Tat-Export System</one> die Energie für die Translokation von Proteinen? Durch die <one>PMF</one>.
615
+ - Nenne einen <one>Pilz</one> der <two>Phenole abbauen kann</two>. A: <one>Trichosporon cutaneum</one>.
616
+ - Name the three <one>archaeal promoter elements</one>. A: (1) <one>INIT</one> (2) TATA-box (3) BRE: B recognition element
617
+ - Nenne ein Beispiel für einen Organismus der <one>Ammonium degradieren</one> kann. A: <one>Candidatus Brocadia anammoxidans</one>.
618
+ - Die <one>Bakteriengeissel</one> wächst wo aus? Von der Spitze ausgehend.
619
+ - <one>Eine einzelne E. coli Zelle</one> besitzt in etwa <two>wieviele Ribosomen</two>? <one>200.000</one>.
620
+ - <one>Bacteria</one> can have <two>alter egos</two>? Yes, in form of <one>pathogenic strains</one>.
621
+ - Definiere den Begriff <one>Dehalogenierung</one>. A: Dies bezeichnet das <one>Abspalten der Halogensubstituenten</one> <two>aus organischen Verbindungen</two> (durch Mikroorganismen in diesem Kontext).
622
+ - What <one>dual-role</one> may bacterial proteins such as <two>H-NS</two> or <two>HU</two> have? (1) they can <one>bind DNA</one> (2) tehy can also <one>regulate gene expression</one>
623
+ - Eine bakterielle Zelle hat <one>wieviel Prozent Protein-Anteil</one>? <one>55%</one>.
624
+ - Was sind <one>Mixotrophe</one>? Dies sind <one>Chemolithotrophe</one>, die mit einer organischen Kohlenstoffquelle und einem anorganischen Elektronendonor wachsen.
625
+ - Was ist eine <one>Coenocyte</one>? Eine <one>Coenocyte</one> ist eine multinucleate cell, bei dem sich das Cytoplasma von einem Nuclei zum nächsten erstreckt. So ein Organismus ist somit <two>vielkernig</two>.
626
+ - Why does <one>Halobacterium salinarum</one> (https://en.wikipedia.org/wiki/Halobacterium_salinarum) <two>require Bacteriorhodopsin</two>? It produces ATP under <one>anoxic conditions</one> and thus supports slow growth.
627
+ - Can <one>mycoplasma</one> <two>reproduce outside of living host cells</two>? <one>Yes</one>.
628
+ - Some <one>Archaea</one> 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. <two>Name this bacterium</two> (or another one with such a high temperature range). A: <one>Thermotoga maritima</one>. URL: https://en.wikipedia.org/wiki/Thermotoga_maritima
629
+ - <one>Woraus</one> kamen die <two>Plastiden</two> und die <two>Mitochondrien</two> jeweils? <one>Plastiden</one> aus <two>Cyanobakterien</two> (→ https://de.wikipedia.org/wiki/Cyanobakterien), <one>Mitochondrien</one> aus <two>Proteobakterien</two>.
630
+ - Name <one>two prokaryotes without a cell wall</one>. A: (1) <one>Mycoplasma</one> (2) <one>Thermoplasma</one>
631
+ - <one>Where</one> does the <two>deep sea</two> start? At <one>water depth greater than 1000m</one>.
632
+ - Is <one>Bacillus stearothermophilus</one> <two>a slow grower</two>? <one>No</one>, its <two>generation time</two> is only <three>11 minutes</three>.
633
+ - <one>Thermophiles</one> haben was für einen Membrantypus? A: <one>Rigid</one> - haben also <one>eher starre Membranen</one>.
634
+ - Hängt die <one>Gram-Färbung</one> vom Alter der Bakterien ab? <one>Ja</one>, zum Teil: <two>ältere Bakterien-Kolonien lassen sich allgemein schlechter einfärben als junge Bakterien</two>.
635
+ - <one>Actinomycetes</one> produzieren <two>lange Filamente</two>, die wie genannt werden? <one>Hyphae</one>.
636
+ - Ist <one>Thermus aquaticus</one> ein Bakterium oder eine Archaea? Ein <one>Bakterium</one>.
637
+ - Besitzen die gramnegativen <one>Rhizobien</one> <two>Flagellen</two>? Ja.
638
+ - How to find <one>enzymes that function at high salinity</one>? We can look at <one>halophiles</one>.
639
+ - <one>Welche Bakterien</one> zeigen einen <two>metallischen Glanz</two>? <one>E. coli</one>.
640
+ - Wie speichern Bakterien, wie zum Beispiel die <one>Pseudomonaden</one>, <two>lösliche Phosphate</two>? Sie speichern sie in Form von <one>Polyphosphat</one>.
641
+ - <one>Who</one> theorized in the early 1970s that <two>Earth behaves like a superorganism</two>? <one>James Lovelock</one>.
642
+ - What is the <one>dilution rate</one>? This is the rate at which fresh medium is pumped in and spent medium is removed.
643
+ - Wie sieht eine <one>ethanolamine group</one> aus? <one>H3N+ - CH₂ - CH₂ - O</one>.
644
+ - Aufgabe der <one>Autolysine</one>? Machen Löcher in die Bakterienwand. Dort werden dann neue Zellwandstrukturen eingelagert.
645
+ - Angenommen wir geben <one>Cycloheximid</one> zu <two>Archaea</two> und <two>Eukarya</two>. Welchen Effekt mögen wir hierbei sehen? <one>Eukarya</one> sind <two>sensitiv gegenüber Cycloheximid</two>, das als <three>Translationshemmer</three> wirkt.
646
+ - Andere Bezeichnung für <one>Inokulum</one>? <one>Kleine Menge</one>.
647
+ - Name <one>a particularly effective drug</one> against <two>gram-negative bacteria</two>. A: <one>Gentamicin</one>. URL: https://en.wikipedia.org/wiki/Gentamicin
648
+ - Vergleicht man <one>Rickettsia prowazekii</one> mit anderen Bakterien-Genomen fällt einem was auf das besonders ist? <one>24% nicht codierender DNA-Anteil</one>; dies ist ein hoher Wert für Bakterien.
649
+ - <one>Rickettsia Prowazekii</one> hat wie viele bp im Genom? <one>1.1 Mio bp</one>.
650
+ - Name <one>the two most famous members</one> of the <two>Euryarchaeota</two>. A: (1) the <one>halophiles</one> (2) the <one>methanogens</one>
651
+ - Wer oder was fungiert als <one>Glucosesensor</one> in Bakterien? Die <one>Adenylat-Cyclase</one>. URL: https://en.wikipedia.org/wiki/Adenylyl_cyclase
652
+ - Einige Bakterien verwenden <one>welche Alternative zu Ubichinon</one>? <one>Menachinon</one>.
653
+ - In the <one>gram-positive</one> bacterium <two>Staphylococcus aureus</two>, its interbridge consists of ... ? <one>Five glycines</one>.
654
+ - Nenne ein Bakterium mit <one>linearen Plasmiden</one>. A: <one>Borrelia burgdorferi</one>. URL: https://en.wikipedia.org/wiki/Borrelia_burgdorferi
655
+ - Andere Bezeichnung für die <one>Giemsa Färbung</one>? <one>Trypsin-G Färbung</one>. URL: https://de.wikipedia.org/wiki/Giemsa-F%C3%A4rbung
656
+ - <one>Bacteria</one> contain small <two>porin</two> molecules in their cell wall. The diameter of the hole of a porin is about <two>n nm</two>? About <one>1 nm in diameter</one>. Very small molecules can travel through this gap.
657
+ - Nenne einen Mikroorganismus der sowohl <one>Butanol</one> als auch <one>Aceton</one> herstellen kann. A: <one>Clostridium acetobutylicum</one>.
658
+ - Beim <one>bakteriellen Phosphotransferasesystem</one> zur Aufnahme von Glucose: <two>welches Enzym ist membrangebunden</two>? Das Enzym <one>IIc</one>.
659
+ - Unterscheide <one>high affinity DnaA binding sites</one> von <two>weak affinity DnaA binding sites</two>. A: Eine "weak affinity DnaA binding sites" kann nur DnaA binden wenn es auch ATP gebunden hat; an die <two>high affinity DnaA binding sites</two> hingegen kann DnaA binden mit aber auch ohne gebundenem ATP.
660
+ - Viele Bakterien produzieren EPS. Dies steht für ... ? <one>Extrazelluläre polymere Substanzen</one>.
661
+ - <one>Bakterielle Langstäbchen</one> haben welche typische Länge? Etwa <one>8 µm</one>.
662
+ - <one>What special structure</one> does <two>Bdellovibrio</two> have? <one>A spherical structure</one> called the <two>bdelloplast</two>.
663
+ - The all-time champion radiation-resistant microorganism is ... ? <one>Deinococcus radiodurans</one>. URL: https://en.wikipedia.org/wiki/Deinococcus_radiodurans
664
+ - Was sind <one>Magnetosome</one>? Intrazelluläre Kristallpartikel des Eisenminerals <one>Magnetit</one> (<two>Fe₃O₄</two>).
665
+ - Does <one>penicillin</one> destroy <two>peptidoglycan</two>? <one>No</one> - penicillin simply blocks a key step in the biosynthesis of peptidoglycan.
666
+ - <one>Welcher Organismus</one> produziert <two>Tetracycline</two> und wie wirken sie? Tetracycline werden von "Streptomyceten" gebildet und binden an die 30S UE der Ribosomen.
667
+ - Die <one>Dipicolinsäure</one> besitzt <two>wieviele N-Atome</two>? <one>1</one>. URL: https://de.wikipedia.org/wiki/Dipicolins%C3%A4ure
668
+ - Wer entdeckte die <one>Archaea</one>? <one>Carl Woese</one>. URL: https://en.wikipedia.org/wiki/Carl_Woese
669
+ - Is <one>Bacillus</one> <two>gram-positive</two> or <two>gram-negative</two>? <one>Bacillus</one> is <two>gram-positive</two>. URL: https://de.wikipedia.org/wiki/Bacillus
670
+ - In Bakterien wie zum Beispiel <one>Bacillus subtilis</one> - was passiert wenn das <two>SpoOA Protein</two> phosphoryliert wird? Die Phosphorylierung des <one>response regulators SpoOA</one> führt zur Expression der Sporulationsgene; und damit zur <two>Endosporen-Bildung</two>. URL: https://www.sciencedirect.com/science/article/pii/092325089190061E
671
+ - <one>When</one> do we use the <two>KOH Test</two>? We use this quick, inexpensive test as <one>a fungal test-system</one>. For instance, to find out whether Candida albicans has infected the skin or not.
672
+ - Wissenschaftliche Bezeichnung für die <one>Schlauchpilze</one>? <one>Ascomycetes</one>. URL: https://de.wikipedia.org/wiki/Schlauchpilze
673
+ - What is the task of <one>transport proteins</one>? Transport proteins accumulate solutes against a concentration gradient.
674
+ - <one>Golgi Staining</one> wurde <two>wann erfunden</two>? <one>1873</one>.
675
+ - <one>Streptococcus pyogenes</one> is <two>gram-positive</two> or <two>gram-negative</two>? Streptococcus pyogenes is <one>gram-positive</one>.
676
+ - Give one example for <one>a marine ammonia-oxidizing bacteria</one>. A: <one>Nitrosococcus</one>.
677
+ - Why the name <one>proteo</one> in <two>Proteorhodopsin</two>? It refers to <one>Proteobacteria</one>.
678
+ - Um <one>NADPH</one> herzustellen verwenden <two>Purple Bacteria</two> was? Einen <one>external electron donor</one> (hydrogen, sulfur, sulfite) to feed electrons into a reverse electron transport chain.
679
+ - Wie kann man experimentell zwischen <one>azi S</one> und "azi R" unterscheiden? Durch Verwendung von <one>sodium azide</one>.
680
+ - Give a specific example for <one>anoxygenic phototrophs</one>. A: <one>Purple bacteria</one>. URL: https://en.wikipedia.org/wiki/Purple_bacteria
681
+ - Nenne einen Inhibitor von <one>Bactoprenol</one>. A: <one>Bacitracin</one>. (Mnemonic: B und B)
682
+ - Das Bodenbakterium <one>Ktedonobacter racemifer</one> hat <two>wieviele Protein-kodierende Gene</two>? <one>11_453</one>.
683
+ - Mittels <one>Photometer</one> 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.
684
+ - Nenne eine Bakterienart die <one>Rhamnolipide</one> erzeugt. A: <one>Pseudomonas aeruginosa</one>.
685
+ - Nenne einen <one>mikrobiellen Eisenchelatbildner</one>. A: <one>Hydroxamat</one>.
686
+ - Bei der <one>DNA Replikation</one>: was genau macht das <two>Tur protein</two>? Es hält die DnaB Helikase an der Ter-Stelle auf.
687
+ - <one>Pleomorphic bacteria</one> can have many shapes. <two>Give two specific examples for such bacteria</two>. A: (1) <one>Corynebacterium</one> (2) <one>Rhizobium</one>
688
+ - Nenne ein Bakterium das ohne Insertionssequenzen auskommt. A: <one>Bacillus subtilis</one>.
689
+ - In most bacteria, the SRP consists of an RNA molecule (<one>4.5S</one>) and ... which protein? The <one>Ffh protein</one>.
690
+ - In Bacteriology: name <one>two plot-types</one>. A: (1) <one>logarithmic plot</one> (2) <one>arithmetic plot</one>
691
+ - <one>Welches Bakterium</one> erzeugte <two>Lysostaphin</two>? <one>Staphylococcus staphylolyticus</one>.
692
+ - Hat <one>Acinetobacter</one> eine Kapsel? Ja.
693
+ - Say that you see a <one>rod-shaped bacterium</one> that has <two>type IV pili</two>. <three>Where may these pili be most likely to be found on that particular bacterium</three>? Such pili are <one>present only at the poles of the bacterium</one>.
694
+ - Wo findet man <one>H-Antigene</one>? Bei <one>bakteriellen Flagellen</one>.
695
+ - Name <one>two</one> (more or less natural) ways how <two>microbial growth</two> <three>can be halted</three>. A: (1) when nutrients are exhausted (2) accumulation of toxic waste products
696
+ - Haben <one>halophile Organismen</one> einen <two>Nachteil</two>? <one>Ja</one>. Sie stellen ihr Wachstum ein oder sterben, wenn die Salinität unter eine bestimmte Schwelle sinkt.
697
+ - Are <one>gas vesicles</one> in bacteria <two>permeable to water</two>? No, they are <one>impermeable to water</one>.
698
+ - We can find <one>D-aminoacids</one> in bacterial cell walls - but name another area in bacteria, where we may be able to find D-aminoacids. A: In some <one>peptide antibiotics</one>, such as in <two>actinomycin D</two>. URL: https://de.wikipedia.org/wiki/Actinomycin_D
699
+ - Andere Bezeichnung für <one>Zip A</one>? <one>FtsZ-Anker</one>.
700
+ - Was geschieht in den <one>Heterocysten</one> der Cyanobakterien? <one>Stickstofffixierung</one> - hier wird molekularer Stickstoff (N₂) in Ammonium (NH₄⁺) umgewandelt.
701
+ - What is an <one>oligotroph</one>? This is <one>an organism that grows best at very low concentration of nutrients</one>.
702
+ - <one>Which bacteria</one> use <two>scotophototaxis</two>? The <one>phototrophic purple bacteria</one>.
703
+ - Why are so many copies of the <one>Epulopiscium</one> genome necessary? Epulopiscium is <one>a huge cell</one> and requires so many copies to support the translational needs of the cell.
704
+ - Name a bacterium that is <one>spiral shaped</one>. A: <one>Spirilla</one>. URL: https://en.wikipedia.org/wiki/Spirillum
705
+ - Wie mag man <one>type I fimbriae</one> erkennen? Sie sind <one>uniform an der Oberfläche der Zelle</one> verteilt.
706
+ - Nenne <one>zwei Bakteriengruppen</one> die <one>anoxygene Photosynthese</one> betreiben. A: (1) <one>Schwefelbakterien</one> (2) <one>Purpurbakterien</one>
707
+ - Name a microorganism used for <one>chlortetracycline production</one>. A: <one>Streptomyces aureofaciens</one>.
708
+ - Is a <one>capsule</one> in <two>Bacteria</two> part of its cell wall? No.
709
+ - Many <one>prokaryotic cells</one> can exchange genes with neighboring cells. <two>How is this process called in general</two>? <one>Horizontal gene transfer</one>.
710
+ - The largest known bacterium can reach about 2cm in length. Its name is ... ? <one>Thiomargarita magnifica</one>. URL: https://www.science.org/content/article/largest-bacterium-ever-discovered-has-unexpectedly-complex-cells
711
+ - In microbiology: the <one>most common staining procedure</one> is ... ? The <one>Gram stain</one>. URL: https://en.wikipedia.org/wiki/Gram_stain
712
+ - Wann wurde <one>Helicobacter pylori</one> erstmals kultiviert? <one>1982</one> - also erst relativ spät.
713
+ - Die <one>Nitrogenase</one> verwendet welche zwei Metalle? <one>Eisen</one> und <one>Molybdän</one>.
714
+ - <one>FAD</one> is derived from ...? A: The Vitamin <one>Riboflavin</one>. URL: https://en.wikipedia.org/wiki/Riboflavin
715
+ - Wie nennen wir die <one>Vorstufe von Protoplasten</one>? <one>Sphäroplasten</one>.
716
+ - Why does the <one>Epulopiscium cell</one> require so many copies of its genome? Because the volume of that cell is so large.
717
+ - <one>Welche Bakteriengruppe</one> mag <two>Axialfilamente</two> besitzen? Zum Beispiel die <one>Spirochäten</one>. URL: https://de.wikipedia.org/wiki/Spiroch%C3%A4ten
718
+ - Was entsteht neu bei der bakteriellen Reduktion von Nitrat zu Nitrit? <one>H₂O</one>.
719
+ - Die wichtigste Voraussetzung für <one>bakterielle Magnetotaxis</one> ist ... ? Das <one>Magnetosom</one>. URL: https://de.wikipedia.org/wiki/Magnetosom
720
+ - Nenne ein Beispiel für eine <one>Kieselalge</one>. A: <one>Stephanodiscus</one>.
721
+ - <one>Welche funktionelle Gruppen</one> finden wir bei <two>Ethanolamin</two>? <one>-O-CH₂-CH₂-NH₃</one> <two>+1</two>.
722
+ - <one>Growth of lichens</one> per year? <one>1mm</one> / <one>year</one>.
723
+ - Nenne eine <one>methylotrophe Hefe</one>. A: <one>Pichia pastoris</one>. URL: https://en.wikipedia.org/wiki/Pichia_pastoris
724
+ - <one>N-Acetylglucosamin</one> unterscheidet sich von der <two>N-Acetylmuraminsäure</two>. Welches der beiden Moleküle ist grösser und komplexer? <one>N-Acetylmuraminsäure</one>.
725
+ - What is the <one>nucleoid occlusion factor</one>? <one>SImA</one>.
726
+ - Do <one>Entamoeba histolytica</one> have <two>mitochondria</two>? No.
727
+ - <one>Puromycin</one>, an <two>aminonucleoside antibiotic</two>, has been derived from which bacterium? From <one>Streptomyces alboniger</one>.
728
+ - Porins (in bacteria) are transmembrane proteins composed of ... how many identical polypeptides? Three. URL: https://en.wikipedia.org/wiki/Porin_(protein)#Diversity
729
+ - If we see a <one>microbial eukaryote</one> that contains a hydrogenosome, what can we say about its metabolism? This eukaryote will, most likely make use of a <one>strictly fermentative metabolism</one>.
730
+ - <one>Which bacteria</one> occur in three dimensional cubes? <one>Sarcina</one>. URL: https://en.wikipedia.org/wiki/Sarcina
731
+ - Wie lang, in etwa, ist ein einzelnes, durchschnittliches E. coli Bakterium? <one>2-3 Mikrometer</one>.
732
+ - Nenne einen Organismus der das <one>LucCDABE-Operon</one> exprimiert. A: <one>Vibrio fischeri</one>.
733
+ - Was passiert wenn wir den <orange>datA Locus</orange> deletieren? Dies führt zu einer <one>deregulierten (also asynchronen) Initiation der Replikation</one>.
734
+ - Anderes Wort für <one>Zip1</one>? <one>FtsZ Anchor</one>.
735
+ - Bakterien besitzen das <one>DnaA Initiatorprotein</one>. Dieses kann an DnaA-Boxen binden, aber nur wenn welche Kondition erfüllt ist? Der Bereich an den das DnaA Protein binden soll, muss <one>negativ superspiralisiert</one> vorliegen.
736
+ - Welches Bakterium ist mit <one>D50S</one> gemeint? <one>Deinococcus radiodurans</one>. URL: https://de.wikipedia.org/wiki/Deinococcus_radiodurans
737
+ - Nenne ein Beispiel für einen <one>Symporter</one>. A: Lac Y-Permease.
738
+ - Nenne einen Weg wie man nach <one>Karzinogenen</one> suchen ('screenen') kann. A: Man kann den <one>Ames-Test</one> verwenden.
739
+ - What is <one>the key intermediate</one> in <two>acetate production</two>? <one>Acetyl-CoA</one>.
740
+ - Der <one>Glyoxylatzyklus</one> ermöglicht es welche Kohlenstoffquelle zu verwenden? <one>Acetat</one>.
741
+ - Does <one>group translocation</one> move nutrients against a concentration gradient? Yes.
742
+ - The fastest organism is a microorganism, which is ... ? <one>Methanocaldococcus</one>.
743
+ - How many Bacteria may exist on planet earth? 5 x 10 ** 30.
744
+ - Mit Hilfe des <one>Kligler-Agar</one> kann man in der mikrobiologischen Diagnostik was genau nachweisen? <one>Gramnegative Bakterien</one>.
745
+ - Andere Bezeichnung für <one>auxotrophe Bakterien</one>. A: <one>Mangelmutanten</one>.
746
+ - <one>Welche Ladung</one> trägt <two>Ethanolamin</two>? <one>+</one>.
747
+ - What is <one>the first protein in a bacterial two-component system</one>? The <one>sensor kinase</one>.
748
+ - Ich möchte <one>FtsI</one> inhibieren. Was könnte getan werden? <one>Penicillin</one> zugeben.
749
+ - Give another name for the <one>generation time</one> for cells in culture. A: The <one>doubling time</one>. URL: https://en.wikipedia.org/wiki/Doubling_time
750
+ - The <one>Entner-Doudoroff pathway</one> is widely distributed among? The <one>pseudomonas</one> group. URL: https://en.wikipedia.org/wiki/Pseudomonas
751
+ - Bei Mikroorganismen: nenne die spezifische Gruppe und die Abbauschritte ausgehend (und inklusive) von <one>Benzaldehyd</one>. A: Benzaldehyd hat eine -CHO Gruppe, danach kommt Benzoesäure mit -COOH und schliesslich Brenzcatechin mit 2-OH Gruppen.
752
+ - Was heisst der <one>Anstieg</one> bei einem Wachstumsgraphen in einer Bakterienpopulation auf englisch? <one>Slope</one>.
753
+ - <one>Where</one> in a bacterial cell can <two>cardiolipins</two> be found? In patches called <one>domains</one> near the <two>cell poles</two>.
754
+ - <one>Acidophile Bakterien</one> mögen wozu dienen in der Industrie? A: Extraktion von Metallen.
755
+ - Was für ein Typ ist das <one>Bacteriohopanetetrol</one>, das man in manchen Membranen finden kann? Ein <one>Hopanoid</one>.
756
+ - <one>Welche Bakteriengruppe</one> 'produziert' <two>Schwefel</two>? Die <one>Purpurschwefelbakterien</one>.
757
+ - Welches Bakterium wird auch <one>"Conan the barbarian"</one> genannt? <one>Deinococcus radiodurans</one>. URL: https://en.wikipedia.org/wiki/Deinococcus_radiodurans
758
+ - Was sind <one>Endomycetes</one>? <one>Sprosspilze</one>.
759
+ - When we compare <one>archaeal flagella</one> to <two>bacterial flagella</two>: what is the most easily noticable difference? Archaeal flagella are significantly thinner than bacterial flagella.
760
+ - Give a specific example for <one>quorum sensing</one>. A: <one>Pathogenic bacteria</one>. The coordinated expression of a toxin may successfully cause disease.
761
+ - Are <one>Streptomyces</one> bacteria? <one>Yes</one> - they are the largest genus of the <two>Actinobacteria</two>.
762
+ - What means <one>lophotrichous</one>? When several flagella appear only at the same (one) pole.
763
+ - What is the <one>counterstain</one> used in gram staining? <one>Safranin</one>. URL: https://en.wikipedia.org/wiki/Safranin
764
+ - What molecule inhibits the synthesis of cyclicAMP? Glucose.
765
+ - In Bacteria: do <one>type IV pili</one> rotate? No, they do not rotate.
766
+ - Why the name <one>defined media</one>? Because we know the exact composition of the (defined) medium.
767
+ - Name an important reason why some bacteria make use of gas vesicles. A: <one>Phototrophic bacteria</one> benefit from gas vesicles. They allow these bacteria to adjust their vertical position in a water column, by sinking or rising to regions where the light intensity is optimal for photosynthesis.
768
+ - Define <one>selective medium</one> in Microbiology. A: A <one>selective medium</one> contains compounds that inhibit the growth of some microorganisms, but not others.
769
+ - Warum wachsen die <one>Mycobakterien</one> so langsam? Ihre wichtige <one>Lipidschicht behindert den Nährstoffaustausch</one>. Sehr viel Energie wird für für die Synthese dieser Lipide verwendet.
770
+ - <one>Acetogenese</one> versus <one>Methanogenese</one>. Wer liefert mehr Energie? Die Methanogenese liefert mehr Energie.
771
+ - Give an example for a <one>lactic acid bacterium</one> that begins with the letter <two>L</two> and builds a <three>slime layer</three>. A: <one>Leuconostoc</one>. URL: https://en.wikipedia.org/wiki/Leuconostoc
772
+ - What exactly is the <one>FtsK</one> in a bacterium? <one>FtsK</one> is a septum-located <two>DNA translocase</two>.
773
+ - Is there <one>a well-defined microbial species concept</one>? No.
774
+ - In der Mikrobiologie: was sind <one>EHEC-Stämme</one>? <one>Enterohämorrhagische E.coli Stämme</one> (begleitet von <two>blutigem Durchfall</two>).
775
+ - Was heisst <one>Desinfektion</one>? <one>Keimreduzieren</one>.
776
+ - Is the <one>SIM Medium</one> used to detect <two>gram-positive</two> or <two>gram-negative</two> bacteria? The <one>SIM Medium</one> is used to detect <two>gram-negative</two> bacteria.
777
+ - <one>Wann</one> wurde <two>Proteorhodopsin</two> erstmals entdeckt? Im Jahr <one>2000</one>.
778
+ - Just about the <one>most common, natural inclusion body</one> in prokaryotic organisms is ... ? <one>PHB</one>: <two>poly-b-hydroxybutyric acid</two>.
779
+ - Name <one>five parameters</one> that affect the growth of microorganisms. A: (1) Temperature (2) pH (3) Water activity (== Humidity) (4) Salt (Osmolarity) (5) Oxygen supply
780
+ - Why do bacteria make use of a <one>capsule</one>? This helps as a defence against the immune system. The immune cells can not recognize pathogens as foreign thanks to the bacterial capsule.
781
+ - Bacterial <one>capsules</one> are readily visible by light microscopy if these cells are treated with ... ? <one>India ink</one>.
782
+ - Is a <one>capsule</one> the same as a <one>slime layer</one>, in Bacteria? No. For instance, a capsule is <one>tightly attached</one> to the cell wall, which is a difference to a <one>slime layer</one>.
783
+ - Name a fairly common protein in bacteria that can be found as part of the outer membrane. A: The <one>porins</one>.
784
+ - In microbiology: what is the role of the protein called <one>MinE</one>? MineE directs the formation of the <two>FtsZ ring</two>.
785
+ - Was machen Mikroben mit <one>D-Aminoacids</one>? Sie verwenden diese für <one>nonprotein-structural molecules</one>.
786
+ - Name a problem of proteins destined to the periplasm. A: They are <one>delivered unfolded</one> and thus <two>require a set of chaperones</two>.
787
+ - How does <one>a bacterial cell</one> <two>know</two> that <three>the competence pheromone comes from other cells</three>? By cutting out the peptide as a larger protein as it passes through the membrane of the cell in which it is synthesized.
788
+ - How do we call <one>four rod-shaped bacteria attached to one another in a linear manner</one>? <one>Streptobacilli</one>. URL: https://en.wikipedia.org/wiki/Streptobacillus
789
+ - Nenne einen typischen <one>Einschluss</one> in <two>E. coli</two>. A: <one>Glykogeneinschlüsse</one>.
790
+ - In bacteria: what do we mean with <one>a dim domain</one>? This is <one>a dimerization domain</one>; thus, it is important for dimerization.
791
+ - What is <one>decontamination</one>? The treatment of a surface to make it safe to handle.
792
+ - Nenne ein <one>Vitamin</one>, das <two>Neurospora crassa</two> benötigt. A: <one>Biotin</one>. URL: https://en.wikipedia.org/wiki/Biotin
793
+ - What is the name of the <one>nucleoid occlusion factor</one>? <one>SImA</one>.
794
+ - Why the name <one>penicillin-binding protein</one>? These proteins are inhibited by penicillin.
795
+ - What is <one>Chlamydia</one>? <one>Chlamydia</one> is <two>an intracellular bacterial parasite</two>.
796
+ - What is <one>sterilization</one>? The killing or removal of all viable organisms.
797
+ - <one>Welche Bakteriengruppe</one> verwendet die <two>Aminopeptidase</two>? <one>Gram-negative Bakterien</one>. URL: https://de.wikipedia.org/wiki/Aminopeptidasen
798
+ - Name <one>an unusual contributor to a mycoplasma cell wall</one>. A: <one>Sterols</one>.
799
+ - Das <one>Lipopolysaccharid</one> bei <two>gram-negativen Bakterien</two> hat eine äquivalente Funktion zu ... von <three>gram-positiven Bakterien</three>. A: <one>den Teichonsäuren</one>. URL: https://de.wikipedia.org/wiki/Teichons%C3%A4uren
800
+ - Nenne ein Beispiel für ein <one>peritriches Bakterium</one>. A: <one>Proteus sp</one>.
801
+ - <one>Wie lang</one> kann <two>Spirulina</two> werden? A: Einen halben Millimeter (<lightgreen>0.5 mm</lightgreen>).
802
+ - Name <one>an organism</one> that <two>can replicate asymmetrically</two>. A: <one>Hyphomicrobium</one>.
803
+ - Was kann man mit dem <one>Phenolrot Boullion Test</one> nachweisen? <one>Zuckerfermentation</one>.
804
+ - Define the term <one>glycocalyx</one>. A: A Glycocalyx is a polymer secreted by a microorganism that coats the surface of the microorganism.
805
+ - <one>Wie viele Chromosomen</one> hat <two>Dictyostelium discoideum</two>? <one>6</one>.
806
+ - What does the <one>LuxS gene</one> produce? <one>Autoinducer AI-2</one>.
807
+ - The <one>competence master regulator</one> in bacteria is ... ? The <one>ComK-protein</one>.
808
+ - Give another name for the <one>gram-negative cell wall</one>. A: <one>Cell envelope</one>.
809
+ - What does the word <one>PRION</one> stand for? <one>Proteinaceous infectious agent</one>.
810
+ - <one>Wann</one> findet die <two>bakterielle Sporulation</two> statt? Wenn das Wachstum zum Stillstand gekommen ist (Trigger: ein limitierender Faktor)
811
+ - In nature: <one>microbial cells</one> typically live in groups called ... ? <one>Microbial communities</one>.
812
+ - In microbiology: which <one>two (technical) means of fixation of bacteria</one> are commonly employed in the laboratory? (1) <one>heat fixation</one> (2) <one>chemical fixation</one>
813
+ - In <one>welche zwei Teile</one> kann man den Stoffwechsel einteilen? (1) Energiestoffwechsel (2) <one>Leistungsstoffwechsel</one>
814
+ - The <one>sensor kinase</one> typically interacts strongly with which other protein, in a <two>bacterial two-component system</two>? With a <one>response regulator</one>. URL: https://en.wikipedia.org/wiki/Response_regulator
815
+ - <one>FtsW</one> hat was für eine Aufgabe? Es bringt <one>FtsI</one> an den Z-Ring.
816
+ - The <one>proton motive force</one> in bacteria is analogous to .... which technical innovation of mankind? The potential energy present in <one>a charged battery</one>.
817
+ - In der Mikrobiologie: was ist die <one>Generation</one>? Die Zeiteinheit die eine Zelle benötigt um zwei Zellen zu bilden.
818
+ - Was ist <one>NodM</one>? Eine <one>Glucosaminsynthetase</one>, die an der Nod-Faktor Synthese beteiligt ist.
819
+ - Wer widerlegte die <one>Urzeugungstheorie</one>? <one>Louis Pasteur</one>.
820
+ - What is a <one>regulon</one>? When more than 1 operon is under the control of a single regulatory protein.
821
+ - Was können <one>Methanobacterien</one>? <one>CO₂</one> zu Methan reduzieren.
822
+ - Was ist der <one>assimilatorische Stickstoffwechsel</one>? Die Verwendung von <one>NO3⁻</one> SO4 2-, CO₂.
823
+ - Why can we use <one>Isoniazid</one> against <two>Mycobacterium</two>? <one>Isoniazid</one> interferes with the synthesis of mycolic acid, a mycobacterial cell wall component.
824
+ - Give a specific example for a <one>global response</one> widespread in all 3 domains of life. A: The <one>heat shock response</one>.
825
+ - <one>How much ATP</one> is <two>required</two> <three>per fixed N₂</three>? <one>16 ATP</one>.
826
+ - <one>FtsZ</one> is a homolog towards? <one>Tubulin</one>.
827
+ - <one>Welche Person</one> hat erstmals Bakterien (mit einem Mikroskop) sehen können? <one>Antonie van Leeuwenhoek</one>. URL: https://en.wikipedia.org/wiki/Antonie_van_Leeuwenhoek
828
+ - <one>Wann</one> wurde <two>die Sequenzierung von S. pneumonia</two> abgeschlossen? <one>2001</one>.
829
+ - Name a bacterium that is used in <one>denitrification</one>. A: <one>Pseudomonas stutzeri</one>.
830
+ - <one>Bacillus subtilis</one> kodiert für <two>n verschiedene Sigmafaktoren</two>? <one>18</one>.
831
+ - Name a <one>halophilic archaeon</one>. A: <one>Haloarcula Marismortui</one>.
832
+ - Wofür steht der Name <one>ABC transport systems</one>? <one>ABC</one> steht für <two>ATP-binding cassette</two>. Diese Struktur kann also ATP binden.
833
+ - Salopp formuliert, was machen <one>Integrons</one>? Sie fangen Gene aus anderen Quellen ein; sind Bestandteil einiger Transposons.
834
+ - What is the <one>archaellum</one>? <one>A whip-like structure</one> on the <two>cell surface of many archaea</two>.
835
+ - Was heisst <one>Fts KOPS</one>? <one>FtsK Oriented Polar Sequences</one>. Die Sequenzfolge lautet: <two>GGGNAGGG</two>.
836
+ - The cytoplasmic membrane is usually called a <one>lipid bilayer</one>; but may sometimes be called a <two>unit membrane</two>. Why? Because each phospholipid <one>leaf</one> <two>forms half of the unit</two>.
837
+ - Wozu dient dem Bakterium <one>Alcaligenes eutrophus</one> das aus Zucker erzeugte PHB (Polyhydroxybutyrat)? Als <one>Energiespeicher</one>.
838
+ - Why does <one>Neisseria gonorrhoeae</one> produce pili? Because these pili are required in order for Neisseria gonorrhoeae to attach to the <one>urogenital epithelium</one>.
839
+ - The <one>major cellular function</one> of the <two>cytoplasmic membrane</two> is ... ? <one>Selective permeability</one>.
840
+ - Besitzen <one>Hefezellen</one> <two>Vakuolen</two>? Ja.
841
+ - <one>Welches Bakterium</one> <two>sieht aus wie ein gekrümmtes Stäbchen</two>? <one>Vibrio cholerae</one>.
842
+ - In Bacteria, <one>type IV pili</one>, aside from <two>facilitating twitching motility</two>, they have which other, important property? They help pathogenic bacteria to attach to their host tissues.
843
+ - <one>Xenophyophores</one> are <two>amoeba-like, single-celled organisms</two> that <three>live exclusively</three> where? They live in the <one>deep ocean</one>.
844
+ - Give another name for <one>bacterial pheromones</one>. A: <one>Autoinducers</one>.
845
+ - Was machen <one>Methanobacteriae</one>? Konvertieren <one>CO₂</one> zu <one>Methan</one>.
846
+ - Do <one>insects</one> <two>love</two> <two>Wolbachia</two>? Sort of! Without Wolbachia, some can not reproduce or even survive.
847
+ - Name a <one>DNA-bridging protein</one> <two>in Bacteria</two>. A: <one>H-NS</one>.
848
+ - <one>SIM-Agar</one>: was heisst <two>SIM</two>? <one>Sulfide</one>, <one>Indole</one>, <one>Motility</one>.
849
+ - Name a bacterium where no septum formation occurs upon cell division. A: <one>Caulobacter</one>.
850
+ - <one>The smallest bacteria</one> are n micrometer in diameter? About <one>0.3 Micrometer</one>.
851
+ - Was meinen wir mit <one>Sequestrierung des dnaA Gen Promoters</one>? Das dieser Promoter an die Zellwand geheftet wird.
852
+ - Give an example for a <one>gliding myxobacterium</one>. A: <one>Myxococcus xanthus</one>.
853
+ - <one>Chemolitotrophs</one> use <two>which substance as their carbon source</two>? <one>CO₂</one>.
854
+ - Give another name for <one>mordant</one>. A: <one>Binding agent</one>.
855
+ - Name <one>three responses in bacteria</one> controlled by <two>quorum sensum</two>. A: (1) Virulence factor secretion (2) Biofilm formation (3) <one>Sporulation</one>
856
+ - What does <one>Glycocalyx</one> mean, literally? <one>Sugar coat</one>. URL: https://en.wikipedia.org/wiki/Glycocalyx
857
+ - Was sind die <one>F-Antigene</one>? Das sind die Proteine der Fimbrien.
858
+ - What is the main statement of the <one>GAIA Theory</one> from <two>James Lovelock</two>? Life on Earth functions as a single organism which actually defines and maintains environmental conditions necessary for its survival.
859
+ - Name <one>the main structural motif</one> of <two>membrane-spanning transporters</two> in Bacteria. A: <one>12x Alpha-Helices</one>.
860
+ - Längeres Wort für <one>Alarmone</one>? <one>Alarmsubstanzen</one>.
861
+ - <one>Beggiota</one> belongs to which general group? Beggiota belongs to <two>chemolitotrophic organisms</two> that feed solely on inorganic minerals.
862
+ - Was meinen wir mit <one>thermotoleranten Organismen</one>? Dies sind <one>Organismen</one>, die <two>bis zu 50°C</two> noch zu wachsen vermögen.
863
+ - Define <one>Attenuation</one>. A: <one>Attenuation</one> is <two>the decrease or loss of virulence of a pathogen</two>.
864
+ - Formel für das <one>Wachstum der Bakterien</one>? <one>2 ** n</one>, wobei n die Generation ist. Generation 10 ist also 2 ** 10.
865
+ - Bakterien können ihre <one>Membranzusammensetzung verändern</one>, vor allem mittels <two>Fettsäuren</two>. 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.
866
+ - Für die <one>DNA Replikation in Bakterien</one> gibt es <two>ein Protein</two> das <three>DiaA</three> benannt wurde. Was heisst <three>DiaA</three>? <one>DnaA initiator-associating protein</one>.
867
+ - What is the <one>evolutionary rate</one>? This is <one>the number of nucleotide changes per site per year</one>.
868
+ - <one>Chemolithotrophic bacteria</one> <two>obtain their carbon</two> <three>from</three> ... ? <one>CO₂</one>.
869
+ - <one>Sergei Winogradsky</one> observed that ... <two>which bacterium</two> would not grow on the rich nutrient media used by Koch? <one>Beggiatoa</one>.
870
+ - <one>Wo</one> wurden die <two>Volutinkörner</two> entdeckt? In <one>Spirillum volutans</one>. URL: https://en.wikipedia.org/wiki/Spirillum_volutans
871
+ - Name <one>a bacterium</one> that has a <two>phage-inducible chromosomal island</two>. A: <one>Staphylococcus aureus</one>.
872
+ - <one>Wann</one> ist die Erde entstanden? Vor etwa 4.5 Mrd Jahren.
873
+ - <one>Bei welchen Bakterien</one> verwenden wir <two>Karbolfuchsin</two>? Bei <one>gram-negativen Bakterien</one>.
874
+ - Was sind <one>Protoplasten</one>? <one>Zellwandlose Bakterien</one>. URL: https://de.wikipedia.org/wiki/Protoplast
875
+ - <one>The best known gliding bacteria</one> are ... ? The <one>filamentous cyanobacteria</one>. URL: https://www.sciencedirect.com/science/article/pii/B9780123858764000049
876
+ - What happens structurally if <one>the AAA+ domain of DnaA</one> binds ATP? In the <one>ADP-bound state</one> the <two>base</two> and the <two>lid</two> 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.
877
+ - Can <one>bacteria</one> make <two>coloured antibiotics</two>? Yes.
878
+ - The <one>SimA dimer</one> can bind what exactly? Two FtsZ protofilaments.
879
+ - <one>Which bacteria</one> are renowned for their many vitamin requirements? <one>Lactic acid bacteria</one>.
880
+ - What does <one>bacilli</one> mean, translated? <one>Little staffs</one>.
881
+ - What type is <one>FtsA</one>? <one>FtsA</one> is an <two>ATPase</two>.
882
+ - Explain <one>bridging DnaA</one>? Yes. The DiaA tetramer can bind multiple molecules of DnaA, and thus serves as a bridge to bring two DnaA molecules together.
883
+ - In Bacteria: what do the <one>Rsb proteins</one> activate? The <one>stress sigma factor Sigma B</one>.
884
+ - The <one>mycoplasma</one> belong to which genus? They belong to the <one>Mollicutes</one>.
885
+ - <one>Where</one> can we find an <two>interbridge</two> among the Bacteria? In the <one>cell wall of gram-positive bacteria</one>, like <two>Staphylococcus aureus</two>.
886
+ - Was macht das Enzym <one>ATP-Sulfurylase</one>? Heftet Sulfation an ein Phoshphat an ATP. Es entsteht APS DAS IST NOCH NICHT PERFEKT HIER.
887
+ - <one>Wo</one> genau finden wir das Protein <two>RelA</two>? Es ist assoziiert mit der 50S Untereinheit des Ribosoms.
888
+ - <one>Where</one> could <two>marine snow</two> be found? In the <one>deep ocean</one>. URL: https://en.wikipedia.org/wiki/Marine_snow
889
+ - <one>Which bacteria</one> have a <two>periplasm</two>? Only <one>gram negative bacteria</one>.
890
+ - Was ist der <one>Aw-Wert</one>? <one>Activity of Water</one>. 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.
891
+ - Der <one>Erreger der Kreuzlähme bei Pferden</one> ist ... ? <one>Trypanosoma equinus</one>.
892
+ - In microbiology and microscopy: give an example for a <one>basic dye</one> that begins with the letter <two>s</two>. A: <one>Safranin</one>.
893
+ - Nenne eine <one>kristallbildende Bakterienart</one>. A: <one>Pseudomonas syringae</one>. URL: https://de.wikipedia.org/wiki/Pseudomonas_syringae
894
+ - Give another word for <one>Bioluminescent colonies</one> of the bacterium Photobacterium. A: <one>Light-emitting colonies</one>.
895
+ - What is <one>aerotaxis</one>? <one>Movement towards or away from oxygen</one>. Aerobic bacteria show positive aerotaxis, anaerobic bacteria show negative aerotaxis.
896
+ - <one>GvpA</one> macht wieviel Prozent des Gasvesikels aus? <one>97%</one>.
897
+ - Wieso besitzen <one>Protisten</one> eine kontraktile Vakuole? Sie scheiden damit aufgenommenes überschüssiges Wasser aus. Protisten leben im Süßwasser.
898
+ - What is the <one>thermal death zone</one>? The time it takes to kill all cells at a given temperature.
899
+ - Give another name for <one>microorganisms</one>. A: <one>Microbes</one>.
900
+ - 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.
901
+ - Nenne ein chemisches Gift für die meisten <lightgreen>Pilze</lightgreen>. A: <one>Phenol</one>.
902
+ - <one>Pneumococcus</one> besitzt wie viele <two>smooth capsid-types</two>? <one>3</one>.
903
+ - Give a specific example for <one>group translocation</one> in Bacteria. A: The <one>Phosphotransferase System</one>. URL: https://en.wikipedia.org/wiki/PEP_group_translocation
904
+ - What exactly is a <one>RNA Thermosensor</one>? A <one>RNA Thermosensor</one> is typically stable at low temperatures, unstable at high temperatures.
905
+ - Nenne einen <one>bakteriellen Lipidcarrier</one>. A: <one>Bactoprenol</one>. URL: https://de.wikipedia.org/wiki/Bactoprenol
906
+ - Is <one>E. coli</one> smaller than a <two>human platelet</two>? Yes.
907
+ - Welche <one>3 Aminosäuren</one> werden im <two>3-Phosphoglycerate Weg</two> synthetisiert? Mnemonic: In 3-Phosphoglycerate kommt s, g und c vor, ergo -> (1) <one>Serin</one> (2) <one>Glycin</one> (3) <one>Cystein</one>
908
+ - What is the role of the <one>thumb</one> of the DNA-Polymerase? This thumb binds the DNA as it exits the enzyme - this is important for processivity.
909
+ - The <one>DNA synthesis initiator</one> <two>DnaA</two> contains <three>how many domains</three>? <one>4</one>.
910
+ - Nenne ein Beispiel für einen Organismus, in dem wir <one>Bacteriorhodopsin</one> finden können. A: <one>Halobacterium</one>.
911
+ - <one>Zymogene Bodenorganismen</one> sind <two>bei höherer Stoffzufuhr</two> <three>kompetitiver</three> oder <three>weniger kompetitiv</three> als andere Populationen? Zymogene Bodenorganismen sind <one>bei höherer Stoffzufuhr kompetitiver als andere Populationen</one>.
912
+ - What are <one>phenazines</one>? Phenazines are nitrogen-containing heterocyclic compounds.
913
+ - Why should we prefer the term <one>poly-Beta-hydroxyalkanoate</one> rather than <two>poly-Beta-hydroxy-butyric acid</two>? Because butyric acid implies C4, whereas there can be C3 up to C18 C-Atoms instead.
914
+ - <one>FtsA</one> ähnelt welch anderem Protein? <one>Actin</one>. (Mnemo: A ... Actin) URL: https://en.wikipedia.org/wiki/FtsA
915
+ - <one>Photocyanins</one> absorb what? <one>Longer-wavelength red light</one>.
916
+ - What is the <one>key property of living organisms</one>? A: They <one>carry an internal description of themselves</one>.
917
+ - Name a bacterium that can form a structure within a cell used as a factory to creating more of that bacterium. A: The <one>Chlamydia reticulate body</one>.
918
+ - 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.
919
+ - Was heisst <one>HOSCH-Filter</one>? Hochleistungs-Schwebstoff-Luftfilter.
920
+ - Give one example for a <one>peptide siderophore</one>. A: <one>Aquachelin</one>.
921
+ - The <one>neutral theory of evolution</one> follows a ...? A <one>stochastic approach</one>.
922
+ - In der Mikrobiologie: was geht der <one>septum formation</one> voraus? <one>Cell elongation</one>.
923
+ - 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
924
+ - 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
925
+ - What are <one>extremozymes</one>? Extremozymes are Enzymes that <one>function at environmental extremes</one>, such as high or low temperature, or pH.
926
+ - The largest phylum of bacteria can be found among the ... ? The <one>Proteobacteria</one>.
927
+ - Was hat <one>Bacteriochlorophyll</one> im Zentrum? <one>Mg</one> (<one>Magnesium</one>).
928
+ - Name two molecules that are able to <one>trigger a stringent response</one>. A: (1) <one>ppGpp</one> (2) <one>pppGpp</one>
929
+ - Was weiss man allgemein wenn man <one>petite</one> colonies sieht? Die <one>Wachstumsrate dieser Bakterien ist verlangsamt</one>.
930
+ - Define the term <one>Progenote</one>. A: This is <one>the last universal common ancestor</one>.
931
+ - <one>n %</one> der marinen Organismen können biolumineszieren? <one>75%</one>.
932
+ - <one>Why</one> do Bacteria use the <three>carbon catabolite repression</three> system? It allows them to swiftly adapt to "changing nutrient supplies".
933
+ - 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".
934
+ - Why is the <one>Winogradsky column</one> employed? The Winogradsky column is a simple device for culturing a large diversity of microorganisms.
935
+ - Das <one>Mesosom</one> entspricht was? Gar nichts. Es sind Artefakte, siehe URL: https://en.wikipedia.org/wiki/Mesosome
936
+ - 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.
937
+ - Where exactly does <one>transpeptidation</one> occur? Outside the cell, where ATP is unavailable.
938
+ - 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.
939
+ - 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>.
940
+ - Andere Bezeichnung für eine <one>osmotisch inerte Form</one>? <one>Wasserunlöslich</one>.
941
+ - 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.
942
+ - What is the <one>major shape-determining protein</one> in prokaryotes? <one>MreB</one>.
943
+ - Name <one>a bacterial protein capable of producing Alarmones</one>. A: <one>RelA</one>.
944
+ - Welche Person gilt als <one>Begründer der modernen Mikrobiologie</one>? <one>Robert Koch</one>. URL: https://de.wikipedia.org/wiki/Robert_Koch
945
+ - Allgemein: wie ist <one>DNA in einer bakteriellen Zelle</one> <three>angeordnet</three>? In <one>loops</one>, die <two>domains</two> genannt werden.
946
+ - 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.
947
+ - Do <one>bacterial chaperones</one> also <three>help assemble multiprotein complexes</three>? Yes they do.
948
+ - Beim <one>Tyndallisieren</one> setzen wir welchen Temperaturbereich ein (von, bis)? <one>70 - 100 °C</one>.
949
+ - Input, Output bei den <one>Nitrifiers</one>? (1) <one>Input</one>: <two>NH4+</two>. (2) <one>Output</one>: <two>NH3-</two>.
950
+ - Welche zwei Metalle finden wir in <one>Ferredoxin</one>? <one>Eisen</one> + <one>Schwefel</one>.
951
+ - Give an example for a bacterium which may show <one>cannibalism</one>. A: Sporulating <one>Bacillus subtilis</one>.
952
+ - The bacterium <one>Wolbachia</one> infects in particular ... ? <one>Arthropods</one>.
953
+ - In microbiology: what is a <one>pure culture</one>? A pure culturei is a culture containing only a single kind of microorganism.
954
+ - Name a <one>developmental process</one> in bacteria. A: <one>Sporulation</one>.
955
+ - How many different <one>Type secretion systems are known in Bacteria</one>? <one>6</one>.
956
+ - Name a bacterium that employs a <one>twitching motility</one>. A: <one>Pseudomonas aeruginosa</one>. URL: https://en.wikipedia.org/wiki/Pseudomonas_aeruginosa
957
+ - Was bringt eine <one>Rodacplatte</one>? Diese <one>Abklatschplatte</one> erlaubt es uns die Keimbelastung an einer Oberfläche zu beurteilen.
958
+ - Is <one>Arthrobacter luteus</one> gram-positive or gram-negative? It is a species of <one>gram-positive bacteria</one>.
959
+ - Give an example for <one>a green, nonsulfur bacterium</one>. A: <one>Chloroflexus</one>. URL: https://en.wikipedia.org/wiki/Chloroflexus_aurantiacus
960
+ - Das <one>Propionibacterium</one> ist <two>gram-positiv</two> oder <two>gram-negativ</two>? <one>Gram-positiv</one>.
961
+ - Was sind die <one>Gallionella</one>? Dies sind die <one>Eisenbakterien</one>. URL: https://de.wikipedia.org/wiki/Gallionella
962
+ - Who is <one>the most abundant prokaryote in the ocean</one>? <one>Pelagibacter</one>.
963
+ - 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>.
964
+ - 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
965
+ - Name two major types of <one>cell movement for bacteria</one>. A: (1) <one>gliding</one> (2) <one>swimming</one>
966
+ - 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.
967
+ - Nenne einen <one>Aflatoxin-Bildner</one>. A: <one>Aspergillus flavus</one>.
968
+ - Im <one>Phosphotransferasesystem</one>: was heisst <two>Hpr</two>? <one>Histidine-rich protein</one>.
969
+ - Name an enzyme that <one>Pseudomonas aeruginosa</one> lacks. A: <one>Phosphofructokinase</one>.
970
+ - Nenne ein <one>monopolar monotriches</one> Bakterium. A: <one>Vibrio cholerae</one>.
971
+ - The <one>Primase</one> forms a complex with ...? <one>Helicase</one>.
972
+ - 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>
973
+ - Wie erkennen wir ob das Enzym <one>Katalase</one> bei Bakterien aktiv ist? Durch <one>Entwicklung von Gasbläschen</one>.
974
+ - Name a technique that <one>Beijerinck</one> has developed. A: The <one>enrichment culture technique</one>.
975
+ - 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>
976
+ - Definiere <one>bacteriostatic agents</one>. A: These are <one>agents that inhibit bacterial growth</one>.
977
+ - Allgemein formuliert: <one>Darmbakterien</one> sind <two>besonders resistent</two> gegenüber welchen <three>Säuren</three>? <one>Gallensäuren</one>.
978
+ - 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.
979
+ - How is the <one>cholera toxin</one> exported? Through a type II secretion system.
980
+ - In microbiology: what is <one>a viable cell</one>? One that is able to divide and form offspring.
981
+ - Langer Name für <one>Bactoprenol</one>? <one>Undecapenoldiphosphate</one>.
982
+ - Name a bacterium that can grow near pH0. A: <one>Ferroplasmum</one>.
983
+ - Was sind <one>Spiroplasmen</one>? Schnelle, spiralförmige Bakterien.
984
+ - Warum benötigen die Bakterien das Enzym <one>Katalase</one>? Für <one>aerobes Wachstum</one>.
985
+ - Nenne ein Bakterium, das <one>Granulose</one> enthält. A: <one>Clostridium butyricum</one>.
986
+ - <one>Epulopiscium fishelsoni</one> is not only very large, but has what other curious feature? It <one>contains multiple copies of its genome</one>.
987
+ - 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.
988
+ - What is a <one>viable bacterial organism</one>? This is <one>a bacterium capable of replicating</one>.
989
+ - Formel für die <one>durchschnittliche Generationszeit</one> bei Bakterien? g = t / n
990
+ - Die <one>Zellwand der Hefe</one> besteht aus? <one>Chitin</one> und <one>Hemicellulose</one>.
991
+ - Was ist mit dem Begriff <one>Antibiose</one> gemeint? Wenn die Vermehrung phytopathogener Bodenkeime durch andere Mikroben unterdrückt wird.
992
+ - Lebenszyklus der <one>Rickettsia</one>? Dies sind <one>Parasiten</one>.
993
+ - Die <one>bakterielle DNA-Polymerase III</one> besteht aus <two>n Untereinheiten</two>? <one>10</one>.
994
+ - Which <one>two phyla</one> are part of the <two>Archaea</two>? (1) <one>Euryarchaeota</one> (2) <one>Crenarchaeota</one>
995
+ - In Bacteriology: where do we find <one>nucleoid occlusion</one>? Around the nucleoid.
996
+ - Was geschieht im <one>Hydrogenosom</one>? Die Oxidation von Pyruvat zu Acetyl-CoA, CO2 und H2.
997
+ - 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.
998
+ - The <one>initiator</one> (of DNA synthesis) binds to ...? The <one>replicator</one>.
999
+ - Name one organism that <one>produces red pigments</one>. A: <one>Serratia marcescens</one>. URL: https://de.wikipedia.org/wiki/Serratia_marcescens
1000
+ - Der <one>Zellertrag durch Bakterien</one> ist, biochemisch betrachtet, <two>direkt proportional der</two> ...? A: Der <one>produzierten ATP Menge</one>.
1001
+ - Nenne einen Organismus, der eine <one>parakristalline S-Schicht</one> besitzt. A: <one>Thermoproteus</one>.
1002
+ - 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
1003
+ - What means "morphology" in microbiology? Cell shape.
1004
+ - Sind Mycobakterien bei der Gram-Färbung eher gram-negativ oder gram-positiv? Gram-positiv.
1005
+ - 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
1006
+ - Welche Energie verwendet FtsZ? GTP.
1007
+ - Name an antibiotic that "Serratia marcescens" can produce. A: "prodigiosin".
1008
+ - Was ermöglicht der <one>Chemostat</one>? Er ermöglicht es das eine Kultur von grossen Bakterienmengen bei konstanten Bedingungen wachsen kann.
1009
+ - 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.
1010
+ - The "S. aureus" colonization of abiotic surfaces depends on ..? The charge of its teichoic acid.
1011
+ - Was macht Beggiota mit H2S? Oxidiert es zu H2SO4.
1012
+ - <one>Brucella abortus</one> <two>seeks which sugar in the placenta</two>? <one>Erythritol</one>. URL: https://en.wikipedia.org/wiki/Erythritol []