studium 0.14.16

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

Potentially problematic release.


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

Files changed (883) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +2987 -0
  3. data/bin/ask_exam_question +7 -0
  4. data/bin/check_description_of_these_lectures +7 -0
  5. data/bin/curriculum_module_displayer +7 -0
  6. data/bin/cycle +7 -0
  7. data/bin/d10 +7 -0
  8. data/bin/d100 +7 -0
  9. data/bin/d15 +7 -0
  10. data/bin/d20 +7 -0
  11. data/bin/d25 +7 -0
  12. data/bin/d3 +7 -0
  13. data/bin/d30 +7 -0
  14. data/bin/d5 +7 -0
  15. data/bin/determine_curricula +7 -0
  16. data/bin/display_lecture_url +7 -0
  17. data/bin/exam_registration_at +7 -0
  18. data/bin/exam_statistics +7 -0
  19. data/bin/exams_per_month +9 -0
  20. data/bin/finished_exams_at_this_university +7 -0
  21. data/bin/flashcards +7 -0
  22. data/bin/from_curriculum_id_to_university +9 -0
  23. data/bin/location_to_this_exam_topic.rb +7 -0
  24. data/bin/mandatory_continuous_assessment +7 -0
  25. data/bin/mandatory_upcoming_courses +10 -0
  26. data/bin/n_ECTS +7 -0
  27. data/bin/n_exam_questions_already_answered +16 -0
  28. data/bin/nquestions +7 -0
  29. data/bin/nsolved +7 -0
  30. data/bin/open_last_exam_question_asked_file +7 -0
  31. data/bin/passed_exams +7 -0
  32. data/bin/passed_pr/303/274fungsimmanente_courses +7 -0
  33. data/bin/pdf_for +7 -0
  34. data/bin/random_exam_topic +7 -0
  35. data/bin/report_solved_topics +7 -0
  36. data/bin/return_n_ects_from_this_file +7 -0
  37. data/bin/search_for_n_ects +7 -0
  38. data/bin/show_lectures_on_the_commandline +7 -0
  39. data/bin/show_themes +7 -0
  40. data/bin/solved +9 -0
  41. data/bin/solved_ects +7 -0
  42. data/bin/studienkennzahl +7 -0
  43. data/bin/studium +7 -0
  44. data/bin/studium_skeleton +7 -0
  45. data/bin/ufind +7 -0
  46. data/bin/upcoming_exams +7 -0
  47. data/bin/week_parser +7 -0
  48. data/doc/ECTS_CONSIDERATIONS.md +82 -0
  49. data/doc/HOW_TO_DETERMINE_WHICH_PART_IS_THE_QUESTION_AND_WHICH_PART_IS_THE_ANSWER.md +44 -0
  50. data/doc/README.gen +2947 -0
  51. data/doc/SQL_database_specification.md +46 -0
  52. data/doc/deprecated_components.md +24 -0
  53. data/doc/documentation_for_the_file_lecture_information.md +311 -0
  54. data/doc/elegant_colours.md +21 -0
  55. data/doc/statistics/yearly_statistics.md +5 -0
  56. data/doc/todo/todo_for_the_graphical_parts_of_the_studium_gem_including_www_related_aspects.md +32 -0
  57. data/doc/todo/todo_for_the_studium_gem.md +58 -0
  58. data/img/STUDIES.png +0 -0
  59. data/lib/studium/autoinclude.rb +7 -0
  60. data/lib/studium/base/base.rb +3054 -0
  61. data/lib/studium/base/prototype.rb +592 -0
  62. data/lib/studium/c/README.md +2 -0
  63. data/lib/studium/c/a.out +0 -0
  64. data/lib/studium/c/obtain_random_entry.c +11 -0
  65. data/lib/studium/check_and_sanitize/README.md +15 -0
  66. data/lib/studium/check_and_sanitize/check_curriculum_for_correct_separation_of_bachelor_and_master.rb +141 -0
  67. data/lib/studium/check_and_sanitize/check_for_all_exam_topics_being_registered.rb +118 -0
  68. data/lib/studium/check_and_sanitize/check_for_correct_themes_of_each_course.rb +100 -0
  69. data/lib/studium/check_and_sanitize/check_for_existing_description_of_this_lecture.rb +191 -0
  70. data/lib/studium/check_and_sanitize/check_important_exams.rb +113 -0
  71. data/lib/studium/check_and_sanitize/check_the_lecture_information_file.rb +163 -0
  72. data/lib/studium/check_and_sanitize/find_duplicate_lectures.rb +124 -0
  73. data/lib/studium/check_and_sanitize/missing_priority_entry.rb +44 -0
  74. data/lib/studium/check_and_sanitize/sanitize_lecture_information.rb +428 -0
  75. data/lib/studium/check_and_sanitize/sanitize_this_string_containing_the_lva_dates.rb +79 -0
  76. data/lib/studium/colours/colours.rb +572 -0
  77. data/lib/studium/colours/sfancy.rb +46 -0
  78. data/lib/studium/colours/sfile.rb +35 -0
  79. data/lib/studium/colours/simp.rb +40 -0
  80. data/lib/studium/colours/use_colours.rb +39 -0
  81. data/lib/studium/colours/use_this_colour_for_exam_questions_and_exam_answers.rb +80 -0
  82. data/lib/studium/commandline/commandline.rb +932 -0
  83. data/lib/studium/commandline/menu.rb +906 -0
  84. data/lib/studium/constants/colours.rb +14 -0
  85. data/lib/studium/constants/constants.rb +1708 -0
  86. data/lib/studium/constants/image_constants.rb +271 -0
  87. data/lib/studium/constants/regexes.rb +44 -0
  88. data/lib/studium/constants/web_constants.rb +28 -0
  89. data/lib/studium/css/project.css +267 -0
  90. data/lib/studium/curricula/curriculum.rb +210 -0
  91. data/lib/studium/curricula/curriculum_as_string.rb +280 -0
  92. data/lib/studium/curricula/curriculum_module_displayer/constants.rb +33 -0
  93. data/lib/studium/curricula/curriculum_module_displayer/curriculum_module_displayer.rb +417 -0
  94. data/lib/studium/curricula/curriculum_module_displayer/initialize.rb +25 -0
  95. data/lib/studium/curricula/curriculum_module_displayer/menu.rb +45 -0
  96. data/lib/studium/curricula/curriculum_module_displayer/reset.rb +74 -0
  97. data/lib/studium/curricula/curriculum_module_displayer/run.rb +20 -0
  98. data/lib/studium/curricula/curriculum_module_displayer/set_use_this_curriculum.rb +93 -0
  99. data/lib/studium/curricula/curriculum_module_displayer/show_and_report.rb +190 -0
  100. data/lib/studium/curricula/determine_curricula/constants.rb +11 -0
  101. data/lib/studium/curricula/determine_curricula/determine_curricula.rb +36 -0
  102. data/lib/studium/curricula/determine_curricula/help.rb +39 -0
  103. data/lib/studium/curricula/determine_curricula/initialize.rb +48 -0
  104. data/lib/studium/curricula/determine_curricula/menu.rb +151 -0
  105. data/lib/studium/curricula/determine_curricula/misc.rb +403 -0
  106. data/lib/studium/curricula/determine_curricula/report.rb +143 -0
  107. data/lib/studium/curricula/determine_curricula/reset.rb +59 -0
  108. data/lib/studium/curricula/determine_curricula/run.rb +19 -0
  109. data/lib/studium/curricula/determine_elective_courses_in_this_curriculum.rb +112 -0
  110. data/lib/studium/curricula/display_bachelor_curricula.rb +90 -0
  111. data/lib/studium/curricula/handle_curricula/README.md +9 -0
  112. data/lib/studium/curricula/handle_curricula/handle_curricula.rb +179 -0
  113. data/lib/studium/curricula/handle_curricula/misc.rb +705 -0
  114. data/lib/studium/curricula/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.rb +323 -0
  115. data/lib/studium/curricula/modules/display_on_the_commandline.rb +319 -0
  116. data/lib/studium/curricula/modules/return_n_ects_in_this_module.rb +75 -0
  117. data/lib/studium/curricula/n_percent_solved_in_this_curriculum.rb +75 -0
  118. data/lib/studium/curricula/prepare_individual_curriculum.rb +304 -0
  119. data/lib/studium/curricula/random_curriculum_creator/random_curriculum_creator.rb +163 -0
  120. data/lib/studium/curricula/show_lectures_of_this_curriculum.rb +114 -0
  121. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/constants.rb +11 -0
  122. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/initialize.rb +27 -0
  123. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/menu.rb +35 -0
  124. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/misc.rb +264 -0
  125. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/report.rb +163 -0
  126. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/reset.rb +64 -0
  127. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/show_lectures_of_this_curriculum_id.rb +38 -0
  128. data/lib/studium/curricula/show_solved_percentage_among_the_registered_curricula.rb +87 -0
  129. data/lib/studium/curricula/sorted_individual_curricula.rb +121 -0
  130. data/lib/studium/ects/boku_ects_splitter.rb +128 -0
  131. data/lib/studium/ects/ects_per_university.rb +179 -0
  132. data/lib/studium/ects/ects_scanner.rb +141 -0
  133. data/lib/studium/ects/ects_to_university_parser.rb +142 -0
  134. data/lib/studium/ects/last_entry_is_curriculum.rb +150 -0
  135. data/lib/studium/ects/n_ects_in_these_lectures.rb +196 -0
  136. data/lib/studium/ects/n_ects_points_in_mandatory_presence_courses.rb +50 -0
  137. data/lib/studium/ects/return_n_ects_from_this_file.rb +59 -0
  138. data/lib/studium/ects/return_n_ects_from_this_url.rb +196 -0
  139. data/lib/studium/ects/search_for_n_ects.rb +614 -0
  140. data/lib/studium/ects/show_completed_ects_in_all_curricula.rb +191 -0
  141. data/lib/studium/ects/show_passed_credits_per_curriculum.rb +276 -0
  142. data/lib/studium/ects/simple_total_ects_points.rb +135 -0
  143. data/lib/studium/ects/solved_ects/constants.rb +19 -0
  144. data/lib/studium/ects/solved_ects/reset.rb +51 -0
  145. data/lib/studium/ects/solved_ects/solved_ects.rb +325 -0
  146. data/lib/studium/ects/solved_ects_per_university/reset.rb +25 -0
  147. data/lib/studium/ects/solved_ects_per_university/solved_ects_per_university.rb +106 -0
  148. data/lib/studium/ects/still_missing.rb +129 -0
  149. data/lib/studium/ects/sum_of_ects.rb +144 -0
  150. data/lib/studium/encoding/encoding.rb +108 -0
  151. data/lib/studium/exam_topics/RNAi_siRNA_and_miRNA +100 -0
  152. data/lib/studium/exam_topics/abfall_als_ressource +86 -0
  153. data/lib/studium/exam_topics/advanced_biochemistry +793 -0
  154. data/lib/studium/exam_topics/advanced_biotechnology +225 -0
  155. data/lib/studium/exam_topics/advanced_cellbiology +105 -0
  156. data/lib/studium/exam_topics/advanced_chemistry +518 -0
  157. data/lib/studium/exam_topics/advanced_microbiology +44 -0
  158. data/lib/studium/exam_topics/advanced_topics_in_plant_sciences +85 -0
  159. data/lib/studium/exam_topics/advanced_virology +229 -0
  160. data/lib/studium/exam_topics/ageing +117 -0
  161. data/lib/studium/exam_topics/agrar_ecology +63 -0
  162. data/lib/studium/exam_topics/agrarmarkt +74 -0
  163. data/lib/studium/exam_topics/agrarphysik +35 -0
  164. data/lib/studium/exam_topics/alcohols +29 -0
  165. data/lib/studium/exam_topics/algorithms +59 -0
  166. data/lib/studium/exam_topics/allergie +76 -0
  167. data/lib/studium/exam_topics/allgemeine_genetik +1006 -0
  168. data/lib/studium/exam_topics/allgemeine_mikrobiologie +977 -0
  169. data/lib/studium/exam_topics/aminoacids +447 -0
  170. data/lib/studium/exam_topics/analytische_chemie_1 +132 -0
  171. data/lib/studium/exam_topics/analytische_chemie_2 +31 -0
  172. data/lib/studium/exam_topics/anatomie +292 -0
  173. data/lib/studium/exam_topics/anorganische_chemie +323 -0
  174. data/lib/studium/exam_topics/anthropologie +117 -0
  175. data/lib/studium/exam_topics/antibodies_and_antigens +770 -0
  176. data/lib/studium/exam_topics/apoptosis +35 -0
  177. data/lib/studium/exam_topics/archaea +95 -0
  178. data/lib/studium/exam_topics/architecture +8 -0
  179. data/lib/studium/exam_topics/artificial_intelligence +85 -0
  180. data/lib/studium/exam_topics/atomemissionsspektrometrie +6 -0
  181. data/lib/studium/exam_topics/audio +11 -0
  182. data/lib/studium/exam_topics/bacteriophages +243 -0
  183. data/lib/studium/exam_topics/basic_biochemistry +1005 -0
  184. data/lib/studium/exam_topics/basic_biotechnology +1004 -0
  185. data/lib/studium/exam_topics/basic_chemistry +1007 -0
  186. data/lib/studium/exam_topics/basic_virology +1010 -0
  187. data/lib/studium/exam_topics/bauwesen +6 -0
  188. data/lib/studium/exam_topics/betriebssysteme +126 -0
  189. data/lib/studium/exam_topics/betriebswirtschaftslehre +29 -0
  190. data/lib/studium/exam_topics/bioanalytik_und_biosensoren +389 -0
  191. data/lib/studium/exam_topics/biochips +79 -0
  192. data/lib/studium/exam_topics/bioelektrochemie +57 -0
  193. data/lib/studium/exam_topics/biofilms +24 -0
  194. data/lib/studium/exam_topics/bioinformatics +507 -0
  195. data/lib/studium/exam_topics/biological_therapeutics +155 -0
  196. data/lib/studium/exam_topics/biologie +139 -0
  197. data/lib/studium/exam_topics/biomarkers +135 -0
  198. data/lib/studium/exam_topics/biomaterials +89 -0
  199. data/lib/studium/exam_topics/biomembranes +6 -0
  200. data/lib/studium/exam_topics/bionik +65 -0
  201. data/lib/studium/exam_topics/biophysik +34 -0
  202. data/lib/studium/exam_topics/biopolymers +10 -0
  203. data/lib/studium/exam_topics/bioprozesstechnik +149 -0
  204. data/lib/studium/exam_topics/bioressourcenmanagement +78 -0
  205. data/lib/studium/exam_topics/birds +3 -0
  206. data/lib/studium/exam_topics/bodenkunde +373 -0
  207. data/lib/studium/exam_topics/bodenmikrobiologie +40 -0
  208. data/lib/studium/exam_topics/cancerbiology +454 -0
  209. data/lib/studium/exam_topics/cell_cultures +221 -0
  210. data/lib/studium/exam_topics/cellbiology +1011 -0
  211. data/lib/studium/exam_topics/cellular_transport_and_protein_secretion +27 -0
  212. data/lib/studium/exam_topics/cellular_vesicles +11 -0
  213. data/lib/studium/exam_topics/cellulose +6 -0
  214. data/lib/studium/exam_topics/chemische_technologie_anorganischer_stoffe +209 -0
  215. data/lib/studium/exam_topics/chemische_technologie_organischer_stoffe +25 -0
  216. data/lib/studium/exam_topics/chemisches_labor +60 -0
  217. data/lib/studium/exam_topics/chemotaxis_quorum_sensing_and_motility_in_prokaryotes +91 -0
  218. data/lib/studium/exam_topics/citric_acid_cycle +80 -0
  219. data/lib/studium/exam_topics/clinical_microbiology +506 -0
  220. data/lib/studium/exam_topics/computer_science +284 -0
  221. data/lib/studium/exam_topics/computer_vision_and_computer_graphics +12 -0
  222. data/lib/studium/exam_topics/crispr +48 -0
  223. data/lib/studium/exam_topics/cyanobacteria +43 -0
  224. data/lib/studium/exam_topics/cytogenetics_and_chromosome_biology +570 -0
  225. data/lib/studium/exam_topics/cytokines +6 -0
  226. data/lib/studium/exam_topics/databases_and_sql +116 -0
  227. data/lib/studium/exam_topics/dna_mutation_and_dna_repair +69 -0
  228. data/lib/studium/exam_topics/dna_replication +57 -0
  229. data/lib/studium/exam_topics/ecogenetics +26 -0
  230. data/lib/studium/exam_topics/ecological_agriculture +12 -0
  231. data/lib/studium/exam_topics/ecology +317 -0
  232. data/lib/studium/exam_topics/economy +211 -0
  233. data/lib/studium/exam_topics/elektronenmikroskopie +356 -0
  234. data/lib/studium/exam_topics/elektrophorese +89 -0
  235. data/lib/studium/exam_topics/elektrotechnik_und_elektrizit/303/244t +41 -0
  236. data/lib/studium/exam_topics/elisa +54 -0
  237. data/lib/studium/exam_topics/embryologie_und_entwicklung +603 -0
  238. data/lib/studium/exam_topics/endospores_and_spores +104 -0
  239. data/lib/studium/exam_topics/enzymes_and_cofactors +353 -0
  240. data/lib/studium/exam_topics/epigenetik +184 -0
  241. data/lib/studium/exam_topics/erste_hilfe +158 -0
  242. data/lib/studium/exam_topics/ethik +138 -0
  243. data/lib/studium/exam_topics/evolution_and_evolutionary_genetics +356 -0
  244. data/lib/studium/exam_topics/excel +7 -0
  245. data/lib/studium/exam_topics/fish +19 -0
  246. data/lib/studium/exam_topics/fluorescence_microscopy +7 -0
  247. data/lib/studium/exam_topics/food_microbiology_and_food_biotechnology +83 -0
  248. data/lib/studium/exam_topics/forensik +11 -0
  249. data/lib/studium/exam_topics/forstwirtschaft +53 -0
  250. data/lib/studium/exam_topics/fortgeschrittene_genetik +576 -0
  251. data/lib/studium/exam_topics/fortgeschrittene_gentechnik +217 -0
  252. data/lib/studium/exam_topics/fortgeschrittene_physik +6 -0
  253. data/lib/studium/exam_topics/fungi +80 -0
  254. data/lib/studium/exam_topics/genetische_krankheiten +187 -0
  255. data/lib/studium/exam_topics/genexpression +1008 -0
  256. data/lib/studium/exam_topics/genomics_and_metagenomics +272 -0
  257. data/lib/studium/exam_topics/gentechnik_und_praktische_biochemie +928 -0
  258. data/lib/studium/exam_topics/geochemistry +67 -0
  259. data/lib/studium/exam_topics/geography +8 -0
  260. data/lib/studium/exam_topics/geologie_und_mineralogie +626 -0
  261. data/lib/studium/exam_topics/geometrie +54 -0
  262. data/lib/studium/exam_topics/geschichte +94 -0
  263. data/lib/studium/exam_topics/gluconeogenesis +64 -0
  264. data/lib/studium/exam_topics/glycogen +25 -0
  265. data/lib/studium/exam_topics/glycolysis +109 -0
  266. data/lib/studium/exam_topics/glykomik +101 -0
  267. data/lib/studium/exam_topics/glyoxylatzyklus +31 -0
  268. data/lib/studium/exam_topics/grassland_cultivation +32 -0
  269. data/lib/studium/exam_topics/hormone +139 -0
  270. data/lib/studium/exam_topics/html +7 -0
  271. data/lib/studium/exam_topics/human_ecology +8 -0
  272. data/lib/studium/exam_topics/hygiene +224 -0
  273. data/lib/studium/exam_topics/imaging_and_microscopy +265 -0
  274. data/lib/studium/exam_topics/immunanalytik +94 -0
  275. data/lib/studium/exam_topics/immunologie +998 -0
  276. data/lib/studium/exam_topics/informatik +103 -0
  277. data/lib/studium/exam_topics/innate_immunity +24 -0
  278. data/lib/studium/exam_topics/insekten +64 -0
  279. data/lib/studium/exam_topics/insulin_and_diabetes +57 -0
  280. data/lib/studium/exam_topics/java +597 -0
  281. data/lib/studium/exam_topics/javascript +14 -0
  282. data/lib/studium/exam_topics/klima +6 -0
  283. data/lib/studium/exam_topics/kryptographie +9 -0
  284. data/lib/studium/exam_topics/landtechnik +26 -0
  285. data/lib/studium/exam_topics/lebensmittel +222 -0
  286. data/lib/studium/exam_topics/lebensmitteltechnologie +16 -0
  287. data/lib/studium/exam_topics/linux +5 -0
  288. data/lib/studium/exam_topics/lipids +95 -0
  289. data/lib/studium/exam_topics/macroeconomics +40 -0
  290. data/lib/studium/exam_topics/marketing +7 -0
  291. data/lib/studium/exam_topics/mathematics +280 -0
  292. data/lib/studium/exam_topics/medizin_und_biomedizinische_technik +251 -0
  293. data/lib/studium/exam_topics/medizinische_chemie_und_pharmazie +416 -0
  294. data/lib/studium/exam_topics/messtechnik_und_regeltechnik +104 -0
  295. data/lib/studium/exam_topics/metabolismus +423 -0
  296. data/lib/studium/exam_topics/meteorologie_und_atmosph/303/244re +91 -0
  297. data/lib/studium/exam_topics/microbial_ecology +35 -0
  298. data/lib/studium/exam_topics/microcontrollers +11 -0
  299. data/lib/studium/exam_topics/mikrobielle_lebensgemeinschaften +33 -0
  300. data/lib/studium/exam_topics/mikrobielle_physiologie +204 -0
  301. data/lib/studium/exam_topics/mitochondria +33 -0
  302. data/lib/studium/exam_topics/mixed +286 -0
  303. data/lib/studium/exam_topics/molecular_biology_of_plants +249 -0
  304. data/lib/studium/exam_topics/molekulare_medizin +133 -0
  305. data/lib/studium/exam_topics/nanotechnologie +453 -0
  306. data/lib/studium/exam_topics/nature_conservation_and_biodiversity +211 -0
  307. data/lib/studium/exam_topics/naturstoffe +9 -0
  308. data/lib/studium/exam_topics/netzwerke +34 -0
  309. data/lib/studium/exam_topics/neurobiology +272 -0
  310. data/lib/studium/exam_topics/nucleotide_sequencing +38 -0
  311. data/lib/studium/exam_topics/nutztierethologie +11 -0
  312. data/lib/studium/exam_topics/object_oriented_modeling +14 -0
  313. data/lib/studium/exam_topics/obstbau +249 -0
  314. data/lib/studium/exam_topics/organische_chemie +1007 -0
  315. data/lib/studium/exam_topics/organische_chemie_2 +125 -0
  316. data/lib/studium/exam_topics/paleobiology +39 -0
  317. data/lib/studium/exam_topics/parasitic_diseases_and_molecular_infection_biology +336 -0
  318. data/lib/studium/exam_topics/patent_law +55 -0
  319. data/lib/studium/exam_topics/pathologie +723 -0
  320. data/lib/studium/exam_topics/pcr +152 -0
  321. data/lib/studium/exam_topics/pentosephosphatweg +41 -0
  322. data/lib/studium/exam_topics/peroxisomes_glycosomes_and_lysosomes +66 -0
  323. data/lib/studium/exam_topics/pflanzenanatomie +255 -0
  324. data/lib/studium/exam_topics/pflanzenbau +24 -0
  325. data/lib/studium/exam_topics/pflanzenschutz +35 -0
  326. data/lib/studium/exam_topics/pflanzenwissenschaften +1009 -0
  327. data/lib/studium/exam_topics/pharmaceutical_biotechnology +251 -0
  328. data/lib/studium/exam_topics/physik +443 -1
  329. data/lib/studium/exam_topics/physikalische_chemie +86 -0
  330. data/lib/studium/exam_topics/physiology_and_histology +520 -0
  331. data/lib/studium/exam_topics/phytochemie +33 -0
  332. data/lib/studium/exam_topics/plant_biotechnology +129 -0
  333. data/lib/studium/exam_topics/plant_breeding +64 -0
  334. data/lib/studium/exam_topics/plant_development +50 -0
  335. data/lib/studium/exam_topics/populationsgenetik +137 -0
  336. data/lib/studium/exam_topics/posttranslationale_modifikation_von_proteinen +195 -0
  337. data/lib/studium/exam_topics/projektmanagement +220 -0
  338. data/lib/studium/exam_topics/prokaryote_genetics +547 -0
  339. data/lib/studium/exam_topics/protein_engineering +16 -0
  340. data/lib/studium/exam_topics/proteolyse +36 -0
  341. data/lib/studium/exam_topics/proteomik +40 -0
  342. data/lib/studium/exam_topics/prozesstechnik +95 -0
  343. data/lib/studium/exam_topics/psychologie +14 -0
  344. data/lib/studium/exam_topics/python +355 -0
  345. data/lib/studium/exam_topics/quality_management +263 -0
  346. data/lib/studium/exam_topics/rechtsgrundlagen +116 -0
  347. data/lib/studium/exam_topics/research_topics_in_immunobiology +42 -0
  348. data/lib/studium/exam_topics/rna_and_dna +457 -0
  349. data/lib/studium/exam_topics/rna_seq +11 -0
  350. data/lib/studium/exam_topics/robotik +6 -0
  351. data/lib/studium/exam_topics/ruby +183 -0
  352. data/lib/studium/exam_topics/ruby_on_rails +63 -0
  353. data/lib/studium/exam_topics/scientific_writing_and_publishing +38 -0
  354. data/lib/studium/exam_topics/semisynthese_von_proteinen_und_nukleotiden +120 -0
  355. data/lib/studium/exam_topics/sexualbiologie +108 -0
  356. data/lib/studium/exam_topics/signal_transduction_and_laser_systems +197 -0
  357. data/lib/studium/exam_topics/splicing_exons_and_introns +63 -0
  358. data/lib/studium/exam_topics/statistik +241 -0
  359. data/lib/studium/exam_topics/stemcells +159 -0
  360. data/lib/studium/exam_topics/stickstofffixierung +76 -0
  361. data/lib/studium/exam_topics/structural_bioinformatics +54 -0
  362. data/lib/studium/exam_topics/strukturbiologie +387 -0
  363. data/lib/studium/exam_topics/system_biology_and_synthetic_biology +103 -0
  364. data/lib/studium/exam_topics/systematische_zoologie +436 -0
  365. data/lib/studium/exam_topics/technical_ecology +144 -0
  366. data/lib/studium/exam_topics/technische_chemie +204 -0
  367. data/lib/studium/exam_topics/technische_grundlagen_der_informatik +39 -0
  368. data/lib/studium/exam_topics/technische_mikrobiologie +393 -0
  369. data/lib/studium/exam_topics/technisches_zeichnen +5 -0
  370. data/lib/studium/exam_topics/the_bacterial_cell_wall +97 -0
  371. data/lib/studium/exam_topics/the_c_plus_plus_programming_language +491 -0
  372. data/lib/studium/exam_topics/the_c_programming_language +129 -0
  373. data/lib/studium/exam_topics/the_cellcycle +89 -0
  374. data/lib/studium/exam_topics/the_european_union +119 -0
  375. data/lib/studium/exam_topics/the_interferon_system +39 -0
  376. data/lib/studium/exam_topics/the_microbiome +164 -0
  377. data/lib/studium/exam_topics/the_universe +26 -0
  378. data/lib/studium/exam_topics/theoretische_chemie +5 -0
  379. data/lib/studium/exam_topics/theoretische_informatik +157 -0
  380. data/lib/studium/exam_topics/thermodynamics +3 -0
  381. data/lib/studium/exam_topics/tierzucht +139 -0
  382. data/lib/studium/exam_topics/toxikologie +447 -0
  383. data/lib/studium/exam_topics/transcription +164 -0
  384. data/lib/studium/exam_topics/translation_ribosomes_and_translational_control +144 -0
  385. data/lib/studium/exam_topics/umweltbiotechnologie +64 -0
  386. data/lib/studium/exam_topics/umweltchemie +233 -0
  387. data/lib/studium/exam_topics/urbanism_and_traffic +19 -0
  388. data/lib/studium/exam_topics/urea_cycle +55 -0
  389. data/lib/studium/exam_topics/vaccines_and_vaccination +246 -0
  390. data/lib/studium/exam_topics/vectors_and_gene_therapy +246 -0
  391. data/lib/studium/exam_topics/verfahrenstechnik +37 -0
  392. data/lib/studium/exam_topics/veterinary_medicine +10 -0
  393. data/lib/studium/exam_topics/vitamine +25 -0
  394. data/lib/studium/exam_topics/wasserkunde +137 -0
  395. data/lib/studium/exam_topics/weinbau +82 -0
  396. data/lib/studium/exam_topics/wissenschaft +18 -0
  397. data/lib/studium/exam_topics/yeast +102 -0
  398. data/lib/studium/exam_topics/zoologie +333 -0
  399. data/lib/studium/exams/afterburn/afterburn.rb +257 -0
  400. data/lib/studium/exams/ask_exam_from_the_upcoming_exams_pool.rb +150 -0
  401. data/lib/studium/exams/ask_exam_topic_question.rb +112 -0
  402. data/lib/studium/exams/ask_question_from_alias.rb +141 -0
  403. data/lib/studium/exams/ask_question_from_any_of_the_still_missing_lectures.rb +131 -0
  404. data/lib/studium/exams/ask_question_from_grouped_themes.rb +141 -0
  405. data/lib/studium/exams/ask_question_from_last_topic.rb +91 -0
  406. data/lib/studium/exams/ask_random_question.rb +195 -0
  407. data/lib/studium/exams/autoinclude.rb +7 -0
  408. data/lib/studium/exams/average_grade.rb +396 -0
  409. data/lib/studium/exams/csv/create_csv_passed_exams_file.rb +217 -0
  410. data/lib/studium/exams/cycle.rb +291 -0
  411. data/lib/studium/exams/dataset.rb +124 -0
  412. data/lib/studium/exams/designate_ten_random_exam_topics/designate_ten_random_exam_topics.rb +88 -0
  413. data/lib/studium/exams/exam/exam.rb +130 -0
  414. data/lib/studium/exams/exam_question/README.md +3 -0
  415. data/lib/studium/exams/exam_question/answer.rb +193 -0
  416. data/lib/studium/exams/exam_question/constants.rb +111 -0
  417. data/lib/studium/exams/exam_question/exam_question.rb +1136 -0
  418. data/lib/studium/exams/exam_question/menu.rb +333 -0
  419. data/lib/studium/exams/exam_question/misc.rb +898 -0
  420. data/lib/studium/exams/exam_question/question.rb +91 -0
  421. data/lib/studium/exams/exam_question/reset.rb +96 -0
  422. data/lib/studium/exams/exam_registration_at/constants.rb +49 -0
  423. data/lib/studium/exams/exam_registration_at/exam_registration_at.rb +242 -0
  424. data/lib/studium/exams/exam_registration_at/help.rb +46 -0
  425. data/lib/studium/exams/exam_registration_at/menu.rb +81 -0
  426. data/lib/studium/exams/exam_registration_at/report_and_show.rb +133 -0
  427. data/lib/studium/exams/exam_registration_at/reset.rb +54 -0
  428. data/lib/studium/exams/exam_statistics_from_this_file/exam_statistics_from_this_file.rb +119 -0
  429. data/lib/studium/exams/exam_topics.rb +194 -0
  430. data/lib/studium/exams/exams.rb +20 -0
  431. data/lib/studium/exams/exams_per_month/exams_per_month.rb +2438 -0
  432. data/lib/studium/exams/exams_this_week.rb +182 -0
  433. data/lib/studium/exams/fix_exam_dates.rb +121 -0
  434. data/lib/studium/exams/frozen.rb +36 -0
  435. data/lib/studium/exams/last_exams/last_exams.rb +398 -0
  436. data/lib/studium/exams/lectures_without_exam_entry.rb +137 -0
  437. data/lib/studium/exams/mandatory_continuous_assessment/mandatory_continuous_assessment.rb +1359 -0
  438. 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
  439. data/lib/studium/exams/n_exams_in_these_topics.rb +404 -0
  440. data/lib/studium/exams/next_exam.rb +107 -0
  441. data/lib/studium/exams/next_exams.rb +378 -0
  442. data/lib/studium/exams/open_exam_associated_url.rb +154 -0
  443. data/lib/studium/exams/open_last_exam_question_asked_file/constants.rb +15 -0
  444. data/lib/studium/exams/open_last_exam_question_asked_file/initialize.rb +29 -0
  445. data/lib/studium/exams/open_last_exam_question_asked_file/open_last_exam_question_asked_file.rb +109 -0
  446. data/lib/studium/exams/push_solved_questions_on_top.rb +180 -0
  447. data/lib/studium/exams/questions_solved_from_day_to_day/questions_solved_from_day_to_day.rb +377 -0
  448. data/lib/studium/exams/remote_ftp_url.rb +52 -0
  449. data/lib/studium/exams/repeat_last_question.rb +78 -0
  450. data/lib/studium/exams/show_all_passed_exams_of_this_university.rb +252 -0
  451. data/lib/studium/exams/show_backlog_of_exams.rb +117 -0
  452. data/lib/studium/exams/show_next_exams_for.rb +133 -0
  453. data/lib/studium/exams/show_themes/constants.rb +28 -0
  454. data/lib/studium/exams/show_themes/menu.rb +61 -0
  455. data/lib/studium/exams/show_themes/misc.rb +537 -0
  456. data/lib/studium/exams/show_themes/reset.rb +62 -0
  457. data/lib/studium/exams/show_themes/show_themes.rb +27 -0
  458. data/lib/studium/exams/show_upcoming_exams/show_upcoming_exams.rb +1146 -0
  459. data/lib/studium/exams/solve_all_questions_from_this_topic.rb +114 -0
  460. data/lib/studium/exams/solved/constants.rb +32 -0
  461. data/lib/studium/exams/solved/help.rb +24 -0
  462. data/lib/studium/exams/solved/initialize.rb +55 -0
  463. data/lib/studium/exams/solved/menu.rb +41 -0
  464. data/lib/studium/exams/solved/reset.rb +28 -0
  465. data/lib/studium/exams/solved/solved.rb +317 -0
  466. data/lib/studium/exams/timetable/timetable.rb +510 -0
  467. data/lib/studium/exams/unsolve_all_questions_from_this_topic.rb +162 -0
  468. data/lib/studium/exams/upcoming_exams/upcoming_exams.rb +556 -0
  469. data/lib/studium/exams/upcoming_exams_at_the_boku/constants.rb +23 -0
  470. data/lib/studium/exams/upcoming_exams_at_the_boku/html.rb +64 -0
  471. data/lib/studium/exams/upcoming_exams_at_the_boku/upcoming_exams_at_the_boku.rb +194 -0
  472. data/lib/studium/exams/upcoming_exams_dataset.rb +247 -0
  473. data/lib/studium/exams/upcoming_registered_exams/upcoming_registered_exams.rb +257 -0
  474. data/lib/studium/exams/upload_exam_topics.rb +360 -0
  475. data/lib/studium/graphviz/README.md +4 -0
  476. data/lib/studium/graphviz/bachelor_vector_based_strategies.dot +160 -0
  477. data/lib/studium/graphviz/master_vector_based_strategies.dot +46 -0
  478. data/lib/studium/gui/gtk3/README.md +1 -0
  479. data/lib/studium/gui/gtk3/ask_exam_question/ask_exam_question.config +6 -0
  480. data/lib/studium/gui/gtk3/ask_exam_question/ask_exam_question.rb +760 -0
  481. data/lib/studium/gui/gtk3/ask_exam_question/manifest.yml +12 -0
  482. data/lib/studium/gui/gtk3/control_panel/control_panel.rb +39 -0
  483. data/lib/studium/gui/gtk3/curriculum_viewer/curriculum_viewer.rb +510 -0
  484. data/lib/studium/gui/gtk3/ects_per_university/ects_per_university.rb +217 -0
  485. data/lib/studium/gui/gtk3/exam_question_widget/exam_question_widget.rb +1888 -0
  486. data/lib/studium/gui/gtk3/expand_time_range/expand_time_range.rb +34 -0
  487. data/lib/studium/gui/gtk3/information_about_a_lecture/information_about_a_lecture.rb +34 -0
  488. data/lib/studium/gui/gtk3/lecture_information/lecture_information.rb +200 -0
  489. data/lib/studium/gui/gtk3/show_upcoming_exams/show_upcoming_exams.rb +34 -0
  490. data/lib/studium/gui/java/exam_question/ExamQuestion$1.class +0 -0
  491. data/lib/studium/gui/java/exam_question/ExamQuestion.class +0 -0
  492. data/lib/studium/gui/java/exam_question/ExamQuestion.java +215 -0
  493. data/lib/studium/gui/javafx/exam_question_widget/exam_question_widget.rb +58 -0
  494. data/lib/studium/gui/jruby/exam_question_widget/exam_question_widget.rb +317 -0
  495. data/lib/studium/gui/libui/ask_exam_question/ask_exam_question.rb +349 -0
  496. data/lib/studium/gui/shared_code/control_panel/control_panel_module.rb +314 -0
  497. data/lib/studium/gui/shared_code/exam_question_widget/exam_question_widget_module.rb +39 -0
  498. data/lib/studium/gui/shared_code/expand_time_range/expand_time_range.css +0 -0
  499. data/lib/studium/gui/shared_code/expand_time_range/expand_time_range_module.rb +190 -0
  500. data/lib/studium/gui/shared_code/information_about_a_lecture/information_about_a_lecture_module.rb +180 -0
  501. data/lib/studium/gui/shared_code/show_upcoming_exams/show_upcoming_exams_module.rb +206 -0
  502. data/lib/studium/images/libui_ask_exam_question.png +0 -0
  503. data/lib/studium/images/outdated.png +0 -0
  504. data/lib/studium/images/small_logos/DNA.png +0 -0
  505. data/lib/studium/images/small_logos/README.md +2 -0
  506. data/lib/studium/images/small_logos/solved.png +0 -0
  507. data/lib/studium/images/studies_favicon.png +0 -0
  508. data/lib/studium/java/Mkdir.java +15 -0
  509. data/lib/studium/java/README.md +2 -0
  510. data/lib/studium/java/ask_exam_question/AskExamQuestion.class +0 -0
  511. data/lib/studium/java/ask_exam_question/AskExamQuestion.java +480 -0
  512. data/lib/studium/java/constants/Constants.class +0 -0
  513. data/lib/studium/java/constants/Constants.java +77 -0
  514. data/lib/studium/java/solved/Solved.class +0 -0
  515. data/lib/studium/java/solved/Solved.java +110 -0
  516. data/lib/studium/java/utility_scripts/OpenLastExamQuestionurlLinkViaTheBrowser.class +0 -0
  517. data/lib/studium/java/utility_scripts/OpenLastExamQuestionurlLinkViaTheBrowser.java +80 -0
  518. data/lib/studium/logging/README.md +2 -0
  519. data/lib/studium/logging/ensure_that_the_log_directory_exists.rb +47 -0
  520. data/lib/studium/logging/html_log_directory.rb +41 -0
  521. data/lib/studium/logging/log_directory.rb +112 -0
  522. data/lib/studium/logging/store_last_question_asked_into_file.rb +137 -0
  523. data/lib/studium/parsers/README.md +2 -0
  524. data/lib/studium/parsers/custom_exam_results_parser.rb +206 -0
  525. data/lib/studium/parsers/parse_lva_dates.rb +233 -0
  526. data/lib/studium/parsers/parse_remote_lecture.rb +331 -0
  527. data/lib/studium/project/project.rb +76 -0
  528. data/lib/studium/requires/common_popular_requires.rb +37 -0
  529. data/lib/studium/requires/commonly_used_requires.rb +14 -0
  530. data/lib/studium/requires/require_class_exams_solved.rb +7 -0
  531. data/lib/studium/requires/require_ects_scripts.rb +27 -0
  532. data/lib/studium/requires/require_encoding.rb +7 -0
  533. data/lib/studium/requires/require_the_check_and_sanitize_files.rb +31 -0
  534. data/lib/studium/requires/require_the_curricula_files.rb +28 -0
  535. data/lib/studium/requires/require_the_exam_question_class.rb +7 -0
  536. data/lib/studium/requires/require_the_exams_files.rb +45 -0
  537. data/lib/studium/requires/require_the_logging_files.rb +23 -0
  538. data/lib/studium/requires/require_the_parsers.rb +28 -0
  539. data/lib/studium/requires/require_the_studium_constants.rb +10 -0
  540. data/lib/studium/requires/require_the_studium_project.rb +60 -0
  541. data/lib/studium/requires/require_the_toplevel_methods.rb +27 -0
  542. data/lib/studium/requires/require_the_utility_scripts.rb +49 -0
  543. data/lib/studium/requires/require_upcoming_exams.rb +7 -0
  544. data/lib/studium/requires/require_yaml.rb +7 -0
  545. data/lib/studium/requires/return_remote_homepage_of_this_lecture.rb +7 -0
  546. data/lib/studium/requires/with_GUI.rb +13 -0
  547. data/lib/studium/requires/www_mode.rb +17 -0
  548. data/lib/studium/statistics/README.md +4 -0
  549. data/lib/studium/statistics/best_exam_months.rb +92 -0
  550. data/lib/studium/statistics/curriculum_comparer.rb +337 -0
  551. data/lib/studium/statistics/determine_exam_statistics_from_this_file.rb +142 -0
  552. data/lib/studium/statistics/exam_topics_that_are_about_to_be_completed.rb +119 -0
  553. data/lib/studium/statistics/max_stats.rb +170 -0
  554. data/lib/studium/statistics/new_questions_per_year.rb +147 -0
  555. data/lib/studium/statistics/report_how_many_ects_points_per_curriculum_were_completed.rb +167 -0
  556. data/lib/studium/statistics/report_how_many_exam_questions_were_answered.rb +473 -0
  557. data/lib/studium/statistics/show_exam_statistics.rb +66 -0
  558. data/lib/studium/statistics/show_which_courses_are_in_a_bachelor_or_master_curriculum_respectively.rb +104 -0
  559. data/lib/studium/statistics/top_stats.rb +127 -0
  560. data/lib/studium/toplevel_methods/all_passed_exams.rb +37 -0
  561. data/lib/studium/toplevel_methods/already_solved_this_lecture.rb +100 -0
  562. data/lib/studium/toplevel_methods/available_topics.rb +156 -0
  563. data/lib/studium/toplevel_methods/calculate_pr/303/274fungsimmanente_lectures_from_this_file.rb +55 -0
  564. data/lib/studium/toplevel_methods/copy_the_last_backup_of_file_lecture_information.rb +34 -0
  565. data/lib/studium/toplevel_methods/curriculum_related_code.rb +1082 -0
  566. data/lib/studium/toplevel_methods/determine_local_directory_of_this_lecture.rb +72 -0
  567. data/lib/studium/toplevel_methods/does_this_course_require_mandatory_presence.rb +51 -0
  568. data/lib/studium/toplevel_methods/download.rb +163 -0
  569. data/lib/studium/toplevel_methods/e.rb +16 -0
  570. data/lib/studium/toplevel_methods/ects_from_lectures.rb +250 -0
  571. data/lib/studium/toplevel_methods/editor.rb +65 -0
  572. data/lib/studium/toplevel_methods/esystem.rb +22 -0
  573. data/lib/studium/toplevel_methods/filter_away_invalid_questions.rb +77 -0
  574. data/lib/studium/toplevel_methods/find_exam_topic_and_exam_title.rb +3538 -0
  575. data/lib/studium/toplevel_methods/handle_archive_of_the_exam_questions.rb +136 -0
  576. data/lib/studium/toplevel_methods/has_this_lecture_been_already_passed_but_the_id_was_changed_lateron.rb +42 -0
  577. data/lib/studium/toplevel_methods/has_this_module_been_completed.rb +206 -0
  578. data/lib/studium/toplevel_methods/install_the_project_on_the_given_hostsystem.rb +32 -0
  579. data/lib/studium/toplevel_methods/is_on_roebe.rb +26 -0
  580. data/lib/studium/toplevel_methods/is_this_exam_topic_included.rb +46 -0
  581. data/lib/studium/toplevel_methods/is_this_homepage_registered.rb +31 -0
  582. data/lib/studium/toplevel_methods/is_this_lecture_a_practical_course.rb +93 -0
  583. data/lib/studium/toplevel_methods/is_this_lecture_registered_in_upcoming_exams.rb +42 -0
  584. data/lib/studium/toplevel_methods/java.rb +32 -0
  585. data/lib/studium/toplevel_methods/lecture_information.rb +108 -0
  586. data/lib/studium/toplevel_methods/lva_numbers.rb +355 -0
  587. data/lib/studium/toplevel_methods/main_dataset.rb +73 -0
  588. data/lib/studium/toplevel_methods/map_input_to_this_curriculum_filename.rb +595 -0
  589. data/lib/studium/toplevel_methods/methods_related_to_directories.rb +225 -0
  590. data/lib/studium/toplevel_methods/methods_related_to_files.rb +209 -0
  591. data/lib/studium/toplevel_methods/misc.rb +288 -0
  592. data/lib/studium/toplevel_methods/n_questions_available.rb +137 -0
  593. data/lib/studium/toplevel_methods/n_topics_available.rb +63 -0
  594. data/lib/studium/toplevel_methods/names_of_all_solved_exams.rb +71 -0
  595. data/lib/studium/toplevel_methods/note_down_the_start_time_and_how_many_exams_have_been_already_solved.rb +69 -0
  596. data/lib/studium/toplevel_methods/opnn.rb +25 -0
  597. data/lib/studium/toplevel_methods/passed_this_exam_on.rb +105 -0
  598. data/lib/studium/toplevel_methods/pristine.rb +69 -0
  599. data/lib/studium/toplevel_methods/read_delay_between_questions_from_file.rb +34 -0
  600. data/lib/studium/toplevel_methods/regexes.rb +90 -0
  601. data/lib/studium/toplevel_methods/registered_for_this_exam.rb +82 -0
  602. data/lib/studium/toplevel_methods/remove_comments.rb +26 -0
  603. data/lib/studium/toplevel_methods/remove_exam_topics_that_were_already_answered.rb +27 -0
  604. data/lib/studium/toplevel_methods/remove_tags.rb +32 -0
  605. data/lib/studium/toplevel_methods/report.rb +435 -0
  606. data/lib/studium/toplevel_methods/return_all_exams_on_this_day.rb +66 -0
  607. data/lib/studium/toplevel_methods/return_dataset_for_this_exam_topic.rb +41 -0
  608. data/lib/studium/toplevel_methods/return_ects_from_this_lecture_stored_in_the_file_lecture_information.rb +194 -0
  609. data/lib/studium/toplevel_methods/return_hash_of_already_solved_lectures.rb +46 -0
  610. data/lib/studium/toplevel_methods/return_last_exam_question.rb +34 -0
  611. data/lib/studium/toplevel_methods/return_local_path_of_this_pwdstud.rb +60 -0
  612. data/lib/studium/toplevel_methods/return_lva_number_of_this_lecture.rb +72 -0
  613. data/lib/studium/toplevel_methods/return_n_percent_solved_from_this_topic.rb +90 -0
  614. data/lib/studium/toplevel_methods/return_n_questions_were_answered_for_this_topic.rb +60 -0
  615. data/lib/studium/toplevel_methods/return_proper_university_image.rb +86 -0
  616. data/lib/studium/toplevel_methods/return_question_answer_string_from_this_topic.rb +63 -0
  617. data/lib/studium/toplevel_methods/return_remote_homepage_of_this_lecture.rb +10951 -0
  618. data/lib/studium/toplevel_methods/return_remote_moodle_link_of_this_lecture.rb +2201 -0
  619. data/lib/studium/toplevel_methods/return_sanitized_dataset_from_the_file_lecture_information.rb +110 -0
  620. data/lib/studium/toplevel_methods/return_theme_of_the_next_upcoming_exam.rb +38 -0
  621. data/lib/studium/toplevel_methods/rinstall2.rb +34 -0
  622. data/lib/studium/toplevel_methods/rti_conflict.rb +35 -0
  623. data/lib/studium/toplevel_methods/runmode.rb +87 -0
  624. data/lib/studium/toplevel_methods/sanitized_dataset_from_file_passed_exams_per_month.rb +52 -0
  625. data/lib/studium/toplevel_methods/set_last_file_for_exam_questions.rb +64 -0
  626. data/lib/studium/toplevel_methods/set_this_cd_alias_to.rb +86 -0
  627. data/lib/studium/toplevel_methods/show_passed_exams_having_this_grade.rb +34 -0
  628. data/lib/studium/toplevel_methods/spacer.rb +18 -0
  629. data/lib/studium/toplevel_methods/time.rb +297 -0
  630. data/lib/studium/toplevel_methods/total_ects_points_passed.rb +72 -0
  631. data/lib/studium/toplevel_methods/try_to_guess_the_most_likely_lva_id.rb +57 -0
  632. data/lib/studium/toplevel_methods/try_to_return_the_expanded_name_of_this_lecture.rb +63 -0
  633. data/lib/studium/toplevel_methods/unfinished.rb +51 -0
  634. data/lib/studium/toplevel_methods/url.rb +100 -0
  635. data/lib/studium/toplevel_methods/verbose_truth.rb +36 -0
  636. data/lib/studium/toplevel_methods/when_was_this_lecture_passed.rb +54 -0
  637. data/lib/studium/toplevel_methods/word_wrap.rb +56 -0
  638. data/lib/studium/toplevel_methods/write_into_file_related_functionality.rb +195 -0
  639. data/lib/studium/toplevel_methods/yes_or_no_ja_oder_nein.rb +33 -0
  640. data/lib/studium/universities_in_austria/README.md +2 -0
  641. data/lib/studium/universities_in_austria/boku/README.md +4 -0
  642. data/lib/studium/universities_in_austria/boku/boku_/303/266ffnungszeiten.rb +28 -0
  643. data/lib/studium/universities_in_austria/boku/show_three_pillars_of_these_lectures.rb +110 -0
  644. data/lib/studium/universities_in_austria/boku/three_pillars.rb +237 -0
  645. data/lib/studium/universities_in_austria/tu_vienna/README.md +6 -0
  646. data/lib/studium/universities_in_austria/tu_vienna/tu_ferien.rb +42 -0
  647. data/lib/studium/universities_in_austria/tu_vienna/tu_/303/266ffnungszeiten.rb +34 -0
  648. data/lib/studium/university_course/university_course.rb +384 -0
  649. data/lib/studium/utility_scripts/attribute_lecture_to_curriculum/attribute_boku_lecture_to_curriculum.rb +384 -0
  650. data/lib/studium/utility_scripts/attribute_lecture_to_curriculum/attribute_lecture_to_curriculum.rb +238 -0
  651. data/lib/studium/utility_scripts/attribute_lectures_to_university/attribute_lectures_to_university.rb +375 -0
  652. data/lib/studium/utility_scripts/audio_stats.rb +171 -0
  653. data/lib/studium/utility_scripts/auto_stud/auto_stud.rb +252 -0
  654. data/lib/studium/utility_scripts/auto_stud/constants.rb +18 -0
  655. data/lib/studium/utility_scripts/auto_stud/initialize.rb +23 -0
  656. data/lib/studium/utility_scripts/auto_stud/misc.rb +18 -0
  657. data/lib/studium/utility_scripts/autopurge_this_lecture_date.rb +93 -0
  658. data/lib/studium/utility_scripts/average_grade_of_this_curriculum.rb +143 -0
  659. data/lib/studium/utility_scripts/blocked_courses.rb +141 -0
  660. data/lib/studium/utility_scripts/calendar/README.md +2 -0
  661. data/lib/studium/utility_scripts/calendar/calendar.rb +251 -0
  662. data/lib/studium/utility_scripts/calendar/misc.rb +35 -0
  663. data/lib/studium/utility_scripts/check_description_of_these_lectures.rb +221 -0
  664. data/lib/studium/utility_scripts/course_registrations/course_registrations.rb +98 -0
  665. data/lib/studium/utility_scripts/create/README.md +2 -0
  666. data/lib/studium/utility_scripts/create/webpage_of_university.rb +129 -0
  667. data/lib/studium/utility_scripts/create/webpage_of_university_BOKU.rb +59 -0
  668. data/lib/studium/utility_scripts/create/webpage_of_university_TU.rb +58 -0
  669. data/lib/studium/utility_scripts/create/webpage_of_university_UniWien.rb +57 -0
  670. data/lib/studium/utility_scripts/create_database/create_database.rb +106 -0
  671. data/lib/studium/utility_scripts/current_lectures_belonging_to_both_bachelor_and_master_curriculum.rb +113 -0
  672. data/lib/studium/utility_scripts/currently_participating_in_these_lectures/currently_participating_in_these_lectures.rb +104 -0
  673. data/lib/studium/utility_scripts/display_lecture_url.rb +176 -0
  674. data/lib/studium/utility_scripts/expand_time_range/expand_time_range.rb +488 -0
  675. data/lib/studium/utility_scripts/finished_exams_at_this_university.rb +94 -0
  676. data/lib/studium/utility_scripts/foreign_language_percentage/constants.rb +23 -0
  677. data/lib/studium/utility_scripts/foreign_language_percentage/foreign_language_percentage.rb +149 -0
  678. data/lib/studium/utility_scripts/foreign_language_percentage/help.rb +31 -0
  679. data/lib/studium/utility_scripts/foreign_language_percentage/initialize.rb +25 -0
  680. data/lib/studium/utility_scripts/foreign_language_percentage/menu.rb +158 -0
  681. data/lib/studium/utility_scripts/foreign_language_percentage/report.rb +62 -0
  682. data/lib/studium/utility_scripts/foreign_language_percentage/reset.rb +50 -0
  683. data/lib/studium/utility_scripts/foreign_language_percentage/run.rb +19 -0
  684. data/lib/studium/utility_scripts/generate_spreadsheet/generate_spreadsheet.rb +354 -0
  685. data/lib/studium/utility_scripts/generate_spreadsheet/misc.rb +144 -0
  686. data/lib/studium/utility_scripts/holidays/holidays.rb +150 -0
  687. data/lib/studium/utility_scripts/homepage_of_these_courses.rb +118 -0
  688. data/lib/studium/utility_scripts/lecture_downloader.rb +107 -0
  689. data/lib/studium/utility_scripts/lectures_attributed_to_universities.rb +336 -0
  690. data/lib/studium/utility_scripts/lva_dates_of_the_important_courses.rb +111 -0
  691. data/lib/studium/utility_scripts/lva_nummer.rb +431 -0
  692. data/lib/studium/utility_scripts/mandatory_lectures_in_this_month/mandatory_lectures_in_this_month.rb +316 -0
  693. data/lib/studium/utility_scripts/name_of_this_lva_id.rb +110 -0
  694. data/lib/studium/utility_scripts/new_stud.rb +324 -0
  695. data/lib/studium/utility_scripts/next_week.rb +103 -0
  696. data/lib/studium/utility_scripts/open_last_exam_question_url_link_via_the_browser.rb +76 -0
  697. data/lib/studium/utility_scripts/passed_ects_per_year/passed_ects_per_year.rb +288 -0
  698. data/lib/studium/utility_scripts/passed_pr/303/274fungsimmanente_courses/passed_pr/303/274fungsimmanente_courses.rb +181 -0
  699. data/lib/studium/utility_scripts/pdf/README.md +2 -0
  700. data/lib/studium/utility_scripts/pdf/create_pdf_file_for_this_exam_topic.rb +355 -0
  701. data/lib/studium/utility_scripts/pdf/hexapdf_support.rb +50 -0
  702. data/lib/studium/utility_scripts/preparatory_meetings/preparatory_meetings.rb +312 -0
  703. data/lib/studium/utility_scripts/priority.rb +164 -0
  704. data/lib/studium/utility_scripts/priority_points/priority_points.rb +263 -0
  705. data/lib/studium/utility_scripts/publish_my_exams.rb +174 -0
  706. data/lib/studium/utility_scripts/regexes/README.md +1 -0
  707. data/lib/studium/utility_scripts/regexes/generate_regex.rb +314 -0
  708. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_available_moodle_links.rb +55 -0
  709. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_registered_lectures.rb +48 -0
  710. data/lib/studium/utility_scripts/report_outdated_timetable_entries/report_outdated_timetable_entries.rb +142 -0
  711. data/lib/studium/utility_scripts/report_total_amount_of_questions_and_answers_for.rb +116 -0
  712. data/lib/studium/utility_scripts/report_whether_this_lecture_is_registered_in_the_file_lecture_information.rb +128 -0
  713. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/individual_resolve_practical_courses_date_conflicts.rb +254 -0
  714. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/resolve_practical_courses_date_conflicts.rb +265 -0
  715. data/lib/studium/utility_scripts/scrape_remote_university_url.rb +138 -0
  716. data/lib/studium/utility_scripts/semester_schedule_creator/semester_container.rb +144 -0
  717. data/lib/studium/utility_scripts/semester_schedule_creator/semester_schedule_creator.rb +374 -0
  718. data/lib/studium/utility_scripts/semesterplaner.rb +289 -0
  719. data/lib/studium/utility_scripts/set_aliases_based_on_this_file.rb +97 -0
  720. data/lib/studium/utility_scripts/show_all_passed_master_lectures.rb +119 -0
  721. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/show_conflicting_lva_lectures.rb +1339 -0
  722. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/constants.rb +23 -0
  723. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/menu.rb +63 -0
  724. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/reset.rb +33 -0
  725. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/run.rb +50 -0
  726. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/show_descriptions_of_lectures_belonging_to_this_module.rb +145 -0
  727. data/lib/studium/utility_scripts/show_lecturers/show_lecturers.rb +147 -0
  728. data/lib/studium/utility_scripts/show_lectures/constants.rb +11 -0
  729. data/lib/studium/utility_scripts/show_lectures/help.rb +35 -0
  730. data/lib/studium/utility_scripts/show_lectures/initialize.rb +23 -0
  731. data/lib/studium/utility_scripts/show_lectures/menu.rb +138 -0
  732. data/lib/studium/utility_scripts/show_lectures/misc.rb +606 -0
  733. data/lib/studium/utility_scripts/show_lectures/reset.rb +89 -0
  734. data/lib/studium/utility_scripts/show_lectures/run.rb +28 -0
  735. data/lib/studium/utility_scripts/show_lectures/show_lectures.rb +49 -0
  736. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_language/show_lectures_fitting_to_this_language.rb +121 -0
  737. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_theme/show_lectures_fitting_to_this_theme.rb +105 -0
  738. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/show_lectures_on_the_commandline.rb +3142 -0
  739. data/lib/studium/utility_scripts/show_lectures_on_this_day.rb +149 -0
  740. data/lib/studium/utility_scripts/show_lva_dates_of_this_lecture.rb +169 -0
  741. data/lib/studium/utility_scripts/show_mixed_bachelor_master_courses/show_mixed_bachelor_master_courses.rb +91 -0
  742. data/lib/studium/utility_scripts/show_outdated_lva_dates/show_outdated_lva_dates.rb +210 -0
  743. data/lib/studium/utility_scripts/show_solved_english_lectures/show_solved_english_lectures.rb +139 -0
  744. data/lib/studium/utility_scripts/steop/README.md +4 -0
  745. data/lib/studium/utility_scripts/steop/show_all_steop_lectures.rb +93 -0
  746. data/lib/studium/utility_scripts/steop/steop_lectures_in_this_curriculum.rb +284 -0
  747. data/lib/studium/utility_scripts/steop/steop_lva_dates.rb +119 -0
  748. data/lib/studium/utility_scripts/studienkennzahl.rb +116 -0
  749. data/lib/studium/utility_scripts/studium_skeleton/studium_skeleton.rb +231 -0
  750. data/lib/studium/utility_scripts/stundenplan.rb +595 -0
  751. data/lib/studium/utility_scripts/sync_studium_relevant_entries_one_level_downwards.rb +217 -0
  752. data/lib/studium/utility_scripts/ufind/ufind.rb +98 -0
  753. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/constants.rb +26 -0
  754. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/run.rb +20 -0
  755. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/upcoming_mandatory_presence_courses.rb +187 -0
  756. data/lib/studium/utility_scripts/week_parser/constants.rb +23 -0
  757. data/lib/studium/utility_scripts/week_parser/help.rb +32 -0
  758. data/lib/studium/utility_scripts/week_parser/menu.rb +59 -0
  759. data/lib/studium/utility_scripts/week_parser/misc.rb +373 -0
  760. data/lib/studium/utility_scripts/week_parser/reset.rb +65 -0
  761. data/lib/studium/utility_scripts/week_parser/run.rb +18 -0
  762. data/lib/studium/utility_scripts/week_parser/show.rb +236 -0
  763. data/lib/studium/utility_scripts/week_parser/week_parser.rb +49 -0
  764. data/lib/studium/utility_scripts/weekday_parser.rb +155 -0
  765. data/lib/studium/utility_scripts/weekly_schedule.rb +198 -0
  766. data/lib/studium/utility_scripts/wochenplanung.rb +261 -0
  767. data/lib/studium/version/version.rb +46 -0
  768. data/lib/studium/www/curriculum_displayer.rb +162 -0
  769. data/lib/studium/www/exams.cgi +54 -0
  770. data/lib/studium/www/fast_ask_exam_question.cgi +156 -0
  771. data/lib/studium/www/handle_curricula/handle_curricula.cgi +154 -0
  772. data/lib/studium/www/next_generation_exam_question_trainer/next_generation_exam_question_trainer.cgi +79 -0
  773. data/lib/studium/www/sinatra/app.rb +231 -0
  774. data/lib/studium/www/sinatra/misc.rb +115 -0
  775. data/lib/studium/www/statistics/statistics.cgi +70 -0
  776. data/lib/studium/yaml/ad_hoc_trainer/README.md +2 -0
  777. data/lib/studium/yaml/ad_hoc_trainer/exam_topics.md +15 -0
  778. data/lib/studium/yaml/allowed_themes_for_exams/allowed_themes_for_exams.yml +347 -0
  779. data/lib/studium/yaml/array_allowed_entries_for_the_file_lecture_information.yml +71 -0
  780. data/lib/studium/yaml/available_exam_topics/available_exam_topics.yml +234 -0
  781. data/lib/studium/yaml/backlog_of_exams.yml +37 -0
  782. data/lib/studium/yaml/colours/custom_colours.yml +28 -0
  783. data/lib/studium/yaml/colours/use_colours.yml +1 -0
  784. data/lib/studium/yaml/current_exams.yml +30 -0
  785. data/lib/studium/yaml/curricula/README.md +39 -0
  786. data/lib/studium/yaml/curricula/bachelor/bachelor_agrarwissenschaften_033255.yml +147 -0
  787. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_basisblock_033630.yml +71 -0
  788. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_botanik_033630.yml +100 -0
  789. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_ecology_033630.yml +74 -0
  790. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_mikrobiologie_und_genetik_033630.yml +122 -0
  791. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_molekulare_biologie_033630.yml +106 -0
  792. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_zoologie_033630.yml +87 -0
  793. data/lib/studium/yaml/curricula/bachelor/bachelor_chemie_033662.yml +165 -0
  794. data/lib/studium/yaml/curricula/bachelor/bachelor_dummy_curriculum.yml +182 -0
  795. data/lib/studium/yaml/curricula/bachelor/bachelor_elektrotechnik_und_informationstechnik_033235.yml +13 -0
  796. data/lib/studium/yaml/curricula/bachelor/bachelor_forstwirtschaft_033225.yml +115 -0
  797. data/lib/studium/yaml/curricula/bachelor/bachelor_informatik_033521.yml +136 -0
  798. data/lib/studium/yaml/curricula/bachelor/bachelor_ktww_033231.yml +84 -0
  799. data/lib/studium/yaml/curricula/bachelor/bachelor_lmbt_033217.yml +121 -0
  800. data/lib/studium/yaml/curricula/bachelor/bachelor_medizinische_informatik_033533.yml +283 -0
  801. data/lib/studium/yaml/curricula/bachelor/bachelor_molekularbiologie_033665.yml +95 -0
  802. data/lib/studium/yaml/curricula/bachelor/bachelor_nutrition_science_033638.yml +119 -0
  803. data/lib/studium/yaml/curricula/bachelor/bachelor_pharmazie_033305.yml +170 -0
  804. data/lib/studium/yaml/curricula/bachelor/bachelor_technische_chemie_033290.yml +131 -0
  805. data/lib/studium/yaml/curricula/bachelor/bachelor_technische_informatik_033535.yml +23 -0
  806. data/lib/studium/yaml/curricula/bachelor/bachelor_ubrm_033227.yml +143 -0
  807. data/lib/studium/yaml/curricula/bachelor/bachelor_verfahrenstechnik_033273.yml +167 -0
  808. data/lib/studium/yaml/curricula/bachelor/bachelor_wirtschaftsinformatik_033526.yml +29 -0
  809. data/lib/studium/yaml/curricula/experimental/bachelor_informatik_in_den_lebenswissenschaften.yml +137 -0
  810. data/lib/studium/yaml/curricula/individual/bachelor_formale_logik.yml +88 -0
  811. data/lib/studium/yaml/curricula/individual/bachelor_informatik_und_molekulare_biologie.yml +1161 -0
  812. data/lib/studium/yaml/curricula/individual/bachelor_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +1157 -0
  813. data/lib/studium/yaml/curricula/individual/master_bioinformatics_and_nanobiotechnology_in_molecular_medicine.yml +306 -0
  814. data/lib/studium/yaml/curricula/individual/master_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +741 -0
  815. data/lib/studium/yaml/curricula/master/master_bioinformatik_066875.yml +75 -0
  816. data/lib/studium/yaml/curricula/master/master_biologie_molekulare_mikrobiologie_mikrobielle_oekologie_und_immunbiologie_066830.yml +78 -0
  817. data/lib/studium/yaml/curricula/master/master_biologische_chemie_066863.yml +66 -0
  818. data/lib/studium/yaml/curricula/master/master_dummy_curriculum.yml +197 -0
  819. data/lib/studium/yaml/curricula/master/master_genetik_und_entwicklungsbiologie_066877.yml +89 -0
  820. data/lib/studium/yaml/curricula/master/master_lmbt_066418.yml +112 -0
  821. data/lib/studium/yaml/curricula/master/master_molecular_biology_066865.yml +72 -0
  822. data/lib/studium/yaml/curricula/master/master_molekulare_biologie_066834.yml +151 -0
  823. data/lib/studium/yaml/curricula/master/master_pharmazie_066605.yml +176 -0
  824. data/lib/studium/yaml/curricula/master/master_technische_chemie_066490.yml +123 -0
  825. data/lib/studium/yaml/curricula/outdated/master_bioinformatics_and_molecular_biotechnology_including_aspects_from_molecular_medicine.yml +438 -0
  826. data/lib/studium/yaml/curricula/outdated/master_food_science_and_plant_biotechnology.yml +31 -0
  827. data/lib/studium/yaml/curricula.yml +562 -0
  828. data/lib/studium/yaml/daily_questions_solved.yml +1654 -0
  829. data/lib/studium/yaml/default_delay.yml +4 -0
  830. data/lib/studium/yaml/default_encoding.yml +1 -0
  831. data/lib/studium/yaml/directory_to_the_exam_topics.yml +0 -0
  832. data/lib/studium/yaml/editor.yml +1 -0
  833. data/lib/studium/yaml/exams/next_exams_to_do.md +9 -0
  834. data/lib/studium/yaml/file_for_exam_questions.yml +1 -0
  835. data/lib/studium/yaml/german/README.md +2 -0
  836. data/lib/studium/yaml/german/german_to_english_month_names.yml +16 -0
  837. data/lib/studium/yaml/grouped_themes.yml +192 -0
  838. data/lib/studium/yaml/holidays.yml +201 -0
  839. data/lib/studium/yaml/important_exams.yml +266 -0
  840. data/lib/studium/yaml/inscription_dates_of_universities.yml +60 -0
  841. data/lib/studium/yaml/lecture_aliases.yml +138 -0
  842. data/lib/studium/yaml/lecture_information/lecture_information.yml +61740 -0
  843. data/lib/studium/yaml/log_dir.yml +1 -0
  844. data/lib/studium/yaml/main_topic.yml +11 -0
  845. data/lib/studium/yaml/max_stats.yml +249 -0
  846. data/lib/studium/yaml/meta_themes/README.md +13 -0
  847. data/lib/studium/yaml/meta_themes/biochemistry.md +6 -0
  848. data/lib/studium/yaml/meta_themes/bioinformatics.md +6 -0
  849. data/lib/studium/yaml/meta_themes/biotechnology.md +9 -0
  850. data/lib/studium/yaml/meta_themes/cellbiology.md +9 -0
  851. data/lib/studium/yaml/meta_themes/chemistry.md +9 -0
  852. data/lib/studium/yaml/meta_themes/genetics.md +10 -0
  853. data/lib/studium/yaml/meta_themes/immunology.md +5 -0
  854. data/lib/studium/yaml/meta_themes/metabolic_pathways.md +12 -0
  855. data/lib/studium/yaml/meta_themes/molecular_biology.md +9 -0
  856. data/lib/studium/yaml/meta_themes/protein_engineering.md +10 -0
  857. data/lib/studium/yaml/meta_themes/statistics.md +2 -0
  858. data/lib/studium/yaml/mitbelegung/README.md +4 -0
  859. data/lib/studium/yaml/mitbelegung/mitbelegung.yml +21 -0
  860. data/lib/studium/yaml/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.yml +363 -0
  861. data/lib/studium/yaml/n_total_questions.yml +1 -0
  862. data/lib/studium/yaml/rename_konsole_tab.yml +1 -0
  863. data/lib/studium/yaml/semester_planner/README.md +4 -0
  864. data/lib/studium/yaml/semester_planner/semester_planner.yml +189 -0
  865. data/lib/studium/yaml/show_topic.yml +1 -0
  866. data/lib/studium/yaml/statistics/lecture_information.yml +1 -0
  867. data/lib/studium/yaml/statistics/max_stats.yml +239 -0
  868. data/lib/studium/yaml/statistics/statistics.yml +75 -0
  869. data/lib/studium/yaml/week/01_monday.yml +25 -0
  870. data/lib/studium/yaml/week/02_tuesday.yml +68 -0
  871. data/lib/studium/yaml/week/03_wednesday.yml +63 -0
  872. data/lib/studium/yaml/week/04_thursday.yml +20 -0
  873. data/lib/studium/yaml/week/05_friday.yml +31 -0
  874. data/lib/studium/yaml/week/06_saturday.yml +16 -0
  875. data/lib/studium/yaml/week/07_sunday.yml +0 -0
  876. data/lib/studium/yaml/week/README.md +10 -0
  877. data/lib/studium.rb +5 -0
  878. data/studium.gemspec +82 -0
  879. data/test/testing_studium.rb +244 -0
  880. data/test/testing_studium_base_class.rb +31 -0
  881. data/test/testing_the_file_lecture_information.rb +18 -0
  882. data/test/testing_time_component.rb +29 -0
  883. metadata +1094 -0
