studium 0.10.1

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

Potentially problematic release.


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

Files changed (882) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +1982 -0
  3. data/bin/ask_exam_question +7 -0
  4. data/bin/check_description_of_these_lectures +7 -0
  5. data/bin/curriculum_module_displayer +7 -0
  6. data/bin/d10 +7 -0
  7. data/bin/d100 +7 -0
  8. data/bin/d15 +7 -0
  9. data/bin/d20 +7 -0
  10. data/bin/d25 +7 -0
  11. data/bin/d3 +7 -0
  12. data/bin/d30 +7 -0
  13. data/bin/d5 +7 -0
  14. data/bin/determine_curricula +7 -0
  15. data/bin/exam_registration_at +7 -0
  16. data/bin/exam_statistics +7 -0
  17. data/bin/exams_per_month +9 -0
  18. data/bin/finished_exams_at_this_university +7 -0
  19. data/bin/flashcards +7 -0
  20. data/bin/mandatory_continuous_assessment +7 -0
  21. data/bin/mandatory_upcoming_courses +7 -0
  22. data/bin/n_exam_questions_already_answered +16 -0
  23. data/bin/nquestions +7 -0
  24. data/bin/nsolved +7 -0
  25. data/bin/open_last_exam_question_asked_file +7 -0
  26. data/bin/passed_pr/303/274fungsimmanente_courses +7 -0
  27. data/bin/return_n_ects_from_this_file +7 -0
  28. data/bin/show_lectures_on_the_commandline +7 -0
  29. data/bin/show_themes +7 -0
  30. data/bin/solved +9 -0
  31. data/bin/solved_ects +7 -0
  32. data/bin/studienkennzahl +7 -0
  33. data/bin/studium +7 -0
  34. data/bin/studium_skeleton +7 -0
  35. data/bin/ufind +7 -0
  36. data/bin/upcoming_exams +7 -0
  37. data/bin/week_parser +7 -0
  38. data/doc/ECTS_CONSIDERATIONS.md +81 -0
  39. data/doc/HOW_TO_ADAPT_THIS_PROJECT.md +43 -0
  40. data/doc/HOW_TO_DETERMINE_WHICH_PART_IS_THE_QUESTION_AND_WHICH_PART_IS_THE_ANSWER.md +47 -0
  41. data/doc/README.gen +1965 -0
  42. data/doc/TODO_FOR_STUDIUM_GEM.md +113 -0
  43. data/doc/deprecated_components.md +24 -0
  44. data/doc/documentation_for_the_file_lecture_information.md +294 -0
  45. data/doc/elegant_colours.md +20 -0
  46. data/img/STUDIES.png +0 -0
  47. data/lib/studium.rb +5 -0
  48. data/lib/studium/autoinclude.rb +7 -0
  49. data/lib/studium/base/base.rb +84 -0
  50. data/lib/studium/base/cliner.rb +58 -0
  51. data/lib/studium/base/colours.rb +307 -0
  52. data/lib/studium/base/commandline_arguments.rb +64 -0
  53. data/lib/studium/base/constants.rb +34 -0
  54. data/lib/studium/base/curriculum.rb +329 -0
  55. data/lib/studium/base/directory_to_the_exam_topics.rb +23 -0
  56. data/lib/studium/base/editor.rb +28 -0
  57. data/lib/studium/base/encoding.rb +36 -0
  58. data/lib/studium/base/esystem.rb +23 -0
  59. data/lib/studium/base/minimal_prototype.rb +66 -0
  60. data/lib/studium/base/misc.rb +854 -0
  61. data/lib/studium/base/mode.rb +92 -0
  62. data/lib/studium/base/obtain.rb +145 -0
  63. data/lib/studium/base/opnn.rb +46 -0
  64. data/lib/studium/base/prototype.rb +92 -0
  65. data/lib/studium/base/readlines.rb +55 -0
  66. data/lib/studium/base/replace.rb +110 -0
  67. data/lib/studium/base/reset.rb +77 -0
  68. data/lib/studium/base/run.rb +17 -0
  69. data/lib/studium/base/src_dir_at_home.rb +20 -0
  70. data/lib/studium/base/time.rb +634 -0
  71. data/lib/studium/base/unicode.rb +95 -0
  72. data/lib/studium/base/word_wrap.rb +58 -0
  73. data/lib/studium/boku/README.md +4 -0
  74. data/lib/studium/boku/boku_biotechnology_all_master_lectures.rb +142 -0
  75. data/lib/studium/boku/boku_/303/266ffnungszeiten.rb +29 -0
  76. data/lib/studium/boku/show_three_pillars_of_these_lectures.rb +96 -0
  77. data/lib/studium/boku/three_pillars.rb +232 -0
  78. data/lib/studium/check_and_sanitize/README.md +11 -0
  79. data/lib/studium/check_and_sanitize/check_curriculum_for_correct_separation_of_bachelor_and_master.rb +149 -0
  80. data/lib/studium/check_and_sanitize/check_for_all_exam_topics_being_registered.rb +107 -0
  81. data/lib/studium/check_and_sanitize/check_for_existing_description_of_this_lecture.rb +197 -0
  82. data/lib/studium/check_and_sanitize/check_the_lecture_information_file.rb +171 -0
  83. data/lib/studium/check_and_sanitize/missing_priority_entry.rb +44 -0
  84. data/lib/studium/check_and_sanitize/sanitize_this_string_containing_the_lva_dates.rb +79 -0
  85. data/lib/studium/colours/colours.rb +570 -0
  86. data/lib/studium/colours/sfancy.rb +40 -0
  87. data/lib/studium/colours/sfile.rb +35 -0
  88. data/lib/studium/colours/simp.rb +38 -0
  89. data/lib/studium/colours/use_this_colour_for_exam_questions_and_exam_answers.rb +76 -0
  90. data/lib/studium/commandline/commandline.rb +25 -0
  91. data/lib/studium/commandline/constants.rb +16 -0
  92. data/lib/studium/commandline/help.rb +152 -0
  93. data/lib/studium/commandline/initialize.rb +27 -0
  94. data/lib/studium/commandline/menu.rb +760 -0
  95. data/lib/studium/commandline/misc.rb +707 -0
  96. data/lib/studium/commandline/reset.rb +24 -0
  97. data/lib/studium/commandline/run.rb +20 -0
  98. data/lib/studium/constants/boku_wien.rb +52 -0
  99. data/lib/studium/constants/constants.rb +25 -0
  100. data/lib/studium/constants/delay.rb +28 -0
  101. data/lib/studium/constants/editor.rb +28 -0
  102. data/lib/studium/constants/exam_topics.rb +183 -0
  103. data/lib/studium/constants/file_constants.rb +875 -0
  104. data/lib/studium/constants/image_constants.rb +216 -0
  105. data/lib/studium/constants/last_question_asked.rb +38 -0
  106. data/lib/studium/constants/lecture_types_that_are_mandatory_continuous_assessment.rb +47 -0
  107. data/lib/studium/constants/misc.rb +163 -0
  108. data/lib/studium/constants/namespace.rb +14 -0
  109. data/lib/studium/constants/newline.rb +14 -0
  110. data/lib/studium/constants/regexes.rb +35 -0
  111. data/lib/studium/constants/return_file_for_this_curriculum.rb +411 -0
  112. data/lib/studium/constants/roebe.rb +173 -0
  113. data/lib/studium/constants/time.rb +52 -0
  114. data/lib/studium/constants/tu_wien.rb +39 -0
  115. data/lib/studium/constants/uni_wien.rb +24 -0
  116. data/lib/studium/constants/unicode.rb +27 -0
  117. data/lib/studium/constants/week.rb +138 -0
  118. data/lib/studium/constants/www_constants.rb +23 -0
  119. data/lib/studium/curricula/curriculum.rb +199 -0
  120. data/lib/studium/curricula/curriculum_as_string.rb +279 -0
  121. data/lib/studium/curricula/curriculum_module_displayer/constants.rb +38 -0
  122. data/lib/studium/curricula/curriculum_module_displayer/curriculum_module_displayer.rb +417 -0
  123. data/lib/studium/curricula/curriculum_module_displayer/initialize.rb +25 -0
  124. data/lib/studium/curricula/curriculum_module_displayer/menu.rb +45 -0
  125. data/lib/studium/curricula/curriculum_module_displayer/reset.rb +77 -0
  126. data/lib/studium/curricula/curriculum_module_displayer/run.rb +20 -0
  127. data/lib/studium/curricula/curriculum_module_displayer/set_use_this_curriculum.rb +93 -0
  128. data/lib/studium/curricula/curriculum_module_displayer/show_and_report.rb +190 -0
  129. data/lib/studium/curricula/determine_curricula/constants.rb +16 -0
  130. data/lib/studium/curricula/determine_curricula/determine_curricula.rb +36 -0
  131. data/lib/studium/curricula/determine_curricula/help.rb +39 -0
  132. data/lib/studium/curricula/determine_curricula/initialize.rb +48 -0
  133. data/lib/studium/curricula/determine_curricula/menu.rb +138 -0
  134. data/lib/studium/curricula/determine_curricula/misc.rb +402 -0
  135. data/lib/studium/curricula/determine_curricula/report.rb +131 -0
  136. data/lib/studium/curricula/determine_curricula/reset.rb +62 -0
  137. data/lib/studium/curricula/determine_curricula/run.rb +19 -0
  138. data/lib/studium/curricula/determine_elective_courses_in_this_curriculum.rb +112 -0
  139. data/lib/studium/curricula/display_bachelor_curricula.rb +89 -0
  140. data/lib/studium/curricula/mitteilungsbl/303/244tter.rb +336 -0
  141. data/lib/studium/curricula/modules/display_on_the_commandline.rb +316 -0
  142. data/lib/studium/curricula/modules/return_n_ects_in_this_module.rb +74 -0
  143. data/lib/studium/curricula/n_percent_solved_in_this_curriculum.rb +75 -0
  144. data/lib/studium/curricula/random_curriculum_creator.rb +171 -0
  145. data/lib/studium/curricula/show_lectures_of_this_curriculum.rb +114 -0
  146. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/constants.rb +16 -0
  147. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/initialize.rb +27 -0
  148. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/menu.rb +35 -0
  149. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/misc.rb +242 -0
  150. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/report.rb +140 -0
  151. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/reset.rb +67 -0
  152. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/show_lectures_of_this_curriculum_id.rb +37 -0
  153. data/lib/studium/curricula/show_solved_percentage_among_the_registered_curricula.rb +87 -0
  154. data/lib/studium/ects/boku_ects_splitter.rb +127 -0
  155. data/lib/studium/ects/ects_parser.rb +179 -0
  156. data/lib/studium/ects/ects_per_university.rb +140 -0
  157. data/lib/studium/ects/ects_scanner.rb +141 -0
  158. data/lib/studium/ects/ects_to_university_parser.rb +148 -0
  159. data/lib/studium/ects/erledigt.rb +131 -0
  160. data/lib/studium/ects/last_entry_is_curriculum.rb +147 -0
  161. data/lib/studium/ects/n_ects_in_these_lectures.rb +185 -0
  162. data/lib/studium/ects/n_ects_points_in_mandatory_presence_courses.rb +50 -0
  163. data/lib/studium/ects/noch_zu_absolvieren.rb +172 -0
  164. data/lib/studium/ects/return_n_ects_from_this_file.rb +58 -0
  165. data/lib/studium/ects/return_n_ects_from_this_url.rb +202 -0
  166. data/lib/studium/ects/search_for_n_ects.rb +540 -0
  167. data/lib/studium/ects/show_completed_ects_in_all_curricula.rb +210 -0
  168. data/lib/studium/ects/show_passed_credits_per_curriculum.rb +254 -0
  169. data/lib/studium/ects/simple_total_ects_points.rb +143 -0
  170. data/lib/studium/ects/solved_ects/constants.rb +24 -0
  171. data/lib/studium/ects/solved_ects/reset.rb +54 -0
  172. data/lib/studium/ects/solved_ects/solved_ects.rb +325 -0
  173. data/lib/studium/ects/solved_ects_per_university/reset.rb +25 -0
  174. data/lib/studium/ects/solved_ects_per_university/solved_ects_per_university.rb +106 -0
  175. data/lib/studium/ects/still_missing.rb +133 -0
  176. data/lib/studium/ects/sum_of_ects.rb +150 -0
  177. data/lib/studium/encoding/encoding.rb +150 -0
  178. data/lib/studium/exam_topics/RNAi_siRNA_and_miRNA +79 -0
  179. data/lib/studium/exam_topics/abfall_als_ressource +86 -0
  180. data/lib/studium/exam_topics/advanced_biochemistry +762 -0
  181. data/lib/studium/exam_topics/advanced_biotechnology +192 -0
  182. data/lib/studium/exam_topics/advanced_cellbiology +25 -0
  183. data/lib/studium/exam_topics/advanced_chemistry +453 -0
  184. data/lib/studium/exam_topics/advanced_microbiology +44 -0
  185. data/lib/studium/exam_topics/advanced_topics_in_plant_sciences +51 -0
  186. data/lib/studium/exam_topics/advanced_virology +52 -0
  187. data/lib/studium/exam_topics/ageing +101 -0
  188. data/lib/studium/exam_topics/agrar_ecology +61 -0
  189. data/lib/studium/exam_topics/agrarmarkt +70 -0
  190. data/lib/studium/exam_topics/agrarphysik +35 -0
  191. data/lib/studium/exam_topics/alcohols +29 -0
  192. data/lib/studium/exam_topics/algorithms +49 -0
  193. data/lib/studium/exam_topics/allergie +73 -0
  194. data/lib/studium/exam_topics/allgemeine_genetik +1006 -0
  195. data/lib/studium/exam_topics/allgemeine_mikrobiologie +855 -0
  196. data/lib/studium/exam_topics/aminoacids +417 -0
  197. data/lib/studium/exam_topics/analytische_chemie_1 +131 -0
  198. data/lib/studium/exam_topics/analytische_chemie_2 +31 -0
  199. data/lib/studium/exam_topics/anatomie +248 -0
  200. data/lib/studium/exam_topics/anorganische_chemie +289 -0
  201. data/lib/studium/exam_topics/anthropologie +115 -0
  202. data/lib/studium/exam_topics/antibodies_and_antigens +747 -0
  203. data/lib/studium/exam_topics/apoptosis +35 -0
  204. data/lib/studium/exam_topics/archaea +41 -0
  205. data/lib/studium/exam_topics/architecture +8 -0
  206. data/lib/studium/exam_topics/artificial_intelligence +81 -0
  207. data/lib/studium/exam_topics/audio +10 -0
  208. data/lib/studium/exam_topics/bacteriophages +224 -0
  209. data/lib/studium/exam_topics/basic_biochemistry +1008 -0
  210. data/lib/studium/exam_topics/basic_biotechnology +1011 -0
  211. data/lib/studium/exam_topics/basic_chemistry +1007 -0
  212. data/lib/studium/exam_topics/basic_virology +955 -0
  213. data/lib/studium/exam_topics/bauwesen +6 -0
  214. data/lib/studium/exam_topics/betriebssysteme +125 -0
  215. data/lib/studium/exam_topics/betriebswirtschaftslehre +29 -0
  216. data/lib/studium/exam_topics/bioanalytik_und_biosensoren +381 -0
  217. data/lib/studium/exam_topics/biochips +78 -0
  218. data/lib/studium/exam_topics/bioelektrochemie +56 -0
  219. data/lib/studium/exam_topics/biofilms +22 -0
  220. data/lib/studium/exam_topics/bioinformatics +475 -0
  221. data/lib/studium/exam_topics/biological_therapeutics +152 -0
  222. data/lib/studium/exam_topics/biologie +134 -0
  223. data/lib/studium/exam_topics/biomarkers +106 -0
  224. data/lib/studium/exam_topics/biomaterials +46 -0
  225. data/lib/studium/exam_topics/biomembranes +6 -0
  226. data/lib/studium/exam_topics/bionik +65 -0
  227. data/lib/studium/exam_topics/biophysik +34 -0
  228. data/lib/studium/exam_topics/biopolymers +10 -0
  229. data/lib/studium/exam_topics/bioprozesstechnik +139 -0
  230. data/lib/studium/exam_topics/bioressourcenmanagement +78 -0
  231. data/lib/studium/exam_topics/bodenkunde +345 -0
  232. data/lib/studium/exam_topics/bodenmikrobiologie +40 -0
  233. data/lib/studium/exam_topics/cancerbiology +441 -0
  234. data/lib/studium/exam_topics/cell_cultures +154 -0
  235. data/lib/studium/exam_topics/cellbiology +962 -0
  236. data/lib/studium/exam_topics/cellular_transport_and_protein_secretion +27 -0
  237. data/lib/studium/exam_topics/chemische_technologie_anorganischer_stoffe +208 -0
  238. data/lib/studium/exam_topics/chemisches_labor +59 -0
  239. data/lib/studium/exam_topics/chemotaxis_and_motility_in_prokaryotes +74 -0
  240. data/lib/studium/exam_topics/citric_acid_cycle +70 -0
  241. data/lib/studium/exam_topics/clinical_microbiology +486 -0
  242. data/lib/studium/exam_topics/computer_graphics +5 -0
  243. data/lib/studium/exam_topics/computer_science +269 -0
  244. data/lib/studium/exam_topics/crispr +25 -0
  245. data/lib/studium/exam_topics/cyanobacteria +37 -0
  246. data/lib/studium/exam_topics/cytogenetics_and_chromosome_biology +506 -0
  247. data/lib/studium/exam_topics/databases_and_sql +105 -0
  248. data/lib/studium/exam_topics/dna_mutation_and_dna_repair +33 -0
  249. data/lib/studium/exam_topics/dna_replication +53 -0
  250. data/lib/studium/exam_topics/ecogenetics +27 -0
  251. data/lib/studium/exam_topics/ecological_agriculture +12 -0
  252. data/lib/studium/exam_topics/ecology +313 -0
  253. data/lib/studium/exam_topics/economy +210 -0
  254. data/lib/studium/exam_topics/elektronenmikroskopie +353 -0
  255. data/lib/studium/exam_topics/elektrophorese +88 -0
  256. data/lib/studium/exam_topics/elektrotechnik +8 -0
  257. data/lib/studium/exam_topics/elisa +54 -0
  258. data/lib/studium/exam_topics/embryologie_und_entwicklung +541 -0
  259. data/lib/studium/exam_topics/endospores_and_spores +92 -0
  260. data/lib/studium/exam_topics/enzymes_and_cofactors +327 -0
  261. data/lib/studium/exam_topics/epigenetik +177 -0
  262. data/lib/studium/exam_topics/ethik +125 -0
  263. data/lib/studium/exam_topics/evolution_and_evolutionary_genetics +323 -0
  264. data/lib/studium/exam_topics/excel +7 -0
  265. data/lib/studium/exam_topics/fish +19 -0
  266. data/lib/studium/exam_topics/fluorescence_microscopy +7 -0
  267. data/lib/studium/exam_topics/food_microbiology_and_food_biotechnology +17 -0
  268. data/lib/studium/exam_topics/forensik +11 -0
  269. data/lib/studium/exam_topics/forstwirtschaft +52 -0
  270. data/lib/studium/exam_topics/fortgeschrittene_genetik +429 -0
  271. data/lib/studium/exam_topics/fortgeschrittene_gentechnik +189 -0
  272. data/lib/studium/exam_topics/fortgeschrittene_physik +6 -0
  273. data/lib/studium/exam_topics/fungi +78 -0
  274. data/lib/studium/exam_topics/genetische_krankheiten +150 -0
  275. data/lib/studium/exam_topics/genexpression +1008 -0
  276. data/lib/studium/exam_topics/genomics_and_metagenomics +205 -0
  277. data/lib/studium/exam_topics/gentechnik_und_praktische_biochemie +863 -0
  278. data/lib/studium/exam_topics/geochemistry +66 -0
  279. data/lib/studium/exam_topics/geography +5 -0
  280. data/lib/studium/exam_topics/geologie_und_mineralogie +610 -0
  281. data/lib/studium/exam_topics/geschichte +94 -0
  282. data/lib/studium/exam_topics/gluconeogenesis +34 -0
  283. data/lib/studium/exam_topics/glycolysis +95 -0
  284. data/lib/studium/exam_topics/glykomik +42 -0
  285. data/lib/studium/exam_topics/glyoxylatzyklus +23 -0
  286. data/lib/studium/exam_topics/grassland_cultivation +32 -0
  287. data/lib/studium/exam_topics/hormone +122 -0
  288. data/lib/studium/exam_topics/html +7 -0
  289. data/lib/studium/exam_topics/human_ecology +8 -0
  290. data/lib/studium/exam_topics/hygiene +191 -0
  291. data/lib/studium/exam_topics/imaging_and_microscopy +224 -0
  292. data/lib/studium/exam_topics/immunanalytik +88 -0
  293. data/lib/studium/exam_topics/immunologie +888 -0
  294. data/lib/studium/exam_topics/informatik +95 -0
  295. data/lib/studium/exam_topics/innate_immunity +20 -0
  296. data/lib/studium/exam_topics/insekten +30 -0
  297. data/lib/studium/exam_topics/insulin_and_diabetes +55 -0
  298. data/lib/studium/exam_topics/java +440 -0
  299. data/lib/studium/exam_topics/javascript +10 -0
  300. data/lib/studium/exam_topics/klima +6 -0
  301. data/lib/studium/exam_topics/landtechnik +27 -0
  302. data/lib/studium/exam_topics/lebensmittel +206 -0
  303. data/lib/studium/exam_topics/lebensmitteltechnologie +16 -0
  304. data/lib/studium/exam_topics/linux +5 -0
  305. data/lib/studium/exam_topics/lipids +95 -0
  306. data/lib/studium/exam_topics/macroeconomics +39 -0
  307. data/lib/studium/exam_topics/mathematics +175 -0
  308. data/lib/studium/exam_topics/medizin_und_biomedizinische_technik +250 -0
  309. data/lib/studium/exam_topics/medizinische_chemie_und_pharmazie +397 -0
  310. data/lib/studium/exam_topics/messtechnik_und_regeltechnik +104 -0
  311. data/lib/studium/exam_topics/metabolismus +433 -0
  312. data/lib/studium/exam_topics/microbial_ecology +35 -0
  313. data/lib/studium/exam_topics/mikrobielle_lebensgemeinschaften +34 -0
  314. data/lib/studium/exam_topics/mikrobielle_physiologie +153 -0
  315. data/lib/studium/exam_topics/mixed +289 -0
  316. data/lib/studium/exam_topics/molecular_biology_of_plants +235 -0
  317. data/lib/studium/exam_topics/molekulare_medizin +129 -0
  318. data/lib/studium/exam_topics/nanotechnologie +303 -0
  319. data/lib/studium/exam_topics/nature_conservation_and_biodiversity +165 -0
  320. data/lib/studium/exam_topics/naturstoffe +9 -0
  321. data/lib/studium/exam_topics/netzwerke +32 -0
  322. data/lib/studium/exam_topics/neurobiology +266 -0
  323. data/lib/studium/exam_topics/nucleotide_sequencing +30 -0
  324. data/lib/studium/exam_topics/object_oriented_modeling +14 -0
  325. data/lib/studium/exam_topics/obstbau +234 -0
  326. data/lib/studium/exam_topics/organische_chemie +1007 -0
  327. data/lib/studium/exam_topics/organische_chemie_2 +72 -0
  328. data/lib/studium/exam_topics/paleobiology +33 -0
  329. data/lib/studium/exam_topics/parasitic_diseases_and_molecular_infection_biology +335 -0
  330. data/lib/studium/exam_topics/patent_law +55 -0
  331. data/lib/studium/exam_topics/pathologie +713 -0
  332. data/lib/studium/exam_topics/pcr +133 -0
  333. data/lib/studium/exam_topics/peroxisomes_glycosomes_and_lysosomes +54 -0
  334. data/lib/studium/exam_topics/pflanzenanatomie +240 -0
  335. data/lib/studium/exam_topics/pflanzenbau +24 -0
  336. data/lib/studium/exam_topics/pflanzenschutz +35 -0
  337. data/lib/studium/exam_topics/pflanzenwissenschaften +1009 -0
  338. data/lib/studium/exam_topics/pharmaceutical_biotechnology +250 -0
  339. data/lib/studium/exam_topics/physik +338 -0
  340. data/lib/studium/exam_topics/physikalische_chemie +85 -0
  341. data/lib/studium/exam_topics/physiology_and_histology +485 -0
  342. data/lib/studium/exam_topics/phytochemie +33 -0
  343. data/lib/studium/exam_topics/plant_biotechnology +127 -0
  344. data/lib/studium/exam_topics/plant_breeding +64 -0
  345. data/lib/studium/exam_topics/plant_development +50 -0
  346. data/lib/studium/exam_topics/populationsgenetik +136 -0
  347. data/lib/studium/exam_topics/posttranslationale_modifikation_von_proteinen +186 -0
  348. data/lib/studium/exam_topics/projektmanagement +218 -0
  349. data/lib/studium/exam_topics/prokaryote_genetics +470 -0
  350. data/lib/studium/exam_topics/proteomik +38 -0
  351. data/lib/studium/exam_topics/prozesstechnik +95 -0
  352. data/lib/studium/exam_topics/psychologie +9 -0
  353. data/lib/studium/exam_topics/python +350 -0
  354. data/lib/studium/exam_topics/quality_management +241 -0
  355. data/lib/studium/exam_topics/rechtsgrundlagen +115 -0
  356. data/lib/studium/exam_topics/research_topics_in_immunobiology +42 -0
  357. data/lib/studium/exam_topics/rna_and_dna +362 -0
  358. data/lib/studium/exam_topics/rna_seq +11 -0
  359. data/lib/studium/exam_topics/ruby +131 -0
  360. data/lib/studium/exam_topics/ruby_on_rails +62 -0
  361. data/lib/studium/exam_topics/scientific_writing_and_publishing +38 -0
  362. data/lib/studium/exam_topics/semisynthese_von_proteinen_und_nukleotiden +120 -0
  363. data/lib/studium/exam_topics/sexualbiologie +59 -0
  364. data/lib/studium/exam_topics/signal_transduction_and_laser_systems +136 -0
  365. data/lib/studium/exam_topics/splicing_exons_and_introns +57 -0
  366. data/lib/studium/exam_topics/statistik +202 -0
  367. data/lib/studium/exam_topics/stemcells +87 -0
  368. data/lib/studium/exam_topics/structural_bioinformatics +54 -0
  369. data/lib/studium/exam_topics/strukturbiologie +319 -0
  370. data/lib/studium/exam_topics/system_biology_and_synthetic_biology +87 -0
  371. data/lib/studium/exam_topics/systematische_zoologie +430 -0
  372. data/lib/studium/exam_topics/technical_ecology +144 -0
  373. data/lib/studium/exam_topics/technische_chemie +194 -0
  374. data/lib/studium/exam_topics/technische_grundlagen_der_informatik +22 -0
  375. data/lib/studium/exam_topics/technische_mikrobiologie +403 -0
  376. data/lib/studium/exam_topics/technisches_zeichnen +5 -0
  377. data/lib/studium/exam_topics/the_bacterial_cell_wall +86 -0
  378. data/lib/studium/exam_topics/the_c_plus_plus_programming_language +488 -0
  379. data/lib/studium/exam_topics/the_c_programming_language +128 -0
  380. data/lib/studium/exam_topics/the_cellcycle +65 -0
  381. data/lib/studium/exam_topics/the_european_union +119 -0
  382. data/lib/studium/exam_topics/the_interferon_system +32 -0
  383. data/lib/studium/exam_topics/the_microbiome +163 -0
  384. data/lib/studium/exam_topics/the_universe +6 -0
  385. data/lib/studium/exam_topics/theoretische_chemie +5 -0
  386. data/lib/studium/exam_topics/theoretische_informatik +157 -0
  387. data/lib/studium/exam_topics/tierzucht +94 -0
  388. data/lib/studium/exam_topics/toxikologie +403 -0
  389. data/lib/studium/exam_topics/transcription +26 -0
  390. data/lib/studium/exam_topics/translation_ribosomes_and_translational_control +138 -0
  391. data/lib/studium/exam_topics/umweltbiotechnologie +58 -0
  392. data/lib/studium/exam_topics/umweltchemie +233 -0
  393. data/lib/studium/exam_topics/urbanism_and_traffic +19 -0
  394. data/lib/studium/exam_topics/vaccines_and_vaccination +234 -0
  395. data/lib/studium/exam_topics/vectors_and_gene_therapy +237 -0
  396. data/lib/studium/exam_topics/verfahrenstechnik +32 -0
  397. data/lib/studium/exam_topics/veterinary_medicine +10 -0
  398. data/lib/studium/exam_topics/vitamine +19 -0
  399. data/lib/studium/exam_topics/wasserkunde +141 -0
  400. data/lib/studium/exam_topics/weinbau +59 -0
  401. data/lib/studium/exam_topics/wissenschaft +17 -0
  402. data/lib/studium/exam_topics/yeast +97 -0
  403. data/lib/studium/exam_topics/zoologie +329 -0
  404. data/lib/studium/exams/afterburn.rb +264 -0
  405. data/lib/studium/exams/ask_exam_from_the_upcoming_exams_pool.rb +158 -0
  406. data/lib/studium/exams/ask_exam_question/answer.rb +106 -0
  407. data/lib/studium/exams/ask_exam_question/ask_exam_question.rb +135 -0
  408. data/lib/studium/exams/ask_exam_question/constants.rb +74 -0
  409. data/lib/studium/exams/ask_exam_question/delay.rb +101 -0
  410. data/lib/studium/exams/ask_exam_question/help.rb +72 -0
  411. data/lib/studium/exams/ask_exam_question/initialize.rb +70 -0
  412. data/lib/studium/exams/ask_exam_question/menu.rb +382 -0
  413. data/lib/studium/exams/ask_exam_question/misc.rb +938 -0
  414. data/lib/studium/exams/ask_exam_question/question.rb +77 -0
  415. data/lib/studium/exams/ask_exam_question/reset.rb +103 -0
  416. data/lib/studium/exams/ask_exam_question/run.rb +49 -0
  417. data/lib/studium/exams/ask_exam_topic_question.rb +120 -0
  418. data/lib/studium/exams/ask_question_from_alias.rb +151 -0
  419. data/lib/studium/exams/ask_question_from_any_of_the_still_missing_lectures.rb +133 -0
  420. data/lib/studium/exams/ask_question_from_grouped_themes.rb +141 -0
  421. data/lib/studium/exams/ask_question_from_last_topic.rb +93 -0
  422. data/lib/studium/exams/ask_random_question.rb +190 -0
  423. data/lib/studium/exams/autoinclude.rb +7 -0
  424. data/lib/studium/exams/class.rb +127 -0
  425. data/lib/studium/exams/csv/create_csv_passed_exams_file.rb +225 -0
  426. data/lib/studium/exams/cycle.rb +283 -0
  427. data/lib/studium/exams/dataset.rb +90 -0
  428. data/lib/studium/exams/exam_registration_at/constants.rb +49 -0
  429. data/lib/studium/exams/exam_registration_at/exam_registration_at.rb +254 -0
  430. data/lib/studium/exams/exam_registration_at/help.rb +46 -0
  431. data/lib/studium/exams/exam_registration_at/menu.rb +81 -0
  432. data/lib/studium/exams/exam_registration_at/report.rb +108 -0
  433. data/lib/studium/exams/exam_registration_at/reset.rb +49 -0
  434. data/lib/studium/exams/exam_statistics_from_this_file/exam_statistics_from_this_file.rb +127 -0
  435. data/lib/studium/exams/exam_topics.rb +202 -0
  436. data/lib/studium/exams/exams.rb +18 -0
  437. data/lib/studium/exams/exams_per_month/colours.rb +81 -0
  438. data/lib/studium/exams/exams_per_month/constants.rb +69 -0
  439. data/lib/studium/exams/exams_per_month/dataset.rb +64 -0
  440. data/lib/studium/exams/exams_per_month/exams_per_month.rb +291 -0
  441. data/lib/studium/exams/exams_per_month/help.rb +72 -0
  442. data/lib/studium/exams/exams_per_month/initialize.rb +39 -0
  443. data/lib/studium/exams/exams_per_month/menu.rb +258 -0
  444. data/lib/studium/exams/exams_per_month/open.rb +139 -0
  445. data/lib/studium/exams/exams_per_month/requires.rb +8 -0
  446. data/lib/studium/exams/exams_per_month/reset.rb +115 -0
  447. data/lib/studium/exams/exams_per_month/run.rb +18 -0
  448. data/lib/studium/exams/exams_per_month/sanitize.rb +129 -0
  449. data/lib/studium/exams/exams_per_month/show_and_report.rb +1281 -0
  450. data/lib/studium/exams/exams_this_week.rb +179 -0
  451. data/lib/studium/exams/fix_exam_dates.rb +129 -0
  452. data/lib/studium/exams/last_exams/last_exams.rb +381 -0
  453. data/lib/studium/exams/lectures_without_exam_entry.rb +145 -0
  454. data/lib/studium/exams/mandatory_continuous_assessment/compare.rb +144 -0
  455. data/lib/studium/exams/mandatory_continuous_assessment/constants.rb +18 -0
  456. data/lib/studium/exams/mandatory_continuous_assessment/help.rb +92 -0
  457. data/lib/studium/exams/mandatory_continuous_assessment/initialize.rb +46 -0
  458. data/lib/studium/exams/mandatory_continuous_assessment/mandatory_continuous_assessment.rb +1115 -0
  459. data/lib/studium/exams/mandatory_continuous_assessment/menu.rb +114 -0
  460. data/lib/studium/exams/mandatory_continuous_assessment/misc.rb +61 -0
  461. data/lib/studium/exams/mandatory_continuous_assessment/reset.rb +85 -0
  462. data/lib/studium/exams/mandatory_continuous_assessment/run.rb +33 -0
  463. data/lib/studium/exams/mandatory_continuous_assessment/set_title_of_the_curriculum.rb +181 -0
  464. data/lib/studium/exams/mandatory_continuous_assessment/show_and_report.rb +147 -0
  465. data/lib/studium/exams/move_the_last_exam_question_to_the_top_of_the_file/move_the_last_exam_question_to_the_top_of_the_file.rb +119 -0
  466. data/lib/studium/exams/n_exams_in_these_topics.rb +408 -0
  467. data/lib/studium/exams/new_questions_per_year.rb +153 -0
  468. data/lib/studium/exams/next_exam.rb +111 -0
  469. data/lib/studium/exams/next_exams.rb +385 -0
  470. data/lib/studium/exams/open_exam_associated_url.rb +158 -0
  471. data/lib/studium/exams/open_last_exam_question_asked_file/constants.rb +20 -0
  472. data/lib/studium/exams/open_last_exam_question_asked_file/initialize.rb +29 -0
  473. data/lib/studium/exams/open_last_exam_question_asked_file/open_last_exam_question_asked_file.rb +112 -0
  474. data/lib/studium/exams/passed_exams/passed_exams.rb +46 -0
  475. data/lib/studium/exams/pruefung.rb +288 -0
  476. data/lib/studium/exams/push_solved_questions_on_top.rb +188 -0
  477. data/lib/studium/exams/question_answer/question_answer.rb +842 -0
  478. data/lib/studium/exams/questions_solved_from_day_to_day.rb +353 -0
  479. data/lib/studium/exams/repeat_last_question.rb +78 -0
  480. data/lib/studium/exams/show_all_passed_exams_of_this_university.rb +260 -0
  481. data/lib/studium/exams/show_backlog_of_exams.rb +125 -0
  482. data/lib/studium/exams/show_next_exams_for.rb +141 -0
  483. data/lib/studium/exams/show_themes/constants.rb +33 -0
  484. data/lib/studium/exams/show_themes/menu.rb +61 -0
  485. data/lib/studium/exams/show_themes/misc.rb +536 -0
  486. data/lib/studium/exams/show_themes/reset.rb +64 -0
  487. data/lib/studium/exams/show_themes/show_themes.rb +27 -0
  488. data/lib/studium/exams/show_upcoming_exams/consider_autogenerating_exam_aliases.rb +170 -0
  489. data/lib/studium/exams/show_upcoming_exams/constants.rb +82 -0
  490. data/lib/studium/exams/show_upcoming_exams/help.rb +33 -0
  491. data/lib/studium/exams/show_upcoming_exams/initialize.rb +71 -0
  492. data/lib/studium/exams/show_upcoming_exams/menu.rb +53 -0
  493. data/lib/studium/exams/show_upcoming_exams/report.rb +195 -0
  494. data/lib/studium/exams/show_upcoming_exams/reset.rb +38 -0
  495. data/lib/studium/exams/show_upcoming_exams/run.rb +20 -0
  496. data/lib/studium/exams/show_upcoming_exams/show_upcoming_exams.rb +494 -0
  497. data/lib/studium/exams/solve_all_questions_from_this_topic.rb +122 -0
  498. data/lib/studium/exams/solved/constants.rb +37 -0
  499. data/lib/studium/exams/solved/help.rb +23 -0
  500. data/lib/studium/exams/solved/menu.rb +35 -0
  501. data/lib/studium/exams/solved/reset.rb +30 -0
  502. data/lib/studium/exams/solved/solved.rb +306 -0
  503. data/lib/studium/exams/steop.rb +99 -0
  504. data/lib/studium/exams/unsolve_all_questions_from_this_topic.rb +170 -0
  505. data/lib/studium/exams/upcoming_exams/constants.rb +20 -0
  506. data/lib/studium/exams/upcoming_exams/help.rb +38 -0
  507. data/lib/studium/exams/upcoming_exams/initialize.rb +27 -0
  508. data/lib/studium/exams/upcoming_exams/menu.rb +79 -0
  509. data/lib/studium/exams/upcoming_exams/misc.rb +360 -0
  510. data/lib/studium/exams/upcoming_exams/reset.rb +37 -0
  511. data/lib/studium/exams/upcoming_exams/run.rb +25 -0
  512. data/lib/studium/exams/upcoming_exams/upcoming_exams.rb +32 -0
  513. data/lib/studium/exams/upcoming_exams_at_the_boku/constants.rb +23 -0
  514. data/lib/studium/exams/upcoming_exams_at_the_boku/html.rb +64 -0
  515. data/lib/studium/exams/upcoming_exams_at_the_boku/upcoming_exams_at_the_boku.rb +194 -0
  516. data/lib/studium/exams/upcoming_exams_dataset.rb +251 -0
  517. data/lib/studium/exams/upload_exam_topics.rb +357 -0
  518. data/lib/studium/flashcards/flashcards.rb +95 -0
  519. data/lib/studium/graphviz/README.md +4 -0
  520. data/lib/studium/graphviz/bachelor_vector_based_strategies.dot +160 -0
  521. data/lib/studium/graphviz/master_vector_based_strategies.dot +46 -0
  522. data/lib/studium/gui/gtk2/constants.rb +52 -0
  523. data/lib/studium/gui/gtk2/exam_card.rb +199 -0
  524. data/lib/studium/gui/gtk2/flip_card.rb +8 -0
  525. data/lib/studium/gui/gtk2/frame.rb +319 -0
  526. data/lib/studium/gui/gtk2/main_box.rb +188 -0
  527. data/lib/studium/gui/gtk2/misc.rb +99 -0
  528. data/lib/studium/gui/gtk2/module_methods.rb +58 -0
  529. data/lib/studium/gui/gtk2/require_gtk_files.rb +25 -0
  530. data/lib/studium/gui/gtk2/run.rb +47 -0
  531. data/lib/studium/gui/gtk2/show_curriculum_entries.rb +186 -0
  532. data/lib/studium/gui/gtk2/simple_widget_question_answer.rb +185 -0
  533. data/lib/studium/gui/gtk2/vbox.rb +748 -0
  534. data/lib/studium/gui/gtk3/README.md +1 -0
  535. data/lib/studium/gui/gtk3/studium_panel.rb +54 -0
  536. data/lib/studium/lectures/show_lectures_on_the_commandline/constants.rb +22 -0
  537. data/lib/studium/lectures/show_lectures_on_the_commandline/determine.rb +630 -0
  538. data/lib/studium/lectures/show_lectures_on_the_commandline/help.rb +44 -0
  539. data/lib/studium/lectures/show_lectures_on_the_commandline/html.rb +599 -0
  540. data/lib/studium/lectures/show_lectures_on_the_commandline/initialize.rb +53 -0
  541. data/lib/studium/lectures/show_lectures_on_the_commandline/konsole.rb +32 -0
  542. data/lib/studium/lectures/show_lectures_on_the_commandline/menu.rb +466 -0
  543. data/lib/studium/lectures/show_lectures_on_the_commandline/misc.rb +598 -0
  544. data/lib/studium/lectures/show_lectures_on_the_commandline/reset.rb +120 -0
  545. data/lib/studium/lectures/show_lectures_on_the_commandline/run.rb +44 -0
  546. data/lib/studium/lectures/show_lectures_on_the_commandline/show.rb +106 -0
  547. data/lib/studium/lectures/show_lectures_on_the_commandline/show_lectures_on_the_commandline.rb +491 -0
  548. data/lib/studium/lectures/show_lectures_on_the_commandline/sorted_individual_curricula.rb +117 -0
  549. data/lib/studium/logging/README.md +2 -0
  550. data/lib/studium/logging/ensure_that_the_log_directory_exists.rb +47 -0
  551. data/lib/studium/logging/html_log_directory.rb +35 -0
  552. data/lib/studium/logging/log_directory.rb +100 -0
  553. data/lib/studium/logging/store_last_question_asked_into_file.rb +138 -0
  554. data/lib/studium/misc/return_remote_homepage_of_this_lecture.rb +8661 -0
  555. data/lib/studium/misc/return_remote_moodle_link_of_this_lecture.rb +1343 -0
  556. data/lib/studium/parsers/README.md +2 -0
  557. data/lib/studium/parsers/custom_exam_results_parser.rb +208 -0
  558. data/lib/studium/parsers/parse_lva_dates.rb +190 -0
  559. data/lib/studium/pdf/README.md +2 -0
  560. data/lib/studium/pdf/create_pdf_file_for_this_exam_topic.rb +277 -0
  561. data/lib/studium/project/project.rb +80 -0
  562. data/lib/studium/requires/common_popular_requires.rb +37 -0
  563. data/lib/studium/requires/commonly_used_requires.rb +13 -0
  564. data/lib/studium/requires/require_class_exams_solved.rb +7 -0
  565. data/lib/studium/requires/require_ects_scripts.rb +25 -0
  566. data/lib/studium/requires/require_encoding.rb +7 -0
  567. data/lib/studium/requires/require_the_exam_scripts.rb +37 -0
  568. data/lib/studium/requires/require_the_studium_constants.rb +14 -0
  569. data/lib/studium/requires/require_the_studium_project.rb +47 -0
  570. data/lib/studium/requires/require_the_utility_scripts.rb +26 -0
  571. data/lib/studium/requires/require_toplevel_methods.rb +26 -0
  572. data/lib/studium/requires/require_upcoming_exams.rb +7 -0
  573. data/lib/studium/requires/require_yaml.rb +7 -0
  574. data/lib/studium/requires/with_GUI.rb +12 -0
  575. data/lib/studium/requires/www_mode.rb +17 -0
  576. data/lib/studium/sinatra/app.rb +225 -0
  577. data/lib/studium/sinatra/misc.rb +111 -0
  578. data/lib/studium/statistics/README.md +4 -0
  579. data/lib/studium/statistics/best_exam_months.rb +81 -0
  580. data/lib/studium/statistics/curriculum_comparer.rb +344 -0
  581. data/lib/studium/statistics/determine_exam_statistics_from_this_file.rb +140 -0
  582. data/lib/studium/statistics/max_stats.rb +171 -0
  583. data/lib/studium/statistics/report_how_many_ects_points_per_curriculum_were_completed.rb +172 -0
  584. data/lib/studium/statistics/report_how_many_exam_questions_were_answered.rb +478 -0
  585. data/lib/studium/statistics/show_exam_statistics.rb +60 -0
  586. data/lib/studium/statistics/top_stats.rb +122 -0
  587. data/lib/studium/steop/README.md +4 -0
  588. data/lib/studium/steop/show_all_steop_lectures.rb +101 -0
  589. data/lib/studium/steop/steop_lectures_in_this_curriculum.rb +291 -0
  590. data/lib/studium/steop/steop_lva_dates.rb +102 -0
  591. data/lib/studium/toplevel_methods/all_passed_exams.rb +35 -0
  592. data/lib/studium/toplevel_methods/already_solved_this_lecture.rb +98 -0
  593. data/lib/studium/toplevel_methods/available_curricula.rb +71 -0
  594. data/lib/studium/toplevel_methods/available_topics.rb +145 -0
  595. data/lib/studium/toplevel_methods/average_grade.rb +141 -0
  596. data/lib/studium/toplevel_methods/calculate_pr/303/274fungsimmanente_lectures_from_this_file.rb +55 -0
  597. data/lib/studium/toplevel_methods/cd.rb +25 -0
  598. data/lib/studium/toplevel_methods/cd_stud.rb +134 -0
  599. data/lib/studium/toplevel_methods/copy_the_last_backup_of_file_lecture_information.rb +27 -0
  600. data/lib/studium/toplevel_methods/determine_local_directory_of_this_lecture.rb +72 -0
  601. data/lib/studium/toplevel_methods/does_this_course_require_mandatory_presence.rb +44 -0
  602. data/lib/studium/toplevel_methods/download.rb +157 -0
  603. data/lib/studium/toplevel_methods/e.rb +16 -0
  604. data/lib/studium/toplevel_methods/ects_from_lectures.rb +251 -0
  605. data/lib/studium/toplevel_methods/editor.rb +64 -0
  606. data/lib/studium/toplevel_methods/esystem.rb +22 -0
  607. data/lib/studium/toplevel_methods/exams_dataset.rb +45 -0
  608. data/lib/studium/toplevel_methods/filter_away_invalid_questions.rb +77 -0
  609. data/lib/studium/toplevel_methods/find_exam_topic_and_exam_title.rb +2771 -0
  610. data/lib/studium/toplevel_methods/from_curriculum_id_to_university.rb +47 -0
  611. data/lib/studium/toplevel_methods/frozen.rb +32 -0
  612. data/lib/studium/toplevel_methods/handle_archive_of_the_exam_questions.rb +136 -0
  613. data/lib/studium/toplevel_methods/has_a_bachelor_or_master_curriculum.rb +84 -0
  614. data/lib/studium/toplevel_methods/has_this_lecture_been_already_passed_but_the_id_was_changed_lateron.rb +41 -0
  615. data/lib/studium/toplevel_methods/has_this_module_been_completed.rb +206 -0
  616. data/lib/studium/toplevel_methods/install_the_project_on_the_given_hostsystem.rb +32 -0
  617. data/lib/studium/toplevel_methods/is_on_roebe.rb +26 -0
  618. data/lib/studium/toplevel_methods/is_this_exam_topic_included.rb +46 -0
  619. data/lib/studium/toplevel_methods/is_this_homepage_registered.rb +31 -0
  620. data/lib/studium/toplevel_methods/is_this_lecture_a_practical_course.rb +100 -0
  621. data/lib/studium/toplevel_methods/is_this_lecture_part_of_the_vector_curriculum.rb +110 -0
  622. data/lib/studium/toplevel_methods/is_this_lecture_registered_in_upcoming_exams.rb +43 -0
  623. data/lib/studium/toplevel_methods/lecture_information.rb +101 -0
  624. data/lib/studium/toplevel_methods/lectures_without_attribution_to_any_curriculum.rb +42 -0
  625. data/lib/studium/toplevel_methods/lva_numbers.rb +339 -0
  626. data/lib/studium/toplevel_methods/main_dataset.rb +73 -0
  627. data/lib/studium/toplevel_methods/map_curriculum_number_to_curriculum_name.rb +97 -0
  628. data/lib/studium/toplevel_methods/methods_related_to_curricula.rb +47 -0
  629. data/lib/studium/toplevel_methods/methods_related_to_files.rb +197 -0
  630. data/lib/studium/toplevel_methods/mkdir.rb +25 -0
  631. data/lib/studium/toplevel_methods/n_questions_available.rb +128 -0
  632. data/lib/studium/toplevel_methods/n_topics_available.rb +63 -0
  633. data/lib/studium/toplevel_methods/name_of_this_curriculum.rb +38 -0
  634. data/lib/studium/toplevel_methods/names_of_all_solved_exams.rb +71 -0
  635. data/lib/studium/toplevel_methods/note_down_the_start_time_and_how_many_exams_have_been_already_solved.rb +70 -0
  636. data/lib/studium/toplevel_methods/opnn.rb +25 -0
  637. data/lib/studium/toplevel_methods/passed_this_exam_on.rb +105 -0
  638. data/lib/studium/toplevel_methods/pristine.rb +69 -0
  639. data/lib/studium/toplevel_methods/read_dataset_from_a_curriculum_file.rb +133 -0
  640. data/lib/studium/toplevel_methods/read_delay_between_questions_from_file.rb +34 -0
  641. data/lib/studium/toplevel_methods/regexes.rb +90 -0
  642. data/lib/studium/toplevel_methods/registered_for_this_exam.rb +62 -0
  643. data/lib/studium/toplevel_methods/remote_url.rb +57 -0
  644. data/lib/studium/toplevel_methods/remove_comments.rb +26 -0
  645. data/lib/studium/toplevel_methods/remove_exam_topics_that_were_already_answered.rb +27 -0
  646. data/lib/studium/toplevel_methods/remove_tags.rb +26 -0
  647. data/lib/studium/toplevel_methods/report.rb +143 -0
  648. data/lib/studium/toplevel_methods/report_all_lectures_matching_this_lecture_type.rb +45 -0
  649. data/lib/studium/toplevel_methods/report_attributed_lectures_to_universities.rb +30 -0
  650. data/lib/studium/toplevel_methods/report_n_ects_per_university.rb +63 -0
  651. data/lib/studium/toplevel_methods/report_n_entries_in_the_file_lecture_information.rb +36 -0
  652. data/lib/studium/toplevel_methods/report_nquestions_of.rb +96 -0
  653. data/lib/studium/toplevel_methods/report_solved_topics.rb +56 -0
  654. data/lib/studium/toplevel_methods/return_all_exams_on_this_day.rb +66 -0
  655. data/lib/studium/toplevel_methods/return_curriculum_of_this_lva_number.rb +82 -0
  656. data/lib/studium/toplevel_methods/return_dataset_for_this_exam_topic.rb +41 -0
  657. data/lib/studium/toplevel_methods/return_dataset_from_this_curriculum_file.rb +150 -0
  658. data/lib/studium/toplevel_methods/return_directory_for.rb +66 -0
  659. data/lib/studium/toplevel_methods/return_div_timetable_of_upcoming_exams.rb +489 -0
  660. data/lib/studium/toplevel_methods/return_ects_from_this_lecture_stored_in_the_file_lecture_information.rb +197 -0
  661. data/lib/studium/toplevel_methods/return_hash_of_already_solved_lectures.rb +41 -0
  662. data/lib/studium/toplevel_methods/return_local_path_of_this_pwdstud.rb +59 -0
  663. data/lib/studium/toplevel_methods/return_lva_number_of_this_lecture.rb +72 -0
  664. data/lib/studium/toplevel_methods/return_n_percent_solved_from_this_topic.rb +75 -0
  665. data/lib/studium/toplevel_methods/return_n_questions_were_answered_for_this_topic.rb +37 -0
  666. data/lib/studium/toplevel_methods/return_proper_university_image.rb +80 -0
  667. data/lib/studium/toplevel_methods/return_question_answer_string_from_this_topic.rb +56 -0
  668. data/lib/studium/toplevel_methods/return_sanitized_dataset_from_the_file_lecture_information.rb +126 -0
  669. data/lib/studium/toplevel_methods/return_theme_of_the_next_upcoming_exam.rb +38 -0
  670. data/lib/studium/toplevel_methods/return_this_curriculum_as_a_string.rb +26 -0
  671. data/lib/studium/toplevel_methods/return_title_from_this_curriculum_file.rb +91 -0
  672. data/lib/studium/toplevel_methods/rinstall2.rb +34 -0
  673. data/lib/studium/toplevel_methods/rti_conflict.rb +29 -0
  674. data/lib/studium/toplevel_methods/runmode.rb +86 -0
  675. data/lib/studium/toplevel_methods/sanitize_this_theme_topic.rb +128 -0
  676. data/lib/studium/toplevel_methods/sanitized_dataset_from_file_passed_exams_per_month.rb +52 -0
  677. data/lib/studium/toplevel_methods/save_all_registered_upcoming_exams.rb +62 -0
  678. data/lib/studium/toplevel_methods/save_file.rb +81 -0
  679. data/lib/studium/toplevel_methods/save_this_delay_between_questions_and_answers.rb +43 -0
  680. data/lib/studium/toplevel_methods/set_last_file_for_exam_questions.rb +64 -0
  681. data/lib/studium/toplevel_methods/set_this_cd_alias_to.rb +86 -0
  682. data/lib/studium/toplevel_methods/show_passed_ects_in_the_individual_bachelor_and_master_curricula.rb +81 -0
  683. data/lib/studium/toplevel_methods/show_passed_exams_having_this_grade.rb +27 -0
  684. data/lib/studium/toplevel_methods/spacer.rb +18 -0
  685. data/lib/studium/toplevel_methods/time.rb +220 -0
  686. data/lib/studium/toplevel_methods/total_ects_points_passed.rb +72 -0
  687. data/lib/studium/toplevel_methods/try_to_guess_the_most_likely_lva_id.rb +57 -0
  688. data/lib/studium/toplevel_methods/try_to_return_the_expanded_name_of_this_lecture.rb +63 -0
  689. data/lib/studium/toplevel_methods/unfinished.rb +51 -0
  690. data/lib/studium/toplevel_methods/url.rb +74 -0
  691. data/lib/studium/toplevel_methods/verbose_truth.rb +21 -0
  692. data/lib/studium/toplevel_methods/when_was_this_lecture_passed.rb +53 -0
  693. data/lib/studium/toplevel_methods/yes_or_no_ja_oder_nein.rb +33 -0
  694. data/lib/studium/tu_vienna/README.md +6 -0
  695. data/lib/studium/tu_vienna/tu_ferien.rb +38 -0
  696. data/lib/studium/tu_vienna/tu_/303/266ffnungszeiten.rb +29 -0
  697. data/lib/studium/utility_scripts/attribute_lecture_to_curriculum/attribute_boku_lecture_to_curriculum.rb +389 -0
  698. data/lib/studium/utility_scripts/attribute_lecture_to_curriculum/attribute_lecture_to_curriculum.rb +236 -0
  699. data/lib/studium/utility_scripts/attribute_lectures_to_university/attribute_lectures_to_university.rb +385 -0
  700. data/lib/studium/utility_scripts/audio_stats.rb +176 -0
  701. data/lib/studium/utility_scripts/auto_stud/auto_stud.rb +253 -0
  702. data/lib/studium/utility_scripts/auto_stud/constants.rb +23 -0
  703. data/lib/studium/utility_scripts/auto_stud/initialize.rb +23 -0
  704. data/lib/studium/utility_scripts/auto_stud/misc.rb +18 -0
  705. data/lib/studium/utility_scripts/autopurge_this_lecture_date.rb +101 -0
  706. data/lib/studium/utility_scripts/calendar/README.md +2 -0
  707. data/lib/studium/utility_scripts/calendar/calendar.rb +244 -0
  708. data/lib/studium/utility_scripts/calendar/misc.rb +35 -0
  709. data/lib/studium/utility_scripts/check_description_of_these_lectures.rb +224 -0
  710. data/lib/studium/utility_scripts/clean_up_lecture_date.rb +151 -0
  711. data/lib/studium/utility_scripts/current_lectures_belonging_to_both_bachelor_and_master_curriculum.rb +113 -0
  712. data/lib/studium/utility_scripts/currently_participating_in_these_lectures.rb +104 -0
  713. data/lib/studium/utility_scripts/display_lecture_url.rb +117 -0
  714. data/lib/studium/utility_scripts/expand_time_range.rb +422 -0
  715. data/lib/studium/utility_scripts/find_duplicate_lectures.rb +121 -0
  716. data/lib/studium/utility_scripts/finished_exams_at_this_university.rb +94 -0
  717. data/lib/studium/utility_scripts/foreign_language_percentage/constants.rb +28 -0
  718. data/lib/studium/utility_scripts/foreign_language_percentage/foreign_language_percentage.rb +142 -0
  719. data/lib/studium/utility_scripts/foreign_language_percentage/help.rb +29 -0
  720. data/lib/studium/utility_scripts/foreign_language_percentage/initialize.rb +25 -0
  721. data/lib/studium/utility_scripts/foreign_language_percentage/menu.rb +141 -0
  722. data/lib/studium/utility_scripts/foreign_language_percentage/report.rb +62 -0
  723. data/lib/studium/utility_scripts/foreign_language_percentage/reset.rb +57 -0
  724. data/lib/studium/utility_scripts/foreign_language_percentage/run.rb +19 -0
  725. data/lib/studium/utility_scripts/generate_spreadsheet.rb +349 -0
  726. data/lib/studium/utility_scripts/holidays.rb +143 -0
  727. data/lib/studium/utility_scripts/lecture_downloader.rb +115 -0
  728. data/lib/studium/utility_scripts/lectures_attributed_to_universities.rb +344 -0
  729. data/lib/studium/utility_scripts/lva_nummer.rb +440 -0
  730. data/lib/studium/utility_scripts/mandatory_lectures_in_this_month.rb +321 -0
  731. data/lib/studium/utility_scripts/name_of_this_lva_id.rb +110 -0
  732. data/lib/studium/utility_scripts/new_stud.rb +332 -0
  733. data/lib/studium/utility_scripts/next_week.rb +111 -0
  734. data/lib/studium/utility_scripts/passed_ects_per_year.rb +172 -0
  735. data/lib/studium/utility_scripts/passed_pr/303/274fungsimmanente_courses/passed_pr/303/274fungsimmanente_courses.rb +181 -0
  736. data/lib/studium/utility_scripts/prepare_individual_curriculum.rb +182 -0
  737. data/lib/studium/utility_scripts/priority.rb +126 -0
  738. data/lib/studium/utility_scripts/priority_points.rb +263 -0
  739. data/lib/studium/utility_scripts/publish_my_exams.rb +174 -0
  740. data/lib/studium/utility_scripts/regexes/README.md +2 -0
  741. data/lib/studium/utility_scripts/regexes/generate_regex.rb +278 -0
  742. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_available_moodle_links.rb +54 -0
  743. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_registered_lectures.rb +48 -0
  744. data/lib/studium/utility_scripts/report_outdated_timetable_entries.rb +148 -0
  745. data/lib/studium/utility_scripts/report_total_amount_of_questions_and_answers_for.rb +120 -0
  746. data/lib/studium/utility_scripts/report_whether_this_lecture_is_registered_in_the_file_lecture_information.rb +125 -0
  747. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/individual_resolve_practical_courses_date_conflicts.rb +257 -0
  748. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/resolve_practical_courses_date_conflicts.rb +273 -0
  749. data/lib/studium/utility_scripts/scrape_remote_university_url.rb +146 -0
  750. data/lib/studium/utility_scripts/semester_schedule_creator/semester_container.rb +142 -0
  751. data/lib/studium/utility_scripts/semester_schedule_creator/semester_schedule_creator.rb +381 -0
  752. data/lib/studium/utility_scripts/semesterplaner.rb +289 -0
  753. data/lib/studium/utility_scripts/show_all_lectures.rb +403 -0
  754. data/lib/studium/utility_scripts/show_all_passed_master_lectures.rb +127 -0
  755. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/constants.rb +56 -0
  756. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/do_report_the_upcoming_exams.rb +60 -0
  757. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/help.rb +49 -0
  758. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/initialize.rb +28 -0
  759. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/menu.rb +54 -0
  760. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/misc.rb +214 -0
  761. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/report.rb +118 -0
  762. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/reset.rb +80 -0
  763. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/run.rb +22 -0
  764. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/show_conflicting_lva_lectures.rb +651 -0
  765. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/constants.rb +28 -0
  766. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/menu.rb +62 -0
  767. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/reset.rb +36 -0
  768. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/run.rb +35 -0
  769. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/show_descriptions_of_lectures_belonging_to_this_module.rb +145 -0
  770. data/lib/studium/utility_scripts/show_lecturers/show_lecturers.rb +145 -0
  771. data/lib/studium/utility_scripts/show_lectures/constants.rb +16 -0
  772. data/lib/studium/utility_scripts/show_lectures/help.rb +34 -0
  773. data/lib/studium/utility_scripts/show_lectures/initialize.rb +23 -0
  774. data/lib/studium/utility_scripts/show_lectures/menu.rb +106 -0
  775. data/lib/studium/utility_scripts/show_lectures/misc.rb +582 -0
  776. data/lib/studium/utility_scripts/show_lectures/reset.rb +92 -0
  777. data/lib/studium/utility_scripts/show_lectures/run.rb +27 -0
  778. data/lib/studium/utility_scripts/show_lectures/show_lectures.rb +48 -0
  779. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_language.rb +129 -0
  780. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_theme.rb +100 -0
  781. data/lib/studium/utility_scripts/show_lectures_on_this_day.rb +154 -0
  782. data/lib/studium/utility_scripts/show_lva_dates_of_this_lecture.rb +177 -0
  783. data/lib/studium/utility_scripts/show_outdated_lva_dates.rb +218 -0
  784. data/lib/studium/utility_scripts/show_solved_english_lectures.rb +139 -0
  785. data/lib/studium/utility_scripts/show_the_associated_lectures_for_the_individual_curriculum.rb +285 -0
  786. data/lib/studium/utility_scripts/studienkennzahl.rb +109 -0
  787. data/lib/studium/utility_scripts/studium_skeleton.rb +220 -0
  788. data/lib/studium/utility_scripts/stundenplan.rb +603 -0
  789. data/lib/studium/utility_scripts/sync_studium_relevant_entries_one_level_downwards.rb +221 -0
  790. data/lib/studium/utility_scripts/ufind.rb +101 -0
  791. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/constants.rb +31 -0
  792. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/run.rb +20 -0
  793. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/upcoming_mandatory_presence_courses.rb +179 -0
  794. data/lib/studium/utility_scripts/vorbesprechungen.rb +293 -0
  795. data/lib/studium/utility_scripts/week_parser/constants.rb +28 -0
  796. data/lib/studium/utility_scripts/week_parser/help.rb +32 -0
  797. data/lib/studium/utility_scripts/week_parser/menu.rb +56 -0
  798. data/lib/studium/utility_scripts/week_parser/misc.rb +51 -0
  799. data/lib/studium/utility_scripts/week_parser/reset.rb +55 -0
  800. data/lib/studium/utility_scripts/week_parser/run.rb +18 -0
  801. data/lib/studium/utility_scripts/week_parser/show.rb +242 -0
  802. data/lib/studium/utility_scripts/week_parser/week_parser.rb +362 -0
  803. data/lib/studium/utility_scripts/weekday_parser.rb +159 -0
  804. data/lib/studium/utility_scripts/weekly_schedule.rb +209 -0
  805. data/lib/studium/utility_scripts/wochenplanung.rb +278 -0
  806. data/lib/studium/version/version.rb +46 -0
  807. data/lib/studium/www/curricula_displayer.cgi +170 -0
  808. data/lib/studium/www/curriculum_displayer.rb +162 -0
  809. data/lib/studium/www/exams.cgi +50 -0
  810. data/lib/studium/www/statistics.cgi +55 -0
  811. data/lib/studium/yaml/allowed_themes_for_exams.yml +307 -0
  812. data/lib/studium/yaml/array_allowed_entries_for_the_file_lecture_information.yml +68 -0
  813. data/lib/studium/yaml/backlog_of_exams.yml +35 -0
  814. data/lib/studium/yaml/current_exams.yml +19 -0
  815. data/lib/studium/yaml/curricula.yml +530 -0
  816. data/lib/studium/yaml/curricula/README.md +3 -0
  817. data/lib/studium/yaml/curricula/bachelor_agrarwissenschaften_033255.yml +130 -0
  818. data/lib/studium/yaml/curricula/bachelor_biologie_basisblock_033630.yml +65 -0
  819. data/lib/studium/yaml/curricula/bachelor_biologie_botanik_033630.yml +84 -0
  820. data/lib/studium/yaml/curricula/bachelor_biologie_ecology_033630.yml +74 -0
  821. data/lib/studium/yaml/curricula/bachelor_biologie_mikrobiologie_und_genetik_033630.yml +120 -0
  822. data/lib/studium/yaml/curricula/bachelor_biologie_molekulare_biologie_033630.yml +104 -0
  823. data/lib/studium/yaml/curricula/bachelor_biologie_zoologie_033630.yml +87 -0
  824. data/lib/studium/yaml/curricula/bachelor_chemie_033662.yml +164 -0
  825. data/lib/studium/yaml/curricula/bachelor_dummy_curriculum.yml +135 -0
  826. data/lib/studium/yaml/curricula/bachelor_elektrotechnik_und_informationstechnik_033235.yml +13 -0
  827. data/lib/studium/yaml/curricula/bachelor_forstwirtschaft_033225.yml +105 -0
  828. data/lib/studium/yaml/curricula/bachelor_informatik_033521.yml +130 -0
  829. data/lib/studium/yaml/curricula/bachelor_informatik_und_molekulare_biologie.yml +1144 -0
  830. data/lib/studium/yaml/curricula/bachelor_ktww_033231.yml +84 -0
  831. data/lib/studium/yaml/curricula/bachelor_lmbt_033217.yml +108 -0
  832. data/lib/studium/yaml/curricula/bachelor_medizinische_informatik_033533.yml +200 -0
  833. data/lib/studium/yaml/curricula/bachelor_molekularbiologie_033665.yml +93 -0
  834. data/lib/studium/yaml/curricula/bachelor_nutrition_science_033638.yml +117 -0
  835. data/lib/studium/yaml/curricula/bachelor_pharmazie_033305.yml +170 -0
  836. data/lib/studium/yaml/curricula/bachelor_technische_chemie_033290.yml +129 -0
  837. data/lib/studium/yaml/curricula/bachelor_technische_informatik_033535.yml +23 -0
  838. data/lib/studium/yaml/curricula/bachelor_ubrm_033227.yml +140 -0
  839. data/lib/studium/yaml/curricula/bachelor_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +1157 -0
  840. data/lib/studium/yaml/curricula/bachelor_verfahrenstechnik_033273.yml +167 -0
  841. data/lib/studium/yaml/curricula/bachelor_wirtschaftsinformatik_033526.yml +29 -0
  842. data/lib/studium/yaml/curricula/master_bioinformatics_and_molecular_biotechnology_including_aspects_from_molecular_medicine.yml +438 -0
  843. data/lib/studium/yaml/curricula/master_bioinformatik_066875.yml +76 -0
  844. data/lib/studium/yaml/curricula/master_biologie_molekulare_mikrobiologie_mikrobielle_oekologie_und_immunbiologie_066830.yml +78 -0
  845. data/lib/studium/yaml/curricula/master_biologische_chemie_066863.yml +61 -0
  846. data/lib/studium/yaml/curricula/master_dummy_curriculum.yml +137 -0
  847. data/lib/studium/yaml/curricula/master_food_science_and_plant_biotechnology.yml +30 -0
  848. data/lib/studium/yaml/curricula/master_genetik_und_entwicklungsbiologie_066877.yml +90 -0
  849. data/lib/studium/yaml/curricula/master_lmbt_066418.yml +65 -0
  850. data/lib/studium/yaml/curricula/master_molekulare_biologie_066834.yml +142 -0
  851. data/lib/studium/yaml/curricula/master_pharmazie_066605.yml +170 -0
  852. data/lib/studium/yaml/curricula/master_technische_chemie_066490.yml +123 -0
  853. data/lib/studium/yaml/curricula/master_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +741 -0
  854. data/lib/studium/yaml/custom_colours.yml +21 -0
  855. data/lib/studium/yaml/daily_questions_solved.yml +789 -0
  856. data/lib/studium/yaml/default_delay.yml +4 -0
  857. data/lib/studium/yaml/default_encoding.yml +1 -0
  858. data/lib/studium/yaml/directory_to_the_exam_topics.yml +0 -0
  859. data/lib/studium/yaml/editor.yml +1 -0
  860. data/lib/studium/yaml/file_for_exam_questions.yml +1 -0
  861. data/lib/studium/yaml/german/README.md +2 -0
  862. data/lib/studium/yaml/german/german_to_english_month_names.yml +16 -0
  863. data/lib/studium/yaml/grouped_themes.yml +187 -0
  864. data/lib/studium/yaml/holidays.yml +176 -0
  865. data/lib/studium/yaml/important_exams.yml +194 -0
  866. data/lib/studium/yaml/inscription_dates_of_universities.yml +58 -0
  867. data/lib/studium/yaml/lecture_aliases.yml +108 -0
  868. data/lib/studium/yaml/lecture_information.yml +47783 -0
  869. data/lib/studium/yaml/log_dir.yml +1 -0
  870. data/lib/studium/yaml/main_topic.yml +11 -0
  871. data/lib/studium/yaml/max_stats.yml +227 -0
  872. data/lib/studium/yaml/mitteilungsbl/303/244tter.yml +315 -0
  873. data/lib/studium/yaml/n_total_questions.yml +1 -0
  874. data/lib/studium/yaml/participating_in_these_courses.yml +50 -0
  875. data/lib/studium/yaml/rename_konsole_tab.yml +1 -0
  876. data/lib/studium/yaml/show_topic.yml +1 -0
  877. data/lib/studium/yaml/statistics.yml +57 -0
  878. data/lib/studium/yaml/use_colours.yml +1 -0
  879. data/studium.gemspec +79 -0
  880. data/test/testing_studium.rb +244 -0
  881. data/test/testing_time_component.rb +29 -0
  882. metadata +1079 -0
