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,35 @@
1
+ # =========================================================================== #
2
+ # === Apoptosis
3
+ # =========================================================================== #
4
+
5
+ - Is <one>decreased apoptosis</one> a problem? It may potentially <one>contribute to more tumors</one>.
6
+ - Name a protein that triggers chromatin condensation and DNA fragmentation in a cell in order to induce programmed cell death. <one>AIF</one>: <two>Apoptosis Inducing Factor</two>. URL: https://en.wikipedia.org/wiki/Apoptosis-inducing_factor
7
+ - <one>CAD</one> (Caspase-activated DNase) is usually kept inactive by ... ? <one>ICAD</one>.
8
+ - <one>CAD</one> is a deoxyribonuclease that causes DNA fragmentation during apoptosis. What does this abbreviation stand for? <one>Caspase-activated DNase</one>.
9
+ - Welche Enzyme spielen eine wichtige Rolle bei der "Apoptose"? Die proteolytisch wirksamen <one>Caspasen</one>, "cysteine-aspartic Proteasen". URL: https://en.wikipedia.org/wiki/Caspase
10
+ - How does <violet>eIF4E</violet> relate to apoptosis? It <one>can reduce apoptosis in general</one>.
11
+ - Name a major class of intracellular regulators of Apoptosis in Mammals. A: The <orange>Bcl2 family of proteins</orange>.
12
+ - How do we call "physiologic instances" of regulated cell death? PCD: aka "programmed cell death".
13
+ - Der Fas-Ligand FasL ist beim intrinsischem oder beim extrinsischem Apoptoseweg beteiligt? Beim "extrinsischem Apoptoseweg".
14
+ - Is "alternative splicing" linked to apoptosis? Yes, to some extent.
15
+ - In regards to Apoptosis, what does "SMACs" mean? SMAC are "second mitochondria-derived activator of caspases".
16
+ - Nenne 3 Wege wie die Apoptose ausgelöst werden kann. A: (1) "extrinsisch" (rezeptor-abhängig) (2) "intrinsisch" (mitochondrien-abhängig) (3) Granzym/Perforin-Weg
17
+ - Name something or someone who may wish to avoid apoptosis. A: A virus that infects a cell.
18
+ - Was bedeutete das Wort "Apoptose" in der Antike? Man beschrieb damit den "Fall des Laubes im Herbst".
19
+ - In the human body, how many cells die per day by apoptosis? 10 ** 10 cells (10 million cells / day).
20
+ - In Apoptosis, what does "DISC" mean? "Death-induced signaling complex".
21
+ - Es gibt die "Fas-vermittelte Apoptose". Nenne ein anderes Wort hierfür. A: CD95-vermittelte Apoptose.
22
+ - Bei der Apoptose, was heisst "CAD"? CAD - dies sind die "Caspase aktivierten DNAsen".
23
+ - Cytochrome c during apoptosis interacts with which protein? Apaf1: apoptosis protease activating factor-1.
24
+ - Nenne einen der wichtigsten Induktoren der Apoptose. A: Den "Tumorsuppressor p53".
25
+ - Which protein plays a major role in the intrinsic pathway of Apoptosis? Cytochrome c.
26
+ - On the cellular level, who initiates Apoptosis? The Caspases.
27
+ - The intrinsic pathway of Apoptosis depends on ... ? Mitochondria.
28
+ - Wer hat 1972 den Begriff Apoptose geprägt? J. F. R. Kerr. URL: http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2008650/
29
+ - In Apoptosis, the mitochondrial protein Cytochrome c plays a major role. Name one cellular protein that can bind to it. A: Apaf-1 (adaptor protein 1)
30
+ - What is the key protein in the "intrinsic pathway of apoptosis"? cytochrome c
31
+ - Do we find Apoptosis in Plant cells? Yes.
32
+ - What is the stimulus in the extrinsic pathway of Apoptosis? Tumor necrosis factor.
33
+ - When was the term "apoptosis" coined? In 1972.
34
+ - Nenne 3 Gründe wieso Wirbeltiere Apoptose einsetzen. A: (1) Immunsystem (2) Morphogenese bei Fingern (3) Nervensystem-Entwicklung
35
+ - Nenne 3 Merkmale von Zellen die Apoptose durchlaufen. A: (1) shrink and condense (2) cytoskeleton collapse (3) nuclear envelope disassembles
@@ -0,0 +1,41 @@
1
+ # =========================================================================== #
2
+ # === Archaea
3
+ #
4
+ # Everything about the Archaea will be collected here.
5
+ # =========================================================================== #
6
+
7
+ - For their <one>chromosome replication</one>, do archaea make use of multiple originas? Yes.
8
+ - Are there <one>Archaea</one> that can fix Nitrogen? Yes. []
9
+ - Do we know of <orange>gliding Archae</orange>? No; at the least we have not yet found any.
10
+ - How do we call the peptidoglycan in Archaea? Pseudomurein. URL: https://en.wikipedia.org/wiki/Pseudopeptidoglycan
11
+ - Can Archaea be successfully <orange>gram-stained</orange>? No. They will always appear gram-negative in the gram stain. URL: https://www.ncbi.nlm.nih.gov/pubmed/8885405
12
+ - "<u>Archaeal flagella</u>" are powered by ... ? "ATP".
13
+ - "Archaeal histones" have n subunits? "4".
14
+ - Do the cell walls of "Archaea" contain Peptidoglycan? No.
15
+ - "Archaeal lipids" are synthesized from ...? "Isoprene".
16
+ - The Methanogens belong to which phylum? "Euryarchaeota".
17
+ - Which major group of archaea is found under "normal" conditions? The "methane bacteria".
18
+ - "Archaeal histones" cover n bp? "80".
19
+ - In "hyperthermophiles", is the "reverse DNA gyrase gene" essential for the cell? No, it is not.
20
+ - How does "Rifampicin" affect Archaea? Not at all - only bacteria.
21
+ - Name the most fascinating group of crenarchaeota? The "thermophiles".
22
+ - Why do some Archaea use "cyclopentane" rings? These rings strengthen the membranes at high temperature.
23
+ - Do the Archaea use the exosome? Yes.
24
+ - Do Archaea have a SD sequence? Yes.
25
+ - Welcher Archaea hat keinen Zellwandaufbau? "Thermoplasma sp".
26
+ - Wie hiessen "Archaea" früher? Archaeabacteria.
27
+ - Name one "cell-wall difference" between Archaea and Eubacteria? Eubacteria have "peptidoglycans", Archaea never have.
28
+ - How many different viruses do we know for the Archaea? About 100 different viruses. URL: http://www.cell.com/trends/microbiology/fulltext/S0966-842X%2814%2900041-9
29
+ - Do we find "heat shock response" in Archaea? Yes.
30
+ - Name the three kingdoms of Archaea. A: (1) Kingdom "Crenarchaeota" (2) Kingdom "Euryarchaeota" (3) Kingdom "Korarchaeota"
31
+ - Do "Archaea" form endospores? No.
32
+ - Das Cytoplasma der Archaea mag kompatible Lösungsmittel beinhalten. Nenne eines davon. A: Kalium-2,3-Bisphosphoglycerat.
33
+ - How was it found out that Archaea are different to Bacteria? Through comparative ribosomal RNA Sequencing.
34
+ - Do Archaea have rho-like termination proteins? No.
35
+ - Unlike Bacteria, Archaea are resistant to ...? Lysozyme.
36
+ - Archaea contain n different RNA polymerases? 1.
37
+ - How can we distinguish between Bacteria and Archaea biochemically? We could use Chloramphenicol. Bacteria are sensitive, Archaea are not.
38
+ - Give 3 examples of Archaea-groups. A: (1) Methanogens (2) Halobacteria (3) Thermoacidophiles
39
+ - Name a "behavioural" difference between archaeal lipids and bacterial lipids. A: archaeal lipids form lilip monolayers rather than lipid bilayers.
40
+ - Name two major differences between archaea and bacteria. A: (1) The archaeal have unique lipids that contain L-glycerol. Bacteria and Eukaryotes have a D-glycerol instead. (2) Archaea do NOT use Peptidoglycan whereas Bacteria do use Peptidoglycan.
41
+ - Strain 121 survives autoclavation for how long, at temperature 121°C? "2 hours".
@@ -0,0 +1,8 @@
1
+ # =========================================================================== #
2
+ # === Architektur
3
+ #
4
+ # Auch Stadtplanung, Landschaftsplanung und Stadtökologie.
5
+ # =========================================================================== #
6
+
7
+ - Was bedeutet das <one>geomorphe Prinzip</one> in der Stadtbildung? Das "die Stadt in Abhängigkeit von den lokalen topographischen Gegebenheiten wächst".
8
+ - Der Energiegehalt der Holzproben von Kastanien ist wie mit dem Bleigehalt des Bodens in einer Stadt korreliert? Negativ; je mehr Blei umso weniger Energie haben diese Kastanien.
@@ -0,0 +1,81 @@
1
+ # =========================================================================== #
2
+ # === Artificial Intelligence
3
+ #
4
+ # This file collects information from the field of A. I. research,
5
+ # and may include topics from Machine Learning, and a bit from
6
+ # statistics as well.
7
+ # =========================================================================== #
8
+
9
+ - The abbreviation <one>AGI</one> is short for ... ? <one>Artificial general intelligence</one>.
10
+ - In <one>1959</one>, Arthur Samuel defined <two>machine learning</two> how? He said that <one>machine learning is a field of study that gives computers the ability to learn without being explicitly programmed</one>. []
11
+ - What happens when wrong validation occurs in Machine Learning? Wrong validation leads to <one>over-optimistic expectations</one> of what will happen in production.
12
+ - Give an example for <one>a knowledge graph</one> as it may be implemented in current (~2019) software. A: The <one>+</one> and <one>-</one> buttons at <two>youtube</two>. That way Google obtains information on what people like and dislike.
13
+ - What is meant with the abbreviation <one>GIGO</one>? <one>Garbage in, garbage out</one>. URL: https://en.wikipedia.org/wiki/Garbage_in,_garbage_out []
14
+ - <one>Artificial intelligence</one>, as seen through computers, typically does not qualify which <two>two other forms of intelligence</two> that human beings are capable of? (1) <one>emotional intelligence</one> (2) <one>social intelligence</one> []
15
+ - From the point of view of <one>medical information</one>: deep learning could be used to predict ... ? <one>Panic attacks</one>, e. g. how likely they are about to happen. []
16
+ - In <one>GANs</one>: why is the term <two<generative</two> used? This term comes from the fact that one network in a GAN <one>generates candidates</one>.
17
+ - <one>Machine Learning</one> can be used to analyse images, including faces of humans. Name the three general steps that may be necessary here. A: (1) Object detection (2) Classification (3) <one>Labeling</one>
18
+ - The <one>Hebbian theory</one> states that cells that fire together ... together. A: wire.
19
+ - Are <one>Cycle GANs</one> typically trained in a supervised or unsupervised manner? <one>Unsupervised manner</one>.
20
+ - Give an example of <one>LASSO regression</one>. A: <one>Cambridge Analytica</one>. URL: https://www.r-bloggers.com/cambridge-analytica-microtargeting-or-how-to-catch-voters-with-the-lasso/
21
+ - Name three different learning-types. A: (1) unsupervised learning (2) <one>supervised learning</one> (3) <one>reinforcement learning</one>
22
+ - What is <one>on-premise cloud</one>? This refers to a "cloud" within a company, e. g. on-site facilities enabling a cloud for the company at hand.
23
+ - <one>Good Machine Learning</one> requires good ... ? <one>Validation</one>.
24
+ - What general problem do we have when we attempt to employ machine learning in medicine? We often have only <one>a small dataset</one> (<one>few samples</one>).
25
+ - The abbreviation <one>BNNs</one> stands for ... ? <one>Bayesian Neural Networks</one>.
26
+ - If our input data is truly random, what pattern can be found? <one>None</one>, since the data is random.
27
+ - The <one>biggest AI opportunity</one> in the <two>healthcare sector</two>, in 2020, was ... ? In <one>Robot-Assisted Surgery</one>.
28
+ - Thanks to AI we <one>could predict panic attack</one>, up to ... which time frame that may make sense? Up to <one>within the next 24 hours</one>.
29
+ - How can we <one>measure accuracy</one> in Machine Learning in a simple manner? We can measure the proportion of examples for which a given model produces the correct output.
30
+ - Name <one>a negative consequence of increased automation</one> due to artificial intelligence and machine learning. A: <one>Job displacement</one>.
31
+ - <one>Classifiers</one> in Machine Learning may pick up faulty data. Give an amusing example here from the animal kingdom. A: A Husky is classified as a wolf.
32
+ - <one>Common neural networks</one> struggle in saying ... (their disadvantage)? <one>"I do not know."</one>
33
+ - From a <one>mathematical point of view</one>, how could we define the term <one>Machine learning</one>? This is the approach to try to find out what the function is that translates a given input into the corresponding output.
34
+ - Name the three points that form the essence of machine learning. A: (1) a pattern exists (2) we cannot pin it down mathematically (3) we have data on it
35
+ - <one>The field of AI research</one> was born at a workshop at Dartmouth College, in what year? In <one>1956</one>.
36
+ - Was meinen wir mit <one>Think Differently</one> in AI? Das es mehrere verschiedene Lösungswege gibt.
37
+ - For Machine Learning, we want to find out how well a model will perform. How is this done, in general? By <one>measuring its accuracy</one>.
38
+ - <one>Natural language processing</one> (<two>NLP</two>) is important for ... ? <one>Speech recognition</one>.
39
+ - Can <one>Artificial Intelligence</one> be considered a disruptive technology? Yes.
40
+ - In the typical supercomputers as of the year 2020, we can not completely represent the molecular configuration of caffeine. In quantum computing we could. How many qubits would be necessary for this? <one>160 qubits</one>.
41
+ - <one>Statistics</one> are also important in <two>AI research</two>. What is sampling bias? Sampling bias is a systematic error due to a non-random sample of a population.
42
+ - Which person introduced <one>GANs</one> in 2014? <one>Ian Goodfellow</one>.
43
+ - What are <one>qubits</one>? These are <one>quantum bits</one>. URL: https://en.wikipedia.org/wiki/Qubit
44
+ - Name <one>a general disadvantage of Deep Learning</one>. A: They require a <one>longer training time</one>.
45
+ - <one>Cycle GANs</one> are used, for example, where? To <one>achieve image-to-image translations</one>.
46
+ - What is <one>the main reason behind the existance of biased AI</one>? The <one>poor quality of data fed into it</one>.
47
+ - Name <one>a potential use case for quantum computing</one>. A: Calculate <one>chemical simulations</one>.
48
+ - Applying AI to <one>RWE</one> is a new paradigm for generating medical insights. RWE stands for ... ? <one>Real-world evidence</one>.
49
+ - For <one>High-level machine intelligence</one>, what forecast is typically used? The <one>aggregate forecast</one>.
50
+ - <one>High-level machine intelligence</one> (HLMI) is achieved when ... ? When unaided machines can accomplish every task better and more cheaply than human workers.
51
+ - What is <one>CAI</one>? This is <one>Creative AI</one>.
52
+ - For building a model for use in <one>Artificial Intelligence</one> or <one>Machine Learning</one>, we absolutely need what? <one>Data</one>.
53
+ - <one>Supervised Learning methods</one> are used for ... and <one>Unsupervised Learning methods</one> are used for ... ? (1) Supervised Learning methods are used for <one>regression problems</one>. (2) Unsupervised Learning methods are used for <one>exploratory data analysis</one>.
54
+ - How does <one>Machine Learning</one> define the term <two>learn</two>? Learning here is defined as <one>progressively improving the performance on a specific task</one>.
55
+ - The <one>discriminator</one> used in a <two>GANs</two> (generative adversial network) creates which two general output results? (1) <one>real</one> (2) <one>fake</one>
56
+ - Give an example of AI in daily life. A: The <one>virtual personal assistants</one>, such as <two>Alexa</two>.
57
+ - The father of Artificial Intelligence is ... ? <one>Alan Turing</one>.
58
+ - Name <one>a disadvantage of LASSO</one>. A: <one>LASSO</one> tends to select one variable from a group and ignore the others.
59
+ - <one>Netflix</one> hatte bei der Zuordnung bei welchem Film am meisten Probleme? Bei <one>Napoleon Dynamite</one>. URL: https://www.imdb.com/title/tt0374900/
60
+ - In some models for Artificial Intelligence and Machine Learning, <one>LASSO</one> is used. What does this abbreviation stand for? <one>Least Absolute Shrinkage and Selection Operator</one>.
61
+ - In der künstlichen Intelligenz: die Abkürzung <one>RMSE</one> steht für ... ? <one>Root mean squared error</one>. URL: https://en.wikipedia.org/wiki/Root-mean-square_deviation
62
+ - Wie können wir die Identität von Patienten wahren, beim Machine Learning? Man kann <one>synthetische Daten erzeugen</one>.
63
+ - <one>Nested cross validation</one> is quite important for effective machine learning. It is recommended to validate n x n times? <one>10x10 nested cross validation</one>.
64
+ - <one>Artificial data</one> give the same results as real data, without compromising ... A: <one>privacy</one>.
65
+ - Die Abkürzung <one>GAN</one> in AI stands for ... ? <one>Generative adversarial network</one>.
66
+ - <one>Wikidata</one> is knowledge for ... ? <one>machines</one>.
67
+ - Bei der <one>künstlichen Intelligenz</one> sehen wir beispielsweise welche Form der <two>Logik</two>? Die <one>Fuzzy Logic</one>.
68
+ - <one>Machine Learning</one> gives computers the ability to ... ? <one>To learn without being explicitly programmed</one>.
69
+ - <one>Credit scoring</one> mag auch in der AI Forschung hilfreich sein, für Anwendungen die zum Beispiel was bewerten oder einordnen sollen? Die <one>Bonitätsauskunft</one>.
70
+ - Name the most important (imminent) <one>goal</one> for a <two>GAN</two> (<two>Generative Adversial Network</two>). A: To <one>generate data that resembles the data that was in the training set</one>.
71
+ - Thanks to GANs we can generate data that resembles the data that was in ... ? A <one>training set</one>.
72
+ - In <one>GANs</one> (<two>Generative Adversial Networks</two>), we pass from the real data, to the sample data, to the very important ... ? <one>Discriminator</one>.
73
+ - An example for <one>a knowledge graph</one> for humans is ... ? <one>Wikipedia</one>.
74
+ - Ist die <one>Lasso-Regression</one> besser als <two>deep learning</two>? Oft ja.
75
+ - Name a very important class of machine learning systems. A: The <one>GANs</one>: <two>Generative adversarial network</two>.
76
+ - Why did <one>Netflix</one> wish to make use of Artificial Intelligence, originally? They wanted to increase the time that <one>Netflix members</one> spend on their platform.
77
+ - What is the <one>knowledge graph</one> used by Google? This is a knowledge base that attempts to enhance its search engine's results with information gathered from a variety of sources.
78
+ - Why may Netflix and Google make use of <one>deep learning</one>? This is especially <one>useful for recommendations</one> to users/visitors.
79
+ - <one>Machine learning</one> is able to learn from ... ? <one>Data</one>.
80
+ - <one>Overfitting</one> ist oft ein Problem beim Machine Learning. Welche Modelle könnten dieses Problem vermeiden oder verhindern? <one>Regressionsmodelle</one>.
81
+ - Bei <one>Big Data</one>: was meinen wir mit dem <two>Cold Start Problem</two>? Hier handelt es sich zum Beispiel um einen ganz neuen Benutzer, über den wir noch keine Information besitzen.
@@ -0,0 +1,10 @@
1
+ # =========================================================================== #
2
+ # === AUDIO
3
+ #
4
+ # Audio tag. Aud tag. Audtag.
5
+ # =========================================================================== #
6
+
7
+ - Why is the newer <one>ID3v2 standard for .mp3 files</one> a variable-length structure at the beginning of the file? This helps <one>support streaming</one>.
8
+ - What is "isotropic"? This is a source that emits radiation equally in all directions.
9
+ - What is the "successor format to .mp3 files"? AAC ("Advanced Audio Coding").
10
+ - What kind of unit is the decibel? The decibel (dB) is a logarithmic unit.
@@ -0,0 +1,224 @@
1
+ # =========================================================================== #
2
+ # === Bacteriophages
3
+ #
4
+ # (Bacteriophages tag, phages tag, virophages)
5
+ #
6
+ # This file keeps information about Bacteriophages. It is thus quite similar
7
+ # to the file basic_virology, but focuses solely on phages of bacteria and
8
+ # archaea. Phage genetics may also be stored in this file, as well as the
9
+ # phage lambda, due to to its historic significance.
10
+ #
11
+ # Information that is secondary to phages, such as which genomes carry a
12
+ # phage, may be included here as well.
13
+ # =========================================================================== #
14
+
15
+ - The lambda early stage takes how many minutes? About <one>15 minutes</one>.
16
+ - Nenne einen Phagen mit intramolekularer Doppelstrangschleife. A: Der Bakteriophage <one>G4</one>. URL: URL: https://journals.plos.org/plosone/article?id=10.1371/journal.pone.0027062
17
+ - Das <one>Genom des M13-Phagen</one> umfasst in etwa n Nukleotide? Etwa <one>8000 Nukleotide</one>.
18
+ - <one>Bacteriophages</one> are <three>typically cultured in</three> ... ? <one>Bacterial cells</one>.
19
+ - The <one>lambda-phage</one> belongs to which class of the "Baltimore scheme"? Lambda belongs to <one>Group I</one>, aka "dsDNA-viruses".
20
+ - Wieviele <one>ORFs</one> hat das <two>Lambda-Genom</two>? Etwa <one>73</one>.
21
+ - Why is <one>Lambda-Replication</one> considered to be "asymmetric"? One parental strand continues to serve as a template - the other strand is used only once.
22
+ - Bei der Freisetzung von Lambda-Phagen aus einer bakteriellen Zelle wird oft welches Enzym benötigt? <one>Endolysin</one>.
23
+ - Der <one>Lambda-Phage</one>: welche Infektionsstrategie wird bevorzugt wenn der Phage in einem nährstoffreichen Medium wächst, und welche molekulare Grundlage kann hierzu genannt werden? Der Lambda-Phage bevorzugt den lytischen Infektionsweg bei einer nährstoffreichen Umgebung. Ein derartiges Medium aktiviert die <one>HflB-Protease</one>.
24
+ - Nenne die drei strukturellen Haupt-Bestandteile des <one>Lambda-Phagen Virions</one>. A: (1) <one>Kopf</one> (2) <one>Schwanz</one> (3) <one>Schwanzfaser</one>
25
+ - Sind alle Lambda-Phagen Gene des Lambda-Genoms charakterisiert im Jahre 2019? Nein.
26
+ - Der <one>Lambda-Phage</one> bindet woran genau an der bakteriellen Zellmembran ...? An das <one>Maltose-Porin LamB</one>.
27
+ - Name two different, general "stress conditions" that could possibly re-activate a lambda prophage. A: (1) "DNA damage to the host", such as via "<u>UV treatment</u>" (2) "temperature upshift to 42°C", if we have a "thermosensitive allele" of the lambda repressor protein
28
+ - Der <one>T4 Phage</one> kann auf E.coli strain B und K wachsen. Auf welchem einfacher? Auf "strain B". Bei einer Mutation im Gen rII kann T4 nicht mehr auf dem strain K wachsen.
29
+ - The <one>T4 phage</one> has a rII locus. If a mutation occurs in this gene, what may we conclude? That this T4 can then no longer grow on the "E. coli strain K12".
30
+ - Nenne einen <one>Phagen</one> der "generalized transduction" durchführt! A: Der "Phage P22".
31
+ - If an "E. coli cell" is infected by more <one>lambda phages</one> at the same time, rather than just a few ones, will it be more likely that the lytic or lysogenic cycle will be initiated? Larger numbers of co-infecting phages make it more likely that the infection will use the "lysogenic cycle".
32
+ - What are "temperate phages"? These are <one>phages</one> that can undergo either the lytic or the lysogenic cycle.
33
+ - When do phages require a "<u>helper phage</u>"? When it is a "defective phage".
34
+ - Can we say anything about the organization of a typical phage's genetic map? Yes - it will "often reflect the sequence of lytic development" of that phage.
35
+ - If we see an E. coli culture is infected by lambda phages, and these phages synthesize lots of cro proteins, what may we conclude to happen next? The "lytic cycle" will be induced if the cro proteins dominate.
36
+ - Why does the "bacteriophage lambda" require the "cI repressor"? This repressor is required in order to "maintain lysogenic growth".
37
+ - How fast is the "<u>T4 phage</u>" in shutting down the bacterial cell after infection? Within "two minutes after infection", that cell will be shut down.
38
+ - Is the "Corticovirus" icosahedral or a head-tail phage? It is "icosahedral".
39
+ - The "bacteriophage MS2" has a central area in its genome coding for the coat; following by a lysis protei and a replicase. Which protein can we find at the beginning? The "maturation protein". URL: https://en.wikipedia.org/wiki/Bacteriophage_MS2
40
+ - Typically bacteriophages are released from a bacterium how? Via "lysis" of the bacterium.
41
+ - For "phage lambda", what happens if the default att-lambda site is deleted? The lambda-phage "may still establish lysogeny" by simply integrating elsewhere - with an efficiency of "less than 0.1%" compared to the default att-lambda site.
42
+ - How does the "T4 phage" protect itself against its own nucleases? The T4 DNA contains an unusual base ("HMC": "5-hydroxymethylcytosine").
43
+ - Why does the lambda phage require the "cIII gene product"? This protein will "protect cII" from "proteolytic degradation" by a host enzyme.
44
+ - Dauer des kompletten Vermehrungszyklus des T4-Phagen? Ungefähr "25 Minuten".
45
+ - In "1952", Hershey and Chase used E. coli cells and which phage? The "T2 phage". URL: https://en.wikipedia.org/wiki/Hershey%E2%80%93Chase_experiment
46
+ - Beim Lambda-Genom, das Gen A + Nu1 binden woran? An "mm'".
47
+ - Vorraussetzung dafür das der Lambda-Vorkopf mit DNA bepackt werden kann? Abbau des Nu3-Proteingerüsts.
48
+ - Welcher Teil der Lambda-DNA kann ersetzt werden? J-N.
49
+ - What are lambda "secondary attachment sites"? These are sequences where lambda can integrate, if the normal attB site on the chromosome is deleted. The frequency of integration at such secondary sites is very, very low, however so low that when wild-type attB site is present we will not witness integration at the secondary attachment sites.
50
+ - The Lambda capsid protein requires help from which bacterial protein? Chaperonin GroE.
51
+ - Der <one>Lambda-Repressor</one> besteht aus wievielen Domänen? Aus <one>2</one>.
52
+ - Das Lambda Q-Protein bindet an welche DNA-Sequenz? An die <one>qut-Sequenz</one>.
53
+ - At the ends of the lambda linear genome there are short single-stranded regions that are complementary, the so-called "cos sites". How long are these sites? "12 bp".
54
+ - Das "Lambda cro-Protein" hat n Aminosäuren? "66".
55
+ - For lambda integration, which two proteins are necessary? The "Intasome", which is a DNA-protein-complex consisting of phage protein Int and the bacterial protein IHF ("integration host factor").
56
+ - Wir können Phagen in der Medizin aufgrund ihrer Wirtsspezifität zur Bestimmung von bakteriellen Erregern verwenden. Wie nennen wir dieses Verfahren? "Lysotypie".
57
+ - Der "M13-Phage" infiziert E. coli Zellen über deren F-Pilus. Welche Domäne in welchem Protein ist hierbei wichtig? Die "N2-Domain" im "pIII Protein".
58
+ - Nenne einen Effekt von M13 auf das infizierte Bakterium. A: Eine Infektion mit M13 verlangsamt das Wachstum des infizierten Bakteriums.
59
+ - The lambda-phage expesses the Cro protein after it infects an E. coli cell. This protein then binds to OR3, which will prevent access to the "PRM promoter". This prevents expression of ... which gene? The "cI gene".
60
+ - "Bacteriophage Lambda" can bind to an E. coli cell, by means of its ... protein in the tail tip. A: Its "J protein".
61
+ - Name an advantage that "<u>phage therapy</u>" has over "antibiotic treatment" - at the least in regards to the application process itself. A: Phages can "infiltrate into biofilms" more easily than can antibiotics. This is also called "biofilm clearance".
62
+ - When lambda is integrated into the E. coli genome as a prophage, what can we say about most of its genes? Most of its genes must be off; and have to be switched on, upon induction.
63
+ - A bacteriophage must always overcome a cell wall for its propagation. Is this a true statement? No. "Mycoplasma" lack a cell well, yet do happen to have phages. URL: https://en.wikipedia.org/wiki/Mycoplasma
64
+ - Welche Person gilt als "Begründer der Phagengenetik"? "Joshua Lederberg".
65
+ - In the phage lambda, for "DNA replication", name two gene products that are required. A: (1) Gene product "O" (2) Gene product "P"
66
+ - What are "Virophages" doing? They inhibit or impair the reproduction of the auxiliary virus (in the same infected cell).
67
+ - What role does Lambda-Phage cII have? It protects cI against proteases - and "thus stabilizes it".
68
+ - The "terminase" of the lambda phage first binds to the viral genome. It then proceeds to bind to which other structure? The "lambda terminase" will then bind to the "portal protein of an empty procapsid".
69
+ - Transition between the "lytic lifecycle" and the "lysogenic state" involves ... ? "Site-specific recombination". URL: https://en.wikipedia.org/wiki/Site-specific_recombination
70
+ - Who discovered "bacteriophages"? "Felix d'Herelle". URL: https://en.wikipedia.org/wiki/F%C3%A9lix_d%27Herelle
71
+ - Nenne einen dsDNA-Phagen ausser Lambda und T4, aus einer Familie die mit "B" beginnt. A: Aus der Familie der "Bicaudaviruses", der "Sulfolobus virus STSV1".
72
+ - Bacteria have anti-phage measures, called the Abi system, "abortive infection systems". Give another name for this system. A: "Phage exclusion".
73
+ - Does the incorporation of the DNA into the lambda phage head require energy? Yes; it is "ATP dependent".
74
+ - Besitzen Phagen Introns? Ja; der "T4"-Phage besitzt Introns, zumindest 3 (drei "self-splicing group I introns"), in Genen der "de-novo deoxyribonucleotide biosynthesis". URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC1797299/
75
+ - Phage lambda contains a gene, called "ral". What does this abbreviation stand for? "ral" stands for "restriction alleviation".
76
+ - The lambda phage DNA integrates into the "BOB'" area in the bacterial genome. What is "O" here, aside from the name given to it aka the "core sequence"? O is "the crossOver point". ("O" may also be short for "Origin".)
77
+ - Nenne zwei Beispiele für Regulationsstrategien in einer "Phagen-Kaskade". A: (1) "neuer Sigmafaktor" (2) "Antitermination"
78
+ - "Fred Sanger" sequenzierte die Lambda-DNA. Diese Sequenz ist seit welchem Jahr bekannt? Sie dem Jahr "1982".
79
+ - Phage T4 genome size? "38 kb" - it is "a fairly small T-phage".
80
+ - Sometimes not all "dam sites" in phage DNA are methylated. Why may this be the case? Because phages may replicate so quickly that the "methylases" can not keep up with the newly generated DNA. A "heterogeneous restriction pattern" can occur with a sensitive enzyme.
81
+ - The Lambda Phage J protein interacts with which E. coli molecule? With the "LamB porin".
82
+ - Does the "MS2 phage" make use of "overlapping genes"? Yes; its "lysis protein" has "overlapping genes".
83
+ - In "phage display", why the name "display"? Because "the protein can be displayed on the surface of the phage".
84
+ - Phagen wie "M13" (DNA-Phage) und "MS2" (RNA-Phage) haben zumindest eine prominente Gemeinsamkeit in ihrem Verhalten. Welche Gemeinsamkeit ist dies? Sie infizieren ausschließlich Bakterien mit "F-Pili".
85
+ - How long does it take the T4 phage to infect a host cell until it can lyse it? "25 minutes".
86
+ - What do we mean with "early infection of phages"? This is the period from entry of DNA into the bacterium, to the beginning of phage replication.
87
+ - Name a "lambda phage protein" that can bind close to the "cos site". A: The "lambda terminase".
88
+ - Definiere "virulenter Phage". A: Dies ist ein Phage der sich "ausschliesslich lytisch" vermehrt.
89
+ - Was sind "Virophagen" + Beispiel angeben? Virophagen sind "Satelliten-Viren", die andere Viren infizieren. Der im Jahre 2008 entdeckte "Sputnik" ist ein Beispiel für einen Virophagen. URL: https://en.wikipedia.org/wiki/Virophage
90
+ - What is meant with "phage therapy"? This is the application of bacteria-specific viruses, aka "phages", to combat uncontrolled and undesired bacteria such as those associated with "infectious disease".
91
+ - A "prophage" can be induced to enter the lytic cycle by various "inducing agents". Other than UV radiation or petrochemical contaminants in the water, name a molecule that can cause this effect, starting with the letter "M". A: "Mitomycin C".
92
+ - Give a specific example for a phage that makes use of "specialized transduction". A: The "lambda phage". URL: https://en.wikipedia.org/wiki/Lambda_phage
93
+ - Der Kopfdurchmesser eines Lambda-Phagen beträgt, von-bis, etwa n nm? Etwa "50-60 nm".
94
+ - What is the major characteristic feature of the "virulent phages"? When they replicate, they kill their host by lysing it.
95
+ - Kann der Schwanzteil des Lambda-Phagen Virions kontraktieren? Nein.
96
+ - Default outcome of a phage infection for a bacterium is, usually? The phage will kill (lyse) the bacterium.
97
+ - Name two "generalized-transduction using phages". Where can these phages be found? A: (1) "P1" (in "Escherichia coli") (2) "P22" (in "Salmonella typhimurium")
98
+ - Give two examples for "Virophages". A: (1) "Sputnik Virophage" (2) "Organic Lake Virophage"
99
+ - What are "coliphages"? These are "phages that infect E. coli".
100
+ - The "single subunit DNA-dependent RNA polymerase" from bacteriophage T3 is very closely related to which other, non-phage polymerase? It is very "closely related to mitochondrial RNA polymerases".
101
+ - Which phage was used in the "Hershey-chase experiment"? The "T2-phage". URL: https://en.wikipedia.org/wiki/Hershey%E2%80%93Chase_experiment#Methods_and_results
102
+ - Englisch für "Gerüstprotein" beim Phagenbau? "Assembly protein".
103
+ - The "T7-Phage" has n genes? "25".
104
+ - Benötigt der Lambda-Phage das Enzym "Polynukleotid-Ligase"? Ja.
105
+ - For the phage lambda, what do we mean with "lytic products"? These include, for example, the "lambda head" or the "lambda tail components".
106
+ - After injection of the lambda DNA, the phage DNA is covalently closed by ... ? The "host ligase".
107
+ - The lambda phage genome has a sequence called "O", at "attB" and "attP". How is this sequence called? The "core sequence".
108
+ - The "lambda cI repressor" mimics which other protein? "LexA"; this is also why the cI protein is "bound and cleaved by RecA".
109
+ - Im Lambda-Phagen-Genom, nenne eine andere Bezeichnung für die "cos-Stelle". A: "m/m'".
110
+ - Name a simple but effective way for a bacterial cell to protect itself against a phage without acting on the RNA/DNA of said phage at all. A: "Build a glycocalyx" around itself, which "acts as a protective structure".
111
+ - Diameter of the Lambda-phage virion? About "65 nm".
112
+ - Name two different "invasion types" for Bacteriophages into a cell. A: (1) "Injection" (for "tailed bacteriophages") (2) "Penetration" of the "entire virion" (proteins must protect nucleic acid)
113
+ - The first mutations isolated and mapped in the phage lambda were ... ? Those that "changed the morphology of its plaques".
114
+ - Name a "recombinase" that can be found in the "phage P1". A: The "Cre-recombinase". URL: https://en.wikipedia.org/wiki/Cre_recombinase
115
+ - Im Lambda-Phagen, welcher "Promotor" ist für die Phagenkopf-Synthese wichtig? Der "PR'" Promotor. URL: https://www.ncbi.nlm.nih.gov/pubmed/1117996
116
+ - What can we say about "secondary attachment sites" of phage lambda, aside from a much reduced frequency of integration? Secondary attachment sites resemble the authentic att sequence.
117
+ - Who discovered "phage lambda"? "Esther Lederberg", in 1950.
118
+ - Wo liegt der Origin des Lambda-Phagen? Im "O-Gen".
119
+ - Phage T4 contains the unusual base hydroxymethylcytosine (HMC), instead of regular cytosine. Some bacteria have acquired modification-dependent systems that can exclusively cleave HMC-containing DNA, thus "preventing infection". How does Phage T4 counter this? Phage T4 acquired resistance to these enzymes through "glucosylation of HMC residues" ("glu-HMC").
120
+ - Es gibt cI, cII und cIII im Lambda-Phagen. Wofür steht dieser Buchstabe "c" hier? "c" steht für "clear".
121
+ - A phage may control transcription at initiation - name two different ways here. A: (1) synthesize a "new sigma factor" (2) synthesize a "new RNA polymerase"
122
+ - Name the "most common way" for phages to "escape restriction". A: "Methylate the DNA".
123
+ - What is the role of "Xis" in lambda-phage ingetration and excision? Xis is "required for excision"; it also "inhibits integration".
124
+ - In the "phage lambda", the "tail fibers" are connected to ... ? The "basal plate".
125
+ - In the lambda phage, the "immediate early" genes come right before the ... ? "Delayed early genes".
126
+ - Die "red-Gene" von Lambda ... wieso diese Abkürzung? "red" steht hier für "reduction of recombination".
127
+ - Name two important enzymes that are active shortly after phage DNA is injected. A: (1) host "ligase" (2) "topoisomerase" (for the supercoiling)
128
+ - Lambda att-sites ... why was the name "att" chosen here? Att is short for "attachment".
129
+ - Have Prophages been detected in "Archaea"? No.
130
+ - Im Bakteriophagen Lambda, wie lang ist dessen attP Region? attP: "15 bp lang".
131
+ - Structurally, phages fall into one of which three main groups? (1) "tailless" (2) "head with tail" (3) "filamentous"
132
+ - The E. coli strain "K-12" carries a lysogenic lambda phage in its genome. When was this discovered? In "1950".
133
+ - The "lambda phage" encodes about ... n different proteins? About 70.
134
+ - Die ssDNA-Phagen M13 und fd können nur F+ Bakterien, also "male bacteria", infizieren. Warum? A: Sie "müssen sich an den Pilus heften". (Weitere an den Pilus haftende Phagen sind RNA-Phagen wie f2 MS2 Qbeta, sowie noch DNA-Phage f1).
135
+ - Nenne einen Phagen der "5-prime Hydroxymethylcytosin" statt Cytosin verwendet. A: Der Coliphage "T4".
136
+ - Who was the original discoverer of bacteriophages? "Frederick William Twort".
137
+ - How many bacteriophages exist on planet earth? 10 ** 31.
138
+ - In the "lambda phage heads", how is the DNA kept? The DNA is present as a "linear double stranded DNA" ("dsDNA").
139
+ - Durchmesser des "Sputnik Virophage", in nm? "50 nm".
140
+ - Name a very interesting, external defence mechanism used by some bacteria against phages. A: These bacteria may sometimes "shed receptor material", as decoy; the phages bind to these receptors. This thus also constitutes a "resistance mechanism".
141
+ - Name an unusual base that can be found in the "phage T4". A: The base "hydroxymethylcytosine" ("HMC").
142
+ - What does the "Lambda cro gene" do when expressed? The "lambda cro gene" prevents synthesis of the "lambda repressor protein", by blocking transcription of the "cI-gene". (cro protein -> cI-gene) URL: https://en.wikipedia.org/wiki/Cro_repressor_family
143
+ - Sometimes prophages can be induced "spontaneously" in a bacterial population. When does this usually happen? When bacterial cells enter the stationary phase.
144
+ - "André Michel Lwoff" was the first to describe "lysogeny". In what year? In "1950".
145
+ - Bacteria fight against phages via restriction enzymes. What can the phages do against this attack? They can "mutate their cleavage sites", via point mutations, so that the restriction enzymes no longer recognize the phage's genome.
146
+ - 95% of all phages reported in the literature are members of which order? They belong to the order of "Caudovirales".
147
+ - How do we call a phage that is integrated into the host chromosome? This is called a "prophage".
148
+ - Which phages escape "restriction endonucleases" of bacteria in general? "RNA-based bacteriophages".
149
+ - Name a phage that the E. coli strain K-12 genome carries. A: The K12 strain carries a "lysogenic lambda phage" in its genome.
150
+ - Lambda-recombination occurs in ... ? In an "intasome". URL: https://en.wikipedia.org/wiki/Lambda_phage#Prophage_integration
151
+ - Phages can create "holes" on the agar plate where bacteria may grow. How do we call these "holes"? "Plaques".
152
+ - When was the Phage Lambda discovered? In the year "1950", by "Esther Lederberg".
153
+ - Name an "anti-terminator protein" that phage lambda contains. A: "N". URL: https://en.wikipedia.org/wiki/Lambda_phage
154
+ - Nenne ein Beispiel wie "Prophagen" in den lysogenen Zyklus übertreten mögen. A: Durch "UV Strahlung". URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC354795/
155
+ - A. W. für "phage progeny"? "Lysate".
156
+ - What is meant with the term "lysogenic conversion"? This is when prophages convert harmless bacterial strains into "pathogenic strains".
157
+ - Name the two best characterized temperate phage. A: (1) "Lambda" (2) "P1"
158
+ - Der Bacteriophage MS2 hat wieviele Gene? "4". URL: https://en.wikipedia.org/wiki/Bacteriophage_MS2
159
+ - A phage particle typically consists of a head. Give another name for this head. A: The "capsid".
160
+ - Does the lambda phage, as "prophage", create new "att sites"? Yes - called "attL" and "attR".
161
+ - Virophages will also infect "phycodna viruses". What global effect does this have? It "reduces algal death".
162
+ - Warum benötigt der Lambda-Phage seine att-Stellen? Hier erfolgt die "Integration der Phagen-DNA in das bakterielle Genom".
163
+ - In phage genetics what means a "chronic infection"? Also give an example for such a phage. A: Continuous release of progeny, such as in "M13-phages".
164
+ - Why does the lambda genome have gene names such as N? Only a few phage genes were known in the early days, so a one letter code was initially used for phage genes.
165
+ - The "Lambda-Phage" has cosN site where the DNA is nicked, but how long is the full cos sequence? It is about "~200 base pairs in length".
166
+ - Ein Lambda-Phage setzt wieviele Nachkommen frei? Etwa 100.
167
+ - Der "T4-Bacteriophage" hat n Gene? "150".
168
+ - Nenne einen "dsDNA-Phagen". A: "Bakteriophage T4".
169
+ - What transcripts will we find in a "quiescent prophage"? Only "bacterial transcripts".
170
+ - When the cI gene of the phage lambda is mutated, and no longer functions, can we recognize this in the E. colonies? Yes - "clear plaques will form", as there will be no lysogeny that could be established.
171
+ - Wie verändert sich die optische Dichte einer bakteriellen Kultur wenn Phagen aktiv sind? Die Phagen lysieren die bakteriellen Zellen; dadurch "sinkt die optische Dichte".
172
+ - "Bacteriophage Q" infects which target bacteria? "Bacillus megaterium". URL: https://en.wikipedia.org/wiki/Bacillus_megaterium
173
+ - Do the "lambda cos-sites" base pair at room temperature? Yes.
174
+ - The "bacteriophages" can be characterized into which "behavioural categories"? Also provide one example for each category. A: (1) "temperate phage": "Lambda" (2) "virulent phage": "T4"
175
+ - Why the name "cI" for the lambda phage? cI stands for "clear plaques 1".
176
+ - Wie lang ist der "Bakteriophage M13", in nm? "900 nm".
177
+ - The "whisker" of phage T7 is attached to? The "connector".
178
+ - For phages, what is the main task for the "antiholines"? The antiholin keeps the holin inactive, until the "time of lysis" occurs.
179
+ - Do "lambda prophages" give the host cell a new property? Yes - since the lambda repressor is expressed in a lysogenic strain, such a strain is "immune to secondary infection by another lambda phage" (of the same immunity group).
180
+ - In "lambda lysogenic pathway", how can we notice them by just looking at the plaque formed in E. coli? "Wildtype lysogens" will appear as "turbid plaque".
181
+ - Wie "hoch" ist der Phage Lambda, in etwa, von "base plate" hin zur Spitze des "head"? Etwa "200 nm".
182
+ - Lysogens of lambda "cI 857" can be induced to switch from lysogenic to lytic mode ... how? By "shifting their temperature above 37°".
183
+ - Why does the "lambda phage genome" require the N gene? The N gene is an antitermination factor that is required to "process the delayed early genes".
184
+ - Does the lambda phage make use of "partially overlapped genes"? Yes.
185
+ - Do we know a phage that "can act as a Transposon"? Yes. The "Mu Phage". URL: http://pub.mate-desktop.org/releases/1.20/python-caja-1.20.2.tar.xz
186
+ - Nenne two "phage characters"! A: (1) "Plaque Morphology" (2) "Host Range"
187
+ - The "Cre recombinase" of the P1 phage recognizes? "loxP": a 34bp long sequence. URL: https://en.wikipedia.org/wiki/Cre-Lox_recombination
188
+ - Someone may claim that "phage therapy" shows a "low inherent toxicity". What counter-argument may be given to this statement? Phages will "release bacterial components" when they lyse bacteria, which will release cell-wall containing compounds such as Endotoxin/LPS. (This is, however had, also the case when certain "cell-wall disrupting" antibiotics are employed.)
189
+ - Gegeben sind x individuelle Bakterien. Wie viele Bakteriophagen existieren? 10 x.
190
+ - Compare the "typical burst size" of phage T4 with picornavirus. A: (1) <one>T4</one>: 200 (2) <one>Picornavirus</one>: 100.000
191
+ - Phage lambda may have the "red system". What does "red" stand for? "Recombination deficient".
192
+ - What is the "receptor" for the "M13 Bacteriophages"? The "F-pilus".
193
+ - Genom von M13? ssDNA.
194
+ - The phenomenon of "phage restriction" on certain (bacterial) host strains led to the discovery of ... ? "Restriction enzymes" - aka "sequence-specific endonucleases".
195
+ - The "phage X 174 protein J" codes for ... ? A "DNA condensation protein".
196
+ - Nach einer erfolgten Lambda-Infektion einer bakteriellen Zelle kommt welches Enzym zum Einsatz? Die "Ligase".
197
+ - Excision of the lambda phage requires which proteins? (1) "Int" (2) "Xis" (3) "IHF"
198
+ - Can the "lambda tail" self-assemble? Yes. It will be subsequently attached to the phage head, after the DNA loading step.
199
+ - Prophage genes "promoting host fitness" are called ...? Fitness factors.
200
+ - Give one famous example for a "Virophage". A: The "Sputnik Virophage".
201
+ - Wie lang ist das "P1 Phagengenom"? "115 kb".
202
+ - Who coined the word "Bacteriophage"? "d-Herelle", in "1917".
203
+ - In a density gradient of lambda particles, where may we find it, compared to DNA and protein bands? About half-way since half the mass of a lambda particle is DNA and half is protein. (Density of DNA is 1.7 gm/cm3; the density of protein is 1.3 gm/cm3).
204
+ - How many percent of the prokaryotes in the ocean are infected by phages at any given time? At least 70%.
205
+ - Wieso machen die kleinen Phagen grosse Plaques im Agar-Gel? Die kleinen Phagen können im Agar "besser diffundieren".
206
+ - Warum der Name T4 oder T5 bei Phagen? T steht für "Type".
207
+ - Give one example for a "transposable phage". A: The "Mu Phage".
208
+ - Is the "lambda phage" a contractile tailed phage? No; it is "non-contractile".
209
+ - What is name of "the major bacteriophage group"? The order "Caudovirales": the "tailed bacteriophages".
210
+ - In lambda phage, if the "lysogenic pathway is inactivated", the plaques of E. coli will ... look how? They will remain clear.
211
+ - The lambda phage DNA will integrate into the BOB' area in the bacterial genome. What is B and B', respectively? (1) B denotes the left portion of the bacterial sequence into which lambda inserts. (2) B' denotes the right portion of the bacterial sequence into which lambda inserts.
212
+ - In the lambda-phage heads the DNA is present as linear double stranded DNA, containing 12 nucleotide long cohesive ends. These ends are generated by cleavage of this DNA by ... which enzyme? By the "lambda terminase".
213
+ - The phage "PH42" attacks which bacterium? "Salmonella typhimurium".
214
+ - Give an example for a phage that exists in "plasmid form in the cytoplasm". A: The "phage P1".
215
+ - Phages can perform "specialized recombination". Do the sequences have to be homologous in this form of recombination? No, not necessarily.
216
+ - In 1915, the first bacteriophage was discovered. By which scientist? By "Frederick Twort".
217
+ - For "phage recombination", what is one important requirement for it to work? The phages that undergo recombination must be of "different genotypes".
218
+ - Name an advantage that "phage therapy" may have, as a bactericidal agent, as opposed to an antibiotic. A: Bacteria that have been successfully infected by obligately lytic phages are unable to regain their viability. By contrast, certain antibiotics are bacteriostatic, such as tetracycline, and as a consequence may "more readily permit bacterial evolution towards resistance".
219
+ - For phage lambda, what is the main criterium to fulfill the condition for packaging? That the two cos-sites are in the "correct distance range".
220
+ - In general for some phages, when is the "lysogenic state" more frequently entered? If the "host is growing on an unfavorable carbon source".
221
+ - In order to allow rolling circle replication, the lambda-phage has to produce a protein that inhibits "ExoV" of E. coli. Which gene product does so? The "gam gene" product (a historical designation; gam for "gamma protein").
222
+ - What is the target receptor for "phage lambda"? It is a protein of the "maltose transport system", encoded by the lamB locus in the "malB operon".
223
+ - How can the "att sites" of lambda be defined, experimentally? Via "mutations"; mutations of these sites will prevent the integration of lambda into the bacterial genome.
224
+ - Hauptbaustein des Lambda Phagenkopf? Das "Gen E Protein".
@@ -0,0 +1,1008 @@
1
+ # =========================================================================== #
2
+ # === Biochemie (Basic Biochemistry)
3
+ #
4
+ # Einführung in die Biochemie. Biochem tag Biochemie tag. Bchem tag.
5
+ # Bioche tag. Biochem1 tag. Bemtag. Biochem2 tag. Bem tag.
6
+ # Bem1 tag.
7
+ # =========================================================================== #
8
+
9
+ - Definiere eine <one>Esterbindung</one> ausgehend von den daran beteiligten funktionellen Gruppen. A: Bindung zwischen einer <one>Hydroxygruppe</one> und einer <one>Carboxygruppe</one> (<two>hydroxyl</two> + <two>oxoacid</two>). []
10
+ - <one>Lipide</one> sind aus welchen zwei Komponenten aufgebaut? (1) <one>Fettsäuren</one>, die über eine <one>Esterbindung</one> verknüpft sind, und (2) <one>Glycerin</one>
11
+ - Wieviele <one>Esterbindungen</one> finden wir in einem typischen <two>Triacylglycerin</two>? <one>3</one>. []
12
+ - Im <mediumturquoise>ATP-Molekül</mediumturquoise>: welchen Bindungstyp finden wir zwischen dem <one>Adenosin</one> und der <one>Triphosphatgruppe</one>? Eine <one>Esterbindung</one>. []
13
+ - Im Labor: Wie können wir experimentell <one>Peptidylhomoserinlacton</one> erzeugen? Wir behandeln eine Polypeptidkette mit <one>Bromcyan</one>. (<two>Bromcyan → Peptidylhomoserinlacton</two>) []
14
+ - Der Begriff <one>Vitamin E</one> umfasst welche Strukturen? <one>Tocopherol</one>. URL: https://de.wikipedia.org/wiki/Tocopherol []
15
+ - Nenne ein Beispiel für ein <one>Heterotetramer</one>, das für multizelluläre Lebewesen sehr wichtig ist, ja, <three>lebensnotwendig</three>. A: <one>Hämoglobin</one>. URL: https://de.wikipedia.org/wiki/H%C3%A4moglobin []
16
+ - Womit beginnt die <one>enzymatische Katalyse</one>? Mit der <one>Substratbindung</one>. []
17
+ - Welche Lebewesen besitzen vor allem <one>Stanole</one>? Die <one>Pflanzen</one> - Stanole sind <mediumseagreen>pflanzliche Sterine</mediumseagreen>. URL: http://www.webmd.com/cholesterol-management/features/low-cholesterol-diet-plant-sterols-stanols []
18
+ - <one>Citrullin</one> kondensiert mit ... zu Argininosuccinat, im Harnstoffzyklus? Mit <one>Aspartat</one>. URL: https://de.wikipedia.org/wiki/Harnstoffzyklus#Kaskade_im_Cytosol []
19
+ - Wofür mag die Zelle <one>Succinat</one> brauchen? Für die <one>Synthese von Porphyrinen</one>. URL: https://de.wikipedia.org/wiki/Succinate []
20
+ - Wie können wir <one>allosterisch regulierte Enzyme</one> in einem Diagramm erkennen? <one>Allosterisch regulierte Enzyme</one> zeigen eine <two>sigmoide Sättigungskurve</two>.
21
+ - Wie nennen wir den <one>organischen Bestandteil der Hämgruppe</one>? <one>Protoporphyrin</one>. URL: https://en.wikipedia.org/wiki/Protoporphyrin_IX []
22
+ - Wie wird die <one>aktive Form des Pyridoxins</one> genannt? <one>Pyridoxalphosphat</one>. URL: https://de.wikipedia.org/wiki/Pyridoxalphosphat []
23
+ - Wann mag es zu einer <one>vermehrten Sekretion von Wachstumshormonen</one> kommen? Bei manchen <one>Tumoren der Hypophyse</one>. []
24
+ - Welche <one>Enzymklasse</one> dominiert in den <two>Lysosomen</two>? Die <one>Hydrolasen</one>. URL: https://de.wikipedia.org/wiki/Hydrolase []
25
+ - How do we call the enzymes that can synthesize <one>Polyketides</one>? <one>Polyketide synthases</one>. URL: https://en.wikipedia.org/wiki/Polyketide_synthase []
26
+ - Nenne einen <one>Aminozucker</one>. A: <one>Glucosamin</one>. URL: https://de.wikipedia.org/wiki/Glucosamin []
27
+ - Im <one>Anfinsen-Experiment</one> wurde <two>Harnstoff</two> und ... <two>welche weitere Substanz</two> verwendet? <one>2-Mercaptoethanol</one> (auch <one>Beta-Mercaptoethanol</one> genannt). URL: https://en.wikipedia.org/wiki/2-Mercaptoethanol []
28
+ - <one>AMP</one> + <one>AMP-Desaminase</one> ergibt ... ? <one>IMP</one>. URL: https://de.wikipedia.org/wiki/Inosinmonophosphat []
29
+ - Warum müssen wir in <one>S. cerevisiae</one> mit konditionellen Mutanten arbeiten wenn wir den Sekretionsweg untersuchen möchten? Da die meisten Mutationen im Sekretionsweg <one>lethal</one> sind. []
30
+ - Im <one>menschlichen Körper</one>: wann ist die <two>Lactat-Dehydrogenase</two> besonders wichtig? Bei <one>limitierter Sauerstoffverfügbarkeit</one>. []
31
+ - Das Disaccharid <one>Maltose</one> besteht aus welchen Zuckern? A: <one>2x Glucose</one>. URL: https://de.wikipedia.org/wiki/Maltose []
32
+ - <one>Calcium</one> hat zwei wichtige Rollen im menschlichen System. Welche? A: (1) <one>Intrazelluläres Signalmolekül</one> (2) <one>Knochenbildner</one> []
33
+ - Andere Bezeichnung für ein <one>Glycosid</one>? <one>Zuckeracetal</one>. URL: https://de.wikipedia.org/wiki/Halbacetale []
34
+ - Die Vorläufersubstanz von <one>Anthranilat</one> in der Biosynthese von Tryptophan ist ...? <one>Chorismat</one>. URL: https://de.wikipedia.org/wiki/Chorismins%C3%A4ure
35
+ - The enzyme <one>Lactate Dehydrogenase</one> contains a <two>binding domain</two>. What can this domain bind? <one>NAD⁺</one>. URL: https://en.wikipedia.org/wiki/Lactate_dehydrogenase []
36
+ - Nenne ein Beispiel für einen <one>natürlichen Polyenfarbstoff</one>. A: <one>β-Carotin</one>. URL: https://de.wikipedia.org/wiki/Carotine#Nat.C3.BCrliches_Vorkommen
37
+ - <one>Compare</one>, roughly, the <two>fatty acids content</two> of adult insects to larva, in mg (start-point to end-point. A: From <one>20mg</one> down to <one>7mg</one>. []
38
+ - <one>AMP</one> stimuliert vor allem die Aktivität von ... ? <one>Proteinkinasen</one>. URL: https://de.wikipedia.org/wiki/Proteinkinasen []
39
+ - <one>Ureic acid</one> ist, chemisch betrachtet, was für eine Substanz? Ureic acid ist eigentlich ein <one>Purin</one>. URL: http://www.chm.bris.ac.uk/motm/uric-acid/uric-acid.gif []
40
+ - Why do cells require <one>folic acid</one>? Folic acid is used as <one>a coenzyme in the synthesis of nucleic acids</one>. URL: https://en.wikipedia.org/wiki/Folate#DNA_production
41
+ - Ist <one>Harnstoff</one> wasserlöslich? Ja - sogar <one>sehr gut</one>. []
42
+ - Welche Aminosäuren werden in <one>Kollagen</one> hydroxyliert? (1) <one>Lysin</one> (2) <one>Prolin</one> []
43
+ - <one>G-Proteine</one> weisen welche Aktivität auf? Eine <one>GTPase-Aktivität</one>. URL: https://de.wikipedia.org/wiki/G-Proteine []
44
+ - Nenne die beiden <one>Acetylcholinrezeptoren</one>. A: (1) <one>nicotinischer Acetylcholinrezeptor</one> (2) <one>muscarinischer Acetylcholinrezeptor</one> []
45
+ - Unterscheide zwei Gruppen von <one>Exoenzymen</one>. A: (1) <one>exospaltende</one>: diese spalten von einem Ende ausgehend (2) <one>endospaltende</one>: diese spalten irgendwo, also <two>innerhalb des Polymers</two> (Peptidkette) []
46
+ - Welche 3 <one>Strukturproteine</one> finden wir in dem <lightseagreen>Bindewegebe</lightseagreen>? (1) <one>Kollagen</one> (2) <one>Elastin</one> (3) <one>Retikulin</one> []
47
+ - Was ist <one>das grösste, bekannte Protein</one>? <one>Titin</one> - wobei man anmerken sollte, das Titin in <two>verschiedenen Isoformen</two> vorkommen kann, und diese knapp ~27.000 Aminosäuren die untere Grenze darstellen. URL: https://en.wikipedia.org/wiki/Titin
48
+ - Wie sieht eine <one>Carboxygruppe</one> genau aus (zeichne sie gedanklich)? <one>-C=O</one> und <one>-OH</one>. URL: https://de.wikipedia.org/wiki/Carboxygruppe []
49
+ - Bei der <one>Ubiquitinierung</one> wird das aktivierte Ubiquitin von E2 auf die <two>Epsilon-Aminogruppe</two> eines zuvor gebundenen Proteins. Was entsteht dabei? Eine <one>Isopeptidbindung</one>. URL: https://de.wikipedia.org/wiki/Isopeptidbindung []
50
+ - Provide another, more interesting word for the <one>Caspases</one>. A: <one>Executioner proteins</one>. URL: https://en.wikipedia.org/wiki/Caspase []
51
+ - <one>Omega-Schleifen</one> besitzen, im Gegensatz zu Alpha-Helix und Beta-Faltblätter, was nicht? Eine <one>regelmässige Struktur</one>. []
52
+ - Die Salze und Ester <one>welcher Substanz</one> werden als <two>Pyruvat</two> bezeichnet? <one>Brenztraubensäure</one>. URL: https://de.wikipedia.org/wiki/Brenztraubens%C3%A4ure []
53
+ - Gegeben sei <one>Cytosine</one>. Nun applizieren wir <mediumseagreen>nitrous acid</mediumseagreen>. Effekt davon? Es entsteht <one>Uracil</one>. []
54
+ - Wieso verwenden wir in der Biochemie, im Labor, <one>2-Mercaptoethanol</one>? Zum <one>Aufbrechen</one>/<one>Auflösen der Disulfidbrücken</one>. []
55
+ - Nenne ein Beispiel für ein <one>Homopolysaccharid</one>. A: <one>Cellulose</one>. URL: https://de.wikipedia.org/wiki/Cellulose []
56
+ - Wann wurde das <one>ATP Molekül</one> entdeckt? Im Jahre <one>1929</one>. []
57
+ - <one>ATP</one> hat wieviele <two>phosphoanhydride bonds</two>? <one>Zwei</one>. []
58
+ - Welches <one>Metall</one> enthält die <two>Nitrat-Reduktase</two>? <one>Molybdän</one>. URL: https://en.wikipedia.org/wiki/Nitrate_reductase_(NADH) []
59
+ - <one>Tocopherol</one> findet man bei? <one>Vitamin-E-Formen</one>. URL: https://en.wikipedia.org/wiki/Tocopherol []
60
+ - Unterschied zwischen <one>Pyruvat</one> und <one>Acetaldeyhd</one>? <one>Pyruvat</one> hat <two>eine CO₂ Gruppe mehr</two>. []
61
+ - <one>Xylose</one> contains <lightseagreen>n C atoms</lightseagreen>? <one>5</one>. URL: https://de.wikipedia.org/wiki/Xylose []
62
+ - <one>Phosphogylceride</one> können mit Alkoholen verestert werden. Nennen 5 davon in alphabetischer Reihenfolge. A: (Merkslogan: <royalblue>CEGIS</royalblue>) (1) Phosphatidyl<one>C</one><two>holin</two> (Lecithin) (2) Phosphatidyl<one>E</one><two>thanolamin</two> (3) Phosphatidyl<one>G</one><two>lycerin</two> (4) Phosphatidyl<one>I</one><two>nositol</two> (5) Phosphatidyl<one>S</one><two>erin</two> []
63
+ - Die <one>Cytochrome</one> sind Proteine, die was genau in ihrem Zentrum besitzen? Ein <one>Eisen (Fe) Atom</one>. []
64
+ - Nenne eine <one>Konsequenz der Peptidbindung</one>. A: <one>Beschränkt die Rotation</one>. []
65
+ - Nenne ein <one>Mineralcorticoid</one>. A: <one>Aldosteron</one>. URL: https://de.wikipedia.org/wiki/Aldosteron []
66
+ - Nenne ein Beispiel für eine Pflanze, die für ihre <one>Herzglykoside</one> berühmt ist. A: <one>Digitalis purpurea</one>. URL: https://de.wikipedia.org/wiki/Roter_Fingerhut []
67
+ - Nenne zwei verschiedene <one>Motorproteine</one>, die eine <two>ATPase-Aktivität</two> besitzen. A: (1) <one>Actin</one> (2) <one>Myosin</one> []
68
+ - <one>Hämoglobin</one> hat Eisen im Zentrum. Aber wie wird das Atom fixiert? Durch <one>4 Stickstoff-Atome</one>. []
69
+ - <one>Tropomyosins</one> regulate the function of which part of the muscle cell? They regulate the function of <one>actin filaments</one>. URL: https://en.wikipedia.org/wiki/Tropomyosin []
70
+ - Formel von <one>Thiosulfat</one>? A: <one>S₂O₃</one> ²⁻ URL: https://de.wikipedia.org/wiki/Thiosulfate
71
+ - <one>Pepsin</one> zeigt bei welchem pH Wert seine <two>maximale Aktivität</two>? Bei einem <one>pH-Wert</one> von <two>2</two>. []
72
+ - Wie ist <one>Pyridoxal-5-phosphat</one> (PLP) mit dem Derivat von Pyridoxin (Vitamin B6) strukturell verbunden? Über eine <one>Schiffsche Base</one> (<mediumseagreen>Imin</mediumseagreen>), kovalent. []
73
+ - <one>Cathin</one> ist verwandt mit? <one>Serotonin</one>. URL: https://de.wikipedia.org/wiki/Serotonin []
74
+ - Name two ways for a cell to <one>maintain a reducing atmosphere</one>. A: (1) a <one>high ratio of NADPH to NADP⁺</one> (2) a <one>high ratio of reduced to oxidized glutathione</one>
75
+ - Gibt es einen markanten Unterschied zwischen dem <one>26S-Proteasom</one> in Eukaryoten und in Prokaryoten? Ja - dem <one>prokaryotischen Proteasom fehlen die beiden 19S-Untereinheiten</one>. []
76
+ - Which two products are generated from <one>Rubisco's Oxygenase</one> activity? (1) <one>2-phosphoglycolate</one> (2) <one>3-phosphoglycerate</one> URL: https://en.wikipedia.org/wiki/Photorespiration []
77
+ - Das funktionelle Ende (die Atome) von <one>Phenylisothiocyanat</one> ist ... ? <one>-N=C=S</one> (also jeweils <two>mit Doppelbindung dazwischen</two>) URL: https://de.wikipedia.org/wiki/Phenylisothiocyanat
78
+ - <one>NAD</one> leitet sich aus welchem <two>Vitamin</two> heraus ab? <one>Niacin</one>. (Anmerkung: Der Mensch kann NAD aber auch aus dem Tryptophan-Abbauprodukt <two>Chinolinsäure</two> herstellen.) URL: https://de.wikipedia.org/wiki/Niacin []
79
+ - In der Biosynthese von Tryptophan erhält <one>Chorismat</one> eine <two>Aminogruppe</two> von ... ? <one>Glutamin</one>. []
80
+ - Nenne Input und Output der <one>Glycerinaldehyd-3-phosphat-Dehydrogenase</one> (GAPDH). A: (1) <one>Input</one>: <two>Glycerinaldehyd-3-Phosphat</two>. (2) <one>Output</one>: <two>1,3-Bisphosphoglycerat</two>. []
81
+ - Bei Säugern: <one>das häufigste Protein in deren Körpern</one> ist ... ? <one>Kollagen</one>. URL: https://de.wikipedia.org/wiki/Kollagen []
82
+ - In the <one>liver</one>, <lightseagreen>acetyl-CoA</lightseagreen> has to be converted to ... ? <one>Ketone bodies</one>. URL: https://en.wikipedia.org/wiki/Ketone_bodies []
83
+ - Es gibt ein Enzym namens <one>DNMT3a</one>/<one>3b</one>. Wieso <two>3a</two> und <two>3b</two> im Namen? Es handelt sich um ein <one>Isoenzym</one>. URL: https://de.wikipedia.org/wiki/Isoenzym []
84
+ - How can the <one>Alpha Helix</one> structure be maintained? Through <one>internal H Bonding</one>. []
85
+ - Das Gegenteil einer <one>Azidose</one> ist ... ? Die <one>Alkalose</one>. URL: https://de.wikipedia.org/wiki/Alkalose []
86
+ - Wann wird die <one>AMPK</one> aktiv? Die <one>AMP-aktivierte Kinase AMPK</one> wird dann aktiv, wenn <mediumseagreen>AMP</mediumseagreen> in einer Zelle <three>akkumuliert</three>.
87
+ - Was ist <one>der entscheidendene Baustein des Cholesterins</one>? <one>Isopentenylpyrophosphat</one>. URL: https://de.wikipedia.org/wiki/Isopentenylpyrophosphat []
88
+ - Wo genau werden <one>Ketonkörper</one> produziert? In den <one>Mitochondrien der Leberzellen</one>. URL: https://de.wikipedia.org/wiki/Ketok%C3%B6rper []
89
+ - Nenne ein <one>Coenzym</one>, das beim <two>Aminosäureabbau</two> eine wichtige Rolle spielt. A: <one>Pyridoxalphosphat</one>. URL: https://de.wikipedia.org/wiki/Pyridoxalphosphat []
90
+ - Das Sterol <one>Cholesterol</one> kommt wo vor? In den <one>Membranen tierischer Zellen</one>. URL: https://de.wikipedia.org/wiki/Cholesterin []
91
+ - Nenne 4 Protease-Typen. A: (1) <one>Serinproteasen</one> (2) <one>Zinkproteasen</one> (3) Thiolproteasen (4) Aspartatproteasen
92
+ - Wann wurde <one>Neopterin</one> erstmals (aus dem Harn) isoliert? <one>1889</one>. URL: https://de.wikipedia.org/wiki/Neopterin []
93
+ - Nenne einen besseren Begriff für das Wort <one>Herzglykoside</one>. A: <one>Herzwirksame Glykoside</one>. URL: https://de.wikipedia.org/wiki/Herzglykoside []
94
+ - In der Biochemie und der Gentechnik: wofür steht die Abkürzung <one>ISH</one>? <one>In-situ Hybridisierung</one>. URL: https://de.wikipedia.org/wiki/In-situ-Hybridisierung []
95
+ - <one>How many ATP molecules</one> does <two>one ATP synthase</two> produce / second? <one>400</one>. []
96
+ - <one>Saccharose</one> besteht aus ... ? <one>Fructose</one> + <one>Glucose</one>. URL: https://de.wikipedia.org/wiki/Saccharose []
97
+ - Hat <one>Glykogen</one> mehr Energie gespeichert als <one>Fettsäuren</one>? Nein. <two>Glykogen</two> ist <one>weniger reduziert</one>, folglich hat es auch weniger Energie gespeichert. []
98
+ - Was enthält <one>geriebener Meerrettich</one>? <one>Peroxidase</one>. URL: https://de.wikipedia.org/wiki/Peroxidasen []
99
+ - Welcher <one>chemische Bindungstyp</one> ist bei Glucose zu finden? Die <one>kovalente Bindung</one>. URL: https://de.wikipedia.org/wiki/Kovalente_Bindung []
100
+ - Nenne eine wichtige Vorläufersubstanz zu <one>Anthranilate</one>. A: <one>Chorismate</one>. URL: https://en.wikipedia.org/wiki/Chorismic_acid []
101
+ - Wie nennen wir die <one>Ringform der Ribose</one>? <one>Beta-Furanose</one>. URL: https://en.wikipedia.org/wiki/Furanose []
102
+ - Haben <one>Ester</one> immer eine <two>-O-Brücke</two>? Nein. <one>Thioester</one> können ein <mediumseagreen>-S- Atom</mediumseagreen> als Brücke haben. URL: https://de.wikipedia.org/wiki/Ester []
103
+ - Ist <one>Vitamin D</one> ein <two>Hormon</two>? Eigentlich ist es ein <one>Prohormon</one>. URL: https://de.wikipedia.org/wiki/Vitamin_D []
104
+ - Definiere den Begriff <one>Hydrolyse</one>. A: <two>Aufbrechen einer Bindung</two> unter <one>Addition eines Wassermoleküls</one>. []
105
+ - Gegeben ist <one>Amylopektin</one> und <one>Amylose</one>. Eines davon ist verzweigt, eines davon unverzweigt. Wie merke ich mir welches was ist? (<mediumturquoise>MNEMO</mediumturquoise>) Das kürzere (<one>Amylose</one>) ist frei, geradlinig und somit unverzweigt. Das längere (<one>Amylopektin</one>) hingegen ist kompliziert, länger, und somit verzweigt. []
106
+ - Die <one>Steroide</one> leiten sich wovon ab? Von den <one>Sterinen</one>. URL: https://de.wikipedia.org/wiki/Sterine []
107
+ - Wo finden wir beim Menschen viel an <one>Arginase</one>? Als Teil des <one>Harnstoffzyklus</one>. URL: https://de.wikipedia.org/wiki/Arginase_1 []
108
+ - <one>Glykogen</one> kann schnell umgewandelt werden in ... ? <one>Glucose-1-Phosphat</one>. URL: https://de.wikipedia.org/wiki/Glucose-1-phosphat []
109
+ - Was heisst <one>dAMP</one>? <one>Desoxyadenosinmonophosphat</one>. URL: https://de.wikipedia.org/wiki/Desoxyadenosintriphosphat []
110
+ - Nenne einen <one>direkten Vorläufer von Cholesterin</one>. A: <one>Lanosterin</one>. URL: https://de.wikipedia.org/wiki/Lanosterin []
111
+ - Wann wurde das regulatorische Protein <one>Ubiquitin</one> entdeckt? Im Jahre <one>1975</one>. URL: https://de.wikipedia.org/wiki/Ubiquitin []
112
+ - Bei der <one>künstlichen DNA-Synthese</one> ist welche Gruppe chemisch geschützt? Das <one>5'-Ende</one>. URL: https://upload.wikimedia.org/wikipedia/commons/thumb/f/f2/Nukleotid_num.svg/1200px-Nukleotid_num.svg.png []
113
+ - <one>5-Methylcytosin</one> kann zu <one>Thymin</one> deaminieren, also ein <three>NH₃</three> verlieren. Was brauchen wir aber noch, und warum? Ein <one>H₂O Molekül</one>, das uns das <two>O</two> liefert. []
114
+ - Wie kann man <one>künstlich den Abbau eines Proteins erschweren</one>? Durch <one>Anheften einer Acetylgruppe</one> (<two>-C(O)CH₃</two>) <one>am Aminoende</one>. []
115
+ - Nenne drei bekannte <one>Disaccharide</one>. A: (1) <one>Lactose</one> (2) <one>Maltose</one> (3) <one>Saccharose</one> []
116
+ - Nenne zwei <one>Komplexe in der Biochemie</one>. A: (1) <one>Chlorophyll</one> (2) <one>Hämoglobin</one> []
117
+ - <one>Ester</one> gehen woraus hervor und was geht dabei verloren? Aus einer <mediumseagreen>Kondensationsreaktion</mediumseagreen> (H₂O wird abgespalten) zwischen einer <one>Carbonsäure</one> (funktionelle Carboxyl-Gruppe <mediumseagreen>R-COOH</mediumseagreen>) und eines <one>Alkohols</one> (Hydroxyl-Gruppe <mediumseagreen>R-OH</mediumseagreen>). []
118
+ - Andere Bezeichnung für eine <one>Diphosphatgruppe</one>? <one>Pyrophosphat</one>. URL: https://de.wikipedia.org/wiki/Diphosphate []
119
+ - Wo mögen wir <one>konventionelles Myosin</one> finden? In <one>Muskelfasern</one>. URL: https://de.wikipedia.org/wiki/Muskelfaser#Faserarten []
120
+ - Die <one>Saccharose</one> kann gespalten werden in welche Einfachzucker? (1) <one>Glucose</one> (2) <one>Fruktose</one> []
121
+ - Die <one>Hexokinase</one> wird innerhalb der Zelle wodurch inhibiert? Durch einen <two>Überschuss ihres Produktes</two>: <one>Glucose-6-phosphat</one>. URL: https://de.wikipedia.org/wiki/Hexokinase []
122
+ - In der <one>Proteinbiochemie</one>: andere Bezeichnung für <two>closed barrel</two>? <one>TIM Barrels</one>. URL: https://en.wikipedia.org/wiki/TIM_barrel []
123
+ - Das Disaccharid <one>Saccharose</one> besteht aus ...? A: <one>Glucose</one> und <one>Fructose</one> (<royalblue>GluFu</royalblue>). []
124
+ - Andere Bezeichnung für die <one>Proteases</one>? <one>Proteinases</one>. URL: https://en.wikipedia.org/wiki/Protease []
125
+ - <one>Wie</one> wird die <two>Phosphoinositid-Kaskade</two> ausgelöst? Durch zahlreiche <one>Hormone</one>. URL: https://de.wikipedia.org/wiki/Phosphoinositid-3-Kinasen []
126
+ - Wozu dient der <one>Pentosephosphat-Weg</one>? Er dient zur Erzeugung von <one>NADPH</one> und von <one>Pentosen</one>. Die Pentosen sind wichtig für die Ribose-Gewinnung, also <two>Nukleotide</two>.
127
+ - <one>Citric acid</one> contains how many carboxylic acid groups? <one>3</one>. URL: https://en.wikipedia.org/wiki/Citric_acid []
128
+ - Was sind <one>Lektine</one>? <two>Lektine</two> sind <one>kohlenhydratbindende Proteine</one>. URL: https://de.wikipedia.org/wiki/Lektine []
129
+ - Was kann man zu <one>Alpha</one> und <one>Beta Phosphat</one> im <two>ATP Molekül</two> in-vivo sagen? <one>In-vivo</one> liegt ATP immer <one>mit Mg²⁺ cheliert</one> vor (<royalblue>chelated</royalblue>).
130
+ - Nenne zwei verschiedene Substanzen, die die <one>Chlortetracyclinsynthese</one> unterdrücken können. A: (1) <one>Glucose</one> (2) <one>Phosphat</one> []
131
+ - Die <one>Eikosanoide</one> leiten sich von welcher Säure ab? <two>Eikosanoide</two> leiten sich von der <one>Arachidonsäure</one> ab. URL: https://de.wikipedia.org/wiki/Arachidons%C3%A4ure []
132
+ - Die <one>Glyzerinkomponente der Neutralfette</one> stammen aus ... ? <one>Glycerinaldehyd-3-Phosphat</one>. URL: https://de.wikipedia.org/wiki/Glycerinaldehyd-3-phosphat []
133
+ - Which base can be found in <one>IMP</one> (<two>inosine monophosphate</two>)? The <one>hypoxanthin base</one>. URL: https://en.wikipedia.org/wiki/Inosinic_acid []
134
+ - What is the job of the <one>19S particles</one> of the <three>proteasome</three>? They <one>deubiquitinate</one> the proteins as they are degraded. []
135
+ - Was genau muss mit <one>Adenin</one> geschehen damit wir <one>Inosin</one> erhalten? Das <one>C6 Atom</one> von <two>Adenin</two> muss <lightseagreen>desaminiert</lightseagreen> werden. []
136
+ - <one>Somatostatin</one> besitzt <two>wie viele Aminosäuren</two>? <one>14</one>. URL: https://de.wikipedia.org/wiki/Somatostatin []
137
+ - <one>Zwei Thiolgruppen</one> können was ...? A: Eine <one>Disulfidbrücke</one> ausbilden. []
138
+ - Wo in der Zelle mögen wir <one>3-Methylhistidin</one> finden? In <one>Histonen</one>. URL: https://en.wikipedia.org/wiki/3-Methylhistidine []
139
+ - Vorläufer von <one>T3</one>? <one>Tyrosin</one>. URL: https://en.wikipedia.org/wiki/Thyroid_hormones []
140
+ - <one>Transducin</one> ist was für ein Protein? <two>Transducin</two> ist ein <one>heterotrimeres G Protein</one>. URL: https://de.wikipedia.org/wiki/Transducin
141
+ - Welche Vitamine sind <one>Steroide</one>? A: <one>Vitamin</one> <two>D</two>. (Merkschema: Steroi_<royalblue>D</royalblue>_e). []
142
+ - Wie können wir die <one>quantitative Bestimmung reduzierender Zucker</one> erfassen? Mit Hilfe der Methode nach <one>Luff-Schoorl</one>. URL: https://de.wikipedia.org/wiki/Methode_nach_Luff-Schoorl []
143
+ - Nenne einen <lightseagreen>C3-Körper</lightseagreen> der an der <one>Biosynthese von Fettsäuren</one> beteiligt ist, nicht jedoch an deren Abbau. A: <one>Malonyl-CoA</one>. URL: https://de.wikipedia.org/wiki/Malonyl-CoA []
144
+ - Kurzformel für <one>inorganic pyrophosphate</one>? <one>PPi</one>. URL: https://en.wikipedia.org/wiki/Pyrophosphate []
145
+ - <one>Imidazol</one> besitzt <two>wieviele N-Atome</two>? <one>2</one>. URL: http://www2.chemie.uni-erlangen.de/projects/vsc/chemie-mediziner-neu/heterocyclen/bilder/imidazol.gif []
146
+ - Bei der <one>Peptidchain eines Proteins</one>: wieso sind die <lightseagreen>H-H Bindungen</lightseagreen> notwendig? Sie <one>stabilisieren die Proteinkette</one>. []
147
+ - Nach der Anzahl der Kohlenstoffatome kann man <one>Monosaccharide</one> einteilen. Nenne die Namen für 3, 4, 5, 6 und 7 C-Atomen solcher Monosaccharide. A: (1) <one>Triosen</one>: <two>3C</two> (2) <one>Tetrosen</one>: <two>4C</two> (3) <one>Pentosen</one>: <two>5C</two> (4) <one>Hexosen</one>: <two>6C</two> (5) <one>Heptosen</one>: <two>7C</two> []
148
+ - Die <one>Hydroxylierung von Prolin</one> führt zu ...? <one>4-Hydroxyprolin</one>. URL: https://de.wikipedia.org/wiki/Hydroxyprolin []
149
+ - Die <one>Serin-Hydroxymethyltransferase</one> konvertiert <three>Serin</three> zu ... ? Zu <royalblue>Glycin</royalblue> (<one>Serin → Glycin</one>). URL: https://en.wikipedia.org/wiki/Serine_hydroxymethyltransferase []
150
+ - Input, Output der <one>Pyrophosphatase</one>? (1) <one>Input</one>: <two>Pyrophosphate P-P</two> (2) <one>Output</one>: <two>2x Phosphate</two> []
151
+ - Name a residue in <one>N-Acetylmuramic acid</one>. A: <one>D-Lactic acid residue</one>. []
152
+ - The abbreviation <one>ampholytes</one> stands for ... ? <one>Amphoteric electrolytes</one>. URL: https://en.wikipedia.org/wiki/Amphoterism []
153
+ - Welche <one>Superfamilie</one> finden wir in <mediumseagreen>Alpha-Keratin</mediumseagreen>? Die Familie der <one>coiled-coil Proteine</one>. URL: https://en.wikipedia.org/wiki/Coiled_coil []
154
+ - <one>Histamin</one> wird gemeinsam mit ... gespeichert? Mit <one>Heparin</one>. (Mnemonic: H...H <two>Histamin-Heparin</two>) []
155
+ - The <one>ubiquitin protein</one> has a prominent set of <three>which aminoacid</three>? It contains <one>7 lysine residues</one> (<one>7 lysines</one>). []
156
+ - Nenne ein konkretes Beispiel für eine <one>Hämoglobinopathie</one>. A: Die <one>Sichelzellenanämie</one>. URL: https://de.wikipedia.org/wiki/Sichelzellenan%C3%A4mie []
157
+ - Warum verwenden <one>Erythrozyten</one> nur die <two>Glykolyse</two> als Energiequelle? Da <two>Erythrozyten</two> <one>keine Mitochondrien besitzen</one>. []
158
+ - Nenne ein Beispiel für ein <one>Dipeptid</one>. A: <one>Aspartam</one>. (Besteht aus <one>aspartic acid</one>, also <royalblue>D</royalblue>, und <one>phenylalanine</one>, also <royalblue>F</royalblue> - in Summe <royalblue>DF</royalblue>.) URL: https://de.wikipedia.org/wiki/Aspartam []
159
+ - Nenne eine <one>chemische Untergruppe</one>, als Teil des <two>Pyruvat</two>-Moleküls. A: <one>Acetat</one>. []
160
+ - Was geschieht wenn <one>Zuckermoleküle</one> mit einer <one>Säure</one> verestert werden? Sie werden dadurch <one>aktiviert</one>. []
161
+ - Warum sind <one>Lectine</one> für manche Zellen wichtig? <one>Lectine</one> <two>vermitteln Wechselwirkungen zwischen Zellen</two>. []
162
+ - Welchen eigentlichen Zweck erfüllt <one>Urin</one> im menschlichen Körper? <one>Ausscheiden von Stickstoff</one>. URL: https://de.wikipedia.org/wiki/Urin#Entstehung []
163
+ - Name the <one>trisaccharide of glucose</one>. A: <one>Maltotriose</one>. URL: https://en.wikipedia.org/wiki/Maltotriose []
164
+ - Die <one>Guanidino-Gruppe</one> hat wieviele <lightseagreen>H-Atome</lightseagreen> (nur in ihrer Gruppe selbst)? Die <mediumseagreen>Guanidino-Gruppe</mediumseagreen> besitzt <one>5 H Atome</one>. URL: https://en.wikipedia.org/wiki/Guanidine []
165
+ - <one>Normal hemoglobin</one> will last n days? <one>120 days</one>. []
166
+ - Die <one>Ribose</one> ist über welche Stickstoffe bei <two>Purinen</two> und <two>Pyrimidinen</two> mit dem Zucker verknüpft? (1) <one>Pyrimidine</one> <two>N1</two> (2) <one>Purine</one> <two>N9</two> []
167
+ - Nenne drei verschiedene Vertreter der <one>Glucane</one>. A: (1) <one>Stärke</one> (2) <one>Glycogen</one> (3) <one>Cellulose</one> []
168
+ - Nenne ein Beispiel für eine <one>Omega-3-Fettsäure</one>. A: Die <one>Eicosapentaensäure</one> (<one>Ei-co-sa-penta-en-säure</one>). URL: https://de.wikipedia.org/wiki/Eicosapentaens%C3%A4ure []
169
+ - Wieviele <one>Fe</one>/<one>S-Zentren</one> hat <two>Komplex I</two> der Atmungskette? <one>8</one>. []
170
+ - <one>Verträglichkeitsgrenze von Histamin</one> für den Menschen, in mg? <one>10 mg</one> - also ziemlich wenig. URL: https://de.wikipedia.org/wiki/Histamin []
171
+ - Was findet man bei <one>Kollagenketten</one> innen? <one>Glycin</one>. []
172
+ - <one>Molecular weight of Titin</one>, in Dalton? About <one>3.000.000 Dalton</one> (<two>3 million Dalton</two>).
173
+ - Welchen <one>Cofaktor</one> haben die <two>Carboxylasen</two>? <one>Biotin</one>. URL: https://de.wikipedia.org/wiki/Biotin []
174
+ - Was ist <one>das wichtigste Steroid in Tieren</one>? <one>Cholesterin</one>. URL: https://de.wikipedia.org/wiki/Cholesterin []
175
+ - Nenne <one>zwei Beispiele</one> für <two>Polyamine</two>. Welche <three>Ladung</three> haben sie? <one>Spermin</one> und <one>Spermidin</one>. Sie haben eine <two>positive Ladung</two>. (Mnemonic: <three>DNA ist negativ geladen</three>, somit macht es Sinn das Spermin/Spermidin positiv geladen sind.) []
176
+ - The <one>Janus Kinases</one> have which activity exactly? <one>Tyrosine kinase activity</one>. URL: https://en.wikipedia.org/wiki/Janus_kinase []
177
+ - Warum fühlen sich <one>Latex-Handschuhe</one> und <one>Menthol-Zuckerl</one> irgendwie verwandt an? Weil beide aus <one>Isopren-Einheiten</one> bestehen. []
178
+ - Wofür steht die Abkürzung <one>T-Tubuli</one>? <one>Transverale Tubuli</one>. URL: http://flexikon.doccheck.com/de/Transversaltubulus []
179
+ - Nenne einen <one>Zuckeralkohol</one>, der mit <lightseagreen>I</lightseagreen> beginnt. A: <one>Inositol</one>. URL: https://de.wikipedia.org/wiki/Inosit []
180
+ - Aus der <one>Arachidonsäure</one> werden welche Botenstoffe gebildet? Zum Beispiel die <one>Eikosanoide</one> (<two>Arachidonsäure → Eikosanoide</two>). []
181
+ - Wo findet (intrazellulär) die <one>Glykosylierung der Proteine</one> statt? (1) Im <one>Golgi-Komplex</one> (2) Im Lumen des <one>endoplasmatischen Retikulums</one> []
182
+ - <one>Ribulose-1,-5-bisphosphat</one> besitzt <three>n C-Atome</three>? A: <one>5</one>. URL: https://de.wikipedia.org/wiki/Ribulose-1,5-bisphosphat []
183
+ - <one>Beta-oxidation</one> forms which organic molecule? <one>Acetyl-CoA</one>. URL: https://en.wikipedia.org/wiki/Acetyl-CoA []
184
+ - In welchen Komplexen der Atmungskette werden <one>Protonen gepumpt</one>? In Komplex <one>I</one>, <two>III</two> und <two>IV</two> (<three>1,3,4</three>; <royalblue>1,3,4-Pumper</royalblue>). []
185
+ - Ein <one>Orthophosphat</one> besitzt wieviele <two>P-Atome</two>? <one>1</one> - die Summenformel ist <two>PO₄ ³⁻</two>. URL: https://www.sciencedirect.com/topics/engineering/orthophosphate []
186
+ - Welche Person stellte im Jahre <one>1930</one> die <lightseagreen>Theorie des Übergangszustandes</lightseagreen> auf? <one>Henry Eyring</one>. URL: https://en.wikipedia.org/wiki/Henry_Eyring_(chemist) []
187
+ - Wie erfolgt <one>die Oxidation der Fettsäure</one> <two>in eukaryoten Zellen</two>? Durch <one>Beta-Oxidation</one> in den <two>Mitochondrien</two>, bei der jeweils <mediumturquoise>zwei C-Atome</mediumturquoise> abgespalten werden. URL: https://en.wikipedia.org/wiki/Beta_oxidation []
188
+ - <one>Inosine</one> can pair with ...? (1) <one>U</one> (2) <one>C</one> (3) <one>A</one> []
189
+ - Nenne zwei Beispiele für <one>ungewöhnliche Didesoxyzucker</one> die mit <two>C</two> respektive <two>T</two> im Namen beginnen. A: (1) <one>Colitose</one> (2) <one>Tyvelose</one> []
190
+ - Nenne ein Beispiel für ein <one>kondensiertes Ringsystem</one> in der Zelle. A: <one>Purin-Nukleotide</one>. []
191
+ - Nenne einen <one>Hemmstoff von Biotin</one>. A: <one>Avidin</one>. URL: https://de.wikipedia.org/wiki/Avidin []
192
+ - Nenne ein <one>Derivat von Shikimat</one>. A: <one>Chorismat</one>. URL: https://en.wikipedia.org/wiki/Chorismic_acid []
193
+ - Can <one>water</one> act as a <two>nucleophile</two>? Yes. []
194
+ - Das <one>Avidin-Protein</one> stammt ursprünglich aus ... ? Aus <one>Hühnereiern</one>. URL: https://de.wikipedia.org/wiki/Avidin []
195
+ - Was meinen wir umgangssprachlich mit <one>Acyl-tRNA</one>? Dies ist eine <one>mit einer Aminosäure beladene tRNA</one>. []
196
+ - Was ist <one>das häufigste Protein der Erythrocyten-Membran</one>? Das <one>Glykophorin</one>. URL: https://de.wikipedia.org/wiki/Glykophorine []
197
+ - We want to see a protein with quaternary structure. Name the most important requirement of that! A: It <one>must have more than one polypeptide</one>. []
198
+ - Aus welchen zwei Komponenten wird <one>S-Adenosylmethionin</one> gebildet? (1) <one>ATP</one> (2) <one>Methionin</one> []
199
+ - Anderes Wort für den <one>Rohrzucker</one>? Wieviele C hat dieser Zucker? <one>Saccharose</one>. Hat <two>12 C-Atome</two>, also 2x6 C. []
200
+ - <one>Saccharose</one> versus <one>Fructose</one>: wer von den beiden ist süßer? Die <one>Fructose</one> ist viel süßer.
201
+ - <one>Oligosaccharidreste</one> können posttranslational angeheftet werden. Welche und wie? (1) <royalblue>N-Glykosidisch</royalblue> auf <one>Asparagin</one> (2) <royalblue>O-Glykosidisch</royalblue> auf <one>Serin</one> oder <one>Threonin</one> []
202
+ - Nenne einen Abbauweg für <one>D-Galaktose</one>. A: Der <one>Leloir Abbauweg</one>. URL: https://en.wikipedia.org/wiki/Leloir_pathway []
203
+ - Nenne einen <one>Vertreter der Isoprene</one>, dessen Name mit dem Buchstaben <two>D</two> beginnt. A: <one>Dolicholphosphat</one>. (Von Farnesylpyrophosphat zweigt die Produktion von Dolicholphosphat ab.) URL: https://flexikon.doccheck.com/de/Dolicholphosphat []
204
+ - Wozu können <one>Herzglykoside</one> eingesetzt werden? (1) zur <one>Therapie von Herzinsuffizienz</one> (2) gegen <one>Vorhofflimmern</one> []
205
+ - Das Enzym <one>Hydrogenase</one> verwendet was als <two>Input</two> (als sein <three>Substrat</three>)? <one>H₂</one>. URL: https://de.wikipedia.org/wiki/Hydrogenase []
206
+ - Nenne ein <one>Derivat des Shikimats</one>. A: <one>Chorismat</one>. URL: https://de.wikipedia.org/wiki/Chorismins%C3%A4ure []
207
+ - Give another name for a <one>structural analogue</one>. A: <one>Antimetabolites</one>. []
208
+ - Nenne ein Beispiel für ein <one>geranylgeranyliertes Protein</one>. A: Die <three>GTPase</three> <one>Rho</one>. URL: https://de.wikipedia.org/wiki/Rho-GTPase []
209
+ - Was ist die <one>häufigste Brückenart in Proteinen</one>? A: <one>Disulfidbrücken</one>. URL: https://de.wikipedia.org/wiki/Disulfidbr%C3%BCcke []
210
+ - Was heisst <one>GPI-Anker</one>? <one>Glykosyl-phosphatidyl-inositol-Anker</one>. []
211
+ - <one>Spurenelemente</one>, die von biologischen Organismen genutzt werden, sind ... (bezogen auf das Periodensystem)? A: <one>Metalle</one>. URL: https://de.wikipedia.org/wiki/Spurenelement []
212
+ - Andere Bezeichung für <one>Lecithin</one>? <one>Phosphatidyl</one><two>c</two><one>holin</one>. URL: https://en.wikipedia.org/wiki/Lecithin []
213
+ - Bei der <one>Ubiquitinierung</one>: woher stammt die Energie beim ersten Schritt des <two>Enzyms E1</two>? Aus <one>ATP</one>. []
214
+ - <one>Aldehyd</one> + <one>Alkohol</one> ergibt? Ein <one>Halbacetal</one>. URL: https://de.wikipedia.org/wiki/Halbacetale []
215
+ - Wann wurde der Begriff <one>Biochemie</one> erstmals verwendet? Im Jahre <one>1858</one>, von <two>Vinzenz von Kletzinsky</two>. URL: http://www.biographien.ac.at/oebl/oebl_K/Kletzinsky_Vinzenz_1826_1882.xml []
216
+ - <one>Täglicher Glucosebedarf des Gehirns bei Erwachsenen</one>, <two>in Gramm</two>? <one>120 g</one> / <one>Tag</one>. []
217
+ - <one>Biotin</one> wird auch <lightseagreen>Vitamin H</lightseagreen> genannt. Wieso H? <springgreen>H</springgreen> ... für <one>Haut</one>, im Jahr <two>1898</two>, als es von Steinitz entdeckt wurde. []
218
+ - <one>Lysosomen</one> enthalten ca. 50 verschiedene, hydrolytische Enzyme. Nenne eine Proteingruppe, die sehr zahlreich in den Lysososomen vorhanden ist. A: <one>Cathepsine</one>. URL: https://de.wikipedia.org/wiki/Cathepsine []
219
+ - Bei <one>allosterisch regulierten Enzymen</one> gibt es die <two>R Form</two> und die <two>T Form</two>. Was heisst das jeweils? (1) <one>R</one> ... <two>relaxed</two> (2) <one>T</one> ... <two>tense</two> []
220
+ - Wo, zum Beispiel, kann <one>Palmitinsäuremyricylester</one> gefunden werden? In <one>Bienenwachs</one>. URL: https://de.wikipedia.org/wiki/Bienenwachs#Aufbau_und_Eigenschaften []
221
+ - Which two types of <one>ATP-Formation</one> exist? (1) <one>oxidative phosphorylation</one> (2) <one>substrate phosphorylation</one> []
222
+ - Wie nennen wir <one>biochemisch aktiviertes Isopren</one>? <royalblue>IPP</royalblue>: <one>Isopentenyl-Pyrophosphat</one>. URL: https://en.wikipedia.org/wiki/Isopentenyl_pyrophosphate []
223
+ - Die <one>Konformation der glykosidischen Bindung</one> ist ... syn oder anti? <one>Anti</one>. []
224
+ - Sind <one>Radikale</one> in der Biologie häufig? Nein, sie sind <two>sehr selten</two>, da sie <one>sofort aufgefangen werden</one>.
225
+ - Die Substanzen <one>Kreatinphosphat</one>, <one>Phosphoenolpyruvat</one> und <one>Carbamoylphosphat</one> haben alle <two>mehr Energie gespeichert als ATP</two>. Welche dieser 3 Substanzen hat mit <three>-62.0</three> kJ/mol die <three>meiste innere Energie</three>? <one>Phosphoenolpyruvat</one> (<two>PEP</two>). []
226
+ - Formel des <one>Phosphation</one>? <one>PO₄</one> <two>³⁻</two>. []
227
+ - What is a <one>PEST</one> sequence? This is <royalblue>a sequence</royalblue> that is rich in <one>proline</one> (<two>P</two>), <one>glutamic acid</one> (<two>E</two>), <one>serine</one> (<two>S</two>), and <one>threonine</one> (<two>T</two>). It may act as a signal for protein degradation. URL: https://en.wikipedia.org/wiki/PEST_sequence []
228
+ - Name two <one>dihedral angles</one> in Biochemistry. A: (1) <one>Psi Angle</one> between <two>C-C</two> (2) <one>Phi Angle</one> between <two>C-N</two> []
229
+ - Definiere den Begriff <one>Racemat</one>. A: Ein <one>Racemat</one> ist <two>eine 1:1 Mischung zweier Enantionmere</two>. []
230
+ - Die <one>Transaminasen</one> benötigen welchen <two>Coenzym</two>? Sie benötigen das Coenzym <one>Pyridoxal-5-phosphat</one>. URL: https://de.wikipedia.org/wiki/Pyridoxalphosphat []
231
+ - Anderer Begriff für den <one>Verbrauch von ATP</one>? <one>ATP-Hydrolyse</one>. []
232
+ - Welcher Gerinnungsfaktor ist jeweils bei <one>Hämophilie B</one> und bei <one>Hämophilie A</one> defekt? A: (1) <one>Hämophilie A</one>: Gerinnungsfaktor Faktor <mediumseagreen>VIII</mediumseagreen> (<peru>8</peru>) (2) <one>Hämophilie B</one>: Gerinnungsfaktor Faktor <mediumseagreen>IX</mediumseagreen> (<peru>9</peru>) []
233
+ - Nenne ein <one>Enzymbeispiel für die</one> <three>Metallionenkatalyse</three>. A: Die <one>Carboanhydrase</one>. URL: https://de.wikipedia.org/wiki/%CE%91-Carboanhydrasen []
234
+ - <one>Imidazol</one> hat <two>n N</two> und <two>n C</two> Atome? <mediumseagreen>3x C</mediumseagreen>, <mediumseagreen>2x N</mediumseagreen>. <one>Imidazol</one> ist ein <two>zyklisches Molekül</two>. URL: https://de.wikipedia.org/wiki/Imidazol []
235
+ - <three>Organophosphate</three> wie das hochgiftige Insektizid <one>E605</one> Sarin inhbieren die <two>Acetylcholinesterase</two>. Um welche Art von Inhibition handelt es sich hier? Es handelt sich hier um eine <two>irreversible Inhibition</two> - das Enzym wird hierbei <one>kovalent modifiziert</one>.
236
+ - Nenne zwei wichtige, <one>eukaryote Adhäsionsproteine</one>. A: (1) <one>Fibronectin</one> (2) <one>Laminin</one> []
237
+ - Nenne ein Beispiel für ein <one>Aminoalkohol</one>. A: <one>Sphingosin</one>. URL: https://de.wikipedia.org/wiki/Sphingosin
238
+ - Nenne einen gefährlichen Stoff, der durch <one>Grillen & Rauch</one> entstehen kann. A: <one>Benzo(a)pyren</one>. URL: https://de.wikipedia.org/wiki/Benzo%28a%29pyren []
239
+ - Anderes Wort für ein <one>disulfide bond</one>? <one>Cystin</one>.
240
+ - Wie ist die Tendenz von <one>Glucose</one> zur Ringbildung? <one>Glucose</one> hat eine <two>starke Tendenz zur Ringbildung</two>. []
241
+ - The E. coli protease <one>Lon</one> requires <two>n ATP molecules</two> for every peptide bond cleaved? <one>2 ATP molecules</one>. []
242
+ - In der Biochemie: nenne zwei Typen von <one>kinetischen Mechanismen</one>. A: (1) <one>Ping-Pong Mechanismen</one> (2) <one>Sequentielle Mechanismen</one> []
243
+ - What serves as the <one>ATP-Buffer in muscle tissue</one>? (1) <one>Creatine</one> (2) <one>Creatine-phosphate</one> (Both have a <two>high energy P-bond</two>.) []
244
+ - Ein <one>adulter Mensch</one> kann n Gramm an <three>Glykogen</three> speichern? <one>400 g</one>. URL: https://de.wikipedia.org/wiki/Glykogen []
245
+ - What do the <one>serine proteases</one> catalyze in general? They <one>catalyze the hydrolysis of peptide bonds</one>. URL: https://en.wikipedia.org/wiki/Serine_protease []
246
+ - Was macht die <one>Glykogen-Phosphorylase</one>? Dieses Enzym setzt <one>Glucose</one>, aus <two>Glykogen</two>, frei. URL: https://de.wikipedia.org/wiki/Glycogenphosphorylase []
247
+ - Die <one>Nucleophilie einer Substanz</one> hängt eng ... womit zusammen? Mit ihrer <one>Basizität</one>. URL: http://www.chemgapedia.de/vsengine/glossary/de/nucleophilie.glos.html []
248
+ - Welches sind die wichtigsten <one>Homoglykane</one> (4 nennen)? (1) das <one>Glykogen</one> der <two>Tiere</two> (2) <one>Stärke</one> aus Pflanzen (3) <one>Zellulose</one> aus Pflanzen (4) <one>Chitin</one> als Gerüstsubstanz bei Arthropoda und Pilzen
249
+ - Anderer Begriff für <one>Stärke</one>? <one>Polymerisierte Glucose</one>. []
250
+ - In Biochemistry: <one>psi bonds</one> can be seen where? <one>C-C</one><two>-PSI</two> (Mnemo: <three>See-See-Psi</three>). []
251
+ - In der <one>Atmungskette der Mitochondrien</one> wandern die Elektronen durch die Atmungskette. Worauf werden die Elektronen am Ende der Atmungskette übertragen? Sie werden auf <one>molekularen Sauerstoff (O₂)</one> übertragen. []
252
+ - Die <one>menschliche Darmwand</one> kann welche Form von Calcium aufnehmen? <one>Calciumlactat</one>. []
253
+ - Andere Bezeichnung für eine <one>Avitaminose</one>. A: <one>Mangelkrankheit</one>. URL: https://de.wikipedia.org/wiki/Avitaminose []
254
+ - Nenne einen <one>irreversibler Hemmer der Thymidylate-Synthase</one>. A: <one>Fluoruracil</one> (<one>Fluor-uracil</one>) - genauer <two>5-fluorouracil</two> (<two>5-FU</two>). URL: https://en.wikipedia.org/wiki/Thymidylate_synthase#Using_TS_as_a_drug_target
255
+ - Welche <one>drei Formen</one> kann die <two>ATP-Synthase</two> vorweisen? (1) <one>O-Form</one>: <royalblue>O</royalblue> für <two>Open</two> (2) <one>L-Form</one>: <royalblue>L</royalblue> für <two>Loose</two> (3) <one>T-Form</one>: <royalblue>T</royalblue> für <two>Tight</two> []
256
+ - Der <one>Hauptbestandteil von Haaren</one> (genau) ist ... ? A: <one>Alpha-Keratin</one>. URL: https://en.wikipedia.org/wiki/Alpha-keratin []
257
+ - Nenne drei verschiedene Serinproteasen (ausgenommen <one>Chymotrypsin</one>). A: (1) <one>Elastase</one> (2) <one>Subtilisin</one> (3) <one>Trypsin</one> []
258
+ - Besitzt <one>ATP</one> eine <two>N-glycosidische Bindung</two>? Ja. URL: https://en.wikipedia.org/wiki/Adenosine_triphosphate#/media/File:Adenosintriphosphat_protoniert.svg []
259
+ - Wird <one>Saccharin</one> im menschlichen Körper <two>metabolisiert</two>? <one>Nein</one>. []
260
+ - What is the <one>smallest carbohydrate</one>? <one>Glyceraldehyde</one> (<two>C₃H₆O₃</two>). URL: https://en.wikipedia.org/wiki/Glyceraldehyde
261
+ - Wie wirken sich <one>positive</one>, wie <one>negative</one> Seitenketten auf den <two>isoelektrischen Punkt</two> aus? A: (1) <two>Positive</two> <one>erhöhen</one> den isoelektrischen Punkt. (2) <two>Negative</two> <one>erniedrigen</one> den isoelektrischen Punkt. []
262
+ - Wie unterscheidet sich eine <one>Micelle</one> von einem <one>Lipid Bilayer</one> hinsichtlich ihrer Eigenschaften? A: (1) Die <mediumseagreen>Micelle</mediumseagreen> hat einen <one>stärkeren hydrophoben Anteil</one>. (2) Der <mediumseagreen>Lipid Bilayer</mediumseagreen> einen <one>stärkeren hydrophilen Anteil</one>. []
263
+ - Ist <one>Phosphoenolpyruvat</one> energiereicher als <three>ATP</three>? Ja. []
264
+ - Name one inhibitor of <one>TP synthases</one>. A: <one>Cyanides</one>. URL: https://en.wikipedia.org/wiki/Cyanide []
265
+ - Wieviele <one>OH Gruppen</one> hat <two>Neopterin</two>? <one>3</one>. URL: https://de.wikipedia.org/wiki/Neopterin []
266
+ - Wann wurde <one>Morphin</one> erstmals isoliert? Im Jahre <one>1805</one>. URL: https://en.wikipedia.org/wiki/Morphine []
267
+ - Nenne die zwei wichtigsten Eigenschaften von <one>Wachsen</one>. A: (1) ihre <one>Fähigkeit Wasser abzustossen</one> (2) ihre <one>feste Konsistenz</one> []
268
+ - What is the <one>most common protein</one> in the human body? <one>Collagen</one>. URL: https://en.wikipedia.org/wiki/Collagen []
269
+ - Was genau stellt <one>das distale Histidin im Hämoglobin</one> zur Verfügung? Eine <one>Wasserstoffbrücke</one>. URL: https://nds.wikipedia.org/wiki/H%C3%A4moglobin []
270
+ - Nenne zwei <one>Hormone</one> die die <two>Blutglukosekonzentration</two> regulieren. A: (1) <one>Insulin</one> (2) <one>Glucagon</one> []
271
+ - Was ist das <one>Protein der Haare</one>? <one>Keratin</one> (auch <two>α-keratin</two> in Säugetieren genannt). URL: https://en.wikipedia.org/wiki/Keratin []
272
+ - Was heisst <one>UDP-Glucose</one> ausgeschrieben? <one>Uridindiphosphatglucose</one>. URL: https://de.wikipedia.org/wiki/Uridindiphosphat []
273
+ - Im menschlichen Körper: nenne ein <one>Reservoir energiereicher Phosphorylgruppen</one>. A: <one>Kreatinphosphat</one>. URL: https://de.wikipedia.org/wiki/Kreatin []
274
+ - Die <one>MMP-Proteine</one> gehören zur Familie ... ? Der <one>Matrix-Metalloproteinase-Familie</one>. URL: https://en.wikipedia.org/wiki/Matrix_metallopeptidase []
275
+ - Andere Bezeichnung für den <one>ATP-Verbrauch</one>? <one>ATP Hydrolyse</one>. URL: https://de.wikipedia.org/wiki/Adenosintriphosphat []
276
+ - <one>Aminozucker</one> erhalten <two>ihre Aminogruppe</two> von ... ? <one>Glutamin</one> (<mediumseagreen>Mnemonic</mediumseagreen>: Amin...Glutamin). URL: https://de.wikipedia.org/wiki/Aminozucker []
277
+ - <one>Bromcyan</one> spaltet wo? An <one>Methionin</one>. URL: https://de.wikipedia.org/wiki/Bromcyan []
278
+ - <one>Aurone</one> in der Biochemie sind Derivate des ... ? <one>Benzofurans</one>.
279
+ - Where will we rarely find <one>disulfide bridges</one>? In <one>intracellular proteins</one>. []
280
+ - Nenne die <three>drei funktionellen Gruppen</three> der <one>Protocatechusäure</one>. A: (1) <one>-COOH</one> (2) <one>-OH</one> (3) <one>-OH</one> []
281
+ - Wieso benötigt <one>Chymotrypsin</one> eine <lightseagreen>Oxyanionentasche</lightseagreen>? Diese Tasche wird zur <one>Stabilisierung des tetraedrischen Zwischenproduktes benötigt</one>. URL: https://de.wikipedia.org/wiki/Chymotrypsin_B []
282
+ - Is <one>citrulline</one> found in proteins? Yes, as a result of post-translational modifications by enzymes called <one>peptidylarginine deiminases</one> (<two>PADs</two>), but this is a rare event. URL: https://en.wikipedia.org/wiki/Citrulline
283
+ - Die <one>Sekundärstruktur der Proteine</one> wird insbesondere durch welche Wechselwirkung stabilisiert? Durch <one>Wasserstoffbrücken</one>. []
284
+ - Was genau heisst <one>Hydrolyse</one>? <one>Abbau durch Wasser</one>. URL: https://de.wikipedia.org/wiki/Hydrolyse []
285
+ - Nenne einen guten, allgemeinen <one>Wasserstoffdonor</one> in der Biochemie. A: <one>NH-Gruppen</one>. []
286
+ - Die <one>Prolyl-Hydroxylase</one> benötigt ... zur Regeneration? <one>Vitamin C</one> (<lightseagreen>Ascorbinsäure</lightseagreen>). URL: https://de.wikipedia.org/wiki/Prolyl-4-Hydroxylase []
287
+ - Englisches Wort für <one>Adrenalin</one>? <one>Epinephrine</one>. URL: https://en.wikipedia.org/wiki/Epinephrine []
288
+ - Erster Schritt bei der <one>Proteinreinigung</one>? A: Erstellung eines <one>Homogenisats</one>. URL: https://en.wikipedia.org/wiki/Homogenization_%28biology%29 []
289
+ - Which component of the <one>ATP Synthase</one> is bound to the membrane? The <one>F0</one> part. []
290
+ - Was kann aus <one>Arachidonsäure</one> werden? <one>Prostaglandine</one>. URL: https://de.wikipedia.org/wiki/Prostaglandine []
291
+ - Wo wurden <one>Leukotriene</one> erstmals entdeckt? In den <one>Leukocyten</one>. URL: https://de.wikipedia.org/wiki/Leukotriene []
292
+ - Was ist ein <one>Amide</one>? Die häufigste Definition für <two>ein Amid</two> ist eine <one>C=O-NH₂ Gruppe</one>. URL: https://de.wikipedia.org/wiki/Amide []
293
+ - Wo mögen wir <one>Hydroxyprolin</one> finden? In <one>Kollagen</one>. []
294
+ - Andere Bezeichnung für <one>aktives Methyl</one>? <one>S-Adenosyl-Methionin</one> (<one>SAM</one>). URL: https://de.wikipedia.org/wiki/S-Adenosylmethionin []
295
+ - The <one>disulfide bridge formation</one> requires what? An <one>oxidative environment</one>. []
296
+ - Nenne ein Beispiel für ein <one>Ceramid</one>. A: <one>Sphingomyelin</one>. (Mnemonic: <royalblue>M ... CeraMid ... SphingoMyelin</royalblue>) URL: https://en.wikipedia.org/wiki/Sphingomyelin
297
+ - <one>Glucosamin</one> trägt <two>welche funktionelle Gruppe</two>? <two>Glucosamin</two> besitzt eine <one>NH₂-Gruppe</one>. URL: https://en.wikipedia.org/wiki/Glucosamine []
298
+ - Die <one>Ascorbinsäure</one> hat wieviele C Atome? <one>6</one>. URL: https://de.wikipedia.org/wiki/Ascorbins%C3%A4ure
299
+ - Mnemonic um eine <one>Acetyl-CoA</one> zu zeichnen? Acetylgruppe + S + CoA Anteil.
300
+ - Wie nennen wir <one>die charakteristische Konformation O₂-bindender Protein</one>? <one>Globin fold</one>. URL: https://ipfs.io/ipfs/QmXoypizjW3WknFiJnKLwHCnL72vedxjQkDDP1mXWo6uco/wiki/Globin_fold.html []
301
+ - Can a <lightseagreen>human being</lightseagreen> <one>increase the AMPK activity</one> - and if so, how? Yes - via <one>physical exercise</one>. []
302
+ - Wo in einer Zelle mag <one>Phosphoglykolat</one> entstehen? In den <one>Chloroplasten</one>. URL: https://en.wikipedia.org/wiki/Photorespiration []
303
+ - Where within or on a given <one>enzyme</one> could <three>Selenocysteine</three> be found? At the <one>active center</one> of specific enzymes. []
304
+ - Was ist ein <one>tertiäres Amin</one>? Zeichne es in Gedanken. A: <one>R-N-R</one> (und noch ein R am N dran) []
305
+ - Was ist das <one>Schlüsselenzym</one> bei der Kontrolle des Stickstoffs in der Zelle? Die <one>Glutamin-Synthetase</one> ist das Schlüsselenzym. URL: https://en.wikipedia.org/wiki/Glutamine_synthetase []
306
+ - What is <one>the single most common reaction</one> in biochemistry? A <one>proton transfer</one>. []
307
+ - Andere Bezeichnung für die <one>ATPase</one>? <one>Complex V</one>. URL: https://en.wikipedia.org/wiki/ATP_synthase []
308
+ - Der <one>Edman-Abbau eines Proteins</one> beginnt an welchem Ende? Am <one>N-Terminus</one>. URL: https://en.wikipedia.org/wiki/Edman_degradation []
309
+ - <one>SDS</one> hat <two>n C Atome</two> in seinem Schwanzteil? <one>12</one>. URL: https://en.wikipedia.org/wiki/Sodium_dodecyl_sulfate []
310
+ - <one>Pyruvat</one> kann in <lightseagreen>Acetaldehyd</lightseagreen> konvertiert werden. Was verliert es dabei? <one>-CO₂</one>. URL: https://de.wikipedia.org/wiki/Acetaldehyd []
311
+ - Where may <one>glucuronic acid</one> be found? In <one>urine</one>. URL: https://en.wikipedia.org/wiki/Glucuronic_acid []
312
+ - Biochemisch betrachtet: was bewirken <one>Monofluoressigsäure-Verbindungen</one> bei lebenden Organismen? Sie <one>blockieren den Citratzyklus</one>. URL: https://de.wikipedia.org/wiki/Fluoressigs%C3%A4ure#Toxikologie []
313
+ - In Membranen finden wir <one>Sphingolipide</one>, die Sphingosin, einen langkettigen Aminoalkohol enthalten. <two>Wieviele C Atome hat Sphingosin</two>? <one>18</one>. URL: https://de.wikipedia.org/wiki/Sphingosin []
314
+ - Das <one>häufigstes Protein auf der Erde</one> (total, in Tonnen Gewicht) ist ... ? A: <one>RUBISCO</one>. URL: https://de.wikipedia.org/wiki/RuBisCO []
315
+ - Wie heissen die <one>Salze der Harnsäure</one>? <one>Urate</one>. URL: http://flexikon.doccheck.com/de/Urat []
316
+ - <one>Aquaporine</one> lassen <two>pro Sekunde</two> wieviele Wassermoleküle hinein? Ca. <one>10 ** 9</one> Wassermoleküle (<two>1.000.000.000</two>). []
317
+ - Nenne eine <one>aktivierte Form der Glucose</one>. A: Die <one>UDP-Glucose</one>. URL: https://de.wikipedia.org/wiki/UDP-Glucose []
318
+ - Die <one>Teichonsäure</one> ist ein Polymer aus ... ? <one>Ribitoleinheiten</one>. URL: https://de.wikipedia.org/wiki/Teichons%C3%A4uren []
319
+ - <three>Welche Person</three> hat das Wort <one>Protein</one> geprägt? <one>Jacob Berzelius</one>. URL: https://en.wikipedia.org/wiki/J%C3%B6ns_Jacob_Berzelius []
320
+ - Woraus besteht <one>die katalytische Triade in Chymotrypsin</one>? (1) Ser 195 (2) <one>His 57</one> (3) <one>Asp 102</one>
321
+ - In der Biochemie: welchen Arten der <one>Spaltungsreaktionen</one> können wir unterscheiden? (1) <one>homolytische Spaltung</one> (2) <one>heterolytische Spaltung</one> []
322
+ - <one>Retinal</one> interacts with a ... fragment? <one>Lysine Fragment</one>. URL: https://en.wikipedia.org/wiki/Retinal []
323
+ - <one>Cholesterin</one> besitzt <three>wieviele C Atome</three>? <one>27</one>. URL: https://de.wikipedia.org/wiki/Cholesterin []
324
+ - Bei welcher Temperatur denaturiert <one>Ferredoxin</one>? Bei einer Temperatur von <one>140 °C</one>. URL: https://de.wikipedia.org/wiki/Ferredoxine []
325
+ - Nenne eine <one>Speicherform des Phosphats</one>. A: <one>Phytat</one>. URL: https://de.wikipedia.org/wiki/Phytins%C3%A4ure []
326
+ - <one>Dihydroxyacetonphosphat</one> versus <one>Glycerinaldehyd-3-phosphat</one>: wer von den beiden ist stabiler? <one>Dihydroxyacetonphosphat</one> ist stabiler. URL: https://de.wikipedia.org/wiki/Dihydroxyacetonphosphat []
327
+ - Nenne ein Enzym, das <one>Hydroxylgruppen</one> an Prokollagen anheftet. A: Die <one>Prolyl-Hydroxylase</one>. URL: https://en.wikipedia.org/wiki/Procollagen-proline_dioxygenase []
328
+ - Nenne drei verschiedene <one>ATPase Typen</one>. A: (1) <one>F-Typ-ATPasen</one> (2) <one>P-Typ-ATPasen</one> (3) <one>V-Typ-ATPasen</one> []
329
+ - Nenne zwei <one>Orte</one> wo <lightseagreen>Alpha-Keratin</lightseagreen> gefunden werden kann. A: (1) <one>Haare</one> (2) <one>Nägel</one> []
330
+ - Ist die Polypeptidkette eher <one>hydrophil</one> oder <one>hydrophob</one>? Erkläre. A: Die Peptibindung ist <one>polar und hydrophil</one> (N-H Gruppe, C=O Gruppe), somit sind Proteine an sich <two>eher hydrophil</two> wenn man nur die Peptidbindung alleine betrachtet. []
331
+ - Länge von <one>Kollagen</one>, in nm? <one>300 nm</one>. URL: https://de.wikipedia.org/wiki/Kollagene []
332
+ - Warum ist es in der Biochemie wichtig das es <one>Elektronen</one> gibt? Elektonen tragen Energie, die für <one>endergone Reaktionen</one> verwendet werden kann.
333
+ - <one>Lysin</one> kann aus welcher Substanz chemisch hergestellt werden, die mit dem Buchstaben <mediumturquoise>A</mediumturquoise> beginnt? <one>Aminocaprolacton</one>. (<royalblue>Aminoca-pro-lacton</royalblue>) URL: https://en.wikipedia.org/wiki/Aminocaproic_acid []
334
+ - Nenne ein Homolog zu <one>Calnexin</one>. A: <one>Calreticulin</one>. URL: https://de.wikipedia.org/wiki/Calreticulin []
335
+ - Was heisst <one>PAH</one> (Tip: spielt dann eine Rolle bei einer Krankheit)? <one>Phenylalanine Hydroxylase</one>. URL: https://en.wikipedia.org/wiki/Phenylalanine_hydroxylase []
336
+ - Nenne einen Vertreter der <one>Polyketide</one>. A: <one>Erythromycin</one>. URL: https://de.wikipedia.org/wiki/Erythromycin []
337
+ - In <one>which other protein</one> may we find <three>Phosphopantetheine</three>? <one>Phosphopantetheine</one> is the essential prosthetic group of the <two>acyl carrier protein</two> (<royalblue>ACP</royalblue>). URL: https://en.wikipedia.org/wiki/Acyl_carrier_protein []
338
+ - What drives the <one>synthesis of ATP</one>? The <two>energy stored</two> in the <one>proton gradient</one>. URL: http://www.nature.com/scitable/content/ne0000/ne0000/ne0000/ne0000/14706672/U3CP4-2_RespiratoryChainCo_ksm_1_2.jpg []
339
+ - Wo könnte man <one>5-Hydroxylysin</one> finden? Zum Beispiel <one>in Kollagen</one>. URL: https://de.wikipedia.org/wiki/Kollagene []
340
+ - <one>Myostatin</one> gehört zu welcher Familie? <two>Myostatin</two> gehört <one>TGF-β Familie</one>. URL: https://en.wikipedia.org/wiki/Myostatin
341
+ - Andere Bezeichnung für <one>Proteinabbau</one>? <one>Proteolyse</one>. URL: https://de.wikipedia.org/wiki/Proteolyse []
342
+ - Welche <one>chirale Konfiguration</one> haben die <mediumturquoise>Zucker</mediumturquoise>? Es sind allesamt <one>D-Zucker</one>, im Gegensatz zu den <two>L-Aminosäuren</two> (Yin/Yang). []
343
+ - Give a very short definition of what <one>Lectins</one> are, in not more than 3 or 4 words. A: <one>Sugar-binding proteins</one>. URL: https://en.wikipedia.org/wiki/Lectin []
344
+ - Give an example for <one>a protein folding disorder</one>. A: The <one>mad cow disease</one>. URL: https://en.wikipedia.org/wiki/Bovine_spongiform_encephalopathy []
345
+ - Unterschied zwischen einem <one>Phi Winkel</one> und einem <two>Psi Winkel</two>? A: <one>Phi</one> besteht zwischen Alpha-C und N während <two>Psi</two> zwischen Alpha-C und C besteht. []
346
+ - Molekulare Grösse von <one>Ubiquitin</one>? <one>8.5 kDa</one>. URL: https://de.wikipedia.org/wiki/Ubiquitin []
347
+ - <one>Phytanyl</one> has how many C atoms? <one>20</one>. URL: https://en.wikipedia.org/wiki/Phytane []
348
+ - <one>Alpha-Ketoglutarat</one> hat wieviele C Atome? <one>5</one>. URL: https://de.wikipedia.org/wiki/%CE%91-Ketoglutars%C3%A4ure []
349
+ - Bei <one>E. coli</one>: wie heisst das <two>outer membrane maltoporin</two>? <one>LamB</one>. URL: https://en.wikipedia.org/wiki/Maltoporin []
350
+ - Chemisch betrachtet ist <one>N-Acetylglucosamin</one> ... ? <one>N-Acetylglucosamin</one> ist ein <two>Aminozucker</two>. URL: https://en.wikipedia.org/wiki/N-Acetylglucosamine []
351
+ - <one>Alkohol</one> + <one>Carbonsäure</one> ergibt? Einen <one>Ester</one>. URL: https://de.wikipedia.org/wiki/Ester []
352
+ - Wo finden wir einen <one>Imidazolring</one>? In <one>Histidin</one>. URL: https://de.wikipedia.org/wiki/Imidazol []
353
+ - In short: how to create a <one>toxoid</one>? Treat a <mediumseagreen>toxin</mediumseagreen> with <one>formaldehyde</one>. URL: https://en.wikipedia.org/wiki/Toxoid []
354
+ - Anderes Wort für <one>Kollagenmolekül</one>? <one>Tropokollagenmolekül</one>. URL: https://flexikon.doccheck.com/de/Tropokollagen []
355
+ - <one>Polysaccharide</one> können manchmal auch als Proteoglykane bezeichnet werden, aber nur wenn welche Bedingung erfüllt ist? Polysaccharide müssen proteingebunden vorliegen damit sie als <one>Proteoglykane</one> bezeichnet werden können.
356
+ - Kommen <one>Zucker</one> in der <two>L-Form</two> vor? Nein - nur in der <one>D-Form</one>, im Gegensatz zu den Aminosäuren, die in L-Form vorkommen. []
357
+ - Die <one>Erythrose</one> besitzt wieviele <lightseagreen>C-Atome</lightseagreen>? <one>4</one> - sie ist dadurch eine <two>Tetrose</two>. URL: https://en.wikipedia.org/wiki/Erythrose []
358
+ - Strukturformel von <one>Sulfonamid</one>? A: <one>-SO₂-NH-R</one> URL: https://de.wikipedia.org/wiki/Sulfonamide
359
+ - Was sind <one>Proteine</one> eigentlich, aus chemischer Sicht? Proteine sind <one>Polymere aus Aminosäuren</one>, die für diese Funktionen eine definierte dreidimensionale Struktur einnehmen müssen.
360
+ - In welchem Jahr wurde das <one>Schlüssel-Schloss-Prinzip</one> von Emil Fischer vorgeschlagen? Im Jahre <one>1894</one>. URL: https://de.wikipedia.org/wiki/Schl%C3%BCssel-Schloss-Prinzip
361
+ - Wann verläuft eine biochemische Reaktion <one>freiwillig</one>? Wenn sie zu einem <one>Zustand niedrigerer freier Energie</one> führt.
362
+ - Biochemisch-struktureller Unterschied zwischen <one>Adrenalin</one> und <one>Noradrenalin</one>? <one>Adrenalin</one> hat eine <lightseagreen>zusätzliche CH3-Gruppe</lightseagreen>; ist also auch schwerer als <one>Noradrenalin</one>.
363
+ - Was besagt das <one>Levinthalsche Paradoxon</one>? Proteine falten sich über einen <one>teilweise vordefinierten Faltungsweg</one>. URL: https://en.wikipedia.org/wiki/Levinthal's_paradox
364
+ - Nenne ein <one>wichtiges Merkmal von Tertiärstrukturen</one>. A: Aminosäuren, die in der Primärstruktur weit voneinander entfernt liegen können, mögen durch die Faltung in unmittelbare räumliche Nachbarschaft gelangen.
365
+ - <one>Trypsinogen</one> kann in <two>Trypsin</two> verwandelt werden. Welches Enzym ist hierbei wichtig? Die <one>Enteropeptidase</one>. URL: https://en.wikipedia.org/wiki/Enteropeptidase []
366
+ - <one>Trypsin</one> is produced as an inactive proenzyme, called <lightseagreen>trypsinogen</lightseagreen>. It is activated via an endopeptidase which chops off five amino acids from ... which Terminus? From the <one>N-terminal tail</one>. URL: https://en.wikipedia.org/wiki/Trypsinogen []
367
+ - Andere Bezeichnung für die Substanz <one>Heroin</one>? <one>Diacetylmorphin</one>. URL: https://de.wikipedia.org/wiki/Heroin []
368
+ - Gib einen praktischen Tipp, wie wir die <one>D-Ribose</one> in der <two>Fischer-Projektion</two> zeichnen. A: Alle <one>-OH Gruppen zeigen nach</one> <two>rechts</two>. URL: https://upload.wikimedia.org/wikipedia/commons/7/70/DL-Ribose.svg []
369
+ - Die charakteristische Gruppe einer <one>Fettsäure</one> ist ... ? Eine <one>-COOH Gruppe</one>. URL: https://de.wikipedia.org/wiki/Fetts%C3%A4uren#Nomenklatur_%28cis,_trans,_%CF%89%29 []
370
+ - Mit welchem Vitamin ist <one>TPP</one> (<two>Thiaminpyrophosphat</two>) verwandt? Mit <one>Vitamin B1</one>. URL: https://en.wikipedia.org/wiki/Thiamine []
371
+ - Nenne <one>die wichtigste Komponente des SRP</one>. A: Die <one>7SL RNA</one>. URL: https://de.wikipedia.org/wiki/7SL-RNA []
372
+ - Die meisten <one>Doppelbindungen</one> sind in cis oder in trans Form? A: <one>cis</one>. []
373
+ - Die <one>kontraktile Einheit eines Muskels</one> besteht aus welchen <two>4 Komponenten</two>, molekularbiologisch gesehen? (1) <one>Aktin</one> (2) <one>Myosin</one> (3) <one>Tropomyosin</one> (4) <one>Troponin</one> []
374
+ - Was sind <one>Zymogene</one>? <one>Inaktive Enzymvorstufen</one>. URL: https://de.wikipedia.org/wiki/Zymogen []
375
+ - <one>Myosin</one> has a catalytic site sequence of n Aminoacids? <one>Seven aminoacids</one> (<royalblue>7</royalblue>): <two>Gly-Glu-Ser-Gly-Ala-Gly-Lys-Thr</two> []
376
+ - Give an example for a <one>subproteome</one>. A: The <mediumseagreen>proteins</mediumseagreen> that can be found, for example, in a <one>lysosome</one>. URL: https://link.springer.com/referenceworkentry/10.1007%2F3-540-29623-9_8833 []
377
+ - Der <one>Harnstoff</one> hat <two>n N Atome</two>? <one>2</one>. URL: https://de.wikipedia.org/wiki/Harnstoff []
378
+ - Nenne ein <one>Zuckerderivat</one> das als <two>Strukturpolysaccharid</two> fungiert. A: <one>Chitin</one>. URL: https://de.wikipedia.org/wiki/Chitin []
379
+ - What is an <one>Arabinan</one>? <one>Arabinan</one> is a <two>polymer of arabinose</two>. URL: https://www.ncbi.nlm.nih.gov/pubmed/19801419 []
380
+ - Die <one>thermodynamischen Hauptsätze</one> unterscheiden ganz klar zwischen welchen zwei Eigenschaften? A: Einem <one>System</one> und dessen <one>Umgebung</one>. []
381
+ - Wieviele <one>C-Atome</one> besitzt <two>Laktat</two>? <one>3</one>. URL: https://de.wikipedia.org/wiki/Lactate []
382
+ - Wo, zum Beispiel, können wir <one>Desmosin</one> finden? Desmosin finden wir im <two>Faserprotein</two> <one>Elastin</one>. URL: https://de.wikipedia.org/wiki/Desmosin []
383
+ - Ein <one>Hemiacetal</one> besteht aus ...? <one>Alkohol</one> + <one>Aldehyd</one>. URL: https://en.wikipedia.org/wiki/Hemiacetal []
384
+ - <one>Transamination reactions</one> require which <two>cofactor</two>? <one>Pyridoxal phosphat</one>. URL: https://en.wikipedia.org/wiki/Pyridoxal_phosphate []
385
+ - The <one>Tryptophan synthase</one> channels which <two>metabolic intermediate</two>? <one>Indole</one>. URL: https://en.wikipedia.org/wiki/Indole []
386
+ - Was heisst <one>MNase</one> und was kann es? <one>MNase</one> heisst <lightseagreen>micrococcal nuclease</lightseagreen>. Dieses Enzym kann DNA schneiden. URL: https://www.neb.com/products/m0247-micrococcal-nuclease []
387
+ - Chemisch betrachtet sind <one>Peptide</one> was (nur 1 Wort verwenden)? <one>Säureamide</one>. URL: https://de.wikipedia.org/wiki/Carbons%C3%A4ureamide []
388
+ - Was finden wir in einer <one>Fettzelle</one>? Ein <one>Fetttröpfchen</one>, das fast die ganze Zelle ausfüllt. URL: https://de.wikipedia.org/wiki/Adipozyt []
389
+ - Wirkung von <one>Leu-Enkephalin</one> auf den menschlichen Körper? <one>Schmerzlindernd</one> - Leu-Enkephalin ist ein <mediumturquoise>endogenes Opiat</mediumturquoise>. URL: https://en.wikipedia.org/wiki/Leu-enkephalin []
390
+ - Wo finden wir die Substanz <one>Ornithin</one>, zwecks physischer Isolierung? <springgreen>Ornithin</springgreen> ist ein <one>Ausscheidungsprodukt von Vögeln</one> - somit finden wir dies dort. []
391
+ - <one>Somatostatin</one> hat wieviele Aminosäuren? <one>14</one>. URL: https://de.wikipedia.org/wiki/Somatostatin []
392
+ - Die <one>Übertragung einer Aminogruppe</one> von einer <two>Aminosäure</two> auf eine <two>Ketosäure</two> heißt ... ? <one>Transaminierung</one>. URL: https://de.wikipedia.org/wiki/Transaminierung []
393
+ - <three>Peptides</three> contain <one>n free Alpha-amino groups</one>? <one>1</one>. []
394
+ - Name the biochemical name of <one>Alkapton</one>. A: <one>Homogentisic acid</one>. URL: https://en.wikipedia.org/wiki/Homogentisic_acid []
395
+ - <one>Triglyceride</one> bauen auf welcher Grundstruktur auf? Auf <one>Glycerol</one>. URL: https://de.wikipedia.org/wiki/Glycerin []
396
+ - Wie geht die <one>Gibbs-Helmholtz-Gleichung</one>? <one>Delta G = Delta H - T * Delta S</one>. T ist Temperatur. URL: https://en.wikipedia.org/wiki/Gibbs%E2%80%93Helmholtz_equation []
397
+ - When were <one>Amines</one> discovered (+/- 5 years approximation is sufficient)? In the year <one>1849</one>. URL: https://en.wikipedia.org/wiki/Amine
398
+ - In der Biochemie: was ist der Unterschied zwischen <one>K</one> und <one>k</one>? (1) <two>K</two> ist für <one>Gleichgewichtskonstanten</one> (<royalblue>equilibrium constant</royalblue>) (2) <two>k</two> hingegen ist für <one>Geschwindigkeitskonstanten</one> (<royalblue>rate constant</royalblue>)
399
+ - How is <one>Ionization energy</one> defined? <royalblue>Ionization Energy</royalblue> is the <one>minimum energy</one> required to remove an electron from an atom. (Refers to the first IE unless otherwise specified). []
400
+ - Ausgangssubstanz für die <one>Histamine</one>? <one>Histidin</one>. URL: https://de.wikipedia.org/wiki/Histamin []
401
+ - In der Biochemie: was bindet die <one>Rossmann fold</one>? Dieses Motiv bindet <one>Nukleotide</one> - vor allem den <royalblue>Kofaktor NAD</royalblue>. []
402
+ - Die Aminosäure <one>Alanin</one> wird woraus synthetisiert? <one>Pyruvat</one> ist der <mediumseagreen>Aminogruppenakzeptor</mediumseagreen>; Alanin wird dabei gebildet. []
403
+ - Kann <one>Glucose</one> in einen einfacheren Zucker gespalten werden? <two>Wie viele C Atome</two> hat Glucose? A: Nein, da Glucose ein <one>Monosaccharid</one> ist. Glucose ist eine <two>Hexose</two>, und hat <two>6 C Atome</two>. []
404
+ - Das Trisaccharid <one>Raffinose</one> besteht aus welchen 3 Monosacchariden? <royalblue>GluFruGal</royalblue> (Mnemonic: Raff... ff... die raffinierte Fructose) (1) <one>Glukose</one> (2) <one>Fructose</one> (3) <one>Galaktose</one> []
405
+ - Nenne eine andere Bezeichnung für die <one>Glucokinase</one>? <one>Hexokinase IV</one>. URL: https://de.wikipedia.org/wiki/Hexokinase []
406
+ - Give another word for the term <one>Rotamer</one>. A: <one>Conformational isomerism</one>. URL: https://en.wikipedia.org/wiki/Conformational_isomerism []
407
+ - Nenne ein <one>wichtiges Herzenzym</one>, also ein <two>Enzym</two> das vor allem <three>im Herzen exprimiert</three> wird. A: Die <one>Kreatin-Kinase</one>. URL: https://de.wikipedia.org/wiki/Creatin-Kinase []
408
+ - Name the archetypical example of <one>a serine protease</one>. A: <one>Trypsine</one>. URL: https://de.wikipedia.org/wiki/Trypsine []
409
+ - Wieviele <one>endständige -OH Gruppen</one> hat <two>Cholesterin</two>? <one>1</one>. URL: https://de.wikipedia.org/wiki/Cholesterin []
410
+ - Warum ist die <one>Mevalonsäure</one> in der Biochemie wichtig? Sie ist für die <one>Biosynthese von</one> <two>Cholesterin</two> wichtig. URL: https://de.wikipedia.org/wiki/Cholesterin []
411
+ - Welchen <one>Cofaktor</one> benötigt die <two>Alkohol-Dehydrogenase</two>? <one>NAD⁺</one>. URL: https://de.wikipedia.org/wiki/Alkoholdehydrogenase []
412
+ - Nenne ein Protein in der Zelle, das <one>Ca²⁺</one> binden kann. A: <one>Calmodulin</one>. URL: https://de.wikipedia.org/wiki/Calmodulin []
413
+ - Wie nennen wir <one>die inneren Verdauungsorganellen der Zelle</one>? <one>Lysosome</one>. URL: https://de.wikipedia.org/wiki/Lysosom []
414
+ - Warum hat <one>Wasser</one> (mit dem Wert <peru>80</peru>) eine hohe Dielektrizitätskonstante? Aufgrund des <one>polaren Charakters von Wasser</one>. []
415
+ - Nenne eine Konsequenz des <one>Peptiddoppelbindungscharakters</one>. A: Der <two>Peptiddoppelbindungscharakter</two> schränkt die <one>freie Rotation</one> ein. URL: https://de.wikipedia.org/wiki/Peptidbindung []
416
+ - Es gibt den sogenannten <one>GPI-Anker</one>. Wofür steht <lightseagreen>GPI</lightseagreen>? <one>Glykosyl</one>-<one>phosphatidyl</one>-<one>inositol</one>-<two>Anker</two>. URL: https://de.wikipedia.org/wiki/GPI-Anker []
417
+ - Nenne ein Protein, in dem wir eine <one>Allysin-Verknüpfung</one> finden mögen. A: <one>Elastin</one>. (Mnemonic: <two>El..Al</two>) URL: https://de.wikipedia.org/wiki/Elastin []
418
+ - <one>Fumarate</one> besitzt wieviele C Atome? <one>4</one>. URL: https://en.wikipedia.org/wiki/Fumaric_acid []
419
+ - Das wichtigste, <one>proteolytische Enzym im Magen des Menschen</one> ist ... ? <one>Pepsin</one>. URL: https://de.wikipedia.org/wiki/Pepsin []
420
+ - Andere Bezeichnung für ein <one>Lösungsmittel</one>? <one>Solvens</one>. URL: https://de.wikipedia.org/wiki/L%C3%B6sungsmittel []
421
+ - <one>Fumarat</one> und <one>Malat</one>. Welches davon ist <two>cis</two>, welches davon ist <two>trans</two>? (1) <two>Malat</two> ist <one>cis</one>. (2) <two>Fumarat</two> ist <one>trans</one>. []
422
+ - If <one>residue T172</one> of the AMPK Alpha-subunit is <three>phosphorylated</three>, what happens to <two>AMPK</two>? It <one>becomes activated</one>. URL: https://en.wikipedia.org/wiki/AMP-activated_protein_kinase []
423
+ - <one>Harnsäure</one> ähnelt welch zellulärem Molekül? Den <one>Purinbasen der Nukleotide</one>. URL: https://upload.wikimedia.org/wikipedia/commons/thumb/a/af/Harns%C3%A4ure_Enolform.svg/1200px-Harns%C3%A4ure_Enolform.svg.png []
424
+ - Die <one>Cholesterinbiosythese</one> beim Menschen beginnt wo im Körper? In der <one>Leber</one>. URL: https://de.wikipedia.org/wiki/Cholesterinbiosynthese []
425
+ - Name <one>a major protein</one> produced by the silkworm <two>Bombyx mori</two>. A: The <one>Fibroin polypeptide</one>. URL: https://de.wikipedia.org/wiki/Fibroin []
426
+ - Wo mögen wir <one>destruction boxes</one> finden? In den <one>Cyclinen</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC1170895/ []
427
+ - <one>CoA</one> contains which very important residue? It contains a <one>pantothenic acid residue</one>. []
428
+ - Die <one>Ketoseform der Ribose</one> heisst? A: <one>Ribulose</one>. URL: https://de.wikipedia.org/wiki/Ribulose []
429
+ - Was ist mit der <one>Autoprotolyse des Wassers</one> gemeint? Dies bezeichnet das Vorkommen von <one>H₃0⁺</one> + <one>OH⁻</one>. []
430
+ - Ein <one>Ether</one> ist eine Verbindung zweier ... ? <one>Alkohole</one>. (Praktisch eine beschwipste Liebesunion.) []
431
+ - Das menschliche <one>Retinol-Bindeprotein</one> hat eine Beta-Fass-Struktur. Diese Struktur besteht woraus? Dieses Beta-Fass besteht aus <one>acht auf - und absteigenden Beta-Strängen</one>.
432
+ - Was findet man vor allem im <one>braunen Fettgewebe</one> vor allem (<three>zellulär betrachtet</three>)? Viele <one>Mitochondrien</one>. []
433
+ - Nenne ein Beispiel für ein <one>mitochondriales Transmembranprotein</one>. A: <one>Porin</one>. URL: https://en.wikipedia.org/wiki/Porin_(protein) []
434
+ - Welche Ladung trägt die <one>N-Acetylneuraminsäure</one>? Dieser <two>Zucker</two> ist <one>negativ geladen</one> - ein wahrer Pessimist also! []
435
+ - Die <one>Bindung</one> zwischen der <two>Hydroxygruppe von Glycerin</two> und einer <two>Fettsäure</two> bezeichnet man als ... ? <one>Ester</one> / <one>Esterbindung</one>. []
436
+ - Nenne zwei <one>Steroidherzglycoside</one>. A: (1) <one>Digoxin</one> (2) <one>Digitoxin</one> []
437
+ - Was heisst eigentlich <one>Calmodulin</one>? <one>CALcium MODULated proteIN</one>. URL: https://en.wikipedia.org/wiki/Calmodulin []
438
+ - Andere Bezeichnung für <one>Esterhydrolyse</one>? <one>Fettverseifung</one>. []
439
+ - <one>Mannose</one> besitzt n Sauerstoff-Atome? <one>6</one>; hat auch 6 C-Atome. URL: https://de.wikipedia.org/wiki/Mannose []
440
+ - Die <one>Cohn-Fraktionierung</one> setzt für die <two>fraktionierte Ausfällung</two> welche Substanz ein? <one>Ethanol</one>. URL: https://www.spektrum.de/lexikon/biologie/cohn-fraktionierung/14814 []
441
+ - Anderer Name für die <one>Adenylat-Zyklase</one>? A: <one>Glucosesensor</one>. []
442
+ - Andere, ebenso deutsche, Bezeichnung für die <one>Biochemie</one>? <one>Chemie der Biomoleküle</one>. []
443
+ - Welchen Zweck erfüllt <one>Triacylglycerin</one> im menschlichen Körper? A: (1) <one>Fettspeicher</one> (2) <one>Wärmepolster</one> []
444
+ - Warum der Name <one>Polyketid</one>? Da in einem Polyketid <one>jedes 2. Kohlenstoffatom</one> eine <royalblue>Ketogruppe</royalblue> trägt. URL: https://de.wikipedia.org/wiki/Polyketide []
445
+ - Mit welchem Gesetz beschreibt man <one>elektrostatische Wechselwirkungen</one>? A: Mit Hilfe des <one>Coulomb-Gesetz</one>. URL: https://de.wikipedia.org/wiki/Coulombsches_Gesetz []
446
+ - Warum können wichtige Proteine nicht <one>frei</one> evolvieren? A: Da Proteine bestimmte, wichtige Aufgaben in der Zelle zu erfüllen haben. []
447
+ - Wozu verwenden wir den <one>Lowry-Test</one>? Zur <one>Protein-Konzentrations-Bestimmung</one>. URL: https://de.wikipedia.org/wiki/Lowry-Test []
448
+ - Im <one>Phosphoransferasesystem</one>: woher stammt das <two>P</two>? Von <one>PEP</one>. URL: https://de.wikipedia.org/wiki/Phosphotransferasesystem []
449
+ - Ein <one>biologischer Stoffwechselweg</one> ist womit in der Chemie äquivalent? Einem <one>Syntheseweg</one> in der organischen Chemie. []
450
+ - Eine <one>Carboxamidgruppe</one> besteht aus welchen Komponenten? A: <one>C=O-NH₂</one>. URL: https://de.qwe.wiki/wiki/Carboxamide []
451
+ - Die <one>menschliche Leber</one> produziert <two>n g Harnstoff am Tag</two>? Nur <one>30g</one>. []
452
+ - Wenn wir von <mediumseagreen>Pyruvat</mediumseagreen> <one>CO₂</one> entfernen, erhalten wir ...? <one>Acetaldehyd</one>. URL: https://de.wikipedia.org/wiki/Acetaldehyd []
453
+ - Wieviele <one>OH-Gruppen</one> besitzt <two>Shikimat</two>? <one>3</one>. []
454
+ - Aus welchen zwei Komponenten besteht ein <one>Hemiacetal</one>? Aus dem Anteil eines <one>Aldehyd-Restes</one> sowie eines <one>Alkohol-Restes</one>. []
455
+ - Was ist <one>Oxymyoglobin</one>, was ist <one>Desoxymyoglobin</one>? (1) <royalblue>Oxymyoglobin</royalblue>: dies ist <one>Myoglobin mit gebundenem Sauerstoff</one> (2) <royalblue>Desoxymyoglobin</royalblue>: <one>Myoglobin ohne gebundenen Sauerstoff</one> []
456
+ - Wo funktionieren <one>Puffer</one> am besten? A: In der Nähe des <one>pKS Wertes ihres Säurebestandteils</one>. []
457
+ - <one>Wyosine</one>, das in der tRNA vorkommen kann, ähnelt welcher Base? <one>Guanosine</one>. URL: https://de.wikipedia.org/wiki/Wyosin []
458
+ - Wieviele <one>Aminosäuren</one> / <one>Windung</one> sehen wir bei der <three>Alpha-Helix</three>? <one>3.6 Aminosäuren</one>. []
459
+ - Beim Menschen, finden wir, in Summe betrachtet, in der <one>Skelettmuskulatur</one> oder in der <one>Leber</one> mehr <two>Glykogen</two> gespeichert? Mehr in der <one>Skelettmuskulatur</one>, da diese in Summe gesehen auch <two>mehr an Masse</two> aufweist. []
460
+ - Welche Konfiguration bevorzugen <one>Peptidbindungen</one>? Peptidbindungen bevorzugen die <one>trans-Konfiguration</one> und liegen daher überwiegend in trans-Form vor. []
461
+ - Give another expression for <one>vinegar</one>. A: <one>Acetid acid</one> (acetic acid; requires water, too). URL: https://en.wikipedia.org/wiki/Vinegar []
462
+ - Was haben <one>Biotin</one> und <one>RUBISCO</one> gemeinsam? Beide können <one>CO₂</one> binden. []
463
+ - Woher kommt die Energie für den <one>Transport von Proteinen in den Zellkern</one>? Von <one>GTP</one>. []
464
+ - Die <one>Phospholipase A2</one> generiert <two>Lysophospholipide</two>, die welche Eigenschaft vorweisen? Sie können die <one>Zellmembran lysieren</one>. []
465
+ - Wie nennen wir einen <one>internen Ester</one>? <one>Lacton</one>. URL: https://de.wikipedia.org/wiki/Lactone []
466
+ - Nenne zwei Formen der <one>Lyse von Zellen</one> im Labor. A: (1) <one>mechanisch</one> (2) <one>enzymatisch</one> []
467
+ - The, correctly named, initially synthesized <one>purine derivative</one> is called? <one>IMP</one> (<two>inosine monophosphate</two>). URL: https://en.wikipedia.org/wiki/Inosinic_acid []
468
+ - Es gibt <one>Lektine</one> vom <two>C-Typ</two>. Was hat das <mediumseagreen>C</mediumseagreen> hier zu bedeuten? Es steht für <one>Calcium-abhängig</one>. URL: http://www.chemgapedia.de/vsengine/vlu/vsc/de/ch/8/bc/vlu/biotoxine/pflanzengifte.vlu/Page/vsc/de/ch/8/bc/biotoxine/lektine.vscml.html []
469
+ - Welche zelluläre Rolle erfüllt <one>S-Adenosyl Methionine</one> (<two>SAM</two>)? <two>SAM</two> ist involviert beim <one>Transfer von Methylgruppen</one>. []
470
+ - <one>SDS-coated proteins</one> carry which charge? SDS-coated proteins will <one>carry a negative charge</one>. []
471
+ - Nenne einen wichtigen Constraint der <one>Glykogensynthese</one>. A: Sie erfordert einen <one>Primer</one> - eine <mediumseagreen>Polysaccharidkette</mediumseagreen>, mit mindestens 4 Einheiten.
472
+ - Absorbieren Proteine im Bereich des <one>sichtbaren Lichts</one> (<two>von 400 bis 800 nm</two>)? Nein. []
473
+ - <one>Photorespiration</one> arises from? From <one>RuBisCO's oxygenase activity</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3244903/ []
474
+ - Nenne die vier <one>aromatischen Aminosäuren</one>. A: (1) <one>Histidin</one> (2) <one>Phenylalanin</one> (3) <one>Tryptophan</one> (4) <one>Tyrosin</one> []
475
+ - Nenne einen mechanistischen Unterschied zwischen <one>NADH</one> und <one>FADH₂</one>. A: (1) <one>NADH</one> trägt 2 Elektronen - und 1 Proton. (2) <one>FADH₂</one> hingegen trägt 2 Elektronen - und 2 Protonen.
476
+ - Nenne ein Protein, das als <one>molekulare Feder</one> agieren kann. A: <one>Elastin</one>. URL: https://en.wikipedia.org/wiki/Elastin []
477
+ - Give an example for an <one>iron storage protein</one>. A: <one>Ferritin</one>. URL: https://de.wikipedia.org/wiki/Ferritin []
478
+ - <one>lacZ</one>, <one>lacY</one> und <one>lacA</one> kodieren jeweils für ... ? A: (1) <one>lacZ</one>: <two>Beta-Galactosidase</two> (2) <one>lacY</one>: <two>Lactose Permease</two> (3) <one>lacA</one>: <two>Thiogalactoside Transacetylase</two> []
479
+ - Give a specific example for an <one>intein</one>. A: The <one>RecA protein</one>. URL: https://en.wikipedia.org/wiki/RecA []
480
+ - Wie nennen wir die aktivierte Form von <one>Ribosephosphat</one>? <royalblue>PRPP</royalblue>: <one>Phosphoribosyl pyrosphosphate</one> []
481
+ - Wer stellte die Theorie des <one>induced fit</one> auf? <one>Daniel Koshland</one>. URL: https://en.wikipedia.org/wiki/Daniel_E._Koshland_Jr. []
482
+ - In der Biochemie der Zelle: wofür steht die Abkürzung <one>LHH</one>? <one>Laktatdehydrogenase</one>. URL: https://de.wikipedia.org/wiki/L-Lactatdehydrogenase []
483
+ - Wie nennen wir den Grundkörper der <one>Steroide</one>? <one>Sterangerüst</one>. URL: https://de.wikipedia.org/wiki/Sterane []
484
+ - Kann eine <one>Carboxygruppe</one> als Säure reagieren? <two>Ja</two> - sie ist ja auch ein <one>Protonendonator</one>. URL: https://de.wikipedia.org/wiki/Carboxygruppe []
485
+ - Welche Proteine bestehen vor allem aus <one>Beta-Faltblatt Motiven</one>? A: <one>Fettsäurebindende Proteine</one>. []
486
+ - <one>Bis zu welcher Länge</one> funktioniert die <two>Merrifield-Synthese</two> gut? Bis zu etwa <one>30 Aminosäuren</one>. URL: https://de.wikipedia.org/wiki/Merrifield-Synthese []
487
+ - Andere Bezeichnung für <one>grobe Trennung</one> von Proteinen? <one>Fraktionierung</one>. URL: https://de.wikipedia.org/wiki/Ammoniumsulfat-F%C3%A4llung []
488
+ - Andere Bezeichnung für <one>Serotonin</one>? A: <one>5-Hydroxytryptamine</one>. URL: https://en.wikipedia.org/wiki/Serotonin []
489
+ - Die <one>Essigsäure</one> liegt oft im Gleichgewicht mit welchem Ion? Mit dem <one>Acetat-Ion</one> (genauer: dem <royalblue>Acetat-Anion</royalblue>). URL: https://de.wikipedia.org/wiki/Acetate []
490
+ - Was erzeugt der <one>Pyruvat-Dehydrogenase Komplex</one>? <one>Acetyl-CoA</one> (ausgehend von Pyruvat). URL: https://de.wikipedia.org/wiki/Pyruvatdehydrogenase-Komplex []
491
+ - Nenne ein <one>Transportsystem</one> für <lightseagreen>NADH</lightseagreen> in den Mitochondrien. A: Den <one>Malat-Aspartat-Shuttle</one>. URL: https://de.wikipedia.org/wiki/Malat-Aspartat-Shuttle []
492
+ - Was ist ein <one>Orthophosphat</one>? Gib auch dessen Ladung an. A: Ein <one>Orthophosphat</one> ist ein Phosphat-Atom mit 4 gekoppelten O-Atomen; also ein <two>PO₄ ³⁻</two> Ion. URL: https://en.wikipedia.org/wiki/Phosphoric_acids_and_phosphates#Orthophosphate []
493
+ - Where does <one>formation of the disulfide bridges</one> occur, <three>in eukaryotes</three>? Within the <one>lumen of the endoplasmic reticulum</one> - in other words, in the <mediumseagreen>ER lumen</mediumseagreen>.)
494
+ - Give an example for a <one>lysosomal protease</one>. A: <one>Cathepsin</one>. URL: https://en.wikipedia.org/wiki/Cathepsin []
495
+ - Im Alltag: wie entsteht die Substanz <one>Malondialdehyd</one>? Durch <one>Erhitzen von rotem Fleisch</one>. []
496
+ - What is the <one>most abundant protein</one> in the human body? <one>Collagen</one>. URL: https://en.wikipedia.org/wiki/Collagen []
497
+ - Wo finden wir allgemein ein <one>Oxyanionen-Loch</one>? In <one>Serinproteasen</one>. URL: https://de.wikipedia.org/wiki/Serinproteasen []
498
+ - <one>Wieso</one> benötigt der Mensch <two>Spuren von Kupfer</two>? Um die <one>Synthese von Hämoglobin</one> zu ermöglichen. []
499
+ - Die wichtigste <one>Proteinkinase</one> im Menschen ist ... ? Der <one>Insulinrezeptor</one>. Die <two>Beta-Untereinheiten</two> dieses Rezeptors besitzen eine <mediumseagreen>Tyrosinkinase-Aktivität</mediumseagreen>. URL: https://de.wikipedia.org/wiki/Insulinrezeptor []
500
+ - Der Mensch scheidet <one>n Gram Urea</one> pro Tag aus? <one>30 g</one>. []
501
+ - <one>Upon formation of a disaccharide</one>, what exactly is lost in this process? One <one>H₂O molecule</one>. []
502
+ - <one>Alpha-Keratin</one> besteht aus ...? A: Zwei <one>rechtsgängigen Alpha-Helices</one>. []
503
+ - In der Biochemie, <one>Succinate</one> ist ein Vorläufer für welche relativ komplexen Moleküle? <one>Porphyrine</one>. URL: https://de.wikipedia.org/wiki/Succinate []
504
+ - Definiere/Zeichne eine <one>Carbonylgruppe</one>. A: Eine <one>Carbonylgruppe</one> ist eine <mediumseagreen>-C=O Gruppe</mediumseagreen>. []
505
+ - <one>Albumin</one> kann wieviele Fettsäuremoleküle transportieren, maximal? <two>8</two>. []
506
+ - Wann wurde entdeckt, das man <one>organischen Harnstoff</one> aus <two>nichtlebenden Komponenten</two> herstellen konnte? Im Jahre <one>1828</one>. []
507
+ - Andere Bezeichnung für den <one>isoelektrischen Punkt</one>? Der <one>Neutralpunkt</one>. []
508
+ - Name a <one>cathepsin-inhibitor</one>. A: <one>Antipain</one>. URL: https://www.ncbi.nlm.nih.gov/pubmed/24673125 []
509
+ - Warum braucht der Mensch <one>Mineralsalze</one>? Weil diese für (1) den <one>Aufbau von Proteinen</one> notwendig sind - vor allem der <three>Stickstoff</three> (N) und der <three>Schwefel</three> (S). (2) Auch <one>Enzyme</one> benötigen oft bestimmte Mineralsalze für ihre <mediumseagreen>katalytische Aktivität</mediumseagreen>.
510
+ - Die <one>simultane Translokation</one> von <lightseagreen>Natrium</lightseagreen> und <lightseagreen>Glucose</lightseagreen> in eine Zelle nennt man ...? <one>Kotransport</one>. URL: https://en.wikipedia.org/wiki/Cotransporter []
511
+ - Die <one>Stearinsäure</one> besitzt <three>n C Atome</three>? <one>18</one>. Mnemonic: <mediumturquoise>Steareeeeeen turns eighteeeeen</mediumturquoise>. []
512
+ - Was entsteht wenn <one>Arginin</one> desaminiert wird? Es entsteht <one>Citrullin</one>. URL: https://de.wikipedia.org/wiki/Citrullin []
513
+ - Nenne einen berühmten Vertreter aus der Gruppe der <one>HMG-CoA-Reduktase-Inhibitoren</one>. A: Die Klasse der <one>Statine</one>. URL: https://de.wikipedia.org/wiki/Statin []
514
+ - Wie kann man <one>Phospholipase A2</one> hemmen? Mit Hilfe von <one>Cortisol</one>. URL: https://de.wikipedia.org/wiki/Phospholipase_A2 []
515
+ - <one>Amide Linkage</one> produziert was genau? Ein <one>peptide bond</one> sowie <one>Wasser</one> (<two>H₂O</two>). URL: https://en.wikipedia.org/wiki/Peptide_bond []
516
+ - Die <one>Aktivität eines Enzyms</one> wird worin angegeben (auch die Einheiten angeben)? In <one>Katal</one> (Umsetzung von <two>1 Mol Substrat</two>/<two>sec</two>). URL: https://de.wikipedia.org/wiki/Katal []
517
+ - Zum <one>Aufbau der Cellulose</one> wird was benötigt (als Grundsubstanz)? <one>Glucose</one>. URL: https://de.wikipedia.org/wiki/Cellulose []
518
+ - Was entsteht wenn <one>Pyruvat</one> transaminiert wird? <one>Alanin</one>. URL: https://de.wikipedia.org/wiki/Alanin []
519
+ - Kann der Mensch <one>Acetyl-CoA</one> in <two>Pyruvat</two> überführen? Nein. []
520
+ - Das <one>Lysozym</one> besitzt <two>n Aminosäuren</two>? <one>129</one>. URL: https://de.wikipedia.org/wiki/Lysozym []
521
+ - Nenne ein <one>automatisiertes Verfahren zur Synthese von Peptiden</one>. A: Die <one>Merrifield-Synthese</one>. URL: https://de.wikipedia.org/wiki/Merrifield-Synthese []
522
+ - <one>RNase A</one> cuts after? <one>RNase A</one> will cut after a <mediumturquoise>pyrimidine</mediumturquoise>. URL: https://www.ncbi.nlm.nih.gov/pubmed/11087402 []
523
+ - Name two normal tissues or cell types that convert <one>glucose</one> to <one>lactate</one> even under aerobic conditions. A: (1) <one>retina</one> (2) <one>erythrocytes</one> []
524
+ - <one>Thiols</one> are readily oxidized to ..., and <one>Disulfides</one> are readily reduced to ...? <one>Thiols</one> are readily oxidized to <one>Disulfides</one>, and <one>Disulfides</one> are readily reduced to <one>Thiols</one> (<two>Yin</two>/<two>Yang</two>). []
525
+ - Ist <one>Glycerin</one> optisch aktiv? Erkläre deine Antwort. A: Nein, da es <one>symmetrisch</one> ist - es hat <two>3 OH-Gruppen</two> (Systematischer Name: Propan-1,2,3-triol). URL: https://de.wikipedia.org/wiki/Glycerin []
526
+ - Nenne 4 Produkte die aus <one>Pyruvat</one> hergestellt werden. A: Mnemonic: <royalblue>LEAF</royalblue> (1) <one>Lactat</one> (2) <one>Ethanol</one> (3) <one>Acetat</one> (4) <one>Formiat</one> []
527
+ - <one>Shikimat</one> hat eine oder mehrere OH-Gruppe. Wieviele genau? <one>3</one>. URL: https://de.wikipedia.org/wiki/Shikimis%C3%A4ure []
528
+ - Bei einer <one>Esterbildung</one>: was geht <two>verloren</two>? <one>Wasser</one>. []
529
+ - Wo (mit <one>%</one>, in Summe also <one>100%</one>) findet die <mediumturquoise>Glukoneogenese</mediumturquoise> im menschlichen Körper statt? (1) <one>90% Leber</one> (2) <one>10% Nierenrinde</one> []
530
+ - Wird <mediumseagreen>Stärke</mediumseagreen> zu <one>Disaccharid</one> abgebaut, entsteht ... ? A: <one>Maltose</one> <two>+</two> <one>Isomaltose</one>. []
531
+ - Wann wurde das <one>peptide bond</one> in Proteinen entdeckt? Im Jahre <one>1902</one> (von <mediumturquoise>Emil Fischer</mediumturquoise>). []
532
+ - Which two bond types can we find in the <one>ATP molecule</one>? (1) an <one>ester bond</one> (2) an <one>anhydride bond</one> []
533
+ - <one>Cholesterin</one> ist was für ein <two>'Regler'</two>? <one>Cholesterin</one> ist ein <two>Fluiditätsregler</two>. URL: https://de.wikipedia.org/wiki/Cholesterin []
534
+ - Why does a human cell require <one>carnitine</one>? <royalblue>Carnitine</royalblue> is used by the body to <one>transport fatty acids into the mitochondria<one>, <two>for breakdown</two>. []
535
+ - Beeinflussen <one>Salze</one> das <two>Löslichkeitsverhalten von Proteinen</two>? <one>Ja</one> - sogar erheblich. []
536
+ - What do <mediumseagreen>mice</mediumseagreen> show who have their <one>AQP2-Gene</one> removed? They show an <one>increased urine output</one>. []
537
+ - In any given protein, where do we <one>NOT</one> find disulfide bonds? <lightseagreen>Disulfide bridges</lightseagreen> require an <one>oxidative environment</one> - and are thus not found in <mediumseagreen>intracellular proteins</mediumseagreen>.
538
+ - Zeichne eine <one>Guanidiniumgruppe</one> - welche Ladung trägt diese Gruppe? A: Eine C Gruppe und daran 3 NH-Gruppen, wobei 2 davon sogar <one>-NH₂ Gruppen</one> sind. <two>Positiv geladen</two>.
539
+ - Woraus besteht das <one>26S-Proteasom</one> in Eukaryoten? Aus <one>drei Untereinheiten</one> - und zwar einer <two>20S-</two> und zwei <two>19S-Untereinheiten</two>.
540
+ - Nenne einen Antagonisten zu <one>Morphin</one>. A: Der <one>Opiod-Antagonist</one> <two>Naloxon</two>. URL: https://de.wikipedia.org/wiki/Naloxon []
541
+ - <one>Indole</one> itself has <two>how many nitrogen atoms</two>? <one>1 only</one>. Its chemical formula is <two>C₈H₇N</two>. URL: https://en.wikipedia.org/wiki/Indole []
542
+ - Give an example for <one>an almost pure cellulose</one>. A: <one>Cotton</one>. URL: https://en.wikipedia.org/wiki/Cotton []
543
+ - Give another, slightly odd term for the expression <one>soluble protein</one>. A: <one>Non-membrane protein</one>. []
544
+ - <one>CD4</one> besitzt wieviele <two>extracellular domains</two>? <one>4</one>. []
545
+ - Bei der Krankheit <one>PKU</one>: welches Enzym ist hier defekt? Die <one>phenylalanine hydroxylase</one>. (Mnemonic: Beide beginnen mit dem Buchstaben <two>P</two>) []
546
+ - <one>Deamination of 5-Methylcytosine</one> generates what? <one>Thymine</one> (<two>5-MeC → deamination → Thymine</two>). URL: https://upload.wikimedia.org/wikipedia/commons/thumb/3/3a/5-Methylcytosine.svg/620px-5-Methylcytosine.svg.png []
547
+ - When exactly do we speak of <one>aspartate</one> and <one>glutamate</one>? When they are in their <one>ionized state</one>. []
548
+ - Andere Bezeichnung für <one>1,3-Bisphosphoglycerat</one>? <one>1,3-Bisphosphoglycerinsäure</one>. URL: https://de.wikipedia.org/wiki/1,3-Biphosphoglycerins%C3%A4ure []
549
+ - <one>Sessel-</one> oder <one>Wannenform</one>. Welche dieser beiden Formen ist <three>energiereicher</three>? Die <one>Wannenform</one> ist energiereicher. (Mnemonic: Die Wanne ist viel grösser als der Sessel.) URL: https://de.wikipedia.org/wiki/Konformation []
550
+ - Warum wirkt <one>Koffein</one> so stark? Es ähnelt dem <one>Adenosin-Molekül</one>. URL: https://de.wikipedia.org/wiki/Coffein []
551
+ - <one>FAD</one> (<one>Flavin-Adenin-Dinukleotid</one>) besitzt <two>wieviele Phosphatgruppen</two>? <one>2</one>. URL: https://de.wikipedia.org/wiki/Flavin-Adenin-Dinukleotid []
552
+ - Definiere den Begriff <one>Gruppentranslokation</one>. A: Gruppentranslokation ist ein <one>Transportvorgang</one>, bei dem die aufgenommen Substanz chemisch verändert wird, im Zuge des Aufnahmeprozesses. URL: https://de.wikipedia.org/wiki/Gruppentranslokation []
553
+ - What is the <one>C range</one> for fatty acids (min-max)? <one>4-36</one>. URL: https://en.wikipedia.org/wiki/Fatty_acid []
554
+ - The <one>steroid core structure</one> includes how many carbon atoms? <one>17</one>. (Mnemonic: <mediumseagreen>A-B-C-D-17</mediumseagreen>). URL: http://alaskadigitalvisions.com/femalehormones/ImagesGeneral/005EstradiolABCD17_288.jpg []
555
+ - <lightseagreen>Phosphatidylinositols</lightseagreen> can be found in <one>eukaryotic cell membranes</one>, facing where? They face the <one>cytosolic side of the cell membrane</one> in <two>eukaryotes</two> (== facing to the inside of a cell). []
556
+ - Erfolgt bei der <one>Transaminierung</one> eine <two>Netto-Desaminierung</two>? Nein. []
557
+ - Was ist die <one>C30</one> Vorstufe von <three>Cholesterin</three>? Das <one>Squalen</one> (Summenformel: <royalblue>C30H50</royalblue>. URL: https://de.wikipedia.org/wiki/Squalen []
558
+ - Was ist der biologische Zweck hinter der <one>Geranylgeranylierung</one>? Einem <one>Protein die</one> <two>Membranverankerung</two> <one>zu ermöglichen</one>. []
559
+ - Can the <one>AMPK</one> stimulate <two>glucose uptake</two>? Yes. []
560
+ - Bei der <one>Phospholipiddoppelschicht</one> gibt es <lightseagreen>Transversaldiffusion</lightseagreen> und <lightseagreen>Lateraldiffusion</lightseagreen>. Wie unterscheiden sich die beiden voneinander, qualitativ betrachtet? (1) Die <one>Transversaldiffusion</one> ist sehr <two>langsam</two>. (2) Die <one>Lateraldiffusion</one> hingegen ist eher <two>schnell</two>. []
561
+ - Was bedeutet <one>Microheterogeneity</one> in der Biochemie? <one>Nicht alle Glykoproteine sind modifiziert</one>, da die Enzyme hierzu nur limitiert vorhanden sind.
562
+ - Nenne einen künstlichen Elektronenazeptor der <one>NADP</one> ähnelt (die Abkürzung genügt). A: <one>DCPIP</one> (<royalblue>2,6-Dichlorphenolindophenol</royalblue>). []
563
+ - Nenne ein <one>biologisches Molekül</one> (ausser Aminosäuren) das ein asymmetrisches center besitzt? <one>Malat</one>. URL: https://de.wikipedia.org/wiki/Malate []
564
+ - Die Ausgangsverbindung der <one>Flavine</one> ist ... ? <one>Riboflavin</one>. (Mnemonic: Riboflavin enthält das Wort <mediumseagreen>flavin</mediumseagreen>.) []
565
+ - Der Prototyp der <one>Proteinkinasen</one> ist ... ? Der <one>Insulinrezeptor</one>. URL: https://de.wikipedia.org/wiki/Insulinrezeptor []
566
+ - Die aktive Stelle der meisten <one>Carboanhydrasen</one> enthält was für ein <two>Ion</two>? <two>Carboanhydrasen</two> besitzen in ihrem Zentrum ein <one>Zink-Ion</one>. URL: https://de.wikipedia.org/wiki/%CE%91-Carboanhydrasen []
567
+ - Nenne jeweils ein Beispiel für eine <one>Aldohexose</one> und eine <one>Ketohexose</one>. A: (1) <royalblue>Glucose</royalblue> ist eine <one>Aldohexose</one>. (2) <royalblue>Fruktose</royalblue> ist eine <one>Ketohexose</one>. []
568
+ - Hat die <one>Kollagenhelix</one> <lightseagreen>interne Wasserstoffbrücken</lightseagreen>? A: Nein. []
569
+ - Wie repariert das <one>Mut Repair System</one> in E. coli? Merkslogan <one>S→L→H</one>. MutS erkennt die fehlgepaarte Stelle. MutL erweitert diese Stelle und erlaubt MutH die Anlagerung. MutH setzt einen Schnitt in der DNA, und zwar am nichtmethylierten Strang. Danach entwindet die DNA-Helikase II die DNA. Exonuclease I baut Einzelstrang ab, DNA Pol III synthetisiert einen neuen Strang, Ligase versiegelt den Nick.
570
+ - <one>Vitamin B1</one> beziehungsweise ein Derivat hiervon finden wir <three>in welchem Coenzym</three>? In <one>TPP</one>. URL: https://en.wikipedia.org/wiki/Thiamine_pyrophosphate []
571
+ - Welche <one>Enzyme</one> erzeugen aus <lightseagreen>GTP</lightseagreen> das <lightseagreen>cGMP</lightseagreen>? Die <one>Guanylatcyclasen</one>, auch <one>Guanylylcyclasen</one> genannt. URL: https://de.wikipedia.org/wiki/Guanylylcyclasen []
572
+ - Die meisten Proteine sind <one>globuläre Proteine</one>. Was gibt es sonst noch für <three>Proteintypen</three>? Es gibt auch <one>Faserproteine</one>. URL: https://www.spektrum.de/lexikon/biochemie/faserproteine/2119 []
573
+ - How <one>expensive</one>, via specific numbers, is the <two>Lon-Protease</two> in E. coli? <one>2 ATP per peptide bond cleaved</one>. []
574
+ - Ob ein <three>Zucker</three> <one>reduzierend</one> oder <one>nichtnichtreduzierend</one> ist hängt wovon ob? Von seiner <one>freien Aldehydgruppe</one>. []
575
+ - <one>Carbamoylphosphat</one> erhält seine <two>Phosphatgruppe</two> von ...? <one>ATP</one>. URL: https://de.wikipedia.org/wiki/Carbamoylphosphat []
576
+ - In der Biochemie: was muss mit dem <one>Substrat</one> geschehen damit wir ein umgesetztes Produkt erhalten? Das Substrat muss <one>verspannt</one> werden um aktiviert werden zu können - also <mediumturquoise>in einen instabilen Übergangszustand</mediumturquoise> überführt werden.
577
+ - Nenne die <one>kurze Isoform von p53</one>. A: <one>p44</one>. URL: https://www.ncbi.nlm.nih.gov/pubmed/24341977 []
578
+ - Eine <one>Wasserstoffbrücke</one> besteht aus welchen zwei Komponenten? Aus einem <one>Wasserstoffdonor</one> und einem <one>Wasserstoffakzeptor</one>. []
579
+ - Bei der <one>Biosynthese von Tryptophan</one> spielt <two>PRPP</two> eine wichtige Rolle. Wofür steht <two>PRPP</two>? <one>Phosphoribosylpyrophosphat</one>. (<lightseagreen>Phospho-ribosyl-pyro-phosphat</lightseagreen>). URL: https://de.wikipedia.org/wiki/Phosphoribosylpyrophosphat []
580
+ - Was geschieht wenn <one>Fructane</one> im menschlichen Darm verdaut werden? Gar nichts. <two>Fructane</two> <one>passieren den Magen und Dünndarm unverändert</one>. []
581
+ - Nenne zwei <one>Macrolid-Vertreter</one>. A: (1) <one>Erythromycin</one> (2) <one>Zithromax</one> []
582
+ - <one>Kondensation</one> versus <one>Hydrolyse</one>. Wer verliert Wasser? Die <one>Kondensationsreaktion</one> <two>verliert pro Schritt jeweils ein Wassermolekül</two>. []
583
+ - Wo genau kommt die <one>Wasserstoffbrücke</one> in der <three>Alpha-Helix</three> zustande? Zwischen Sigma+ Wasserstoff der NH-Gruppe und dem Sigma - Sauerstoff der <one>CO-Gruppe</one>.
584
+ - Wo finden wir <one>AMP</one> und <one>dAMP</one> jeweils? (1) <one>AMP</one>: in <two>RNA</two> (2) <one>dAMP</one>: in <two>DNA</two> []
585
+ - Eine <one>offenkettige Hexose</one> enthält wieviele <two>chirale Zentren</two>? <one>4</one>. []
586
+ - Was erzeugt der <one>reduktive Acetyl-CoA-Weg</one>? <one>Acetat</one>. []
587
+ - <one>Glucuronsäure</one> entsteht aus Glucose durch Oxidation an welchem C-Atom? <one>C-Atom Position 6</one>. []
588
+ - Die <one>Dinitrogenase Reduktase</one> hat n Untereinheiten? <one>2</one>. []
589
+ - Nenne ein Beispiel für einen <one>aktivierten Glucosedonor</one>. A: Die <one>UDP-Glucose</one>. URL: https://de.wikipedia.org/wiki/UDP-Glucose []
590
+ - Der Aminoalkohol <one>Sphingosin</one> besitzt <two>wieviele C-Atome</two>? <one>18</one>. URL: https://de.wikipedia.org/wiki/Sphingosin []
591
+ - Are all Amides <one>carboxamides</one>? No. URL: https://en.wikipedia.org/wiki/Carboxamide []
592
+ - Was ist energiereicher: eine <one>Säureamidbindung</one> oder eine <one>Säureanhydridbindung</one>? Die <one>Säureanhydridbindung</one>. URL: https://de.wikipedia.org/wiki/S%C3%A4ureanhydride []
593
+ - Was erzeugt der <one>Pyruvat-Dehydrogenase-Komplex</one>? <one>Acetyl-CoA</one>. URL: https://de.wikipedia.org/wiki/Pyruvatdehydrogenase-Komplex []
594
+ - Das <one>Substrat des Lysozyms</one> ist chemisch gesehen was? Ein <one>Mucopolysaccharid</one>. URL: https://en.wikipedia.org/wiki/Glycosaminoglycan []
595
+ - Das <one>ATP-Molekül</one> hat was für einen Zucker? <one>Ribose</one>. URL: https://de.wikipedia.org/wiki/Adenosintriphosphat []
596
+ - Nenne einen <one>Cofaktor</one> der <three>H</three> (Wasserstoffatom) akzeptiert. A: <one>NAD⁺</one>. URL: https://de.wikipedia.org/wiki/Nicotinamidadenindinukleotid []
597
+ - <one>Mercaptoethanol</one> hat <two>wieviele C Atome</two>? <one>2</one>. URL: https://en.wikipedia.org/wiki/2-Mercaptoethanol []
598
+ - <one>Reduktive Verhältnisse</one> innerhalb der Zelle vor allem wodurch ...? Durch <one>Glutathion</one>. URL: https://de.wikipedia.org/wiki/Glutathion []
599
+ - Welches <one>Alkaloid</one> finden wir in <three>Betelpalmen-Nüssen</three>? <one>Arecolin</one>. URL: https://en.wikipedia.org/wiki/Arecoline []
600
+ - <one>Output</one> der <two>G-Proteine</two>? <one>GDP</one>. URL: https://en.wikipedia.org/wiki/Guanosine_diphosphate []
601
+ - Ist ein <one>Ceramid</one> oder ein <one>Cerebrosid</one> physisch grösser? Ein <one>Cerebrosid</one>. Es trägt nämlich eine <two>Galactose-Gruppe</two>. (Merkhilfe: <two>Cerebrosid</two> hat einen längeren Namen als Ceramid) []
602
+ - <one>Luciferase</one> activity at ... nm? <one>562 nm</one>. URL: https://de.wikipedia.org/wiki/Luciferasen []
603
+ - Bei der <one>schematischen Darstellung der Beta-Faltblätter</one>: wohin zeigt die Spitze des Pfeiles? A: In Richtung des <one>carboxyterminales Ende</one>. []
604
+ - Nenne ein <one>Sequenzmotiv</one>, das die <two>Halbwertszeit eines Protein</two> verkürzt. A: Die <one>PEST Sequenz</one> - <two>Prolin, Glutamat, Serin, Threonin</two>.
605
+ - If the concentration of <one>beta-hydroxybutyrate</one> increase, what can we figure from this? That a <one>ketosis</one> may be happening right now. URL: https://en.wikipedia.org/wiki/Ketosis []
606
+ - Andere Bezeichnung für <one>Thymin</one>? <one>5-Methyl-Uracil</one>. URL: https://en.wikipedia.org/wiki/Thymine []
607
+ - Welche Substanz kann leicht in <one>Citronensäure</one> umgewandelt werden? <one>Calciumcitrat</one> (<two>Calciumcitrat</two> → <two>Citronensäure</two>; Mnemonic: 2x C). []
608
+ - Anderer Begriff für den <one>Blutzucker der Insekten</one>? <one>Trehalose</one>. URL: https://de.wikipedia.org/wiki/Trehalose []
609
+ - Wo findet man ein <one>Säureamid</one> in der Biochemie? Die <one>Peptidbindung von Proteinen</one> ist vom Typ eines Säureamid. []
610
+ - In der Biochemie: kann es mehr als einen <one>isoelektrischen Punkt</one> geben? Nein. []
611
+ - <one>Welches Protein</one> verleiht dem <two>Bindegewebe</two> Flexibilität? <one>Elastin</one>. []
612
+ - Give another name for <one>protein topologies</one>. A: <one>Arrangements of Proteins</one>. []
613
+ - In der Biochemie: wieso wird <one>Ammoniumsulfat</one> verwendet? Wir verwenden es zum <one>Aussalzen von Proteinen</one> - die <springgreen>Ammoniumsulfat-Fällung</springgreen>.
614
+ - What are <one>Carboxypeptidases</one>? These are <royalblue>Exopeptidases</royalblue> that cleave only from the <one>C-terminus</one>.
615
+ - Allgemein formuliert: Wie entstehen <one>biogene Amine</one>? Durch <one>Decarboxylierungsreaktionen aus den Aminosäuren</one>.
616
+ - Um Proteine zu fällen wird oft ein <one>Salz</one> verwendet. Welches meistens? <one>Ammoniumsulfat</one>. Summenformel: <two>(NH₄)₂SO₄</two> URL: https://de.wikipedia.org/wiki/Ammoniumsulfat
617
+ - Wie <one>fällen</one> wir meistens <one>Proteine</one>? Mit Hilfe von <mediumseagreen>Salzen</mediumseagreen> - und zwar meistens <one>Ammoniumsulfat</one> (<two>(NH4)₂SO4</two>). []
618
+ - <one>Glucosamin</one> ist fast ident zu welchem anderen Molekül? Zu <one>Galactosamin</one>. URL: URL: https://de.wikipedia.org/wiki/Galactosamin []
619
+ - Nenne ein Beispiel für eine <one>energiearme Säureamidbindung</one> aus dem Bereich der Biochemie. A: Die <one>Peptidbindung</one>. URL: https://de.wikipedia.org/wiki/Peptidbindung []
620
+ - What is meant with the term <one>polyuria</one>? <one>Increased urine output</one>. URL: https://en.wikipedia.org/wiki/Polyuria []
621
+ - <one>ATP</one> was discovered when? <two>ATP</two> was discovred in the year <one>1929</one>. URL: https://de.wikipedia.org/wiki/Adenosintriphosphat []
622
+ - Von welchem Ende aus erfolgt der <one>Edman-Abbau</one>? Vom <one>N-Terminus</one>. []
623
+ - How is a <one>Zwitterion</one> defined? A <one>Zwitterion</one> is an ion that has <mediumseagreen>one positive</mediumseagreen> and <mediumseagreen>one negative</mediumseagreen> charge. []
624
+ - Andere Bezeichnung für <one>Phosphatidylcholin</one>? <one>Lecithin</one>. URL: https://de.wikipedia.org/wiki/Lecithine []
625
+ - In <one>biochemistry</one>: give another term for the <two>Rossmann fold</two>. A: <one>Nucleotide binding fold</one>. URL: https://en.wikipedia.org/wiki/Rossmann_fold []
626
+ - Bei der <one>Ausbildung von Disulfidbrücken</one> geht was genau verloren? <one>2xH</one>; das -O kommt logischerweise NICHT von der -SH Gruppe der Cysteine. []
627
+ - <two>Protein structure</two> in an <one>immunoglobuline molecule</one>? There are <one>beta sheets everywhere</one>. []
628
+ - Andere Bezeichnung für die <one>Glucokinase</one>? <one>Hexokinase IV</one>. URL: https://en.wikipedia.org/wiki/Hexokinase#Hexokinase_IV_%28%22glucokinase%22%29 []
629
+ - Anderes, englisches Wort für <one>Carbohydrates</one>? <one>Sugars</one>. []
630
+ - <one>Keratin</one> and <one>Collagen</one> have different <two>handedness</two>. Name them. A: (1) <one>Collagen</one> has <two>L→R</two> (2) <one>Keratin</one> has <two>R→L</two> - und als <two>CO₂</two> abgegeben.
631
+ - Ist <one>Hämoglobin</one> oder <one>Lysozym</one> kleiner? <one>Lysozym</one> ist kleiner; hat auch weniger Aminosäuren. []
632
+ - Was geschieht im 1. Schritt der <one>Pyruvat-Dehydrogenase</one>? Die <one>Pyruvat-Carboxygruppe</one> wird abgespalten. URL: https://en.wikipedia.org/wiki/Pyruvate_dehydrogenase []
633
+ - In welchem <one>Jahr</one> wiesen Engelhardt und Lyubimova die <two>ATPase-Aktivität von Myosin</two> nach? Im Jahre <one>1939</one>. []
634
+ - Nenne drei Vertreter der <one>Katecholamine</one>. A: <one>Ad-Do-No</one> (1) <two>Adrenalin</two> (2) <two>Dopamin</two> (3) <two>Noradrenalin</two> []
635
+ - <one>Pyridoxalphosphat</one> ist ein Derivat von ...? Von <one>Vitamin B6</one>. URL: https://de.wikipedia.org/wiki/Pyridoxalphosphat []
636
+ - Nenne <three>zwei Enzyme</three>, die <one>Chitin abbauen</one>. A: (1) <one>Chitinase</one> (2) <one>Chitobiase</one> []
637
+ - The enzyme <one>pyruvate carboxylase</one> has what kind of prosthetic group? <one>Pyruvate Carboxylase</one> contains <two>a biotin prosthetic group</two>. URL: https://en.wikipedia.org/wiki/Biotin []
638
+ - Which <one>vitamin</one> is part of <two>Acetyl-CoA</two>? <one>Pantothenic acid</one>. URL: https://en.wikipedia.org/wiki/Pantothenic_acid []
639
+ - Nenne ein Beispiel für eine bestimmte <one>gekoppelte Reaktion</one> in Lebewesen. A: Die <one>Hydrolyse von ATP</one> (<one>ATP-Hydrolyse</one>). []
640
+ - Die <one>Halbwertszeit eines Proteins</one> hängt vor allem wovon ab? Von der <one>N-terminalen Aminosäure</one>. URL: https://de.wikipedia.org/wiki/Proteolyse []
641
+ - Mit welchem Enzym arbeitete <one>Daniel Koshland</one> als er die <two>induced fit</two> Theorie erstellte? Mit der <one>Hexokinase</one>. URL: https://de.wikipedia.org/wiki/Hexokinase []
642
+ - Give another name for <one>Thermogenin</one>. A: <one>Uncoupling protein 1</one>, <two>UCP1</two>. URL: https://en.wikipedia.org/wiki/Thermogenin []
643
+ - Die <one>Xylulose</one> besitzt <one>wieviele C-Atome</one>? <one>5</one>. URL: https://de.wikipedia.org/wiki/Xylulose []
644
+ - <one>Hämoglobin</one> hat wieviele Untereinheiten? <one>4</one>. []
645
+ - Nenne die 3 großen Klassen von <one>ligandengesteuerten Zelloberflächenrezeptoren</one>. A: (1) Transmittergesteuerte Ionenkanäle (2) <one>G-Protein-gekoppelte Rezeptoren</one> (3) <one>Enzymgekoppelte Rezeptoren</one>
646
+ - In einer <one>rechtsgängigen Alpha-Helix</one>: wieviele Reste finden wir pro Windung? <one>3.6 Reste pro Windung</one>. []
647
+ - Warum machen <one>Endorphine</one> nicht süchtig? Da sie <one>von Enzymen abgebaut werden</one>. URL: https://de.wikipedia.org/wiki/Endorphine []
648
+ - Another, prettier name for <one>NAD</one>? The <one>principle soluble carrier of reduction equivalents</one>. []
649
+ - Nenne drei <one>Aminoglykosid-Antibiotika</one>. A: (1) <one>Gentamycin</one> (2) <one>Neomycin</one> (3) <one>Paromomycin</one>
650
+ - Was macht die <one>Phenylalanin-Hydroxylase</one>? <one>F→Y</one>. Die <two>Phenylalanin-Hydroxylase</two> konvertiert effektiv <royalblue>Phenylalanin</royalblue> (<mediumturquoise>F</mediumturquoise>) zu <royalblue>Tyrosin</royalblue> (<mediumturquoise>Y</mediumturquoise>). URL: https://en.wikipedia.org/wiki/Phenylalanine_hydroxylase []
651
+ - <one>Concanavalin A</one> ist was für ein Typ? <one>Concanavalin A</one> ist ein <two>Lektin</two>. URL: https://de.wikipedia.org/wiki/Concanavalin_A []
652
+ - In der Biochemie, was ist ein <one>Inhibitor</one>? Eine Verbindung die <one>an ein Enzym bindet</one> und dadurch dessen enzymatische Aktivität herabsetzt.
653
+ - Was ist die <one>Hill-Reaktion</one>? Die <one>Wasserspalter-Reaktion</one>. Die Hill-Reaktion ist eine Reaktion, bei der <royalblue>Wasser</royalblue> in <one>Wasserstoff</one> und <one>Sauerstoff</one> gespalten wird. (<two>2x H₂O → 2xH₂ + O₂</two>) []
654
+ - Give an example for a <one>Flavoprotein</one>. A: <one>Succinate dehydrogenase</one>. URL: https://en.wikipedia.org/wiki/Succinate_dehydrogenase
655
+ - Give another word for a <one>Riboflavin group</one>? <one>Vitamin B2</one> group. URL: https://en.wikipedia.org/wiki/Riboflavin
656
+ - Wie sieht, atomar betrachtet, eine <one>Phosphorylgruppe</one> aus? <one>-PO₃</one>. Die Ladung einer Phosphorylgruppe in der Zelle ist <two>2⁻</two>. Siehe das Bild auf: URL: http://www.spektrum.de/lexikon/biologie/phosphorylgruppe/51288
657
+ - Nenne ein Beispiel für ein <one>GPI-verankertes Protein</one>. A: Die <one>Acetylcholinesterase</one>. URL: https://de.wikipedia.org/wiki/Acetylcholinesterase
658
+ - Andere Bezeichnung für den <one>Mechanismus der Energiekopplung</one>? <one>Chemieosmose</one>. URL: https://de.wikipedia.org/wiki/Chemiosmotische_Kopplung- Aus wieviel verschiedenen Proteinen besteht die <one>Propionyl-CoA-Carboxylase</one>? Aus <one>zwei</one>, der Alpha Untereinheit und <two>Beta Untereinheit</two>.- Warum der Name <one>Bisphosphat</one>, welches Beispiel mögen wir hierfür in der Zelle geben und <two>wo</two> mögen wir dieses Molekül finden? Die Phosphate sind <two>an unterschiedlichen Stellen im Molekül</two>, zum Beispiel bei der <one>Fructose 1,6-bisphosphat</one>.
659
+ - Name the 5 stages of <one>natural protein expression</one> in E. coli. A: (1) Activation of Amino Acids (2) Initiation (3) Elongation (4) Termination and Release (5) Folding and posttranslational processing
660
+ - How are <one>the fibres of collagen</one> stabilized? By <one>hyroxylation of their proline residues</one>.
661
+ - Wie genau entsteht ein <one>Ester</one>? A: Aus einer <one>organischen Säure</one> und einem <one>Alkohol</one>, und zwar immer <two>unter Ausschluss von Wasser</two> (eine "Kondensationsreaktion"). Bei Carbonsäuren entsteht so (C=O-O). Die Säure stellt dabei das H für das Wasser zur Verfügung, der Alkohol die OH Gruppe. URL: https://de.wikipedia.org/wiki/Ester
662
+ - Welche grundlegende Aufgabe haben die <one>triglycerides</one> in Tieren? Sie speichern Energie; also, also Aufgabe, die <one>Speicherung von Energie</one>.
663
+ - In general: what is meant with the term <one>proteoglycans</one>? These are <mediumseagreen>long carbohydrate molecules</mediumseagreen> attached to <one>short proteins</one>.
664
+ - Warum baut <lightseagreen>Polygalacturonase</lightseagreen> <one>Pektin</one> ab (der biologische Grund hierfür)? Da <two>Früchte Samen beinhalten</two> und die Zellwand schnell abgebaut werden sollte, damit die <one>Samen auch verbreitet werden können</one>.
665
+ - Hauptaufgabe von <one>Glukagon</one> im menschlichen Körper? Dieses <two>Hormon</two> <one>erhöht den Blutzuckerspiegel</one>.
666
+ - What does a <one>scavenger receptor</one> recognize? A scavenger receptor recognizes modified <one>low-density lipoprotein</one> (<royalblue>LDL</royalblue>).
667
+ - Nenne die 3 Typen der <one>reversiblen Hemmung</one>. A: (1) <one>kompetitive Hemmung</one> (2) <one>unkompetitive Hemmung</one> (3) <one>nichtkompetitive Hemmung</one>
668
+ - <one>Hemicellulose</one> ist ein Polysaccharid. Nenne mindestens 3 verschiedene Saccharide die man darin finden kann. A: <<one>XAG</one>> Xylose, Arabinose, <two>Galactose</two>.
669
+ - Was sind die sogenannten <one>Ping-Pong Mechanismen</one> in der Biochemie? <one>Gruppentransferreaktionen</one>, bei denen ein oder mehrere Protonen freigesetzt werden bevor alle Substrate gebunden haben (nicht 100% sicher!).
670
+ - Worin liegt der Unterschied zwischen <one>Synthasen</one> und <one>Synthetasen</one>? (1) <two>Synthetasen</two> (Merkschema: gross, langer Name, brauchen Energie): verbrauchen ATP zum Knüpfen einer chemischen Bindung. (2) <one>Synthasen</one> katalysieren ebenfalls eine <one>Additionsreaktion</one>, die allerdings <two>ohne ATP-Verbrauch abläuft</two>.
671
+ - Warum sind die <one>Vitamine D</one> eigentlich <two>keine echten Vitamine</two>? Da sie im menschlichen Organismus <one>vollständig synthetisiert werden können</one>.
672
+ - Mnemonic für den Unterschied zwischen <one>Plasma</one> und <one>Serum</one>? <one>SPOF</one> (<royalblue>Serum = Plasma Ohne Fibrinogen</royalblue>)
673
+ - In der Biochemie: nenne ein Enzym-Beispiel für eine <one>Metallionenkatalyse</one>. A: Die <one>Carboanhydrase</one>. URL: https://de.wikipedia.org/wiki/%CE%91-Carboanhydrasen
674
+ - Wann nutzten die Menschen erstmals das <one>Prinzip der Ionenaustauscher</one>? Im <one>Zweiten Buch Mose</one> findet sich ein Hinweis, das die Überführung von bitterem in trinkbares Wasser durch Einlegen von <two>alten Baumstämmen</two> erwähnt. URL: https://de.wikipedia.org/wiki/2._Buch_Mose
675
+ - <one>PMSF</one> (<lightseagreen>Phenylmethanesulfonyl fluoride</lightseagreen>) is an inhibitor. What can it inhibit? It <one>can inhibit serine proteases</one>. (Mnemonic: <royalblue>S</royalblue> in PMSF ... <royalblue>Serin</royalblue>.)
676
+ - Aus <one>Glykogen</one> wird letzten Endes welche Glucoseform <lightseagreen>freigesetzt</lightseagreen>? <one>Glucose-6-Phosphat</one>. URL: https://de.wikipedia.org/wiki/Glucose-6-phosphat
677
+ - Was ist <one>Cathepsin</one>? <one>Cathepsin</one> ist eine <two>Protease</two>. URL: https://en.wikipedia.org/wiki/Cathepsin
678
+ - In Proteinen, das <one>Greek key</one> Motiv: nenne einen Organismus, in dem man dieses Protein finden kann. Wie sieht dieses Motiv aus? A: <one>Staphylococcus Nuclease</one>. Es besitzt 4 Beta-Strands.
679
+ - Wieviele <one>ATP</one> gewinnen wir aus einer <three>C16 Fettsäure</three>? <one>108 ATP</one>.
680
+ - Was sind die <one>PEST-sequences</one>? (1) <royalblue>P</royalblue>: <one>Prolin</one> (2) <royalblue>E</royalblue>: <one>Glumatinsäure</one> (3) <royalblue>S</royalblue>: <one>Serin</one> (4) <royalblue>T</royalblue>: <one>Threonin</one> URL: https://en.wikipedia.org/wiki/PEST_sequence
681
+ - <one>Energiegewinn</one> pro Mol ATP? <one>30.5 kJ</one> / <one>mol ATP</one>.
682
+ - Die <one>NADH-Dehydrogenase</one> enthält welche prostethische Gruppe? <one>FMN</one>: <mediumseagreen>Flavinmono-nucleotid</mediumseagreen>.
683
+ - Welche <one>zwei Typen an Cofaktoren</one> existieren? (1) <one>Essenzielle Ionen</one> (2) <one>Coenzyme</one>
684
+ - Nenne zwei Aspekte, bei denen <one>freie Radikale</one> zum Einatz kommen im menschlichen Körper. A: (1) im <one>Immunsystem</one> (2) zur <one>Regulation des Blutdruck</one>
685
+ - In der Biochemie, was ist die <one>Kinetik</one>? Die <royalblue>Kinetik</royalblue> charakterisiert die <one>Geschwindigkeit einer Reaktion</one>.
686
+ - Was ist <one>Gs</one> und <one>Gi</one> in der <lightseagreen>Signaltransduktion</lightseagreen>? (1) <one>Gs</one> ist ein <one>stimulatorisches G-Protein</one> (2) <one>Gi</one> ist ein <one>inhibitorisches G-Protein</one>
687
+ - <one>Fructose</one> kommt natürlich in Zuckerpolymeren als ... vor? <one>Furanose</one>. URL: https://en.wikipedia.org/wiki/Furanose
688
+ - Wie sieht eine <one>Indol-Gruppe</one> aus und <two>wieviele C-Atome</two> finden wir in ihr? Ein <one>6er-Ring</one>, kombiniert mit einem <one>5er-Ring</one> (der eine N-H Gruppe trägt). Insgesamt finden wir <one>8 C Atome</one> hier. URL: https://upload.wikimedia.org/wikipedia/commons/thumb/e/ef/Indole_2D_numbered.svg/240px-Indole_2D_numbered.svg.png
689
+ - Name an <one>amino sugar</one>. A: <one>D-Glucosamin</one>. URL: https://de.wikipedia.org/wiki/Glucosamin
690
+ - Nenne ein Beispiel für eine <one>Zinkprotease</one>. A: Die <one>Carboxypeptidase A</one>. URL: https://en.wikipedia.org/wiki/Carboxypeptidase_A
691
+ - Es gibt einen <one>nicotinischen Rezeptor</one>. Wie nennen wir den mit längerem Namen? <one>Nicotinischer Acetylcholinrezeptor</one>.
692
+ - In der Biochemie: welche Substanz genau wird <one>aktives Methyl</one> genannt? <one>S-Adenosyl-L-Methionin</one>. URL: https://en.wikipedia.org/wiki/S-Adenosyl_methionine
693
+ - Wohin schauen die Reste einer Aminosäure in einer Alpha-Helix? Sie zeigen alle <one>nach aussen</one>.
694
+ - The <one>F1 portion</one> of the <lightseagreen>ATP synthase</lightseagreen> is located where? It is <one>inside the matrix</one> of the mitochondria.
695
+ - <one>Hemicellulose</one> ist ein Polymer aus? (1) <one>Pentosen</one> (2) <one>Hexosen</one>
696
+ - Anderer Begriff für <one>Methotrexate</one>? <one>Amethopterin</one>. URL: https://de.wikipedia.org/wiki/Methotrexat
697
+ - In den <one>Mitochondrien</one> gibt es Komplex I, Komplex II etc... bis Komplex V. Wie heissen diese jeweils mit langem Namen? Gib auch ein Mnemonic hierzu an. A: <royalblue>NUSCA</royalblue> (1) <mediumseagreen>Komplex I</mediumseagreen>: <one>NADH-Ubiquinon-Oxidoreductase</one> (2) <mediumseagreen>Komplex II</mediumseagreen>: <one>Ubiquinon-Cytochrom c-Oxidoreductase</one> (3) <mediumseagreen>Komplex III</mediumseagreen>: <one>Succinat-Ubiquinon-Oxidoreductase</one> (4) <mediumseagreen>Komplex IV</mediumseagreen>: <one>Cytochrom c-Oxidase</one> (5) <mediumseagreen>Komplex V</mediumseagreen>: <one>ATP-Synthase</one>
698
+ - Anderer Begriff für <one>G-Proteins</one>? <one>7 TM Receptors</one>. URL: https://en.wikipedia.org/wiki/G_protein-coupled_receptor
699
+ - Was ist eine <one>Carbamoylgruppe</one>? A: Dies ist die Atomgruppierung <one>-CO-NH₂</one>. URL: http://www.rsc.org/publishing/journals/prospect/ontology.asp?id=CHEBI:23004&MSID=b808625g
700
+ - Was genau ist <one>Inosine</one>? Inosine ist ein Nucleoside, das gebildet wird wenn <one>Hypoxanthine</one> an einen Ribose-Ring angeheftet wird.
701
+ - Der <one>Abbau von Glykogen</one> generiert welche Substanz? <one>Glucose-1 Phosphat</one>. URL: https://de.wikipedia.org/wiki/Glucose-1-phosphat
702
+ - <one>Isoprenoide</one> müssen von der Zelle biosynthetisch hergestellt werden. Welche Verbindung ist hierbei <two>der direkte Vorläufer</two>? Der <one>C5-Körper</one> <two>Isopentenyl-Pyrophosphat</two> (<royalblue>IPP</royalblue>). URL: https://en.wikipedia.org/wiki/Isopentenyl_pyrophosphate
703
+ - Wieso benötigen tierische Zellen die <one>Dihydrofolat-Reduktase</one>? Um den Cofaktor <one>Folsäure</one> zu synthetisieren. URL: https://de.wikipedia.org/wiki/Fols%C3%A4ure
704
+ - Was ist eine <one>Desaminierung</one>? Die <one>chemische Abspaltung einer Aminogruppe</one>, als Ammonium-Ion (<two>NH4⁺</two>) oder Ammoniak. URL: https://de.wikipedia.org/wiki/Desaminierung
705
+ - <one>Biotin</one> kann <two>CO₂</two> akzeptieren, benötigt hierzu jedoch welchen Cofaktor? <one>Acetyl-CoA</one>.
706
+ - <one>Pyruvat</one> kann in <one>Lactat</one> konvertiert werden über das Enzym <lightseagreen>Lactat-Dehydrogenase</lightseagreen>. Welches Molekül wird hier noch gebraucht? <one>NADH</one>. URL: https://de.wikipedia.org/wiki/L-Lactatdehydrogenase
707
+ - Was machen die <one>Decarboxylasen</one>? <one>Decarboxylasen</one> sind Enzyme, die -COOH abbauen können und dabei <one>die Abspaltung von CO₂ katalysieren können</one>. CO₂ ist somit ein <two>Endprodukt</two> dabei. URL: https://de.wikipedia.org/wiki/Decarboxylasen
708
+ - Nenne 3 Proteasen, die mit <one>A</one>, <one>C</one> und <one>M</one> beginnen. A: (1) <one>Aspartatproteasen</one> (2) <one>Cysteinproteasen</one> (3) <one>Metalloproteasen</one>
709
+ - Systematischer Name und Trivialnamen des <one>einfachsten Keton</one>? Zeichne seine Strukturformel. A: <one>Aceton</one> (<two>CH₃-C=O-CH₃</two>), systematischer Name: <one>Propanon</one>. URL: https://de.wikipedia.org/wiki/Aceton
710
+ - Which 3 components can be found in a <one>buffer system</one>? (1) <one>liquid</one> (2) <one>weak acid</one> (3) <one>conjugate base</one>
711
+ - Where can we find the <one>Greek key motif</one>? In <one>antiparallel beta sheets</one>.
712
+ - Wofür genau steht die Abkürzung <one>RuBisCO</one>? <one>Ribulose-1,5-bisphosphate carboxylase</one>/<one>oxygenase</one>.
713
+ - Übertragen <one>Lichtsammelkomplexe</one> Elektronen von Antennenpigmenten auf das Reaktionszentrum bei der Photosynthese? Nein - <one>nur Energie</one> wird weitergegeben.
714
+ - Wie muss <one>Thiamin</one> (<two>Vitamin B1</two>) modifiziert werden um zu <one>TPP</one> (<two>Thiaminpyrophosphat</two>) zu werden? Es muss an einem Ende <one>phosphoryliert</one> werden; wird also <two>effektiv schwerer</two>.
715
+ - Was heisst <one>ureotelisch</one>? Überschüssiges NH4⁺ wird in <one>Harnstoff</one> umgewandelt (= Harnstoffbildend).
716
+ - What means <one>ammonotelic</one>? When amino nitrogen is excreted as <one>ammonia</one>.
717
+ - Eine <one>Hydroxamatgruppe</one> besteht aus welchen Anteilen? A: (<royalblue>-C=ONOH</royalblue>) Zwei-R Resten, sowie einer Vierer-Gruppe die aus <one>N-OH</one> und oben am C noch aus C=O verknüpft ist. URL: https://en.wikipedia.org/wiki/Hydroxamic_acid
718
+ - Das Coenzym <one>Tetdrahydrofolate</one> findet man wo (in welchem Enzym)? In der <one>Thymidylat-Synthase</one>. (Mnemonic: Beides beginnt mit dem Buchstaben <royalblue>T</royalblue>) URL: https://en.wikipedia.org/wiki/Thymidylate_synthase
719
+ - Welche 5 grundlegenden Strategien können Enzmye verwenden? (1) <one>Kovalente Katalyse</one> (2) Säure-Base Katalyse (3) Metall-Ionen Katalyse (4) Katalyse durch Orientierungseffekte (5) Katalyse durch Stabilisieren des Übergangszustandes
720
+ - Name at the least two species which may contain <one>phycobilins</one>. A: (1) in <one>cyanobacteria</one> (2) in <one>red algae</one>
721
+ - Was passiert bei der <one>Lyophylisation</one>? Die Probe wird zuerst <two>eingefroren</two>; Wasser sublimiert danach bei <one>sehr niedrigem Druck</one>.
722
+ - Nenne zwei Beispiele für <one>Homopolysaccharide</one>. A: (1) <one>Cellulose</one> (2) <one>Glykogen</one>
723
+ - Welche Eigenschaft <one>'hat'</one> ein denaturiertes Protein? Ein denaturiertes Protein ist <one>biologisch inaktiv</one>.
724
+ - Was sind <one>Elaioplasten</one>? <one>Pflanzliche Speicherorganellen</one> für <two>Öl</two>.
725
+ - Bei der Spaltung der 1,6 Verzweigungen des <one>Glykogens</one> entsteht welche Substanz? <one>Glucose</one>.
726
+ - What means the <one>Yin</one>/<one>Yang</one> nature of enzymes? They are <one>capable of catalyzing both the forward and the reverse reaction</one>.
727
+ - Was heisst <one>NOESY</one> in der Proteinbiochemie? <one>Nuclear Overhauser Spectroscopy</one>. URL: https://en.wikipedia.org/wiki/Nuclear_Overhauser_effect
728
+ - Give one example for a <one>glycerolipid</one>. A: <royalblue>DAG</royalblue>: <one>Diacylglycerol</one>
729
+ - Bei den <one>Monosacchariden</one>, also den Einfachzuckern: wie nennen wir das <two>C1 Atom</two> noch? <one>Aldehydgruppe</one>. URL: https://de.wikipedia.org/wiki/Aldehyde
730
+ - Can you provide an example for a <one>protein storage function</one>? An example is <royalblue>hemoglobin</royalblue>, which can, effectively, <one>store oxygen in the blood</one>. URL: https://en.wikipedia.org/wiki/Hemoglobin
731
+ - Der menschliche Körper eines <one>70kg Mannes</one> besitzt <two>n g ATP</two>, in Summe? <one>250g</one>.
732
+ - How do <one>antifreeze proteins</one> work, in general? They <one>prevent the growth of ice crystals</one>.
733
+ - Was heisst <one>regioselektiv</one>? Ein <one>Enzym</one> katalysiert seine Reaktion <two>nur an einer Stelle des Substratmoleküls</two>.
734
+ - Was ist mit dem Begriff <one>amphipathisch</one> gemeint? Dies sind <two>Moleküle</two>, die aus zwei funktionellen Teilen aufgebaut sind: einem <one>hydrophoben</one> und einem <one>hydrophilen</one> Teil.
735
+ - <one>NAD⁺</one> kann was genau aufnehmen? (1) <one>zwei Elektronen</one> (<two>e⁻</two>) (2) <one>ein Proton</one> (<two>H⁺</two>)
736
+ - Im <one>Mut-SLH Error Repair Pathway</one>: welche Aufgabe hat <three>Mut L</three>? Erweitert den Komplex und bildet eine Plattform für Mut H.
737
+ - Name <one>two different proteases</one> that can yield the <lightseagreen>Klenow fragment</lightseagreen>. A: (1) <one>Subtilisin</one> (2) <one>Trypsin</one>
738
+ - Wann ist ein Protein <one>am schlechtesten löslich</one>? Wenn es an seinem <one>isoelektrischen Punkt</one> vorliegt.
739
+ - <one>Proteases</one> are typically grouped into <three>four major classes</three>, based on their active site residues. Name them. A: <royalblue>Mnemonic: MASC them!</royalblue> (1) <one>metalloproteases</one> (2) <one>aspartic proteases</one> (3) <one>serine proteases</one> (4) <one>cysteine proteases</one>
740
+ - Was heisst <one>AMPK</one>? <one>AMP-aktivierte Proteinkinase</one>. URL: https://de.wikipedia.org/wiki/AMP-aktivierte_Proteinkinase
741
+ - unter Abspaltung eines Phosphatrestes. URL: https://de.wikipedia.org/wiki/Guanylylcyclasen
742
+ - Die Zelle kann eine <one>Keto-Gruppe</one> in eine <mediumturquoise>Methylengruppe</mediumturquoise> konvertieren. Welcher Cofaktor wird hierzu benötigt? <one>NADPH</one>. URL: https://de.wikipedia.org/wiki/Nicotinamidadenindinukleotidphosphat
743
+ - Wieso genau ist das Enzym <one>Hydrogenase</one> wichtig? Dieses Enzym wandelt <one>atmosphärisches H₂</one> in <one>H⁺</one> um. Es spielt eine Rolle bei der <one>Methanogenese</one> und bei der <one>Stickstofffixierung</one>. URL: https://de.wikipedia.org/wiki/Hydrogenase
744
+ - Nenne ein <one>Elektronen-Carrier Molekül</one>. A: <one>NAD⁺</one>. URL: https://en.wikipedia.org/wiki/Nicotinamide_adenine_dinucleotide
745
+ - Was ist <one>Carbamoylierung</one>? Dies ist das Anheften einer <one>-CO-NH₂</one> Gruppe. URL: https://de.wikipedia.org/wiki/Carbamoylgruppe
746
+ - Welcher Vorteil ergibt sich durch Einsatz eines <one>cyclic process</one> bei der <two>Biosynthese der Fettsäuren</two>? Es sind nur <one>relativ wenig Enzyme notwendig</one>, <two>um Fettsäuren zu synthetisieren</two>.
747
+ - Wie sind die monomeren Bausteine in <one>Cellulose</one> verknüpft? <one>Beta-1,4-glykosidisch</one>. URL: https://en.wikipedia.org/wiki/Cellulose
748
+ - Was ist das <one>Grundgerüst</one> des späteren Pyrimidins? <one>Carbamoylaspartat</one>. URL: https://de.wikipedia.org/wiki/Pyrimidine#Biosynthese
749
+ - Was meinen wir mit einer <one>vollständigen Oxidation</one>? Eine vollständige Oxidation ist ein chemischer Vorgang der uns letzten Endes <one>Kohlenstoffdioxid</one> (<two>CO₂</two>) und <one>Wasser</one> (<two>H₂O</two>) liefert.
750
+ - Wie unterscheiden sich <one>periphere</one> von <one>integralen</one> Membranproteinen? (1) Integrale Membranproteine sind <two>in die Membran integriert</two>. (2) Periphere Membranproteine hingegen sind nur <two>mit der Membran assoziiert</two>.
751
+ - <one>ATP</one> komplexiert mit ...? <one>Divalenten Kationen</one>, wie <two>Mg²⁺</two> oder <two>Mn²⁺</two>. URL: https://en.wikipedia.org/wiki/Adenosine_triphosphate#Binding_of_metal_cations_to_ATP
752
+ - Was muss geschehen damit <one>ATP</one> konkret entsteht? Auf <mediumturquoise>ADP</mediumturquoise> muss eine Phosphorgruppe übertragen werden; es muss also <one>phosphoryliert</one> werden.
753
+ - Input + Output der <one>Aspartase</one>? (1) <one>Aspartat</one> (2) <one>Fumarat</one>
754
+ - What is <one>the EC number for ATP Synthase</one>? <one>EC 3.6.3.14</one>
755
+ - Nenne ein <one>Prolinderivat</one>. A: <one>4-Hydroxyprolin</one>. (Mnemonic: Hydro... tetro ... tetra ... 4) URL: http://www.spektrum.de/lexikon/ernaehrung/4-hydroxyprolin/4167
756
+ - Was ist die <one>Deaminierung</one>? Eigentlich wird es <mediumseagreen>Desaminierung</mediumseagreen> genannt. Dies ist der Verlust einer Aminogruppe, also einer <one>-NH₂ Gruppe</one>. URL: http://www.spektrum.de/lexikon/biologie/aminogruppe/2821
757
+ - Ursache für <one>Albinismus</one>? Ausfall beziehungsweise ein Mangel des <lightseagreen>Enzyms</lightseagreen> <one>Tyrosinase</one>. URL: https://en.wikipedia.org/wiki/Tyrosinase
758
+ - Wie viele Moleküle aktivierter Essigsäure sind zur <one>Bildung von einem Molekül aktiven Isoprens</one> erforderlich? <one>3</one>. (Merkhilfe: Isopren hat 5 C-Atome; Essigsäure hat 2 C-Atome).
759
+ - <one>Grösster Glucosebedarf</one> im menschlichen Körper? Das <one>Gehirn</one> benötigt am meisten Glucose.
760
+ - <one>Titin</one> besteht aus wievielen Aminosäuren? <one>26_900 Aminosäuren</one>
761
+ - Name an enzyme that uses <one>Ni²⁺</one> as a cofactor. A: The <one>Urease</one>. URL: https://de.wikipedia.org/wiki/Urease
762
+ - Where could we find <one>4-hydroxyproline</one>? In <one>plant cell walls</one>. URL: https://en.wikipedia.org/wiki/Hydroxyproline#Plants
763
+ - Nenne drei Beispiele für <one>Rezeptor-Tyrosinkinasen</one>. A: (1) <one>Insulinrezeptor-Typ</one> (2) <one>EGF-Rezeptor-Typ</one> (3) <one>NGF-Rezeptor-Typ</one>
764
+ - Die <one>Glucose</one> hat wieviel kJ / Mol? <one>1500 kJ</one> / <one>mol</one>.
765
+ - Wie gross, in <one>kDa</one>, sind die <two>Aquaporine</two>? <one>24 kDa</one>. URL: https://en.wikipedia.org/wiki/Aquaporin
766
+ - Was ist <one>das Endprodukt des Cholin-Abbaus</one>? Die Aminosäure <one>Glycin</one>.
767
+ - <one>Chitin</one> ist ein Polysaccharid, das aus <two>Glucose-Monomeren</two> besteht. Welche Besonderheit hat es in seiner chemischen Struktur? Besitzt <one>nitrogen-containing carbonyl groups</one>.
768
+ - Was genau überträgt <one>NADP⁺</one> / <one>NADP*</one>? Je <one>2x H</one>. (Eigentlich wird nur 1 H-Atom zur Generierung von NADPH benötigt; jedoch werden 2 Elektronen und in Summe 2 Wasserstoffatome benötigt. Ein Wasserstoffatom wird als Produkt freigesetzt.)
769
+ - Nenne zwei verschiedene Enzyme die <one>RNA-Primer</one> entfernen können. A: (1) <one>DNA-Polymerase I</one> (2) <one>RNase H</one>
770
+ - Die <one>Fettsäuresynthese</one> ist eine Kondensationsreaktion zwischen ...? <one>Acetyl-ACP</one> und <one>Malonyl-ACP</one> (ACP heisst <two>Acyl Carrier Protein</two>). URL: https://en.wikipedia.org/wiki/Histone_acetyltransferase
771
+ - Für die <one>Zirkularisierung der eukaryotischen mRNA</one> sind 4 Proteine wichtig. Welche? (1) eIF3 (2) eIF4E (3) eIF4G (4) <one>PAB</one>
772
+ - Nenne eine besondere Eigenschaft der <one>Beta-Galactosidase</one>. A: Die <one>Alpha-Komplementation</one>. Diese stellt die Basis für das <two>blue</two>/<two>white screening</two> von <mediumturquoise>pUC Vektoren</mediumturquoise> dar.
773
+ - Was ist der wichtigste Akzeptor für die Aminogruppe bei <one>Transaminierungsreaktionen</one> ist? <one>Alpha-Ketoglutarat</one>. URL: https://de.wikipedia.org/wiki/%CE%91-Ketoglutars%C3%A4ure
774
+ - <one>Phosphopantetheine</one> hat an einem Ende eine <three>Phosphorgruppe</three>, und am anderen Ende eine ... ? <one>Sulfhydrylgruppe</one> (<royalblue>SH</royalblue>).
775
+ - Ein <one>Thioester</one> wird aus welchen zwei Komponenten gebildet? <one>Thioalkohol</one> sowie <one>Carbonsäure</one>.
776
+ - A <one>steroid</one> contains <one>how many rings</one>? <one>Four</one>.
777
+ - Wieviel <lightseagreen>mgram Vitamin C täglich</lightseagreen> um <one>Skorbut zu vermeiden</one>? Etwa <one>20 mg</one>.
778
+ - Nenne drei <one>Proteoglycan-Beispiele</one>. A: (1) <one>Aggrecan</one> (2) <one>Neurocan</one> (3) <one>Versican</one>
779
+ - <one>Glykoproteine</one> entstehen über welche zwei Möglichkeiten? (1) <one>N-glykosidisch</one> über <two>Asparagin</two> (2) <one>O-glykosidisch</one> über <two>Serin</two>/<two>Threonin</two>
780
+ - Nenne drei <one>Eicosanoide</one>. A: (1) <royalblue>L</royalblue> ... <one>Leukotriene</one> (2) <royalblue>P</royalblue> ... <one>Prostaglandine</one> (3) <royalblue>T</royalblue> ... <one>Thromboxan</one>
781
+ - Der <one>oxidative Ligninabbau</one> benötigt was? <one>H₂O₂</one>. URL: https://de.wikipedia.org/wiki/Wasserstoffperoxid
782
+ - Andere Bezeichnung für <one>Detergenzien</one>? <one>Oberflächenaktive Substanzen</one>.
783
+ - Welche Funktion hat <one>Aldosteron</one>? A: <one>Aldosteron</one> steuert die Menge an <royalblue>Natrium-Ionen</royalblue>, die von der Niere <mediumseagreen>ausgeschieden</mediumseagreen> werden. URL: https://de.wikipedia.org/wiki/Aldosteron
784
+ - What is the <one>Ramachandran plot</one>? A <one>2D plot</one> constituting of Phi and Psi Bond-Angles found in Proteins (<two>sterically allowed regions</two>).
785
+ - Nenne ein Beispiel für eine <one>Hydrolase</one> die etwas mit Phosphor zu tun hat. A: <one>Pyrophosphatase</one>.
786
+ - <one>Natürliche Entkoppler</one> in der Biochemie wirken über ... ? <one>Ionenkanäle</one>.
787
+ - Nenne die 6 Klassen der Proteasen. A: (S, T, C, Aspartate, Glutamate + Metallo) (1) Serine proteases (2) Threonine proteases (3) Cysteine proteases (4) Aspartate proteases (5) Glutamic proteases (6) <one>Metalloproteases</one>
788
+ - Der <three>Vorläufer</three> von <one>Steroiden</one>, <one>Carotinoiden</one> und den <one>Gibberrellinen</one> ist ... ? <one>Isoprenoid</one>. URL: https://www.britannica.com/science/isoprenoid
789
+ - Was meinen wir mit einer <one>glykosidischen Bindung</one>? Dies ist <one>die Verknüpfung zweier Zucker unter Wasserabspaltung</one>.
790
+ - Welche <one>zwei Typen an homologen Proteinen</one> können allgemein unterschieden werden? (1) <one>Orthologe Proteine</one> (2) <one>Paraloge Proteine</one>
791
+ - Wie sieht <one>Guanidinium</one> aus? A: <one>1x C</one> und <one>3x NH₂</one> an dieses C gebunden. URL: https://i.imgur.com/ozV24mT.jpg
792
+ - Warum müssen Menschen <one>Folsäure</one> mit der Nahrung aufnehmen? Weil sie das <one>PABA Zwischenprodukt</one> nicht synthetisieren können.
793
+ - Bei den <one>Aminotransferasen</one>: wer ist der häufigste <lightseagreen>Akzeptor der Aminogruppe</lightseagreen>? <one>Alpha-Ketoglutarat</one>.
794
+ - <one>Hydrophobic amino acids</one> may be subdivided into which two general groups? (1) <one>aliphatic</one> (2) <one>aromatic rings</one>
795
+ - Merkslogan für die <three>6</three> <one>Enzymklassen</one>? <one>OTH-LIL</one> (<one>Otto-Lyli</one>).
796
+ - Welche 3 Wege gibt es für <one>Glucose-6-Phosphat</one> in der Zelle verwendet zu werden? (1) In der <one>Glycolyse</one> (2) In der Glycogensynthese (3) Im Pentosephosphatweg
797
+ - Nenne die 3 Komponenten von <one>Coenzym A</one>. A: (1) Beta-Mercaptoethylamin-Einheit (2) Pantothenat-Einheit (3) <one>ATP</one>
798
+ - Was ist ein <one>Hydrid-Ion</one>? Dies ist <one>das Anion von Hydrogen</one>, also Wasserstoff: <two>H⁻</two>.
799
+ - The act of <one>Ubiquitination</one> is carried out in three main steps. How are these called, in <lightseagreen>one-word form</lightseagreen> for each step? (1) <one>activation</one> (2) <one>conjugation</one> (3) <one>ligation</one>
800
+ - Nenne drei verschiedene <one>Rezeptor-Tyrosinkinasen Typen</one>. A: (1) <one>Insulinrezeptor-Typ</one> (2) <one>EGF-Rezeptor-Typ</one> (3) <one>NGF-Rezeptor-Typ</one>
801
+ - Nenne ein Beispiel für eine <one>kovalente Katalyse</one>, mithilfe eines <two>Coenzyms</two>. A: Die <two>CO₂-Übertragung</two> mit Hilfe von <one>Biotin</one>.
802
+ - Nenne zwei Beispiele für <one>Faserproteine des Menschen</one>. A: (1) <one>Kollagen</one> (2) <one>Myosin</one>
803
+ - Welche Ringe, also Zahl der C-Atome in diesen Ringen, hat <one>Harnsäure</one>? Einen <mediumseagreen>6er Ring</mediumseagreen> und einen <mediumseagreen>5er Ring</mediumseagreen>, zu, in Summe, <one>5 C-Atomen</one> (und <one>4 N-Atome</one>). URL: https://de.wikipedia.org/wiki/Harns%C3%A4ure
804
+ - Nenne einen wichtigen <one>Methylgruppenüberträger</one> in der Biochemie. A: <one>S-Adenosylmethionin</one>. URL: https://de.wikipedia.org/wiki/S-Adenosylmethionin
805
+ - <one>Myoglobin</one> hat n AA? A: <one>153 Aminosäuren</one>; ist also <two>ein mittelgroßes Protein</two>. URL: https://en.wikipedia.org/wiki/Myoglobin
806
+ - Anderes Wort für <one>Vitamin B6</one>? <one>Pyridoxine</one>. URL: https://en.wikipedia.org/wiki/Pyridoxine
807
+ - Was erzeugt die <one>Squalen-Monooxygenase</one>? Ein <one>Epoxid</one>: die <mediumturquoise>Squalen-Monooxygenase</mediumturquoise> addiert ein Sauerstoffatom (O) ans Ende einer <mediumseagreen>Squalenkette</mediumseagreen>.
808
+ - Kinder mit <one>starker PKU</one> haben oft blondes Haar und reduzierte Körperpigmente. Wieso? Die <two>Absenz von PAH</two> (<three>phenylalanine hydroxylase</three>) führt zu einem <one>metabolischen Block</one>. Tyrosin kann normalerweise in Melanin konvertiert werden, PKU Patienten können aber nicht Phenylalanin zu Tyrosin konvertieren.
809
+ - In der Biochemie, was meinen wir mit einer <one>QAE-Gruppe</one>? Dies bezeichnet eine <one>Quartäre Aminoethyl-Gruppe</one>.
810
+ - <one>Lysozym</one> hat eine katalytische <two>Klammer</two> im aktiven Zentrum, um die glycosidischen Bindungen seines Substrates (Peptidoglykanschicht bakterieller Zellwände) lösen zu können. Welche <three>zwei Aminosäuren</three> sind im katalytischen Zentrum befindlich? (1) <one>Apartat</one> (2) <one>Glutamat</one>
811
+ - Bei einer <one>reversed-phase Matrix</one> verwenden wir <two>Kieselgel</two>. Womit ist dieses Kieselgel beschichtet? Mit <one>Alkylketten</one>.
812
+ - Wenn wir eine <one>Aminogruppe</one> an <mediumpurple>UMP</mediumpurple> anhängen entsteht <mediumturquoise>CMP</mediumturquoise>. Woher aber stammt diese Aminogruppe? Von der Aminosäure <one>Glutamin</one>.
813
+ - Im menschlichen Körper: wo wird <one>Laktat</one> abgebaut? In der <one>Leber</one>.
814
+ - Welche Gruppe finden wir bei den <one>Thiolen</one>? Eine <one>Sulfhydrylgruppe</one>. URL: https://de.wikipedia.org/wiki/Thiole
815
+ - Name one of the most <one>famous polysaccharides for animals</one>. A: <one>Amylose</one>. URL: https://en.wikipedia.org/wiki/Amylose
816
+ - Nenne ein <one>Protein</one>, das auf <two>mechanische Spannung</two> reagieren kann. A: <one>Elastin</one>. URL: https://de.wikipedia.org/wiki/Elastin
817
+ - Nenne einen ungewöhnlichen Inhibitor der <one>Phosphodiesterase 5</one>. A: <one>Viagra</one> (<mediumturquoise>sildenafil</mediumturquoise>) URL: http://www.drugs.com/viagra.html
818
+ - Die <one>Proteinkinase A</one> hat wieviel Untereinheiten? <one>4</one>. URL: https://de.wikipedia.org/wiki/Proteinkinase_A
819
+ - Was bedeutet das Wort <one>Trypsin</one>? <one>Etwas niederreissen</one>.
820
+ - Die <one>Umkehr der Hydrolyse</one> heisst? A: <one>Dehydratisierung</one>. URL: https://de.wikipedia.org/wiki/Dehydratisierung_%28Chemie%29
821
+ - <one>Welches Enzym</one> verwendet sowohl <three>His12</three> als auch <three>His119</three>? <one>Ribonuclease A</one>.
822
+ - Nenne zwei Methoden wie wir <one>reversible Enzyminhibitoren</one> aus einer Lösung entfernen können. A: (1) <one>Dialyse</one> (2) <one>Gelfiltration</one>
823
+ - Welchen Alkohol finden wir in <one>Riboflavin</one> und wieviele C Atome hat er? Den <one>C5-Alkohol Ribitol</one>.
824
+ - The molecule <one>FMN</one> can carry what exactly? <two>FMN</two> can <one>carry hydrogen atoms</one>. URL: https://en.wikipedia.org/wiki/Flavin_mononucleotide
825
+ - Was ist eine <one>Methinbrücke</one>? <one>-CH-</one>
826
+ - From a <one>biochemical point of view</one>: why cant humans make use of purines and pyrimidines more? They lack the enzyme <one>urate oxidase</one>, which means that they can not convert <one>uric acid</one> (<royalblue>Harnsäure</royalblue>). URL: https://en.wikipedia.org/wiki/Urate_oxidase
827
+ - In der Biochemie: <one>Natriumlaurylsulfat</one> ähnelt welch anderer Substanz? <one>SDS</one> (<mediumseagreen>Sodium dodecyl sulfate</mediumseagreen>). URL: https://en.wikipedia.org/wiki/Sodium_dodecyl_sulfate
828
+ - Die <one>ATPase</one> hat <two>3 verschiedene Konformationen</two>. Wie geht die zyklische Reihenfolge hierzu? <one>O → L → T</one>
829
+ - Energiegehalt einer <one>Wasserstoffbrückenbindung</one> (von, bis)? <one>4-20 kJ</one> / <one>mol</one>.
830
+ - Aside from the <one>Omega-Loop</one>, name three secondary structures of proteines. A: (1) Alpha Helix (2) Beta Sheets (3) <one>Beta Turns</one>
831
+ - <one>NAD⁺</one> und <one>NADP+</one> sind was ...? A: <one>Wasserstoffatomcarrier</one>.
832
+ - Beim <one>Abbau von Glykogen</one> durch die <lightseagreen>Glykogenphosphorylase</lightseagreen> entsteht als Primärprodukt welche Substanz? <one>Glucose-1-Phosphat</one>.
833
+ - What is a <one>degron</one>? An internal sequence in an amino acid chain that ensures their timely cellular degradation.
834
+ - Wann vor allem bildet der menschliche Körper <one>Ketonkörper</one>? Bei einem <one>länger anhaltenden Nahrungsmangel</one> (<mediumturquoise>Fasten</mediumturquoise>).
835
+ - Nenne die beiden funktionellen Gruppe von <one>Anthranilat</one>. A: (1) <one>-COO⁻</one> (2) <one>-NH₂</one>
836
+ - Beim <one>splicing</one> gibt es ein Adenosin als <three>Verzweigungsstelle</three>. Wo liegt das etwa? 20-40 Nukleotide stromaufwärts der <one>3' Spleißstelle</one>.
837
+ - Wo in der Zelle finden wir die <one>protein disulfide isomerase</one>? Im <one>ER Lumen</one>. URL: https://en.wikipedia.org/wiki/Protein_disulfide-isomerase
838
+ - Was macht <one>Plasmin</one>? <one>Plasmin</one> baut <two>Fibrin</two> ab. URL: https://de.wikipedia.org/wiki/Plasmin
839
+ - In der Biochemie: was gilt bei einem <one>Gleichgewicht</one>? Die <one>realen Konzentrationen</one> ändern sich nicht mehr.
840
+ - Was macht das <one>Glycerin-3-phosphat-Shuttlesystem</one>? Dieser Transportmechanismus dient dazu, das bei der Glycolyse anfallende Reduktionsmittel in Nicotinamidadenindinukleotid (NADH) vom Cytosol in die Matrix der Mitochondrien zu befördern.
841
+ - Nenne <one>ein natürlich vorkommendes Disaccharid</one> das auf einer Verknüpfung von zwei <two>N-Acetylglucosamin-Molekülen</two> aufgebaut ist. A: Die <one>Chitobiose</one>. URL: https://en.wikipedia.org/wiki/Chitobiose
842
+ - <one>Inosin</one> entsteht aus? <one>Hypoxanthin</one>. URL: https://de.wikipedia.org/wiki/Hypoxanthin
843
+ - Andere Bezeichnung für <one>aktivierte Essigsäure</one>? <one>Acetyl-Coenzym A</one>. URL: https://en.wikipedia.org/wiki/Acetyl-CoA
844
+ - In Säugetieren wird <one>Propionyl-CoA</one> zu (S)-methylmalonyl-CoA konvertiert. Welches Enzym macht dies? Propionyl-CoA carboxylase, ein Biotin-abhängiges Enzym.
845
+ - Nenne <one>3 Disacharide</one>. A: (<mediumseagreen>L,M,S</mediumseagreen>) <one>Laktose</one>, <one>Maltose</one>, <one>Saccharose</one>.
846
+ - To determine the <one>protein content in food</one>, we employ which specific method? The <one>Kjeldahl method</one>. URL: https://en.wikipedia.org/wiki/Kjeldahl_method
847
+ - Why the word <one>amino acid residue</one>? This reflects the <one>loss of water</one> when two amino acids are joined together.
848
+ - Bei der <one>ATP-Synthase</one> gibt es die <two>O-Konformation</two>, <three>O</three> für <three>Open</three>. Wieso dieser Name? <one>O</one> bedeutet hier einfach: <two>Freisetzung von ATP</two>.
849
+ - Give an example for a <one>polyisoprenoid hydrocarbon</one>. A: <one>Squalen</one>. URL: https://de.wikipedia.org/wiki/Squalen
850
+ - What are <one>Glucans</one>? <one>Polymers of Glucose</one> (more accurately: <two>D-Glucose</two>). URL: https://en.wikipedia.org/wiki/Glucan
851
+ - Beim <one>Alpha-Keratin</one> gibt es <two>Mikrofibrille</two> und <two>Protofibrille</two>. Welche Verbindung gibt es zwischen diesen? <one>Vier Protofibrillen</one> bilden <one>eine Mikrofibrille</one> (also <one>4:1</one>).
852
+ - Name a peculiar feature of the <one>D amino acids</one> in bacteria? They are <one>enzymatically produced</one> rather than by <one>ribosomal synthesis</one>.
853
+ - Beim <one>Beta-Alpha-Beta Motiv</one> werden parallele Beta-Sheets verknüpft. Gib ein Enzymbeispiel an. Wieso ist die Aminosäuresequenz konserviert? Triose-3-Phosphat Isomerase. Die Aminosäuresequenz ist konserviert da sie in der Substratbindung involviert ist.
854
+ - What is <one>Geranylgeranylation</one>? This is a post-translational modification of proteins that involves the attachment of one or two 20-carbon lipophilic geranylgeranyl isoprene units (from geranylgeranyl diphosphate) to one or two cysteine residue(s) at the C-terminus of specific proteins. URL: https://en.wikipedia.org/wiki/Geranylgeranylation
855
+ - Nenne ein Beispiel für eine <one>Thiolprotease</one>. A: <one>Papain</one>. URL: https://de.wikipedia.org/wiki/Papain
856
+ - Beschreibe den <one>Lactatdehydrogenase Zyklus</one> mit seinen 6 Punkten. A: (1) H195 liegt im LDH Enzym protoniert vor. (2) NADH wird gebunden (an Schleife 98-111) (3) Pyruvat wird gebunden. Hierbei muss man bedenken das die Orientierung der Substrate wichtig ist. Die Konformation der Schleife ändert sich. (3) Hydridtransfer bei der eigentlich Redoxreaktion hier, Stabilisierung durch R109. Zugleich erfolgt auch ein Protonentransfer. (6) NAD⁺ dissoziiert ab.
857
+ - <one>E. coli</one> synthetisiert F, Y, W, ausgehend aus welch zweier Substanzen? (1) Phosphoenolpyruvat (2) Erythrose-4-Phosphat
858
+ - Die <one>Cellobiohydrolase I</one> besitzt einen <three>CBD Teil</three>. Was heisst CBD? <one>Cellulose Binding Domain</one>.
859
+ - Die prosthetische Gruppe der <one>Pyruvat-Dehydrogenase Komponente E1</one> ist ... ? <one>TPP</one>. URL: https://de.wikipedia.org/wiki/Thiaminpyrophosphat
860
+ - Was ist die <one>prosthetische Gruppe der Transketolase</one>? <one>Thiaminpyrophosphat</one> (<one>Thiamin-pyro-phosphat</one>; <royalblue>TPP</royalblue>).
861
+ - Wie nennen wir die <one>oxidierte Form des Hämoglobins</one>? <one>Methämoglobin</one>. URL: https://de.wikipedia.org/wiki/Meth%C3%A4moglobin
862
+ - Enzymtyp <one>MBD4</one>? <one>MBD4</one> ist eine <two>DNA-Glycosylase</two>. URL: https://en.wikipedia.org/wiki/MBD4
863
+ - Nenne ein <one>Coenzym</one>, das aus <two>ATP</two> gebildet wird. A: <one>S-Adenosylmethionin</one>. URL: https://en.wikipedia.org/wiki/S-Adenosyl_methionine
864
+ - Nenne ein bekanntes, automatisiertes Verfahren zur <one>Synthese von Peptiden</one>. A: Die <one>Merrifield-Synthese</one>. URL: https://de.wikipedia.org/wiki/Merrifield-Synthese
865
+ - Where does the <one>malate-aspartate shuttle</one> happen? It is a system for translocating electrons across the semipermeable inner membrane of the mitochondrion.
866
+ - Was bedeutet <one>Hydrolyse</one> wortwörtlich? <one>Wasserspaltung</one>: also die Spaltung einer (bio)chemischen Verbindung durch Reaktion mit Wasser.
867
+ - <one>Disulfide Bridges</one> are what type of bond? They are <one>covalent bonds</one>.
868
+ - Die <one>Eikosanoide</one> leiten sich von der <two>Arachidonsäure</two> ab. Diese wiederum hat <three>wieviele C Atome</three>? <one>20</one>.
869
+ - Welcher <mediumseagreen>Zuckerbaustein</mediumseagreen> kommt bei <one>Chitin</one> zum Einsatz? <one>N-Acetyl-Glucosamin</one>.
870
+ - Was für eine Domäne enthält <one>Irisin</one>? Eine <one>Fibronectin III Domäne</one>. URL: https://de.wikipedia.org/wiki/Irisin
871
+ - Give another word for an <one>amide linkage</one>. A: <one>Peptide Bond</one>.
872
+ - Nenne eine Substanz die <one>vier Isopreneinheiten</one> aufweist. A: <one>Retinol</one>. URL: https://de.wikipedia.org/wiki/Retinol
873
+ - Die <one>Aromatase</one> gehört zu welcher Familie? Zur <one>CYP-Familie</one>.
874
+ - Andere Bezeichung für ein <one>Enantiomer</one>? A: <one>Spiegelbildisomer</one>.
875
+ - <one>Welche Nukleotide</one> genau (mit dem ungefähren Namen nennen) kann <two>nitrous acid</two> deaminieren? (Mnemonic: <royalblue>See-You later AlliGator</royalblue> ... <one>C→U, A→G</one>) (1) <springgreen>Cytosin</springgreen>: zu <three>Uracil</three>, also <two>C→U</two> (2) <springgreen>Adenine</springgreen>: zu <three>Guanin</three>, also <two>A→G</two>
876
+ - Wie erfolgt <one>der Transport von Metaboliten</one> zwischen <two>Cytosol</two> und <two>Mitochondrien</two>? Über <one>Antiporter</one>. URL: https://en.wikipedia.org/wiki/Antiporter
877
+ - Der Mensch verbraucht am Tag wieviel <one>ATP</one>? <one>50 kg ATP</one>.
878
+ - <one>TPP</one> (<two>Thiaminpyrophosphat</two>) ist mit welchem Vitamin verwandt? Mit <one>Vitamin B1</one>.
879
+ - Wird eine <one>Aminosäure</one> desaminiert, so entsteht allgemein welche Substanz? Eine <one>Alpha-Ketosäure</one>. URL: https://de.wikipedia.org/wiki/Ketos%C3%A4uren#%CE%B1-Ketos%C3%A4uren
880
+ - Was entsteht bei einer Reaktion von <one>Morphin</one> mit <one>Essigsäure</one>? <one>Diacetylmorphin</one> (also <two>Heroin</two>). URL: https://de.wikipedia.org/wiki/Heroin
881
+ - Warum sind <one>Stop-Codons</one> experimentell wichtig? Da wir hier <mediumseagreen>künstliche Aminosäuren in Proteine</mediumseagreen> einbauen können. Dies ist in der <one>synthetischen Biologie</one> wichtig.
882
+ - <one>Kozak</one>-Sequenzfolge? <one>gccRccAUGG</one>.
883
+ - <one>Phototropismus</one> wird, intern, woduch vermittelt? Durch das <one>Cryptochrom-System</one>. URL: https://en.wikipedia.org/wiki/Cryptochrome
884
+ - Nenne ein Beispiel für ein <one>Phosphoprotein</one>. A: <one>Kappa-Casein</one>. URL: https://en.wikipedia.org/wiki/K-casein
885
+ - Was ist eine <one>katalytische Triade</one> in der Biochemie? Dies ist eine spezielle Anordnung von drei Aminosäuren, die im aktiven Zentrum von Enzymen zu finden ist.
886
+ - Nenne drei endständige Gruppen von <one>Isopren</one>. A: (1) <one>-CH₂</one> (2) <one>-CH₂</one> (3) <one>-CH₃</one>
887
+ - <one>Mitochondria</one> inhale which substance? <one>Pyruvic acid</one> (<two>CH₃-CO-COOH</two>), which is a <two>ketone</two>. Das Carboxylate (<one>COO-</one>) Anion von pyruvic acid ist Pyruvat (<one>CH₃-CO-COO-</one>).
888
+ - Was genau geschieht bei einer <one>Hydrolyse</one>? A: Eine Bindung, wie zum Beispiel in einem <two>Polymer</two>, wird gespalten, unter Addition eines -H und -OH Anteils. Mit anderen Worten, unter <one>Addition eines Wassermoleküls</one>.
889
+ - <one>Wieviele Domänen</one> besitzt die <two>NAD-Dehydrogenase</two>? Nenne die langen Namen. A: 2 Domänen. Diese sind die "Dinucleotide binding domain" sowie die <one>Substrate binding domain</one>, dazwischen ist eine hinge Domäne.
890
+ - <one>Einfache Vergiftung</one> von <two>freiem Häm</two> durch ...? Durch <one>CO</one> (<two>Kohlenmonoxid</two>).
891
+ - Was macht ein <one>Entkoppler</one> in der Biochemie? Entkoppler zerstören den pH-Gradienten.
892
+ - Wo vor allem finden wir das <one>Beta-Alpha-Beta Motif</one> häufig? Fast immer bei parallelen Beta-Sheets.
893
+ - Nenne zwei <one>Hemmer der Phosphodiesterase</one>. A: (1) <one>Coffein</one> (2) <one>Theophyllin</one>
894
+ - Nenne ein Strukturisomer zu <one>Dihydroxyaceton</one>. A: <one>D-Glycerinaldehyd</one>, eine Aldose, ist ein Strukturisomer.
895
+ - Was geschieht mit <one>Milchsäure</one> im Magen? <one>Milchsäure</one> reagiert mit <two>Calcium</two> zu <two>Calciumlactat</two>. (<three>Lactat + Calcium = Calciumlactat</three>)
896
+ - Unterscheide 4 Hauptgruppen von Zytokinen. A: (1) Interferone (IFN) (2) Interleukine (IL) (3) Koloniestimulierende Faktoren (CSF) (4) Tumornekrosefaktoren (TNF)
897
+ - Erkläre: die Funktion des Protonengradienten ist die ATP-Bildung in der ATP-Synthase. A: Nein. Der Protonengradient führt lediglich zu der Freisetzung von ATP von der Synthase.
898
+ - Give 4 categories to classify proteins into functional components. A: (1) enzymes (2) structural proteins (3) regulatory proteins (4) transport proteins
899
+ - Nenne vier ungewöhnliche Motive in der Proteinbiochemie. A: (1) Greek Key Motiv (2) Beta-Alpha-Beta Motiv (3) Beta-Haarnadelschleife (4) aa-Motiv
900
+ - Die <one>Michaelis-Menten-Gleichung</one> in Diagramm-Form hat zwei wichtige Grössen, bei der x und y-Achse. Welche sind dies? (1) x-Achse: "S" (<royalblue>Substratkonzentration</royalblue>) (2) y-Achse: "V0" (<royalblue>Anfangsgeschwindigkeit</royalblue>)
901
+ - Was sind <one>Octamer-Bindeproteine</one>? <one>Homöobox-Proteine</one>.
902
+ - Von wem erhält die <one>Carbamylphosphat-Synthase</one> ihr erstes <two>Stickstoffatom</two>? Vom <one>Harnstoff</one>.
903
+ - In Biochemistry: name <one>two major classes of Proteins</one>. A: (1) <one>catalytic proteins</one> (2) <one>structural proteins</one>
904
+ - Welches <one>biogene Amin</one> mag stark toxisch wirken? <one>Histamin</one>. URL: https://de.wikipedia.org/wiki/Histamin
905
+ - Welchen Nachteil hat <one>Homoserin</one> beim <two>Einbau in Proteine</two>? A: Es kann spontan zu einem <one>Fünferring</one> zu reagieren.
906
+ - Was geschieht mit <one>Purinen</one> im <two>human digestive system</two>? Sie werden in <one>uric acid</one> konvertiert. URL: https://en.wikipedia.org/wiki/Uric_acid
907
+ - <one>Fuel gauge</one> for the cell? <one>AMPK</one>. URL: https://en.wikipedia.org/wiki/AMP-activated_protein_kinase
908
+ - Nenne zwei <one>Lektin-Vertreter</one>. A: (1) <one>Concanavalin A</one> (<two>ConA</two>) (2) <one>Phythämagglutinin</one> (<two>PHA</two>)
909
+ - Nenne ein wichtiges Beispiel für <one>Epimers</one>. A: <mediumseagreen>Glucose</mediumseagreen> und <mediumseagreen>Galactose</mediumseagreen>, welche sich nur an <one>Carbon 4</one> (<three>C4</three>) unterscheiden.
910
+ - Wo genau finden wir <one>Methylation</one> bei Proteinen? An (1) <one>Lysinen</one>, und (2) <one>Argininen</one>.
911
+ - Bei dem <one>Nicotinamidadenindinucleotiden</one>: wo erfolgt die Reduktion bzw. Oxidation von NAD(P)/H? Am <one>Nicotinamid</one>.
912
+ - Sollte eher das Wort <one>Glycerin</one> oder eher das Wort <one>Glycerol</one> verwendet werden? (1) Im Englischen <one>Glycerol</one>. (2) Im Deutschen <one>Glycerin</one>. URL: https://en.wikipedia.org/wiki/Glycerol
913
+ - Is <one>Phosphatidylinositol</one> an <two>amphiphile</two>? Yes: it has a <one>polar</one> and a <one>non-polar region</one>.
914
+ - Sie haben mittels <one>Edman-Abbau</one> einige Peptide eines unbekannten Proteins sequenziert. Jetzt wollen Sie für die Amplifizierung der <two>cDNA Primer</two> herstellen. Vor welchem Problem stehen Sie dabei? Ein Problem ist, das der genetische Code <royalblue>degeneriert</royalblue> ist. Daher muss man sogenannte "degenerierte Primer" herstellen, mit anderen Worten ein Primergemisch. Man sucht zuerst nach Peptiden, die nur durch wenig degeneriertee Aminosäuren dominiert werden, idealerweise Met (M) und Trp (W).
915
+ - <one>Maltose</one> und <one>Saccharose</one> sind Disaccharide mit unterschiedlichen glykosidischen Bindungen. Welchen? A: (1) <royalblue>Maltose</royalblue> ist <one>1,4 glykosidisch</one> (2) <royalblue>Saccharose</royalblue> ist <one>1,2 glykosidisch</one>
916
+ - Wie können wir beweisen das der <one>F1 Anteil der ATP Synthase</one> katalytisch aktiv ist? Wenn wir den F1 Anteil isolieren, dann besitzen dessen Untereinheiten weiterhin eine <one>ATPase-Aktivität</one>.
917
+ - In der Proteinbiochemie, bei einem <one>twisted open sheet</one>: wie lässt sich das aktive Zentrum vorhersagen? Anhand der <one>Topological Switch Points</one>.
918
+ - The <one>AMPK</one> (<lightseagreen>AMP-activated protein kinase</lightseagreen>) has how many subunits? <one>Three</one>; it is <one>a heterotrimeric protein complex</one>.
919
+ - <one>Triacylclyerole</one> werden woraus synthetisiert? Aus <one>Glucuro-phospat</one> und <one>Acetyl-CoA</one>.
920
+ - Biochemisch gesehen: wie wirken <one>Herzglykoside</one>? Sie hemmen die <one>Natrium-Kalium-ATPase</one> in den <one>Myozyten des Herzmuskels</one>. Dadurch gibt es mehr Natrium innerhalb der Zelle. Dies hemmt indirekt den Na/Ca-Antiport, sodass mehr Calcium in der Zelle verbleibt.
921
+ - Enzymtyp <one>Tyrosinase</one>. Welche biologische Rolle spielt dieses Enzym? Die <mediumseagreen>Tyrosinase</mediumseagreen> ist eine <one>Oxidase</one>. Die Aufgabe der Tyrosinase ist es <springgreen>Melanin zu produzieren</springgreen>, hat also eine Rolle bei <royalblue>melanin synthesis</royalblue>.
922
+ - Nenne <one>drei Serinproteasen</one> und gib an wo sie spalten. A: (1) <royalblue>Chymotrypsin</royalblue>: spaltet nach <one>grossen, hydrophoben Resten</one> (2) <royalblue>Elastase</royalblue>: spaltet nach <one>kleinen, neutralen Resten</one> (3) <royalblue>Trypsin</royalblue>: spaltet nach <one>positiven Resten</one>
923
+ - <one>Alpha-Helices</one> in Proteinen gehen in welche Richtung und warum? <one>Rechtsgängig</one>. Sie sind <royalblue>energetisch stabiler</royalblue>, da es zu weniger Kollisionen kommt.
924
+ - Nenne ein Beispiel für eine Reaktion in der Biochemie die <one>keine Kondensationsreaktion</one> ist. A: Die <one>Bildung eines Halbacetals</one>.
925
+ - Unterschied zwischen einem <one>Acetal</one> und einem <one>Hemiacetal</one>? Ein Acetal ist ein Hemiacetal bei dem eine <one>H₂O</one> Gruppe rausgeknocked wurde.
926
+ - Aus Sicht der Biochemie: was ist <one>die Aufgabe eines Katalysators</one>? Eine potentiell reaktive Gruppe noch reaktiver zu machen.
927
+ - Wie werden <one>harte Keratine</one> stabilisiert? Die Peptidketten enthalten zahlreiche <one>Cystein-Reste</one>, die eine <one>Quervernetzung über Disulfidbindungen</one> erlauben, und somit die Festigkeit erhöhen.
928
+ - Nenne drei Wege des Proteintransportes. A: (1) Gated Transport (2) Transmembrantransport (3) <one>Vesikeltransport</one>
929
+ - Aus welchen zwei ursprünglichen Komponenten besteht ein <one>Säureamid</one>? Merkhilfe: die <lightgreen>Peptidbindung</lightgreen> (1) <one>Ammoniak</one> (2) <one>Carbonsäure</one>
930
+ - Nenne die drei funktionellen Gruppen bei <one>Carbamoylphosphat</one>. A: (1) <one>-C=O</one> (2) <one>-NH₂</one> (3) <one>-OPO3</one>
931
+ - Nenne 3 Stoffwechselwege der Zellatmung. A: (1) <one>Glycolyse</one> (2) <one>Citratzyklus</one> (3) <one>oxidative Phosphorylierung</one>
932
+ - Nenne fünf verschiedene Beispiele für <one>reduzierende Zucker</one>. A: (1) <one>Fructose</one> (2) <one>Glucose</one> (3) <one>Galactose</one> (4) <one>Maltose</one> (5) <one>Lactose</one>
933
+ - Nenne vier Enzyme die wichtig sind für den <one>Chitinabbau</one>. A: (1) <one>Endo-Chitinase</one> (2) Exo-Chitinase (3) Chitobiase (4) Deacetylase
934
+ - Why was the name <one>SUMO</one> given, aside from it being an abbreviation? (1) Because this protein <one>folds in a way that is similar to Ubiquitin</one>. (2) It is also is attached to its target protein through an <mediumseagreen>isopeptide bond</mediumseagreen>.
935
+ - Andere Bezeichnung für die <one>Lipolyse</one>? <one>Fettabbau</one>. URL: https://de.wikipedia.org/wiki/Lipolyse
936
+ - Nenne 4 verschiedene Transporttypen. A: (1) Diffusion (2) primärer Transport (3) sekundärer Transport (4) Group Translocation
937
+ - <one>Biotin</one> besteht aus welchen zwei Komponenten? (1) <one>Harnstoff</one> (2) <one>Thiophanring</one>
938
+ - <one>CTP</one> can be used as energy source. Give one example. A: <mediumturquoise>CTP</mediumturquoise> is involved in the <one>synthesis of glycerophospholipids</one>.
939
+ - Was sind <one>Heteropolysaccharide</one>? Gib ein Beispiel eines Heteropolysaccharid, das man als Teil des menschlichen Körpers finden kann. A: Das sind Polysaccharides die aus mindestens zwei verschiedenen "monomeric units" bestehen. Ein Beispiel wäre die <one>Hyaluronsäure</one>. URL: https://de.wikipedia.org/wiki/Hyalurons%C3%A4ure
940
+ - Biochemischer Vorläufer von <one>Chorismate</one>? <one>Erythrose-4-Phosphate</one>. URL: https://en.wikipedia.org/wiki/Shikimate_pathway
941
+ - Wie nennen wir die <one>zyklisierte Form der Glucose</one>? <one>Glucopyranose</one>.
942
+ - In Biochemistry: what is the difference between <one>shikimic acid</one> and <one>shikimate</one>? The <mediumseagreen>anionic form</mediumseagreen> of <one>shikimic acid</one> is <royalblue>shikimate</royalblue>.
943
+ - Wo finden <one>künstliche Ampholytgemische</one> in der Biochemie Anwendung? Bei der <one>isoelektrischen Fokussierung</one>.
944
+ - Nenne fünf verschiedene <one>Inhibitormöglichkeiten von Enzymen</one>. A: (1) <one>reversibel</one> (2) <one>irreversibel</one> (3) <one>kompetitiv</one> (4) <one>nicht kompetitiv</one> (5) <one>unkompetitiv</one>
945
+ - Wie nennen wir die <one>zyklisierte Form der Glucose</one>? <one>Pyranosering</one>.
946
+ - <one>Fructose</one> kommt als Ring wie vor? <one>Furanose</one> (als 5-er Ring), hat keine endständige C=O Gruppe und kann somit keinen 6er Ring bilden.
947
+ - Nenne die 3 Outputmoleküle des <one>Pyruvat dehydrogenase Komplex</one>. A: (1) <one>Acetyl-CoA</one> (2) <one>CO₂</one> (3) <one>NADH</one>
948
+ - Begründe deine Antwort ob der menschliche Körper aus Fettsäure <one>Glukose</one> bilden kann. A: Er kann es nicht. <one>Acetyl-CoA</one> kann nicht in <one>Pyruvat</one> konvertiert werden.
949
+ - Wo in der Zelle werden <one>glykosidische Bindungen</one> geknüpft? Im <royalblue>ER</royalblue> (<one>Endoplasmatisches Retikulum</one>). Danach werden sie im Golgi-Komplex prozessiert.
950
+ - Woraus besteht das <one>Beta-Haarnadelschleifen Motiv</one>? Aus <one>zwei Beta-Strängen</one>.
951
+ - Wie kann <one>Adrenalin</one> die Aktivität von Enzymen verändern? <mediumturquoise>Indirekt</mediumturquoise>, und zwar indem Adrenalin die Phosphorylierung von <one>Serin</one> und <one>Threonin</one> anregen kann.
952
+ - Die Atome des Purinringsystems kommen aus unterschiedlichen Quellen bei der <one>de-novo Synthese</one>. Darunter auch 3 verschiedene Aminosäuren. Welche? (1) <one>Glutamin (Q)</one> (2) <one>Aspartat (D)</one> (3) <one>Glycin (G)</one>
953
+ - In der Proteinbiochemie: gib ein konkretes Beispiel für eine <one>kovalente Katalyse</one>. A: Die <one>Decarboxylierung von Acetoacetat</one>.
954
+ - Wie wurden die <one>PPIasen</one> entdeckt? Durch ihre Fähigkeit <one>Immundepressiva</one> zu binden.
955
+ - Was benötigt die <one>Biosynthese von Terpen</one>? <one>Coenzym A</one>. URL: https://de.wikipedia.org/wiki/Coenzym_A
956
+ - Wie wird die <one>kovalente Katalyse</one> in der Biochemie durchgeführt? Sie wird durch den nucleophilen Angriff des Enzyms am Substrat eingeleitet. Anschliessend wird ein kovalent gebundenes Zwischenprodukt gebildet.
957
+ - In protein structure we can find the <one>greek key motif</one>. How does this look? This motif has <one>four adjacent antiparallel strands</one>. Three of these are connected by hairpins, while the fourth is adjacent to the first and linked to the third by a longer loop.
958
+ - Why is it important for us to know whether a protein has many <one>hydrophobic</one> or <one>hydrophilic</one> side chains? So that we can understand and predict, up to a certain degree, <one>how proteins fold up three-dimensionally</one>.
959
+ - Das <one>Greek key motif</one> gehört zu welcher <lightseagreen>Familie</lightseagreen>? Es ist ein <one>antiparalleles Beta-Sheet</one>.
960
+ - Aus Sicht der Biochemie: warum ist <one>Blei</one> giftig? Blei, wie auch andere Schwermetalle, attackieren die <mediumseagreen>stabilisierenden Disulfidbrücken der Proteine</mediumseagreen>. Dies erklärt die Giftigkeit von Blei.
961
+ - Welches Enzym interkonvertiert <one>Glycerinaldehyd-3-phosphat</one> und <one>Dihydroxyacetone</one>? Die <one>Triosephosphat-Isomerase</one>.
962
+ - Nenne zwei <one>Vorläufer der Terpenoide</one>. A: (1) <mediumseagreen>IPP</mediumseagreen>: <one>Isopentenylpyrophosphat</one> (2) <mediumseagreen>DMAPP</mediumseagreen>: <one>Dimethylallylpyrophosphat</one>
963
+ - Als Teilgebiet der Biochemie: wie erzeugt die Zelle das Aldehyd <one>Allysin</one> + Enzym nennen? Das Enzym "Lysyl-Oxidase" desaminiert Lysin und erzeugt so das Aldehyd <one>Allysin</one>.
964
+ - How can <one>phosphate</one> be chemically bonded to organic compounds? (1) by <one>ester bonds</one> (2) by <one>anhydride bonds</one>
965
+ - In der Biosynthese von <one>Chorismate</one> zu <one>Anthranilate</one> wirkt welches Enzym? Die <one>Anthranilate synthase</one>. URL: https://en.wikipedia.org/wiki/Anthranilate_synthase
966
+ - Is <one>mitochondrial ATP synthesis</one> an independent process? No, not at all! It <one>requires a coupled electron flow through the respiratory chain</one>.
967
+ - Wir können die Konfiguration der Aminosäuren nach dem <one>CIP-System</one> festlegen. Wie geht das, kurz gesagt? Atome mit einer <royalblue>höheren Atommasse</royalblue> erhalten eine <one>höhere Priorität</one>.
968
+ - Was macht die <one>Glycerol-Kinase</one>? Fügt Phosphat (aus ATP) an Glycerol hinzu und erzeugt so <one>L-Glycerol-3-Phosphate</one>.
969
+ - In wässriger Form liegt <one>Glucose</one> wie vor? In Form eines <one>geschlossenen Ringes</one>.
970
+ - <one>Cellulose</one> besteht aus ... ? Einem <one>linearen Polymer aus Glucoseeinheiten</one>. URL: https://de.wikipedia.org/wiki/Cellulose
971
+ - Ein <one>Thioester</one> hat was für eine funktionelle Gruppe? <one>-C=O-S Gruppe</one>.
972
+ - <one>Glucosamin</one> ist ein Baustein in manchen <two>Polysacchariden</two>. Nenne zwei davon. A: (1) <one>Chitin</one> (2) <one>Chitosan</one>
973
+ - Wie wirken die <one>Makrolides</one>? Sie binden an eine Region der <one>23S RNA</one> in der <two>grossen ribosomalen Unterheinheit</two> und blockieren so den <three>exit Tunnel</three>.
974
+ - <one>cis-Retinal</one> ist wie an <two>Rhodopsin</two> gebunden? Über eine <one>-C=NH Bindung</one>.
975
+ - Nenne drei verschiedene Beispiele für <one>Phospholipide</one>. A: (1) <one>Phosphatidyl</one><two>c</two><one>holin</one> (2) <one>Phosphatidyl</one><two>e</two><one>thanolamin</one> (3) <one>Phosphatidyl</one><two>i</two><one>nositol</one>
976
+ - Wie ist ein <one>Dalton</one> definiert? <one>1 Da = 1</one>/<one>12</one> der Masse des <two>Kohlenstoffisotops</two>.
977
+ - Nenne zwei <one>Proteingruppen</one>, die häufig <lightseagreen>Oligosaccharidstrukturen</lightseagreen> auf der Oberfläche aufweisen. A: (1) <one>Membranproteine</one> (2) <one>sekretorische Proteine</one>
978
+ - In der <one>Proteinbiochemie</one>: was sind <two>Protomere</two>? Dies sind <one>identische, strukturelle Untereinheiten</one>. Sie sind meistens symmetrisch angeordnet. Im Englischen werden Protomere auch als <two>protein subunits</two> bezeichnet.
979
+ - Wenn <one>cAMP</one> abgebaut wird, entsteht ...? <one>5' AMP</one>.
980
+ - Nenne zwei Enzyme, die <one>Oxalacetat</one> herstellen können. A: <mediumseagreen>Zwei Carboxylasen</mediumseagreen>, und zwar: (1) <one>Pyruvat-Carboxylase</one>: in <two>Hefen</two> (2) <one>PEP-Carboxylase</one>: in <two>Bakterien</two>
981
+ - Why are <one>ionic bonds</one> not important <two>inside of a cell</two>? Because the <one>polar water molecules neutralize charged groups</one>.
982
+ - Warum ist <one>die korrekte Faltung</one> so wichtig für ein Enzym? Weil durch die Faltung <one>das Substrat in das Enzym reinpassen kann</one>, aufgrund der <two>Oberflächenstruktur</two>.
983
+ - Wo finden wir eine <one>katalytische Triade</one> und wie geht die Folge in dieser Triade? A: In <one>Chymotrypsin</one> finden wir folgende Triade: <two>Ser 195, His 57, Asp 102</two>.
984
+ - Bei <one>Alpha-Domänen Proteinen</one> formen die Seitenketten der Helices ... die durch ... getrennt sind. A: Sie formen <one>ridges</one>, die durch <two>groves</two> getrennt sind.
985
+ - Nenne die langen Namen von Vitamin <one>B1</one>, <one>B2</one>, <one>B6</one> und <one>B12</one>. A: (1) <one>B1</one> ist <two>Thiamin</two> (2) <one>B2</one> ist <two>Riboflavin</two> (3) <one>B6</one> ist <two>Pyridoxin</two> (4) <one>B12</one> ist <two>Cobolamin</two>
986
+ - Why the name <one>heat shock proteins</one>? Because <one>their rate of synthesis increases at elevated temperature</one>.
987
+ - Was ist eine <one>Transaminierung</one>? Die <one>Übertragung einer Aminogruppe</one> auf eine <two>Ketosäure</two>.
988
+ - Anderer Begriff für die <one>aktive Form des Vitamin B2</one>? <one>FAD</one>.
989
+ - Wie unterscheidet sich <one>Thymin</one> von <two>Cytosin</two>? <one>Thymin</one> hat eine <two>CH₃ Gruppe</two>. Zudem hat es ein O während Cytosin eine <one>NH₂ Gruppe</one> hat.
990
+ - Andere Name für <one>Phytat</one>? <one>Inositol Hexaphosphate</one>.
991
+ - The <one>AMPK kinase</one> - the abbreviation AMPK is short for ... ? <one>5' AMP-activated protein kinase</one>.
992
+ - Bei der <one>Kernresonanzspektroskopie</one> (<lightseagreen>NMR</lightseagreen>): nenne eine wichtige Voraussetzung hierzu. A: Das <one>Anreichern von Isotopen</one>.
993
+ - Formel einer <one>imino group</one>? <one>=NH-</one> (genauer: <two>C=NH</two>) URL: http://www.dictionary.com/browse/imino-group
994
+ - Wie lang (von-bis) sind die <one>PEST-Sequenzen</one>? <one>PEST-Sequenzen</one> sind <two>10-60 Aminosäuren</two> lang.
995
+ - Der <one>Ligninabbau</one> erfolgt zum Beispiel in den <two>Basidiomyceten</two>. Nenne 3 wichtige Enzyme hierfür. A: (1) <one>Lignin-Peroxidase</one> (2) <one>Mangan-Peroxidase</one> (3) <one>Laccase</one>
996
+ - <one>Phosphopantetheine</one> is an essential prosthetic group of ... which protein? Of <one>acyl carrier protein</one> (<two>ACP</two>) and also of <one>peptidyl carrier proteins</one> (<two>PCP</two>) and <one>aryl carrier proteins</one> (<two>ArCP</two>).
997
+ - Welche Reaktion führt die <one>Adenylat-Kinase</one> durch (Input und Output nennen)? <one>ATP + AMP</one> ←→ <one>ADP + ADP</one> URL: https://en.wikipedia.org/wiki/Adenylate_kinase
998
+ - Was ist eine <one>Acylgruppe</one>? <one>(R-C=O)-R</one>. Interessanterweise zählt das erste R zur Acylgruppe, das zweite R hingegen nicht. URL: https://de.wikipedia.org/wiki/Acylgruppe
999
+ - Name two enzymes of the <one>salvage pathway</one>. A: (1) <one>APPT</one>: Adenine phosphoribosyltransferase (2) <one>HGPRT</one>: Hypoxanthine-guanine phosphoribosyltransferase (<one>HGPRT</one>)
1000
+ - What kind of bonds do we find in <one>coenzyme A derivatives</one>? <one>Thioester bonds</one>. URL: https://www.ncbi.nlm.nih.gov/pubmed/28238887
1001
+ - Die <one>Phosphofructokinase</one> wandelt welches Substrat in welches Produkt um? Die <one>Phosphofructokinase</one> nimmt <two>Fructose-6-Phosphat</two> und erzeugt <two>Fructose-1,6-bisphosphat</two>.
1002
+ - Nenne zwei funktionelle Gruppen mit <one>hoher Nucleophilie</one> in den Proteinen. A: (1) die <one>Amino-Gruppe</one> von <two>Lysin</two> (2) die <one>Imidazol-Gruppe</one> des <two>Histidin</two>
1003
+ - Welchen Effekt hat die <one>Adenylierung</one> des Enzyms <two>Glutamine Synthetase</two>? Es wird dadurch <one>katalytisch inaktiv</one>.
1004
+ - Warum ist die Bezeichnung <one>Dunkelreaktion</one> eigentlich irreführend? A: Die <one>Dunkelreaktion</one> suggeriert das sie kein Licht braucht; sie braucht aber ebenso <two>Lichtenergie</two> damit sie funktioniert.
1005
+ - Unterschied im Abbau von <one>Purinen</one> und <one>Pyrimidinen</one>? (1) Der <one>Abbau von Purin</one> führt zu potenziell toxischen Produkten. (2) Der <one>Abbau von Pyrimidin</one> führt zu ungiftigen Zwischenprodukten.
1006
+ - <one>Proteoglycans</one> are categorized by which two attributes? (1) their <one>relative size</one> (for instance: <two>large</two> versus <two>small</two>) (2) the nature of their glycosaminoglycan chains
1007
+ - Nenne <one>drei Funktionen</one> die Proteine in einer Zelle erfüllen müssen. A: (1) Proteine mögen als <one>Biokatalysatoren</one> (=Enzyme) wirken (2) Proteine mögen als <one>Strukturbestandteile</one> fungieren (3) Proteine mögen als <one>Transportmoleküle</one> wirken
1008
+ - Wie sind <one>Flavoproteine</one> definiert? Diese Proteine enthalten <royalblue>FMN</royalblue> oder <royalblue>FAD</royalblue> als <one>prosthetische Gruppe</one>. URL: https://de.wikipedia.org/wiki/Flavoproteine