@@ -0,0 +1,977 @@
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
+ - Das klassische Magnet-Bakterium schlechthin ist ... ? <one>Magnetospirillum magnetotacticum</one>. URL: https://de.wikipedia.org/wiki/Magnetospirillum_magnetotacticum
14
+ - <one>Welche allgemeine Aufgabe</one> übernimmt NAD/NADH? Die <one>Nicotinamidadenindinucleotide</one> fungieren als <two>Elektronenüberträger bei Redoxreaktionen</two>.
15
+ - <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>
16
+ - Wie werden Mikroorganismen gennant, die bei tiefen Temperaturen gedeihen? <one>Psychrophil</one>.
17
+ - Carbon catabolite repression (CCR) in Escherichia coli occurs primarily at which level? It occurs primarily at the transcriptional level.
18
+ - 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>
19
+ - 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>
20
+ - 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>
21
+ - 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.
22
+ - The <one>anammoxosome</one> is surrounded by a membrane containing ... <two>which particular lipid</two>? The <one>ladderane</one>.
23
+ - Instead of sterols, many bacterial membranes contain ... ? <one>hopanoids</one>.
24
+ - <one>ParM</one> in bacteria mediates p ... s ... A: <one>plasmid segregation</one>.
25
+ - <one>MamK</one> ensures the organization of m... ? <one>Magnetosomes</one>.
26
+ - 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.
27
+ - <one>MreB</one> can be found inside of a bacterial cell in ... what form? MreB forms a helical filament inside the bacterial cell.
28
+ - 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>.
29
+ - Cell division in prokaryotes is usually performed by ... ? <one>binary fission</one>.
30
+ - Bacteria may require energy in order to perform mechanical work. What is meant with this? This refers primarily to <one>motility</one>.
31
+ - <one>Why</one> do bacteria employ <two>Phenazines</two>? These aromatic compounds are helpful <one>for bacteria forming biofilms</one>.
32
+ - In der Biologie: <one>wo</one> finden wir <two>fluid-filled channels</two> auf makrozellulärer Ebene (Eukarya exkludiert)? In einem <one>Biofilm</one>.
33
+ - <one>Why</one> does <two>attenuation</two> occur in the laboratory? These attenuated bacteria may grow faster than the more virulent strains.
34
+ - 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>.
35
+ - 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.
36
+ - <one>How many microbial cells exist on earth</one>, roughly? About <one>2 * 10³⁰ microbial cells</one> exist on Planet Earth.
37
+ - The <one>Aquaporin Z protein</one> in <i>E. coli</i> is a channel that permits osmotically driven movement of water in ... how many directions? In two, aka in both directions.
38
+ - About <one>n% of a microbial cell's wet weight</one> is taken up by water? About <one>75%</one>.
39
+ - <one>S. simulans</one> tötet <two>S. aureus</two> mit Hilfe welchen Toxins? <one>Lysostaphin</one>.
40
+ - <one>ppGpp</one> <two>is synthesized from ...</two>? <one>GTP</one>. []
41
+ - Ein Vertreter der <one>säurefesten Bakterien</one>? Die <one>Mykobakterien</one>. URL: https://de.wikipedia.org/wiki/Mykobakterien []
42
+ - <one>Welche Bakteriengruppe</one> besitzt einen <two>Typ-IV Pilus</two>? Die gram-negativen Bakterien.
43
+ - 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.
44
+ - 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>)
45
+ - 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>
46
+ - <one>Welche Aufgabe</one> hat der <two>datA Locus</two>? Der <one>datA Locus</one> <two>fischt überflüssige DnaA Proteine weg</two>.
47
+ - Name <one>two key regulatory proteins</one> of the <two>SOS response</two>. A: (1) <one>LexA</one> (2) <one>RecA</one> []
48
+ - In bacteria: sites of <one>Dam methylation</one> are typically ...? Sequences of <one>GATC</one>, aka <two>GATC sites</two>.
49
+ - <one>Why</one> do bacteria use <two>gas vesicles</two>? So that these bacteria can <one>float</one>.
50
+ - 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>).
51
+ - <one>Wann</one> kommt es in <two>E. coli</two> zur sogenannten <three>stringenten Kontrolle</three>? Zum Beispiel bei einem <one>Aminosäuremangel</one>. []
52
+ - <one>Temperaturrekord</one> (<two>Hitze</two>) für Bakterien? <one>121 °C</one>. []
53
+ - <one>Salmonella typhimurium</one> produziert welche <two>phenolische Siderophore</two>? <one>Enterobactine</one>.
54
+ - Name <one>the three basic shapes of bacteria</one>. A: (1) <one>cocci</one> (2) <one>rod-shaped bacillus</one> (3) <one>spiral shape</one> []
55
+ - <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>.
56
+ - Ohne Mikroorganismen würde höheres Leben nicht existieren. Unterstreiche diese Aussage mit einem konkreten Beispiel. A: Sauerstoff in der Atmosphäre entstand durch die Aktivität des mikrobiellen Stoffwechsels.
57
+ - Nenne ein oder zwei <one>sehr hitzebeständige Organismen</one>. A: (1) <one>Pyrolobus fumarii</one> (2) <one>Strain 121</one>
58
+ - What are <one>Bacteriocins</one>? Bacterially produced, <one>small heat-stable peptides</one> that are active against other bacteria.
59
+ - Der <one>oriC</one> besitzt wieviele <two>GATC Sequenzen</two>? <one>11</one>. []
60
+ - Unterschiede folgende Begriffe: <one>Monotrichous</one>, <one>Lophotrichous</one>, <one>Amphitrichous</one>, Peritrichous. A: Eingeisselig, <one>Vielgeisselig</one>, <one>Bigeisselig</one>, <one>Vielgeisselig</one>.
61
+ - <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
62
+ - <one>Welche Organismen</one> haben <two>Peptidoglycan</two>? Nur <one>Bakterien</one>.
63
+ - <i>Chloroflexus aggregans</i> was <one>originally isolated from ... </one>? <one>hot springs</one> <two>in Japan</two>.
64
+ - <one>Typische Größe von Bakterien</one> (von, bis)? 1 bis 5 Mikrometer.
65
+ - <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 []
66
+ - Anderes Wort für die <one>eiskristallbildende Bakterien</one>? <one>Pseudomonas syringae</one>. URL: https://en.wikipedia.org/wiki/Pseudomonas_syringae []
67
+ - <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>.
68
+ - Nenne ein <one>Schwefelbakterium</one>. A: <one>Thiobacillus ferrooxidans</one>.
69
+ - Eine einzelne <one>E. coli Zelle</one> besitzt <two>wieviele DnaA Moleküle</two>? Etwa <one>~1000</one>. []
70
+ - Andere Bezeichnung für die <one>Alkanhefe</one>? A: <one>Candida</one>. []
71
+ - Die Familie von E. coli ist ... ? <one>Enterobacteriaceae</one>.
72
+ - <one>Quorum sensing</one> was first discovered in ...? <one>Vibrio fischeri</one>. URL: https://de.wikipedia.org/wiki/Aliivibrio_fischeri []
73
+ - <one>Warum</one> eigentlich können Mikroorganismen bei zu niedrigen Temperaturen nicht mehr wachsen? <one>Die Membran erstarrt</one> → <two>Transportprozesse verlangsamen</two>.
74
+ - 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>. []
75
+ - 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).
76
+ - Is <one>Treponema pallidum</one> <two>a bacterium</two>? <one>Yes</one>, it is.
77
+ - Bei <i>E. coli</i>: welchen Unterschied gibt es zwischen dem Wachstum in Minimalmedium und dem Wachstum in einem komplexem Medium? Im Minimalmedium teilt sich Ecoli alle 24 Stunden einmal. Im komplexen Medium teilt sich Ecoli alle 20 Minuten.
78
+ - 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>.
79
+ - <one>NlpD in Bakterien</one> ist <two>ein Divisom-assoziierter Faktor</two>. <two>Was kann er aktivieren</two>? <one>Amidasen</one>.
80
+ - Wieviele <one>Ascomyceten</one>-Arten sind bekannt? ca. <one>60.000 Arten</one>. []
81
+ - <one>How many bacteria</one> exist on Earth? <one>10³⁰</one>.
82
+ - 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.
83
+ - 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
84
+ - How did <one>Horowitz</one> define <two>life</two>? Life possesses the properties of (1) replication (2) <one>catalysis</one> (3) <one>mutability</one>
85
+ - 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 may enhance that bacterium's access to resources (2) it may allow that bacterium to avoid harmful substances that could otherwise damage or kill it
86
+ - <one>When</one> - that is <two>in which phase</two> - are bacteria in general competent? During the late phase of their growth cycle.
87
+ - <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
88
+ - <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>.
89
+ - Warum sind <one>Salterns</one> (=<two>Hypersaline Water</two>) rot? A: Aufgrund des <one>Bacteriorhodopsin</one>.
90
+ - 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.
91
+ - Are <one>MCPs</one> <two>important in phototaxis</two>? <one>No</one> - they are <two>replaced by a light sensor protein</two>.
92
+ - Nenne ein Beispiel für ein <one>green non-sulfur bacteria</one>. A: <one>Chloroflexi</one>.
93
+ - The <one>hyperthermophiles</one> <two>contain which unique enzyme</two>? <one>Reverse DNA gyrase</one>.
94
+ - <one>Why</one> do eukaryotic microbes reach stationary phase sooner than Bacteria? They are bigger - that is why.
95
+ - <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>.
96
+ - 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).
97
+ - In Microbiology: what is <one>Volutin</one>? <royalblue>Volutin</royalblue> granules are intracytoplasmic granules complexed, inorganic polyphosphate. It is <two>a storage form</two>.
98
+ - Name <one>two different</one> <two>cocci-form</two> of bacteria. A: (1) <one>diplococci</one> (2) <one>streptococci</one> []
99
+ - 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/ []
100
+ - How is <one>growth</one> defined in microbiology? An increase in the number of cells.
101
+ - Name <one>a stain</one> that is used for <two>M. tuberculosis</two>. A: The <one>Ziehl-Neelsen stain</one>.
102
+ - 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.
103
+ - <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.
104
+ - <one>Bacillus subtilis</one> has a protein called <two>CFS</two>. This abbreviation stands for ... ? <one>Competence and sporulation factor</one>.
105
+ - 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>.
106
+ - Warum braucht der Wasserfarn <one>Azolla</one> das Cyanobakterium <two>Anabaena azollae</two>? <one>Anabaena azollae</one> <two>versorgt den Farn mit Stickstoff</two>. []
107
+ - The <one>size of plasmids</one> often varies. <two>pSymB</two>, found in <i>Sinorhizobium meliloti</i>, has a total size of ... ? <one>1683 kbp</one>.
108
+ - 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>. []
109
+ - Der <one>CRISPR locus</one> hat den <two>cascade complex</two>, der welche Untereinheiten hat? CasA, CasB, CasC, <one>CasD</one>, <one>CasE</one>.
110
+ - In the <one>DnaA protein</one>: which domain is the <two>DNA-binding domain</two>? <one>Domain IV</one>. []
111
+ - <one>Conjugation</one> depends on ...? The <one>F factor</one>. URL: https://en.wikipedia.org/wiki/Bacterial_conjugation []
112
+ - 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.
113
+ - 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.
114
+ - <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>)
115
+ - <one>Which enzyme</one> is <two>required for making new bacterial cell wall</two>? <one>Autolysin</one>. URL: https://en.wikipedia.org/wiki/Autolysin []
116
+ - <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>.
117
+ - <one>Chlorella</one> und <one>Scenedesmus</one> haben <two>was für eine Wand</two>? A: Eine <one>Cellulosewand</one>, mit Sporopollenin-Einlagerung.
118
+ - <one>ABC Transporters</one> (<two>in bacteria</two>) are powered by ... ? <one>ATP</one>.
119
+ - <one>Spirilla</one> have <two>what shape</two>? <one>Spiral-shaped</one>. []
120
+ - Warum benötigt das <one>DnaA Protein</one> eine Alpha-Helix und Arginin an Position 399? Diese sind für die spezifischen Erkennung der DnaA box verantwortlich.
121
+ - Name a <one>Protozoa</one> that has <two>multiple nuclei</two> within each single cell. A: <one>Paramecium</one>.
122
+ - <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
123
+ - Vibrio fischeri was originally called ... ? <one>Photobacterium fischeri</one>.
124
+ - <one>Wo</one> können <two>Phthiocerole</two> gefunden werden? In der <one>äußeren Hülle bei Mycobakterien</one>.
125
+ - How does <one>Epulopiscium</one> reproduce? <one>Epulopiscium</one> reproduces exclusively through <two>an unusual form of sporulation</two>.
126
+ - 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
127
+ - <one>Welche Domäne</one> <two>im DnaA Protein</two> <three>bindet ATP</three>? <one>Domain III</one>.
128
+ - Serratia marcescens produces a red pigment. Is this a pigment? Not really - it is actually an antibiotic.
129
+ - 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.
130
+ - 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).
131
+ - Wie unterscheiden sich <one>Staphylococci-Biofilms</one> von denen anderer Mikroroganismen? Meistens sind <one>Biofilms</one> <two>multispecies microbial communities</two>, in diesem Fall aber eher <three>monospecies</three>. []
132
+ - What does <one>axenic</one> mean? <one>Axenic</one> describes the state of a culture in which only a single species is present.
133
+ - Name a bacterium that produces a red pigmented antibiotic called <one>prodigiosin</one>. A: <one>Serratia marcescens</one>.
134
+ - Give an example used in transmission electron micrography to <one>reveal the capsule of a bacterium</one>. A: Use <one>ruthenium red</one>.
135
+ - <one>Mutations</one> in the <two>ftsZ gene</two> block ... ? <one>Septum formation</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4905991/ []
136
+ - Welche Farbe hat <one>Retinal</one> und wo findet es eine Verwendung bei den Bakterien? <one>Retinal</one> ist purple (violett) und ein Chromophore in Bacteriorhodopsin.
137
+ - How do we call organisms with an optimal pH at 5.5 - 7.9? <one>Neutrophils</one>.
138
+ - Anderer Begriff für die <one>Syntrophie</one>? <one>Interspezies H₂-Transfer</one>. []
139
+ - <one>Arginine biosynthesis</one> begins with ...? Condensation of Glutamate mit Acetyl-CoA.
140
+ - 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.
141
+ - Andere Bezeichnung für <one>kugelförmige Bakterien</one>? <one>Kokken</one>.
142
+ - 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). []
143
+ - 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
144
+ - <one>Wann</one> wenden wir die <two>Gassterilisation</two> (chemische Sterilisation) an? Bei <one>hitzelabilen Gegenständen</one>.
145
+ - 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>.
146
+ - 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 []
147
+ - 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>
148
+ - Nenne <one>ein Bakterium mit linearer DNA im Genom</one>. A: <one>Borrelia burgdorferi</one>. URL: https://de.wikipedia.org/wiki/Borrelia_burgdorferi []
149
+ - <one>Wo</one> vor allem finden wir <two>Fimbrien</two>? Fimbrien findet man vor allem bei <one>gram-negativen Bakterien</one>.
150
+ - <one>Die optimale Wachstumstemperatur für E. coli</one> beträgt ... ? <one>37°C</one>. []
151
+ - <one>Bakterielle Gasvesikel</one> bestehen aus welchen 2 Proteinen? GvpA und <one>GvpC</one>.
152
+ - 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.
153
+ - Wie gleicht <one>Dundiella</one> den <two>externen, osmotischen Wert</two> aus? A: Durch <one>interne Anreicherung an Glycin</one>.
154
+ - 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
155
+ - 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>
156
+ - Do <one>prokaryotes</one> have an immune system? <one>Yes</one>, <two>CRISPRs</two>. []
157
+ - Was nimmt der <one>SRP Komplex</one> als Energie? <one>GTP</one>, da er eine GTPase-Aktivität hat. []
158
+ - <one>Mikroben</one> halten <two>wie viel Prozent des biologischen Stickstoff</two> auf der Erde? <one>90%</one>. []
159
+ - The <one>cytoplasmic membranes of some bacteria</one> are strengthened by sterol-like molecules called ... ? <one>hopanoids</one>. []
160
+ - Kommen <one>Magnetosomen</one> <two>in Eukaryoten</two> vor? Ja. In <one>Algen</one>.
161
+ - In der Mikrobiologie: <one>welches Medium</one> steht hinter <two>CMD</two>? <one>Cornmeal dextrose agar</one>.
162
+ - 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.
163
+ - In bacteria: <one>proteins are exported by ... </one>? <one>Translocases</one>. []
164
+ - Was produziert der mikrobielle <one>ANAMMOX Prozess</one>? <one>N₂</one>. []
165
+ - Nenne ein Bakterium mit <one>drei Chromosomen</one>. A: <i>Sinorhizobium meliloti</i>. URL: https://en.wikipedia.org/wiki/Sinorhizobium_meliloti
166
+ - <one>Staining</one> <two>is widely used in light microscopy</two>. Name a disadvantage of staining, though. A: <one>Staining often kills cells</one>; it can also distort their features.
167
+ - <one>Antibacterial agents</one> can be classified into which 3 classes? (1) bacteriostatic (2) <one>bacteriocidal</one> (3) <one>bacteriolytic</one>
168
+ - 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
169
+ - 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. []
170
+ - 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.
171
+ - <one>Sigmafactor RpoS</one> has <two>which cellular task</two>? <one>Adaptation to environmental stress</one>.
172
+ - Nenne <one>zwei Mikroorganismen</one> in denen <two>echte Denitrifikation</two> erfolgt. A: (1) <one>Pseudomonas stutzeri</one> (2) <one>Paracoccus denitrificans</one>
173
+ - 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>.
174
+ - 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.
175
+ - 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 <tomato>Nocardien</tomato>, von den sogenannten nicht "säurefesten" Bakterien, unterscheiden.
176
+ - <one>Which group of bacteria</one> are <two>usually unaffected by Penicillin</two>? <one>Gram-negative Bacteria</one>. []
177
+ - 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.
178
+ - <one>Durchmesser</one> eines <two>bakteriellen Gasvesikels</two>? <one>100 nm</one>.
179
+ - Give an example for <one>a bacterium that divides asymmetrically</one>. A: <one>Caulobacter</one>.
180
+ - <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> []
181
+ - <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.
182
+ - A <one>single cell of Escherichia coli</one> <two>weighs</two> about n g? About <one>10⁻¹² g</one>. []
183
+ - Anderer Begriff für die <one>Nitratatmung</one>? <one>Denitrifikation</one>. []
184
+ - 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.
185
+ - 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).
186
+ - 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
187
+ - What can be found in <one>Carboxysomes</one>? A lot of the enzyme <one>RuBisCO</one> (<two>Ribulose-1,5-biphosphate carboxylase/oxygenase</two>).
188
+ - 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
189
+ - Definiere den Begriff <one>Ribozyme</one>. A: <one>Ribozyme</one> sind RNAs, die als Enzyme (RNA-Enzyme) katalytisch wirksam sind.
190
+ - Nenne den <one>mobile water-soluble electron carrier</one> in <two>Cyanobacteria</two> und Pflanzen. A: Cytochrome c6 in Cyanobacteria, Plastocyanin in Pflanzen.
191
+ - <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 []
192
+ - The energy to drive the ­phosphotransferase system comes from ... ? <one>Phosphoenolpyruvate</one> (aka <two>PEP</two>). URL: https://en.wikipedia.org/wiki/Phosphoenolpyruvic_acid []
193
+ - Can <one>Rickettsia prowazekii</one> <two>grow in chicken embryo fibroblasts</two>? <one>Yes</one>. []
194
+ - Name <one>a bacterium with two chromosomes</one>. A: <one>Vibrio cholerae</one>. URL: https://en.wikipedia.org/wiki/Vibrio_cholerae []
195
+ - <one>Helix-Turn-Helix</one> has <two>which two distinct helices</two>? (1) <one>recognition helix</one> (2) <one>stabilizing helix</one>
196
+ - <one>Wie</one> wird die <two>Dipicolinsäure</two> <three>quervernetzt</three>? Über <one>Ca²⁺ Ionen</one>.
197
+ - <one>Wie lange</one> dauert <two>Flash Pasteurization</two>? <one>15 Sekunden</one>. []
198
+ - 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>.
199
+ - Nenne <one>zwei keulenförmige Bakterien</one>. A: (1) <one>Bifidobakterien</one> (2) <one>Corynebakterien</one>
200
+ - Was sind <one>kompatible Solute</one>? Osmolyte, die auch bei hohen cytoplasmatischen Konzentrationen nicht mit dem Zellstoffwechsel interferieren.
201
+ - <one>FtsK</one> hält einen Rekord. <two>Welchen</two>? <one>FtsK</one> ist die schnellste bekannte <two>DNA-Pumpe</two>.
202
+ - The <one>mycoplasma genitalium</one> genome contains n genes? <one>525 genes</one>. URL: https://en.wikipedia.org/wiki/Mycoplasma_genitalium#Genome
203
+ - Die <one>light-harvesting systems</one> der <i>Cyanobacteria</i> haben <two>statt dem Chlorophyll was</two>? <one>Phycobilins</one>.
204
+ - 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
205
+ - Does <i>E. coli</i> contain a glycerol transporter? Yes.
206
+ - 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.
207
+ - Was verändert sich in einer Batch-Kultur nicht? Das <one>Medium</one>.
208
+ - <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.
209
+ - <one>Qualitative Zusammensetzung der Zellen</one>: Unterschied zwischen Prokarya und Eukarya? (1) Prokarya: mehr RNA. (2) <one>Eukarya</one>: <two>höherer Proteingehalt</two>.
210
+ - <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.
211
+ - <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>
212
+ - 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>.
213
+ - Im <one>sec-abhängigen Weg</one> bei Bakterien: <two>nenne die drei Schritte</two>. A: (1) <one>Targeting</one> (2) Translokation (3) Freisetzung
214
+ - One (simple) factor <one>limiting microbial growth</one> is ... ? The <one>finite supply of nutrients</one>.
215
+ - <one>Welcher Genus</one> zeigt einen <two>Hydroxypropionate pathway of CO₂ incorporation</two>? <one>Chloroflexi</one>.
216
+ - 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>.
217
+ - <one>Thiomargarita magnifica</one> kann wie lange werden? Bis zu <one>zwei Zentimeter</one>.
218
+ - A medium that lacks an essential nutrient, such as a medium lacking leucine, is called ... ? A <one>selective medium</one>.
219
+ - A <one>medium</one> that contains only the nutrients required by prototrophic bacteris is termed ... ? a <one>minimal medium</one>.
220
+ - <one>Bacteria</one>, from a taxonomic point of view, should rather be called ... ? <one>Eubacteria</one>.
221
+ - Welches ist <one>die größte Untereinheit von Pol III</one>? Die <one>Alpha Untereinheit</one> mit etwa 140.000 Dalton.
222
+ - Andere Bezeichnung für <one>fraktionierende Sterilisationsmethode</one>? <one>Tyndallisieren</one>.
223
+ - <one>Acetat</one> hat wieviele C? <one>2</one>. []
224
+ - In Bacteria: give another term for <one>a dormant state</one>. A: <one>Spores</one>.
225
+ - Name <one>one very large prokaryote</one>. A: <one>Epulopiscium fishelsoni</one>. URL: https://en.wikipedia.org/wiki/Epulonipiscium#Naming_and_discovery []
226
+ - Nenne ein möglichst einfaches Kriterium, an dem man messen kann ob es einer Mikrobe gut geht. A: <one>Fortpflanzung</one> / <one>Fortpflanzungserfolg</one>.
227
+ - What can the <one>Fts protein</one> form? The <one>divisome</one>. URL: https://en.wikipedia.org/wiki/Divisome []
228
+ - <one>Welche Atome</one> finden wir in einer <two>Hydroxamate Group</two>? <one>N-OH-C=O</one>.
229
+ - 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/ []
230
+ - <one>Schlüsselenzym</one> bei der Sulfatreduktion? <one>ATP-Sulfurylase</one>.
231
+ - <one>Hfq</one> in Pseudomonas represses what ... ? <one>Catabolic genes</one>, at the post-transcriptional level.
232
+ - <one>Maximum temperature of growth</one> for <two>Pyrobolus</two>? <one>113°C</one>.
233
+ - Nenne <one>zwei allgemein unterschiedliche Möglichkeiten</one> zwischen verschiedenen Mikroorganismen biochemisch im Labor zu unterscheiden. A: (1) <one>Katalase-Reaktion</one> (2) <one>Oxidase-Reaktion</one>
234
+ - 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>.
235
+ - 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.
236
+ - Der kleinster Organismus, der <one>O₂-autotroph</one> ist, ist ... ? <one>Prochlorococcus</one>. URL: https://de.wikipedia.org/wiki/Prochlorococcus_marinus []
237
+ - Give an example for <one>positive control in Bacteria</one>. A: <one>Maltose Catabolism</one> in E. coli.
238
+ - <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 []
239
+ - <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. []
240
+ - Give an example for an <one>AB exotoxin</one>. A: <one>Diphtheria toxin</one>. URL: https://en.wikipedia.org/wiki/Diphtheria_toxin []
241
+ - 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 []
242
+ - <one>Glycogen</one> is <two>a storehouse for ... </two>? (1) <one>carbon</one> (2) <one>energy</one>
243
+ - 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>. []
244
+ - 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 []
245
+ - 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>. []
246
+ - What is meant with a <one>peritrichous cell</one>? This is <one>when the flagella are randomly distributed around the bacterial cell</one>.
247
+ - <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 []
248
+ - <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>.
249
+ - Das <one>Hydrogenosom</one> findet man nur bei eukaryoten Mikroorganismen, die wo leben? In <one>sauerstoffreichen Lebensräumen</one>.
250
+ - <one>Wo</one> findet man den <two>Fenna-Matthews-Olson Complex</two>? Bei <one>Photolithoautotrophs</one>.
251
+ - Nenne <one>drei phototrophe Mikroorganismengruppen</one>. A: (1) <one>Cyanobacteria</one> (2) <one>Purpurbacter</one> (3) <one>Helicobacter</one>
252
+ - What are the <one>haloalkaliphiles</one>? These are <one>alkaliphiles</one> that require high salt content to survive.
253
+ - <one>Which aminoacid</one> is used to connect to <two>m-diaminopimelic acid</two>? <one>D-alanine</one>. []
254
+ - <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>.
255
+ - Warum sind <one>dormante Mikroorganismen</one> im Boden so wichtig? Dormante Mikroorganismen reduzieren die Wahrscheinlichkeit des Aussterbens eines Mikroorganismus.
256
+ - <one>Chemolithotrophs</one> <two>obtain their carbon how</two>? From <one>CO₂</one>. []
257
+ - Bei <one>Bacillus subtilis</one> während der <two>Aerotaxis</two>: <three>wie funktioniert das Protein HemAT</three>? Dieses Protein sendet über eine Signalkette Kommandos an den Motor der Schwimmgeißel des Bakteriums. Zunächst bindet Sauerstoff an die Häm-Gruppe von HemAT (die sogenannte "sensorische Domäne"). Dadurch ändert die Struktur, und dies löst weitere strukturelle Veränderungen in HemAT aus, die letztendlich die Signal-Domäne des Proteins erreichen. Die Signal-Domäne überträgt dann die Information über die steigende Sauerstoffkonzentration an weitere Proteine in der Zelle. Diese Proteine leiten die Botschaft an den Motor der Schwimmgeißel weiter.
258
+ - Die zwei in der Natur am weitesten verbreiteten <one>anorganischen Stickstoffverbindungen</one> sind? (1) Nitrat (2) <one>Ammoniak</one> (NH4+)
259
+ - 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>
260
+ - 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
261
+ - 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.
262
+ - Nenne drei Hefen die nicht nur im neutralen, sondern auch im sauren Milieu leben können. A: (1) S. cerevisae (2) <one>Candida Krusei</one> (3) <one>Pichia saitoi</one>
263
+ - <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>.
264
+ - 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.
265
+ - Nenne einen Unterschied zwischen <one>Cyanobacteriota</one> und <one>Bakterien</one>. A: Erstere besitzen <one>Chlorophyll a</one>.
266
+ - Give an example for <one>differential staining</one>. A: <one>Gram staining</one>: <two>it uses two different dyes</two>.
267
+ - 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.
268
+ - Warum verwenden manche Prokaryoten <one>Gasvesikel</one>? Um der Schwerkraft entgegenzuwirken. URL: https://de.wikipedia.org/wiki/Vesikel_(Biologie) []
269
+ - Wieso wirkt <one>Isopropanol</one> besser als <two>Ethanol</two> gegen Bakterien? Isopropanol kann die bakterielle Membran leichter überwinden.
270
+ - 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.
271
+ - What is the <one>Thermosome</one>? The <one>Thermosome</one> is <two>a chaperonin protein complex that functions in archaea</two>.
272
+ - 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
273
+ - Nenne eine Bedingung damit man den <one>Ames-Test</one> durchführen kann. A: Die ursprüngliche Mutation muss eine <one>Punktmutation</one> sein.
274
+ - <one>Which bacteria</one> are notorious for forming <two>'blooms'</two> in lakes? <one>Cyanobacteria</one>. []
275
+ - Give an example for a <one>reproductive parasite</one>. A: The bacterium <one>Wolbachia</one>. URL: https://en.wikipedia.org/wiki/Wolbachia []
276
+ - <one>Beweglichkeit</one> bei den Protozoa ist oft gegeben über ... ? <one>Pseudopodien</one>. URL: https://de.wikipedia.org/wiki/Scheinf%C3%BC%C3%9Fchen []
277
+ - <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>.
278
+ - In <one>Helicobacter</one> we can see <two>dark granules</two>. What are these for? A: These store <one>polyphosphate</one>.
279
+ - Nenne ein Protein in dem wir <one>Pantothensäure</one> finden mögen. A: <one>Acylcarrierprotein</one>. []
280
+ - 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
281
+ - <one>Wie lange dauert</one> <two>eine Replikationsrunde in E. coli</two>? <one>40 Minuten</one>. []
282
+ - Andere Bezeichnung für die <one>log-phase</one>? <one>Exponentielles Wachstum</one>.
283
+ - Gasvesikel: Das <one>GvpA-Protein</one> macht <two>wieviel Prozent im Gasvesikel</two> aus? <one>97%</one>. []
284
+ - Is <one>ATP</one> available in the periplasm of gram-negative bacteria? No. []
285
+ - Durch <one>welche zwei verschiedenen Prozesse</one> wird ATP generiert? A: (1) <one>Substratkettenphosphorylierung</one> und (2) Electron-Transport generation.
286
+ - Der <one>KOH-Test</one> lysiert welche Zellen? Der <one>KOH-Test</one> <two>lysiert gram-negative Zellen</two>. []
287
+ - Was sind <one>xerophile Mikrorganismen</one>? Das sind <one>Organismen, die trockene Lebensräume bevorzugen</one>.
288
+ - Are <one>hydrogenosomes</one> <two>anoxic</two>? Yes. []
289
+ - 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>.
290
+ - Warum oder wann vor allem wird die <one>Säurefestigkeits-Färbung</one> nach <three>Ziehl-Nelsen</three> eingesetzt? Um <one>Mycobacterium tuberculosis</one> nachzuweisen. []
291
+ - What is <one>the most famous domain</one> <two>in the DnaA protein</two>? The <one>AAA+ domain</one>. []
292
+ - Was sind <one>atriche Zellen</one>? <one>Zellen ohne Flagellen</one>. []
293
+ - Give another name for <one>positive regulators of transcription</one> in bacteria. A: <one>Activator proteins</one>.
294
+ - Metaphorically speaking, <one>Penicillium</one> looks like ...? A <one>house</one>, and a garage. The garage door is affected.
295
+ - 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 []
296
+ - 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.
297
+ - <one>E. coli</one> can double (== its generation time) every 20 minutes. 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
298
+ - Durchmesser eines <one>F-Pilus</one>? <one>8 nm</one>. URL: https://en.wikipedia.org/wiki/Pilus []
299
+ - Was bedeutet <one>Serovar</one>? Das sind unterscheidbare Variationen innerhalb der Subspezies von Bakterien oder Viren.
300
+ - Nenne ein Beispiel für <one>chemolithotrophe Bakterien</one>. A: <one>Nitrifikanten</one>.
301
+ - Welche zwei <one>faces</one> finden wir am <two>Tus-Protein</two>? (1) <one>nonpermissive face</one> (2) <one>permissive face</one> []
302
+ - Nenne die wichtigste Reaktionsgleichung von <one>Pyrodictium</one>. A: H₂ + S0 → <one>H₂S</one> (+ATP).
303
+ - In der Mikrobiologie: wofür steht die Abkürzung <one>Fts</one>? <one>Filamentous temperature sensitive</one>. []
304
+ - 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>.
305
+ - 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.
306
+ - 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.
307
+ - 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>.
308
+ - 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.
309
+ - <one>Pili</one> ... pilus... was heisst eigentlich pilus? <one>Haar</one>.
310
+ - What <one>structure</one> defines the existence of a bacterial cell? The <one>cell membrane</one>. []
311
+ - What is <one>quorum quenching</one>? This is the process of preventing quorum sensing by disrupting the signalling, usually by degrading the signalling molecule.
312
+ - In der Mikrobiologie: was ist eine <one>Transaminase</one>-Reaktion? Das Verschieben einer NH₂-Gruppe von einer Aminosäure auf eine organische Säure.
313
+ - Name a bacterium that <one>can survive the conditions inside of a lysosome</one>. A: <one>Salmonella</one>. []
314
+ - <one>Dunaliella</one> sind <two>Flagellata</two>. Warum sind sie bemerkenswert? <one>Dunaliella</one> zeigen eine <two>aussergewöhnliche Salztoleranz</two>.
315
+ - <one>Bacteria that lack flagella</one> are also called ... ? <one>Atrichous</one>. URL: https://en.wiktionary.org/wiki/atrichous
316
+ - The microbiological process of forming minerals is called ... ? <one>Biomineralization</one>. URL: https://en.wikipedia.org/wiki/Biomineralization []
317
+ - <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>.
318
+ - <one>Which proteins</one> transport specific proteins through the membranes of Bacteria? The <one>translocases</one>.
319
+ - In der Mikrobiologie: was sind <one>ETEC-Stämme</one>? <one>Enterotoxische E. coli Stämme</one>.
320
+ - Was genau sind <one>Methanogene</one>? Das sind <one>Archaea</one>, die Methan (CH4) produzieren, und zwar ausgehend von "CO2" und <two>H2</two>.
321
+ - 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 []
322
+ - 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 []
323
+ - Name <one>a siderophore</one> expressed by <two>P. aeruginosa</two>. A: <one>Pyoverdine</one> + ADD URL.
324
+ - <one>Wer</one> hat das <two>Cholera-Bakterium</two> entdeckt? <one>Robert Koch</one>. URL: https://en.wikipedia.org/wiki/Robert_Koch []
325
+ - Nenne <one>sterol-like molecules</one> in bakteriellen Membranen. A: <one>Hopanoids</one>. []
326
+ - <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.
327
+ - Nenne ein Bakterium das <one>PHB-Granula</one> enhält. A: <one>Rhodovibrio sodomensis</one>.
328
+ - Andere Bezeichnung für <one>viele Ribosomen</one>? <one>Polysomen</one>. []
329
+ - Die <one>Generationszeit von E. coli</one> <two>bei 37°C</two> in einem Minimalmedium beträgt ... n Minuten? 60-90 Minuten.
330
+ - Wieviele <one>DNA-Polymerasen</one> werden für die Synthese des Folgestrangs benötigt? <one>2</one>. []
331
+ - <one>Hitzeschockproteine</one>, zumindest in E. coli, haben oft mit <two>welchem Areal der bakteriellen Zelle zu tun</two>? Mit der <one>Zellmembran</one>. []
332
+ - 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
333
+ - For bioterrorism: which bacterium is considered to be <one>very useful</one>? <one>Bacillus anthracis</one>. []
334
+ - 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>
335
+ - Give another term for a <one>dormant, microbial subpopulation</one>. A: <one>Persister cells</one>. URL: https://en.wikipedia.org/wiki/Persister_cells []
336
+ - <one>Who</one> among the microorganisms has <two>cold enzymes</two>? The <one>Psychrophiles</one>. URL: en.wikipedia.org/wiki/Psychrophile
337
+ - In der Mikrobiologie: nenne einen anderen Begriff für <one>Septum</one>. A: <one>Partition</one>.
338
+ - <one>Bacillus subtilis</one> is <two>gram⁺</two> or <two>gram⁻</two>? <one>Bacillus subtilis</one> is <two>gram⁺</two>, unlike E. coli. []
339
+ - Welche Aufgabe hat <one>MinE</one>? MinE bringt den MinCD-Komplex an die Pole; er agiert somit als eine Art Transporter.
340
+ - Nenne <one>3 Taxien</one> die wir in Bakterien finden können. A: (1) "Aerotaxis" (2) <one>Chemotaxis</one> (3) <one>Phototaxis</one>
341
+ - 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.
342
+ - <one>Wo</one> findet man <two>Lectine</two> bei Bakterien wie E. coli? Auf den <one>Pili</one>.
343
+ - Aside from stopping ribosome-biosynthesis, the <one>stringent response</one> in bacteria also inhibits the initiation of ... ? <one>DNA-replication</one>. []
344
+ - Why is it so important for the cell to generate <one>acetate</one> from <two>pyruvate</two>? Because it also generates ATP when doing so.
345
+ - Was ist eine <one>Gruppentranslokation</one>? Ein Transportvorgang bei dem die Substanz chemisch verändert wird.
346
+ - Zur Erhaltung der Stabilität der Lipopolysaccharidschicht ist <one>welches Ion</one> notwendig? <one>Ca²⁺</one>. []
347
+ - Was ist <one>methicillin</one>? A <one>semisynthetic penicillin</one>, discovered in 1960. URL: https://en.wikipedia.org/wiki/Methicillin []
348
+ - Wie heisst das <one>Glycinverbindungsstück</one> in Staphylococcus? <one>Pentaglycinbrücke</one>. []
349
+ - Welche Gene im Bakterium sorgen dafür das das <one>Septum</one> <two>richtig lokalisiert</two> ist? Die Gene im <one>Min-System</one>.
350
+ - Es gibt die attachment organelle, den <one>stalk</one>. <two>Was sekretiert dieser</two>? <one>Adhesion factors</one> die man <two>holdfasts</two> nennt.
351
+ - <one>Wie dick</one> sind <two>Fimbrien</two>, in nm? Etwa <one>30nm - 40nm</one>.
352
+ - Nenne die drei <one>Importer-Typen</one> in Bakterien. A: (1) Antiporter (2) <one>Symporter</one> (3) <one>Uniporter</one>
353
+ - Do <one>prokaryotes</one> <two>have proteins associated with their DNA</two>? Yes. []
354
+ - <one>Pyrodictium</one> ist was für ein Organismus? <one>Pyrodictium</one> ist <two>ein submariner, hyperthermophiler Archaea</two>.
355
+ - 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>.
356
+ - Name a microbial species that lacks the TCA cycle. A: <one>Treponema pallidum</one>. URL: https://en.wikipedia.org/wiki/Treponema_pallidum
357
+ - Name a genus of bacteria able to cause <one>bacterial dysentery</one>? The genus <one>Shigella</one>.
358
+ - <one>ABC transporters</one> in molecular biology, as well as in bacteria, <two>require energy derived from ...</two>? <one>ATP</one>. []
359
+ - 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.
360
+ - <one>High GC contents</one> are characteristic for ... which microbes in general? For microbes that live under <two>extreme temperature conditions</two>.
361
+ - Nenne <one>die zwei verbreitesten Differenzierungsfärbungen</one>. A: (1) <one>Gram-Färbung</one> (2) <one>Säurefestigkeitsfärbung</one> []
362
+ - Nenne eine Substanz die von einigen extrem halophilen Bakterien synthetisiert wird. A: <one>Ectoin</one>, ein Derivat der zyklischen Aminosäure Prolin.
363
+ - Nenne die zwei Klassen der <one>Mikroalgen</one>. A: (1) "eukaryotische Grünalgen" (2) <one>prokaryotische Cyanobakterien</one>
364
+ - 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>
365
+ - Bakterien können wie schnell, gemessen an ihrer Körperlänge, schwimmen? Bis zum <one>50-fachen ihrer Körperlänge</one>. []
366
+ - <one>Which domain of DnaA</one> <two>changes upon binding of ATP</two>? The <one>AAA+ domain</one>. []
367
+ - Nenne <one>eine Methan-produzierende, anaerobe Archaea</one>. A: <one>Methanococcus jannaschii</one>.
368
+ - <one>Sarcina</one> bei Zellen umfasst wieviele Zellen? <one>8</one>. URL: https://de.wikipedia.org/wiki/Sarcina_(Bakterium) []
369
+ - How do <one>diplococci</one> arise? When cocci divide and remain together.
370
+ - Nenne einen Vertreter der <one>Photoorganoheterotrophs</one>. A: <one>Chloroflexus</one>.
371
+ - <one>Welches Enzym</one> wirkt an <two>GATC Sequenzen</two>? Die <one>Dam-Methylase</one>, die an der Adeninstelle methyliert.
372
+ - 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.
373
+ - Das <one>70S Ribosom</one> hat einen <two>Durchmesser</two> von ca. ...? <one>25nm</one>. []
374
+ - <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 []
375
+ - 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.
376
+ - 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>
377
+ - Was sind <one>barophile Mikroorganismen</one>? Diese Mikroorganismen <one>benötigen einen hohen Druck</one>.
378
+ - 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.
379
+ - In microbial systematics: what does the abbreviation <one>MLST</one> stand for? <one>Multilocus sequence typing</one>.
380
+ - Was binden die <one>selektiven Siderophore</one> bevorzugt? <one>Dreiwertiges Eisen</one> (<two>Fe³⁺</two>).
381
+ - Wie ermitteln wir die <one>spezifische Wachstumsrate (k)</one> in der Mikrobiologie? Sie entspricht der <one>Steigung der Geraden</one>.
382
+ - 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>.
383
+ - <one>Woraus</one> besteht <two>Thiomargarita namibiensis</two> zu 98%? Aus einer <one>Vacuole</one>. URL: https://en.wikipedia.org/wiki/Thiomargarita_namibiensis []
384
+ - 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.
385
+ - 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>
386
+ - <one>Welche besondere Proteine</one> findet man in der Zellwand von Pilzen? <one>Mannoseproteins</one>.
387
+ - Nenne eine Mikroorganismus-Gruppe die <one>CH₄</one> (<two>Methan</two>) produziert. A: <one>Methanogene Archaea</one>.
388
+ - In the <one>phosphotransferasesystem</one>: <two>which enzyme parts are nonspecific</two>? (1) <one>Hpr</one> (2) <one>EnzI</one>
389
+ - <one>How many percent</one> of the microorganisms around us can be cultured? About <one>0.1%</one>.
390
+ - <one>Hydroxamate group</one> <two>complexes which atom</two> (be precise!)? <one>Fe³⁻</one>.
391
+ - 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 []
392
+ - Name <one>two bacteria</one> with more than one "chromosome". A: (1) "Vibrio cholerae" (2) <one>Rhizobium meliloti</one>
393
+ - There are bacteria called <one>mollicutes</one>. Why that name? <one>Mollis</one> is <two>soft</two>, <tomato>cutis</tomato> is <three>skin</three>. These are bacteria without a cell well. []
394
+ - Wie lange dauert der <one>ames-Test</one>? Mindestens <one>eine Nacht</one>. []
395
+ - Was gibt der <one>BSB5-Wert</one> an? Den <one>biochemischen Sauerstoffbedarf in 5 Tagen</one> <two>unter Standardbedingungen</two>.
396
+ - Nenne ein Bakterium das die beiden cell types <one>motile</one> und <one>stationary</one> besitzt. A: <one>Caulobacter</one> (ein gram-negatives Bakterium).
397
+ - Durchmesser der kleinsten Bakterien in Mikrometer? <one>200 Mikrometer</one>.
398
+ - <one>Welche Bakterienfamilie</one> ist berühmt für ihre <two>Antibiotika-Synthesewege für Polyketide</two>? Die <one>Actinomyceten</one>.
399
+ - <one>Which microorganism</one> grows on <two>burnt trees</two>? <one>Neurospora</one>.
400
+ - Is the eukaryotic protist <one>Paramecium</one> larger than <two>Epulopiscium fishelsoni</two>? No. <one>Epulopiscium fishelsoni is about 5x as large as Paramecium</one>, give or take. []
401
+ - In Bacteria, what happens right before <one>septum formation</one>? <one>Cell elongation</one>.
402
+ - <one>Welche Reaktion</one> katalysieren <two>methanoxidierende Bakterien</two>? Sie wandeln <one>Methan</one> in <two>CO₂</two> um. []
403
+ - 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>.
404
+ - <one>Caulobacter</one> has been used to <two>study which molecular phenomenon</two>? The <one>cell division process</one>.
405
+ - 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>.
406
+ - Die meisten der <one>nitrifizierenden Prokaryoten</one> gehören zu den? <one>Proteobacteria</one>. URL: https://de.wikipedia.org/wiki/Proteobacteria []
407
+ - Was sind <one>kryptische Plasmide</one>? Dies sind Plasmide, die der Wirtszelle keine neuen Eigenschaften verleihen.
408
+ - <one>Enterobactine</one> sind <two>Derivate von ...</two>? A: Der aromatischen Verbindung <one>Catechol</one>.
409
+ - <one>How</one> does <two>Actinomycin</two> work? <one>Actinomycin</one> inhibits RNA synthesis by combining with DNA and blocking RNA elongation.
410
+ - Bei einer <one>Verdünnungsreihe</one>: <two>welche Verdünnungsstufe hat die Originalprobe</two>? <one>Verdünnungsstufe 0</one>. []
411
+ - What is the main purpose of <one>Salmonella SPI2</one>? So that <one>Salmonella can grow within macrophages</one>.
412
+ - <one>MinE</one> inhibiert ...? <one>MinCD</one>.
413
+ - Movement of bacteria toward or away from oxygen is called ... ? <one>Aerotaxis</one>. URL: https://en.wikipedia.org/wiki/Taxis#Classification []
414
+ - 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.
415
+ - Was ist <one>Snowmax</one> und wozu wird es verwendet? Snowmax sind <one>Frostbakterien</one>, die künstlichen Schnee produzieren können.
416
+ - <one>Polyketide</one> sind Vorläufer welcher zweier Stoffe? (1) Griseofulvin (2) <one>Tetracyclin</one>
417
+ - 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. []
418
+ - Bei der <one>Biosynthese von Methionin</one>: nenne einen wichtigen Unterschied zwischen Eukaryoten und Prokaryoten. A: Eukaryoten verwenden Acetyl-CoA, Prokaryoten verwenden Succinyl-CoA.
419
+ - <one>PhoQ</one> in Salmonella senses ... ? <one>Magnesium</one>. URL: https://pubmed.ncbi.nlm.nih.gov/12507481/
420
+ - 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>.
421
+ - Give an example for a bacterium that is <one>multicellular</one>. A: <one>Magnetoglobus</one>.
422
+ - What is <one>the main protein</one> to induce sporulation in <two>Bacillus subtilis</two>? <one>Spo01</one>.
423
+ - What are <one>symporters</one>? These are <one>transporters</one> (co-transporters actually) that transport a substance together with another molecule (usually a proton).
424
+ - 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
425
+ - <one>Which bacteria</one> have the <two>sortase</two>? The <one>gram-positive bacteria</one>. URL: https://en.wikipedia.org/wiki/Sortase
426
+ - Give an example for <one>a bacterium with more than one chromosome</one>. A: <one>Vibrio cholerae</one>.
427
+ - <one>Fusarium graminearum</one> verursacht was genau und wo? A: <one>Wurzelfäule</one>, <two>bei Weizen</two>.
428
+ - 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>. []
429
+ - Durchmesser des <one>Nucleus</one>, von-bis? <one>5-10 Mikrometer</one>.
430
+ - Are all <one>Archaea</one> <two>extremophiles</two>? No. []
431
+ - Why do bacteria make use of <one>fimbriae</one>? <one>Fimbriae</one> <two>enable cells to stick to surfaces</two>.
432
+ - <one>Glucosamine 6-phosphate</one> is <two>a precursor in what synthetic pathway</two>? In the <one>peptidoglycan synthesis</one> pathway.
433
+ - Was ist die <one>Salt-in</one> Strategie bei Mikroorganismen? Die <one>Aufnahme anorganischer Salze in das Cytoplasma</one>.
434
+ - <one>Magnetosomes</one> haben <two>Fe₃O₄</two>. Nenne einen Mikroorganismus der sie hat. A: <one>Magnetospirillum gryphiswaldense</one>.
435
+ - <one>Welche drei Abteilungen</one> unterscheidet man innerhalb der Bacteria? (1) <one>Cyanobacteriota</one> (2) <one>Negibacteriota</one> (3) <one>Posibacteriota</one>
436
+ - Nenne einen Eukaryoten mit einem <one>Pan-Genom</one>. A: Die Kalkalge <one>Emilliania huxleyi</one>.
437
+ - Welche <one>Blockade</one> gibt es während der Glycolyse? <one>NAD⁺</one> muss vorhanden sein.
438
+ - Bei Bakterien: was heisst <one>ruv</one>? Resistance gegenüber UV-Licht.
439
+ - The Protein <one>SeqA</one> shows <two>an affinity for</two> ...? <one>Hemimethylated origins</one>.
440
+ - Innerhalb einer Zelle: was ist der zentrale Punkt in der <one>NH4⁺ Übertragung</one>? Die <one>Glutamin Synthase</one>.
441
+ - <one>Bakterienzellen</one> können vor allem <two>welche Proteinmodifikation</two> nicht durchführen? <one>Glykosylierungen</one>. []
442
+ - What dictates the <one>upper limits</one> for the size of prokaryotic cells? Problems related to <one>nutrient uptake</one>.
443
+ - Nenne <one>ein Bakterium das Dextran bildet</one>. A: <one>Leuconostoc mesenteroides</one>.
444
+ - Where does <one>Bdellovibrio</one> replicate? In the <one>periplasmic space</one> of the prey cell.
445
+ - Give another term for <one>non-moving cells</one>, in regards to bacteria. A: <one>Sessile cells</one>. []
446
+ - <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.
447
+ - 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 Antitoxin ist, im Gegensatz zum Toxin, <crimson>nur wenig stabil</crimson>. Wenn eine Zelle bei einer Teilung das Plasmid verliert, gehen beide Gene verloren. Da aber das Toxin stabiler ist als das Antitoxin und seine Wirkung deshalb länger vorhält, sterben solche Zellen ab. Somit stellen die Toxin-Antitoxin-Paare einen natürlichen Selektionsmechanismus dar, der dafür sorgt, dass nur diejenigen Zellen überleben, die das betreffende Plasmid behalten.
448
+ - 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
449
+ - Do <one>gram-positive bacteria</one> have <two>ABC transport systems</two>? Yes. []
450
+ - <one>Myxobacteria</one> form what? <one>Fruiting bodies</one>.
451
+ - Which <one>two types</one> of <two>random movement</two> are available to bacteria? (1) <one>runs</one> (2) <one>tumbles</one> []
452
+ - Was sind die sogenannten <one>H-Antigene</one>? <one>Oberflächenorganellen</one> wie Geißeln / <two>Flagellen</two>.
453
+ - Woher bezieht das <one>Tat-Export System</one> die Energie für die Translokation von Proteinen? Durch die <one>PMF</one>.
454
+ - Nenne einen <one>Pilz</one> der <two>Phenole abbauen kann</two>. A: <one>Trichosporon cutaneum</one>.
455
+ - Name the three <one>archaeal promoter elements</one>. A: (1) <one>INIT</one> (2) TATA-box (3) BRE: B recognition element
456
+ - Nenne ein Beispiel für einen Organismus der <one>Ammonium degradieren</one> kann. A: <one>Candidatus Brocadia anammoxidans</one>.
457
+ - Die <one>Bakteriengeissel</one> wächst wo aus? Von der Spitze ausgehend.
458
+ - <one>Eine einzelne E. coli Zelle</one> besitzt in etwa <two>wieviele Ribosomen</two>? <one>200.000</one>. []
459
+ - <one>Bacteria</one> can have <two>alter egos</two>? Yes, in form of <one>pathogenic strains</one>.
460
+ - 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).
461
+ - Name <one>an evolutionary advantage</one> pertaining to genetics 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.
462
+ - 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>
463
+ - Nenne ein Beispiel für <one>eine Gruppentranslokation</one>. A: Das <one>PTS</one>: <two>Phosphotransferasesystem</two>.
464
+ - Eine bakterielle Zelle hat <one>wieviel Prozent Protein-Anteil</one>? <one>55%</one>.
465
+ - Was sind <one>Mixotrophe</one>? Dies sind <one>Chemolithotrophe</one>, die mit einer organischen Kohlenstoffquelle und einem anorganischen Elektronendonor wachsen.
466
+ - 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>.
467
+ - 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.
468
+ - <one>The signature molecule of Bacteria</one>, if we can even define that there is a single such molecule, would be ... ? <one>Peptidoglycan</one>. []
469
+ - Can <one>mycoplasma</one> <two>reproduce outside of living host cells</two>? <one>Yes</one>. []
470
+ - 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
471
+ - Das Wort <one>Enzybiotics</one> ist ein Mix aus ... ? <one>Enzyme</one> und <one>Antibiotics</one>. URL: https://en.wikipedia.org/wiki/Enzybiotics []
472
+ - <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>. []
473
+ - Es gibt <one>zwei Electron Transfer Pathways</one> in der Photosynthese bei MO, den cyclic und non-cyclic electron transfer. Bitte charakterisieren sie die beiden. A: In cyclic electron transfer, electrons are removed from an excited chlorophyll molecule, passed through an electron transport chain to a proton pump, and then returned to the chlorophyll. In noncyclic electron transfer, electrons are removed from an excited chlorophyll molecule and used to reduce NAD+ to NADH. Replacement of electrons is accomplished by removing electrons from H2S, which is oxidized to sulfur - hence the name <one>green sulfur bacteria</one>.
474
+ - Name <one>two prokaryotes without a cell wall</one>. A: (1) <one>Mycoplasma</one> (2) <one>Thermoplasma</one>
475
+ - Nenne einen natürlich-vorkommenden Vertreter der auxotrophen Mikroorganismen. A: <one>Milchsäurebakterien</one>.
476
+ - Name a very characteristic property of the "periplasmic binding protein". A: The perisplasmic binding protein has a high affinity for its substrate.
477
+ - <one>Where</one> does the <two>deep sea</two> start? At <one>water depth greater than 1000m</one>. []
478
+ - Is <one>Bacillus stearothermophilus</one> <two>a slow grower</two>? <one>No</one>, its <two>generation time</two> is only <three>11 minutes</three>.
479
+ - <one>Thermophiles</one> haben was für einen Membrantypus? A: <one>Rigid</one> - haben also <one>eher starre Membranen</one>.
480
+ - 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>.
481
+ - A bacterial cell that is <one>spherical or ovoid</one> in morphology is called ... ? A <one>coccus</one>. []
482
+ - <one>Actinomycetes</one> produzieren <two>lange Filamente</two>, die wie genannt werden? <one>Hyphae</one>.
483
+ - Ist <one>Thermus aquaticus</one> ein Bakterium oder eine Archaea? Ein <one>Bakterium</one>. []
484
+ - Besitzen die gramnegativen <one>Rhizobien</one> <two>Flagellen</two>? Ja. []
485
+ - <one>Wo</one> genau greift <two>Lysozym</two> an? Es spaltet die Beta-1,4-Bindung zwischen <one>N-Acetylglucosamin</one> und "N-Acetyl-muraminsäure".
486
+ - How to find <one>enzymes that function at high salinity</one>? We can look at <one>halophiles</one>.
487
+ - <one>Welche Bakterien</one> zeigen einen <two>metallischen Glanz</two>? <one>E. coli</one>. []
488
+ - Wie speichern Bakterien, wie zum Beispiel die <one>Pseudomonaden</one>, <two>lösliche Phosphate</two>? Sie speichern sie in Form von <one>Polyphosphat</one>.
489
+ - <one>Who</one> theorized in the early 1970s that <two>Earth behaves like a superorganism</two>? <one>James Lovelock</one>.
490
+ - Are <one>group translocation systems</one> also <two>ABC transporters</two>? No they are not. []
491
+ - What is the <one>dilution rate</one>? This is the rate at which fresh medium is pumped in and spent medium is removed.
492
+ - Wie sieht eine <one>ethanolamine group</one> aus? <one>H3N+ - CH₂ - CH₂ - O</one>.
493
+ - Aufgabe der <one>Autolysine</one>? Machen Löcher in die Bakterienwand. Dort werden dann neue Zellwandstrukturen eingelagert.
494
+ - 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.
495
+ - Der <one>oriC locus</one> hat Bindestellen für DnaA, aber es gibt in der Nähe noch einen weiteren locus der 5 DnaA Bindungsstellen hat. Wie heisst diese Locus? <one>datA Locus</one>.
496
+ - Nenne <one>drei gebräuchliche Fluorophore</one> in der Mikroskopie bei Bakterien. A: (1) <one>FITC</one> (2) <one>DAPI</one> (4 Strich 6-Di-amidino-2-phenylindol) (3) Acridine orange
497
+ - Andere Bezeichnung für <one>Inokulum</one>? <one>Kleine Menge</one>.
498
+ - Name <one>a particularly effective drug</one> against <two>gram-negative bacteria</two>. A: <one>Gentamicin</one>. URL: https://en.wikipedia.org/wiki/Gentamicin
499
+ - 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.
500
+ - <one>Rickettsia Prowazekii</one> hat wie viele bp im Genom? <one>1.1 Mio bp</one>.
501
+ - Name <one>the two most famous members</one> of the <two>Euryarchaeota</two>. A: (1) the <one>halophiles</one> (2) the <one>methanogens</one>
502
+ - Warum ist <one>Bdellovibrio</one> so besonders? <one>Bdellovibrio</one> infiltriert gram-negative Bakterien, indem es in das Periplasma wandert und dort Biopolymere verdaut. []
503
+ - Wer oder was fungiert als <one>Glucosesensor</one> in Bakterien? Die <one>Adenylat-Cyclase</one>. URL: https://en.wikipedia.org/wiki/Adenylyl_cyclase []
504
+ - Einige Bakterien verwenden <one>welche Alternative zu Ubichinon</one>? <one>Menachinon</one>.
505
+ - In the <one>gram-positive</one> bacterium <two>Staphylococcus aureus</two>, its interbridge consists of ... ? <one>Five glycines</one>. []
506
+ - Nenne ein Bakterium mit <one>linearen Plasmiden</one>. A: <one>Borrelia burgdorferi</one>. URL: https://en.wikipedia.org/wiki/Borrelia_burgdorferi []
507
+ - <one>Wieviele Moleküle Glucose</one> nimmt eine E. coli Zelle pro Sekunde auf? <one>200.000 Moleküle Glucose</one>.
508
+ - 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 []
509
+ - <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. []
510
+ - Nenne einen Mikroorganismus der sowohl <one>Butanol</one> als auch <one>Aceton</one> herstellen kann. A: <one>Clostridium acetobutylicum</one>.
511
+ - Beim <one>bakteriellen Phosphotransferasesystem</one> zur Aufnahme von Glucose: <two>welches Enzym ist membrangebunden</two>? Das Enzym <one>IIc</one>. []
512
+ - 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.
513
+ - Viele Bakterien produzieren EPS. Dies steht für ... ? <one>Extrazelluläre polymere Substanzen</one>.
514
+ - <one>Bakterielle Langstäbchen</one> haben welche typische Länge? Etwa <one>8 µm</one>.
515
+ - <one>What special structure</one> does <two>Bdellovibrio</two> have? <one>A spherical structure</one> called the <two>bdelloplast</two>.
516
+ - The all-time champion radiation-resistant microorganism is ... ? <one>Deinococcus radiodurans</one>. URL: https://en.wikipedia.org/wiki/Deinococcus_radiodurans []
517
+ - Was sind <one>Magnetosome</one>? Intrazelluläre Kristallpartikel des Eisenminerals <one>Magnetit</one> (<two>Fe₃O₄</two>).
518
+ - Does <one>penicillin</one> destroy <two>peptidoglycan</two>? <one>No</one> - penicillin simply blocks a key step in the biosynthesis of peptidoglycan. []
519
+ - <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.
520
+ - Die <one>Dipicolinsäure</one> besitzt <two>wieviele N-Atome</two>? <one>1</one>. URL: https://de.wikipedia.org/wiki/Dipicolins%C3%A4ure []
521
+ - Warum produziert <one>H. pylori</one> <two>Urease</two>? Um im Magen <one>Ammonium</one> (NH4⁺) zu produzieren, welches die Magensäure neutralisiert.
522
+ - Wer entdeckte die <one>Archaea</one>? <one>Carl Woese</one>. URL: https://en.wikipedia.org/wiki/Carl_Woese []
523
+ - What role does the <one>GvpC protein</one> have in a gas vesicle? GvpC <one>strengthens the shell of the gas vesicle</one>, by cross-linking copies of Gvp1.
524
+ - 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 []
525
+ - <one>Geobacter</one> wächst bei n °C? <one>121 °C</one>. URL: https://de.wikipedia.org/wiki/Geobacter []
526
+ - 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
527
+ - <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.
528
+ - Wissenschaftliche Bezeichnung für die <one>Schlauchpilze</one>? <one>Ascomycetes</one>. URL: https://de.wikipedia.org/wiki/Schlauchpilze []
529
+ - Give another name for the <one>generation time</one> in bacteria. A: The <one>doubling time</one>. []
530
+ - Andere Bezeichnung für den <one>Teilungsapparat der bakteriellen Zelle</one>? <one>Divisom</one>. URL: https://en.wikipedia.org/wiki/Divisome []
531
+ - What is the task of <one>transport proteins</one>? Transport proteins accumulate solutes against a concentration gradient.
532
+ - Wie nennen wir den verankerten Teil einer Geißel? Dies ist der <one>Basalkörper</one>. []
533
+ - <one>Golgi Staining</one> wurde <two>wann erfunden</two>? <one>1873</one>.
534
+ - How do <one>mitochondria</one> reproduce? By <one>binary fission</one>. []
535
+ - <one>Streptococcus pyogenes</one> is <two>gram-positive</two> or <two>gram-negative</two>? Streptococcus pyogenes is <one>gram-positive</one>. []
536
+ - Welche <one>Brücke</one> finden wir bei Gram-positiven Bakterien in der Zellwand? Eine <one>Pentaglycinbrücke</one>. URL: https://de.wikipedia.org/wiki/Peptidoglycane []
537
+ - Give one example for <one>a marine ammonia-oxidizing bacteria</one>. A: <one>Nitrosococcus</one>.
538
+ - Why the name <one>proteo</one> in <two>Proteorhodopsin</two>? It refers to <one>Proteobacteria</one>.
539
+ - 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.
540
+ - Wie kann man experimentell zwischen <one>azi S</one> und "azi R" unterscheiden? Durch Verwendung von <one>sodium azide</one>.
541
+ - Give a specific example for <one>anoxygenic phototrophs</one>. A: <one>Purple bacteria</one>. URL: https://en.wikipedia.org/wiki/Purple_bacteria []
542
+ - The bacterium <one>Leuconostoc mesenteroides</one> contains a glucose polymer slime layer. <two>What particular glucose is used there</two>? A thick <one>dextran</one> layer.
543
+ - Nenne einen Inhibitor von <one>Bactoprenol</one>. A: <one>Bacitracin</one>. (Mnemonic: B und B)
544
+ - Das Bodenbakterium <one>Ktedonobacter racemifer</one> hat <two>wieviele Protein-kodierende Gene</two>? <one>11_453</one>.
545
+ - <one>MinCD</one> inhibiert ...? <one>FtsZ</one>.
546
+ - 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.
547
+ - Can <one>a H⁺ proton</one> diffuse through a bacterial membrane? <one>No</one>. []
548
+ - Nenne eine Bakterienart die <one>Rhamnolipide</one> erzeugt. A: <one>Pseudomonas aeruginosa</one>.
549
+ - Was ist <one>das wichtigste, strukturbestimmende Protein bei Prokaryoten</one>? <one>MreB</one>.
550
+ - Nenne einen <one>mikrobiellen Eisenchelatbildner</one>. A: <one>Hydroxamat</one>.
551
+ - 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.
552
+ - <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>
553
+ - Do <one>Wolbachia species</one> prefer <two>mature eggs<7two> or <two>mature sperm</two>? <one>Mature eggs</one>. []
554
+ - Nenne ein Bakterium das ohne Insertionssequenzen auskommt. A: <one>Bacillus subtilis</one>.
555
+ - In most bacteria, the SRP consists of an RNA molecule (<one>4.5S</one>) and ... which protein? The <one>Ffh protein</one>.
556
+ - In Bacteriology: name <one>two plot-types</one>. A: (1) <one>logarithmic plot</one> (2) <one>arithmetic plot</one>
557
+ - Unter <one>optimalen Wachstumsbedingungen</one> besteht <two>wieviel Prozent der bakteriellen Zellmasse aus Ribosomen</two>, in etwa? In etwa <one>25%</one>. []
558
+ - <one>Welches Bakterium</one> erzeugte <two>Lysostaphin</two>? <one>Staphylococcus staphylolyticus</one>.
559
+ - Beim <one>Phosphotransferasesystem</one>: <three>HPr</three> findet sich zwischen welchen anderen beiden Komponenten? (1) <one>Enz I</one> (2) <one>Enz IIa</one> []
560
+ - Hat <one>Acinetobacter</one> eine Kapsel? Ja. []
561
+ - 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>. []
562
+ - Was heisst <one>S</one>/<one>V ratio</one>? <one>Surface to volume ratio</one>. []
563
+ - Wo findet man <one>H-Antigene</one>? Bei <one>bakteriellen Flagellen</one>. []
564
+ - The <one>cytoplasmic membrane of bacteria</one> is <two>about n nm thick</two>? About <one>8-10 nanometers</one>.
565
+ - 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
566
+ - 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.
567
+ - Wie tötet <one>Bacillus thuringiensis</one>? Bacillus thuringiensis bildet kristallförmige Eiweisse, die im Raupendarm in die Giftform konvertiert werden.
568
+ - Bakterien brauchen und verwenden Eisen. Durch welches Atom kann es ersetzt werden? <one>Mn2⁺</one> (Mangane).
569
+ - Are <one>gas vesicles</one> in bacteria <two>permeable to water</two>? No, they are <one>impermeable to water</one>. []
570
+ - 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
571
+ - Andere Bezeichnung für <one>Zip A</one>? <one>FtsZ-Anker</one>.
572
+ - Was geschieht in den <one>Heterocysten</one> der Cyanobakterien? <one>Stickstofffixierung</one> - hier wird molekularer Stickstoff (N₂) in Ammonium (NH₄⁺) umgewandelt. []
573
+ - What is an <one>oligotroph</one>? This is <one>an organism that grows best at very low concentration of nutrients</one>.
574
+ - <one>Which bacteria</one> use <two>scotophototaxis</two>? The <one>phototrophic purple bacteria</one>.
575
+ - <one>FtsZ</one> <two>verwendet welche Energiequelle</two>? <one>GTP</one>. []
576
+ - 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.
577
+ - Name a bacterium that is <one>spiral shaped</one>. A: <one>Spirilla</one>. URL: https://en.wikipedia.org/wiki/Spirillum []
578
+ - Wie mag man <one>type I fimbriae</one> erkennen? Sie sind <one>uniform an der Oberfläche der Zelle</one> verteilt.
579
+ - Nenne <one>zwei Bakteriengruppen</one> die <one>anoxygene Photosynthese</one> betreiben. A: (1) <one>Schwefelbakterien</one> (2) <one>Purpurbakterien</one>
580
+ - Name a microorganism used for <one>chlortetracycline production</one>. A: <one>Streptomyces aureofaciens</one>.
581
+ - Über welchen <one>intrazellulären Mechanismus</one> erfolgt die Regulation der Glutamin-Synthase? Über <one>Adenylierung</one>.
582
+ - Is a <one>capsule</one> in <two>Bacteria</two> part of its cell wall? No. []
583
+ - 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>.
584
+ - 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
585
+ - <one>Actin-like filaments</one> in Bacteria? Mre-Proteins. URL: https://en.wikipedia.org/wiki/MreB
586
+ - Do <one>halophiles</one> require a high concentrations of salt to survive? Yes indeed they do.
587
+ - The <one>phosphotransferase system</one> consists of a family of n proteins that work in concert? <one>Five proteins</one> (<two>5</two>). []
588
+ - What does <one>oxygenic photosynthesis</one> produce? <one>O₂</one>. []
589
+ - In microbiology: the <one>most common staining procedure</one> is ... ? The <one>Gram stain</one>. URL: https://en.wikipedia.org/wiki/Gram_stain []
590
+ - Wann wurde <one>Helicobacter pylori</one> erstmals kultiviert? <one>1982</one> - also erst relativ spät. []
591
+ - Ist das bakterielle Chromosom mit der Zellmembran verknüpft? Ja. []
592
+ - Die <one>Nitrogenase</one> verwendet welche zwei Metalle? <one>Eisen</one> und <one>Molybdän</one>.
593
+ - Wo kann <one>FeMoCo</one> gefunden werden? In dem Nitrogenase-Enzym, in der Untereinheit I.
594
+ - <one>FAD</one> is derived from ...? A: The Vitamin <one>Riboflavin</one>. URL: https://en.wikipedia.org/wiki/Riboflavin
595
+ - Wie nennen wir die <one>Vorstufe von Protoplasten</one>? <one>Sphäroplasten</one>.
596
+ - Name an antibiotic that can function against <one>Clostridium difficile</one>. A: <one>Vancomycin</one>. URL: https://en.wikipedia.org/wiki/Vancomycin
597
+ - Why does the <one>Epulopiscium cell</one> require so many copies of its genome? Because the volume of that cell is so large. []
598
+ - <one>Peptidoglycan</one> can be destroyed by ... ? <one>Lysozyme</one>. URL: https://en.wikipedia.org/wiki/Lysozyme []
599
+ - <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
600
+ - Was entsteht neu bei der bakteriellen Reduktion von Nitrat zu Nitrit? <one>H₂O</one>.
601
+ - Die wichtigste Voraussetzung für <one>bakterielle Magnetotaxis</one> ist ... ? Das <one>Magnetosom</one>. URL: https://de.wikipedia.org/wiki/Magnetosom []
602
+ - Nenne ein Beispiel für eine <one>Kieselalge</one>. A: <one>Stephanodiscus</one>.
603
+ - What are <one>cidal</one> agents? Agents that kill organisms - or in this case, bacteria. []
604
+ - <one>Welche funktionelle Gruppen</one> finden wir bei <two>Ethanolamin</two>? <one>-O-CH₂-CH₂-NH₃</one> <two>+1</two>.
605
+ - <one>Growth of lichens</one> per year? <one>1mm</one> / <one>year</one>. []
606
+ - Nenne eine <one>methylotrophe Hefe</one>. A: <one>Pichia pastoris</one>. URL: https://en.wikipedia.org/wiki/Pichia_pastoris []
607
+ - Der beim <one>Ames-Test</one> verwendete Mineralagar enthält Spuren welcher, für diesen Test sehr wichtigen, <two>Aminosäure</two>? <one>Histidin</one>. []
608
+ - <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>. []
609
+ - Name <one>a bacterium</one> that attacks other bacteria and thus uses them as <two>a bacterial prey cell</two>. A: <one>Bdellovibrio</one>. URL: https://en.wikipedia.org/wiki/Bdellovibrio []
610
+ - What is the <one>nucleoid occlusion factor</one>? <one>SImA</one>.
611
+ - Do <one>Entamoeba histolytica</one> have <two>mitochondria</two>? No. []
612
+ - Wie nennen wir Mikroorganismen, die <one>saure Bedingungen für ihr Wachstum bevorzugen</one>? <one>Acidophile Mikroorganismen</one>. []
613
+ - Sind die <one>Mesosomes</one> Organellen? Nein, es sind <one>Artefakte, die durch die chemische Fixierung entstanden sind</one>. []
614
+ - The <one>phosphotransferase system</one> consists of a family of n proteins that work in concert to transport any given sugar. A: <one>5 proteins</one>.
615
+ - <one>Brucella abortus</one> seeks which sugar in the placenta? <one>Erythritol</one>. URL: https://en.wikipedia.org/wiki/Erythritol []
616
+ - <one>Bacteria</one> also require vitamins. Vitamins, in turn, function usually as ... ? <one>Eenzyme cofactors</one>.
617
+ - <one>Autotrophs</one> can synthesize their own organic compounds from ... ? <one>Carbon dioxide</one> (<two>CO2</two>).
618
+ - In Bacteria: <one>quorum sensing</one> is mediated by ...? <one>Farnesol</one>.
619
+ - <one>Puromycin</one>, an <two>aminonucleoside antibiotic</two>, has been derived from which bacterium? From <one>Streptomyces alboniger</one>.
620
+ - Can <one>Bacteria</one> sense spatial gradients of chemicals? No. []
621
+ - Porins (in bacteria) are transmembrane proteins composed of ... how many identical polypeptides? Three. URL: https://en.wikipedia.org/wiki/Porin_(protein)#Diversity []
622
+ - 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>.
623
+ - Name one very deadly <one>toxin</one> <two>produced by fungi</two>. A: <one>Aflatoxin</one>. []
624
+ - Nenne ein Bakterium mit <one>zwei circulären Chromosomen</one>. A: <one>Vibrio cholerae</one>. []
625
+ - <one>Which bacteria</one> occur in three dimensional cubes? <one>Sarcina</one>. URL: https://en.wikipedia.org/wiki/Sarcina []
626
+ - Wie lang, in etwa, ist ein einzelnes, durchschnittliches E. coli Bakterium? <one>2-3 Mikrometer</one>. []
627
+ - Nenne einen Organismus der das <one>LucCDABE-Operon</one> exprimiert. A: <one>Vibrio fischeri</one>.
628
+ - Was passiert wenn wir den <orange>datA Locus</orange> deletieren? Dies führt zu einer <one>deregulierten (also asynchronen) Initiation der Replikation</one>.
629
+ - Anderes Wort für <one>Zip1</one>? <one>FtsZ Anchor</one>.
630
+ - Can <one>sulfate</one> be found in the periplasm of bacteria? Yes. []
631
+ - 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.
632
+ - Welches Bakterium ist mit <one>D50S</one> gemeint? <one>Deinococcus radiodurans</one>. URL: https://de.wikipedia.org/wiki/Deinococcus_radiodurans []
633
+ - Nenne ein Beispiel für einen <one>Symporter</one>. A: Lac Y-Permease.
634
+ - Anderer Begriff für die <one>Acetobacter</one>? <one>Essigsäurebakterien</one>. URL: https://de.wikipedia.org/wiki/Acetobacteraceae []
635
+ - Nenne einen Weg wie man nach <one>Karzinogenen</one> suchen ('screenen') kann. A: Man kann den <one>Ames-Test</one> verwenden. []
636
+ - What is <one>the key intermediate</one> in <two>acetate production</two>? <one>Acetyl-CoA</one>.
637
+ - Der <one>Glyoxylatzyklus</one> ermöglicht es welche Kohlenstoffquelle zu verwenden? <one>Acetat</one>. []
638
+ - Does <one>group translocation</one> move nutrients against a concentration gradient? Yes. []
639
+ - The fastest organism is a microorganism, which is ... ? <one>Methanocaldococcus</one>.
640
+ - How many Bacteria may exist on planet earth? 5 x 10 ** 30. []
641
+ - Mit Hilfe des <one>Kligler-Agar</one> kann man in der mikrobiologischen Diagnostik was genau nachweisen? <one>Gramnegative Bakterien</one>.
642
+ - Andere Bezeichnung für <one>auxotrophe Bakterien</one>. A: <one>Mangelmutanten</one>.
643
+ - <one>Welche Ladung</one> trägt <two>Ethanolamin</two>? <one>+</one>.
644
+ - What is <one>the first protein in a bacterial two-component system</one>? The <one>sensor kinase</one>.
645
+ - Ich möchte <one>FtsI</one> inhibieren. Was könnte getan werden? <one>Penicillin</one> zugeben.
646
+ - 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 []
647
+ - In the <one>DnaA Protein</one>: which domain is responsible for dimer-formation? <one>Domain I</one>. []
648
+ - Warum verwenden wir die <one>Agarstichkultur</one> im mikrobiellen Labor? Um das Verhalten von Bakterien gegenüber <one>Luftstauerstoff</one> festzustellen.
649
+ - The <one>Entner-Doudoroff pathway</one> is widely distributed among? The <one>pseudomonas</one> group. URL: https://en.wikipedia.org/wiki/Pseudomonas []
650
+ - 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.
651
+ - Was heisst der <one>Anstieg</one> bei einem Wachstumsgraphen in einer Bakterienpopulation auf englisch? <one>Slope</one>. []
652
+ - <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>.
653
+ - <one>Acidophile Bakterien</one> mögen wozu dienen in der Industrie? A: Extraktion von Metallen.
654
+ - <one>Tubulin</one> in Eukarya ähnelt ... in Bacteria. A: <one>FtsZ</one>. []
655
+ - Was für ein Typ ist das <one>Bacteriohopanetetrol</one>, das man in manchen Membranen finden kann? Ein <one>Hopanoid</one>.
656
+ - <one>Welche Bakteriengruppe</one> 'produziert' <two>Schwefel</two>? Die <one>Purpurschwefelbakterien</one>.
657
+ - Welches Bakterium wird auch <one>"Conan the barbarian"</one> genannt? <one>Deinococcus radiodurans</one>. URL: https://en.wikipedia.org/wiki/Deinococcus_radiodurans []
658
+ - Was sind <one>Endomycetes</one>? <one>Sprosspilze</one>.
659
+ - 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.
660
+ - Give a specific example for <one>quorum sensing</one>. A: <one>Pathogenic bacteria</one>. The coordinated expression of a toxin may successfully cause disease.
661
+ - Are <one>Streptomyces</one> bacteria? <one>Yes</one> - they are the largest genus of the <two>Actinobacteria</two>.
662
+ - What means <one>lophotrichous</one>? When several flagella appear only at the same (one) pole.
663
+ - What is <one>the final step in cell wall synthesis</one>? <one>Transpeptidation</one>.
664
+ - Are <one>Archaea</one> <two>prokaryotic cells</two>? Yes. []
665
+ - The <one>DnaA protein</one> has a domain IV. What is the role of this domain? This domain of 11 kDa in size, constitutes the <one>DNA-binding domain</one>.
666
+ - What is the <one>counterstain</one> used in gram staining? <one>Safranin</one>. URL: https://en.wikipedia.org/wiki/Safranin []
667
+ - What molecule inhibits the synthesis of cyclicAMP? Glucose. []
668
+ - In Bacteria: do <one>type IV pili</one> rotate? No, they do not rotate. []
669
+ - Why the name <one>defined media</one>? Because we know the exact composition of the (defined) medium.
670
+ - 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.
671
+ - Name the 3 <one>philes</one> in microbiology in regards to pH. A: (1) <one>acidophiles</one> (2) alkaliphiles (3) <one>neutrophils</one>
672
+ - 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.
673
+ - 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.
674
+ - <one>Acetogenese</one> versus <one>Methanogenese</one>. Wer liefert mehr Energie? Die Methanogenese liefert mehr Energie. []
675
+ - 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 []
676
+ - What exactly is the <one>FtsK</one> in a bacterium? <one>FtsK</one> is a septum-located <two>DNA translocase</two>.
677
+ - Is there <one>a well-defined microbial species concept</one>? No. []
678
+ - In der Mikrobiologie: was sind <one>EHEC-Stämme</one>? <one>Enterohämorrhagische E.coli Stämme</one> (begleitet von <two>blutigem Durchfall</two>).
679
+ - Was heisst <one>Desinfektion</one>? <one>Keimreduzieren</one>.
680
+ - 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. []
681
+ - <one>Wann</one> wurde <two>Proteorhodopsin</two> erstmals entdeckt? Im Jahr <one>2000</one>.
682
+ - <one>Magnetosome synthesis</one> in bacteria 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.
683
+ - Just about the <one>most common, natural inclusion body</one> in prokaryotic organisms is ... ? <one>PHB</one>: <two>poly-b-hydroxybutyric acid</two>.
684
+ - 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
685
+ - 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.
686
+ - Bacterial <one>capsules</one> are readily visible by light microscopy if these cells are treated with ... ? <one>India ink</one>.
687
+ - 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>.
688
+ - Name a fairly common protein in bacteria that can be found as part of the outer membrane. A: The <one>porins</one>.
689
+ - In microbiology: what is the role of the protein called <one>MinE</one>? MineE directs the formation of the <two>FtsZ ring</two>.
690
+ - Was machen Mikroben mit <one>D-Aminoacids</one>? Sie verwenden diese für <one>nonprotein-structural molecules</one>.
691
+ - 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>.
692
+ - 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.
693
+ - 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
694
+ - Nenne einen typischen <one>Einschluss</one> in <two>E. coli</two>. A: <one>Glykogeneinschlüsse</one>.
695
+ - 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.
696
+ - What is <one>decontamination</one>? The treatment of a surface to make it safe to handle.
697
+ - Nenne ein <one>Vitamin</one>, das <two>Neurospora crassa</two> benötigt. A: <one>Biotin</one>. URL: https://en.wikipedia.org/wiki/Biotin []
698
+ - What is the name of the <one>nucleoid occlusion factor</one>? <one>SImA</one>.
699
+ - Why the name <one>penicillin-binding protein</one>? These proteins are inhibited by penicillin.
700
+ - What is <one>Chlamydia</one>? <one>Chlamydia</one> is <two>an intracellular bacterial parasite</two>.
701
+ - What is <one>sterilization</one>? The killing or removal of all viable organisms.
702
+ - <one>Welche Bakteriengruppe</one> verwendet die <two>Aminopeptidase</two>? <one>Gram-negative Bakterien</one>. URL: https://de.wikipedia.org/wiki/Aminopeptidasen []
703
+ - Name <one>an unusual contributor to a mycoplasma cell wall</one>. A: <one>Sterols</one>.
704
+ - 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 []
705
+ - Nenne ein Beispiel für ein <one>peritriches Bakterium</one>. A: <one>Proteus sp</one>.
706
+ - <one>Wie lang</one> kann <two>Spirulina</two> werden? A: Einen halben Millimeter (<lightgreen>0.5 mm</lightgreen>).
707
+ - Name <one>an organism</one> that <two>can replicate asymmetrically</two>. A: <one>Hyphomicrobium</one>.
708
+ - Was kann man mit dem <one>Phenolrot Boullion Test</one> nachweisen? <one>Zuckerfermentation</one>.
709
+ - Define the term <one>glycocalyx</one>. A: A Glycocalyx is a polymer secreted by a microorganism that coats the surface of the microorganism.
710
+ - Nenne <one>eine chemische Substanz</one>, mittels deren Hilfe bakterielle Zellen aufgebrochen werden können. A: <one>Chloroform</one>.
711
+ - Wie wird die <one>Luftkeimzahl</one> bestimmt? Mit Hilfe eines "Luftkeimsammlers".
712
+ - <one>Wie viele Chromosomen</one> hat <two>Dictyostelium discoideum</two>? <one>6</one>.
713
+ - What does the <one>LuxS gene</one> produce? <one>Autoinducer AI-2</one>.
714
+ - Which bacteria have a <one>S-layer</one>? <one>Gram⁺ bacteria</one>. []
715
+ - The <one>competence master regulator</one> in bacteria is ... ? The <one>ComK-protein</one>.
716
+ - Give another name for the <one>gram-negative cell wall</one>. A: <one>Cell envelope</one>.
717
+ - What does the word <one>PRION</one> stand for? <one>Proteinaceous infectious agent</one>.
718
+ - <one>Wann</one> findet die <two>bakterielle Sporulation</two> statt? Wenn das Wachstum zum Stillstand gekommen ist (Trigger: ein limitierender Faktor)
719
+ - In nature: <one>microbial cells</one> typically live in groups called ... ? <one>Microbial communities</one>. []
720
+ - 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>
721
+ - In <one>welche zwei Teile</one> kann man den Stoffwechsel einteilen? (1) Energiestoffwechsel (2) <one>Leistungsstoffwechsel</one>
722
+ - 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 []
723
+ - <one>FtsW</one> hat was für eine Aufgabe? Es bringt <one>FtsI</one> an den Z-Ring.
724
+ - 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>.
725
+ - In der Mikrobiologie: was ist die <one>Generation</one>? Die Zeiteinheit die eine Zelle benötigt um zwei Zellen zu bilden.
726
+ - Nenne drei Beispiele für bakterielle <one>Rhodopsin-Pigmente</one>. A: (1) Bacteriorhodopsin (2) Proteorhodopsin (3) Xanthorhodopsin
727
+ - Bei der Synthese von Aminosäuren: welche zwei Wege stammen aus dem Citratzyklus? Alpha-Ketoglutarat (E,P,Q,R) und <one>Oxalacetat</one> (D,N,K,M,T,I)
728
+ - How do we call <one>three-dimensional cubes</one> in bacteria? <one>Sarcina</one>. URL: https://de.wikipedia.org/wiki/Sarcina_(Bakterium) []
729
+ - In general, by which logic can we identify <one>virulence genes</one> in a bacterium? Mutations that inactivate these genes, will render the bacterium <one>non-pathogenic</one>. []
730
+ - Was ist <one>NodM</one>? Eine <one>Glucosaminsynthetase</one>, die an der Nod-Faktor Synthese beteiligt ist.
731
+ - Compare <one>the general division strategy</one> between prokaryotes and eukaryotes. A: Prokaryotes divide by fission, eukaryotes divide by mitosis and cytokinesis.
732
+ - Warum gibt es <one>Magnetotaxis</one> bei den Bakterien? Zur Orientierung. Sie können so zum Boden des Teiches schwimmen.
733
+ - <one>Which two aminoacids</one> are very important in <two>two-component systems</two>? (1) <one>Aspartate</one> (2) <one>Histidine</one>
734
+ - Wer widerlegte die <one>Urzeugungstheorie</one>? <one>Louis Pasteur</one>.
735
+ - What is a <one>regulon</one>? When more than 1 operon is under the control of a single regulatory protein.
736
+ - Was können <one>Methanobacterien</one>? <one>CO₂</one> zu Methan reduzieren.
737
+ - Was ist der <one>assimilatorische Stickstoffwechsel</one>? Die Verwendung von <one>NO3⁻</one> SO4 2-, CO₂.
738
+ - 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.
739
+ - <one>Where</one> could <two>phycocyanins</two> be found? In <one>cyanobacteria</one>. URL: https://en.wikipedia.org/wiki/Phycocyanin []
740
+ - Give a specific example for a <one>global response</one> widespread in all 3 domains of life. A: The <one>heat shock response</one>.
741
+ - Ist <one>ein Chemostat</one> <two>kontinuierlich</two> oder <two>diskontinuierlich</two>? <one>Kontinuierlich</one>. URL: https://de.wikipedia.org/wiki/Chemostat-Bioreaktor []
742
+ - <one>How much ATP</one> is <two>required</two> <three>per fixed N₂</three>? <one>16 ATP</one>. []
743
+ - <one>FtsZ</one> is a homolog towards? <one>Tubulin</one>.
744
+ - <one>Welche chemische Reaktion</one> führt die ATPase durch? Sie katalysiert ADP + Pi -> ATP (und die reverse Reaktion).
745
+ - <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
746
+ - <one>Wann</one> wurde <two>die Sequenzierung von S. pneumonia</two> abgeschlossen? <one>2001</one>.
747
+ - Name a bacterium that is used in <one>denitrification</one>. A: <one>Pseudomonas stutzeri</one>.
748
+ - <one>Bacillus subtilis</one> kodiert für <two>n verschiedene Sigmafaktoren</two>? <one>18</one>.
749
+ - Name a <one>halophilic archaeon</one>. A: <one>Haloarcula Marismortui</one>.
750
+ - 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. []
751
+ - Salopp formuliert, was machen <one>Integrons</one>? Sie fangen Gene aus anderen Quellen ein; sind Bestandteil einiger Transposons.
752
+ - What is the <one>archaellum</one>? <one>A whip-like structure</one> on the <two>cell surface of many archaea</two>.
753
+ - Was heisst <one>Fts KOPS</one>? <one>FtsK Oriented Polar Sequences</one>. Die Sequenzfolge lautet: <two>GGGNAGGG</two>.
754
+ - 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>.
755
+ - Wozu dient dem Bakterium <one>Alcaligenes eutrophus</one> das aus Zucker erzeugte PHB (Polyhydroxybutyrat)? Als <one>Energiespeicher</one>.
756
+ - 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>.
757
+ - The <one>major cellular function</one> of the <two>cytoplasmic membrane</two> is ... ? <one>Selective permeability</one>.
758
+ - Besitzen <one>Hefezellen</one> <two>Vakuolen</two>? Ja. []
759
+ - <one>Welches Bakterium</one> <two>sieht aus wie ein gekrümmtes Stäbchen</two>? <one>Vibrio cholerae</one>.
760
+ - Die <one>Sporangien</one> gehen woraus hervor? Aus dem <one>Mycel</one>.
761
+ - In microbiology: the term morphology means ... ? <one>cell shape</one>.
762
+ - 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.
763
+ - <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>.
764
+ - Give another name for <one>bacterial pheromones</one>. A: <one>Autoinducers</one>.
765
+ - Was machen <one>Methanobacteriae</one>? Konvertieren <one>CO₂</one> zu <one>Methan</one>.
766
+ - Do <one>insects</one> <tomato>love</tomato> <two>Wolbachia</two>? Sort of! Without Wolbachia, some can not reproduce or even survive. []
767
+ - Name a <one>DNA-bridging protein</one> <two>in Bacteria</two>. A: <one>H-NS</one>.
768
+ - <one>SIM-Agar</one>: was heisst <two>SIM</two>? <one>Sulfide</one>, <one>Indole</one>, <one>Motility</one>.
769
+ - Name a bacterium where no septum formation occurs upon cell division. A: <one>Caulobacter</one>.
770
+ - <one>The smallest bacteria</one> are n micrometer in diameter? About <one>0.3 Micrometer</one>. []
771
+ - Was meinen wir mit <one>Sequestrierung des dnaA Gen Promoters</one>? Das dieser Promoter an die Zellwand geheftet wird.
772
+ - Give an example for a <one>gliding myxobacterium</one>. A: <one>Myxococcus xanthus</one>.
773
+ - <one>Chemolitotrophs</one> use <two>which substance as their carbon source</two>? <one>CO₂</one>. []
774
+ - Give another name for <one>mordant</one>. A: <one>Binding agent</one>.
775
+ - 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>
776
+ - What does <one>Glycocalyx</one> mean, literally? <one>Sugar coat</one>. URL: https://en.wikipedia.org/wiki/Glycocalyx []
777
+ - Was sind die <one>F-Antigene</one>? Das sind die Proteine der Fimbrien.
778
+ - <one>Bacterial culture medium</one> may be of which type? (1) <one>liquid</one> (2) <one>solid</one>
779
+ - 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.
780
+ - Name <one>the main structural motif</one> of <two>membrane-spanning transporters</two> in Bacteria. A: <one>12x Alpha-Helices</one>.
781
+ - Längeres Wort für <one>Alarmone</one>? <one>Alarmsubstanzen</one>.
782
+ - <one>Beggiota</one> belongs to which general group? Beggiota belongs to <two>chemolitotrophic organisms</two> that feed solely on inorganic minerals.
783
+ - 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.
784
+ - In Bacteria: what can be found in the <one>spacer</one> between <two>16S + 23S rRNA gene</two>? A <one>tRNA gene</one>.
785
+ - Define <one>Attenuation</one>. A: <one>Attenuation</one> is <two>the decrease or loss of virulence of a pathogen</two>.
786
+ - Formel für das <one>Wachstum der Bakterien</one>? <one>2 ** n</one>, wobei n die Generation ist. Generation 10 ist also 2 ** 10.
787
+ - 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.
788
+ - 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>.
789
+ - What is the <one>evolutionary rate</one>? This is <one>the number of nucleotide changes per site per year</one>.
790
+ - <one>Chemolithotrophic bacteria</one> <two>obtain their carbon</two> <three>from</three> ... ? <one>CO₂</one>.
791
+ - <one>Sergei Winogradsky</one> observed that ... <two>which bacterium</two> would not grow on the rich nutrient media used by Koch? <one>Beggiatoa</one>.
792
+ - <one>Wo</one> wurden die <two>Volutinkörner</two> entdeckt? In <one>Spirillum volutans</one>. URL: https://en.wikipedia.org/wiki/Spirillum_volutans
793
+ - Nenne <one>zwei Vertreter</one> der <two>Euryarchaeota</two>. A: (1) methanogens (2) <one>extreme Halophile</one>
794
+ - Name <one>a bacterium</one> that has a <two>phage-inducible chromosomal island</two>. A: <one>Staphylococcus aureus</one>.
795
+ - <one>Wann</one> ist die Erde entstanden? Vor etwa 4.5 Mrd Jahren.
796
+ - <one>Bei welchen Bakterien</one> verwenden wir <two>Karbolfuchsin</two>? Bei <one>gram-negativen Bakterien</one>.
797
+ - <one>Pseudomonas</one> love which sugar source? <one>Succinate</one>.
798
+ - Was sind <one>Protoplasten</one>? <one>Zellwandlose Bakterien</one>. URL: https://de.wikipedia.org/wiki/Protoplast
799
+ - <one>The best known gliding bacteria</one> are ... ? The <one>filamentous cyanobacteria</one>. URL: https://www.sciencedirect.com/science/article/pii/B9780123858764000049
800
+ - <one>DnaA</one> has an intrinsic ... activity. A: <one>DnaA</one> has an <two>intrinsic ATPase activity</two>. []
801
+ - <one>CrcZ</one> in Pseudomonads, is what exactly? <one>CrcZ</one> is a <two>regulatory RNA</two>.
802
+ - 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.
803
+ - Can <one>bacteria</one> make <two>coloured antibiotics</two>? Yes. []
804
+ - Koch's crowning scientific accomplishment was ... ? .. his <one>discovery of the causative agent of tuberculosis</one>.
805
+ - The <one>SimA dimer</one> can bind what exactly? Two FtsZ protofilaments.
806
+ - <one>Which bacteria</one> are renowned for their many vitamin requirements? <one>Lactic acid bacteria</one>.
807
+ - What does <one>bacilli</one> mean, translated? <one>Little staffs</one>.
808
+ - What type is <one>FtsA</one>? <one>FtsA</one> is an <two>ATPase</two>.
809
+ - 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.
810
+ - In Bacteria: what do the <one>Rsb proteins</one> activate? The <one>stress sigma factor Sigma B</one>.
811
+ - The <one>mycoplasma</one> belong to which genus? They belong to the <one>Mollicutes</one>.
812
+ - <one>PEP</one> can be synthesized from which key intermediate of the <two>CAC</two> (citric acid cyclce)? <one>Oxalacetate</one>. []
813
+ - <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>.
814
+ - Das cytoplasmatische Material in einer Bakterienzelle, also Ribosomen, Plasmide etc., wird wie auf die Tochterzellen verteilt? Es wird nach dem <one>Zufallsprinzip</one> segregiert; es erfolgt also eine <two>dispersive Segregation</two>.
815
+ - Was macht das Enzym <one>ATP-Sulfurylase</one>? Heftet Sulfation an ein Phoshphat an ATP. Es entsteht APS DAS IST NOCH NICHT PERFEKT HIER.
816
+ - <one>Wo</one> genau finden wir das Protein <two>RelA</two>? Es ist assoziiert mit der 50S Untereinheit des Ribosoms.
817
+ - <one>Where</one> could <two>marine snow</two> be found? In the <one>deep ocean</one>. URL: https://en.wikipedia.org/wiki/Marine_snow []
818
+ - <one>Which bacteria</one> have a <two>periplasm</two>? Only <one>gram negative bacteria</one>. []
819
+ - 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.
820
+ - Der <one>Erreger der Kreuzlähme bei Pferden</one> ist ... ? <one>Trypanosoma equinus</one>.
821
+ - 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>.
822
+ - Nenne eine <one>kristallbildende Bakterienart</one>. A: <one>Pseudomonas syringae</one>. URL: https://de.wikipedia.org/wiki/Pseudomonas_syringae []
823
+ - Give another word for <one>Bioluminescent colonies</one> of the bacterium Photobacterium. A: <one>Light-emitting colonies</one>.
824
+ - What is <one>aerotaxis</one>? <one>Movement towards or away from oxygen</one>. Aerobic bacteria show positive aerotaxis, anaerobic bacteria show negative aerotaxis.
825
+ - <one>GvpA</one> macht wieviel Prozent des Gasvesikels aus? <one>97%</one>.
826
+ - Wieso besitzen <one>Protisten</one> eine kontraktile Vakuole? Sie scheiden damit aufgenommenes überschüssiges Wasser aus. Protisten leben im Süßwasser. []
827
+ - What is the <one>thermal death zone</one>? The time it takes to kill all cells at a given temperature.
828
+ - Was sind <one>aseptic environments</one>? These are <one>environments free of microbes</one>.
829
+ - Give another name for <one>microorganisms</one>. A: <one>Microbes</one>.
830
+ - 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.
831
+ - Wie konnten vor vielen Jahren die <one>BIF</one> entstehen? A: Fe2+ wurde zu Fe3+ oxidiert, diese Eisenoxide sammelten sich an als Banded Iron Formation (BIF)
832
+ - What is a <one>one-component regulatory system</one>? This is a system in where a single protein detecs a signal and carries out a regulatory response.
833
+ - Nenne ein chemisches Gift für die meisten <lightgreen>Pilze</lightgreen>. A: <one>Phenol</one>.
834
+ - <one>Pneumococcus</one> besitzt wie viele <two>smooth capsid-types</two>? <one>3</one>. []
835
+ - 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 []
836
+ - What exactly is a <one>RNA Thermosensor</one>? A <one>RNA Thermosensor</one> is typically stable at low temperatures, unstable at high temperatures.
837
+ - Nenne einen <one>bakteriellen Lipidcarrier</one>. A: <one>Bactoprenol</one>. URL: https://de.wikipedia.org/wiki/Bactoprenol []
838
+ - Is <one>E. coli</one> smaller than a <two>human platelet</two>? Yes. []
839
+ - 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> []
840
+ - 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.
841
+ - The <one>DNA synthesis initiator</one> <two>DnaA</two> contains <three>how many domains</three>? <one>4</one>. []
842
+ - Nenne ein Beispiel für einen Organismus, in dem wir <one>Bacteriorhodopsin</one> finden können. A: <one>Halobacterium</one>.
843
+ - <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>. []
844
+ - What are <one>phenazines</one>? Phenazines are nitrogen-containing heterocyclic compounds.
845
+ - 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.
846
+ - <one>FtsA</one> ähnelt welch anderem Protein? <one>Actin</one>. (Mnemo: A ... Actin) URL: https://en.wikipedia.org/wiki/FtsA []
847
+ - Nenne einen Mikroorganismus der <one>Citronensäure</one> herstellt. A: Der Pilz <one>Aspergillus</one>. []
848
+ - <one>Photocyanins</one> absorb what? <one>Longer-wavelength red light</one>.
849
+ - Name an enzyme 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
850
+ - What is the <one>key property of living organisms</one>? A: They <one>carry an internal description of themselves</one>.
851
+ - 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>.
852
+ - 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.
853
+ - Was heisst <one>HOSCH-Filter</one>? Hochleistungs-Schwebstoff-Luftfilter.
854
+ - In regards to the <one>oriC</one>: what are <three>slow-stop mutants</three>? These are bacteria with defects - they can complete the current round of replication, but can not initiate a new round of DNA replication.
855
+ - Give one example for a <one>peptide siderophore</one>. A: <one>Aquachelin</one>.
856
+ - The <one>neutral theory of evolution</one> follows a ...? A <one>stochastic approach</one>.
857
+ - In der Mikrobiologie: was geht der <one>septum formation</one> voraus? <one>Cell elongation</one>.
858
+ - 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 []
859
+ - Most stringent <one>Biosafety Level</one>? <one>Level 4</one>. []
860
+ - 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
861
+ - <one>Welcher Sigmafaktor</one> erkennt den <three>Hitzeschock-Promotor</one>? <one>Sigmafaktor 32</one>. []
862
+ - What are <one>extremozymes</one>? Extremozymes are Enzymes that <one>function at environmental extremes</one>, such as high or low temperature, or pH.
863
+ - The largest phylum of bacteria can be found among the ... ? The <one>Proteobacteria</one>.
864
+ - Wie nennen wir <one>Viererpakete von Bakterien</one>? <one>Sarcinen</one>.
865
+ - <one>Volvox</one> kann wieviele Zellen haben? A: <one>20.000</one>. []
866
+ - Was hat <one>Bacteriochlorophyll</one> im Zentrum? <one>Mg</one> (<one>Magnesium</one>). []
867
+ - Name two molecules that are able to <one>trigger a stringent response</one>. A: (1) <one>ppGpp</one> (2) <one>pppGpp</one> []
868
+ - Was weiss man allgemein wenn man <one>petite</one> colonies sieht? Die <one>Wachstumsrate dieser Bakterien ist verlangsamt</one>.
869
+ - Define the term <one>Progenote</one>. A: This is <one>the last universal common ancestor</one>.
870
+ - <one>n %</one> der marinen Organismen können biolumineszieren? <one>75%</one>.
871
+ - <one>Why</one> do Bacteria use the <three>carbon catabolite repression</three> system? It allows them to swiftly adapt to "changing nutrient supplies".
872
+ - <one>Zymomonas mobilis</one> ist gram + oder gram -? Zymomonas mobilis ist <one>gram -</one>, so wie auch E. coli. []
873
+ - 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".
874
+ - Why is the <one>Winogradsky column</one> employed? The Winogradsky column is a simple device for culturing a large diversity of microorganisms.
875
+ - Das <one>Mesosom</one> entspricht was? Gar nichts. Es sind Artefakte, siehe URL: https://en.wikipedia.org/wiki/Mesosome
876
+ - 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.
877
+ - Where exactly does <one>transpeptidation</one> occur? Outside the cell, where ATP is unavailable.
878
+ - ... ... stimulieren die Septumbildung in Bakterien. A: <one>Replizierende Nukleotide</one>.
879
+ - 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.
880
+ - 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>.
881
+ - Andere Bezeichnung für eine <one>osmotisch inerte Form</one>? <one>Wasserunlöslich</one>.
882
+ - <one>Bdellovibrio</one> attacks which bacteria? Only <one>gram-negative bacteria</one>. []
883
+ - 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.
884
+ - What is the <one>major shape-determining protein</one> in prokaryotes? <one>MreB</one>.
885
+ - <one>DnaA assembly</one> is incompatible with ...? With binding dsDNA.
886
+ - Name <one>a bacterial protein capable of producing Alarmones</one>. A: <one>RelA</one>.
887
+ - Welche Person gilt als <one>Begründer der modernen Mikrobiologie</one>? <one>Robert Koch</one>. URL: https://de.wikipedia.org/wiki/Robert_Koch
888
+ - Allgemein: wie ist <one>DNA in einer bakteriellen Zelle</one> <three>angeordnet</three>? In <one>loops</one>, die <two>domains</two> genannt werden.
889
+ - 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.
890
+ - Do <one>bacterial chaperones</one> also <three>help assemble multiprotein complexes</three>? Yes they do. []
891
+ - Nenne 5 <one>Proteobacteria-Vertreter</one>. A: (1) Agrobacterium (2) Acetobacter (3) Bordetella (4) Neisseria (5) Aeromonas
892
+ - Beim <one>Tyndallisieren</one> setzen wir welchen Temperaturbereich ein (von, bis)? <one>70 - 100 °C</one>.
893
+ - Input, Output bei den <one>Nitrifiers</one>? (1) <one>Input</one>: <two>NH4+</two>. (2) <one>Output</one>: <two>NH3-</two>.
894
+ - Welche zwei Metalle finden wir in <one>Ferredoxin</one>? <one>Eisen</one> + <one>Schwefel</one>. []
895
+ - Give an example for a bacterium which may show <one>cannibalism</one>. A: Sporulating <one>Bacillus subtilis</one>.
896
+ - The bacterium <one>Wolbachia</one> infects in particular ... ? <one>Arthropods</one>.
897
+ - In microbiology: what is a <one>pure culture</one>? A pure culturei is a culture containing only a single kind of microorganism.
898
+ - Warum genau verwenden wir ausgerechnet <one>Leberenzyme</one> im Ames-Test? Um die Chemikalien in ihre aktive, mutagene Form zu konvertieren.
899
+ - <one>Clostridium</one> has what shape? It has <one>a drumstick-shape</one>.
900
+ - Name a <one>developmental process</one> in bacteria. A: <one>Sporulation</one>. []
901
+ - What is <one>Hydrotaxis</one>? This allows bacteria that inhabit dry environments to glide toward a gradient of increasing moisture.
902
+ - How many different <one>Type secretion systems are known in Bacteria</one>? <one>6</one>.
903
+ - Name a bacterium that employs a <one>twitching motility</one>. A: <one>Pseudomonas aeruginosa</one>. URL: https://en.wikipedia.org/wiki/Pseudomonas_aeruginosa
904
+ - Was bringt eine <one>Rodacplatte</one>? Diese <one>Abklatschplatte</one> erlaubt es uns die Keimbelastung an einer Oberfläche zu beurteilen.
905
+ - Is <one>Arthrobacter luteus</one> gram-positive or gram-negative? It is a species of <one>gram-positive bacteria</one>.
906
+ - Give an example for <one>a green, nonsulfur bacterium</one>. A: <one>Chloroflexus</one>. URL: https://en.wikipedia.org/wiki/Chloroflexus_aurantiacus []
907
+ - For <one>tmRNA rescue</one> to happen, the tmRNA needs which protein, in order to form a complex? <one>SmpB</one>.
908
+ - Das <one>Propionibacterium</one> ist <two>gram-positiv</two> oder <two>gram-negativ</two>? <one>Gram-positiv</one>. []
909
+ - Was sind die <one>Gallionella</one>? Dies sind die <one>Eisenbakterien</one>. URL: https://de.wikipedia.org/wiki/Gallionella
910
+ - Who is <one>the most abundant prokaryote in the ocean</one>? <one>Pelagibacter</one>.
911
+ - 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>.
912
+ - 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
913
+ - Name two major types of <one>cell movement for bacteria</one>. A: (1) <one>gliding</one> (2) <one>swimming</one>
914
+ - 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.
915
+ - Nenne einen <one>Aflatoxin-Bildner</one>. A: <one>Aspergillus flavus</one>.
916
+ - Im <one>Phosphotransferasesystem</one>: was heisst <two>Hpr</two>? <one>Histidine-rich protein</one>.
917
+ - Name an enzyme that <one>Pseudomonas aeruginosa</one> lacks. A: <one>Phosphofructokinase</one>.
918
+ - Nenne ein <one>monopolar monotriches</one> Bakterium. A: <one>Vibrio cholerae</one>.
919
+ - The <one>Primase</one> forms a complex with ...? <one>Helicase</one>.
920
+ - 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>
921
+ - Wie erkennen wir ob das Enzym <one>Katalase</one> bei Bakterien aktiv ist? Durch <one>Entwicklung von Gasbläschen</one>.
922
+ - Name a technique that <one>Beijerinck</one> has developed. A: The <one>enrichment culture technique</one>.
923
+ - 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>
924
+ - Definiere <one>bacteriostatic agents</one>. A: These are <one>agents that inhibit bacterial growth</one>.
925
+ - Maximale Absorption in Nanometer bei Bacterochlorophyll a (von-bis)? <one>800-925 nm</one>.
926
+ - Allgemein formuliert: <one>Darmbakterien</one> sind <two>besonders resistent</two> gegenüber welchen <three>Säuren</three>? <one>Gallensäuren</one>.
927
+ - 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.
928
+ - How is the <one>cholera toxin</one> exported? Through a type II secretion system.
929
+ - In microbiology: what is <one>a viable cell</one>? One that is able to divide and form offspring.
930
+ - Langer Name für <one>Bactoprenol</one>? <one>Undecapenoldiphosphate</one>.
931
+ - Name a bacterium that can grow near pH0. A: <one>Ferroplasmum</one>.
932
+ - Was sind <one>Spiroplasmen</one>? Schnelle, spiralförmige Bakterien.
933
+ - Warum benötigen die Bakterien das Enzym <one>Katalase</one>? Für <one>aerobes Wachstum</one>.
934
+ - Nenne ein Bakterium, das <one>Granulose</one> enthält. A: <one>Clostridium butyricum</one>.
935
+ - <one>Epulopiscium fishelsoni</one> is not only very large, but has what other curious feature? It <one>contains multiple copies of its genome</one>.
936
+ - 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.
937
+ - What is a <one>viable bacterial organism</one>? This is <one>a bacterium capable of replicating</one>.
938
+ - Formel für die <one>durchschnittliche Generationszeit</one> bei Bakterien? g = t / n
939
+ - Die <one>Zellwand der Hefe</one> besteht aus? <one>Chitin</one> und <one>Hemicellulose</one>.
940
+ - Was ist mit dem Begriff <one>Antibiose</one> gemeint? Wenn die Vermehrung phytopathogener Bodenkeime durch andere Mikroben unterdrückt wird.
941
+ - Lebenszyklus der <one>Rickettsia</one>? Dies sind <one>Parasiten</one>.
942
+ - How old is the <one>first evidence of microbial life</one>? A: About <one>3.45 billion years ago</one>.
943
+ - Die <one>bakterielle DNA-Polymerase III</one> besteht aus <two>n Untereinheiten</two>? <one>10</one>.
944
+ - Which <one>two phyla</one> are part of the <two>Archaea</two>? (1) <one>Euryarchaeota</one> (2) <one>Crenarchaeota</one>
945
+ - In Bacteriology: where do we find <one>nucleoid occlusion</one>? Around the nucleoid.
946
+ - Nenne einen Unterschied zwischen den <one>Basenanaloga</one> und den <one>alkylierenden Verbindungen</one>. A: Basenanaloga wirken nur in replizierender DNA, alkylierende Verbindungen wirken auch in nichtreplizierender DNA.
947
+ - Was geschieht im <one>Hydrogenosom</one>? Die Oxidation von Pyruvat zu Acetyl-CoA, CO2 und H2.
948
+ - 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.
949
+ - The <one>initiator</one> (of DNA synthesis) binds to ...? The <one>replicator</one>.
950
+ - Was ist die <one>durchschnittliche Generationszeit</one>? Dies ist die Zeit, die eine aktiv wachsende Bakterienkultur zur Verdoppelung benötigt.
951
+ - Name one organism that <one>produces red pigments</one>. A: <one>Serratia marcescens</one>. URL: https://de.wikipedia.org/wiki/Serratia_marcescens
952
+ - Der <one>Zellertrag durch Bakterien</one> ist, biochemisch betrachtet, <two>direkt proportional der</two> ...? A: Der <one>produzierten ATP Menge</one>.
953
+ - <one>Welches Bakterium</one> erzeugt <two>Lysostaphin</two>? <royalblue>Staphylococcus simulans</royalblue>. Es wirkt gegen Staphylococcus aureus. Andere Quellen sagen das dies von Staphylococcus staphylolyticus erzeugt wird.
954
+ - Nenne einen Organismus, der eine <one>parakristalline S-Schicht</one> besitzt. A: <one>Thermoproteus</one>.
955
+ - 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
956
+ - Nenne 3 Möglichkeiten bei der Konsistenz der bakteriellen Nährmedien. A: (1) feste Medien (2) Halbfeste Medien (3) flüssige Medien
957
+ - What means "morphology" in microbiology? Cell shape.
958
+ - Sind Mycobakterien bei der Gram-Färbung eher gram-negativ oder gram-positiv? Gram-positiv.
959
+ - Gib ein Beispiel wo die Gram-Färbung nicht funktioniert. A: Säurefeste Bakterien wie "Mycobacterien" sind nicht Gram-differenzierbar.
960
+ - 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
961
+ - Welche Energie verwendet FtsZ? GTP.
962
+ - Name an antibiotic that "Serratia marcescens" can produce. A: "prodigiosin".
963
+ - Die bakterielle DNA ist um strukturelle Proteine gewickelt. Nenne 3 davon. A: (1) H-NS (2) IHF (3) HU
964
+ - Was ermöglicht der <one>Chemostat</one>? Er ermöglicht es das eine Kultur von grossen Bakterienmengen bei konstanten Bedingungen wachsen kann.
965
+ - <one>SecB</one> gehört zu welchem Sekretionssystem? Type II secretion pathway.
966
+ - The CRISPR system provides a form of acquired immunity. How does it achieve this? Short segments of foreign DNA (= "spacers") are incorporated into the genome between CRISPR repeats, and serve as a memory of past exposures.
967
+ - What means "Diauxie"? Growth on two sugars, such as lactose and glucose.
968
+ - Wie geht die mikrobielle "Alkoholreihe"? Ethanol zu Acetaldehyd zu Essigsäure (EAE).
969
+ - What does "Teicoplanin" do? This antibiotic inhibits the construction of bacterial cell walls.
970
+ - In Biology, what is "disruptive selection" and when does it take place? It takes place when two phenotypes with high fitness are separated by intermediate phenotypes of lower fitness. This usually occurs in patchy environments, with more than one discrete phase.
971
+ - 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.
972
+ - The "S. aureus" colonization of abiotic surfaces depends on ..? The charge of its teichoic acid.
973
+ - Welche Bakterien können (allgemein) Stickstoff fixieren? Diazotrophe Bakterien.
974
+ - Was macht Beggiota mit H2S? Oxidiert es zu H2SO4.
975
+ - Wie viel Prozent der Photosynthese (von-bis) auf der Erde werden durch die Cyanobacteria erledigt? 20-30%.
976
+ - Nenne ein Bakterium der green-sulfur-bacteria Art, das bei 2500 Metern Tiefe lebt. A: GSB1
977
+ - Gib 4 Gründe an warum rRNA ein guter Chronometer ist! A: (1) Die rRNA Sequenz ist lange und hat viele hypervariable Regionen. (2) rRNA ist in praktisch allen Organismen vorhanden (3) funktionell ähnelt sich rRNA da alle Organismen in Proteinsynthese partizipieren müssen (4) rRNA Sequenzen ändern sich nur langsam (gut für Chronometer) und können so gut zwischen 2 Organismen verglichen werden.