@@ -0,0 +1,49 @@
1
+ # =========================================================================== #
2
+ # === Algorithms
3
+ #
4
+ # Everything about (computer) algorithms.
5
+ # =========================================================================== #
6
+
7
+ - Bei Algorithmen: was ist mit dem <one>Pivotelement</one> gemeint? Das <one>Pivotelement</one> (pivot = Drehngelpunkt) ist dasjenige Element einer <two>Zahlenmenge</two>, das als Erstes von einem Algorithmus ausgewählt wird, <three>um bestimmte Berechnungen durchzuführen</three>.
8
+ - Nenne einen Algorithmus bei dem wir <one>zuerst partitionieren</one> müssen. A: <one>Quicksort</one>.
9
+ - Ist die <one>binäre Suche</one> schneller als die <two>lineare Suche</two>? Ja.
10
+ - Bei den Algorithmen: die einfachste Suche ist ... ? Die <one>lineare Suche</one>.
11
+ - Englisch für ein <one>Flussdiagramm</one>? <one>Flowchart</one>. URL: https://en.wikipedia.org/wiki/Flowchart []
12
+ - Der Algorithmus nach Euklid zur Berechnung des größten gemeinsamen Teilers zweier Zahlen wurde wann in etwa formuliert? Etwa <one>300 vor Christus</one>.
13
+ - Liefert ein Algorithmus bei gleichen Voraussetzungen stets das gleiche Ergebnis? Ja.
14
+ - Bei einem Algorithmus: was meinen wir mit einer <one>dynamischen Endlichkeit</one>? Dies ist dann der Fall wenn ein Algorithmus zu jedem Zeitpunkt während seiner Ausführung <one>nur endlich viel Speicherplatz benötigt</one>.
15
+ - Nenne ein Verfahren für die <one>Primzahlsuche</one>. A: Der <one>Sieb des Eratosthenes</one>.
16
+ - Does <one>merge sort</one> have a better performance than <one>bubble sort</one>? Yes.
17
+ - One of the simplest sorting algorithm is ... ? <one>Bubble sort</one>.
18
+ - Der <one>Gale–Shapley-Algorithmus</one> (<three>GS-Algorithmus</three>) wurde von David Gale und Lloyd Shapley zum Auffinden von stable matchings aufgestellt, im Jahre ... ? <one>1962</one>.
19
+ - Nenne eine andere Bezeichnung für <one>Bubblesort</one>. A: <one>Sortieren durch Aufsteigen</one>.
20
+ - Der <one>Euklidische Algorithmus</one> wird verwendet um ... ? Den rößten gemeinsamen Teilers zweier natürlicher Zahlen zu bestimmen.
21
+ - Bereits die Schrift <one>Elemente</one>, aus dem 3 Jahrhundert v. Chr, kann als eine Sammlung von Algorithmen betrachtet werden. Wer hat diese Schrift verfasst? <one>Euklid</one>. URL: https://de.wikipedia.org/wiki/Elemente_%28Euklid%29
22
+ - Nenne einen Nachteil eines <one>greedy algorithms</one>. A: Man findet damit oft keine optimale Lösung.
23
+ - Wie geht die <one>Gaußsche Summenformel</one>? <one>( n * (n+1) )</one> / <one>2</one>
24
+ - Können wir zu jeder Problemstellung einen Algorithmus finden, der diese Problemstellung lösen kann? Nein. []
25
+ - Nenne einen Grund wieso wir <one>Algorithmen</one> auch praktisch verstehen sollten. A: Da dies bei der <one>Implementierung</one>, also der Übertragung auf einen Computer/Maschine, wichtig wäre.
26
+ - Was meinen wir mit der <one>Terminiertheit</one> eines Algorithmus? Das dieser nur <one>endlich viele Schritte</one> besitzt.
27
+ - Gib jeweils eine einfachere Bezeichnung für <one>O(n)</one>, O(n**2) und O(2**n). A: (1) O(n): <one>lineares Wachstum</one> (2) O(n**2): <one>quadratisches Wachstum</one> (3) O(2**n): <one>exponentielles Wachstum</one>
28
+ - Der <one>Algorithmus von Dijkstra</one> ist ein Algorithmus aus der Klasse der ... ? <one>Greedy-Algorithmen</one>.
29
+ - Nenne zwei Gründe wieso es sich auszahlen mag bessere Algorithmen zu finden. A: (1) Ersparnis an <one>Rechenzeit</one> (2) Ersparnis an <one>Speicherplatz</one>
30
+ - Warum ist es so wichtig das wir <one>gute</one> Algorithmen verwenden und danach suchen? Da <one>die Laufzeit erheblich verkürzt wird</one> bei einem guten Algorithmus.
31
+ - Nenne ein Beispiel für ein allgemeines Software-Programm, das meistens auf einen <one>Dijkstra-Algorithmus</one> aufsetzt. A: Ein <one>Routenplaner</one>.
32
+ - What do we mean when we say that an algorithm should be <one>effective</one>? That <one>such an algorithm should indeed work</one>.
33
+ - Wie geht die <one>Gaußsche Summenformel</one>? <one>(n(n+1))</one> / <one>2</one>
34
+ - Eine Funktion ist berechenbar wenn ... ? A: <one>es einen Algorithmus gibt, der sie berechnet</one>.
35
+ - <one>Patricia trie</one> is the main trie used in ... to store data. A: <one>Ethereum</one>.
36
+ - Die Laufzeitkomplexität liefert Aussagen über das Laufzeitverhalten von Algorithmen in Abhängigkeit von ... ? Der <one>Problemgröße</one>.
37
+ - Bei einer "binären Suche" eines Telefonbuchs mit 1000 Seiten, nach wieviele Schritten <one>maximal</one> kommen wir zum Ziel? Nach "1000 Schritten".
38
+ - Welche <one>Formel</one> könnten wir verwenden wenn wir die Summe der Zahlen von 1 bis n berechnen möchten? Die <one>Gaußsche Summenformel</one>.
39
+ - Nenne einen Algorithmus, der von dem alten Griechen <one>Heron von Alexandria</one> beschrieben wurde. A: Der Vorgang der Wurzelziehung aus der Wurzel von <one>2</one>.
40
+ - Anderer Begriff für "hält ein Algorithmus an" (also Termination)? Besitzt dieser Algorithmus eine <one>endliche Ausführungszeit</one>.
41
+ - Beim "binären Suchen" beginnen wir allgemein wo? In der Mitte.
42
+ - Was meinen wir mit "Las Vegas Algorithmen"? Diese Algorithmen terminieren nicht immer; liefern aber, falls sie terminieren, das "korrekte Ergebnis".
43
+ - Was meinen wir mit der "Ausführbarkeit" in der Informatik bei einem Algorhytmus? Die "Ausführbarkeit" meint das jeder Schritt eines Algorythmus durch eine Rechenmaschine ausführbar sein muss.
44
+ - Was meinen wir mit der "Determiniertheit" eines Algorithmus? Die "gleiche Eingabe" soll zu einem "gleichen Ergebnis" führen.
45
+ - Das "Collatz-Problem" behandelt welche Problematik? Wenn n gerade ist, wird n halbiert; ist n ungerade, so gilt die Formel 3n + 1.
46
+ - Give an example for a "memoryless random process". A: The "Markov chain".
47
+ - Was machen <one>divide-and-conquer algorithms</one> typischerweise? Sie zerlegen ein Problem schrittweise in kleinere Teilprobleme, die dann einfacher gelöst werden können.
48
+ - Welcher Algorithmus ist eigentlich wie ein Puzzle? Der "divide-and-conquer" Algorithmus.
49
+ - Welche zwei allgemeinen Möglichkeiten existieren um herauszufinden ob ein Algorithmus das gewünschte Ergebnis liefert? (1) <one>Testen</one> (2) <one>Verifikation</one>
@@ -0,0 +1,73 @@
1
+ # =========================================================================== #
2
+ # === Allergie Tag.
3
+ #
4
+ # Allergien Tag.
5
+ # =========================================================================== #
6
+
7
+ - Can we eliminate the activity of <one>nsLTPs-allergens</one> by processing food? No.
8
+ - In Allergy: what does <one>Bet v 1</one> stand for? Birch pollen allergen.
9
+ - The idea to build an <one>allergen nomenclature</one> on the binominal nomenclature of Carl Linnaeus using numbers for the individual allergens was conceived during a boat trip on Lake Constance in what year? <one>1980</one>.
10
+ - Give a general example for a beta expansin allergen. A: The <one>papain-related proteinases</one>.
11
+ - Das "Der p 2" Allergein ist welchem zellulären Protein ähnlich? Dem <one>Toll-like Rezeptor MD-2</one>.
12
+ - In der Medizin, beim Einsatz von Penicillinen und Cephalosporinen, womit müssen wir rechnen? Mit "allergischen Reaktionen".
13
+ - Allergie besteht aus den Worten "allos" und "ergein". Was heisst "ergein"? "Handeln".
14
+ - There are four types of hypersensitivity reactions. Three are antibody dependent; one is not. Which one is NOT antibody dependent? Type IV; it is "cell mediated".
15
+ - Allergens are often ... ? "Proteases".
16
+ - Antigens that "trigger allergic reactions" are also called ...? "Allergens".
17
+ - The systematic nomenclature of allergens is based on a suggestion made by which person? By Dr. "David Marsh", from the "Johns Hopkins University".
18
+ - Name two harmless "environmental antigens". A: (1) "pollen" (2) "food"
19
+ - Oraler Nickelkontakt bei Kindern kann vor "Nickelallergie" schützen. Was ist damit gemeint? Zum Beispiel das Tragen einer "Zahnspange".
20
+ - Most famous "plant allergen"? "Pollen".
21
+ - Can the "influenza virus" cause a hypersensitivity reaction in the respiratory tract? Yes; an "exaggerated immune response" can occur, caused by the Influenza virus.
22
+ - Was meinen wir mit "psychosomatischen Reaktionen"? Dies sind "psychische Aversionen auf Nahrungsmittel".
23
+ - What "kind" of penicillin can cause "anaphylactic reactions"? "Systemic penicillin".
24
+ - Wofür steht die Abkürzung "EAACI", die wichtig ist für die "Forschung an Allergien"? "Europäische Akademie für Allergologie und Klinische Immunologie".
25
+ - Nenne eine "Inhalationsallergie". A: "Heuschnupfen".
26
+ - Wer hat den Begriff Allergie geprägt? "Clemens von Pirquet", im Jahre 1906.
27
+ - Welcher "Zelltyp" ist das wesentliche Bindeglied zwischen dem angeborenen und dem adaptiven Immunsystem? Die "dendritsiche Zelle".
28
+ - Nenne ein Beispiel für ein "Injektionsallergen". A: ZUm Beispiel ein "Wespenstich".
29
+ - Austestung von Allergenen erfolgt oft mit Hilfe welchen Tests? Mit Hilfe des "Prick-Tests".
30
+ - How many "allergen families" are known in Pfam database? "186".
31
+ - Gib eine häufige Allergenquellen für Menschen an. A: Zum Beispiel "Pollen".
32
+ - Immediate hypersensitivity is ... mediated; delayed hypersensitivity is ... mediated. A: (1) Immediate hypersensitivity: is "antibody-mediated" (2) Delayed hypersensitivity: is "cell-mediated"
33
+ - What is the broader name for an "allergy"? "Hypersensitivity reaction".
34
+ - Many enzymes trigger allergies. Can we explain this by also including the role of igE? IgE act against parasites that often secrete proteolytic enzymes. These enzymes break down connective tissue.
35
+ - "Der p 1", relevant in allergy, is what kind of molecule? It is a "cysteine protease" (homologous to "papain").
36
+ - Peanuts can cause which "allergic syndrome"? "Systemic anaphylaxis".
37
+ - Which cells are important for "allergic reactions"? "Mast cells".
38
+ - What is the "effector mechanism" of "type I hypersensitivity reactions"? Mast-cell activation.
39
+ - The "mast cell surface" uses which receptor in order to bind IgE? Fc epsilon RI, also known as "high-affinity IgE receptor". URL: https://en.wikipedia.org/wiki/FCER1
40
+ - "IgE antibody production" requires TH2 cells, that produce which two Interleukins? (1) IL-4 (2) IL-13
41
+ - Who first coined the term "allergy"? "Clemens von Pirquet". URL: https://en.wikipedia.org/wiki/Clemens_von_Pirquet
42
+ - Nenne 3 Beispiele für Allergene. A: (1) "Blütenpollen" (2) "Pilzsporen" (3) "Milbenexkremente"
43
+ - nsLTPs, in Allergy, possess how many disulfide bonds? 4.
44
+ - DC-SIGN, a C-type lectin receptor, also functions as an adhesion receptor through binding of ... ? ICAM2 (intercellular adhesion molecule 2).
45
+ - DC-SIGN binds the peanut glycoallergen ... ? "Ara h 1".
46
+ - Anderes Wort, auch englisch, für "plant pollen allergy"? "Ragweed allergen".
47
+ - Was ist eine "Allergie"? Eine Allergie ist eine spezifische Änderung der Immunitätslage im Sinne einer "krankmachenden Überempfindlichkeit".
48
+ - A. W. für "Allergie" (deutsches Wort)? Abwehrreaktion.
49
+ - Wie kann man eine Allergie definieren? Eine Allergie ist eine unangemessene Immunreaktion auf einen äußeren stofflichen Reiz, der an sich meist ungefährlich ist.
50
+ - Allergie. Was heisst "ergein"? handeln.
51
+ - Was sind "Allergene"? Dies sind "Antigene, die Allergien hervorrufen können".
52
+ - Wann wurde das Wort "Allergie" erstmals von dem Wiener Kinderarzt Clemens von Pirquet verwendet? 1906.
53
+ - Profilins regulate what cellular activity? They regulate the dynamics of actin polymerization.
54
+ - Profilins are found in all eukaryotic cells and identified as allergens in ... (give one example). A: In pollen.
55
+ - In Allergies, Ara h 3 comes from which plant? It comes from peanuts.
56
+ - In Allergies, we can find the "cupin superfamily" of proteins. Why the name "cupa"? This derives from the latin word for "small barrel".
57
+ - In Allergies, the cupin family plays a role. What is the common structure in these proteins? A common beta-barrel structure that is thought to have originated in a prokaryotic ancestor.
58
+ - We can find the "cupin superfamily" of allergens. Name one plant group where we can find these. A: The legumins, specifically the 11 S globulins can be found therein.
59
+ - What means the word "nsLTPs"? non-specific lipid transfer proteins.
60
+ - What is the role of the "nsLTPs"? nsLTPs play a role in plant defense against bacteria and fungi and possibly in the assembly of protective lipid layers, such as cutin.
61
+ - What is the most dangerous plant food allergen? Ara h 2. Reactions to it are severe to lethal.
62
+ - Why are the 2S albumins so resistant to extrem pH values? Because they have 4 to 5 disulfide bonds.
63
+ - What are the 2S albumins? These are a major group of seed storage proteins present in seeds, tree nuts, and legumes.
64
+ - Name a plant allergen superfamily. A: The Prolamin Superfamily, CL0482.
65
+ - How many allergens are known in the Pfam database? 1023.
66
+ - How many Pfam domains can we find in allergens? 255 domains.
67
+ - How many Pfam families exist? About 14.830.
68
+ - What is a "complete allergen"? This is a protein capable of sensitizing an atopic individual by inducing a specific IgE response and, on second contact, capable of eliciting clinically manifest symptoms.
69
+ - Man spritzt Antikörper und bemerkt eine Allergie. Nenne 1 möglichen Grund. A: Verunreinigung mit Maus-Antikörper.
70
+ - A. W. für "Allergie"? Überempfindlichkeitsreaktion.
71
+ - Warum wurden die Cephalosporine ursprünglich entwickelt? Als Alternative zur Penicillin-Allergie.
72
+ - Was machen "Antihistaminika"? Sie schwächen die Wirkung des körpereigenen Botenstoffs Histamin ab. Das ist wichtig um gegen allergische Reaktionen abzuschwächen.
73
+ - What is an "incomplete allergen"? This is a protein incapable of sensitizing an atopic individual, but capable of binding IgE induced by a structurally similar complete allergen and capable of eliciting clinically manifest symptoms.
@@ -0,0 +1,1006 @@
1
+ # =========================================================================== #
2
+ # === AMG - Allgemeine molekulare Genetik.
3
+ #
4
+ # Genetik Tag. Gen tag. Gentag. AMG Tag. AMG1 Tag. Amgtag.
5
+ # =========================================================================== #
6
+
7
+ - Funktionell betrachtet sehen <one>SINEs</one> wie aus? A: (1) Am 5' Ende sehen sie <one>tRNAs</one> ähnlich. (2) Am 3 Strich Ende haben sie einen <one>AT-reichen Bereich</one>. (3) Der zentrale Bereich ist unspezifisch zu tRNA.
8
+ - Aside from <one>sensing nutrients</one>/<one>energy</one>: what is the major role of <lightgreen>mTORC1</lightgreen>? To <one>activate translation of proteins</one>.
9
+ - Bei der <one>Desaminierung</one> von Cytosine zu Uracil (<two>C → U</two>): was genau geht hierbei effektiv verloren? Ein <one>NH</one>-<two>Molekül</two>. Eine -NH₂ Gruppe wird entfernt, ein H wird jedoch an ein anderes N Atom angelagert.
10
+ - Welche Polymerase transkribiert <one>LINEs</one> im menschlichen Genom? Die <one>RNA Polymerase II</one>. URL: https://en.wikipedia.org/wiki/RNA_polymerase_II []
11
+ - Wie nennen wir den <one>Übergang</one> von <springgreen>5-Methylcytosin</springgreen> zu <springgreen>Thymin</springgreen>? <one>Hydrolytische Desaminierung</one>. URL: https://de.wikipedia.org/wiki/Desaminierung#Hydrolytische_Desaminierung []
12
+ - <three>In the human genome</three>: how many % of the intron-containing genes are <one>alternatively spliced</one>? More than <one>90%</one>. []
13
+ - Give another name for <one>cell-free biosynthesis in a test tube</one>. A: <one>in-vitro protein-synthesizing system</one>.
14
+ - Give another name for <one>DNA-Reparatur Methyltransferases</one>. A: <one>Suicide enzymes</one>. []
15
+ - Name one general mechanism by which the activity of the replication origin is controlled. A: <one>DNA-Methylation</one>.
16
+ - When were <one>Okazaki-Fragments</one> discovered? In the year <one>1968</one>. URL: https://en.wikipedia.org/wiki/Okazaki_fragments []
17
+ - Nenne die 4 <one>Nukleoside</one>, die wir in DNA finden können. A: (1) <one>Desoxyadenosin</one> (2) <one>Desoxyguanosin</one> (3) <one>Desoxycytidin</one> (4) <one>Desoxythymidin</one>
18
+ - Wann wurde der Begriff <one>Chromatin</one> zuerst verwendet? Bereits im Jahre <one>1880</one>. []
19
+ - Nenne zwei <one>Funktionselemente</one> eines Chromosoms. A: (1) <one>Centromer</one> (2) <one>Telomere</one> []
20
+ - Name three different species that can be given as example for <one>Haplodiploidy</one>. A: All members of the insect order <two>Hymenoptera</two>, such as <one>bees</one>, <one>wasps</one> and <one>ants</one>. URL: https://de.wikipedia.org/wiki/Hautfl%C3%BCgler []
21
+ - Welche Aufgabe hat das <one>Yeast Gal-System</one>? Das <two>Gal-System</two> konvertiert <one>Galaktose</one> zu <one>Glucose</one>.
22
+ - Are <one>Transitions</one> or <one>Transversions</one> more abundant? Also compare the frequency of the two. A: <one>Transitions are significantly more abundant</one>, at about <two>20x</two> the frequency of <three>Transversions</three>. []
23
+ - <one>Inteins</one> are <two>self-splicing proteins</two>. Which functional elements can we identify in an Intein? (1) an <one>N-extein</one> (2) followed by the <two>intein</two> (3) followed by a <one>C-extein</one> []
24
+ - <one>Sodium Bisulfit</one> konvertiert was genau? <one>Nicht-methyliertes Cytosin</one>. Anders formuliert: <two>methyliertes Cytosin ist gegenüber Sodium Bisulfit geschützt</two>.
25
+ - <one>BACs</one> wurden woher gewonnen (ihr <three>Ursprung</three> entstammt welchem Organismus)? Aus dem <one>F-Plasmid</one> aus <two>E. coli</two>. URL: https://en.wikipedia.org/wiki/Bacterial_artificial_chromosome []
26
+ - What is a <one>nested gene</one>? This usually refers to a gene that <one>lies within the intron of a larger (host) gene</one>. URL: https://en.wikipedia.org/wiki/Nested_gene []
27
+ - <one>B-DNA</one> has how many bp per turn? <one>10.5</one>. URL: https://en.wikipedia.org/wiki/Nucleic_acid_double_helix#Helix_geometries []
28
+ - <one>Ethyl methanesulfonate</one>, abbreviated EMS, is a mutagenic compound. What is its chemical formula? <one>C₃H8SO₃</one> (<cadetblue>C₃|H8|S|O₃</cadetblue>). It thus has <one>four different atoms</one>.
29
+ - Nenne ein Beispiel für eine <one>nationale Genbank</one> (allgemein). A: Das <one>Vavilov-Institut</one> in <two>St. Petersburg</two>. URL: https://en.wikipedia.org/wiki/Institute_of_Plant_Industry []
30
+ - Name two <one>centrifugation modes</one> for DNA. A: (1) <one>iso-pycnic centrifugation</one> (2) <one>CsCl-equilibrium centrifugation</one>
31
+ - Andere Bezeichnung für ein <one>cistron</one>? <one>ORF</one>. URL: https://de.wikipedia.org/wiki/Cistron []
32
+ - Why the word <one>trans</one> in <three>transgene</three>? Because <one>that gene came from another organism</one>. []
33
+ - Does <one>unwinding of the DNA double helix</one> require energy? Yes; <one>DNA helicases</one> <two>use energy from ATP</two> for the unwinding-job. URL: https://evolutionnews.org/2013/02/unwinding_the_d_1/ []
34
+ - Es gibt einen Transkriptionsfaktor der <one>CREB</one> genannt wird. Was heisst CREB? <one>CREB</one>: <two>cAMP-response element-binding protein</two>. []
35
+ - Wann fand das <one>Meselson-Stahl-Experiment</one> statt? <one>1958</one>. URL: https://en.wikipedia.org/wiki/Meselson%E2%80%93Stahl_experiment []
36
+ - How do the <one>Quinolone</one> antibiotics kill bacteria? Quinolones <one>inhibit DNA gyrase</one>, which will subsequently <two>block DNA replication</two>. []
37
+ - Give another term for <one>the generation of genetic variation</one>. A: <one>Somatic hypermutation</one>. URL: https://en.wikipedia.org/wiki/Somatic_hypermutation []
38
+ - What is the <one>most dangerous single-event DNA damage</one>? A <one>double-stranded DNA break</one>. URL: https://en.wikipedia.org/wiki/DNA_repair#Double-strand_breaks []
39
+ - Was für einen <one>Primer</one> verwendet die <two>Reverse Transkriptase</two>? Den <one>polyA-Teil einer mRNA</one>. []
40
+ - Wie kann die <one>Telomerlänge</one> gemessen werden? Über <one>quantitative PCR</one>. URL: https://en.wikipedia.org/wiki/Real-time_polymerase_chain_reaction []
41
+ - When exactly does the <one>synaptonemal complex</one> form? During <one>Prophase I of Meiosis</one>. URL: https://en.wikipedia.org/wiki/Synaptonemal_complex []
42
+ - Welcher <one>Terminationsfaktor in Eukaryoten</one> erkennt alle 3 Stop Codons? <one>eRF1</one>. URL: https://en.wikipedia.org/wiki/Eukaryotic_translation_termination_factor_1 []
43
+ - What is meant with the term <one>functional genomics</one>? The linking of <one>specific functions</one> to <one>specific genes</one>. []
44
+ - Das Gen <one>SRY</one> kodiert für? SRY kodiert für einen <one>Transkriptionsfaktor</one>, den <royalblue>TDF</royalblue> (<one>Testis-determining factor</one>). URL: https://en.wikipedia.org/wiki/Testis_determining_factor []
45
+ - Was verstehen wir unter einer <one>Depurinierung</one>? Eine <one>Depurinierung</one> ist der Verlust einer der stickstoffhaltigen Basen in der DNA-Doppelhelix.
46
+ - Andere Bezeichnung für die <one>SINES</one>? <one>Nonautonomous LINES</one>. URL: https://de.wikipedia.org/wiki/Short_Interspersed_Nuclear_Element []
47
+ - Die Zelle braucht <one>positive Ladungen</one> um die <three>negativen DNA Ladungen</three> zu kompensieren. Vor allem was? <one>Na⁺</one>. []
48
+ - More than <one>n%</one> of <two>mammalian RNA</two> is <three>rRNA</three>. A: <one>90%</one>. []
49
+ - Was ist <one>Genkonversion</one>? Das <one>Überführen eines Allels in ein anderes</one>. []
50
+ - Beim menschlichen <one>Dystrophin-Gen</one> bleibt <three>wieviel % der Gensequenz in der mRNA erhalten</three>? Weniger als <one>1%</one>. []
51
+ - Name a big reason as to why <one>single-base-pair changes</one> can inactivate a protein. A: Due to <one>splice-site mutations</one>. []
52
+ - Der Transkriptionsfaktor <one>Sp1</one> - wofür steht das <three>Sp</three> im Namen? <royalblue>SP</royalblue> steht für <one>specificity protein</one>. URL: https://en.wikipedia.org/wiki/Sp1_transcription_factor []
53
+ - Use two words to describe a <cadetblue>gene</cadetblue>, starting with the letter <one>i</one>. A: <one>Inheritance particle</one>. []
54
+ - C. elegans hat <one>DCC</one>. Wofür steht die Abkürzung <one>DCC</one>? <two>DCC</two> steht für <one>dosage compensation complex</one>. URL: https://en.wikipedia.org/wiki/Sex-Chromosome_Dosage_compensation []
55
+ - In <one>genetics</one>: the following three abbreviations <two>N</two>/<two>R</two>/<two>Y</two> stand for ... ? (1) <one>N</one> ... <two>any base</two> (2) <one>R</one> ... <two>any purine</two> (3) <one>Y</one> ... <two>any pyrimidine</two> []
56
+ - When was the sequence of <three>Saccharomyces cerevisiae</three> <one>published</one> completely? A: In the year <one>1997</one>. []
57
+ - Nenne zwei verschiedene Möglichkeiten die <one>DNA-Doppelhelix zu denaturieren</one>. A: (1) <one>Erhitzen</one> (2) <one>Zugabe von Alkali</one> []
58
+ - The human gene that encodes <one>titin</one> can be found on which chromosome? <one>Chromosome 2</one>. (<three>Mnemonic</three>: <two>Both Titin and Chromosome 2 are very, very large!</two>) []
59
+ - What is <one>the fundamental dogma of molecular biology</one>? DNA gives rise to (m)RNA which, in turn, gives rise to protein (<one>DNA → mRNA → protein</one>). []
60
+ - Nenne ein Gen das <one>epistatisch zum AB0 System</one> ist. A: Das <one>Fut1-Gen</one> (<two>Fucosyl-Transferase Gen</two>). URL: https://en.wikipedia.org/wiki/FUT1 []
61
+ - <one>EMS</one> can produce random mutation, by <two>nucleotide substitution</two>. In particular, which nucleotide is susceptible to it? <one>Guanine</one>. URL: https://en.wikipedia.org/wiki/Guanine []
62
+ - Andere Bezeichnung für die <one>tautomere Formen</one> der Nukleotide? <one>Strukturisomere</one>. []
63
+ - What exactly does a <one>restriction enzyme</one> recognize? (1) the <one>recognition site</one> (2) the <one>cleavage site</one> []
64
+ - <one>Human Mitochondria</one> depart from the standard code. Name two ways. A: (1) <one>UGA</one> codes for <three>W</three> rather than <two>STOP</two> (2) <one>AGA</one> and <one>AGG</one> are <two>STOP codons</two>, rather than <three>Arginine Codons</three>
65
+ - Es gibt mindestens 3 verschiedene Pol III Promotoren. Typ-1 und Typ-2 sind für 5S-rRNA und tRNAs zuständig. Nenne <one>ein Beispiel für eine RNA</one>, die stellvertretend für die RNA Pol III Promoteren dienen mag. A: Die <one>U6-snRNA</one>.
66
+ - Nenne die zwei <one>Signatursequenzen</one> der <two>Rossman-Schleife</two>. A: (1) <one>HIGH</one>, <two>4</two> (2) <one>KMSKS</one>, <two>5</two> []
67
+ - Was ist ein <one>Victim</one> Transposon? Dies ist ein Transposon, in das andere Transposons hineinspringen. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3091746/ []
68
+ - Bei <one>Imprinting des Menschen</one> gibt es <lightseagreen>paternale</lightseagreen> und <lightseagreen>maternale Muster</lightseagreen>. Unterschied? Paternale Gene fördern, maternale Gene hemmen das <one>fetale Wachstum</one>. []
69
+ - What does the term <one>codominant</one> mean in genetics? <one>Two alleles contribute independently to the phenotype</one>. This implies that there is an <two>independence of allele functions</two>. []
70
+ - Wer gilt als <one>Begründer der Epigenese</one>? <one>William Harvey</one>: ein Organismus entwickelt sich aus einem befruchteten Ei. URL: https://de.wikipedia.org/wiki/William_Harvey []
71
+ - In genetics: what is meant with <one>5-BrU</one>? <two>5-BrU</two> refers to <one>5-Bromouracil</one>. URL: https://en.wikipedia.org/wiki/5-Bromouracil []
72
+ - <one>Exitrons</one> combine features of ....... ? <one>Exons</one> and <one>Introns</one>. URL: https://en.wikipedia.org/wiki/Exitron []
73
+ - Welche zwei <one>Energiequellen</one> kommen für <two>DNA Ligasen</two> allgemein in Frage? (1) <one>ATP</one> (2) <one>NADH</one> []
74
+ - Give another name for the term <one>Epistasis</one>. A: <one>Interactions between genes</one>. []
75
+ - Give an example for a <one>RNA-dependent DNA polymerase</one>. A: The enzyme <one>reverse transcriptase</one>. URL: https://en.wikipedia.org/wiki/Reverse_transcriptase []
76
+ - When did <one>Francis Crick</one> develop the <lightseagreen>wobble hypothesis</lightseagreen>? In the year <one>1966</one>. URL: https://en.wikipedia.org/wiki/Wobble_base_pair#Brief_history []
77
+ - What is the signal that gives rise to <three>RNA interference</three> (<one>RNAi</one>)? A <one>double stranded RNA</one> (<two>dsRNA</two>). []
78
+ - In der Genetik: was bezeichnen wir mit dem Stichwort <one>Stringenz</one>? Dies sind <one>Reaktionsbedingungen</one>, die die Zusammenlagerung zweier einzelsträngiger Nukleinsäuremoleküle beeinflussen. Je stringenter ("zwingender") die Bedingungen, desto perfekter müssen die DNA-Moleküle zueinander passen, damit sie sich zusammenlagern können (== "Komplementarität").
79
+ - Die <one>Telomerase</one> fügt an welchem Ende neue DNA hinzu? Logischerweise nur am <one>3' Ende</one>. URL: https://de.wikipedia.org/wiki/Telomerase []
80
+ - Wie geht die <one>Chargaff-Regel</one>? Die <one>Gesamtmenge der Purin-Nukleotide</one> (<three>A + G</three>) ist immer gleich der <one>Gesamtmenge der Pyrimidin-Nukleotide</one> (<three>T + C</three>). URL: https://de.wikipedia.org/wiki/Chargaff-Regeln []
81
+ - <one>Frösche</one>, die keine Ribosomen synthetisieren können, mögen für einige Zeit überleben. Warum? Das <one>Oocytenplasma</one> enthält Ribosomen, welche die Fehlfunktion einige Zeit kompensieren können.
82
+ - Wann stellte <one>Francis Crick</one> das zentrale Dogma (<two>flow of genetic information</two>) auf? Im Jahre <one>1956</one>; 1970 wurde es dann in Nature erneut publiziert. URL: https://en.wikipedia.org/wiki/Central_dogma_of_molecular_biology []
83
+ - Was für ein Typ sind die <one>SMC</one> (<one>structural maintenance of chromosomes</one>)-Proteine? <one>ATPasen</one>, wie <two>Cohesins</two> und <two>Condesins</two>. []
84
+ - Which <one>number</one> does <three>Pyrosequencing</three> have? <one>454</one>. URL: https://en.wikipedia.org/wiki/Pyrosequencing []
85
+ - <one>New alleles</one> are created when ... change. A: <one>genes</one>. []
86
+ - Für die <one>DNA-Replikation</one> ist <three>welche Korrekturlesefunktion</three> eminent wichtig? Die <one>3' to 5' Exonucleaseaktivität</one> (<one>3' → 5'</one>).
87
+ - In <one>R-Plasmids</one>, at their <cadetblue>RTF components</cadetblue>: which structural entity limits them? <one>IS1-elements</one>. URL: https://en.wikipedia.org/wiki/Plasmid#Classifications_and_types. []
88
+ - Das erste menschliche Gen, das einem Chromosom zugeordnet werden konnte, war <one>welches Gen</one>? Das Gen, das <orange>bei Ausfall</orange> <one>Farbenblindheit</one> verursacht (<royalblue>Achromatopsie</royalblue>). URL: https://de.wikipedia.org/wiki/Farbenblindheit []
89
+ - <three>Was</three> genau postulierte die veraltete <one>Tetranucleotid-Hypothese</one>? Das <one>alle vier Nukleotide in gleichen Mengen vorkommen</one>.
90
+ - Warum das Wort <one>Antiterminator</one>? Da es in diesem Fall zu <tomato>KEINER</tomato> Termination kommt. URL: https://de.wikipedia.org/wiki/Antiterminator []
91
+ - The <one>RuvA protein</one> has n subunits? <one>4</one> - thus, it is a <one>tetramer</one>. URL: https://en.wikipedia.org/wiki/RuvABC []
92
+ - How can <one>acentric chromosomes</one> arise? When <royalblue>centromeric regions</royalblue> are <cadetblue>deleted</cadetblue>. URL: https://en.wikipedia.org/wiki/Acentric_fragment []
93
+ - Zur <one>Herstellung konditioneller Knockouts</one> können wir auch ... benutzen. A: Das <one>cre</one>/<one>loxP-System</one>. URL: https://de.wikipedia.org/wiki/Cre/loxP-System []
94
+ - What is <one>the modus operandi</one> of the <two>Type I Topoisomerase</two>? The <two>Type I Toposiomerase</two> <one>cuts one strand</one> of a DNA double helix, then <one>relaxation</one> occurs, and then the cut strand is reannealed again. []
95
+ - <one>Poly-AC</one> (<three>Adenin</three> and <three>Cytosin</three>), for example, will yield how many different codons, if combined in every way? <royalblue>8</royalblue>. (1) <one>CCC</one> (2) <one>CCA</one> (3) <one>CAC</one> (4) <one>ACC</one> (5) <one>CAA</one> (6) <one>ACA</one> (7) <one>AAC</one> (8) <one>AAA</one> []
96
+ - Which protein replaces the <one>SSB Protein</one>? <one>PriA</one>. URL: https://www.uniprot.org/uniprot/P17888 []
97
+ - The human genome contains how many <one>piRNAs</one>? More than <one>50.000</one>. []
98
+ - At the <three>F-Factor</three>: <one>homologous areas</one> act as? They act as <one>a pairing region</one>. []
99
+ - Was heisst <one>CAPS Marker</one>? <royalblue>CAPS</royalblue> steht für <one>Cleaved Amplified Polymorphic Sequences</one>. URL: https://www.ncbi.nlm.nih.gov/probe/docs/techcaps/ []
100
+ - <one>Bromodeoxyuridine</one> (<two>BrdU</two>) ist ein Analog zu? <one>Desoxythymidin</one> aka <two>Thymidin</two>. URL: https://de.wikipedia.org/wiki/Desoxythymidin []
101
+ - Das Enzym <one>Dicer</one> kommt bei welchem zellulären Ereignis zum tragen? Bei der <one>RNA Interferenz</one> (<two>RNAi</two>). URL: https://en.wikipedia.org/wiki/RNA_interference []
102
+ - Was kann die <one>DNA-Gyrase</one>? Die <two>DNA-Gyrase</two> kann <one>negative Supercoils</one> einführen. URL: https://en.wikipedia.org/wiki/DNA_gyrase []
103
+ - Nenne eine recht <one>primitive, experimentelle Methode</one> wie wir <violet>Rekombination</violet> bei Eukarya und Prokarya fördern können. A: Durch <one>Behandlung mit Röntgenstrahlen</one>. []
104
+ - The human <one>MDR1 gene</one>: MDR is an abbreviation for ... and this gene codes for ... ? <two>MDR</two> stands for <peru>Multi-Drug Resistance</peru>. It is a <one>drug efflux pump</one>. URL: https://en.wikipedia.org/wiki/Multiple_drug_resistance []
105
+ - Warum wird der Buchstabe <cadetblue>n</cadetblue> for den '<one>ploidy state</one>' verwendet? <two>n</two> steht hier für <one>Nummer</one>, <royalblue>number of chromosomes</royalblue>. []
106
+ - Nenne ein Enzym, das <one>Thymin-Dimere</one> reparieren kann. A: Die <one>Photolyase</one>. URL: https://en.wikipedia.org/wiki/Photolyase []
107
+ - The cell can phosphorylate three Aminoacids. How are these phosphor-groups connected to the individual aminoacid in question? They reside on to the <two>O- group</two> of the <one>-OH group</one>.
108
+ - Nenne zwei Beispiele von <one>commonly used continous cell lines</one>. A: (1) <one>HeLa</one> (2) <one>HEp-2</one> []
109
+ - Das <three>F-Plasmid</three> kodiert für ein Enzym das auch <one>nickase</one> genannt wird. Nenne ein anderes Wort für dieses Enzym. A: <one>Strand transferase</one>. URL: https://en.wikipedia.org/wiki/Nicking_enzyme []
110
+ - What does the word <one>isopycnic</one> mean? Of the <one>same density</one>. []
111
+ - When there is <one>a pyrimidine</one> in the <lightseagreen>second position of a codon</lightseagreen>, what may we infer what type of amino acid may be specified here? A <one>hydrophobic amino acid</one>. []
112
+ - Von-bis (<peru>in kb</peru>) des <one>Chloroplasten-Genoms</one>? <one>120 kb</one> bis <one>200 kb</one>. []
113
+ - Bei der <one>Konjugation</one>: wo wird die DNA des F-Plasmids geöffnet? Im Bereich des <one>oriT</one>. URL: https://de.wikipedia.org/wiki/F-Plasmid#Strukturmerkmale []
114
+ - Das <one>F-Plasmid</one> integriert normalerweise wo hinein ins bakterielle Chromosom? Zwischen ein <one>IS3-Element</one>. []
115
+ - Who established the <one>chromosome theory of inheritance</one> in 1902? <one>Walter Sutton</one>. (Theodor Boveri also came to the same conclusion, at about the same time). URL: https://en.wikipedia.org/wiki/Walter_Sutton []
116
+ - In Eukarya: nenne <one>genetisches Kennzeichen</one> für deren Gen-Anfänge. A: <one>CpG Inseln</one>. URL: https://de.wikipedia.org/wiki/CpG-Insel []
117
+ - Which <one>accessory protein</one> keeps the pol III attached to the DNA molecule during <one>DNA replication</one>? The <one>beta-clamp</one>. URL: https://en.wikipedia.org/wiki/DNA_clamp#Bacterial []
118
+ - Was heisst <one>cDNA</one>? <one>Complementary DNA</one>. URL: https://en.wikipedia.org/wiki/Complementary_DNA []
119
+ - Im <one>Mais-Genom</one>: ist das <three>Ac Element</three> oder das <three>Ds Element</three> größer? Das <one>Ac-Element</one> ist größer. Es kann Ds Elemente aktivieren, wohingegen Ds Elemente ohne Ac <two>im Genom an ihrer Stelle verweilen</two>. []
120
+ - Die <one>Meiose</one> besteht aus welchen zwei Schritten? (1) <one>Trennung der Chromosomen</one> (2) <one>Trennung der Chromatiden</one> []
121
+ - Sites <one>n bp apart</one> on linear DNA, are <two>close together on the nucleosome</two>? <one>80bp</one>. []
122
+ - <one>Durchmesser</one>, in nm, einer <two>Chromatinfaser</two>? <one>30 nm</one>. []
123
+ - Which mode can we observe for <one>true jumping genes</one>? The <one>conservative mode</one>. []
124
+ - Define the term <one>cccDNA</one>. A: <one>covalently closed circular DNA</one>. []
125
+ - <one>Luria-Delbrück</one> performed the <two>fluctuation test</two> in genetics. Give another name for this experiment. A: <one>Spontaneous Mutation Model</one>. URL: https://en.wikipedia.org/wiki/Luria%E2%80%93Delbr%C3%BCck_experiment []
126
+ - What do we mean with <one>relaxed plasmids</one>? These are plasmids that are <one>high-copy number</one>; their DNA replication does not depend on host cell chromosomal DNA replication.
127
+ - Recombineering funktioniert sowohl mit <one>ssDNA</one> als auch mit <one>dsDNA</one>. Womit effizienter? Mit <two>ssDNA</two> ist es mehr als 100-fach (<one>100x</one>) so effizient, verglichen zu <two>dsDNA</two>. []
128
+ - In der <one>Pflanzengenetik</one>: können wir <three>unterschiedliche Sorten</three> miteinander kreuzen? Ja. []
129
+ - Wann kommt <one>RAD51</one> zum Einsatz? Bei <one>Doppelstrangbrüchen der DNA</one>. URL: https://de.wikipedia.org/wiki/Rad51 []
130
+ - In regards to <one>transposons</one>: what do we mean with <three>negative selection</three>? That refers to the situation <two>when a transposon</two> <one>inserts into an exon</one>.
131
+ - <one>GroE</one> ist was für ein <two>Proteintyp</two>? <two>GroE</two> ist ein <one>Hitzeschock-Protein</one>. []
132
+ - Die <cadetblue>Transposase</cadetblue> in Mais beim Ac/Ds element bindet woran? Jeweils an das Ende von <one>Ac</one> und <one>Ds</one>. []
133
+ - What do we mean, in genetics, with the term <one>neofunctionalization</one>? Recruitment of a gene to <one>a new function</one>. URL: https://en.wikipedia.org/wiki/Neofunctionalization []
134
+ - Welche <one>zwei Stopcodons</one> kodieren in Wimpertierchen für Aminosäuren? (1) <one>UAA</one> (2) <one>UAG</one> []
135
+ - Wie nennen wir in der Genetik den <one>Ersatz eines Bausteins durch einen anderen</one>, in der DNA? <one>Mutation</one>. []
136
+ - In which year did <one>Next-Generation Sequencing</one>, sort of, break through? In the year <one>2005</one>. URL: https://en.wikipedia.org/wiki/DNA_sequencing#High-throughput_methods []
137
+ - Welche <one>zwei verschiedene Arten</one> von <three>Punktmutationen</three> existieren? (1) <one>Transitionen</one> (2) <one>Transversionen</one> []
138
+ - Was macht das <one>spo11 Protein</one>? Es verursacht einen <one>Doppelstrangbruch</one> in einem <two>Chromatid</two>. []
139
+ - Evolutionär betrachtet: wozu dienen <one>Transpositionselemente</one>? Sie können <one>Entwicklungsschübe für die Zelle verursachen</one>. []
140
+ - Wann ist der <one>Trp R Repressor</one> aktiv? Nur <one>wenn er Tryptophan gebunden hat</one>. []
141
+ - Nenne einen wichtigen Unterschied zwischen <one>prä-mRNA</one> und <one>mRNA</one>. A: Die <one>prä-mRNA</one> hat noch <two>Introns</two>; die reife <one>mRNA</one> hat <two>keine Introns</two> mehr. []
142
+ - Name a <one>disadvantage</one> of the <three>translesion DNA polymerase</three>. A: They tend to make more errors because their <one>active sites are more open</one>.
143
+ - <mediumaquamarine>Recombineering</mediumaquamarine> uses what as substrate? Recombineering can utilize both <one>ssDNA</one> and <one>dsDNA</one>. URL: https://en.wikipedia.org/wiki/Recombineering []
144
+ - In den (menschlichen) <one>Mitochondrien</one> kodiert <three>UGA</three> für? Die Aminosäure <one>Tryptophan</one>. []
145
+ - Ein normales <one>P-Element</one> (aus Drosophila) kodiert für welche Proteine? (1) <one>Transposase</one> (2) <one>Repressorprotein</one> []
146
+ - When was the <one>cystic fibrosis gene</one> (<peru>CFTR gene</peru>) first cloned? It was first cloned in the year <one>1989</one>. URL: https://en.wikipedia.org/wiki/Cystic_fibrosis_transmembrane_conductance_regulator []
147
+ - Das <one>Drosophila P-Element</one> ist <two>sequenzidentisch</two> zu Elementen der evolutionär weit entfernten ... ? <one>Drosophila willistoni-Gruppe</one>. URL: https://en.wikipedia.org/wiki/Drosophila_willistoni
148
+ - Simonds defined <one>plant breeding</one> as <three>allele-substitution</three>. Why the name <three>allele-substitution</three>? Because <royalblue>inferior alles</royalblue> are <one>replaced</one> by <one>superior alleles</one>. []
149
+ - Wann beobachtet man die <one>A-Form</one> der DNA? Wenn die DNA <one>dehydrated</one> ist - also <two>keine umgebenden Wassermoleküle vorliegen</two>. []
150
+ - Was sind <one>plektonemische Verdrillungen</one> in der DNA? Dies ist der Fall wenn die DNA Stränge ohne Aufdrehen/Öffnung nicht getrennt werden können. []
151
+ - What does <one>kinetic proofreading</one> mean? This means <one>to make corrections on the fly</one>. URL: https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0066112 []
152
+ - In der <one>Genetik</one>: wofür steht die Abkürzung <royalblue>NHEJ</royalblue>? <one>Non-homologous end joining</one>. URL: https://en.wikipedia.org/wiki/Non-homologous_end_joining []
153
+ - <one>Ty transposons</one> have an <orange>organization</orange> that is similar to ... ? <one>Endogenous retroviruses</one>. URL: https://en.wikipedia.org/wiki/Ty5_retrotransposon []
154
+ - Whenever information is copied, ... may arise. A: <one>Errors</one>. []
155
+ - In welchem Tier mögen wir <one>Histon H5</one> finden? Im <one>Huhn</one>. []
156
+ - Das <one>mitochondriale Genom</one> besitzt <two>1 H-Strang</two> sowie <two>1 L-Strang</two>. Welche Nukleotide dominieren jeweils? (1) Im <one>H-Strang</one> dominiert <two>G</two> (<three>GH</three>). (2) Im <one>L-Strang</one> dominiert <two>C</two> (<three>CL</three>). []
157
+ - Warum kann <one>IPTG</one> als <three>verlässlichen Induktor für das lac-Operon</three> verwendet werden? (1) Zum Einen ist <two>IPTG</two> der <one>Allolactose</one> strukturell ähnlich. (2) Zum Anderen kann die Bindung mit einem <one>S-Atom</one> nicht durch das Enzym gespalten werden. []
158
+ - Der <one>Exconjugant</one>, in der Genetik, hat welche zwei Elemente? (1) <one>Endogenote</one> (2) <one>Exogenote</one> []
159
+ - Nenne ein <one>Enzym</one>, das zwischen <two>Cytosin</two> und <two>5-Methylcytosin</two> <three>'vermittelt'</three>. A: Die <one>DNA Methyltransferase</one>. URL: https://en.wikipedia.org/wiki/DNA_methyltransferase []
160
+ - How can <one>dicentric chromosomes</one> arise? When we <one>duplicate a centromere</one>. URL: https://en.wikipedia.org/wiki/Dicentric_chromosome []
161
+ - Name the <one>two elements of a cosmid</one>. A: (1) <one>cos sites</one> (2) <one>plasmid</one> []
162
+ - In der Genetik: was bedeutet <one>sublethal</one>? Wenn die <one>Lethality</one> nicht 100 ist, sondern irgendwo <one>zwischen 0 und 100</one>.
163
+ - What means <one>genotoxic</one>? This term essentially refers to <one>DNA-damaging agents</one>. []
164
+ - <one>Wieviele Stickstoffatome</one> haben <three>Purine</three>, wieviele <three>Pyrimidine</three>? Pyrimidine besitzen 2 Stickstoffatome; Purine hingegen besitzen 4 Stickstoffatome. (Purine haben somit doppelt so viele Stickstoffatome wie Pyrimidine). []
165
+ - Provide another term for <one>genetic diversity</one>. A: <one>Variation</one>. []
166
+ - <one>CAF-1</one> mit Cargo bindet woran? An den <one>PCNA</one> (ist wie Beta-Clamp bei Prokaryoten, nur eben bei eukaryoten Organismen). URL: https://en.wikipedia.org/wiki/Proliferating_cell_nuclear_antigen []
167
+ - What is <one>cisgenesis</one>? <one>Cisgenesis</one> is the genetic modification of a recipient plant with a natural gene from a crossable-sexually compatible-plant. Such a gene has introns, and is flanked by its native promoter and terminator.
168
+ - <one>Humans</one> have how many repeats of the <violet>TTAGGG sequence</violet> in their <two>telomeres</two>? <one>10-10kb</one>. []
169
+ - What do we mean with <one>Heterosis</one>? This is <two>the improved function of any biological quality</two> <one>in a hybrid offspring</one>. URL: https://en.wikipedia.org/wiki/Heterosis#Definitions []
170
+ - Welche zwei <one>Bindungstypen</one> finden wir in einem Nukleotid? Hilfestellung: Wir betrachten den Zucker als "zentrale Komponente". (1) eine <one>N-glykosidische Bindung</one> zwischen <two>Zucker+Base</two> (2) eine <one>Esterbindung</one> zwischen <two>Zucker+Phosphat</two>
171
+ - Was verstehen wir unter dem Begriff <one>Temperatur-sensitive (ts) Mutanten</one>? Dies sind <one>Mutanten</one>, die <two>bei höheren Temperaturen nicht wachsen können</two>. []
172
+ - Give another term for the expression <one>colony</one>, in genetics/cell biology. A: <one>Cell clones</one>. []
173
+ - <one>Functional globin genes</one> have n Exons? <one>3</one>. []
174
+ - Wie kann man sich die <one>Histone</one> möglichst plastisch vorstellen und aus welchen Monomeren bestehen sie jeweils? Als <one>zwei Scheiben</one> (<royalblue>Doppelscheiben</royalblue>), die aus je 1x <two>H2A</two>, <two>H2B</two>, <two>H3</two> und <two>H4</two> bestehen. []
175
+ - What is <one>Hemochromatosis</one>? This is an <one>abnormally high absorption of iron from the diet</one>. URL: https://en.wikipedia.org/wiki/Hemochromatosis []
176
+ - Wo findet man die <one>TATA Box</one> im menschlichen Genom? Etwa <two>25 bp upstream</two> der <three>transcription start site</three> (<one>TSS</one>). URL: https://en.wikipedia.org/wiki/TATA_box#Overview []
177
+ - <one>Die erste jemals isolierte mRNA kodierte für</one> ... ? <one>Fibroin</one>. URL: https://en.wikipedia.org/wiki/Fibroin []
178
+ - Wieviele <one>Ringe</one> besitzt <two>Ethidiumbromid</two>? <one>4</one>. URL: https://en.wikipedia.org/wiki/Ethidium_bromide []
179
+ - In der Genetik: was ist das Phänomen der <one>Induktion</one>? <one>Induktion</one> ist der Prozess, bei dem <two>ein Signal die Expression eines Gens initiiert</two>. []
180
+ - Nenne das genetische <one>Paradebeispiel</one> für <two>paternal imprinting</two> und <two>maternal imprinting</two>. A: (1) <two>Maternal vererbtes Gen</two>: <one>H19</one>. (2) <two>Paternal vererbtes Gen</two>: <one>igf2</one>. []
181
+ - Ribosomen haben drei Stellen, <one>E</one>, <one>P</one>, <one>A</one>. Wofür stehen diese Buchstaben jeweils? (1) <one>E</one> für <two>Exit-Site</two> (2) <one>P</one> für <two>Peptidyl-Site</two> (3) <one>A</one> für <two>Aminoacyl-Site</two> []
182
+ - Wann exprimiert der Mensch das <one>β-Globingen</one>? Einige Tage nach der Geburt. URL: https://de.wikipedia.org/wiki/%CE%92-Globin []
183
+ - Name <one>an adduct forming agent</one> that begins with the letter <two>a</two>. A: <one>Acetaldehyde</one>. URL: https://en.wikipedia.org/wiki/Acetaldehyde []
184
+ - What is the effect of the binding of <one>TBP</one> to <two>TATA</two>? This will <one>induce a strong bend of the dsDNA</one>. []
185
+ - Wie lange sind <one>Okazaki Fragmente</one>? (1) <one>100-200</one> in <one>Eukarya</one> (2) <one>1000-2000</one> in <one>Prokarya</one> []
186
+ - Wie heisst die <one>Vielfingrigkeit</one> mit dem Fachbegriff? <one>Polydaktylie</one>. URL: https://de.wikipedia.org/wiki/Polydaktylie []
187
+ - <one>EMS</one> can cause mutations, in particular which type of mutations? Only <one>point mutations</one>. (Mnemonic: <two>EMS causes point mutations</two>) []
188
+ - Was weiss man wenn man eine <one>Manx cat</one> sieht? Das diese Katze <two>heterozygot</two> sein muss, da der <one>homozygote Zustand</one> zu einer toten Katze führen würde. URL: https://de.wikipedia.org/wiki/Manx_(Katze) []
189
+ - Das <one>Mariner-like element</one> gehört zu welcher Klasse? <one>Class II Transposable Element</one>. URL: https://en.wikipedia.org/wiki/Tc1/mariner []
190
+ - Wie können wir vermuten das <one>Transposons</one> aktiv sind? Durch <one>ungewöhnlich hohe Mutationsraten bestimmter Gene</one>. []
191
+ - Nenne ein <three>Enzym</three>, das <one>den Verlust von Basenpaaren detektieren kann</one>. A: Die <one>AP-Endonuklease</one>. URL: https://en.wikipedia.org/wiki/AP_endonuclease []
192
+ - Was genau kann die <one>DNA Ligase</one> verknüpfen? Eine <one>3' OH Gruppe</one> sowie eine <one>5' Phosphoryl-group</one>.
193
+ - Anderes, wissenschaftlicheres Wort für das <one>Kernplasma</one>? <one>Karyoplasma</one>. URL: https://de.wikipedia.org/wiki/Karyoplasma []
194
+ - Was ist das <one>genetische Risiko</one>? Dies ist <one>die Summe aus risikovermehrenden und -vermindernden Genen</one> (beziehungsweise deren <two>Polymorphismen</two>).
195
+ - What does the <one>cystic fibrosis gene</one> code for? A <one>cell membrane protein</one> - a <two>channel protein</two> - that governs the transport of (negatively charged) <three>chloride ions</three> in and out of the cell.
196
+ - Welche <three>drei prinzipielle Möglichkeiten</three> gibt es bei <one>Chromosomen-Mutationen</one>? (1) <one>A</one> ... <two>Amplifikation</two> (2) <one>D</one> ... <two>Deletion</two> (3) <one>T</one> ... <two>Translokation</two> []
197
+ - <one>Which gene</one> determines <three>maleness</three> in humans? The <one>SRY</one> gene. URL: https://en.wikipedia.org/wiki/Testis-determining_factor []
198
+ - Name 3 reasons why the <two>Bt toxin</two> supposedly is a <one>good insecticide</one>. A: (1) It is specific to particular insects (2) it breaks down quickly in the environment (3) it is not toxic to humans
199
+ - Nenne drei Kennzeichen eines <one>YAC</one>. A: (1) <one>ORI</one> (2) <one>Centromere</one> (3) <one>Telomere</one> []
200
+ - Wer entdeckte <one>Plasmide</one>? <one>Watanabe</one>. URL: http://histmicro.yale.edu/history1.htm []
201
+ - Who is <one>the father of genetics</one>, with his full name? <one>Gregor Mendel</one>. URL: https://de.wikipedia.org/wiki/Gregor_Mendel []
202
+ - Wofür steht das englische Kürzel <one>hnRNA</one>? <one>Heterogeneous nuclear RNA</one>. URL: https://en.wikipedia.org/wiki/Precursor_mRNA []
203
+ - Name two general ways <one>how to detect horizontal gene transfer</one>. A: (1) <one>GC-content</one> (2) <one>codon bias</one> []
204
+ - Was heisst <one>LINE</one> genau? <one>Long interspersed nuclear element</one>. URL: https://en.wikipedia.org/wiki/Long_interspersed_nuclear_element []
205
+ - In <three>classical genetics</three>: how can <one>intragenic deletions</one> be distinguished from <one>normal mutations</one>? (1) <two>Normal mutations</two> <one>can revert to wild type</one>. (2) <two>Intragenic deletions</two> <one>can not revert to wild type</one>. []
206
+ - What means, at the non-histone protein <one>HMG14</one>, the <lightseagreen>HMG</lightseagreen> abbreviation? <one>High mobility group</one>. URL: https://en.wikipedia.org/wiki/High-mobility_group []
207
+ - Welche Aufgabe hat die <one>DNA-Polymerase I</one>? <one>DNA-Polymerase I</one> fügt die fehlenden Nukleotide <two>zwischen den Okazaki Fragmenten</two> hinzu.
208
+ - Name an animal with a surprisingly low proportion / amount of transposable elements in the genome. A: <one>Apis mellifera</one>, aka the <two>Western honey bee</two>. URL: https://en.wikipedia.org/wiki/Western_honey_bee []
209
+ - Welche <one>Untereinheit</one> der <two>DNA-Polymerase III</two> ist zuständig für die <three>Korrekturlesefunktion</three>? Die <one>Epsilon-Untereinheit</one>. []
210
+ - Gibt es <one>DNA Ribozymes</one>? A: Ja. <one>DNA nanomachines</one>. URL: https://books.google.at/books?id=YNTFCgAAQBAJ&pg=PA127&lpg=PA127&dq=Catalytic+oligonucleotides+(DNA+enzymes+and+ribozymes)+can+be+selected+using+a+similar+strategy.+DNA+sensor&source=bl&ots=-kXZDUa6Xw#v=onepage&q=Catalytic%20oligonucleotides%20(DNA%20enzymes%20and%20ribozymes)%20can%20be%20selected%20using%20a%20similar%20strategy.%20DNA%20sensor&f=false []
211
+ - Provide another term for the expression <one>synonymous mutations</one>. A: <one>Silent mutations</one>. URL: https://en.wikipedia.org/wiki/Silent_mutation []
212
+ - In welchem Jahr wurde das Phänomen der <one>Transduktion</one> entdeckt? Im Jahre <one>1951</one>, von <two>Joshua Lederberg</two>. URL: https://en.wikipedia.org/wiki/Transduction_%28genetics%29 []
213
+ - <one>Gene Ontology</one> (<three>GO</three>) can fall into <cadetblue>which area of genetics</cadetblue>? <two>Gene Ontology</two> could fall into <one>the area of functional genomics</one>. []
214
+ - What do we mean when we say <one>specialized transduction</one>? This is a specific form of transduction in where <two>only specific areas</two> located <one>near the attachment site</one> are transduced. Transducing particles thus carry both chromosomal DNA and phage DNA.
215
+ - <one>Luciferase</one> light emission happens at ... nm? <one>562 nm</one>. URL: https://en.wikipedia.org/wiki/Luciferase []
216
+ - We can put a gene under <three>TextR control</three>. What <one>advantage</one> do we have with that? We can induce this gene via <royalblue>Doxycyclin</royalblue>, which is a <one>Tetracyclin analog</one>. []
217
+ - Andere Bezeichnung für eine <one>gemeinsame Vererbung</one>? <one>Gekoppelte Vererbung</one>. []
218
+ - Was ist die <one>Genomik</one>? <one>Genomik</one> ist <two>die Untersuchung von Genomen</two>. URL: https://de.wikipedia.org/wiki/Genom []
219
+ - Nenne ein Phänomen, das zu <one>Inzuchtlinien</one> führt. A: <one>Heterosis</one>. URL: https://de.wikipedia.org/wiki/Heterosis-Effekt []
220
+ - Warum werden <one>Genome-wide association studies</one> verwendet? Um <one>polygene Erbgänge</one> zu erfassen und zu analysieren. []
221
+ - Which person discovered <one>dosage compensation</one> in <lightseagreen>mammals</lightseagreen>? <one>Mary Lyon</one>. URL: https://en.wikipedia.org/wiki/Mary_F._Lyon []
222
+ - The <one>pol I enzyme</one> is primarily involved in ...? <royalblue>DNA repair</royalblue>. URL: https://en.wikipedia.org/wiki/DNA_polymerase_I#Function []
223
+ - Wie lässt sich die <one>Enzymaktivität der Telomerase</one> bestimmen? Durch die <one>TRAP-Methode</one>. URL: https://de.wikipedia.org/wiki/TRAP-Methode []
224
+ - <one>Nickel hydride</one> appliziert auf <two>cysteine-tRNA</two> führt zu ...? <one>Alanine tRNA</one>. []
225
+ - Wofür steht jeweils die Abkürzungen <one>snRNA</one> und <one>snoRNA</one>? A: (1) <one>snRNA</one>: <two>small nuclear RNA</two> (2) <one>snoRNA</one>: <two>small nucleolar RNA</two> []
226
+ - Ist <one>Acridinorange</one> schwerer als <two>Proflavin</two>? Ja. Siehe: URL: https://upload.wikimedia.org/wikipedia/commons/7/71/Acridine_Orange.png []
227
+ - Welches <orange>Allel</orange> besitzen jeweils <one>Sphynx</one> und <one>Devon Rex</one> Katzen? (1) <one>Sphynx-Katzen</one> besitzen das <two>hairless</two> Allel (Mnemonic: auch die Sphinx in Ägypten ist haarlos) (2) <one>Devon-Rex-Katzen</one> besitzen das <two>curly Allel</two> []
228
+ - Wann wurde das <one>pulse-chase Experiment</one> durchgeführt? Im Jahre <one>1957</one>. URL: http://what-when-how.com/molecular-biology/pulse-chase-experiments-molecular-biology/ []
229
+ - Wie können wir den <one>de-novo Weg</one> der <peru>Nucleotidsynthese</peru> versperren? Mit Hilfe von <one>Aminopterin</one>. URL: https://de.wikipedia.org/wiki/Aminopterin []
230
+ - Welche allgemeine Aufgabe hat das <one>Histon H1</one>? <three>Histon H1</three> <two>verschließt</two> die Ein- und Austrittstelle der DNA am <one>Histon-Oktamer</one>. URL: URL: https://de.wikipedia.org/wiki/Histon_H1 []
231
+ - Anderes Wort für eine <one>Mutagenese</one>? <one>Induzierte Mutationsauslösung</one>. []
232
+ - What is the most interesting feature of a cosmid? Unlike plasmids, cosmids can be packaged in <two>phage capsids</two>, which allows the foreign genes to be transferred into or between cells by <one>transduction</one>.
233
+ - Gibt es <one>uniparentale Vererbung</one> bei Pflanzen? Ja. []
234
+ - Was ist der zentrale <one>Gal-Regulator</one>? <royalblue>Gal4</royalblue>. []
235
+ - Wo fängt man an einer <one>tRNA</one> beim Zählen an? Am <one>5' Ende</one>. []
236
+ - Haben die <mediumturquoise>Thrombozyten</mediumturquoise> einen <one>Zellkern</one>? Nein - genausowenig wie die <two>Erythrozyten</two>. []
237
+ - What happens if a cell overexpresses <one>mi-RNA26a</one>? This cell will <one>undergo apoptosis</one>. URL: https://en.wikipedia.org/wiki/Mir-26_microRNA_precursor_family []
238
+ - In which journal did <one>Gregor Mendel</one> publish his experimental results? In <one>Verhandlungen des Naturforschenden Vereines in Brünn</one>, 1866. The title was <two>"Versuche über Pflanzen-Hybriden"</two>.
239
+ - Wann wurde die <one>TATA-Box</one> entdeckt? Im Jahre <one>1978</one>, durch <two>David Hogness</two>. URL: https://en.wikipedia.org/wiki/TATA_box []
240
+ - Die gleichmässige Verteilung von Plasmiden auf Tochterzellen während der Zellteilung nennt man ... ? <one>Plasmid-Segregation</one>. URL: https://faculty.washington.edu/jkoll/plasmid-segregation.html []
241
+ - In genetics, what is the <one>simplest locus</one>? A: A <one>SNP</one>. URL: https://en.wikipedia.org/wiki/Single-nucleotide_polymorphism []
242
+ - Die <one>dam-Methylierung</one> erfolgt bei welcher Sequenzfolge? <one>GATC</one>. []
243
+ - Wie kann man, möglichst einfach, beweisen das die <olive>Isogameten von Chlamydomonas</olive> nicht ident sind? Unterschiedliche Isogameten <one>verklumpen</one> wenn man sie mischt. []
244
+ - Name a <one>sensor enzyme</one> that can <three>sense dsDNA breaks</three>. A: The <one>ATM kinase</one> (<two>ATM serine</two>/<two>threonine kinase</two>). URL: https://en.wikipedia.org/wiki/ATM_serine/threonine_kinase []
245
+ - Give another term for the <violet>ssb</violet> (<one>single strand binding</one>) protein. A: <one>Helix-destabilizing protein</one>. URL: https://en.wikipedia.org/wiki/Single-strand_DNA-binding_protein []
246
+ - <one>Type IV restriction enzymes</one> target ...? <one>Methylated DNA</one>. []
247
+ - In der Genetik: was meinen wir mit den <one>"springenden Elementen"</one>? Dies sind <one>Transposons</one>. URL: https://de.wikipedia.org/wiki/Transposon []
248
+ - Was ist mit dem Begriff der <one>Polygenie</one> gemeint? Dieser Begriff bezeichnet die Tatsache, dass <one>die Ausprägung eines bestimmten Phänotyps</one> (eines <royalblue>Merkmals</royalblue>) durch <one>mehrere Gene</one> bestimmt wird. URL: https://de.wikipedia.org/wiki/Polygenie []
249
+ - Name the two different <one>Mendel-rules</one>. A: (1) rule of <one>independent segregation</one> (2) rule of <one>independent assortment</one> []
250
+ - <one>Welches Experiment</one> belegte die <three>semikonservative Replikation</three>? Das Experiment von <one>Meselson und Stahl</one>. URL: https://de.wikipedia.org/wiki/Meselson-Stahl-Versuch []
251
+ - What is <one>the fate of N-formyl methionine</one>? The <one>formyl group</one> <two>is removed lateron</two>.
252
+ - How do we call <one>a mRNA with multiple ORFs</one>? This is a <one>polycistronic mRNA</one>. URL: https://www.ndsu.edu/pubweb/~mcclean/plsc731/transcript/transcript3.htm []
253
+ - Can <one>transposable elements</one> replicate faster than the host? Yes. []
254
+ - <one>Alkylierende Verbindungen</one> verändern die DNA an Positionen, die für Methylierung oder Ethylierung zugänglich sind. Nenne die beiden häufigsten Produkte in der Reihenfolge ihres Auftretens. A: (1) <one>7-Alkylguanin</one>: <two>70-80%</two> (2) <one>3-Alkyladenin</one>: <two>6-10%</two>
255
+ - In humans: the <one>terminal transferase</one> is encoded by which gene? The <one>DNTT gene</one>. URL: https://www.uniprot.org/uniprot/P04053 []
256
+ - <one>Tetrahymena</one> besitzt wieviele Chromosomen? <one>40.000</one>. URL: https://en.wikipedia.org/wiki/Tetrahymena []
257
+ - Give another name for the <one>cap-binding protein</one>. A: <royalblue>eIF4E</royalblue>. URL: https://en.wikipedia.org/wiki/EIF4E []
258
+ - Wieviele <one>AC-Elemente</one> besitzt das <three>Mais-Genom</three>? <one>10</one>. []
259
+ - <one>8-oxoguanine</one> can pair with ...? <two>Adenin</two> (<one>8-oG → A</one>; <royalblue>OG-A</royalblue>).
260
+ - <one>Drosophila</one> hat <three>n Hox-Gene</three>? <one>8</one>. URL: https://en.wikipedia.org/wiki/Hox_gene#In_Drosophila []
261
+ - Definiere den Begriff <one>centi-Morgan</one> (<one>cM</one>). A: 1 cM entspricht 1% Rekombination zwischen zwei Markergenen.
262
+ - <one>Gene conversion bias</one> increases ... ? <one>GC content</one>. []
263
+ - Ist der Begriff <one>Parasexualität</one> auf Prokaryoten beschränkt? Nein - auch <one>die Bildung eines Heterokaryon</one> bei <royalblue>Aspergillus</royalblue> fällt hierunter. (<three>Heterokaryon bei Aspergillus</three>)
264
+ - Die <one>Termination der Translation</one> wird über die <two>STOP codons</two> ausgelöst, wie eben <three>UAG</three>, <three>UAA</three> oder <three>UGA</three>. Aber wo genau müssen sich diese befinden? An der <one>A-Stelle des Ribosoms</one>. []
265
+ - Welche Person entwickelte die <one>Kleeblattstruktur der tRNA</one>? <one>Robert Holley</one>. URL: https://en.wikipedia.org/wiki/Robert_W._Holley []
266
+ - <one>Plasmids</one> can be classified into which <one>two general groups</one>? (1) <one>conjugative plasmids</one> (2) <one>non-conjugative plasmids</one> []
267
+ - In molecular genetics: what is the most important part of the <one>supershift assay</one>? The <one>antibody</one>. []
268
+ - Bei <one>Hühnern</one> bestimmt welches Chromosom das <three>weibliche Geschlecht</three>? Das <one>W-Chromosom</one>. URL: https://en.wikipedia.org/wiki/ZW_sex-determination_system#In_birds []
269
+ - Is it possible to prove that a mutation does not cause an <one>altered phenotype</one>? No. []
270
+ - Nenne einen <one>maternalen Faktor</one>, den die Wanderschnecken abgeben. A: Das <one>Dextral-Protein</one>. URL: https://de.wikipedia.org/wiki/Situs_inversus#Situs_inversus_bei_Tieren []
271
+ - An <darkolivegreen>Histon H3 S10</darkolivegreen> bindet ...? Die <one>14-3-3 Domäne</one>. URL: https://en.wikipedia.org/wiki/14-3-3_protein []
272
+ - Die <one>Tibeter</one> erbten ein <two>Höhen-Gen</two> von wem genau? Von den ausgestorbenen <one>Denisova-Menschen</one>. URL: https://de.wikipedia.org/wiki/Denisova-Mensch []
273
+ - Andere Bezeichnung für den <one>M-Checkpoint</one>? <one>SAC</one>: the <two>Spindle Assembly Checkpoint</two>. URL: https://en.wikipedia.org/wiki/Spindle_checkpoint []
274
+ - Wann wurde die <one>bakterielle DNA-Polymerase I</one> entdeckt? <one>1956</one>. URL: https://de.wikipedia.org/wiki/DNA-Polymerase_I []
275
+ - Are the <one>Alu elements</one> <two>able to replicate</two>? Yes - if a <one>LINE retrotransposon</one> assists them. []
276
+ - Can <one>transposable elements</one> serve as <three>DNA methylation sites</three>? Yes. []
277
+ - <one>Termination sequences</one> avoid ... what cellular process? <one>Fork collisions</one>. []
278
+ - We may sometimes see <one>let genes</one>. What does this abbreviation stand for? <royalblue>let</royalblue> usually stands for <one>lethal</one>. []
279
+ - <one>Mutations of genes</one> may have <three>which effect on fitness</three>? (1) <one>harmful</one> (2) <one>beneficial</one> (3) <one>neutral</one> (or <one>nearly neutral</one>) []
280
+ - In Genetics: what does the <one>abbreviation</one> <three>hnRNA</three> stand for? <one>Heterogeneous nuclear RNA</one>. URL: http://www.biologydiscussion.com/cytogenetics/macromolecules/heterogeneous-nuclear-rna-hnrna-protein/35886 []
281
+ - Die <one>optimale Temperatur</one> für die <two>Taq-Polymerase</two> beträgt ... ? <one>72°C</one>. URL: https://de.wikipedia.org/wiki/Taq-Polymerase []
282
+ - Auf genetischer Ebene, was fehlt den <one>Ameisen</one>? Ein <one>Geschlechtschromosom</one>. []
283
+ - Activator and Repressor Proteins must have at least <one>which two states</one>? One state that can bind to DNA; and another state that can not bind to DNA. []
284
+ - Was bedeutet der Begriff <one>Protanopie</one>? <one>Protanopie</one> bezeichnet die <orangered>Rotblindheit</orangered>. URL: https://de.wikipedia.org/wiki/Protanopie []
285
+ - Wie gross ist das <one>F-Plasmid</one>? A: <one>100.000 bp</one> (also <one>100 kb</one>). []
286
+ - <three>Which DNA-Polymerase</three> is more processive - <one>Pol I</one> or <one>Pol III</one>? The <one>DNA Polymerase III</one> is <two>more processive</two>. []
287
+ - Ist der <one>Promotor</one> Teil eines Gens? Ja. Zusammen mit der kodierenden Sequenz wird so eine <one>funktionelle Einheit</one> gebildet. []
288
+ - The human genome includes the <one>Alu element</one>. Why the name Alu? <royalblue>Alu</royalblue> (<one>Arthrobacter luteus</one>) restriction endonuclease. URL: https://en.wikipedia.org/wiki/Arthrobacter_luteus []
289
+ - The <one>nucleosome-to-nucleosome linkage</one> involves especially what? The <one>H4 tail</one>. []
290
+ - In der <three>Hefe</three>, im <one>Galactose-Pathway</one>, wird extrazelluläre Galactose in ... umgewandelt? <one>Glucose-1-Phosphat</one>. URL: https://de.wikipedia.org/wiki/Glucose-1-phosphat []
291
+ - Das <three>menschliche Genom</three> besitzt wieviele <one>DNA-Methyltransferasen</one>? <one>6</one>. []
292
+ - Nenne zwei <one>safe havens</one> für Retrotransposons-Insertion. A: (1) <one>Andere Retrotransposons</one> (2) <one>Heterochromatin of Centromeres</one> (<two>lots of repetitive DNA</two>) []
293
+ - Name a general way how a <one>family of related genes</one> can arise. A: Through <one>duplication-events</one>. URL: https://en.wikipedia.org/wiki/Evolution_by_gene_duplication []
294
+ - Im <slateblue>menschlichen Genom</slateblue> können wieviele <one>Hämoglobingene</one> gefunden werden? <royalblue>5</royalblue>. []
295
+ - The protein <one>RuvA</one> binds to ... ? A <one>holliday junction</one>. URL: https://www.uniprot.org/uniprot/P0A809 []
296
+ - Welchen Bezug hat <one>LexA</one> zum SOS-System? Normalerweise <two>unterdrückt</two> LexA das SOS-System; daher wäre es besser, LexA als <one>Repressor-LexA</one> zu bezeichnen. URL: https://en.wikipedia.org/wiki/Repressor_lexA []
297
+ - Nenne die drei verschiedenen Typen von <one>small RNAs</one>. A: Merkslogan: <one>mi pi si</one>. (1) <one>miRNAs</one> (2) <one>piRNAs</one> und (3) <one>siRNA</one> []
298
+ - Wie können wir auf <one>mutagene Wirkung chemischer Komponenten</one> testen? Mit Hilfe des <one>Ames Test</one>. URL: https://en.wikipedia.org/wiki/Ames_test []
299
+ - Give another word for the term <one>transcriptome</one>. A: The <one>transcript population</one>. URL: https://en.wikipedia.org/wiki/Transcriptome []
300
+ - Why do we need <one>two versions of DnaB</one>? Because <one>there are two DNA strands</one>, so we need <two>one for each strand</two>. []
301
+ - Warum der Name <one>H DNA</one>? <one>H</one> steht hier für <two>Hoogsten base pairs</two> (a <three>triple helix</three>).
302
+ - The <one>phenotypic variation</one> <three>in a quantitative trait</three> has which two components? (1) <one>genetic</one> (2) <one>environment</one> []
303
+ - Andere, einfachere Bezeichnung für <one>Transkriptionsfaktoren</one>? A: <one>Proteine, die die Transkription fördern</one>. []
304
+ - Welche Enzyme führen <one>Supercoiling</one> durch? Die <one>Topoisomerasen</one>. Sie sind für die <two>DNA Kompaktierung</two> essenziell. URL: https://de.wikipedia.org/wiki/Topoisomerase []
305
+ - Nenne ein konkretes Beispiel für eine <one>Heteroduplex</one>. A: Dies ist ein <one>mütterlicher</one> DNA-Strang und ein <one>väterlicher</one> DNA-Strang. []
306
+ - <one>Neanderthal DNA</one> is n% identical to present-day human DNA? To about <one>99.7%</one> identical. []
307
+ - Was enthält der <one>tRNA D-Arm</one>? <one>Dihydrouridin</one>. URL: https://en.wikipedia.org/wiki/Dihydrouridine []
308
+ - What are the two main tasks of the Agrobacterium <one>VirA Protein</one>? (1) virA detects the inducer (2) phosphorylates <one>VirG</one> []
309
+ - What is the <one>mark of epistasis</one>? A <one>9:3:4</one> phenotypic ratio in the <two>F2 generation</two>.
310
+ - Das Telomer-assoziierte Protein <one>WRN</one> bindet an? An <one>TRF1</one> und <one>TRF2</one>. URL: https://www.ncbi.nlm.nih.gov/pubmed/17314245 []
311
+ - How to <one>disable any gene</one>? <one>Remove its promoter</one>. []
312
+ - What is the underlying reason for <three>SCID</three> (<one>Severe combined immunodeficiency</one>)? There is <one>a defect in V(D)J recombination</one>.
313
+ - <one>n% der menschlichen Gene</one> werden <three>alternativ gespliced</three>? <one>60%</one>. []
314
+ - What happens if the <three>Intron Branch Point</three> gets <one>deleted</one>? <one>Splicing will be prevented</one>. URL: https://en.wikipedia.org/wiki/RNA_splicing []
315
+ - Andere Bezeichnung für <one>cytoplasmatische Vererbung</one>? <one>Extranukleäre Vererbung</one>. []
316
+ - <one>Transposition</one>: Anderes Wort für <two>conservative Pathway</two>? <one>Cut and Paste Pathway</one>. URL: https://en.wikipedia.org/wiki/Conservative_transposition []
317
+ - <one>Hämoglobin</one> im menschlichen Genom ist <two>auf welchem Chromosom</two> kodiert zu finden? <one>Chromosom 9</one>. []
318
+ - When was the <one>Hoogsten pairing</one> first recognized? In the year <one>1963</one>. URL: https://en.wikipedia.org/wiki/Hoogsteen_base_pair#History []
319
+ - What is <one>the basic unit of Chromatin</one>? The <one>nucleosome</one>. URL: https://en.wikipedia.org/wiki/Nucleosome []
320
+ - Das <one>SRP</one> bezieht woher seine Energie? Aus <one>GTP</one>. URL: https://en.wikipedia.org/wiki/Signal_recognition_particle#Mechanism []
321
+ - With <one>which technique</one> can we find out how many cells are in any given cell cycle? Via <one>FACS cell sorting</one>. []
322
+ - What does the abbreviation <one>ASO</one> stand for in the term called <three>ASO technologies</three>? <one>Antisense oligonucleotides</one>. []
323
+ - Nenne vier verschiede <one>coat colours</one> in Hasen (<two>"rabbits"</two>) mittels Merkschema. A: (1) <one>Himalayan</one> (2) <one>Chinchilla</one> (3) <one>Albino</one> (4) <one>Wild-type</one> []
324
+ - What are <one>Pseudogenes</one>? Pseudogenes are <one>dysfunctional relatives of genes</one> that have lost their protein-coding ability or are otherwise no longer expressed in the cell. URL: https://en.wikipedia.org/wiki/Pseudogene
325
+ - Dringt der <one>Yeast Mating Factor</one> in die <three>Hefe</three> ein? Nein. []
326
+ - Nenne drei wichtige Punkte, wieso es zur <one>Mitose bei Mehrzellern</one> kommt. A: (1) <one>Wundheilung</one> (2) <one>Strukturerhaltung</one> (3) <one>Wachstum und Entwicklung</one>
327
+ - Von den drei <one>mendelschen Regeln</one> stimmt welche am wenigstens? Die <one>Mendel Regel 3</one>. []
328
+ - Was meinen wir mit der Abkürzung <one>gDNA</one>? <one>Genomische DNA</one>. URL: https://en.wikipedia.org/wiki/Genomic_DNA []
329
+ - What is a <one>transgenic organism</one>? This is an organism into which <two>geneticists</two> have inserted a <one>foreign gene</one>. []
330
+ - Die <one>lac-Repressorschleife</one> umfasst <two>n bp</two>? <one>93 bp</one>. []
331
+ - Wie lange ist ein <one>eukaryotischer core promotor</one> (von, bis)? Zwischen 40 und 60 Basenpaaren. (<one>40-60 bp</one>) []
332
+ - Nenne die zwei Ebenen <one>genetischer Diversität</one>. A: (1) <one>intraspezifische Diversität</one> (2) <one>interspezifische Diversität</one> []
333
+ - Was ist die <one>Karyogamie</one>? Die <one>Vereinigung</one> von (logischerweise mindestens zwei) Zellkernen. Diese sind <two>haploid</two>. URL: https://de.wikipedia.org/wiki/Karyogamie []
334
+ - The <three>human genome</three> contains n <one>CpG-islands</one>? <one>30.000</one> (<one>30k</one>). []
335
+ - Name three <one>true inducers</one> of the lac-Operon. A: (1) <one>IPTG</one> (2) <one>allo-lactose</one> (3) <one>glyceryl-galactoside</one> []
336
+ - Englische Bezeichnung für die <one>Balbiani-Ringe</one>? <one>Puffs</one>. URL: https://en.wikipedia.org/wiki/Polytene_chromosome []
337
+ - Wie unterscheidet sich <one>protein-directed branch migration</one> von <one>spontaneous branch migration</one>? (1) <one>Spontaneous branch migration</one> geht in beide Richtungen. (2) <one>Protein-directed branch migration</one> hingegen geht nur in eine Richtung. []
338
+ - In welchem Land wurde die <one>Sphynx-Katze</one> gezüchtet? In <one>Kanada</one>. URL: https://en.wikipedia.org/wiki/Sphynx_cat#History_of_the_cat_breed []
339
+ - In der Genetik: nenne ein konkretes Beispiel für <one>incomplete penetrance</one> beim Menschen. A: <one>Polydaktylie</one>. URL: https://de.wikipedia.org/wiki/Polydaktylie []
340
+ - Was ist das <one>Plastom</one>? Dies ist <royalblue>das Genom der Plastiden</royalblue>. URL: https://de.wikipedia.org/wiki/Plastid#Bau []
341
+ - In genetics: give another term for <one>homozygous</one>. A: <one>Pure breed</one>. []
342
+ - Was heisst <one>Su(var)</one> und <one>E(var)</one>? (1) <one>Su(var)</one>: <two>Suppressor of variegation</two> (2) <one>E(var)</one>: <two>Enhancer of variegation</two> []
343
+ - Auf welchem Chromosom finden wir das <one>SOX3-Gen</one>? Auf dem <one>X-Chromosom</one>. (Mnemonic: SOX3 hat X, X ... X-Chromosom) []
344
+ - Was heisst <one>tmRNA</one>? <one>transfer-messenger RNA</one>. (Auch bekannt als <two>10Sa RNA</two> oder unter ihrem genetischen Namen <two>SsrA</two>) []
345
+ - Give an example for <one>chromosomal memories</one>. A: <one>DNA Methylation</one>. URL: https://en.wikipedia.org/wiki/DNA_methylation#During_embryonic_development []
346
+ - Give another expression for the term <one>replication fork</one>. A: <one>Replication zipper</one>. URL: https://www.ncbi.nlm.nih.gov/books/NBK21790/ []
347
+ - Was meinen wir mit <one>orphan receptors</one>? Dies sind <two>Rezeptoren</two>, von denen <one>der Ligand</one> <one>unbekannt</one> ist. []
348
+ - Nenne einen <one>funktionellen Unterschied</one> zwischen <two>SINEs</two> und <two>LINEs</two> A: (1) <one>LINEs</one> sind <two>autonom in ihrer Transposition</two>. (2) <one>SINEs</one> hingegen sind <two>NICHT autonom in ihrer Transposition</two>. []
349
+ - Was sind die <one>Com-Proteins</one>? Proteine, die für die <one>Kompetenz</one> wichtig sind. URL: https://en.wikipedia.org/wiki/Natural_competence []
350
+ - Der <one>Vorläufer des tRNA-Moleküls</one> hat wieviele Nukleotide? In etwa <one>126</one> Nukleotide. []
351
+ - Welche <mediumseagreen>Gal-Mutante</mediumseagreen> ist stumm? <one>Gal4</one>. []
352
+ - Welches <one>Nukleotid</one> hat eine <two>C-glykosidische Bindung</two>? <one>Pseudouridin</one>. URL: https://en.wikipedia.org/wiki/Pseudouridine []
353
+ - <one>Welches Protein</one> bringt neue Histone an den Replication Fork bei Eukaryoten? <cadetblue>CAF-1</cadetblue> (<one>chromatin assembly factor 1</one>). URL: https://en.wikipedia.org/wiki/CAF-1 []
354
+ - Was macht die <one>Separase</one>? A: Die <one>Separase baut Cohesin ab</one>. URL: https://de.wikipedia.org/wiki/Separase []
355
+ - In genetics: what do we mean with <one>NUMTs</one> or <one>numts</one>? <one>NUMT</one>, pronounced <two>new might</two>, is an acronym for <three>nuclear mitochondrial DNA segment</three>. This describes a <four>transposition</four> of any type of cytoplasmic mitochondrial DNA into the nuclear genome of an eukaryotic organism.
356
+ - What is the opposite of a <one>mirror repeat</one> in DNA? The <one>direct repeat</one>. URL: https://en.wikipedia.org/wiki/Direct_repeat []
357
+ - What is very important for the <one>creation of Hfr cells</one>? <one>Insertion sequences</one>. []
358
+ - Give one specific example for a <one>Type V</one> restriction enzyme. A: The <one>cas9-gRNA complex</one> from CRISPRs.
359
+ - Was sind <one>knob-chromosomes</one> und in welchem Organismus sah man dies zuerst? Manchmal besitzen Chromosomen <one>extrachromosomales Material</one> am Ende. Dieses <royalblue>wird auch vererbt</royalblue>. Knob-Chromosomes sah man erstmals bei <three>Drosophila</three>. []
360
+ - Wann sprechen wir von einem <one>Haplont</one>? Wenn <two>der Großteil des Lebenszyklus</two> im <one>haploiden Stadium</one> verläuft. []
361
+ - <one>Functional knockouts</one> inside of a cell can be achieved by ... ? <one>RNAi</one>. []
362
+ - Kann <one>CTCF</one> an <three>methylierte DNA</three> binden? Nein. URL: https://en.wikipedia.org/wiki/CTCF []
363
+ - Can the <one>DNA polymerase I</one> <three>degrade DNA</three>? Yes - it has a <one>5' → 3' exonuclease activity</one>. []
364
+ - How can we <one>become independent of Telomerase</one>, in a very trivial manner? <one>Circularize the DNA</one>. []
365
+ - Eine <one>Methylgruppe am Cytosin</one> ragt wohinein in die <three>DNA Doppelhelix</three>? In die <one>grosse Rinne</one> der DNA (Mnemonic: <two>Methyl ist wichtig!</two>). []
366
+ - Welche <three>Wellenlänge</three> verwendet die <one>CPD Photolyase</one>? <one>340-400 nm</one>. URL: https://en.wikipedia.org/wiki/Photolyase []
367
+ - Wie geht die <one>Telomersequenz beim Menschen</one>? <two>5'</two>-<one>TTAGGG</one>-<two>3'</two> []
368
+ - <one>Lethalfaktoren</one> können zu welchem Segregationsmuster (Zahlenwerte) in der Nachkommenschaft führen? Welches Beispiel kann man hier nennen? <one>1:2 Nachkommenschaft</one>. Dies findet sich zum Beispiel bei den <one>Agouti-Mäusen</one>. []
369
+ - Besitzen <one>Archaeen</one> <three>CRISPR</three>/Cas-Mechanismen? Ja. []
370
+ - Was genau ist <one>Genomik</one>? Die <one>Untersuchung von Genomen</one>. []
371
+ - In general: what does <one>Meiosis</one> produce? <one>Four nonidentical, haploid cells</one>. []
372
+ - Was haben die <one>Stopcodons</one> gemeinsam? Sie alle beginnen mit einem <one>U</one> (in der RNA). []
373
+ - Why is the <one>RNA-Polymerase III</one> a strong polymerase? Because <one>the cell needs a lot of tRNAs</one>. []
374
+ - Name an organism without any <one>DNA-Transposons</one>. A: <one>Yeast</one>. URL: https://en.wikipedia.org/wiki/Yeast []
375
+ - The <one>genes within mammalian cells</one> can be grouped into which <cadetblue>two functional classes</cadetblue>? (1) <one>housekeeping genes</one> (2) <one>tissue-specific genes</one> []
376
+ - Welche Person entdeckte die <one>Nucleinsäuren</one>? <one>Friedrich Miescher</one>. URL: https://en.wikipedia.org/wiki/Friedrich_Miescher []
377
+ - Wie nennen wir das <one>cap-bindende Protein</one>? <one>eIF4E</one>. (Mnemonic: Bind<two>E</two>nd) []
378
+ - Wie bezeichnen wir <one>Reis</one> auf lateinisch und wieviele Gene finden wir hier? <one>Oryza sativa</one>. Dessen Genom umfasst in etwa <two>40.000 Gene</two>. URL: https://en.wikipedia.org/wiki/Oryza_sativa
379
+ - <one>Ubiquitinierung</one> befähigt ein Protein wohin zu wandern? In das <one>26S Proteasom</one> (zumindest 26S bei den <two>Eukaryoten</two>). URL: https://de.wikipedia.org/wiki/Proteasom []
380
+ - Nenne einen <one>informationseffizienten Punkt</one> bei den <three>Transposons</three>. A: Sie können <two>innerhalb anderer Transposons</two> <one>kodiert vorliegen</one>. []
381
+ - Which phenomenon can we see in yeast <one>sir-mutants</one>? <one>Silencing is compromised</one> - both <two>alpha</two> and <two>a</two> are expressed. []
382
+ - Welche <one>Stickstoffquelle</one> wurde beim <three>Meselson-Stahl Experiment</three> verwendet? <one>NH₄Cl</one>. URL: https://de.wikipedia.org/wiki/Meselson-Stahl-Versuch []
383
+ - Nenne ein Beispiel für einen <one>Phänotyp</one> der epistatisch wirkt. A: Der <one>Bombay Phänotyp</one>. URL: https://de.wikipedia.org/wiki/Bombay-Blutgruppe []
384
+ - Auf DNA appliziert: welche Substanz kann die Chemikalie <one>Hydroxylamine</one> produzieren? <one>5-Hydroxymethylcytosine</one>. (Sie überträgt eine OH-Gruppe auf Cytosine.) []
385
+ - Is <one>RNA</one> the genetic material? Well, it can be - in some <one>RNA viruses</one>. But normally, no - DNA is the genetic material. []
386
+ - <one>Geminin</one> is active during which stage of the cell cycle? During <one>G2</one>. (Light Mnemonic: <royalblue>Geminin</royalblue> ... <royalblue>G</royalblue> ... must be in one of the G steps) []
387
+ - In welchem Jahr wurde die <one>Chromosomentheorie</one> aufgestellt? Im Jahre <one>1902</one>, von <one>Boveri und Sutton</one>. []
388
+ - In <one>yeast cells</one>, the Alpha cells produce a <two>mating pheromone</two> called the Alpha-factor. Neighbouring cells respond to this pheromone <three>by growing a projection</three>. What name does it have? The <one>Shmoo</one> - due to its <two>distinctive shape</two>. URL: https://en.wikipedia.org/wiki/Mating_of_yeast []
389
+ - Nenne eine <one>biochemische Mutation beim Menschen</one>. A: Die <one>Sichelzellenanämie</one>. URL: https://de.wikipedia.org/wiki/Sichelzellenan%C3%A4mie []
390
+ - Es gibt <lightgreen>CpG Inseln</lightgreen> beim Menschen und auch bei Bakterien. Nenne einen Unterschied zwischen den beiden. A: Beim Menschen sind diese Gruppen häufig <one>am Cytosin methyliert</one>, bei Bakterien hingegen nicht. URL: https://de.wikipedia.org/wiki/CpG-Insel []
391
+ - Was ist die wichtigste Idee hinter der <one>Penicillin-Selektionsmethode</one>? Das <two>Penicillin</two> nur <one>aktiv wachsende bakterielle Zellen tötet</one>. []
392
+ - When did <one>Lederberg</one> discover <two>conjugation</two>? In the year <one>1946</one>. URL: https://en.wikipedia.org/wiki/Bacterial_conjugation#History []
393
+ - Give another name for the term <one>cloning</one>. A: <one>Amplification process</one>. URL: https://en.wikipedia.org/wiki/Cloning []
394
+ - In der Genetik: anderer Begriff für die <one>Translation</one>? <one>Biokatalytisches Übersetzen</one>. []
395
+ - What do we mean with the term <one>Mendelian mutation</one>? Individuals present a certain phenotype <one>only if they carry the specific mutation</one>.
396
+ - Wir möchten das <one>80S Ribosom hemmen</one>, nicht aber das <three>70S Ribosom</three>. Wie können wir dies bewerkstelligen? Wir könnten <one>Cycloheximid</one> verwenden. URL: https://de.wikipedia.org/wiki/Cycloheximid []
397
+ - Wie lange ist die <one>linker DNA</one> in Eukaryoten (von-bis)? Variabel, zwischen <one>20-60 bp</one>. []
398
+ - In genetics, in particular in breeding: what is meant with the abbreviation <one>BLUP</one>? <one>Best Linear Unbiased Prediction</one>. []
399
+ - In der <one>Meiose</one>: was erfolgt in der <three>Prophase 1</three>? <one>Crossing-Over</one>. []
400
+ - <one>Hypoxanthin</one> paart mit ...? <royalblue>Cytosin</royalblue> (Mnemonic: <one>Hypo-Cyto</one>; <two>HYPO-CYTO</two>). URL: https://en.wikipedia.org/wiki/Hypoxanthine []
401
+ - When the genetic code was decoded, there was a problem with one <one>RNA homopolymer</one>. Which one? <one>G</one>. <two>GGG</two> was not a functional template, most likely because <one>the molecule folded back on itself</one>. URL: https://en.wiktionary.org/wiki/homopolymer []
402
+ - Welche wichtigen <one>Checkpoints</one> umfasst <three>der eukaryote Zellzyklus</three>? (1) <one>G1</one>/<one>S Checkpoint</one> (2) <one>G2</one>/<one>M Checkpoint</one> (3) <one>M Checkpoint</one> []
403
+ - In a given, random genome: is there rather a <one>bias</one> toward a <three>high AT genomic content</three> or a <three>high GC genomic content</three>? There is <two>a bias</two> toward a <one>high AT genomic content</one>. []
404
+ - Name a possible problem when we apply <three>DNA profiling</three>, such as <one>during the investigation of a crime scene</one>. A: The possibility of <one>deliberate tampering</one>. []
405
+ - How do we call <one>genetic traits</one> that are <three>amenable to number-analysis via statistics</three>? <one>Quantitative traits</one>. URL: https://en.wikipedia.org/wiki/Complex_traits []
406
+ - Wieviel Prozent des <one>Mais Genoms</one> ist von <three>transponierbaren Elementen</three> kodiert? A: <one>50%</one>. []
407
+ - Nenne die <one>Unterphasen der meiotischen Prophase I</one>, in korrekter Reihenfolge und mit vollem Namen. A: (1) <one>Leptotän</one> (2) <one>Zygotän</one> (3) <one>Pachytän</one> (4) <one>Diplotän</one> (5) <one>Diakinese</one> []
408
+ - Who proposed the term <three>plasmid</three> in <one>1952</one>? <one>Joshua Lederberg</one>. URL: https://en.wikipedia.org/wiki/Joshua_Lederberg []
409
+ - <one>Who</one> repairs DNA (a general term)? <one>Repair Enzymes</one>. []
410
+ - Give <one>a specific example</one> for <two>males lack genetic fail-safe systems in their sex-chromosome</two>. A: <one>Colour blindness</one>. URL: https://en.wikipedia.org/wiki/Color_blindness#Genetics []
411
+ - In a <cadetblue>higher animals genome</cadetblue>: how many of the proteins encoded are membrane proteins? About <one>30%</one>. []
412
+ - What is <one>the primary phenotype of a gene</one>? The <one>protein it produces</one> - if it codes for a protein that is. []
413
+ - Beim <one>F-Plasmid</one>: wie häufig kommen die Elemente IS2, IS3 und IS1000 jeweils vor? A: <one>1x, 2x, 1x</one>. []
414
+ - What is meant with the term <one>missense mutation</one>? A <one>missense mutation</one> occurs when a codon for one amino acid is changed into the codon for another amino acid. []
415
+ - In genetics: what does the abbreviation <one>TILLING</one> stand for? <one>Targeting Induced Local Lesions in Genomes</one>. URL: https://en.wikipedia.org/wiki/TILLING_%28molecular_biology%29 []
416
+ - In <two>genetics</two>: which <one>three different allelic states</one> may any allele have over another one? (1) <one>dominant</one> (2) <one>co-dominant</one> (3) <one>recessive</one> []
417
+ - Do <one>okazaki fragments</one> contain <cadetblue>RNA</cadetblue>? No - <two>Okazaki fragments</two> are <one>DNA fragments</one>. []
418
+ - Provide another term or word for <one>rRNA genes</one>. A: <one>rDNA</one>. URL: https://de.wikipedia.org/wiki/Ribosomale_DNA []
419
+ - What is <one>HepG2</one>? <one>HepG2</one> is a <two>human liver tumor cell line</two>. URL: https://en.wikipedia.org/wiki/Hep_G2 []
420
+ - <three>In einem eukaryoten Genom</three>: wo finden wir üblicherweise mehr Gene - in den <one>G-Banden</one> oder in den <one>R-Banden</one>? In den <two>R-Banden</two> (Merkhilfe: <one>R</one> ... <one>rich</one>). []
421
+ - <one>RF1</one> und <one>RF2</one> ähneln ...? Einer <one>beladenen tRNA</one>. []
422
+ - Die <one>7SL-RNA</one> ist Teil von ...? Vom <one>signal recognition particle complex</one> (<peru>SRP</peru>). URL: https://en.wikipedia.org/wiki/Signal_recognition_particle []
423
+ - In genetics: give another term for <one>non-independent segregation</one>. A: <one>Linkage</one>. URL: https://en.wikipedia.org/wiki/Genetic_linkage []
424
+ - Give another term for <one>Panmixie</one>. A: <one>Random Mating</one>. URL: https://en.wikipedia.org/wiki/Panmixie []
425
+ - <one>Wann</one> wurde der genetische Code <three>entschlüsselt</three>? A: Im Jahre <one>1966</one>. URL: https://www.acs.org/content/acs/en/education/whatischemistry/landmarks/geneticcode.html#poly-u-experiment []
426
+ - Was heisst <one>shRNA</one>? <one>short hairpin RNA</one>. URL: https://en.wikipedia.org/wiki/Short_hairpin_RNA []
427
+ - In der Genetik, wer erkennt die <three>ARS</three> (<one>autonomous replicating sequences</one>)? Die <royalblue>ORCs</royalblue> - <one>origin recognition complexes</one>. URL: https://en.wikipedia.org/wiki/Origin_recognition_complex []
428
+ - Where are <one>Okazaki fragments</one> synthesized? On the <one>lagging template strand</one>, during DNA replication. []
429
+ - Who defines the <one>cistron</one>? The <one>complementation test</one>. URL: https://en.wikipedia.org/wiki/Complementation_%28genetics%29 []
430
+ - Nenne ein Beispiel für eine <one>nicht-selektive Mutante</one>. A: <two>Ein Farbverlust</two> in einem <one>pigmentierten Mikroorganismus</one>. []
431
+ - <one>Eduard Buchner</one> entdeckte welches Enzym? Die <one>Zymase</one>, aus Hefe gewonnen. URL: https://en.wikipedia.org/wiki/Zymase []
432
+ - Was bedeutet <one>Epistase</one> wortwörtlich? <one>Bremsen</one> / <one>Anhalten</one>. []
433
+ - Size Range of <one>P elements</one> (von bis in kb)? <one>0.5-2.9 kb</one>. []
434
+ - Was ist an der <one>Aussenseite der dsDNA</one> zu treffen? Die <one>Phosphatreste</one>. []
435
+ - In the genomes of Eukarya: are only <one>point mutations in the promoter</one> a problem? No - point mutations in <one>promoter-proximal elements</one> <two>can also hinder transcription</two>.
436
+ - Woraus besteht ein <one>Viroid</one>? Aus <one>zirkulärer ssRNA</one>. URL: https://en.wikipedia.org/wiki/Viroid []
437
+ - Welche Kuriosität zeigen <one>Pol III Promotoren</one>? Sie sind <one>downstream</one> zu finden, ausgehend von der <one>Transkriptions-Startstelle</one>. []
438
+ - Give another, simpler word for <one>somatotropin</one>. A: <one>Growth hormone</one>. URL: https://de.wikipedia.org/wiki/Somatotropin []
439
+ - Wie lange (in bp; nur einen Wert angeben) sind <one>LTRs</one>? A: <one>800 bp</one>. URL: https://en.wikipedia.org/wiki/LTR_retrotransposon []
440
+ - Die <one>Merozygote</one> besteht aus? (1) <one>Endogenote</one> (2) <one>Exogenote</one> URL: https://en.wikipedia.org/wiki/Merozygote []
441
+ - Is the <one>hammerhead ribozyme</one> an enzyme? Not quite so. It has a <one>turnover number</one> of only <two>1</two>. []
442
+ - Wann wurde <one>Phage display</one> entwickelt? <one>1985</one>. URL: https://en.wikipedia.org/wiki/Phage_display#History []
443
+ - Das <one>menschliche Genom</one> hat <three>n Gene</three> durch <orange>horizontalen Gentransfer</orange> erhalten? Etwa <one>220</one>. []
444
+ - In the human genome, we can find <one>ALB</one>, the <three>albumin promoter</three>. The expression of this promoter is restricted to ... ? The <one>liver</one>. In other words: <two>only the liver creates albumin</two>. []
445
+ - Give a reason <one>why some genes of identical twins are not identical</one>, other than due to epigenetic causes. A: Some will have changes owing to <one>replication errors</one>. []
446
+ - Gib die <one>ideale Definition eines Gens</one> an. A: Ein Gen ist <royalblue>ein DNA-Abschnitt</royalblue>, welcher für die Bildung einer RNA verantwortlich ist. []
447
+ - Das Enzym <one>Ten-eleven translocation methylcytosine dioxygenase 1</one> produziert was? Dieses Enzym produziert <two>5-hydroxymethylcytosine</two> (<three>5-hmC</three>), ausgehend von <one>5-methylcytosine</one> (5-mC). []
448
+ - Wieviel kostet die <one>synthetische GenSynthese einer Base</one> (in Euro)? Etwa <royalblue>0.2 Euro</royalblue>. Also: <one>5 Basen kosten 1 Euro</one>. []
449
+ - Nenne <one><u>die vier wichtigsten Arme</u></one> einer <one>tRNA</one>. A: (1) <one>Akzeptorarm</one> (2) <one>Anticodonarm</one> (3) <one>D-Arm</one> (4) <one>T-Arm</one> []
450
+ - What is <one>Hemizygosity</one>? <one>A genetic condition</one> where there is only one copy of a gene in an otherwise diploid cell or organism. URL: https://en.wikipedia.org/wiki/Zygosity#Hemizygous []
451
+ - Wir möchten eine <one>widerstandsfähige (bakterielle) Zelle</one> entwerfen und müssen uns für <two>gram+</two> oder <two>gram⁻</two> entscheiden. Was sollten wir hier bevorzugen? A: Eher <one>gram⁻</one>, da diese Bakterien gegenüber Antibiotika resistenter sind. []
452
+ - Nenne eine Substanz, die <one>frameshifts</one> induzieren kann. A: <one>Acridin</one>; dessen Summenformel ist <one>C13H9N</one>. URL: https://de.wikipedia.org/wiki/Acridin []
453
+ - Ursprung einer <one>auxotrophen Mutante</one>? <one>Prototrophe Eltern</one>. []
454
+ - Nenne die 3 <one>Chain-Termination Codons</one> in <three>RNA</three> (ohne Trivialname). A: (1) <one>UAA</one> (2) <one>UAG</one> (3) <one>UGA</one> []
455
+ - What is <one>the growing end of DNA</one>? The <one>3' OH</one> part of the DNA molecule. []
456
+ - Woran kann <one>IPTG</one> binden? <two>IPTG</two> kann an den <one>lac-Repressor</one> binden. URL: https://de.wikipedia.org/wiki/Isopropyl-%CE%B2-D-thiogalactopyranosid []
457
+ - In der Genetik: nenne eine andere Bezeichnung für <one>Replikons</one>. A: <one>Replizierende Einheiten</one>. URL: https://de.wikipedia.org/wiki/Replikon []
458
+ - <one>GC-Gehalt des menschlichen Genoms</one>, in Prozent? A: <one>38%</one> - also <two>deutlich geringer als 50%</two>. []
459
+ - How many nucleotides (<two>from</two>, <two>to</two>) do <one>SSB-binding proteins</one> cover? <one>33-65 nucleotides</one>. URL: https://en.wikipedia.org/wiki/Single-strand_DNA-binding_protein []
460
+ - In genetics: give another expression for the term <one>anomalous inheritance</one>. A: <one>Non-Mendelian inheritance</one>. []
461
+ - How many <one>RNA-Polymerases</one> do plants have? <one>5</one>. []
462
+ - We can group the <violet>plasmids</violet> into two general groups, <three>conjugative plasmids</three> and <three>non-conjugative plasmids</three>. Which ones are <one>present at a low copy number</one>, in general? The <one>conjugative plasmids</one> tend to be larger and are also present at a low copy number, normally. []
463
+ - Woher kommt das Wort <one>Genetik</one>? Von dem Wort <one>Genesis</one>. URL: https://en.wikipedia.org/wiki/Book_of_Genesis []
464
+ - Welche Person prägte den Begriff <one>Mutation</one>? <one>Hugo de Vries</one>. URL: https://en.wikipedia.org/wiki/Hugo_de_Vries#Mutation_theory []
465
+ - <three>RecBCD</three> unwinds DNA and leaves <one>3'-protruding ends</one>, coated with ... ? <one>RecA</one>. []
466
+ - Nenne eine Rolle von <one>lncRNAs</one> (<peru>long noncoding RNAs</peru>). A: Sie spielen eine Rolle bei der <one>Dosiskompensation</one>. URL: https://en.wikipedia.org/wiki/Long_non-coding_RNA []
467
+ - Give <one>another expression</one> for <three>additive gene transfer</three> and <three>deletive gene transfer</three>. A: <one>Gain of function</one> and <one>loss of function</one>. []
468
+ - Nenne einen grossen Unterschied zwischen den <one>Telomeren</one> und dem <one>Rest eines Chromosoms</one>. A: Ein Teil der Telomere wird in <one>ss-Form</one> gehalten. []
469
+ - <three>Wann</three> wurde das <one>zentrale Dogma der Molekularbiologie</one> aufgestellt? <one>1957</one>. URL: https://en.wikipedia.org/wiki/Central_dogma_of_molecular_biology []
470
+ - Is <three>host RecA</three> required for <one>recombineering</one>? No. []
471
+ - In geneticsh: <one>Mendel's two laws</one> are ... ? A: <royalblue>SeGas</royalblue>. (1) <one>independent segregation</one> (2) <one>independent assortment</one> []
472
+ - Ursache des <one>Rett-Syndrom</one> und auf welchem Chromosom liegt die Ursache hierzu? Auf dem <two>X-Chromosom</two> liegt ein Gen mutiert vor, und zwar das Gen <one>MeCP2</one>. URL: https://en.wikipedia.org/wiki/MECP2 []
473
+ - Nenne ein Beispiel für <one>ein genetisches System</one>, bei dem man nicht von Wildtyp und Mutanten sprechen kann. A: Beim <one>menschlichen Blutgruppensystem</one> (dem <two>AB0 Blutgruppensystem</two>). []
474
+ - Nenne zwei verschiedene Beispiele für <one>DNA-Methyltransferasen</one>. A: (1) <one>Dnmt-1</one> (2) <one>Dnmt-3a</one>/<one>3b</one> []
475
+ - Nenne ein Gewebe beim Menschen, das <one>verkürzte Telomere</one> aufweisen mag. A: Die <one>Darmmukosa</one>. URL: https://de.wikipedia.org/wiki/Darmschleimhaut []
476
+ - Vergleiche die <one>Mutationsrate</one> in mtDNA mit normaler DNA im Zellkern. A: Die Mutationsrate in mtDNA ist etwa <one>20x höher</one> als die Mutationsrate in der Zellkern-DNA. []
477
+ - Andere Bezeichnung für die <one>Zellkernteilung</one>? A: <one>Karyokinese</one>. URL: https://en.wikipedia.org/?title=Karyokinesis&redirect=no []
478
+ - <one>Cdk1 inhibition</one> induces Apoptosis by failing to stabilize what protein? <one>Survivin</one>. URL: https://en.wikipedia.org/wiki/Survivin []
479
+ - Beschreibe die wichtigste Funktion von <one>CAF-1</one> mit einem oder zwei Wörtern. A: <one>Histon-Carrier</one>. []
480
+ - Name the three general types of <one>chromosome mutations</one>. A: <royalblue>Mnemonic</royalblue>: <orange>gain</orange>, <orange>loss</orange>, <orange>relocation</orange> (1) <one>gain of chromosomal material</one> (2) <one>loss of chromosomal material</one> (3) <one>relocation of chromosomal material</one> []
481
+ - <two>Welche Nukleotidgruppe</two> wird zu <one>Harnsäure</one> abgebaut und dann über den Harn ausgeschieden? Die <one>Purine</one>. URL: https://de.wikipedia.org/wiki/Purine []
482
+ - Die erste <one>lac-Repressor Mutante</one> wurde wann entdeckt? Im Jahre <royalblue>1959</royalblue>. []
483
+ - Name a <one>RNA-dependent DNA-Polymerase</one>. A: The <one>reverse transcriptase</one>. URL: https://en.wikipedia.org/wiki/Reverse_transcriptase []
484
+ - Nenne ein Beispiel für ein <one>rezessiv letales Allel</one>. A: <royalblue>Agouti</royalblue>. URL: https://de.wikipedia.org/wiki/Agouti []
485
+ - In genetics: what is the <one>operator</one>? This is <one>the site on DNA</one> (thus, <three>a DNA segment</three>) onto which a <royalblue>repressor</royalblue> can bind to. []
486
+ - Wie viel % des <three>menschlichen Genoms</three> kodiert für <one>Proteine</one>? Etwas mehr als <one>2%</one>.
487
+ - Wie lang können <one>CpG-Inseln</one> sein? Bis zu <royalblue>1kb</royalblue> (<one>1000 bp</one>) lang. []
488
+ - Wie oft finden wir <one>Alu-Elemente</one> im menschlichen Genom? <goldenrod>1_500_000 Kopien</goldenrod> (also <one>1.5 Millionen Male</one>). []
489
+ - Was ist die <one>ektopische Rekombination</one>? Dies ist eine Rekombination zwischen <one>nicht-homologen Genbereichen</one>. []
490
+ - Anderes, sehr schönes Wort für die <one>DNA</one>? <one>Helix des Lebens</one>. []
491
+ - What is the role of the Drosophila <one>tinman</one> gene? This <one>transcription factor</one> is immensely important for <one>the development of a heart</one> in Drosophila - it is outright <peru>vital</peru>. URL: https://en.wikipedia.org/wiki/Tinman_(gene) []
492
+ - In genetics, in particular in <one>plant genetics</one>, what may we mean with the abbreviation <three>GxExM</three>? <one>Genotype</one> x <one>Environment</one> x <one>Management</one>. []
493
+ - Wenn ein <one>-10 Promoter</one> statt <violet>TATAAT</violet> die Sequenzfolge <two>CCCCAT</two> vorweist, was können wir annehmen? Das dieser Promoter <two>vermutlich</two> ein <one>Hitzeschock-Promoter</one> ist. []
494
+ - Welches sind die beiden Aminosäuren die über <one>Stoppcodons</one> eingebaut werden? A: (1) <one>Selenocystein</one> (2) <one>Pyrrolysin</one> []
495
+ - <one>Bromuracil</one> unterscheidet sich wie von Thymin? <one>Bromuracil</one> hat an <two>Position 5</two> ein <orange>Brom-Atom</orange> anstatt einer Methylgruppe. URL: https://de.wikipedia.org/wiki/5-Bromuracil []
496
+ - Nenne <one>ein DNA Transposon in Drosophila</one> und erwähne die Person, die dieses DNA Transposon entdeckt hat. A: <one>Margaret Kidwell</one> entdeckte das <royalblue>P element</royalblue>. URL: https://en.wikipedia.org/wiki/Margaret_Kidwell []
497
+ - Wie nennen wir <one>eine mRNA</one> mit nur einem offenen Leseraster? Dies ist eine <one>monogenische RNA</one>. []
498
+ - Give an example for a <one>zinc finger protein</one> in <three>eukaryotic cells</three>. A: The <one>SP1 transcription factor</one>, which will bind to DNA and enhances gene transcription. URL: https://en.wikipedia.org/wiki/Sp1_transcription_factor []
499
+ - In regards to an <one>open reading frame</one>, where is the <three>transcription termination site</three>? It is <one>located right after the ORF</one>. []
500
+ - Was passiert wenn <one>Adenin</one> desaminiert wird? Es entsteht <one>Hypoxanthin</one>. URL: https://en.wikipedia.org/wiki/Hypoxanthine []
501
+ - Wie mag man eine <one>Maus</one> mit zwei <two>mutierten Igf2-Allelen</two> erkennen? Solche Mäuse sind <one>kleinwüchsig</one>. URL: https://ghr.nlm.nih.gov/gene/IGF2 []
502
+ - Andere Bezeichnung für den genetischen <one>wild-type</one>? <one>Standard</one>. []
503
+ - Nur wann gilt die <one>Mendelsche Unabhängigkeitsregel</one>? Nur wenn die <one>Merkmale</one> (<one>Gene</one>) auf unterschiedlichen Chromosomen vorzufinden sind. []
504
+ - Welche zelluläre Aufgabe hat der <one>Shelterin-Komplex</one>? Der <two>Shelterin-Komplex</two> <one>schützt die Telomere vor Abbau</one>. []
505
+ - Give another term for <one>mutation breeding</one>. A: <one>Mutagenesis</one>. []
506
+ - <one>Oxidative Schäden</one> an der DNA können entstehen durch <two>freie Hydroxyl-Radikale</two>. Was ist hierbei das wichtigste Produkt? <one>8-Oxo-Guanin</one> (<one>8-OxoG</one>). URL: https://en.wikipedia.org/wiki/8-Oxoguanine []
507
+ - Welche Stränge hat die <one>mtDNA</one>? Den <one>H-Strang</one> und den <one>L-Strang</one>. URL: https://de.wikipedia.org/wiki/Mitochondriale_DNA []
508
+ - <one>Alpha-Amanitin</one> can <two>inhibit the RNA-polymerase II</two>. How many aminoacids does alpha-amanitin contain? <one>8</one>. []
509
+ - Im <three>DNA-Polymerase-III Komplex</three> ist welche Untereinheit für das <one>Korrekturlesen</one> verantwortlich? Die <one>Epsilon-Untereinheit</one>. URL: https://en.wikipedia.org/wiki/DNA_polymerase_epsilon []
510
+ - Im <one>Replisome</one>: welche DNA Polymerase arbeitet direkt am Replication Fork? Die <one>DNA-Polymerase III</one>. URL: https://en.wikipedia.org/wiki/DNA_polymerase_III_holoenzyme []
511
+ - Gib ein Beispiel für <one>Substratinduktion</one> in der Genetik. A: Zum Beispiel das <one>lac-Operon</one>, das durch <two>(Allo)Laktose</two> <peru>induziert</peru> werden kann, also eingeschaltet werden kann. []
512
+ - Beim <one>C-value Paradox</one> ist vor allem <three>ein Element mit der Komplexität</three> assoziiert, zumindest bei Gräsern. Welches <two>Element</two> ist dies? Das <one>LTR-Retrotransposon</one>. URL: https://de.wikipedia.org/wiki/LTR-Retrotransposon []
513
+ - <one>Severo Ochoa</one> received the 1959 Nobel Prize for which discovery? The discovery of <one>RNA Polymerase</one>. URL: https://en.wikipedia.org/wiki/Severo_Ochoa []
514
+ - What is meant with the abbreviation <one>pDNA</one>? This abbreviation refers to <one>plasmid DNA</one>. URL: https://acronyms.thefreedictionary.com/pDNA []
515
+ - Give another expression for <one>DNA</one> and <one>RNA</one> in the <two>central dogma of Biology</two>? (1) <one>DNA</one> is the <two>storage medium</two> (2) <one>RNA</one> is the <two>transmission medium</two> []
516
+ - Why the name <one>oriC</one>? The <one>C</one> stands for <two>chromosomal</two>, hence <two>chromosomal origin</two>. URL: https://en.wikipedia.org/wiki/Origin_of_replication#Bacterial_Genome_Origins []
517
+ - In der Genetik: benenne ein konkretes Beispiel für einen <one>allosteric effector</one>. A: Die <one>Allolactose</one>. []
518
+ - <lightgreen>rpoH</lightgreen> in E. coli kodiert für ...? Den <one>Sigmafaktor-32</one>, ein Protein. URL: https://en.wikipedia.org/wiki/Sigma_factor []
519
+ - <one>Okazaki fragments</one> can be found on which strand? They can be found on the <one>lagging strand</one>. URL: https://en.wikipedia.org/wiki/Okazaki_fragments []
520
+ - A single E. coli cell contains how many molecules of the <one>initiator protein DnaA</one>? About <mediumturquoise>~1000</mediumturquoise> molecules. []
521
+ - Which was <one>the central idea</one> for the <two>Hershey-Chase experiment</two>? (1) <one>DNA</one> contains <two>P</two> - but no <three>S</three>. (2) <one>Proteins</one> contain <two>S</two> - but no <three>P</three>. []
522
+ - Nenne den <one>Induktor der Lactoseabbau-Enzyme</one>. A: <one>Allolactose</one>. URL: https://en.wikipedia.org/wiki/Allolactose []
523
+ - <one>Gene density</one> in Humans (1 Gen / x bp)? <one>1 gene</one> / <one>100.000 bp</one>. []
524
+ - Does an <one>open reading frame</one> contain a <one>stop codon</one>? No, it does not. It ends at a stop codon though. URL: https://en.wikipedia.org/wiki/Open_reading_frame []
525
+ - Wo <one>im menschlichen Genom</one> finden wir die <olive>rRNA-Gene</olive>? Auf den Chromosomen <one>13</one>/<one>14</one>/<one>15</one>/<one>21</one>/<one>22</one>. []
526
+ - <one>Conditional lethal mutations</one> have which two (general) <two>conditions</two>? (1) the <one>permissive condition</one> (2) the <one>restrictive condition</one> []
527
+ - Vorteil von <one>K12</one>? <one>K12</one> kann ausserhalb des Labors nicht überleben. URL: https://en.wikipedia.org/wiki/Escherichia_coli_in_molecular_biology#K-12 []
528
+ - What do we mean with <one>5hmC</one> in Genetics? <one>5-hydroxymethylcytosine</one>. URL: https://en.wikipedia.org/wiki/5-Hydroxymethylcytosine []
529
+ - Andere Bezeichnung für <one>Thymin</one>? <one>5-Methyluracil</one>. URL: https://de.wikipedia.org/wiki/Thymin []
530
+ - Was heisst <one>CDK</one>? <one>Cyclin-dependent kinase</one>. URL: https://en.wikipedia.org/wiki/Cyclin-dependent_kinase []
531
+ - Nenne drei verschiedene Strategien der Erhaltung von <one>genetischen Ressourcen</one>. A: (1) <one>in-situ</one> (2) <one>ex-situ</one> (3) <one>on-farm</one> []
532
+ - Wenn wir von einem <one>Gencluster</one> sprechen, was können wir für eine allgemeine Vorhersage machen, zusätzlich zu der Annahme das ein Gencluster aus mehr als einem Gen besteht? In einem <one>Gencluster</one> sind benachbart liegende Gene ähnlicher Funktion, beziehungsweise <two>Funktionen die miteinander verbunden sind</two>, vorliegend. []
533
+ - Ich möchte ein Gen vor <one>SNPs</one> schützen. Was tun? Mache ein <one>aktives Gen</one> daraus. []
534
+ - Andere Bezeichnung für <one>Nondisjunction</one> in der Genetik? <one>Fehlsegregation</one>. URL: https://de.wikipedia.org/wiki/Non-Disjunction []
535
+ - Welches <one>mitochondriale Genom</one> ist grösser - das der <two>Hefe</two> oder das <two>menschliche mitochondriale Genom</two>? Das der <two>Hefe</two> ist deutlich grösser, mit etwa <one>78kb</one>. []
536
+ - What do we mean with <one>plasmid incompatibility</one>? When plasmids <one>cannot coexist in the same cell</one> (that is - plasmids of the same <royalblue>compatibility group</royalblue>). URL: https://bitesizebio.com/23341/understanding-plasmid-incompatibility/ []
537
+ - In der Genetik: wer hat den <royalblue>Fluktuationstest</royalblue> durchgeführt? <two>Zwei Personen</two>, und zwar - <one>Luria und Delbrück</one>. URL: https://en.wikipedia.org/wiki/Luria%E2%80%93Delbr%C3%BCck_experiment []
538
+ - What is <one>homoplasy</one>? Give an <two>example</two> illustrating this term. A: <one>Homoplasy</one>, also called <royalblue>convergent evolution</royalblue>, describes in genetics that there are <two>sequence similarities</two> that are <orange>NOT</orange> due to homology. Wings of bats and bees are an example of Homoplasy. URL: https://en.wikipedia.org/wiki/Convergent_evolution []
539
+ - Another term for <one>genetic screens</one>? <one>Mutant screens</one>. []
540
+ - Was bewies <one>Fink et al.</one> im Jahre <two>1985</two>? Das die <one>Ty-Elemente in Hefe</one> über ein <two>RNA-Intermediat</two> transponieren. URL: http://www.ncbi.nlm.nih.gov/pubmed/2982495. []
541
+ - How can the <one>URA3 gene product</one> be made <two>toxic</two>? By using the drug <royalblue>5-FOA</royalblue> (<one>5-fluoroorotic acid</one>) URL: https://en.wikipedia.org/wiki/5-Fluoroorotic_acid []
542
+ - Wenn wir <one>Metaphase-Chromosomen</one> mit <three>Giemsa</three> färben wollen, was müssen wir zuvor machen? Das ganze mit <one>Trypsin</one> vorbehandeln. []
543
+ - For any given <one>transcription factor</one>: how do we call their <two>flexible domain</two> in general? <one>Hinge domain</one>. URL: http://europepmc.org/article/PMC/4486351 []
544
+ - In welchem Jahr wurde <royalblue>Penicillin</royalblue> entdeckt? A: <one>1928</one>. URL: https://de.wikipedia.org/wiki/Penicilline#Entdeckung []
545
+ - Which <one>DNA Topoisomerases</one> require <three>energy from ATP hydrolysis</three>? <one>Type II Topoisomerases</one>. []
546
+ - Give another word for <royalblue>tRNA</royalblue>. A: <one>The Adapter</one>. URL: https://de.wikipedia.org/wiki/tRNA []
547
+ - Who developed the <one>triplet binding assay</one>? <one>Philip Leder</one>. URL: https://en.wikipedia.org/wiki/Philip_Leder []
548
+ - What can we conclude about <one>nonsense mutations</one> and their <tomato>severity</tomato>? The closer a nonsense mutation lies to the <two>3-prime end</two> of an <one>ORF</one>, the more plausible it is that the resulting protein <one>possesses some biological activity</one>. []
549
+ - In der Genetik: was ist mit dem Begriff <one>negativer Interferenz</one> gemeint? Das sich Crossover-Ereignisse <one>gegenseitig inhibieren können</one>. In unmittelbarer Nähe eines Crossovers kann kein weiteres Crossover-Ereignis auftreten. []
550
+ - Wann wird der <one>ORC</one> gebildet? In der <two>G1-Phase</two>, also (logischerweise) <three>vor</three> der <one>S-Phase</one>. URL: https://en.wikipedia.org/wiki/G1_phase []
551
+ - Nenne ein allgemeines Beispiel für <one>extranucleäre Vererbung</one>. A: <royalblue>Organellenvererbung</royalblue>. []
552
+ - What is the most frequent kind of <one>hydrolytic damage</one> in <two>dsDNA</two>? <one>Deamination of Cytosine</one>. URL: https://en.wikipedia.org/wiki/Deamination []
553
+ - Wofür steht der Name <one>Sirtuine</one>? <one>Silent information regulator</one>. URL: https://en.wikipedia.org/wiki/Sirtuin []
554
+ - In genetics: how many <one>different base substitutions</one> can occur in DNA? <one>12</one>. []
555
+ - Name 6 <one>Omics</one>. A: (1) <one>Genomics</one> (2) <one>Epigenomics</one> (3) <one>Transcriptomics</one> (4) <one>Proteomics</one> (5) <one>Metabolomics</one> (6) <one>Nutrigenomics</one> []
556
+ - Was ist die <one>Transmissionsgenetik</one>? Wie Gene von einer Generation an die nächste Generation weitervererbt werden. []
557
+ - Nenne einen konkreten <one>SINE Vertreter</one>. A: <one>Alu</one>. URL: https://de.wikipedia.org/wiki/Alu-Sequenz []
558
+ - Welche <one>eukaryote DNA-Polymerase</one> ist für die Replikation mitochondrialer DNA verantwortlich? Die <one>Gamma-Polymerase</one>. URL: https://en.wikipedia.org/wiki/POLG []
559
+ - Andere Bezeichnung für <one>auxotrophe Stämme</one>? <one>Nährstoffabhängige Mutanten</one>. URL: https://de.wikipedia.org/wiki/Auxotrophie []
560
+ - What is meant with the term <one>down mutation</one> in genetics? This is <two>a mutation</two> that <one>slows down the rate of transcription</one>. []
561
+ - In der Genetik: was heisst <one>MITE</one> und was ist es? (1) Die Abkürzung steht für <one>miniature inverted-repeat transposable elements</one>. (2) <one>MITE</one> ist ein <two>non-autonomous DNA-Transposon</two>. URL: http://www.mobilednajournal.com/content/3/1/13
562
+ - Trivialname für das <one>Luria-Delbrück Experiment</one>? Der <one>Fluktuationstest</one>. URL: https://de.wikipedia.org/wiki/Luria-Delbr%C3%BCck-Experiment []
563
+ - Ausser DNA, was noch kann an <one>CAP</one> binden? <one>cAMP</one> kann an CAP binden. URL: https://en.wikipedia.org/wiki/Cyclic_adenosine_monophosphate []
564
+ - Wie ist <one>L1</one> strukturell aufgebaut? <one>ORF1</one>, <one>ORF2</one> (ist synonym zu <one>pol</one>) sowie <one>Poly-A</one>. Die <three>LTR-Region fehlt jedoch</three>.
565
+ - <one>Genetic night blindness</one> may result from ...? A: An <two>alteration</two>/<two>mutation</two> to the <one>rhodopsin gene</one>. URL: https://www.ncbi.nlm.nih.gov/gene?Db=gene&Cmd=DetailsSearch&Term=6010 []
566
+ - <one>Who</one> first demonstrated that mutations could be induced in crop plants? <cadetblue>Lewis John Stadler</cadetblue>. URL: https://en.wikipedia.org/wiki/Lewis_Stadler []
567
+ - Was heisst <one>nucleoid</one>? <one>Kernähnlich</one>. URL: https://en.wikipedia.org/wiki/Nucleoid []
568
+ - If a <one>palindrome</one> occurs in the same DNA strand, how do we call it? A <one>mirror repeat</one>. []
569
+ - In Genetics, for instance in Drosophila: <one>when does crossing-over occur</one>? Crossing-over occurs at the <one>4-chromatid stage</one>. []
570
+ - In welchem Jahr wurde <one>das letzte Triplett</one> dekodiert? Im Jahre <one>1966</one>. []
571
+ - Name one general, observable effect of <one>polyploidy</one>? The <one>cell size is increased</one>. []
572
+ - Was ist das <orange>Hauptmerkmal</orange> des <lightseagreen>Zygotäns</lightseagreen>? Die <one>Paarung der homologen Chromosomen</one>. []
573
+ - When is the <one>DNA Toposiomerase</one> enzyme extremely important? During <two>Replication of DNA</two> (<one>DNA Replication</one>). []
574
+ - Warum verpacken Eukaryoten ihre <one>DNA</one> in Chromosomen? Zum <one>Schutz</one>. []
575
+ - <one>Welche Person</one> löste das <three>Hfr-Rätsel</three> rund um die verschiedenen Hfr maps? <one>Allan Campbell</one>. URL: https://en.wikipedia.org/wiki/Allan_Campbell_(biologist) []
576
+ - The <one>Dam methylase</one> recognizes which sequence? <royalblue>GATC</royalblue>. URL: https://de.wikipedia.org/wiki/Dam-Methylase []
577
+ - Wird zuerst <one>13mer</one> oder <one>9mer</one> beim <three>OriC</three> gebunden? <one>9mer</one> - also <two>zuerst die kleinere mer-Region</two>. []
578
+ - Do both <one>Prokaryotes</one> and <one>Eukaryotes</one> have type I and type II topoisomerases? Yes. []
579
+ - Können <one>Proteasome</one> im <two>Zellkern</two> gefunden werden? Ja. []
580
+ - Das menschliche Genom besitzt n Bindungsstellen für <one>CTCF</one>? <one>15.000</one>. URL: https://en.wikipedia.org/wiki/CTCF []
581
+ - The <three>copia element</three> in <one>Drosophila</one> contains <two>DTRs</two>. What does this mean? <cadetblue>Direct terminal repeats</cadetblue>, at each end. []
582
+ - Welche Person schlug die <one>Tetranucleotide-Hypothesis</one> vor? <one>Phoebus Levene</one>. URL: https://en.wikipedia.org/wiki/Phoebus_Levene []
583
+ - Wie können wir erklären, das der <one>himalayan rabbit</one> eine dunkle Schnauze hat? Die <one>Enzyme</one>, die für diese Farbe/Pigmentierung relevant sind, sind nur <two>bei niedrigen Temperaturen</two> <one>katalytisch aktiv</one>. []
584
+ - What can be considered as <one>the raw material for evolutionary selection</one>? <one>Mutations</one>. []
585
+ - Nenne <one>zwei Klassen von Proteinen</one>, die durch <two>Ubiquitinierung</two> markiert werden. A: (1) <one>cell-cycle regulators</one> sowie (2) <one>Proteine die beschädigt sind</one> []
586
+ - Nenne ein Beispiel für ein <one>Chaperonin</one>. A: <one>Hsp60</one>. URL: https://en.wikipedia.org/wiki/HSP60 []
587
+ - Give one example for an <one>unstable phenotype</one>. A: The <one>spotted kernels</one> in <two>maize</two>. URL: https://www.nature.com/scitable/topicpage/barbara-mcclintock-and-the-discovery-of-jumping-34083/ []
588
+ - Purin- und Pyrimidin-Basen sind wie an den <one>Zucker</one> gebunden? <one>N-glykosidisch</one>. []
589
+ - Genes in a <one>REP region</one> typically encode proteins that are important where? <one>REP genes</one> are important for/during <two>DNA replication</two>. []
590
+ - Was ist die <one>Einheit biologischer Genkarten</one>? Das <one>centi-Morgan</one> (<royalblue>CM</royalblue>). URL: https://de.wikipedia.org/wiki/Centimorgan []
591
+ - Was wäre die Folge einer <one>mitotischen Bildung von Gameten</one>? <one>Gameten wären</one>, wie auch die normalen somatischen Zellen, <one>diploid</one>. []
592
+ - Nenne eine natürliche Methode wie <one>Transposons</one> bekämpft werden können. A: <one>Andere Transposons</one> können dort hineinhüpfen und diese dadurch inaktivieren, wie dies zum Beispiel beim <royalblue>Victim-Transposon</royalblue> so gegeben ist. []
593
+ - Nenne ein Beispiel für ein bestimmtes Protein mit einer <one>MBD-Domäne</one>. A: Das <royalblue>MeCP2-Protein</royalblue> besitzt eine <one>MBD Domäne</one>. URL: https://en.wikipedia.org/wiki/MECP2 []
594
+ - May <one>Pseudogenes</one> have <two>gene-like features</two> such as <three>a promoter</three>? Yes, of course. []
595
+ - Welche Promotoren sind <one>downstream</one>? <one>Pol III Promotoren</one>. URL: https://en.wikipedia.org/wiki/RNA_polymerase_III []
596
+ - The <one>reverse genetics</one> <two>approach</two> starts with ... ? A <one>gene-sequence</one>. URL: https://en.wikipedia.org/wiki/Reverse_genetics []
597
+ - Ist die Wortwahl <one>GC-Boxen</one> gut? Nein - da diese Boxen aus <one>5x G</one> aber nur <one>1x C</one> bestehen. []
598
+ - Nenne die 3 <one>Regeln von Mendel</one> in Kurzform (aber in beliebiger Reihenfolge). A: (1) <one>Uniformitätsregel</one> (2) <one>Spaltungsregel</one> (3) <one>Unabhängigkeitsregel</one> []
599
+ - Nenne zwei <one>methylmodifizierte Basen</one>. A: (1) <one>5-Methylcytosin</one> (2) <one>6-Methylaminopurin</one> []
600
+ - Give an example for a <one>conditional mutation</one>. A: A <one>temperature-sensitive mutation</one>. URL: https://en.wikipedia.org/wiki/Temperature-sensitive_mutant []
601
+ - What means <one>haplosufficient</one> in genetics? This means that a single copy of a gene is sufficient to lead to the expression or the manifestation of a certain phenotype. URL: https://en.wikipedia.org/wiki/Haploinsufficiency []
602
+ - Das Produkt des <one>Pericentrin-Gens</one> bindet an <two>welches Molekül in der Zelle</two>? <one>Calmodulin</one>. URL: https://en.wikipedia.org/wiki/PCNT []
603
+ - In genetics: the <one>reconstitution experiment</one> occurred in the year <two>1957</two>. Which <three>biological information system</three> was used? <one>TMV</one>. URL: https://en.wikipedia.org/wiki/Tobacco_mosaic_virus []
604
+ - Give another term for <one>identical twins</one>. A: <one>Monozygotic twins</one>. URL: https://en.wikipedia.org/wiki/Twin#Monozygotic_(identical)_twins []
605
+ - During <one>transcription</one>, which DNA strand is being transcribed - the <two>template strand</two> or the <two>non-template strand</two>? The <one>temple-strand</one> is the one that is transcribed. []
606
+ - The <one>most frequent stop codon in the human genome</one> is ... ? <one>UGA</one> (yup - pretty standard). []
607
+ - In the human genome: the <one>Lactase-gene</one> can be found on which chromosome? It can be found on <one>chromosome 2</one>. []
608
+ - Die <one>PCNA</one> hat n UE, die <one>Bakterienklammer</one> hingegen n? A: (1) <one>PCNA</one>: <two>3 UE</two> (2) <one>Bakterienklammer</one>: <two>2 UE</two> []
609
+ - Name the <one>two major processes</one> responsible for <three>genetic variation</three>. A: (1) <one>mutation</one> (2) <one>recombination</one> []
610
+ - The <one>RNA polymerase IV</one> synthesizes what exactly? It synthesizes <one>siRNA</one>, <one>in plants</one>. URL: https://en.wikipedia.org/wiki/RNA_polymerase_IV []
611
+ - What happens when <one>allolactose</one> binds to the lac-repressor? The <two>lac-repressor</two> undergoes an <one>allosteric transition</one>. []
612
+ - Was bewies das <one>Meselson-Stahl Experiment</one> aus dem Jahre <three>1958</three>? Das die <one>DNA-Replikation semikonservativ abläuft</one>. URL: https://de.wikipedia.org/wiki/Meselson-Stahl-Versuch []
613
+ - Jedes <one>funktionelle Hämoglobinmolekül</one> besteht aus ...? Je <one>2 Alpha-Globin</one> und <one>2 Beta-Globin</one> Molekülen. URL: https://de.wikipedia.org/wiki/H%C3%A4moglobin []
614
+ - Was kann durch eine <one>Hoogsten-Paarung</one> entstehen? Eine <one>DNA-Tripelhelix</one>. URL: https://en.wikipedia.org/wiki/Hoogsteen_base_pair []
615
+ - Nenne eine Voraussetzung für die <one>genetische Komplementation</one>. A: Die Existenz von <one>wt-Allelen</one>. URL: https://en.wikipedia.org/wiki/Wild_type []
616
+ - Was ist mit dem Begriff <one>on farm</one> in der Genetik gemeint? <two>Landwirte</two> bauen bestimmte Sorten an (<one>Nutzung</one>) - und sorgen damit für deren <one>Erhaltung</one> (dies erhält auch das know-how bezüglich Anbau und Verwertung). []
617
+ - Bei der <one>Cre-Rekombinase</one>: wofür steht das <two>cre</two>? <two>cre</two>: <one>causes recombination</one>. URL: https://en.wikipedia.org/wiki/Cre_recombinase#Discovery []
618
+ - Warum ist die genetische Sequenz <one>AUGA</one> besonders? Diese Sequenz enthält sowohl ein <two>Startcodon</two> (<one>AUG</one>) als auch ein <two>Stopcodon</two> (<one>UGA</one>). []
619
+ - What does the Drosophila <one>copia element</one> <three>miss</three>? The Drosophila copia-element misses an <one>env</one> area. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC321795/ []
620
+ - In seiner aktiven Form hat der <one>LacI Repressor</one> wieviele Untereinheiten? Er ist ein <one>Tetramer</one> - folglich hat er <two>4 Untereinheiten</two>. URL: https://en.wikipedia.org/wiki/Lac_repressor []
621
+ - What do we mean with <one>the ordered nature of the code</one>? This means that chemically similar amino acids, often share one or two <one>middle</one> bases in their different triplets encoding them.
622
+ - <one>Maleness Gene</one>? <royalblue>SRY</royalblue>. URL: https://en.wikipedia.org/wiki/Testis-determining_factor []
623
+ - Der <one>F-Pilus des F-Plasmids</one> wird durch <two>welches Gen</two> kodiert? Durch das Gen <one>traA</one>. URL: https://www.uniprot.org/uniprot/P04737 []
624
+ - When was <one>synthetic lethality</one> first described? In <one>1922</one>. The phenomenon of synthetic lethality was first described by <two>Calvin Bridges</two>. []
625
+ - Nenne eine <one>Protein-Komponente des Nucleoids</one>. A: <one>MukBEF</one>. URL: https://www.ncbi.nlm.nih.gov/pubmed/25732339 []
626
+ - Which group of genes have <one>a high GC content</one>? The <one>housekeeping genes</one>. URL: https://en.wikipedia.org/wiki/Housekeeping_gene []
627
+ - Which was <one>the first inherited human disease</one> that was understood at the molecular level? The <one>sickle-cell anemia</one>. URL: https://en.wikipedia.org/wiki/Sickle_cell_disease []
628
+ - Why does <one>fetal hemoglobin</one> bind oxygen more tightly than adult hemoglobin? This is <two>necessary for survival of the fetus</two>, so that <one>maternal oxygen</one> can be transferred to the fetus. []
629
+ - In general: <one>when are all eukaryotic genes</one> <orange>less accessible for transcription</orange>? During <one>mitosis</one>. URL: https://en.wikipedia.org/wiki/Mitosis []
630
+ - An <one>Histon H3S10</one> bindet ...? Die <one>14-3-3 Domäne</one>. URL: https://en.wikipedia.org/wiki/14-3-3_protein []
631
+ - Give another expression for: <one>if both alleles are missing</one>. A: <one>Nullizygous</one>. URL: https://en.wiktionary.org/wiki/nullizygous []
632
+ - Bei der DNA, im <one>sugar-phosphate backbone</one>, was können die negativ geladenen P-Gruppen in-vivo binden? <one>Mg²⁺</one> Kationen. []
633
+ - Do <one>male calico cats</one> exist? No. URL: https://en.wikipedia.org/wiki/Calico_cat []
634
+ - Name a component of the <one>positioning factor SL1</one>. A: <one>TBP</one>. URL: https://en.wikipedia.org/wiki/TATA-binding_protein []
635
+ - Anderes Wort für die <one>Chromosomenpaarung</one>? <one>Synapsis</one>. URL: https://en.wikipedia.org/wiki/Synapsis []
636
+ - Molekulare Ursache von <one>SCID</one>? Der Verlust des <one>Enzyms ADA</one>. Die <two>precursor cells</two> für das Immunsystem fehlen dadurch. []
637
+ - Who defines the <one>type</one> of chromosome? Give a few examples. A: The <one>centromere</one>, e. g. <two>metacentric</two>, <two>acrocentric</two>, <two>submetacentric</two>. []
638
+ - Andere Bezeichnung für die <one>Harvard-Maus</one>? <one>OncoMouse</one>. URL: https://en.wikipedia.org/wiki/Oncomouse []
639
+ - Anderes Wort für <one>Rückgrat der DNA</one>? <one>Phosphatribosekette</one>. []
640
+ - Im menschlichen Genom: ein <one>centimorgan</one> umfasst <three>wieviele Basenpaare</three>? Etwa <one>1 Million Basenpaare</one>. URL: https://en.wikipedia.org/wiki/Centimorgan []
641
+ - Nenne ein Beispiel für <one>ein alkylierendes Agens</one>, das ein <two>t</two> sowie ein <two>g</two> im Namen enthält. A: <one>Nitrosoguanidin</one>. URL: https://pubchem.ncbi.nlm.nih.gov/compound/Nitrosoguanidine []
642
+ - What is meant with the term <one>forward mutation</one>? This is when a <one>wild-type allele</one> is <royalblue>changed</royalblue> to <one>a different allele</one>. []
643
+ - In einem <one>Thymin-Dimer</one> sind die beiden Thymine wie miteinander verbunden? Sie sind <two>kovalent</two> über einen <one>Cyclobutan-Ring</one> verbunden. URL: https://www.mun.ca/biology/scarr/T-T_dimer.gif []
644
+ - What can we find in an <one>Ascus</one> (of yeast cells)? <one>4 haploid (n) ascospores</one>. []
645
+ - Nenne drei <one>Telomer-assozierte Proteine</one> (ausser POT). A: (1) <one>TRF1</one> (2) <one>TRF2</one> (3) <one>WRN</one> []
646
+ - Hat ein <one>starker Promoter</one> eher <two>A-T</two> oder eher <two>G-C</two> Basenpaare zwischen der -10 Position und der TSS-Stelle? Eher <one>AT-Basenpaare</one>. []
647
+ - What is meant with the term <one>DNA space</one>? This term refers to <one>every possible DNA combination</one>. []
648
+ - <one>Ty</one> in genetics is an abbreviation for ... ? <one>Transposon yeast</one>. URL: https://en.wikipedia.org/wiki/Ty5_retrotransposon#Yeast_heterochromatin_and_Ty5. []
649
+ - In der Molekularbiologie: wofür steht die Abkürzung <one>FEBAS</one>? <one>Fluorescence Enzyme Bead Assay</one> (<royalblue>F|E|B|AS</royalblue>). []
650
+ - In genetics: what does the abbreviation <one>CAF1</one> stand for, in genetics? <one>Chromatin assembly factor 1</one>. URL: https://en.wikipedia.org/wiki/CAF-1 []
651
+ - Im Jahre <one>1961</one> wurde mit Hilfe von Suppressors demonstriert, das der genetische Code in Triplets abgelesen wird. <three>In welchem Gen</three> und <three>bei welchem Organismus</three>? Im <royalblue>rII-Gen</royalblue>, beim <one>T4-Phagen</one>. URL: https://de.wikipedia.org/wiki/T4-Phage []
652
+ - In <one>genetics</one>: <peru>repression</peru> occurs at the level of ...? <one>Transcription</one>. []
653
+ - <one>SINEs</one> constitute n % of the human genome? <royalblue>11%</royalblue>. []
654
+ - Das <one>menschliche Titin-Gen</one> hat wieviele <one>Exons</one>? <one>178</one>. URL: https://de.wikipedia.org/wiki/Titin []
655
+ - As of the year 2016: how many <one>human proteins</one> are known to contain <two>selenocysteine</two>? <one>44</one>. []
656
+ - An welchen Positionen im Genom existieren <one>SNPs</one>? An den <royalblue>STSs</royalblue> (<one>Sequence Tagged Sites</one>). []
657
+ - <one>Chromosom 21</one> im menschlichen Genom umfasst wieviele Basenpaare? <one>50 Millionen</one>. []
658
+ - Which <one>histone variant</one> shows <three>the least variation</three>? <royalblue>Histone H1</royalblue>. []
659
+ - What are <one>the possible stop codons in DNA</one>? (1) <one>TGA</one> (3) <one>TAG</one> (2) <one>TAA</one> []
660
+ - What are <one>the key reagents</one> used in <orange>optogenetics</orange>? <one>Light-sensitive proteins</one>. URL: https://en.wikipedia.org/wiki/Optogenetics []
661
+ - Woher kommt die Energie für die Reaktion der <one>Aminoacyl-tRNA-Synthetase</one>? Aus <one>ATP</one>. []
662
+ - Name the three chromosomes in humans that are <one>viable as a trisomy</one>. A: (1) <cadetblue>13</cadetblue> (2) <cadetblue>18</cadetblue> (3) <cadetblue>21</cadetblue> []
663
+ - Welche Eigenschaft macht <one>Ethidiumbromid</one> carcinogen? Die <one>Fähigkeit von Ethidiumbromid zu interkalieren</one>. URL: https://en.wikipedia.org/wiki/Ethidium_bromide []
664
+ - Name the chromosomes that contain <one>NORs</one> (<three>Nucleolus organizer regions</three>) in the human genome. A: (1) <one>13</one> (2) <one>14</one> (3) <one>15</one> (4) <one>21</one> (5) <one>22</one> []
665
+ - Wo <one>beim Menschen</one> finden wir (auf natürlichem Wege) <two>Polyploidie</two>? In den <one>Megakaryozyten</one>. URL: https://de.wikipedia.org/wiki/Megakaryozyt []
666
+ - Welche zwei Forscher entzifferten den genetischen Code? <one>Nirenberg & Matthaei</one>. []
667
+ - <one>AT-Gehalt</one>, in %, des menschlichen Genoms? <one>71.6%</one>. []
668
+ - What prevents <one>Rec8 cleavage</one> by <two>separase</two> at the centromeres? The <one>Sgo1</one> (<one>Shugoshin</one>) <one>protein</one>. URL: https://en.wikipedia.org/wiki/Shugoshin_N_terminal_protein_domain []
669
+ - Nenne zwei <one>eukaryote Gene</one> deren mRNAs keine Introns enthalten. A: (1) <one>Histon-Gene</one> (2) <one>Interferon-Gene</one> []
670
+ - Wieso benötigt das <one>CAP Protein</one> beim <two>lac-Operon Modell</two> lange Helices? Die langen Helices dienen der <royalblue>Dimerbildung</royalblue>. URL: https://en.wikipedia.org/wiki/Catabolite_activator_protein []
671
+ - Name the <peru>4</peru> stop codons in <one>mtDNA</one>. A: <peru>Everything</peru> but <royalblue>UGA</royalblue> (<cadetblue>TGA</cadetblue>) → (1) <one>TAA</one> (2) <one>TAG</one> (3) <one>AGA</one> (4) <one>AGG</one>
672
+ - Wie schnell sind <one>DNA-Helicasen</one>? <one>1000 Basenpaaren (Nukleotide) pro Sekunde</one>. []
673
+ - Das <one>ENCODE-Projekt</one> kam im Jahre 2012 zu dem Schluss, das im menschlichen Genom mehr DNA aktiv ist als angenommen. <lightseagreen>Wieviel Prozent der DNA im menschlichen Genom sind aktiv</lightseagreen>? Etwa <one>80% der DNA</one>.
674
+ - Give an example for <one>a quantitative trait</one>. A: <one>Height</one> (e. g. in a human population).
675
+ - Give another name in genetics for the <one>processivity factor</one>. A: The <one>beta-ring</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2846219/
676
+ - Was heisst <one>mukaku</one>? <one>Kernlos</one> (japanisch).
677
+ - Welche Funktion hat die <one>T-Loop</one>? Die <one>T-Loop</one> <two>behindert den Zugang der Telomerase</two>.
678
+ - The <one>reduction in the yolk sac</one> came together with the elimination of which gene? The <one>vitellogenin gene</one>. URL: https://de.wikipedia.org/wiki/Vitellogenine
679
+ - Was macht die <one>CPD Photolyase</one>? Sie <one>repariert cyclic pyrimidine dimers</one> (<royalblue>CPD</royalblue>).
680
+ - How is <one>the third law of Mendel</one> called, alternatively? The <one>Law of Dominance</one>. URL: http://www.interactive-biology.com/3879/mendels-law-of-dominance/
681
+ - Anderer Begriff für ein <one>Operon</one>? <one>Cluster</one>.
682
+ - <one>Francis Crick</one> said that the genetic code is <three>commaless</three>. What did he mean by that? That <one>there is no internal punctuation</one> that would occur along the reading frame. []
683
+ - <one>Welches Stop-Codon</one> ist (allgemein) am häufigsten in Genomen zu finden? <one>UAA</one> (<three>ochre</three>).
684
+ - In welchem mutierten Gen mag man gegen <one>HIV</one> immun werden? <one>C-C chemokine receptor type 5</one>. URL: https://en.wikipedia.org/wiki/CCR5
685
+ - Was ist mit dem Begriff <one>Polysom</one> gemeint? Dies ist wenn eine mRNA mehrere Ribosomen trägt; respektive mehrere Ribosomen an diese mRNA gebunden sind und diese auch <one>translatieren</one>.
686
+ - Es gibt die <one>7SL RNA</one>, die Teil des <lightseagreen>signal recognition particle</lightseagreen> ist. Wieviele Nukleotide umfasst diese RNA? <one>299</one>. URL: https://de.wikipedia.org/wiki/7SL-RNA
687
+ - In the human genome: are <lightseagreen>introns</lightseagreen> usually <one>GC-richer</one> than <lightseagreen>exons</lightseagreen>? No - exons are usually <one>GC-richer</one> than introns.
688
+ - In metabolism: <one>genetic disorders</one> can occur due to enzyme deficiencies that disrupt these normal metabolic pathways. We can manage these. Name 3 different treatment strategies aside from gene therapy. A: (1) "Dietary restriction" / "supplementation" (2) "Inhibit other enzymes" in the pathway, via medicaments (3) Infusion of a recombinant enzyme, such as to treat the <one>Gaucher disease</one>
689
+ - Die <one>B-Form der DNA</one> ist die <three>Normalform</three>. Gibt es Varianten dieser B-Form? <royalblue>Poly-A</royalblue> und <royalblue>Poly-T</royalblue> Sequenzen führen zu <one>leicht gebogener DNA</one>. Die <two>Helixwindung</two> beträgt hierbei 10 statt der normalen 10.5 bp.
690
+ - Das <one>P-Element</one> kann die Stabilität des Genoms gefährden da es durch Integration in Exons Defekte hervorrufen kann. Wie schützt sich Drosophila davor? Durch die <two>maternale Vererbung</two> von <one>piwi-interacting RNA</one> (<one>piRNAs</one>). In einem RNA-silencing Mechanismus wird hier die <three>genomische Integrität</three> aufrecht erhalten.
691
+ - Gibt es eine Korrelation zwischen Genen und <one>seltenen Codons</one> und ihrer <three>Wichtigkeit</three> für die Zelle? Ja. Gene, deren Proteine häufig benötigt werden, haben nur wenige seltene Codons.
692
+ - Name two sets of <one>regulatory proteins</one> in higher eukaryotes. A: (1) <one>enhancers</one> (2) <one>promoter-proximal elements</one>
693
+ - In der Genetik: wofür stehen die Kürzel <one>A</one>, <one>D</one>, <one>H</one> und <one>M</one> bei der Struktur der DNA? (1) <one>A</one> ... <royalblue>acceptor</royalblue> (2) <one>D</one> ... <royalblue>donor</royalblue> (3) <one>H</one> ... <royalblue>hydrogen</royalblue> (4) <one>M</one> ... <royalblue>methyl</royalblue>
694
+ - What do we mean with "Rien ne vas plus!" in genetics? This is an analogy for <one>DNA replication</one>. DNA replication separates the "deposition phase" (betting) from the "evaluation phase".
695
+ - <one>Bends in DNA</one> occur at which sequence? <three>4 or more</three> <one>adenosine residues</one> (<royalblue>PolyA</royalblue>).
696
+ - Wann wurde die <one>one-gene-one-enzyme</one> Hypothese aufgestellt, und von wem? <one>Edward Tatum</one> (Mnemo: <two>ET</two>) und <one>George Beadle</one> stellten diese Theorie im Jahre <two>1941</two> auf.
697
+ - In der Mausgenetik: was ist das <one>IKMC</one> (Hinweis: eine Organisation)? Das <one>International Knockout Mouse Consortium</one>. URL: https://www.mousephenotype.org/
698
+ - Wie finde ich <one>recessive lethal mutations</one> in einer Population? Indem wir <one>ungewöhnliche Segregationsregeln</one> / <one>Segregationsmuster</one> bemerken.
699
+ - The <one>primase</one> synthesizes what? A <one>short stretch of RNA</one>, of around <one>11-12 nucleotides</one> in length (= <one>RNA primers</one>).
700
+ - What is a <one>QTL</one>? A <one>quantitative trait locus</one> (<slateblue>QTL</slateblue>) is a section of DNA (the locus) which correlates with <two>variation in a specific phenotype</two> (the quantitative trait).
701
+ - What is the effect of <one>puromycin</one>? This antibiotic can <two>inhibit protein synthesis</two>, by causing <three>premature chain termination</three> <one>during translation</one>.
702
+ - Was ist zur <one>genetischen Nomenklatur</one> zu sagen? Gene werden nach der <one>erst-entdeckten Mutante</one> benannt, zum Beispiel <three>w</three> für <two>white</two> und <three>+</three> für <two>Wildtyp</two>.
703
+ - What is meant with the term <one>mutagenesis</one>? This is <one>the production of mutations</one>, <royalblue>in the laboratory</royalblue>.
704
+ - What means the term <one>Haplodiploidy</one> and where could we find it? This is <one>a sex-determination system</one> where males develop from <two>unfertilized eggs</two> and are haploid, and females develop from <two>fertilized eggs</two> and are diploid. <royalblue>Bees</royalblue>, <royalblue>ants</royalblue> and <royalblue>wasps</royalblue> uses this system.
705
+ - Kurzform der <one>Wobble Rules</one>? <one>G→C(U)</one> und <one>U→A(G)</one>, sowie <one>I→U,C,A</one>
706
+ - The <one>Lambda-Red system</one> consists of which three proteins? (1) <one>Beta</one> (2) <one>Gam</one> (3) <one>Exo</one>
707
+ - Name <one>a goal</one> in <two>breeding genetics</two> in general, that aims to improve a global factor. A: Select for <one>lower GHG</one> (<two>green-house gas</two>) <three>emissions</three> in species.
708
+ - Was besagt die Mendelsche <one>Spaltungsregel</one>? Wenn zwei Individuen aus einer F1-Generation gekreuzt werden, die beide gleichartig heterozygot sind, dann sind die Nachkommen aus dieser Paarung untereinander nicht mehr uniform, sondern spalten sich sowohl im Genotyp als auch im Phänotyp auf. Bei dominant-rezessiver Vererbung sind durchschnittlich ein Viertel der F2-Individuen reinerbig mit zwei rezessiven Erbanlagen. Die anderen drei Viertel zeigen den Phänotyp der dominanten Erbanlage. Insgesamt besteht also im Phänotyp ein Verhältnis von 3:1, im Genotyp eines von 1:2:1.
709
+ - Woraus besteht die <one>eukaryotische 5' cap</one>? Aus <one>7-methyl guanosine</one>, linked by 5 prime- 5 prime phosphate linkage, a so called <two>triphosphate bridge</two>. URL: https://en.wikipedia.org/wiki/Five-prime_cap#Structure
710
+ - Was besagt die <one>Genzentrentheorie</one>? Sie besagt, das <one>die genetische Variation der Kulturpflanzen</one> nicht gleichmäßig verteilt ist, sondern gewisse <two>Hotspots</two> aufweist.
711
+ - <one>Mutations</one> alter ... ? The <one>information content of genes</one>.
712
+ - When is the <one>ATM gene</one> active? This <two>protein kinase</two> is active upon <one>double-stranded DNA breaks</one>.
713
+ - Give <one>an example</one> for an <two>epistatic gene in man</two>. A: The system of genes that determine <one>skin colour</one> is independent of the gene responsible for <one>albinism</one> (<royalblue>lack of pigment</royalblue>). When the albino condition occurs, the genes that determine skin colour are present - but not expressed.
714
+ - Name <one>four factors</one> that can cause eukaryotic cells to <three>decrease their rate of protein synthesis</three>. A: (1) infection by <royalblue>viruses</royalblue> (2) increase in temperature (aka <royalblue>heat</royalblue>) (3) deprivation of nutrients (aka <royalblue>less energy</royalblue>) (4) deprivation of <royalblue>growth factors</royalblue>
715
+ - Was sind <one>Kinetochore</one>? Eine spezielle, halbkugelförmige Struktur aus Proteinen und DNA-Abschnitten, die <one>dem Centromer seitlich aufsitzt</one> und <two>bei Kernteilungsvorgängen</two> als Ansatzstelle für die Fasern des Spindelapparates dient (<three>Anheftungsstellen für Mikrotubuli</three>).
716
+ - <one>Überlappende Gene</one> haben nicht nur Vorteile sondern auch zumindestens einen <two>Nachteil</two>. Welchen? Eine einzige Mutation kann <one>mehr als ein Protein</one> treffen.
717
+ - Give another word for the <one>class II Transposons</one>. A: <one>Replicative Transposon</one>.
718
+ - Definiere den Begriff <one>culture shock</one>. A: Das sind zum Beispiel <two>human cells in cell cultures</two>, die sich trotz langer Telomere nicht mehr teilen. Ihr cell cycle ist <one>arrested</one>.
719
+ - In the <one>DNA nucleoside</one>: which atoms are linked to the five-carbon sugar? (1) <one>N1</one> of <one>Pyrimidines</one>. (2) <one>N9</one> of <one>Purines</one>.
720
+ - Welcher Teil des <three>lac-Repressors</three> bindet an <one>Lactose</one>? Der <one>COOH-Terminus</one>.
721
+ - Wieviel Prozent der menschlichen DNA ist <one>repetitiv</one>? Mehr als <one>50%</one>.
722
+ - Which two types of <one>missense mutations</one> can be <one>distinguished</one>? (1) <one>conservative mis-sense mutation</one> (2) <one>non-conservative mis-sense mutations</one>
723
+ - What is an <one>epistatic gene</one>? This is <one>a gene that determines whether or not a specific trait will be expressed</one>. For example, <two>baldness</two> versus <two>red hair colour</two>.
724
+ - In der Genetik: wir möchten den <one>Tm-Wert</one> erhöhen. Was könnten wir tun? Den <one>GC-Gehalt</one> der DNA erhöhen.
725
+ - <one>Organelle genes</one> show what kind of <three>inheritance</three>? <one>Uniparental inheritance</one>. URL: https://www.ncbi.nlm.nih.gov/books/NBK22059/
726
+ - Wo greifen <one>Tetracycline</one> an? An der <one>prokaryoten 30S Untereinheit des Ribosoms</one>. URL: https://en.wikipedia.org/wiki/Tetracycline
727
+ - Wie geht <one>die Consensussequenz</one> bei der <two>CAAT-Box</two>? <one>GGN|CAA|TCT</one>. Also <royalblue>9 Nukleotide</royalblue>.
728
+ - Mittels <one>centiMorgan</one> können wir die <three>genetische Distanz</three> zwischen 2 Loci messen, aber wann genau gilt das? Pro <one>Rekombinationsereignis</one> - also pro Meiose, da es nur dann zum crossing over kommen kann.
729
+ - Wann wurden die <one>Viroids</one> entdeckt? Im Jahre <one>1971</one>.
730
+ - <three>Imprinted genes</three> in <one>mammals</one> show what interesting phenomenon in genomics? They are mostly <one>clustered</one>, about <royalblue>85%</royalblue> of them are at least.
731
+ - According to <one>Mendel's law</one>, should not the F1 generation be uniform? Not always, when it is more complex, like <one>skin pigmentation</one>, then deviations can be seen.
732
+ - Nenne drei Bedingungen die ein <one>hereditary molecule</one> erfüllen muss. A: (1) Ein <one>hereditary molecule</one> muss die Fähigkeit besitzen sich "replizieren" zu können (2) Ein "hereditary molecule" muss die Fähigkeit besitzen "Informationen speichern zu können" (3) Ein <three>hereditary molecule</three> muss die Fähigkeit besitzen sich <one>verändern zu können</one>, durch <two>Mutation</two>
733
+ - Das menschliche <one>BRCA1 Gen</one> ist wo zu finden? Am humanen <one>Chromosom 17</one>. URL: https://en.wikipedia.org/wiki/BRCA1
734
+ - Wo finden wir in <peru>Eukaryoten</peru> <one>reverse transcription</one>? (1) Bei <one>Retrotransposons</one>. (2) Bei der <one>Synthese der Telomer-Kappe</one>.
735
+ - Wie lange sind <one>guide RNAs</one> (von bis)? <one>40-80 Nukleotide</one>. URL: https://en.wikipedia.org/wiki/Guide_RNA
736
+ - What is meant with the phrase <one>null mutation</one>? This is <one>a mutation</one> that <cadetblue>completely inactivates a gene</cadetblue>.
737
+ - Welche Transition führt <one>nitrous acid</one> durch (mit zwei konkreten Beispielen)? (1) <one>Oxidative Deamination</one> von "Cytosin" nach "Uracil" ("C" → "U"). (2) <one>5-Methylcytosine</one> zu "Thymin" (<two>5meC</two> → <two>T</two>) konvertieren.
738
+ - Name two chief <one>nucleic acid-based therapies</one>. A: (1) <one>antisense oligonucleotides</one> (<two>ASOs</two>) (2) <one>RNA interference</one> (<two>RNAi</two>)
739
+ - Was gilt als <one>Beginn</one> des <two>F-Plasmids</two>? Das <one>linke Ende</one> des <royalblue>IS3-Elements</royalblue>.
740
+ - <one>Mobile genetic elements</one> can facilitate ... ? <one>Evolutionary change</one>.
741
+ - What is <three>the genetic cause</three> for the occurance of the <one>Burkitt Lymphoma</one>? <one>A chromosomal rearrangement</one> that results in the c-myc gene being placed next to an enhancer of an immunoglobulin gene.
742
+ - Give <one>two different examples</one> where we might see <two>rolling-circle replication</two>. A: (1) in <one>some viruses</one> (2) the <one>F factor</one> of <two>E. coli</two>
743
+ - How does the <one>RecA protein</one> become activated? <two>RecA</two> is <one>activated by ssDNA</one>.
744
+ - Is <one>Transcriptomics</one> possible without (knowing) the genome sequence? Yes.
745
+ - Das <one>2012</one> vorgestellte <peru>IPGT-Verfahren</peru> (<two>in-planta Gene Targeting</two>) soll neue Erbinformation sehr präsize einbauen. Worauf basiert das? Auf <one>homologer Rekombination</one>, mit Hilfe einer <royalblue>site-specific endonuclease</royalblue>.
746
+ - Definiere <one>frameshift suppressor</one> und was sie bewirken. A: Ein <one>frameshift suppressor</one> ist eine Mutation, die eine <two>Addition</two> oder <two>Deletion</two> ausgleichen kann - und somit wieder den "korrekten frameshift" herstellt.
747
+ - Why may the following newspaper headline be not optimal: <one>"Angelina Jolie had double mastectomy due to a cancer gene"</one>? It should be called a <one>cancer allele</one> more accurately rather than a <two>cancer gene</two>.
748
+ - Welche zwei <one>Imprinting Hypothesen</one> gibt es? (1) <one>Genetic-Conflict</one> Hypothesis (2) <one>Ovarian-Time-Bomb</one> Hypothesis
749
+ - Give <one>an extreme example of introns in eukaryotic genes</one> and also state how many introns we can find as part of this gene. A: The <one>pro-alpha-2 collagen gene</one> <two>contains 50 introns</two>. URL: http://www.ncbi.nlm.nih.gov/UniGene/clust.cgi?UGID=704301&TAXID=9606&SEARCH=pro-alpha-2%20collagen
750
+ - Mit welchem Experiment wurde das <one>Konzept der adaptiven Mutation</one> entkräftet? Mit Hilfe des <one>Luria-Delbrück-Fluktuationstest</one>. URL: https://de.wikipedia.org/wiki/Luria-Delbr%C3%BCck-Experiment
751
+ - Wie wird in der <one>Hefe</one> die Anzahl der Telomer Repeats bestimmt? <one>Durch spezifische Proteine</one>, <two>die für die Termination der Synthese verantwortlich sind</two>.
752
+ - Name the three main domains of <one>DNA-Polymerase III</one>. A: (1) <one>finger</one> (2) <one>thumb</one> (3) <one>palm</one>
753
+ - Does a <one>null mutation</one> produce anything? Yes: a <one>nonfunctional protein</one>.
754
+ - Was ist mit dem Begriff <one>Syntänie</one> gemeint? Wenn <royalblue>orthologe Gene</royalblue> in gleicher Reihenfolge in verschiedenen Genomen vorkommen.
755
+ - What do we mean with the <one>second genetic code</one>? This is "the matching of each amino acid with the correct tRNA".
756
+ - Nenne <one>die wichtigste Splicing-Regel</one>. A: Die <one>5'-GU-A-AG-3'</one> Regel.
757
+ - Which three enzymes work during the <one>RNA Capping</one> step in eukaryotes? (1) <one>Phosphatase</one> (2) Guanylyltransferase (3) Methyltransferase
758
+ - Es gibt <one>Sphynx</one>-Katzen und <one>Devon Rex</one>-Katzen. Was ist die molekulargenetische Ursache für diese Formen? Eine Mutation in dem Gen <one>KRT71</one> (<two>Keratin 71</two>). Diese Mutation ist für den jeweiligen <three>curly</three> und <three>wavy</three> Phänotyp verantwortlich.
759
+ - Nenne zwei verschiedene <one>Gene</one>, in zwei verschiedenen Organismen, die <three>START</three> überwinden können. A: (1) <two>cdc2</two> von <one>Schizosaccharomyces pombe</one> (2) <two>cdc28</two> von <one>Saccharomyces cerevisiae</one>
760
+ - Which molecule <one>increases the processivity of DNA polymerase</one>? The <one>beta-subunit dimer</one>, also called <royalblue>beta-clamp</royalblue> or <royalblue>sliding-clamp</royalblue>.
761
+ - What exactly can the phenomenon called <one>photoreactivation</one> do in a cell? It can directly <one>reverse the formation of pyrimidine dimers</one> that may have resulted from <royalblue>ultraviolet irradiation</royalblue> (<two>UV</two>).
762
+ - Man sieht einen <one>rosafarbenen Snapdragon</one>: Was meiss man dadurch sofort? Dieser Snapdragon muss <one>heterozygot</one> für die Farbe sein, denn <two>homozygoter</two> snapdragon ist entweder rot oder weiss.
763
+ - Was ist <one>Phänokopie</one>? Dies ist eine Bezeichnung für <one>nichterbliche, umweltbedingte Nachahmungen von bestimmten Phänotypen</one>.
764
+ - Give a specific example for <one>evolutionary interruption</one> in Genes. A: All known <one>active globin genes</one> <two>have interruptions</two> that occur at <one>homologous positions</one>.
765
+ - What can we do thanks to a <one>TUNEL assay</one>? This is a method for <one>detecting DNA fragmentation</one> by labeling the terminal end of nucleic acids.
766
+ - In genetics: what do we mean when we use the term <one>Epistasis</one>? Give an example for this in humans. A: This means that the effect of one gene depends on the presence of one or more <two>modifier genes</two>. For example, <one>the gene for baldness</one> is epistatic to those for <one>blond hair</one> or <one>red hair</one>.
767
+ - Wann wurde <one>das Experiment der unterbrochenen Paarung</one> durchgeführt? <one>1955</one>.
768
+ - Es gibt sogenannte <one>Antimetaboliten</one> zu den Nukleotiden und zu den Aminosäuren. Nenne jeweils eines für: <two>Guanin</two>, <two>Uracil</two> sowie für <two>Methionin</two>. A: (1) <one>Azaguanin</one> für "Guanin" (2) "Ethionin" für "Methionin" (3) <one>Fluorouracil</one> für <two>Uracil</two>
769
+ - Give another, shorter word for <one>maltose outer membrane porin</one>. A: <one>Maltoporin</one>.
770
+ - Name the three <one>transposable elements</one>. A: (1) <one>insertion sequences</one> (2) <one>transposons</one> (3) <one>some viruses</one>
771
+ - Why was the name <one>Alu family</one> given? Because they are cleaved with the restriction enzyme <peru>Alu I</peru>. URL: https://en.wikipedia.org/wiki/Alu_element
772
+ - The <one>DNA Helicases</one> work closely together with which other protein, at the least in Bacteria? With <royalblue>ssb</royalblue> (<one>single-strand DNA-binding protein</one>). URL: https://en.wikipedia.org/wiki/Single-strand_DNA-binding_protein
773
+ - Nenne drei Methoden der <one>reversen Genetik</one>. A: (1) <one>Gendeletionen</one> (2) <one>RNAi</one> (3) <one>Genkonversionen</one>
774
+ - Name all possibilities for <one>pyrimidine dimers</one> in DNA. A: There are <two>three different possibilities</two> here: (1) <two>cytosine dimers</two> (<one>C-C</one>) (2) <two>thymine dimers</two> (<one>T-T</one>) (3) <two>cytosine-thymine dimers</two> (<one>C-T</one>)
775
+ - Give another name for <one>gene cancels another gene</one>. A: <one>Epistatic gene</one>.
776
+ - <one>Thomas Hunt Morgan</one> führte welche Notation ein? Nenne ein Beispiel. A: Ein Gen für ein bestimmtes Merkmal wird nach der <one>ersten entdeckten Mutante</one> benannt, zum Beispiel <two>w</two> für <two>white eyes</two>, <two>w+</two> für <two>red eyes</two>.
777
+ - Nenne eine <one>biologische Möglichkeit</one> eine <three>Zufallsmutation in Genen</three> zu erzielen. A: <one>Insertion eines Transposons</one>.
778
+ - Why the name <one>general</one> in general transduction? General because <one>any segment of the chromosome</one> can <orange>be relocated</orange> by this system.
779
+ - Wieviele (und welche) mögliche <one>Basensubstitutionen</one> existieren? <royalblue>12</royalblue> - <one>4 Transitionen</one> und <one>8 Transversionen</one>.
780
+ - What gives rise to <one>Intermediate phenotypes</one>? <one>Incomplete dominance</one>.
781
+ - How may we call a gene at its <one>normal</one>/<one>usual locus</one>? An <one>endogeneous gene</one>. URL: https://www.ncbi.nlm.nih.gov/pubmed/12089560
782
+ - Was genau ist ein <one>ORF</one> (<peru>open reading frame</peru>)? Dies ist derjenige Bereich der <two>DNA</two> beziehungsweise der <two>mRNA</two>, dessen Leserahmen bei einem Start-Codon beginnt (und dieses inkludiert), und bis zu dem nächsten Stop-Codon liegt (das Stop Codon ist jedoch nicht Teil dieses ORFs). Der ORF ist somit <three>ein Teil eines Gens</three>.
783
+ - Im <one>Transposon der Hefe</one>: was bedeutet der Name <three>Ac</three> genau und wieso wurde er gewählt? <one>Activator</one>, da er einen Bruch in einem <one>Ds-Locus</one> auslösen kann.
784
+ - What is <one>a suppressor mutation</one>? This is a genetic change that <one>supresses the effect of another mutation</one>. URL: https://en.wikipedia.org/wiki/Suppressor_mutation
785
+ - Wieso haben <one>Alkaptonurie-Patienten</one> oft dunkle Ohren? Die <one>schwarzen Oxidationsprodukte</one> neigen dazu, sich in <two>knorpeligen Körperregionen</two> anzuhäufen.
786
+ - Which <one>protein</one> <two>detects maltose</two>? <one>MalT</one>. URL: https://en.wikipedia.org/wiki/Maltose-binding_protein#Control_of_expression
787
+ - The <one>Alu-element</one> is derived from ...? The <one>7 SL RNA gene</one>.
788
+ - Give an example for a gene in the human genome that is <one>an endogenous retroviral element</one>. A: <one>Syncytin-1</one>. URL: https://en.wikipedia.org/wiki/Syncytin-1
789
+ - <one>Eukaryotic mRNAs</one> are modified by the addition of a cap to the 5-prime end. How do we write this cap in chemical shorthand-notation? <one>m7GpppN cap structure</one>.
790
+ - Es gibt <one>drei Stopcodons</one>. Eines davon ist <two>sick</two>. Welches ist es und was heisst das? A: <one>UAA</one> ist <one>sicker</one> als die anderen beiden Stoppcodons da hier <orange>tRNAs öfters mutiert vorliegen</orange> und dieses Stopcodon nicht richtig interpretieren. Sehr lange Proteine sind daher die Folge, die Zelle ist daher <three>sicker</three>.
791
+ - Was ist der <one>Genfluss</one>? Dies ist <one>der Allelaustausch zwischen verschiedenen Populationen</one>.
792
+ - In <three>Mycoplasma capricolum</three> kodiert <one>UGA</one> für? Die Aminosäure <one>Tryptophan</one>.
793
+ - <one>DNA</one> can be attached to <three>gold-coated objects</three> via ... ? <one>Thiol</one> (<orange>SH</orange>). SH forms <three>metal thiolate bonds</three>.
794
+ - Was ist das Ziel des <one>ENCODE-Projekts</one>? (1) das <one>menschliche Transkriptom</one> zu identifizieren und zu charakterisieren (2) alle funktionellen Elemente des menschlichen Genoms zu erfassen URL: https://www.encodeproject.org/
795
+ - <one>CAPS</one> are <two>Cleaved Amplified Polymorphic Sequences</two>. Give a short definition and briefly explain how they arise. A: CAPS are polymorphic differences in restriction fragment lengths, caused by SNPs or INDELs that create or abolish restriction endonuclease recognition sites. In other words, CAPS are defined in regards to <one>restriction sites</one> in DNA strands.
796
+ - Nenne drei wichtige <one>Komponenten eines IS-Elements</one>. A: (1) <one>Transposase</one> (2) etwa <one>50 bp inverted repeat</one> (3) <one>5-10 bp direct repeat</one> (Mnemonic: <royalblue>inverted</royalblue> ist länger als <royalblue>direct</royalblue> repeat, vom Namen her)
797
+ - Can we find <one>overlapping genes</one> in the <three>genomes of mammals</three>? Yes.
798
+ - Wie schafft es die Zelle selektiv zwischen Genregionen umzuschalten, wie zum Beispiel beim <one>Imprinting</one>? Mittels <one>Cytosinmethylierung</one>.
799
+ - <one>Wo genau</one> schneidet das <three>Rec BCD-Protein</three> bevorzugt? <two>VOR</two> einer <one>Chi-Sequenz</one> (<one>GCT|GGT|GG</one>).
800
+ - Was sind <one>fixierte Mutationen</one>? Dies sind <one>Mutationen, die weitervererbt werden</one>.
801
+ - When we see <one>many tumor cells suddenly disappearing</one>, what may we typically conclude from this observation? They have <one>undergone Apoptosis</one>.
802
+ - Wie schneiden wir, im Labor, DNA? Geben Sie zwei Beispiele für diese Einheiten, mit der schneidenden Sequenz. A: Mit Hilfe von <one>Restriktionsendonukleasen</one>. (1) <two>EcoRI</two> schneidet an <three>GAATTC</three>. (2) <two>AluI</two> schneidet an <three>AGCT</three>. URL: https://de.wikipedia.org/wiki/Restriktionsenzym
803
+ - The <one>F-Factor</one> has how many different states? Name these states. A: The <one>F-Factor</one> has <two>two states</two>: (1) the <one>plasmid state</one>, and (2) the <one>integrated state</one>.
804
+ - Welche Zustände werden durch den Begriff <one>Aneuploidy</one> in der Genetik abgedeckt? Mehr oder weniger Chromosomen - aber auch <one>Chromosomen mit partiellen Deletionen</one>.
805
+ - Give two examples for <one>informational suppressors</one>. A: These are <one>mutations that suppress</one> e. g. (1) <two>frameshift mutations</two>, or (2) <two>nonsense mutations</two>
806
+ - Nenne alle wichtigen Enzyme und KURZ ihre Tätigkeit bei der Replikation bakterieller DNA sowie maximal 2 wichtige weitere Proteine, zu, in Summe, <cadetblue>7 Punkten</cadetblue>. A: (1) <one>DNA Ligase</one> (2) <one>Primase</one> (3) <one>Helicasen</one> (4) <one>Gyrase</one>/<one>Topoisomerase</one> (5) <one>DNA Pol III</one> (6) <one>DNA Pol I</one> (7) <one>SSB</one>
807
+ - Does the <one>reticuloycte</one> contain <two>mRNA</two>? Yes - <one>early on it does</one> (even after losing its nucleus).
808
+ - In der Genetik was ist der <one>input type</one>? Das ist bei <one>homozygoten Eltern</one> das 1:1 Verhältnis ihrer <one>Allel-Kontribution</one>.
809
+ - How do we call mutations that <one>restore</one> a more wild-type phenotype again? <one>Suppressors</one>. URL: https://en.wikipedia.org/wiki/Suppressor_mutation
810
+ - Energie für <one>RF3</one> (<three>Release Factor 3</three>) stammt ...? Aus <one>GTP</one>. URL: https://en.wikipedia.org/wiki/Release_factor
811
+ - <one>Janaiah</one> made a striking discovery when he discovered something about tumor and normal cells. What technique did he use for this discovery? Classical <one>Northern blotting</one>.
812
+ - What are <one>continuous</one> traits - also give an example. A: Continuous traits show many intermediate forms. Example for such a trait: <one>height in humans</one>.
813
+ - What was <one>DNA Shopping</one> exactly and <two>when</two> did it happen? In the year <violet>2010</violet>, researchers built a <one>synthetic chromosome</one> by buying more than <two>1000 x 1080-base sequences</two> that covered the whole <three>Mycoplasma mycoides</three> genome. (The Mycoides genome has <one>1.211.703</one> nucleotides) URL: https://en.wikipedia.org/wiki/Mycoplasma_mycoides
814
+ - Welche vier Arten der <one>Chromosomenmutationen</one> existieren? Merkslogan: <royalblue>D-I-T-I</royalblue> (1) <one>Deletion</one> (2) <one>Insertion</one> (3) <one>Translokation</one> (4) <one>Inversion</one>
815
+ - <one>Bakterienzellen</one> haben <two>RF3</two> (<three>Release Factor 3</three>). Welche Aufgabe erfüllt dieser Faktor? Dieser Faktor bewirkt die <crimson>Dissoziierung</crimson> der anderen beiden Release Factors RF1 und RF2 (<one>releaser</one>). Dies geschieht unter "GTP-Verbrauch", nachdem ein Peptid synthetisiert wurde.
816
+ - What do we mean with <one>incomplete dominance</one>? This is when the hybrid does not resemble either pure-breeding parent but "resembles an intermediate phenotype".
817
+ - Andere Bezeichnung für die <one>TATA Box</one> in <two>Eukarya</two>? <one>Goldberg-Hogness Box</one>. URL: https://en.wikipedia.org/wiki/TATA_box
818
+ - In der Landwirtschaft: was meinen wir mit <one>genetischer Verarmung</one>? Dies ist die <one>Verminderung der genetischen Diversität im Anbau</one>.
819
+ - Das <one>Abbauprodukt der Purine</one> ist ... ? Die <one>Harnsäure</one>. URL: https://de.wikipedia.org/wiki/Harns%C3%A4ure
820
+ - Why may we apply <one>5-azacytidine</one> in "genetic therapy" and what effect will this have? <one>5-azacytidine</one> can <two>remove methyl groups from DNA</two> - thus, it will <three>globally activate transcription</three>.
821
+ - In der Genetik: nenne eine andere Bezeichnung für <one>NLS</one>? <one>Importmotiv</one>.
822
+ - Wie ist ein <one>lethal allele</one> definiert? A: Ein <one>lethal allele</one> ist ein Allel, das <two>einen Organismus töten kann</two> wenn es in <three>homozygoter Form</three> (also 2 Allele davon) vorliegt. Es handelt sich hierbei meistens um Gene die sehr wichtig sind für einen Organismus. URL: https://en.wikipedia.org/wiki/Lethal_allele
823
+ - <one>FEN1</one> steht für ... ? Die <one>Flap-Endonuklease</one>. URL: https://en.wikipedia.org/wiki/Flap_endonuclease
824
+ - What is the cause for <one>pituitary dwarfism</one> in humans? A <one>deficiency</one> in the <two>human growth hormone</two> (<cadetblue>hGH</cadetblue>).
825
+ - Name a <one>record</one> that the <three>human Alu elements</three> have. A: The <one>Alu elements</one> are <one>the most abundant transposable elements</one> in the <two>human genome</two>.
826
+ - <one>Suppressoren</one> funktionieren nach welchen <three>drei verschiedenen Wirkprinzipien</three>? (1) <one>High copy suppressor</one> (2) <one>Bypass suppressor</one> (3) <one>Interaction suppressor</one>
827
+ - What do we mean with <one>vertical transmission</one>? Genes are simply passed <one>from one generation to the next</one>.
828
+ - Nenne ein <one>chemisches Mutagen</one>, das eine <three>Desaminierung</three> verursachen kann. A: Die <two>salpetrige Säure</two> (<three>HNO₂</three>) kann eine <one>Desaminierung</one> verursachen. URL: https://de.wikipedia.org/wiki/Salpetrige_S%C3%A4ure
829
+ - Gib ein konkretes Beispiel, inklusive des Organismus, für ein genetisches Phänomen das massgeblich durch <one>maternale Faktoren</one> entsteht. A: Die Windungsrichtung des Schneckenhauses von <one>Limnea peregra</one> wird <two>durch maternale Faktoren reguliert</two>.
830
+ - In genetics: what is a <one>repressilator</one>? This is <one>a synthetic biological oscillator</one>, based on repressors. URL: https://en.wikipedia.org/wiki/Repressilator
831
+ - Gib je ein Beispiel an für <one>replicative Transposition</one> und <one>conservative Transposition</one>. A: (1) <royalblue>Conservative</royalblue>: <one>TN10</one>. (2) <royalblue>Replicative</royalblue>: <one>TN3</one>.
832
+ - <one>Transposons</one> are classified into one of three categories, based on ..? <one>How they transpose</one>. URL: https://en.wikipedia.org/wiki/Transposable_element
833
+ - In genetics: what does <one>the concept of colinearity</one> suggest? That a <cadetblue>continuous sequence of nucleotides in DNA</cadetblue> encodes a <one>continuous sequence of amino acids in a protein</one>.
834
+ - Welche <one>center</one> (ausgenommen E, P, A) existieren im prokaryoten Ribosom und wo? (1) In der <two>50S UE</two> finden wir das <one>Peptidyltransferase Center</one>. (2) In der <two>30S UE</two> finden wir das <one>Decoding Center</one>.
835
+ - What is the job of the <three>Cas complex</three> in <one>CRISPR</one>? The "Cas complex" recognizes foreign DNA and integrates a novel repeat-spacer unit at the leader end of the CRISPR locus.
836
+ - <one>2-aminopurine</one> can base pair with? (1) <one>Thymine</one> (<royalblue>T</royalblue>) (2) <one>Cytosine</one> (<royalblue>C</royalblue>) URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC14540/
837
+ - Was genau entsteht wenn die Substanz <one>EMS</one> auf Guanin appliziert wird? <one>6-Ethylguanin</one>, das mit "Thymin" eine Basenpaarung eingehen kann (EMS+Guanin → 6-Ethylguanin).
838
+ - Das <one>Jacob & Monod Operon-Modell</one> entstand wann? <one>1961</one>.
839
+ - Give an example for <one>a threshold trait</one> in mankind. A: <royalblue>Type 2 diabetes</royalblue>. URL: https://en.wikipedia.org/wiki/Diabetes_mellitus_type_2
840
+ - Das eukaryotische Protein <one>RPA</one> zieht welche <three>Endonuclease</three> an? <one>Dna2</one>. URL: https://en.wikipedia.org/wiki/DNA2L
841
+ - <one>Genome Size</one> correlates with ... ? A: The <one>amount of transposons in a genome</one>.
842
+ - Welche zwei <one>dominant traits</one> kann man in der Genetik allgemein unterscheiden? (1) <one>true breeding</one> (2) <one>mixed progeny</one>
843
+ - What are <one>beads on a string</one> structures? This is <two>a strand of DNA</two> with <one>attached nucleosomes</one>.
844
+ - Give an example of where temperature influences the phenotype in plants. A: The <one>evening primrose</one>. At <royalblue>18°C</royalblue> it produces <white>white flowers</white>, at <royalblue>23°C</royalblue> it produces <crimson>red flowers</crimson>. (white-red) URL: https://en.wikipedia.org/wiki/Oenothera
845
+ - <one>Michael Bishop</one> received the nobelprize for what discovery? For the discovery of the <one>cellular origin of retroviral oncogenes</one>.
846
+ - Der <one>Gewebefaktor</one> der Faktor VII zu VIIa konvertiert, ist was für ein Typ? Ein <one>Transmembran-Glykoprotein</one>.
847
+ - Nenne ein Beispiel für eine <one>genetische Symbiose</one> - mitsamt Erklärung, wieso dies eine genetische Symbiose darstellt. A: Das <one>Mitochondrium</one>, und das menschliche Genom, welches für die meisten Proteine im Mitochondrium kodiert.
848
+ - Erkläre das Phänomen <one>phase variation</one> genetisch, an Hand eines Beispieles. A: Das Bakterium <one>Salmonella typhimurium</one> besitzt die für Flagellin kodierende Gene "fliB" und "fliC". Diese Gene können umgeschaltet werden, dank "sequenzspezifischer Rekombination". Dies wiederum invertiert die "H-Region", mit dem Effekt, das das Bakterium verschiedene Typen des Flagellin-Proteins verwenden kann. Antikörper gegen bestimmte Flagellin-Subtypen können so nicht greifen, und dies erlaubt es Salmonella schnell umzuschalten und dadurch die Immunabwehr effektiv zu unterlaufen. URL: https://en.wikipedia.org/wiki/Phase_variation
849
+ - Gibt es Ausnahmen von der <one>mendelschen Uniformitätsregel</one>? Ja - bei <one>Genomic Imprinting</one>.
850
+ - Wo genau alkyliert <one>EMS</one> in der DNA? (1) Ketogruppe an <one>Guanine C-6</one> (2) Ketogruppe an <one>Thymin C-4</one>
851
+ - <one>Springende Retro-Transposons</one> ähneln ...? <one>RNA-Viren</one>.
852
+ - What do we mean with the term <one>coding strand</one>? When referring to <two>DNA transcription</two>, the coding strand is the DNA strand which has the <one>same base sequence as the RNA transcript produced</one> (with Uracil being replaced with Thymidines in the <orange>dsDNA</orange>).
853
+ - Give an example of a <one>suppressive organelle mutation</one>. A: The <one>petite mutation</one> in budding yeast (aka <royalblue>Saccharomyces cerevisiae</royalblue>), also called <one>suppressive petites</one>. URL: https://en.wikipedia.org/wiki/Petite_mutation
854
+ - <one>RNA-Polymerase</one> in Prokarya: welche Subunit bindet DNA? Die <one>Beta-Strich Subunit</one> (<one>beta'</one>) bindet DNA.
855
+ - Das <three>Luria-Delbrück-Experiment</three>, das <one>1943</one> stattfand, hat was herausgefunden? Das Mutationen in Bakterien <one>zufällig erfolgen</one> und <one>ungerichtet</one> sind.
856
+ - Nenne zwei Hauptfunktionen von <one>Histon H1</one>. A: (1) <one>Histon H1</one> verschließt die Ein- und Austrittstelle der DNA am Histon-Oktamer (2) <one>Histon H1</one> ist für eine "dichtere Packung des Chromatins" verantwortlich, zur Überführung von der <two>10nm Faser</two> in die <two>30nm Faser</two> (<one>10nm→30nm</one>).
857
+ - Was sind <one>knock-in</one> Lebewesen und welchen Vorteil haben sie? Klassischerweise <one>Mäuse</one> mit einem menschlichen Gen, das "reingeknocked" wurde. Der Vorteil ist das man Effekte von Medikamenten besser untersuchen kann. URL: https://en.wikipedia.org/wiki/Gene_knockin
858
+ - Which <three>three general steps</three> occur in (natural) <one>DNA Synthesis</one>? (1) <one>chain initiation</one> (2) <one>chain extension</one> (3) <one>chain termination</one>
859
+ - In welchem Jahr wurden <one>Repressor-Proteine</one> erstmals isoliert? <one>1967</one>.
860
+ - In der Genetik: was ist ein <one>Haplotyp</one>? Ein Haplotyp bezeichnet eine Reihe von <one>Allelen</one>, die gemeinsam vererbt werden. URL: https://de.wikipedia.org/wiki/Haplotyp
861
+ - Give two examples for <one>non-informational RNA molecules</one>. A: (1) <one>ribosomal RNAs</one> (<one>rRNAs</one>) (2) <one>transfer RNAs</one> (<one>tRNAs</one>)
862
+ - Mäuse haben das Gen <cadetblue>Agouti</cadetblue> (A/a ist möglich). Was ist die Fellfarbe jeweils bei <one>a</one>/<one>a</one> und <one>A</one>/<one>a</one>? (1) <one>a</one>/<one>a</one> (rezessiv) mit <two>schwarzem Fell</two> (2) <one>A</one>/<one>a</one> (dominant) ergibt hingegen ein <two>braunes Fell</two>
863
+ - Warum lieben Genetiker <one>haploide Systeme</one>? Da man in diesen Systemen sehr einfach <one>rezessive Mutationen</one> nachweisen kann.
864
+ - Was sind <one>Concatemers</one>? Dies sind <one>mehrere Kopien des Phagengenoms</one>, tandemartige Repeats. Die Schnitte erfolgen jeweils an den <two>cos-sites</two>. URL: https://en.wikipedia.org/wiki/Concatemer
865
+ - In <one>wässriger Lösung</one> sehen wir bei dsDNA n Nucleotide / Umdrehung? Und bei X-Ray? <one>10.4</one> beziehungsweise <two>10</two>.
866
+ - What is a <one>helitron</one>? A <one>helitron</one> is <two>a class II transposon</two> found in eukaryotes that is thought to replicate by a so-called "rolling-circle" mechanism. URL: https://en.wikipedia.org/wiki/Helitron_%28biology%29
867
+ - Wofür steht die Abkürzung <one>CTCF</one> in der Genetik? <one>Chromosomal transcription control factor</one>. URL: https://en.wikipedia.org/wiki/CTCF
868
+ - What is meant with the term <one>cis-regulation</one>? When <one>the elements for regulation</one> happen to be on the same DNA strand.
869
+ - Was ist <one>Syntenie</one>? Wenn Gene in unterschiedlichen Spezies <one>die selbe Anordnung</one> aufweisen.
870
+ - <one>Nitrous acid</one> hat welchen Effekt auf Nukleotide? Es kann eine sogenannte <one>Transition</one> verursachen, zum Beispiel von <two>C → U</two>.
871
+ - <one>Welches Antibiotikum</one> täuscht eine <two>Aminoacyl-tRNA</two> vor? <one>Puromycin</one>. URL: https://de.wikipedia.org/wiki/Puromycin
872
+ - Welche zwei wichtige zelluläre Rollen besitzt <one>RecA</one>? A: (1) <one>RecA</one> spielt eine wichtige Rolle bei der <two>homologen (allgemeinen) Rekombination</two>. (2) <one>RecA</one> induziert weiters den <two>SOS Repair Pathway</two>.
873
+ - What is meant with <one>pF508delta</one>? <one>In a protein</one> (<royalblue>p</royalblue>), <lightgreen>delete phenylalanine</lightgreen> (== <peru>delta</peru>) at <one>position 508</one>.
874
+ - Was genau ist die <one>Exaptation</one>? Die Tatsache das <one>genomische Entwicklungsschübe</one> eine Vielzahl neuer Gene und Genkombinationen hervorbringen, die weit über das hinausgehen was zum besseren Überleben unmittelbar notwendig wäre. URL: https://de.wikipedia.org/wiki/Exaptation
875
+ - Wie arbeiten <one>Typ-I Restriktionsendonucleasen</one>? Sie schneiden etwa <two>1000 bp versetzt</two> in 3' Richtung der Erkennungssequenz (also <one>downstream</one>).
876
+ - Name three <one>challenges</one> that are associated with <three>gene therapy</three>. A: (1) Stable Integration (2) Delivery to many cells (3) Avoid rejection by the immune system
877
+ - Wofür steht die Abkürzung <one>TALENs</one>? <one>Transcription Activator-Like Effector Nucleases</one>. URL: https://en.wikipedia.org/wiki/Transcription_activator-like_effector_nuclease
878
+ - Warum sind die <one>P-Elemente</one> unterschiedlich gross? Da es oft zu <one>Deletionen</one> kam, vor allem <two>im mittleren Bereich</two> (welcher für die <one>Transposase</one> kodiert).
879
+ - Was sind <one>Basenanaloga</one>? Das sind Moleküle die in ihrer Struktur "Purin" und "Pyrimidinbasen" ähneln.
880
+ - In genetics: what do we mean with <one>complementary DNA</one> (<three>cDNA</three>)? This is <one>DNA</one> synthesized from a <one>single stranded RNA</one>, such as a messenger RNA (<cadetblue>mRNA</cadetblue>) or a microRNA (<cadetblue>miRNA</cadetblue>). URL: https://de.wikipedia.org/wiki/cDNA
881
+ - The fantastic enzyme <one>Polynucleotide phosphorylase</one> has which two major functions? (1) It has a <one>3' terminal polymerase</one> activity (2) It also has a phosphorolytic <one>3'→5' exoribonuclease</one> activity
882
+ - Was fehlt den <one>LINES</one>? Die <one>5' LTR</one> und die <one>3' LTR</one>.
883
+ - What is the <one>reeler mouse</one>? This is <one>a mouse mutant</one> with <two>motor coordination problems</two>, due to a mutation in the "RELN gene". No Reeling is produced as a consequence. URL: https://en.wikipedia.org/wiki/Reeler
884
+ - Was bedeutet der Begriff <one>sublethal</one>/<one>sublethality</one>? A: Ein Allel das in <orange>homozygoter Ausprägung</orange> den Tod eines Organismus hervorrufen kann, dies jedoch zwischen 0-100% dieser Fälle tut. Mit anderen Worten, die "Tödlichkeit" wird in einigen, aber nicht in allen betroffenenen Homozygoten manifest.
885
+ - <one>Incomplete dominance</one> gives rise to ...? <one>Intermediate phenotypes</one>.
886
+ - Das menschliche <one>AB0 Gen</one> hat <two>n Exons</two>? <royalblue>7</royalblue>.
887
+ - Welche Person entdeckte die <one>Stop-Codons</one>? <one>Sydney Brenner</one>. URL: https://en.wikipedia.org/wiki/Sydney_Brenner
888
+ - Give <one>two reasons</one> as to why a cell may fail to transition from the <two>G1 phase</two> into the <two>S phase</two>. A: (1) <one>too little growth</one> (2) <one>damaged DNA</one>
889
+ - Nenne zwei allgemeine Möglichkeiten eines <one>distalen, regulatorischen Elements</one> in der <two>Genetik</two>. A: (1) <one>Enhancer</one> (2) <one>Silencer</one>
890
+ - Was gilt für die meisten <one>sterile mutations</one> beim Menschen? Sie betreffen zumeist <one>nur Männer</one> oder <one>nur Frauen</one>; <two>betreffen die Geschlechter also unterschiedlich stark</two>.
891
+ - Nenne die <one>ungewöhnlichste Base in tRNA</one>. A: <one>Inosin</one>. URL: https://en.wikipedia.org/wiki/Inosine
892
+ - Genetische Ursache für den <one>Bombay Phänotyp</one> ... ? Fehlende <one>Fucose Transferase</one> (<two>fut-1</two>).
893
+ - Was bezeichnen wir mit <one>Penetranz</one> in der Genetik? Dies ist <one>die prozentuale Wahrscheinlichkeit</one>, mit der ein bestimmter Genotyp zur Ausbildung des dazugehörigen Phänotyps führt.
894
+ - What is meant with the term <one>genethics</one>? This term describes <one>the ethical problems that exist in modern genetics</one>.
895
+ - Das <one>MERC-Gen</one>: was heisst <two>MERC</two>? <one>Maternally expressed hnRNPC-related gene</one>.
896
+ - Differ between <one>molecular complementation</one> and <one>genetic complementation</one>. A: (1) <one>molecular complementation</one>: Introduction of the wild type gene on a plasmid abolishes the phenotype (2) <one>genetic complementation</one>: After mating, the phenotypes of recessive mutations will disappear, as they become heterozygous over wild type. If the mutations are in the same gene, their phenotype will typically not disappear. (Exception: intragenic complementation).
897
+ - Why was <one>Tetrahymena</one> chosen for telomere research? Because Tetrahymena has <one>40.000 Telomeres</one>.
898
+ - Name two <one>natural insertional mutagens</one>. A: (1) <one>viruses</one> (2) <one>transposons</one>
899
+ - Give an example for a <one>partial dominant allele</one>. A: The <cadetblue>Snapdragon</cadetblue>. Flower colour can be <orangered>red</orangered> / <pink>pink</pink> / <white>white</white>, Genotype can be WW/Ww/ww, where W is partially dominant over w.
900
+ - In order for <one>reverse genetics</one> to work, what must be the case? We must know the <one>complete genome sequence</one>.
901
+ - Why the name <one>monopolin</one>, in genetics? Because Monopolins ensure that sister kinetochores are <one>mono-oriented</one> in meiosis I.
902
+ - Why are <one>Protamines</one> used in sperm? Due to the <one>arginine-rich Protamines</one>, DNA can be <two>packed more tightly</two> than in normal histone-associated DNA.
903
+ - In der Genetik: was erzeugt die <lightgreen>Replikaplattierung</lightgreen>? Eine <one>Kopie der Ausgangskulturplatte</one>, auf einen <two>Membranfilter</two>.
904
+ - What are <one>Episomes</one>? <royalblue>Episomes</royalblue> are plasmids that can replicate freely; and they are also <one>able to integrate into the bacterial chromosome</one>.
905
+ - Warum wird die <one>Kombinationszüchtung</one> in der Pflanzenzucht verwendet? Die <one>Kombinationszüchtung</one> wird zur <two>Erzeugung von genetischer Variabilität</two> verwendet.
906
+ - What is <one>compound heterozygosity</one>? This is when one has two heterogeneous recessive alleles at a particular locus that can cause genetic disease. That is, an organism is a compound heterozygote when it has two recessive alleles for the same gene, but with those two alleles being different from each other - for instance, when both alleles might be mutated, but at different locations.
907
+ - Welche Gemeinsamkeiten und Unterschiede weisen <one>Ty1 Elemente</one> verglichen mit <one>Retroviren</one> auf? Beide besitzen <one>LTR</one>/<one>gag</one>/<one>pol</one>. Der Retrovirus hat darüber hinaus noch <two>env</two>, Ty1 hingegen hat kein <two>env</two>.
908
+ - How is <one>twist</one> defined in genetics? The number of helical turns of one strand about the other.
909
+ - How are <one>composite transposons</one> created? When two IS elements insert near each other.
910
+ - <one>cDNA</one> ist eine Kopie einer mRNA, mit einem Nachteil. Meist fehlt ein Teil. Welcher und warum? A: Das 5 Strich Ende der cDNA entspricht selten auch dem 5 Strich Ende der mRNA. cDNA wird meist von einem Primer aus hergestellt, der nicht von der reversen Transkriptase kopiert werden kann, da sie sich an seine Seite anheftet, um die mRNA transkribieren zu können.
911
+ - Nenne die vier <one>basenmodifizierenden Agenzien</one>. A: (1) alkylierende Agenzien (2) depurinierende Agenzien (3) desaminierende Agenzien (4) <one>hydroxylierende Agenzien</one>
912
+ - In der Genetik: was bezeichnet der <one>C-Wert</one> (<two>C-Value</two>)? Der C-Wert bezeichnet den haploiden, nicht-replizierten DNA Gehalt einer Zelle, in bp. Der C-Wert verschiedener Organismen kann grosse Unterschiede aufweisen.
913
+ - Was sind <one>moderate stringency conditions</one> und wo sind diese wichtig? A: <one>Wenn die DNA nicht völlig gepaart vorliegt</one> sondern <two>ein Mismatch erlaubt ist</two>. Ist zum Beispiel bei <three>Zooblots</three> wichtig.
914
+ - What steps does the <one>forward genetics approach</one> include? From <one>mutation</one> through <one>phenotype</one> to the <one>gene</one>.
915
+ - Wie läuft <one>eine Mutantensuche</one> bei letalen Mutationen in Hefe ab? <one>Rezessive letale Mutationen</one> werden in der haploiden Hefe als sogenannte <two>konditionale Mutanten</two> isoliert.
916
+ - Give an example when a <one>complementation test</one> is not informative. A: For instance, when <one>intragenic complementation</one> occurs.
917
+ - What do we mean with <one>a single-strand nick</one> in DNA? When a bond is cleaved in one DNA strand - but the other DNA strand remains intact.
918
+ - Definiere den Begriff <one>imperfect duplex</one>. A: Dies ist eine "DNA Duplex", die nicht ganz basengepaart vorliegt.
919
+ - Was meinen wir mit <one>maternal effect</one>? Dies ist eine Vererbung einer Proteinkomponente von der Mutter (zum Beispiel aus dem Ovar) an die Oozyte.
920
+ - Wie unterscheidet sich die <one>homologe Rekombination</one> allgemein von der <one>nichthomologen Rekombination</one>? Bei der <one>nichthomologen Rekombination</one> muss die DNA-Sequenz nicht übereinstimmen.
921
+ - Welche Sequenzfolge haben <one>Dna-A Boxen</one> in <two>E. coli</two>? <one>TTA|TCC|ACA</one>. URL: https://en.wikipedia.org/wiki/Circular_bacterial_chromosome#Initiation
922
+ - What is <one>synthetic lethality</one>? Two influences on a cell are called <three>synthetically lethal</three>, if they <one>kill the cell when in combination</one> - but each <two>individual influence</two> does not on its own.
923
+ - Wofür steht die Abkürzung <one>Dam enzymes</one>? <one>dAdenin-Methyltransferase</one>.
924
+ - Was genau ist mit dem Begriff <one>synthetic lethality</one> gemeint? Ein Gen für sich alleine genommen führt nicht zum Tod der Zelle - aber zwei verschiedene Gene (<one>Allele</one>) kombiniert schon.
925
+ - What is meant with the term <one>euploid</one>? Euploidy is the state of a cell having an integral multiple of the monoploid number. In other words, "multiples of the basic monoploid chromosome set". (Normally we refer to the 2n-state as "the euploid state" though). URL: https://en.wikipedia.org/wiki/Ploidy#Euploidy
926
+ - Die <one>Korrekturlesefunktion</one> der <two>DNA-Polymerase I</two> liegt <three>in</three> welchem funktionellem Teil? Der <one>3'→5' Exonuclease</one>.
927
+ - What is a <one>leaky mutation</one>? This is a mutation where a partial activity still remains.
928
+ - The <one>eukaryotic 7S DNA</one> can base pair with ...? With the <one>mtDNA L-strand</one>, thus <two>displacing the H-strand</two>.
929
+ - <one>DNA Glycosylases</one> cleave where? At <one>Uracil</one> nucleotides, at their <one>glycosidic bond</one>.
930
+ - Was sind die <one>Ersatz-Histone</one>? Dies sind Histone, die <one>unabhängig von der S-Phase gebildet werden</one> (wie <two>H1o</two>, <two>H2.AX</two>)
931
+ - Best known case of <one>DNA loss</one>? The <one>development of the mammalian red blood cell</one>; the area containing the nucleus is pinched off (and then destroyed).
932
+ - In <cadetblue>Recombineering</cadetblue>: which protein is the most important one? The <one>Beta protein</one>, a <two>ssDNA annealing protein</two>.
933
+ - How to perform <one>phage complementation</one>? We make use of a <one>mixed infection</one>.
934
+ - Was muss passieren damit der <one>Initiationsfaktor IF3</one> abfallen kann? <three>Zwei Komponenten müssen andocken:</three> (1) der "Initiationsfaktor fMet-tRNA" (2) die "mRNA"
935
+ - How do <one>piRNAs</one> work? They <one>form RNA-protein complexes</one> through interactions with so-called <royalblue>piwi proteins</royalblue>.
936
+ - Wie wirken <one>chaotrope Reagenzien</one> auf <two>DNA</two>? Diese Reagenzien fördern das <one>Denaturieren der DNA</one>; sie zerstören also die DNA Doppelhelix. Es sind dies vor allem <two>OH-Verbindungen</two>.
937
+ - In genetics: what did the <one>multifactorial hypothesis</one> propose? <one>Continuous traits</one> are governed by a combination of multiple Mendelian loci, each with a small effect on the traits and environmental factors.
938
+ - What is an <one>unnatural base pair</one>? This is <one>a designed subunit of DNA</one>, which was created in a laboratory and does not occur in nature.
939
+ - Was ist eine <one>monogene Erkrankung</one>? Diese Erkrankung wird durch eine oder mehrere Mutationen <one>in einem einzigen Gen</one> verursacht.
940
+ - What do we mean with the <one>retro-world</one>? This is <royalblue>the collection of DNA sequences</royalblue> derived from <one>reverse transcription</one>.
941
+ - Was ist eine <one>neutrale Mutation</one>? Dies ist eine Mutation, die <crimson>nicht</crimson> die Genproduktion betrifft.
942
+ - Give one example for <one>a regulatory nucleotide</one>. A: <royalblue>Cyclic AMP</royalblue> (<one>cAMP</one>). URL: https://en.wikipedia.org/wiki/Cyclic_adenosine_monophosphate
943
+ - Name one drawback of <one>recombineering</one>. A: The <one>target DNA</one> must be <royalblue>actively replicating</royalblue>.
944
+ - Was ist mit dem Begriff <one>Hemizygotie</one> gemeint? Wenn ein bestimmtes Gen (beziehungsweise ein bestimmtes Allel) nur einmal vorkommt in einem ansonsten diploiden Organismus.
945
+ - Explain the main difference between <one>genotype frequencies</one> and <one>allele frequencies</one>. A: (1) <one>Allele frequencies</one> refer to "a haploid set of information". (2) "Genotype frequencies" refer to "a diploid set of information", respectively the amount of chromosome sets in that given genome.
946
+ - Mechanistisch gesehen: was macht das Enzym <one>Dnmt-3</one>? <one>Überträgt Methylgruppen</one> auf die Cytosine in CpG-Dinucleotidfolgen.
947
+ - Wie lange sind die Terminationssequenzen in <one>Prokaryoten</one>? Etwa <one>40bp</one>.
948
+ - <one>Menschen ohne Rhesusfaktor</one> - <two>weltweiter Anteil</two>? Etwa <cadetblue>15%</cadetblue> der Gesamtbevölkerung, zumindest in Europa und den USA. In Afrika ist der Anteil an Menschen ohne Rhesusfaktor viel geringer. URL: https://de.wikipedia.org/wiki/Rhesusfaktor
949
+ - Lange Bezeichnung für die <one>Telomerase</one>? <one>Telomere terminal transferase</one>.
950
+ - How to <one>block</one> the initial step of the <two>uracil base excision repair pathway</two>? Add the <one>uracil DNA glycosylase inhibitor protein</one>.
951
+ - <one>Tsix</one> auf dem X-Chromosom ist wofür verantwortlich? Für die <one>Paarung der X-Chromosomen</one>.
952
+ - What happens if cells are supplied with <one>Purvalanol</one>? The cells will be <one>arrested</one> in the <one>G2 phase</one>. (Purvalanol is a <one>G2-stopper</one>; <one>G2-arrest</one>)
953
+ - What do we mean with the term <one>DNA methylation</one>? This is the <one>covalent attachment</one> of a <royalblue>methyl group</royalblue> to the <one>C5 position of cytosine residues</one> in <royalblue>CpG dinucleotide sequences</royalblue>.
954
+ - <one>Mitochondriale DNA</one> hat <two>mtDNA</two>, aber wo genau? Im <one>Mitochondrien-Matrix-Raum</one>.
955
+ - The <one>Tc1 element</one> is <two>a DNA transposon</two> that can be found in <violet>C. elegans</violet>. How long is it there? It is <skyblue>1610 base-pairs</skyblue> long.
956
+ - In genetics: what exactly is <one>C</one>? This is <orange>the haploid amount of DNA in the genome</orange>.
957
+ - In molecular genetics: what is <one>dsx</one> and what is <two>its functional role</two>? <one>Doublesex</one> is a gene that plays an important role in determining sex in Drosophila. When expressed, this primary RNA transcript is alternatively spliced into two different mRNAs. To give an example, the female genitals will only develop if "dsx-female" is present. URL: https://en.wikipedia.org/wiki/Doublesex
958
+ - Was sind <one>meristische Merkmale</one>? Dies sind Merkmale, bei dem man die Phänotypen durch Zählung ganzer Zahlen erfasst.
959
+ - Wie wirkt <one>Methotrexat</one>? Es hemmt das Enzym <one>Dihydrofolat-Reduktase</one>, einer Komponente des Syntheseweges für Nucleotide, und tötet deswegen Zellen die schnell wachsen.
960
+ - In <one>natural DNA synthesis</one>: what part is <two>rate limiting</two>? The <one>initial binding</one> of polymerase to the primer:template junction is the rate-limiting part for DNA-synthesis.
961
+ - How was <one>EcoRI</one> discovered? It was discovered because <one>several E. coli strains turned out to be resistant against phages</one>.
962
+ - What does a <one>dormant origin</one> mean? Many replication origins that are licensed by loading MCM2-7 complexes during G1 are normally not used. They are thus called "dormant origins".
963
+ - Give <one>three examples</one> for <two>intercalating agents</two>. A: (1) "acridine orange" (2) "proflavin" (3) <one>ICR compounds</one>
964
+ - Anderes Wort für <one>p53</one>? <one>Rad3-Protein</one>. URL: http://www.uniprot.org/uniprot/P06839
965
+ - What do we mean with <one>a preset gene</one>? Preset genes are those in which the binding sites for trans-acting factors are accessible prior to activation.
966
+ - Name <one>four modes of genetic innovation</one>. A: (1) Gene Duplication (2) Intragenic Mutation (3) DNA-Segment Shuffling (4) <one>Horizontal Transfer</one>
967
+ - Allgemein - wo finden wir <one>SECIS Elemente</one>? Gleich nach dem <one>UGA-Codon</one> (<royalblue>UGA-SECIS</royalblue>).
968
+ - Give another term for <one>housekeeping genes</one>. A: <one>Constitutive genes</one>.
969
+ - Wer entdeckte das <royalblue>F' Plasmid</royalblue> im Jahre <one>1959</one>? <brown>Zwei Personen</brown>: (1) <one>Francois Jacob</one>(2) <one>Edward Adelberg</one>
970
+ - Was besagt die <one>quantitative Genetik</one>? Wie sich Gene in einem Individuum, aber auch in einer Population, gegenseitig beeinflussen. Mit anderen Worten, welche Gene in welchen Kombinationen gehäuft auftreten und ob sich dadurch Selektionsunterschiede bedingen.
971
+ - Was meinen wir mit dem, etwas altmodischen Begriff, <one>Genkartierung</one>? Dies ist <one>die Bestimmung der Lage von Genen im Genom</one> - und auf Chromosomen.
972
+ - Was ist die <one>Maintenance Methylation</one> und wer führt sie durch? Die "Desoxyribonucleinsäuremethyltransferase1" (DNMT1) führt die "Maintenance Methylation" durch. Sie wirkt bei der somatischen Mitose, indem sie hemimethylierte DNA nach der Replikation methyliert. Sie fügt eine Methylgruppe an die Position 5 von Cytosine und an die Position 6 des Adenine Ring hinzu. Diese Modifikation ist vererbbar.
973
+ - What do we mean with the <one>end-replication problem</one>? Chromosomes would become shorter with each new generation - and would eventually destabilize.
974
+ - Wie heisst der <one>grüne Knollenblätterpilz</one> und was produziert er, das wie als <two>Zellgift</two> wirkt? <one>Amanita phalloides</one>. "Alpha-Amanitin", ein <royalblue>Amatoxin</royalblue>, hemmt die menschliche RNA-Polymerase II und III. URL: https://en.wikipedia.org/wiki/Amanita_phalloides#Toxicity
975
+ - How do <one>microRNA</one> work? They silence by <one>binding to complementary mRNA</one>.
976
+ - Can we <one>isolate synthetic lethal mutations</one>? No. Well, we can, and this explains the term <royalblue>synthetic</royalblue>. We need to synthesize a strain with two mutations that have been characterized independently. Using conditional mutants in one of the genes makes it possible to construct a strain with the two alleles under "permissive conditions", and then test the phenotype under the "nonpermissive condition".
977
+ - What is <one>a constitutive mutant</one>? This is a mutant in which the target gene (or genes) is (are) always transcribed.
978
+ - Within the <one>Initiation process</one> of <two>DNA-Replication</two>, name its four steps. A: (1) Ori-Recognition: binding of ORC to the origin (2) DNA-Melting (3) DNA-Unwinding: requires helicase (4) Recruitment of replication factors, such as DNA polymerases and single-stranded DNA-binding proteins (<royalblue>SSBs</royalblue>)
979
+ - Was ist <one>Homogamie</one>? Homogamie bezeichnet <one>die Ähnlichkeit zweier Sexualpartner</one> bei Menschen und Tieren. Der Partner wird also "nach ähnlichen Kriterien" ausgesucht. URL: https://de.wikipedia.org/wiki/Homogamie
980
+ - Warum ist die <one>Telomer-Haarnadelschleife</one> wichtig? Sie stellt eine <violet>3' OH Gruppe</violet> bereit, die als Substrat für die DNA-Polymerase I dienen kann.
981
+ - Die <one>WRN-Helikase</one> kodiert für ein Protein mit n Aminosäuren? Mit <one>1432 Aminosäuren</one>. URL: https://en.wikipedia.org/wiki/Werner_syndrome_helicase
982
+ - What is meant with the phrase <one>lactase persistence</one>? This is when <royalblue>lactase activity</royalblue> persists at a high level throughout adult life. This enables them to <one>digest lactose as adults</one>.
983
+ - Why is the <one>translesion DNA polymerase</one> considered so great an enzyme? Because <one>it can bypass distortions in the DNA template</one>, at the cost of more errors.
984
+ - Was ist die <one>Konkordanz</one> in der Genetik? Dies ist die Ähnlichkeit des <one>Phänotyps</one> mit dem jeweiligen <one>Genotyp</one>, in Form der <orange>prozentualen Wahrscheinlichkeit</orange>. URL: https://de.wikipedia.org/wiki/Penetranz_(Genetik)#Konkordanz_und_Diskordanz
985
+ - What is the <one>ping pong</one> mechanism for <two>piRNAs</two>? This is <one>a biogenesis mechanism for piRNAs</one>, in wherein primary piRNAs recognise their complementary targets and cause the recruitment of piwi proteins. This then results in the cleavage of the transcript at a point ten nucleotides from the 5-prime end of the primary piRNA, producing the secondary piRNA. The ping pong cycle acts only at the level of transcription.
986
+ - What do <one>maintenance DNA methyltransfer enzymes</one> recognize? They recognize <one>hemi-methylated segments of DNA</one>.
987
+ - <one>RuvA</one> facilitates ... ? <royalblue>Branch migration</royalblue> during recombination, in <one>E. coli</one>.
988
+ - The <cadetblue>RecBCD protein</cadetblue> typically binds to ... ? A <one>DNA double-stranded break</one>.
989
+ - Was meinen wir mit einer <one>dynamischen Mutation</one>? Diese sind <one>instabile, repetitive DNA-Sequenzen</one>.
990
+ - Name the two main enzyme families that constitute the <one>homing endonucleases</one>. A: (1) <one>intron endonucleases</one> (2) <one>intein endonucleases</one>
991
+ - Was genau besagt die <one>Uniformitätsregel</one> in der Genetik? Sie besagt das, wenn man zwei verschiedene reine Rassen einer Art kreuzt, so erscheinen alle Nachkommen in der F1-Generation unter sich gleich; eben uniform.
992
+ - In <one>Recombineering</one>: we wish to avoid one bacterial host system. Which one? The <one>methyl-directed mismatch repair system</one>, which normally removes more than 99% of the incorporated changes.
993
+ - One of the main motivations for <one>QTL detection in domestic animals</one> is ...? <one>Marker Assisted Selection</one> (<royalblue>MAS</royalblue>).
994
+ - The beauty of inserting transposons? Because their sequence is known, the <one>mutant gene</one> can be located - and subsequently sequenced.
995
+ - Name another expression for the term <one>quantitative traits</one>. A: <one>Complex traits</one>.
996
+ - In der Genetik: wofür steht die Abkürzung <one>MECP2</one>? <one>Methyl CpG-binding domain protein 2</one>. URL: https://en.wikipedia.org/wiki/Methyl-CpG-binding_domain_protein_2
997
+ - What do we mean with a <one>preset promoter</one>? This is a promoter that is <one>already prepared for initiating transcription</one>.
998
+ - Warum war <one>Neurospora</one> in der Genetik so wichtig? Man konnte dank Neurospora "auxotrophe Mutanten" isolieren und analysieren. Dies war wichtig da man hier einen niederen Eukaryoten untersuchen konnte.
999
+ - How does the <one>spindle assembly checkpoint</one> work? It blocks the destruction of cyclin B - unless all chromosomes are properly aligned.
1000
+ - What do we mean with the term <one>phenotypic plasticity</one>? This is the ability of an organism to change its phenotype in response to changes in the environment.
1001
+ - What is <one>the worst type of point mutation</one>? A <one>regulatory-region mutation</one>: no mRNA and thus no protein may be the result from such a mutation.
1002
+ - Nenne einen Organismus der <one>kein STOP-Triplett</one> hat. A: <one>Condylostoma magnum</one>. URL: https://en.wikipedia.org/wiki/Condylostoma
1003
+ - Define the <cadetblue>minimalist genome</cadetblue>. A: The <one>minimum complement of genes</one> necessary for a living cell.
1004
+ - Which gene controls the human <one>ABO blood group</one>? The <one>ABO glycosyltransferase gene</one>. URL: https://en.wikipedia.org/wiki/ABO_%28gene%29
1005
+ - What is the <one>exome</one>? This is <one>the sequence of all exons</one>.
1006
+ - Nenne 5 Anforderungen an einen Träger genetischer Information, die von (ds)DNA erfüllt werden. A: (1) DNA kann die Information speichern (2) DNA kann vermehrt werden und somit auch an Nachkommen weitergeben werden (Replikation) (3) DNA kann Information zur Verfügung stellen, über mRNA (Expression) (4) (ds)DNA kann wiederhergestellt wird (Reparatur) (5) DNA kann variieren (Mutation / Rekombination)