studium 0.18.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (821) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +3310 -0
  3. data/bin/all_passed_exams +14 -0
  4. data/bin/check_description_of_these_lectures +7 -0
  5. data/bin/curriculum_module_displayer +7 -0
  6. data/bin/cycle +7 -0
  7. data/bin/d10 +7 -0
  8. data/bin/d100 +7 -0
  9. data/bin/d15 +7 -0
  10. data/bin/d150 +7 -0
  11. data/bin/d20 +7 -0
  12. data/bin/d25 +7 -0
  13. data/bin/d3 +7 -0
  14. data/bin/d30 +7 -0
  15. data/bin/d5 +7 -0
  16. data/bin/determine_curricula +7 -0
  17. data/bin/display_lecture_url +7 -0
  18. data/bin/exam_registration_at +7 -0
  19. data/bin/exam_statistics +7 -0
  20. data/bin/exams_per_month +9 -0
  21. data/bin/finished_exams_at_this_university +7 -0
  22. data/bin/flashcards +7 -0
  23. data/bin/from_curriculum_id_to_university +9 -0
  24. data/bin/location_to_this_exam_topic.rb +7 -0
  25. data/bin/mandatory_continuous_assessment +7 -0
  26. data/bin/mandatory_upcoming_courses +10 -0
  27. data/bin/n_ECTS +7 -0
  28. data/bin/n_exam_questions_already_answered +15 -0
  29. data/bin/names_of_all_solved_exams +7 -0
  30. data/bin/not_completed_exams +7 -0
  31. data/bin/nquestions +7 -0
  32. data/bin/nsolved +7 -0
  33. data/bin/open_last_exam_question_asked_file +7 -0
  34. data/bin/passed_exams +7 -0
  35. data/bin/passed_pr/303/274fungsimmanente_courses +7 -0
  36. data/bin/passed_this_exam_on +10 -0
  37. data/bin/pdf_for +7 -0
  38. data/bin/question_answer +7 -0
  39. data/bin/random_exam_topic +7 -0
  40. data/bin/registered_for_this_exam +15 -0
  41. data/bin/report_solved_topics +7 -0
  42. data/bin/return_n_ects_from_this_file +7 -0
  43. data/bin/return_n_questions_solved_in_total +7 -0
  44. data/bin/rti_conflict +7 -0
  45. data/bin/search_for_n_ects +7 -0
  46. data/bin/show_lectures_on_the_commandline +7 -0
  47. data/bin/show_passed_exams_having_this_grade +7 -0
  48. data/bin/show_themes +7 -0
  49. data/bin/solved +9 -0
  50. data/bin/solved_ects +7 -0
  51. data/bin/studienkennzahl +7 -0
  52. data/bin/studium +7 -0
  53. data/bin/studium_actions +7 -0
  54. data/bin/studium_skeleton +7 -0
  55. data/bin/ufind +7 -0
  56. data/bin/upcoming_exams +7 -0
  57. data/bin/week_parser +7 -0
  58. data/doc/ECTS_CONSIDERATIONS/ECTS_CONSIDERATIONS.md +85 -0
  59. data/doc/HOW_TO_DETERMINE_WHICH_PART_IS_THE_QUESTION_AND_WHICH_PART_IS_THE_ANSWER/HOW_TO_DETERMINE_WHICH_PART_IS_THE_QUESTION_AND_WHICH_PART_IS_THE_ANSWER.md +44 -0
  60. data/doc/README.gen +3263 -0
  61. data/doc/SQL_database_specification/SQL_database_specification.md +46 -0
  62. data/doc/deprecated_components/deprecated_components.md +46 -0
  63. data/doc/documentation_for_the_file_lecture_information/documentation_for_the_file_lecture_information.md +311 -0
  64. data/doc/elegant_colours/elegant_colours.md +21 -0
  65. data/doc/statistics/yearly_statistics.md +8 -0
  66. data/doc/todo/todo_for_the_graphical_parts_of_the_studium_gem_including_www_related_aspects.md +92 -0
  67. data/doc/todo/todo_for_the_studium_gem.md +55 -0
  68. data/img/STUDIES.png +0 -0
  69. data/lib/studium/actions/actions.rb +134 -0
  70. data/lib/studium/autoinclude.rb +7 -0
  71. data/lib/studium/base/base.rb +3554 -0
  72. data/lib/studium/base/commandline_arguments_module/commandline_arguments_module.rb +115 -0
  73. data/lib/studium/base/html_colours_module.rb +632 -0
  74. data/lib/studium/base/runmode_module/runmode_module.rb +103 -0
  75. data/lib/studium/c/README.md +2 -0
  76. data/lib/studium/c/a.out +0 -0
  77. data/lib/studium/c/obtain_random_entry.c +11 -0
  78. data/lib/studium/check_and_sanitize/README.md +15 -0
  79. data/lib/studium/check_and_sanitize/check_curriculum_for_correct_separation_of_bachelor_and_master.rb +141 -0
  80. data/lib/studium/check_and_sanitize/check_for_all_exam_topics_being_registered.rb +118 -0
  81. data/lib/studium/check_and_sanitize/check_for_correct_themes_of_each_course.rb +100 -0
  82. data/lib/studium/check_and_sanitize/check_for_existing_description_of_this_lecture.rb +194 -0
  83. data/lib/studium/check_and_sanitize/check_important_exams.rb +138 -0
  84. data/lib/studium/check_and_sanitize/check_the_lecture_information_file.rb +166 -0
  85. data/lib/studium/check_and_sanitize/correct_all_dates_in_the_file_lecture_information.rb +115 -0
  86. data/lib/studium/check_and_sanitize/date_sanitizer.rb +350 -0
  87. data/lib/studium/check_and_sanitize/find_duplicate_lectures.rb +124 -0
  88. data/lib/studium/check_and_sanitize/missing_priority_entry.rb +44 -0
  89. data/lib/studium/check_and_sanitize/sanitize_lecture_information.rb +434 -0
  90. data/lib/studium/colours/colours.rb +1711 -0
  91. data/lib/studium/commandline/commandline.rb +1848 -0
  92. data/lib/studium/constants/constants.rb +2063 -0
  93. data/lib/studium/css/project.css +273 -0
  94. data/lib/studium/curricula/attribute_lecture_to_curriculum/attribute_boku_lecture_to_curriculum.rb +384 -0
  95. data/lib/studium/curricula/attribute_lecture_to_curriculum/attribute_lecture_to_curriculum.rb +238 -0
  96. data/lib/studium/curricula/curricula_from_this_website/curricula_from_this_website.rb +141 -0
  97. data/lib/studium/curricula/curriculum.rb +213 -0
  98. data/lib/studium/curricula/curriculum_as_string.rb +280 -0
  99. data/lib/studium/curricula/curriculum_module_displayer/constants.rb +33 -0
  100. data/lib/studium/curricula/curriculum_module_displayer/curriculum_module_displayer.rb +417 -0
  101. data/lib/studium/curricula/curriculum_module_displayer/initialize.rb +25 -0
  102. data/lib/studium/curricula/curriculum_module_displayer/menu.rb +45 -0
  103. data/lib/studium/curricula/curriculum_module_displayer/reset.rb +74 -0
  104. data/lib/studium/curricula/curriculum_module_displayer/run.rb +20 -0
  105. data/lib/studium/curricula/curriculum_module_displayer/set_use_this_curriculum.rb +93 -0
  106. data/lib/studium/curricula/curriculum_module_displayer/show_and_report.rb +190 -0
  107. data/lib/studium/curricula/determine_curricula/constants.rb +11 -0
  108. data/lib/studium/curricula/determine_curricula/determine_curricula.rb +36 -0
  109. data/lib/studium/curricula/determine_curricula/help.rb +39 -0
  110. data/lib/studium/curricula/determine_curricula/initialize.rb +48 -0
  111. data/lib/studium/curricula/determine_curricula/menu.rb +151 -0
  112. data/lib/studium/curricula/determine_curricula/misc.rb +403 -0
  113. data/lib/studium/curricula/determine_curricula/report.rb +141 -0
  114. data/lib/studium/curricula/determine_curricula/reset.rb +59 -0
  115. data/lib/studium/curricula/determine_curricula/run.rb +19 -0
  116. data/lib/studium/curricula/determine_elective_courses_in_this_curriculum.rb +112 -0
  117. data/lib/studium/curricula/display_bachelor_curricula.rb +90 -0
  118. data/lib/studium/curricula/handle_curricula/README.md +9 -0
  119. data/lib/studium/curricula/handle_curricula/handle_curricula.rb +99 -0
  120. data/lib/studium/curricula/handle_curricula/misc.rb +798 -0
  121. data/lib/studium/curricula/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.rb +323 -0
  122. data/lib/studium/curricula/modules/display_on_the_commandline.rb +319 -0
  123. data/lib/studium/curricula/modules/return_n_ects_in_this_module.rb +74 -0
  124. data/lib/studium/curricula/n_percent_solved_in_this_curriculum.rb +73 -0
  125. data/lib/studium/curricula/prepare_individual_curriculum.rb +304 -0
  126. data/lib/studium/curricula/random_curriculum_creator/random_curriculum_creator.rb +164 -0
  127. data/lib/studium/curricula/show_all_unfinished_courses_of_this_curriculum/show_all_unfinished_courses_of_this_curriculum.rb +116 -0
  128. data/lib/studium/curricula/show_lectures_of_this_curriculum.rb +114 -0
  129. data/lib/studium/curricula/show_lectures_of_this_curriculum_id/show_lectures_of_this_curriculum_id.rb +554 -0
  130. data/lib/studium/curricula/show_solved_percentage_among_the_registered_curricula.rb +87 -0
  131. data/lib/studium/curricula/sorted_individual_curricula.rb +121 -0
  132. data/lib/studium/ects/boku_ects_splitter.rb +128 -0
  133. data/lib/studium/ects/ects_per_university/ects_per_university.rb +179 -0
  134. data/lib/studium/ects/ects_scanner.rb +141 -0
  135. data/lib/studium/ects/ects_to_university_parser.rb +142 -0
  136. data/lib/studium/ects/last_entry_is_curriculum.rb +150 -0
  137. data/lib/studium/ects/n_ects_in_these_lectures.rb +196 -0
  138. data/lib/studium/ects/n_ects_points_in_mandatory_presence_courses.rb +47 -0
  139. data/lib/studium/ects/return_n_ects_from_this_file.rb +59 -0
  140. data/lib/studium/ects/return_n_ects_from_this_url.rb +197 -0
  141. data/lib/studium/ects/search_for_n_ects/search_for_n_ects.rb +719 -0
  142. data/lib/studium/ects/show_completed_ects_in_all_curricula.rb +245 -0
  143. data/lib/studium/ects/show_passed_credits_per_curriculum.rb +276 -0
  144. data/lib/studium/ects/simple_total_ects_points.rb +135 -0
  145. data/lib/studium/ects/solved_ects/constants.rb +19 -0
  146. data/lib/studium/ects/solved_ects/reset.rb +50 -0
  147. data/lib/studium/ects/solved_ects/solved_ects.rb +325 -0
  148. data/lib/studium/ects/solved_ects_per_university/reset.rb +25 -0
  149. data/lib/studium/ects/solved_ects_per_university/solved_ects_per_university.rb +116 -0
  150. data/lib/studium/ects/still_missing.rb +129 -0
  151. data/lib/studium/ects/sum_of_ects.rb +144 -0
  152. data/lib/studium/encoding/encoding.rb +109 -0
  153. data/lib/studium/exam_topics/RNAi_siRNA_and_miRNA +100 -0
  154. data/lib/studium/exam_topics/abfall_als_ressource +86 -0
  155. data/lib/studium/exam_topics/advanced_biochemistry +937 -0
  156. data/lib/studium/exam_topics/advanced_biotechnology +234 -0
  157. data/lib/studium/exam_topics/advanced_cellbiology +251 -0
  158. data/lib/studium/exam_topics/advanced_chemistry +547 -0
  159. data/lib/studium/exam_topics/advanced_immunology +225 -0
  160. data/lib/studium/exam_topics/advanced_microbiology +49 -0
  161. data/lib/studium/exam_topics/advanced_topics_in_plant_sciences +117 -0
  162. data/lib/studium/exam_topics/advanced_virology +273 -0
  163. data/lib/studium/exam_topics/ageing +154 -0
  164. data/lib/studium/exam_topics/agrar_ecology +67 -0
  165. data/lib/studium/exam_topics/agrarmarkt +73 -0
  166. data/lib/studium/exam_topics/agrarphysik +35 -0
  167. data/lib/studium/exam_topics/alcohols +30 -0
  168. data/lib/studium/exam_topics/algorithms +104 -0
  169. data/lib/studium/exam_topics/allergie +76 -0
  170. data/lib/studium/exam_topics/allgemeine_genetik +1006 -0
  171. data/lib/studium/exam_topics/allgemeine_mikrobiologie +1012 -0
  172. data/lib/studium/exam_topics/aminoacids +469 -0
  173. data/lib/studium/exam_topics/analytische_chemie_1 +134 -0
  174. data/lib/studium/exam_topics/analytische_chemie_2 +31 -0
  175. data/lib/studium/exam_topics/anatomie +378 -0
  176. data/lib/studium/exam_topics/anorganische_chemie +357 -0
  177. data/lib/studium/exam_topics/anthropologie +239 -0
  178. data/lib/studium/exam_topics/antibodies_and_antigens +790 -0
  179. data/lib/studium/exam_topics/apoptosis +35 -0
  180. data/lib/studium/exam_topics/archaea +112 -0
  181. data/lib/studium/exam_topics/archaeo_viruses +7 -0
  182. data/lib/studium/exam_topics/archaeology +5 -0
  183. data/lib/studium/exam_topics/architecture +8 -0
  184. data/lib/studium/exam_topics/artificial_intelligence +90 -0
  185. data/lib/studium/exam_topics/atomemissionsspektrometrie +6 -0
  186. data/lib/studium/exam_topics/audio +11 -0
  187. data/lib/studium/exam_topics/bacteriophages +266 -0
  188. data/lib/studium/exam_topics/basic_biochemistry +1008 -0
  189. data/lib/studium/exam_topics/basic_biotechnology +1011 -0
  190. data/lib/studium/exam_topics/basic_chemistry +1007 -0
  191. data/lib/studium/exam_topics/basic_virology +1008 -0
  192. data/lib/studium/exam_topics/bauwesen +6 -0
  193. data/lib/studium/exam_topics/betriebssysteme +128 -0
  194. data/lib/studium/exam_topics/betriebswirtschaftslehre +29 -0
  195. data/lib/studium/exam_topics/bioanalytik_und_biosensoren +451 -0
  196. data/lib/studium/exam_topics/biochips +80 -0
  197. data/lib/studium/exam_topics/bioelektrochemie +57 -0
  198. data/lib/studium/exam_topics/biofilms +58 -0
  199. data/lib/studium/exam_topics/bioinformatics +523 -0
  200. data/lib/studium/exam_topics/biological_therapeutics +156 -0
  201. data/lib/studium/exam_topics/biologie +152 -0
  202. data/lib/studium/exam_topics/biomarkers +137 -0
  203. data/lib/studium/exam_topics/biomaterials +90 -0
  204. data/lib/studium/exam_topics/biomedical_studies +16 -0
  205. data/lib/studium/exam_topics/biomembranes +6 -0
  206. data/lib/studium/exam_topics/bionik +65 -0
  207. data/lib/studium/exam_topics/biophysik +34 -0
  208. data/lib/studium/exam_topics/biopolymers +10 -0
  209. data/lib/studium/exam_topics/bioprozesstechnik +149 -0
  210. data/lib/studium/exam_topics/bioressourcenmanagement +78 -0
  211. data/lib/studium/exam_topics/birds +5 -0
  212. data/lib/studium/exam_topics/bodenkunde +384 -0
  213. data/lib/studium/exam_topics/bodenmikrobiologie +40 -0
  214. data/lib/studium/exam_topics/cancerbiology +488 -0
  215. data/lib/studium/exam_topics/cell_cultures +229 -0
  216. data/lib/studium/exam_topics/cellbiology +1011 -0
  217. data/lib/studium/exam_topics/cellular_transport_and_protein_secretion +27 -0
  218. data/lib/studium/exam_topics/cellular_vesicles +11 -0
  219. data/lib/studium/exam_topics/cellulose +6 -0
  220. data/lib/studium/exam_topics/chemische_technologie_anorganischer_stoffe +210 -0
  221. data/lib/studium/exam_topics/chemische_technologie_organischer_stoffe +25 -0
  222. data/lib/studium/exam_topics/chemisches_labor +60 -0
  223. data/lib/studium/exam_topics/chemokines_and_cytokines +45 -0
  224. data/lib/studium/exam_topics/chemotaxis_quorum_sensing_and_motility_in_prokaryotes +116 -0
  225. data/lib/studium/exam_topics/citric_acid_cycle +84 -0
  226. data/lib/studium/exam_topics/clinical_microbiology +520 -0
  227. data/lib/studium/exam_topics/computer_science +309 -0
  228. data/lib/studium/exam_topics/computer_vision_and_computer_graphics +15 -0
  229. data/lib/studium/exam_topics/crispr +51 -0
  230. data/lib/studium/exam_topics/cyanobacteria +45 -0
  231. data/lib/studium/exam_topics/cytogenetics_and_chromosome_biology +598 -0
  232. data/lib/studium/exam_topics/databases_and_sql +126 -0
  233. data/lib/studium/exam_topics/dna_mutation_and_dna_repair +186 -0
  234. data/lib/studium/exam_topics/dna_replication +80 -0
  235. data/lib/studium/exam_topics/ecogenetics +26 -0
  236. data/lib/studium/exam_topics/ecological_agriculture +12 -0
  237. data/lib/studium/exam_topics/ecology +332 -0
  238. data/lib/studium/exam_topics/economy +226 -0
  239. data/lib/studium/exam_topics/electron_microscopy +7 -0
  240. data/lib/studium/exam_topics/elektronenmikroskopie +356 -0
  241. data/lib/studium/exam_topics/elektrophorese +132 -0
  242. data/lib/studium/exam_topics/elektrotechnik_und_elektrizit/303/244t +42 -0
  243. data/lib/studium/exam_topics/elisa +55 -0
  244. data/lib/studium/exam_topics/embryologie_und_entwicklung +657 -0
  245. data/lib/studium/exam_topics/endospores_and_spores +104 -0
  246. data/lib/studium/exam_topics/enzymes_and_cofactors +395 -0
  247. data/lib/studium/exam_topics/epigenetik +188 -0
  248. data/lib/studium/exam_topics/erste_hilfe +414 -0
  249. data/lib/studium/exam_topics/ethik +143 -0
  250. data/lib/studium/exam_topics/evolution_and_evolutionary_genetics +372 -0
  251. data/lib/studium/exam_topics/excel +7 -0
  252. data/lib/studium/exam_topics/fish +19 -0
  253. data/lib/studium/exam_topics/fluorescence_microscopy +10 -0
  254. data/lib/studium/exam_topics/food_microbiology_and_food_biotechnology +92 -0
  255. data/lib/studium/exam_topics/forensik +65 -0
  256. data/lib/studium/exam_topics/forstwirtschaft +53 -0
  257. data/lib/studium/exam_topics/fortgeschrittene_genetik +692 -0
  258. data/lib/studium/exam_topics/fortgeschrittene_gentechnik +221 -0
  259. data/lib/studium/exam_topics/fortgeschrittene_physik +6 -0
  260. data/lib/studium/exam_topics/fungi +119 -0
  261. data/lib/studium/exam_topics/genetische_krankheiten +209 -0
  262. data/lib/studium/exam_topics/genexpression +1008 -0
  263. data/lib/studium/exam_topics/genomics_and_metagenomics +290 -0
  264. data/lib/studium/exam_topics/gentechnik_und_praktische_biochemie +961 -0
  265. data/lib/studium/exam_topics/geochemistry +67 -0
  266. data/lib/studium/exam_topics/geography +9 -0
  267. data/lib/studium/exam_topics/geologie_und_mineralogie +624 -0
  268. data/lib/studium/exam_topics/geometrie +56 -0
  269. data/lib/studium/exam_topics/geschichte +95 -0
  270. data/lib/studium/exam_topics/gluconeogenesis +72 -0
  271. data/lib/studium/exam_topics/glycogen +45 -0
  272. data/lib/studium/exam_topics/glycolysis +118 -0
  273. data/lib/studium/exam_topics/glykomik +131 -0
  274. data/lib/studium/exam_topics/glyoxylatzyklus +31 -0
  275. data/lib/studium/exam_topics/grassland_cultivation +32 -0
  276. data/lib/studium/exam_topics/hormone +152 -0
  277. data/lib/studium/exam_topics/html +8 -0
  278. data/lib/studium/exam_topics/human_ecology +8 -0
  279. data/lib/studium/exam_topics/hygiene +224 -0
  280. data/lib/studium/exam_topics/imaging_and_microscopy +270 -0
  281. data/lib/studium/exam_topics/immunanalytik +94 -0
  282. data/lib/studium/exam_topics/immunologie +1011 -0
  283. data/lib/studium/exam_topics/informatik +117 -0
  284. data/lib/studium/exam_topics/innate_immunity +52 -0
  285. data/lib/studium/exam_topics/insekten +66 -0
  286. data/lib/studium/exam_topics/insulin_and_diabetes +57 -0
  287. data/lib/studium/exam_topics/java +624 -0
  288. data/lib/studium/exam_topics/javascript +29 -0
  289. data/lib/studium/exam_topics/klima +6 -0
  290. data/lib/studium/exam_topics/kryptographie +10 -0
  291. data/lib/studium/exam_topics/landtechnik +26 -0
  292. data/lib/studium/exam_topics/lebensmittel_und_getr/303/244nke +224 -0
  293. data/lib/studium/exam_topics/lebensmitteltechnologie +16 -0
  294. data/lib/studium/exam_topics/light_microscopy +19 -0
  295. data/lib/studium/exam_topics/linux_and_unix +36 -0
  296. data/lib/studium/exam_topics/lipids +145 -0
  297. data/lib/studium/exam_topics/macroeconomics +39 -0
  298. data/lib/studium/exam_topics/marketing +53 -0
  299. data/lib/studium/exam_topics/mathematics +311 -0
  300. data/lib/studium/exam_topics/medizin_und_biomedizinische_technik +254 -0
  301. data/lib/studium/exam_topics/medizinische_chemie_und_pharmazie +441 -0
  302. data/lib/studium/exam_topics/messtechnik_und_regeltechnik +104 -0
  303. data/lib/studium/exam_topics/metabolismus +482 -0
  304. data/lib/studium/exam_topics/meteorologie_und_atmosph/303/244re +120 -0
  305. data/lib/studium/exam_topics/microbial_ecology +37 -0
  306. data/lib/studium/exam_topics/microcontrollers +11 -0
  307. data/lib/studium/exam_topics/mikrobielle_lebensgemeinschaften +58 -0
  308. data/lib/studium/exam_topics/mikrobielle_physiologie +313 -0
  309. data/lib/studium/exam_topics/mitochondria +57 -0
  310. data/lib/studium/exam_topics/mixed +287 -0
  311. data/lib/studium/exam_topics/molecular_biology_of_plants +281 -0
  312. data/lib/studium/exam_topics/molekulare_medizin +133 -0
  313. data/lib/studium/exam_topics/nanotechnologie +456 -0
  314. data/lib/studium/exam_topics/nature_conservation_and_biodiversity +247 -0
  315. data/lib/studium/exam_topics/naturstoffe +9 -0
  316. data/lib/studium/exam_topics/netzwerke +63 -0
  317. data/lib/studium/exam_topics/neuroanatomie +25 -0
  318. data/lib/studium/exam_topics/neurobiology +356 -0
  319. data/lib/studium/exam_topics/nucleotide_sequencing +41 -0
  320. data/lib/studium/exam_topics/nutztierethologie +11 -0
  321. data/lib/studium/exam_topics/object_oriented_modeling +15 -0
  322. data/lib/studium/exam_topics/obstbau +249 -0
  323. data/lib/studium/exam_topics/organische_chemie +1007 -0
  324. data/lib/studium/exam_topics/organische_chemie_2 +137 -0
  325. data/lib/studium/exam_topics/paleobiology +39 -0
  326. data/lib/studium/exam_topics/parasitic_diseases_and_molecular_infection_biology +336 -0
  327. data/lib/studium/exam_topics/patent_law +55 -0
  328. data/lib/studium/exam_topics/pathologie +761 -0
  329. data/lib/studium/exam_topics/pcr +155 -0
  330. data/lib/studium/exam_topics/pentosephosphatweg +61 -0
  331. data/lib/studium/exam_topics/peroxisomes_glycosomes_and_lysosomes +66 -0
  332. data/lib/studium/exam_topics/pflanzenanatomie +262 -0
  333. data/lib/studium/exam_topics/pflanzenbau +24 -0
  334. data/lib/studium/exam_topics/pflanzenschutz +35 -0
  335. data/lib/studium/exam_topics/pflanzenwissenschaften +1009 -0
  336. data/lib/studium/exam_topics/pharmaceutical_biotechnology +252 -0
  337. data/lib/studium/exam_topics/physik +449 -1
  338. data/lib/studium/exam_topics/physikalische_chemie +79 -0
  339. data/lib/studium/exam_topics/physiology_and_histology +592 -0
  340. data/lib/studium/exam_topics/phytochemie +33 -0
  341. data/lib/studium/exam_topics/plant_biotechnology +132 -0
  342. data/lib/studium/exam_topics/plant_breeding +64 -0
  343. data/lib/studium/exam_topics/plant_development +50 -0
  344. data/lib/studium/exam_topics/populationsgenetik +143 -0
  345. data/lib/studium/exam_topics/posttranslationale_modifikation_von_proteinen +198 -0
  346. data/lib/studium/exam_topics/programming +41 -0
  347. data/lib/studium/exam_topics/projektmanagement +226 -0
  348. data/lib/studium/exam_topics/prokaryote_genetics +587 -0
  349. data/lib/studium/exam_topics/protein_engineering +35 -0
  350. data/lib/studium/exam_topics/proteolyse +39 -0
  351. data/lib/studium/exam_topics/proteomik +42 -0
  352. data/lib/studium/exam_topics/protozoans +24 -0
  353. data/lib/studium/exam_topics/prozesstechnik +95 -0
  354. data/lib/studium/exam_topics/psychologie +21 -0
  355. data/lib/studium/exam_topics/python +391 -0
  356. data/lib/studium/exam_topics/quality_management +266 -0
  357. data/lib/studium/exam_topics/rechtsgrundlagen +126 -0
  358. data/lib/studium/exam_topics/research_topics_in_immunobiology +42 -0
  359. data/lib/studium/exam_topics/rna_and_dna +535 -0
  360. data/lib/studium/exam_topics/rna_seq +13 -0
  361. data/lib/studium/exam_topics/robotics +12 -0
  362. data/lib/studium/exam_topics/ruby +240 -0
  363. data/lib/studium/exam_topics/ruby_on_rails +63 -0
  364. data/lib/studium/exam_topics/scientific_writing_and_publishing +38 -0
  365. data/lib/studium/exam_topics/semisynthese_von_proteinen_und_nukleotiden +120 -0
  366. data/lib/studium/exam_topics/sexualbiologie +327 -0
  367. data/lib/studium/exam_topics/signal_transduction_and_laser_systems +215 -0
  368. data/lib/studium/exam_topics/sozialbiologie +17 -0
  369. data/lib/studium/exam_topics/soziologie +5 -0
  370. data/lib/studium/exam_topics/splicing_exons_and_introns +67 -0
  371. data/lib/studium/exam_topics/sport_und_sportverletzungen +6 -0
  372. data/lib/studium/exam_topics/statistik +306 -0
  373. data/lib/studium/exam_topics/stemcells +182 -0
  374. data/lib/studium/exam_topics/stickstofffixierung +91 -0
  375. data/lib/studium/exam_topics/structural_bioinformatics +54 -0
  376. data/lib/studium/exam_topics/strukturbiologie +445 -0
  377. data/lib/studium/exam_topics/system_biology_and_synthetic_biology +108 -0
  378. data/lib/studium/exam_topics/systematische_zoologie +446 -0
  379. data/lib/studium/exam_topics/technical_ecology +144 -0
  380. data/lib/studium/exam_topics/technik +5 -0
  381. data/lib/studium/exam_topics/technische_chemie +208 -0
  382. data/lib/studium/exam_topics/technische_grundlagen_der_informatik +43 -0
  383. data/lib/studium/exam_topics/technische_mikrobiologie +393 -0
  384. data/lib/studium/exam_topics/technisches_zeichnen +5 -0
  385. data/lib/studium/exam_topics/the_bacterial_cell_wall +98 -0
  386. data/lib/studium/exam_topics/the_c_plus_plus_programming_language +531 -0
  387. data/lib/studium/exam_topics/the_c_programming_language +133 -0
  388. data/lib/studium/exam_topics/the_cellcycle +102 -0
  389. data/lib/studium/exam_topics/the_european_union +121 -0
  390. data/lib/studium/exam_topics/the_interferon_system +40 -0
  391. data/lib/studium/exam_topics/the_microbiome +164 -0
  392. data/lib/studium/exam_topics/the_universe +32 -0
  393. data/lib/studium/exam_topics/theoretische_chemie +5 -0
  394. data/lib/studium/exam_topics/theoretische_informatik +161 -0
  395. data/lib/studium/exam_topics/thermodynamics +21 -0
  396. data/lib/studium/exam_topics/tierzucht +139 -0
  397. data/lib/studium/exam_topics/toxikologie +508 -0
  398. data/lib/studium/exam_topics/transcription +188 -0
  399. data/lib/studium/exam_topics/translation_ribosomes_and_translational_control +155 -0
  400. data/lib/studium/exam_topics/umweltbiotechnologie +64 -0
  401. data/lib/studium/exam_topics/umweltchemie +233 -0
  402. data/lib/studium/exam_topics/urbanism_and_traffic +19 -0
  403. data/lib/studium/exam_topics/urea_cycle +56 -0
  404. data/lib/studium/exam_topics/vaccines_and_vaccination +253 -0
  405. data/lib/studium/exam_topics/vectors_and_gene_therapy +247 -0
  406. data/lib/studium/exam_topics/verfahrenstechnik +37 -0
  407. data/lib/studium/exam_topics/verhaltensbiologie +79 -0
  408. data/lib/studium/exam_topics/veterinary_medicine +10 -0
  409. data/lib/studium/exam_topics/vitamine +32 -0
  410. data/lib/studium/exam_topics/wasserkunde +144 -0
  411. data/lib/studium/exam_topics/weinbau +86 -0
  412. data/lib/studium/exam_topics/wissenschaft +20 -0
  413. data/lib/studium/exam_topics/yeast +104 -0
  414. data/lib/studium/exam_topics/zoologie +338 -0
  415. data/lib/studium/exams/afterburn/afterburn.rb +304 -0
  416. data/lib/studium/exams/ask_exam_from_the_upcoming_exams_pool.rb +150 -0
  417. data/lib/studium/exams/ask_exam_topic_question.rb +112 -0
  418. data/lib/studium/exams/ask_question_from_alias.rb +141 -0
  419. data/lib/studium/exams/ask_question_from_any_of_the_still_missing_lectures.rb +130 -0
  420. data/lib/studium/exams/ask_question_from_grouped_themes.rb +141 -0
  421. data/lib/studium/exams/ask_question_from_last_topic.rb +91 -0
  422. data/lib/studium/exams/ask_random_question.rb +195 -0
  423. data/lib/studium/exams/autoinclude.rb +7 -0
  424. data/lib/studium/exams/average_grade/average_grade.rb +404 -0
  425. data/lib/studium/exams/csv/create_csv_passed_exams_file.rb +217 -0
  426. data/lib/studium/exams/cycle.rb +291 -0
  427. data/lib/studium/exams/dataset/dataset.rb +126 -0
  428. data/lib/studium/exams/designate_ten_random_exam_topics/designate_ten_random_exam_topics.rb +88 -0
  429. data/lib/studium/exams/exam/exam.rb +130 -0
  430. data/lib/studium/exams/exam_bubble/exam_bubble.rb +444 -0
  431. data/lib/studium/exams/exam_bubble/menu_for_the_main_loop.rb +111 -0
  432. data/lib/studium/exams/exam_question/README.md +3 -0
  433. data/lib/studium/exams/exam_question/exam_question.rb +434 -0
  434. data/lib/studium/exams/exam_registration_at/constants.rb +49 -0
  435. data/lib/studium/exams/exam_registration_at/exam_registration_at.rb +242 -0
  436. data/lib/studium/exams/exam_registration_at/help.rb +46 -0
  437. data/lib/studium/exams/exam_registration_at/menu.rb +81 -0
  438. data/lib/studium/exams/exam_registration_at/report_and_show.rb +133 -0
  439. data/lib/studium/exams/exam_registration_at/reset.rb +54 -0
  440. data/lib/studium/exams/exam_statistics_from_this_file/exam_statistics_from_this_file.rb +119 -0
  441. data/lib/studium/exams/exam_topics.rb +194 -0
  442. data/lib/studium/exams/exams.rb +20 -0
  443. data/lib/studium/exams/exams_per_month/exams_per_month.rb +2442 -0
  444. data/lib/studium/exams/exams_this_week.rb +182 -0
  445. data/lib/studium/exams/fix_exam_dates.rb +121 -0
  446. data/lib/studium/exams/frozen.rb +36 -0
  447. data/lib/studium/exams/last_exams/last_exams.rb +479 -0
  448. data/lib/studium/exams/lectures_without_exam_entry.rb +137 -0
  449. data/lib/studium/exams/mandatory_continuous_assessment/mandatory_continuous_assessment.rb +1358 -0
  450. data/lib/studium/exams/move_all_unsolved_exam_questions_to_the_top_of_the_file.rb +173 -0
  451. data/lib/studium/exams/move_the_last_exam_question_to_the_top_of_the_file/move_the_last_exam_question_to_the_top_of_the_file.rb +111 -0
  452. data/lib/studium/exams/n_exams_in_these_topics.rb +477 -0
  453. data/lib/studium/exams/next_exam.rb +106 -0
  454. data/lib/studium/exams/next_exams.rb +378 -0
  455. data/lib/studium/exams/not_completed/README.md +5 -0
  456. data/lib/studium/exams/not_completed/not_completed.rb +143 -0
  457. data/lib/studium/exams/open_exam_associated_url/open_exam_associated_url.rb +154 -0
  458. data/lib/studium/exams/open_last_exam_question_asked_file/constants.rb +15 -0
  459. data/lib/studium/exams/open_last_exam_question_asked_file/initialize.rb +29 -0
  460. data/lib/studium/exams/open_last_exam_question_asked_file/open_last_exam_question_asked_file.rb +110 -0
  461. data/lib/studium/exams/push_solved_questions_on_top.rb +180 -0
  462. data/lib/studium/exams/question_answer/question_answer.rb +2936 -0
  463. data/lib/studium/exams/questions_solved_from_day_to_day/questions_solved_from_day_to_day.rb +379 -0
  464. data/lib/studium/exams/remote_ftp_url.rb +52 -0
  465. data/lib/studium/exams/repeat_last_question.rb +78 -0
  466. data/lib/studium/exams/report_total_amount_of_questions_and_answers_for.rb +116 -0
  467. data/lib/studium/exams/show_all_passed_exams_of_this_university.rb +252 -0
  468. data/lib/studium/exams/show_backlog_of_exams/show_backlog_of_exams.rb +114 -0
  469. data/lib/studium/exams/show_exams_for/show_exams_for.rb +172 -0
  470. data/lib/studium/exams/show_themes/constants.rb +28 -0
  471. data/lib/studium/exams/show_themes/menu.rb +61 -0
  472. data/lib/studium/exams/show_themes/misc.rb +538 -0
  473. data/lib/studium/exams/show_themes/reset.rb +62 -0
  474. data/lib/studium/exams/show_themes/show_themes.rb +27 -0
  475. data/lib/studium/exams/show_upcoming_exams/show_upcoming_exams.rb +1537 -0
  476. data/lib/studium/exams/solve_all_questions_from_this_topic.rb +114 -0
  477. data/lib/studium/exams/solved/solved.rb +434 -0
  478. data/lib/studium/exams/timetable/constants.rb +142 -0
  479. data/lib/studium/exams/timetable/timetable.rb +448 -0
  480. data/lib/studium/exams/unsolve_all_questions_from_this_topic.rb +163 -0
  481. data/lib/studium/exams/upcoming_exams/upcoming_exams.rb +555 -0
  482. data/lib/studium/exams/upcoming_exams_at_the_boku/constants.rb +23 -0
  483. data/lib/studium/exams/upcoming_exams_at_the_boku/html.rb +64 -0
  484. data/lib/studium/exams/upcoming_exams_at_the_boku/upcoming_exams_at_the_boku.rb +194 -0
  485. data/lib/studium/exams/upcoming_exams_dataset.rb +247 -0
  486. data/lib/studium/exams/upcoming_registered_exams/upcoming_registered_exams.rb +257 -0
  487. data/lib/studium/exams/upload_exam_topics.rb +360 -0
  488. data/lib/studium/graphviz/README.md +4 -0
  489. data/lib/studium/graphviz/bachelor_vector_based_strategies.dot +160 -0
  490. data/lib/studium/graphviz/master_vector_based_strategies.dot +46 -0
  491. data/lib/studium/gui/gtk3/control_panel/control_panel.rb +40 -0
  492. data/lib/studium/gui/gtk3/lecture_information/lecture_information.rb +191 -0
  493. data/lib/studium/gui/java/exam_question/ExamQuestion$1.class +0 -0
  494. data/lib/studium/gui/java/exam_question/ExamQuestion.class +0 -0
  495. data/lib/studium/gui/java/exam_question/ExamQuestion.java +215 -0
  496. data/lib/studium/gui/javafx/exam_question_widget/exam_question_widget.rb +58 -0
  497. data/lib/studium/gui/jruby/exam_trainer/exam_trainer.rb +637 -0
  498. data/lib/studium/gui/jruby/show_upcoming_exams/show_upcoming_exams.rb +85 -0
  499. data/lib/studium/gui/libui/ask_exam_question/ask_exam_question.rb +347 -0
  500. data/lib/studium/gui/shared_code/control_panel/control_panel_module.rb +305 -0
  501. data/lib/studium/gui/shared_code/exam_trainer/exam_trainer_widget_module.rb +0 -0
  502. data/lib/studium/gui/shared_code/information_about_a_lecture/information_about_a_lecture_module.rb +0 -0
  503. data/lib/studium/gui/shared_code/show_upcoming_exams/show_upcoming_exams_module.rb +129 -0
  504. data/lib/studium/gui/universal_widgets/curriculum_viewer/curriculum_viewer.rb +549 -0
  505. data/lib/studium/gui/universal_widgets/ects_per_university/ects_per_university.rb +302 -0
  506. data/lib/studium/gui/universal_widgets/exam_trainer/exam_trainer.config +6 -0
  507. data/lib/studium/gui/universal_widgets/exam_trainer/exam_trainer.rb +3266 -0
  508. data/lib/studium/gui/universal_widgets/exam_trainer/manifest.yml +12 -0
  509. data/lib/studium/gui/universal_widgets/expand_time_range/expand_time_range.rb +309 -0
  510. data/lib/studium/gui/universal_widgets/information_about_a_lecture/information_about_a_lecture.rb +242 -0
  511. data/lib/studium/gui/universal_widgets/show_upcoming_exams/show_upcoming_exams.rb +252 -0
  512. data/lib/studium/images/libui_ask_exam_question.png +0 -0
  513. data/lib/studium/images/outdated.png +0 -0
  514. data/lib/studium/images/small_logos/DNA.png +0 -0
  515. data/lib/studium/images/small_logos/README.md +2 -0
  516. data/lib/studium/images/small_logos/solved.png +0 -0
  517. data/lib/studium/images/studies_favicon.png +0 -0
  518. data/lib/studium/java/README.md +5 -0
  519. data/lib/studium/java/studium/AskExamQuestion.java +461 -0
  520. data/lib/studium/java/studium/Base.java +123 -0
  521. data/lib/studium/java/studium/Constants.java +122 -0
  522. data/lib/studium/java/studium/EnsureThatTheLogDirectoryExists.java +57 -0
  523. data/lib/studium/java/studium/Mkdir.java +13 -0
  524. data/lib/studium/java/studium/OpenLastExamQuestionurlLinkViaTheBrowser.java +90 -0
  525. data/lib/studium/java/studium/ReturnNQuestionsSolvedInTotal.java +69 -0
  526. data/lib/studium/java/studium/Solved.java +112 -0
  527. data/lib/studium/java/studium/Test.java +60 -0
  528. data/lib/studium/java/studium/studium/AskExamQuestion.class +0 -0
  529. data/lib/studium/java/studium/studium/Base.class +0 -0
  530. data/lib/studium/java/studium/studium/Constants.class +0 -0
  531. data/lib/studium/java/studium/studium/EnsureThatTheLogDirectoryExists.class +0 -0
  532. data/lib/studium/java/studium/studium/Mkdir.class +0 -0
  533. data/lib/studium/java/studium/studium/OpenLastExamQuestionurlLinkViaTheBrowser.class +0 -0
  534. data/lib/studium/java/studium/studium/ReturnNQuestionsSolvedInTotal.class +0 -0
  535. data/lib/studium/java/studium/studium/Solved.class +0 -0
  536. data/lib/studium/java/studium/studium/Test.class +0 -0
  537. data/lib/studium/jobs/jobs.rb +80 -0
  538. data/lib/studium/logging/README.md +2 -0
  539. data/lib/studium/logging/ensure_that_the_log_directory_exists.rb +58 -0
  540. data/lib/studium/logging/html_log_directory.rb +42 -0
  541. data/lib/studium/logging/log_directory.rb +112 -0
  542. data/lib/studium/logging/store_last_question_asked_into_file.rb +138 -0
  543. data/lib/studium/parsers/README.md +2 -0
  544. data/lib/studium/parsers/custom_exam_results_parser.rb +209 -0
  545. data/lib/studium/parsers/parse_remote_lecture.rb +331 -0
  546. data/lib/studium/project/project.rb +88 -0
  547. data/lib/studium/requires/common_popular_requires.rb +37 -0
  548. data/lib/studium/requires/commonly_used_requires.rb +14 -0
  549. data/lib/studium/requires/require_class_exams_solved.rb +7 -0
  550. data/lib/studium/requires/require_ects_scripts.rb +27 -0
  551. data/lib/studium/requires/require_encoding.rb +7 -0
  552. data/lib/studium/requires/require_the_check_and_sanitize_files.rb +31 -0
  553. data/lib/studium/requires/require_the_curricula_files.rb +28 -0
  554. data/lib/studium/requires/require_the_exam_question_class.rb +7 -0
  555. data/lib/studium/requires/require_the_exams_files.rb +46 -0
  556. data/lib/studium/requires/require_the_logging_files.rb +23 -0
  557. data/lib/studium/requires/require_the_parsers.rb +28 -0
  558. data/lib/studium/requires/require_the_studium_constants.rb +7 -0
  559. data/lib/studium/requires/require_the_studium_project.rb +72 -0
  560. data/lib/studium/requires/require_the_toplevel_methods.rb +27 -0
  561. data/lib/studium/requires/require_the_utility_scripts.rb +34 -0
  562. data/lib/studium/requires/require_upcoming_exams.rb +7 -0
  563. data/lib/studium/requires/require_yaml.rb +7 -0
  564. data/lib/studium/requires/return_remote_homepage_of_this_lecture.rb +7 -0
  565. data/lib/studium/requires/with_GUI.rb +13 -0
  566. data/lib/studium/requires/www_mode.rb +17 -0
  567. data/lib/studium/statistics/README.md +4 -0
  568. data/lib/studium/statistics/best_exam_months.rb +92 -0
  569. data/lib/studium/statistics/curriculum_comparer/curriculum_comparer.rb +423 -0
  570. data/lib/studium/statistics/determine_exam_statistics_from_this_file.rb +142 -0
  571. data/lib/studium/statistics/exam_topics_that_are_about_to_be_completed.rb +117 -0
  572. data/lib/studium/statistics/max_stats.rb +169 -0
  573. data/lib/studium/statistics/new_questions_per_year.rb +147 -0
  574. data/lib/studium/statistics/report_how_many_ects_points_per_curriculum_were_completed.rb +167 -0
  575. data/lib/studium/statistics/report_how_many_exam_questions_were_answered.rb +473 -0
  576. data/lib/studium/statistics/show_exam_statistics.rb +75 -0
  577. data/lib/studium/statistics/show_which_courses_are_in_a_bachelor_or_master_curriculum_respectively.rb +104 -0
  578. data/lib/studium/statistics/top_stats.rb +126 -0
  579. data/lib/studium/toplevel_methods/e_and_esystem.rb +34 -0
  580. data/lib/studium/toplevel_methods/find_exam_topic_and_exam_title.rb +3986 -0
  581. data/lib/studium/toplevel_methods/install_the_project_on_the_given_hostsystem.rb +31 -0
  582. data/lib/studium/toplevel_methods/return_remote_homepage_of_this_lecture.rb +11611 -0
  583. data/lib/studium/toplevel_methods/return_remote_moodle_link_of_this_lecture.rb +2405 -0
  584. data/lib/studium/toplevel_methods/roebe.rb +16 -0
  585. data/lib/studium/toplevel_methods/runmode.rb +45 -0
  586. data/lib/studium/toplevel_methods/toplevel_methods.rb +7295 -0
  587. data/lib/studium/universities_in_austria/README.md +2 -0
  588. data/lib/studium/universities_in_austria/boku/README.md +4 -0
  589. data/lib/studium/universities_in_austria/boku/boku_/303/266ffnungszeiten.rb +28 -0
  590. data/lib/studium/universities_in_austria/boku/show_three_pillars_of_these_lectures.rb +110 -0
  591. data/lib/studium/universities_in_austria/boku/three_pillars.rb +237 -0
  592. data/lib/studium/universities_in_austria/tu_vienna/README.md +6 -0
  593. data/lib/studium/universities_in_austria/tu_vienna/tu_ferien.rb +42 -0
  594. data/lib/studium/universities_in_austria/tu_vienna/tu_/303/266ffnungszeiten.rb +34 -0
  595. data/lib/studium/university_course/university_course.rb +409 -0
  596. data/lib/studium/utility_scripts/attribute_lectures_to_university/attribute_lectures_to_university.rb +375 -0
  597. data/lib/studium/utility_scripts/audio_stats.rb +171 -0
  598. data/lib/studium/utility_scripts/auto_stud/auto_stud.rb +252 -0
  599. data/lib/studium/utility_scripts/auto_stud/constants.rb +18 -0
  600. data/lib/studium/utility_scripts/auto_stud/initialize.rb +23 -0
  601. data/lib/studium/utility_scripts/auto_stud/misc.rb +18 -0
  602. data/lib/studium/utility_scripts/autogeneration/autogeneration.rb +158 -0
  603. data/lib/studium/utility_scripts/autopurge_this_lecture_date.rb +100 -0
  604. data/lib/studium/utility_scripts/average_grade_of_this_curriculum.rb +153 -0
  605. data/lib/studium/utility_scripts/blocked_courses.rb +146 -0
  606. data/lib/studium/utility_scripts/calendar/README.md +2 -0
  607. data/lib/studium/utility_scripts/calendar/calendar.rb +251 -0
  608. data/lib/studium/utility_scripts/calendar/misc.rb +35 -0
  609. data/lib/studium/utility_scripts/check_description_of_these_lectures.rb +221 -0
  610. data/lib/studium/utility_scripts/course_registrations/course_registrations.rb +98 -0
  611. data/lib/studium/utility_scripts/courses/courses.rb +177 -0
  612. data/lib/studium/utility_scripts/create/README.md +2 -0
  613. data/lib/studium/utility_scripts/create/webpage_of_university.rb +129 -0
  614. data/lib/studium/utility_scripts/create/webpage_of_university_BOKU.rb +61 -0
  615. data/lib/studium/utility_scripts/create/webpage_of_university_TU.rb +60 -0
  616. data/lib/studium/utility_scripts/create/webpage_of_university_UniWien.rb +60 -0
  617. data/lib/studium/utility_scripts/create_database/create_database.rb +126 -0
  618. data/lib/studium/utility_scripts/current_lectures_belonging_to_both_bachelor_and_master_curriculum.rb +113 -0
  619. data/lib/studium/utility_scripts/currently_participating_in_these_lectures/currently_participating_in_these_lectures.rb +104 -0
  620. data/lib/studium/utility_scripts/display_lecture_url/display_lecture_url.rb +176 -0
  621. data/lib/studium/utility_scripts/expand_time_range/expand_time_range.rb +521 -0
  622. data/lib/studium/utility_scripts/finished_exams_at_this_university/finished_exams_at_this_university.rb +171 -0
  623. data/lib/studium/utility_scripts/foreign_language_percentage/constants.rb +23 -0
  624. data/lib/studium/utility_scripts/foreign_language_percentage/foreign_language_percentage.rb +149 -0
  625. data/lib/studium/utility_scripts/foreign_language_percentage/help.rb +31 -0
  626. data/lib/studium/utility_scripts/foreign_language_percentage/initialize.rb +25 -0
  627. data/lib/studium/utility_scripts/foreign_language_percentage/menu.rb +158 -0
  628. data/lib/studium/utility_scripts/foreign_language_percentage/report.rb +62 -0
  629. data/lib/studium/utility_scripts/foreign_language_percentage/reset.rb +50 -0
  630. data/lib/studium/utility_scripts/foreign_language_percentage/run.rb +19 -0
  631. data/lib/studium/utility_scripts/generate_spreadsheet/generate_spreadsheet.rb +353 -0
  632. data/lib/studium/utility_scripts/generate_spreadsheet/misc.rb +144 -0
  633. data/lib/studium/utility_scripts/holidays/holidays.rb +154 -0
  634. data/lib/studium/utility_scripts/homepage_of_these_courses/homepage_of_these_courses.rb +125 -0
  635. data/lib/studium/utility_scripts/lectures_attributed_to_universities/lectures_attributed_to_universities.rb +336 -0
  636. data/lib/studium/utility_scripts/lva_dates_of_the_important_courses.rb +111 -0
  637. data/lib/studium/utility_scripts/lva_nummer/lva_nummer.rb +427 -0
  638. data/lib/studium/utility_scripts/mandatory_lectures_in_this_month/mandatory_lectures_in_this_month.rb +316 -0
  639. data/lib/studium/utility_scripts/moodle/moodle.rb +214 -0
  640. data/lib/studium/utility_scripts/name_of_this_lva_id/name_of_this_lva_id.rb +110 -0
  641. data/lib/studium/utility_scripts/new_stud.rb +324 -0
  642. data/lib/studium/utility_scripts/next_week/next_week.rb +103 -0
  643. data/lib/studium/utility_scripts/not_yet_registered/not_yet_registered.rb +120 -0
  644. data/lib/studium/utility_scripts/open_last_exam_question_url_link_via_the_browser.rb +76 -0
  645. data/lib/studium/utility_scripts/passed_ects_per_year/passed_ects_per_year.rb +313 -0
  646. data/lib/studium/utility_scripts/passed_pr/303/274fungsimmanente_courses/passed_pr/303/274fungsimmanente_courses.rb +181 -0
  647. data/lib/studium/utility_scripts/pdf/README.md +2 -0
  648. data/lib/studium/utility_scripts/pdf/create_pdf_file_for_this_exam_topic.rb +352 -0
  649. data/lib/studium/utility_scripts/pdf/hexapdf_support.rb +50 -0
  650. data/lib/studium/utility_scripts/preparatory_meetings/preparatory_meetings.rb +317 -0
  651. data/lib/studium/utility_scripts/priority/priority.rb +164 -0
  652. data/lib/studium/utility_scripts/priority_points/priority_points.rb +261 -0
  653. data/lib/studium/utility_scripts/publish_my_exams/publish_my_exams.rb +174 -0
  654. data/lib/studium/utility_scripts/regexes/README.md +1 -0
  655. data/lib/studium/utility_scripts/regexes/generate_regex.rb +314 -0
  656. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_available_moodle_links.rb +55 -0
  657. data/lib/studium/utility_scripts/regexes/generate_regexes_for_the_registered_lectures.rb +48 -0
  658. data/lib/studium/utility_scripts/report_outdated_timetable_entries/report_outdated_timetable_entries.rb +142 -0
  659. data/lib/studium/utility_scripts/report_whether_this_lecture_is_registered_in_the_file_lecture_information/report_whether_this_lecture_is_registered_in_the_file_lecture_information.rb +129 -0
  660. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/individual_resolve_practical_courses_date_conflicts.rb +254 -0
  661. data/lib/studium/utility_scripts/resolve_practical_courses_date_conflicts/resolve_practical_courses_date_conflicts.rb +265 -0
  662. data/lib/studium/utility_scripts/scrape_remote_university_url.rb +138 -0
  663. data/lib/studium/utility_scripts/semester_schedule_creator/semester_container.rb +144 -0
  664. data/lib/studium/utility_scripts/semester_schedule_creator/semester_schedule_creator.rb +373 -0
  665. data/lib/studium/utility_scripts/semesterplaner/semesterplaner.rb +311 -0
  666. data/lib/studium/utility_scripts/set_aliases_based_on_this_file.rb +96 -0
  667. data/lib/studium/utility_scripts/show_all_passed_master_lectures/show_all_passed_master_lectures.rb +126 -0
  668. data/lib/studium/utility_scripts/show_conflicting_lva_lectures/show_conflicting_lva_lectures.rb +1385 -0
  669. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/constants.rb +23 -0
  670. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/menu.rb +63 -0
  671. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/reset.rb +33 -0
  672. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/run.rb +50 -0
  673. data/lib/studium/utility_scripts/show_descriptions_of_lectures_belonging_to_this_module/show_descriptions_of_lectures_belonging_to_this_module.rb +145 -0
  674. data/lib/studium/utility_scripts/show_lecturers/show_lecturers.rb +147 -0
  675. data/lib/studium/utility_scripts/show_lectures/show_lectures.rb +906 -0
  676. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_language/show_lectures_fitting_to_this_language.rb +121 -0
  677. data/lib/studium/utility_scripts/show_lectures_fitting_to_this_theme/show_lectures_fitting_to_this_theme.rb +105 -0
  678. data/lib/studium/utility_scripts/show_lectures_on_the_commandline/show_lectures_on_the_commandline.rb +3160 -0
  679. data/lib/studium/utility_scripts/show_lectures_on_this_day/show_lectures_on_this_day.rb +150 -0
  680. data/lib/studium/utility_scripts/show_lva_dates_of_this_lecture/show_lva_dates_of_this_lecture.rb +182 -0
  681. data/lib/studium/utility_scripts/show_mixed_bachelor_master_courses/show_mixed_bachelor_master_courses.rb +92 -0
  682. data/lib/studium/utility_scripts/show_outdated_lva_dates/show_outdated_lva_dates.rb +214 -0
  683. data/lib/studium/utility_scripts/show_passed_exams_having_this_grade/show_passed_exams_having_this_grade.rb +91 -0
  684. data/lib/studium/utility_scripts/show_solved_english_lectures/show_solved_english_lectures.rb +139 -0
  685. data/lib/studium/utility_scripts/steop/README.md +4 -0
  686. data/lib/studium/utility_scripts/steop/show_all_steop_lectures.rb +93 -0
  687. data/lib/studium/utility_scripts/steop/steop_lectures_in_this_curriculum.rb +284 -0
  688. data/lib/studium/utility_scripts/steop/steop_lva_dates.rb +119 -0
  689. data/lib/studium/utility_scripts/studienkennzahl/studienkennzahl.rb +116 -0
  690. data/lib/studium/utility_scripts/studium_skeleton/studium_skeleton.rb +241 -0
  691. data/lib/studium/utility_scripts/stundenplan.rb +600 -0
  692. data/lib/studium/utility_scripts/sync_studium_relevant_entries_one_level_downwards.rb +217 -0
  693. data/lib/studium/utility_scripts/ufind/ufind.rb +106 -0
  694. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/constants.rb +26 -0
  695. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/run.rb +20 -0
  696. data/lib/studium/utility_scripts/upcoming_mandatory_presence_courses/upcoming_mandatory_presence_courses.rb +187 -0
  697. data/lib/studium/utility_scripts/video_lecture_downloader/video_lecture_downloader.rb +107 -0
  698. data/lib/studium/utility_scripts/week_parser/constants.rb +23 -0
  699. data/lib/studium/utility_scripts/week_parser/help.rb +32 -0
  700. data/lib/studium/utility_scripts/week_parser/menu.rb +59 -0
  701. data/lib/studium/utility_scripts/week_parser/misc.rb +373 -0
  702. data/lib/studium/utility_scripts/week_parser/reset.rb +65 -0
  703. data/lib/studium/utility_scripts/week_parser/run.rb +18 -0
  704. data/lib/studium/utility_scripts/week_parser/show.rb +236 -0
  705. data/lib/studium/utility_scripts/week_parser/week_parser.rb +49 -0
  706. data/lib/studium/utility_scripts/weekday_parser.rb +155 -0
  707. data/lib/studium/utility_scripts/weekly_schedule.rb +198 -0
  708. data/lib/studium/utility_scripts/wochenplanung/wochenplanung.rb +267 -0
  709. data/lib/studium/version/version.rb +46 -0
  710. data/lib/studium/www/exams/exams.cgi +54 -0
  711. data/lib/studium/www/fast_ask_exam_question/fast_ask_exam_question.cgi +156 -0
  712. data/lib/studium/www/handle_curricula/handle_curricula.cgi +154 -0
  713. data/lib/studium/www/next_generation_exam_question_trainer/next_generation_exam_question_trainer.cgi +112 -0
  714. data/lib/studium/www/next_generation_exam_question_trainer/solved.cgi +26 -0
  715. data/lib/studium/www/sinatra/app.rb +231 -0
  716. data/lib/studium/www/sinatra/curriculum_displayer/curriculum_displayer.rb +162 -0
  717. data/lib/studium/www/sinatra/misc.rb +115 -0
  718. data/lib/studium/www/statistics/statistics.cgi +82 -0
  719. data/lib/studium/www/upcoming_exams/upcoming_exams.cgi +36 -0
  720. data/lib/studium/yaml/ad_hoc_trainer/README.md +2 -0
  721. data/lib/studium/yaml/ad_hoc_trainer/exam_topics.md +22 -0
  722. data/lib/studium/yaml/allowed_themes_for_courses/allowed_themes_for_courses.yml +348 -0
  723. data/lib/studium/yaml/array_allowed_entries_for_the_file_lecture_information/array_allowed_entries_for_the_file_lecture_information.yml +71 -0
  724. data/lib/studium/yaml/available_exam_topics/available_exam_topics.yml +234 -0
  725. data/lib/studium/yaml/backlog_of_exams.yml +37 -0
  726. data/lib/studium/yaml/colours/custom_colours.yml +50 -0
  727. data/lib/studium/yaml/colours/use_colours.yml +1 -0
  728. data/lib/studium/yaml/current_exams.yml +30 -0
  729. data/lib/studium/yaml/curricula/README.md +39 -0
  730. data/lib/studium/yaml/curricula/bachelor/bachelor_agrarwissenschaften_033255.yml +147 -0
  731. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_basisblock_033630.yml +71 -0
  732. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_botanik_033630.yml +100 -0
  733. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_ecology_033630.yml +74 -0
  734. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_mikrobiologie_und_genetik_033630.yml +122 -0
  735. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_molekulare_biologie_033630.yml +106 -0
  736. data/lib/studium/yaml/curricula/bachelor/bachelor_biologie_zoologie_033630.yml +87 -0
  737. data/lib/studium/yaml/curricula/bachelor/bachelor_chemie_033662.yml +165 -0
  738. data/lib/studium/yaml/curricula/bachelor/bachelor_dummy_curriculum.yml +182 -0
  739. data/lib/studium/yaml/curricula/bachelor/bachelor_elektrotechnik_und_informationstechnik_033235.yml +13 -0
  740. data/lib/studium/yaml/curricula/bachelor/bachelor_forstwirtschaft_033225.yml +115 -0
  741. data/lib/studium/yaml/curricula/bachelor/bachelor_informatik_033521.yml +134 -0
  742. data/lib/studium/yaml/curricula/bachelor/bachelor_ktww_033231.yml +84 -0
  743. data/lib/studium/yaml/curricula/bachelor/bachelor_lmbt_033217.yml +121 -0
  744. data/lib/studium/yaml/curricula/bachelor/bachelor_medizinische_informatik_033533.yml +283 -0
  745. data/lib/studium/yaml/curricula/bachelor/bachelor_molekularbiologie_033665.yml +95 -0
  746. data/lib/studium/yaml/curricula/bachelor/bachelor_nutrition_science_033638.yml +119 -0
  747. data/lib/studium/yaml/curricula/bachelor/bachelor_pharmazie_033305.yml +170 -0
  748. data/lib/studium/yaml/curricula/bachelor/bachelor_technische_chemie_033290.yml +131 -0
  749. data/lib/studium/yaml/curricula/bachelor/bachelor_technische_informatik_033535.yml +23 -0
  750. data/lib/studium/yaml/curricula/bachelor/bachelor_ubrm_033227.yml +142 -0
  751. data/lib/studium/yaml/curricula/bachelor/bachelor_verfahrenstechnik_033273.yml +167 -0
  752. data/lib/studium/yaml/curricula/bachelor/bachelor_wirtschaftsinformatik_033526.yml +29 -0
  753. data/lib/studium/yaml/curricula/experimental/bachelor_informatik_in_den_lebenswissenschaften.yml +137 -0
  754. data/lib/studium/yaml/curricula/individual/bachelor_formale_logik.yml +88 -0
  755. data/lib/studium/yaml/curricula/individual/bachelor_informatik_und_molekulare_biologie.yml +1161 -0
  756. data/lib/studium/yaml/curricula/individual/bachelor_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +1157 -0
  757. data/lib/studium/yaml/curricula/individual/master_bioinformatics_and_nanobiotechnology_in_molecular_medicine.yml +306 -0
  758. data/lib/studium/yaml/curricula/individual/master_vector_based_strategies_in_life_sciences_molecular_medicine_and_biotechnology.yml +741 -0
  759. data/lib/studium/yaml/curricula/master/master_bioinformatik_066875.yml +75 -0
  760. data/lib/studium/yaml/curricula/master/master_biologie_molekulare_mikrobiologie_mikrobielle_oekologie_und_immunbiologie_066830.yml +78 -0
  761. data/lib/studium/yaml/curricula/master/master_biologische_chemie_066863.yml +66 -0
  762. data/lib/studium/yaml/curricula/master/master_dummy_curriculum.yml +197 -0
  763. data/lib/studium/yaml/curricula/master/master_genetik_und_entwicklungsbiologie_066877.yml +89 -0
  764. data/lib/studium/yaml/curricula/master/master_lmbt_066418.yml +112 -0
  765. data/lib/studium/yaml/curricula/master/master_molecular_biology_066865.yml +72 -0
  766. data/lib/studium/yaml/curricula/master/master_molekulare_biologie_066834.yml +151 -0
  767. data/lib/studium/yaml/curricula/master/master_pharmazie_066605.yml +176 -0
  768. data/lib/studium/yaml/curricula/master/master_technische_chemie_066490.yml +123 -0
  769. data/lib/studium/yaml/curricula/outdated/master_bioinformatics_and_molecular_biotechnology_including_aspects_from_molecular_medicine.yml +438 -0
  770. data/lib/studium/yaml/curricula/outdated/master_food_science_and_plant_biotechnology.yml +31 -0
  771. data/lib/studium/yaml/curricula.yml +562 -0
  772. data/lib/studium/yaml/daily_questions_solved/daily_questions_solved.yml +2019 -0
  773. data/lib/studium/yaml/daily_questions_solved/daily_questions_solved.yml~ +1983 -0
  774. data/lib/studium/yaml/default_delay.yml +4 -0
  775. data/lib/studium/yaml/default_encoding.yml +1 -0
  776. data/lib/studium/yaml/directory_to_the_exam_topics.yml +0 -0
  777. data/lib/studium/yaml/editor.yml +1 -0
  778. data/lib/studium/yaml/exams/next_exams_to_do.md +9 -0
  779. data/lib/studium/yaml/file_for_exam_questions.yml +1 -0
  780. data/lib/studium/yaml/german/README.md +2 -0
  781. data/lib/studium/yaml/german/german_to_english_month_names.yml +16 -0
  782. data/lib/studium/yaml/grouped_themes/grouped_themes.yml +264 -0
  783. data/lib/studium/yaml/holidays/holidays.yml +201 -0
  784. data/lib/studium/yaml/important_exams.yml +286 -0
  785. data/lib/studium/yaml/inscription_dates_of_universities.yml +60 -0
  786. data/lib/studium/yaml/lecture_aliases.yml +138 -0
  787. data/lib/studium/yaml/lecture_information/lecture_information.yml +66145 -0
  788. data/lib/studium/yaml/log_dir.yml +1 -0
  789. data/lib/studium/yaml/main_topic/main_topic.yml +11 -0
  790. data/lib/studium/yaml/max_stats/max_stats.yml +262 -0
  791. data/lib/studium/yaml/max_stats.yml +263 -0
  792. data/lib/studium/yaml/meta_themes +1 -0
  793. data/lib/studium/yaml/mitbelegung/README.md +4 -0
  794. data/lib/studium/yaml/mitbelegung/mitbelegung.yml +21 -0
  795. data/lib/studium/yaml/mitteilungsbl/303/244tter/mitteilungsbl/303/244tter.yml +363 -0
  796. data/lib/studium/yaml/n_total_questions.yml +1 -0
  797. data/lib/studium/yaml/rename_konsole_tab.yml +1 -0
  798. data/lib/studium/yaml/roebe/ad_hoc_exam_topics.md +19 -0
  799. data/lib/studium/yaml/roebe/sommersemester_2024_opportunities.md +441 -0
  800. data/lib/studium/yaml/semester_planner/README.md +4 -0
  801. data/lib/studium/yaml/semester_planner/semester_planner.yml +189 -0
  802. data/lib/studium/yaml/show_topic.yml +1 -0
  803. data/lib/studium/yaml/statistics/lecture_information.yml +1 -0
  804. data/lib/studium/yaml/statistics/max_stats.yml +239 -0
  805. data/lib/studium/yaml/statistics/statistics.yml +77 -0
  806. data/lib/studium/yaml/week/01_monday.yml +25 -0
  807. data/lib/studium/yaml/week/02_tuesday.yml +68 -0
  808. data/lib/studium/yaml/week/03_wednesday.yml +63 -0
  809. data/lib/studium/yaml/week/04_thursday.yml +20 -0
  810. data/lib/studium/yaml/week/05_friday.yml +31 -0
  811. data/lib/studium/yaml/week/06_saturday.yml +16 -0
  812. data/lib/studium/yaml/week/07_sunday.yml +0 -0
  813. data/lib/studium/yaml/week/README.md +10 -0
  814. data/lib/studium.rb +5 -0
  815. data/studium.gemspec +82 -0
  816. data/test/testing_colourized_question_and_answer.rb +18 -0
  817. data/test/testing_studium.rb +244 -0
  818. data/test/testing_studium_base_class.rb +31 -0
  819. data/test/testing_the_file_lecture_information.rb +18 -0
  820. data/test/testing_time_component.rb +29 -0
  821. metadata +1042 -0
@@ -0,0 +1,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
+ - Give an example for a <one>polyisoprenoid hydrocarbon</one>. A: <one>Squalen</one>. URL: https://de.wikipedia.org/wiki/Squalen []
10
+ - Welcher <one>Zuckerbaustein</one> kommt bei <two>Chitin</two> zum Einsatz? <one>N-Acetyl-Glucosamin</one>. URL: https://de.wikipedia.org/wiki/N-Acetylglucosamin
11
+ - <one>Katalasen</one> <two>benötigen welches Atom</two>? <one>Eisen</one>. URL: https://de.wikipedia.org/wiki/Katalase []
12
+ - Wieviele <one>OH-Gruppen</one> besitzt <two>Shikimat</two>? <one>3</one>. URL: https://de.wikipedia.org/wiki/Shikimis%C3%A4ure []
13
+ - Nenne ein (indirektes) <one>Transportsystem</one> für das Reduktionsmittel <two>NADH</two> <three>in den Mitochondrien</three>. A: Der <one>Malat-Aspartat-Shuttle</one>. URL: https://de.wikipedia.org/wiki/Malat-Aspartat-Shuttle []
14
+ - A <one>steroid</one> <two>contains</two> <three>how many rings</three>? <one>Four</one>. URL: https://en.wikipedia.org/wiki/Steroid []
15
+ - Die <one>Konformation der glykosidischen Bindung</one> <two>ist ... syn oder anti</two>? <one>Anti</one>.
16
+ - Welche <one>Säure</one> wirkt gegen, respektive hilft bei der Vermeidung von <two>Skorbut</two>? Die <one>Ascorbinsäure</one>. URL: https://de.wikipedia.org/wiki/Ascorbins%C3%A4ure []
17
+ - Was sind die <one>PEST-sequences</one>? (1) <one>P</one>: <two>Prolin</two> (2) <one>E</one>: <two>Glumatinsäure</two> (3) <one>S</one>: <two>Serin</two> (4) <one>T</one>: <two>Threonin</two> URL: https://en.wikipedia.org/wiki/PEST_sequence []
18
+ - Nach der Anzahl der Kohlenstoffatome kann man <one>Monosaccharide</one> einteilen. <two>Nenne die Namen für 3, 4, 5, 6 und 7 C-Atomen solcher Monosaccharide</two>. 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> []
19
+ - <one>In welchen Komplexen der Atmungskette</one> werden <two>Protonen gepumpt</two>? In den Komplexen <one>I</one>, <one>III</one> und <one>IV</one> (<two>1,3,4</two>; <three>1,3,4-Pumper</three>). []
20
+ - Nenne <one>einen künstlichen Elektronenazeptor</one> der <two>NADP</two> ähnelt (die Abkürzung genügt). A: <one>DCPIP</one> (<two>2,6-Dichlorphenolindophenol</two>). URL: https://en.wikipedia.org/wiki/Dichlorophenolindophenol []
21
+ - Der <one>Edman-Abbau eines Proteins</one> <two>beginnt an welchem Ende</two>? Am <one>N-Terminus</one>. URL: https://en.wikipedia.org/wiki/Edman_degradation []
22
+ - <one>Ribulose-1,-5-bisphosphat</one> <two>besitzt</two> <three>n C-Atome</three>? A: <one>5</one>. URL: https://de.wikipedia.org/wiki/Ribulose-1,5-bisphosphat []
23
+ - Which <one>vitamin</one> is part of <two>Acetyl-CoA</two>? <one>Pantothenic acid</one>. URL: https://en.wikipedia.org/wiki/Pantothenic_acid []
24
+ - Die wichtigste <one>Proteinkinase</one> im Menschen ist ... ? Der <one>Insulinrezeptor</one>. Die <two>Beta-Untereinheiten</two> dieses Rezeptors besitzen eine <three>Tyrosinkinase-Aktivität</three>. URL: https://de.wikipedia.org/wiki/Insulinrezeptor []
25
+ - Die <one>Erythrose</one> <two>besitzt wieviele</two> <three>C-Atome</three>? <one>4</one> -<two>Erythrose</two> ist dadurch eine <three>Tetrose</three>. URL: https://en.wikipedia.org/wiki/Erythrose []
26
+ - Wie nennen wir einen <one>internen Ester</one>? <one>Lacton</one>. URL: https://de.wikipedia.org/wiki/Lactone []
27
+ - Wie nennt man <one>5-gliedrige</one> und <one>6-gliedrige Ringe</one> in der Biochemie jeweils? Mnemo... <one>FuPy</one> ... <one>F</one> ... <one>fünf</one>/<one>five</one> (1) <two>5-gliedrig</two>: <three>Furanose</three> (2) <two>6-gliedrig</two>: <three>Pyranose</three> []
28
+ - <one>Kondensation</one> versus <one>Hydrolyse</one>. <two>Welcher dieser beiden Prozesse verliert Wasser</two>? Die <one>Kondensationsreaktion</one> <two>verliert pro Schritt jeweils ein Wassermolekül</two>. URL: https://de.wikipedia.org/wiki/Kondensationsreaktion []
29
+ - <one>Warum</one> fühlen sich <two>Latex-Handschuhe</two> und <two>Menthol-Zuckerl</two> <three>irgendwie verwandt an</three>? Weil beide aus <one>Isopren-Einheiten</one> bestehen. []
30
+ - In der Biochemie: <one>Natriumlaurylsulfat</one> <two>ähnelt welch anderer Substanz</two>? <one>SDS</one>: <two>Sodium dodecyl sulfate</two>. URL: https://en.wikipedia.org/wiki/Sodium_dodecyl_sulfate
31
+ - <one>Pyridoxalphosphat</one> <two>ist ein Derivat von ...</two>? Von <one>Vitamin B6</one>. URL: https://de.wikipedia.org/wiki/Pyridoxalphosphat []
32
+ - Bei der <one>Biosynthese von Tryptophan</one> spielt <two>PRPP</two> eine wichtige Rolle. Wofür steht <two>PRPP</two>? <one>Phosphoribosylpyrophosphat</one>. (<two>Phospho-ribosyl-pyro-phosphat</two>). URL: https://de.wikipedia.org/wiki/Phosphoribosylpyrophosphat []
33
+ - Nenne einen besseren Begriff für das Wort <one>Herzglykoside</one>. A: <one>Herzwirksame Glykoside</one>. URL: https://de.wikipedia.org/wiki/Herzglykoside []
34
+ - Sind <one>Triacylglycerine</one> <two>Bestandteil von Biomembranen</two>? <one>Nein</one>. []
35
+ - <one>Pepsin</one> zeigt <two>bei welchem pH Wert</two> seine <three>maximale Aktivität</three>? <one>Pepsin</one> ist bei einem <two>pH-Wert</two> von <three>2</three> am stärksten. URL: https://de.wikipedia.org/wiki/Pepsin []
36
+ - Another, prettier name for <one>NAD</one>? The <one>principle soluble carrier of reduction equivalents</one>. URL: https://de.wikipedia.org/wiki/Nicotinamidadenindinukleotid []
37
+ - Was ist die <one>Hill-Reaktion</one>? Die <one>„Wasserspalter-Reaktion“</one>. Die Hill-Reaktion ist eine Reaktion, bei der <two>Wasser</two> in <one>Wasserstoff</one> und <one>Sauerstoff</one> gespalten wird. (<three>2x H₂O → 2xH₂ + O₂</three>) []
38
+ - Verwende eine andere Bezeichnung für die <one>Glucokinase</one>. A: <one>Hexokinase IV</one>. URL: https://de.wikipedia.org/wiki/Hexokinase []
39
+ - <one>ATP</one> <two>was discovered</two> <three>when</three>? <one>ATP</one> <two>was discovered in the year</two> <three>1929</three>. URL: https://de.wikipedia.org/wiki/Adenosintriphosphat []
40
+ - Kommen <one>Zucker</one> in der <two>L-Form</two> vor? <one>Nein</one> - nur in der <two>D-Form</two>, im Gegensatz zu den Aminosäuren, die in L-Form vorkommen. []
41
+ - The <one>disulfide bridge formation</one> <two>requires what</two>? An <one>oxidative environment</one>. []
42
+ - <one>Warum</one> verwenden <two>Erythrozyten</two> nur die <three>Glykolyse</three> <four>als Energiequelle</four>? Da <one>Erythrozyten</one> <two>keine Mitochondrien besitzen</two>. []
43
+ - Wieviele <one>Aminosäuren</one> / <one>Windung</one> sehen wir bei der <two>Alpha-Helix</two>? <one>3.6 Aminosäuren</one>. []
44
+ - Nenne eine <one>ER-Retensionssequenz</one>. A: <one>KDEL</one>. []
45
+ - Bei der <one>Ausbildung von Disulfidbrücken</one> <two>geht was genau verloren</two>? <one>2xH</one>; das -O kommt logischerweise NICHT von der -SH Gruppe der Cysteine.
46
+ - Wie unterscheidet sich eine <one>Micelle</one> von einem <one>Lipid Bilayer</one> <two>hinsichtlich ihrer Eigenschaften</two>? A: (1) Die <one>Micelle</one> hat einen <two>stärkeren hydrophoben Anteil</two>. (2) Der <one>Lipid Bilayer</one> einen <two>stärkeren hydrophilen Anteil</two>. []
47
+ - Sind <one>biologische Flüssigkeiten</one> <two>gepuffert</two>? <one>Ja</one>. []
48
+ - The abbreviation <one>ampholytes</one> <two>stands for ... </two>? <one>Amphoteric electrolytes</one>. URL: https://en.wikipedia.org/wiki/Amphoterism []
49
+ - Liegt <one>E-Selektin</one> <two>glykosyliert vor</two>? <one>Ja</one>. URL: https://de.wikipedia.org/wiki/Endothel-Selektin []
50
+ - Can the <one>AMPK</one> <two>stimulate</two> <three>glucose uptake</three>? <one>Yes</one>. []
51
+ - <one>Was ist energiereicher</one>: eine <two>Säureamidbindung</two> oder eine <two>Säureanhydridbindung</two>? Die <one>Säureanhydridbindung</one> <two>ist energiereicher</two>. URL: https://de.wikipedia.org/wiki/S%C3%A4ureanhydride []
52
+ - Der Vorläufer von <one>T3</one> ist ... ? <one>Tyrosin</one>. URL: https://en.wikipedia.org/wiki/Thyroid_hormones []
53
+ - Nenne ein wichtiges Beispiel für ein <one>Epimer</one>. A: <one>Glucose</one> und <one>Galactose</one>, welche sich nur an <one>Carbon 4</one> (<three>C4</three>) unterscheiden. URL: https://en.wikipedia.org/wiki/Epimer []
54
+ - Bei der <one>Biosynthese von Histidin</one>: <two>welche Substanz</two> <three>ist der direkte Vorläufer</three>? <one>Ribose-5 phosphat</one>. URL: https://en.wikipedia.org/wiki/Ribose_5-phosphate
55
+ - Was ist jeweils <one>Oxymyoglobin</one> und <one>Desoxymyoglobin</one>? (1) <one>Oxymyoglobin</one>: dies ist <two>Myoglobin</two> <three>mit gebundenem Sauerstoff</three>. (2) <one>Desoxymyoglobin</one>: <two>Myoglobin</two> <three>ohne gebundenem Sauerstoff</three>.
56
+ - <one>Welche grundlegende Aufgabe</one> haben die <two>triglycerides</two> in Tieren? Sie speichern Energie; die primäre Aufgabe ist somit die <one>Speicherung von Energie</one>.
57
+ - <one>Englische Bezeichnung</one> für die <two>Gallensäuren</two>? <one>Bile acids</one>. URL: https://en.wikipedia.org/wiki/Bile_acid []
58
+ - Die <one>Prolyl-Hydroxylase</one> heftet eine <two>Hydroxylgruppe</two> an Prolin, <three>im Kollagen</three>. <four>Woher aber stammt das O (Sauerstoff-Atom)</four>? Von <one>molekularem O₂</one>. []
59
+ - Nenne <one>zwei Beispiele</one> für <two>Polyamine</two>. Welche <three>Ladung</three> haben sie? <one>Spermin</one> und <one>Spermidin</one> sind Polyamine. Sie haben eine <two>positive Ladung</two>. (Mnemonic: <three>DNA ist negativ geladen</three>, somit macht es Sinn das Spermin/Spermidin positiv geladen sind.)
60
+ - Was bedeutet das Wort <one>Trypsin</one>? <one>Etwas niederreissen</one>. URL: https://de.wikipedia.org/wiki/Trypsine []
61
+ - Die <one>Chitobiose</one> ist ein <two>Monosaccharid</two>, <two>Disaccharid</two> oder <two>Trisaccharid</two>? Die <one>Chitobiose</one> ist ein <two>Disaccharid</two>. URL: https://en.wikipedia.org/wiki/Chitobiose []
62
+ - 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 []
63
+ - Was erzeugt der <one>Pyruvat-Dehydrogenase Komplex</one>? <one>Acetyl-CoA</one> (<two>ausgehend von Pyruvat</two>). URL: https://de.wikipedia.org/wiki/Pyruvatdehydrogenase-Komplex []
64
+ - <one>In welchem Gewebe</one> können üblicherweise viele <two>Proteoglykane</two> und <two>Glykosaminglykane</two> gefunden werden? Im <one>Knorpelgewebe</one>. URL: https://de.wikipedia.org/wiki/Knorpel []
65
+ - Liegt <one>Glutathion</one> (<two>GSH</two>) <two>in hoher Konzentration in Zellen vor</two>? <one>Ja</one> - <two>mit einer Konzentration bis zu 5 mM</two>.
66
+ - <one>RNase A</one> <two>cuts after</two>? <one>RNase A</one> will cut after a <two>pyrimidine</two>. URL: https://www.ncbi.nlm.nih.gov/pubmed/11087402 []
67
+ - The enzyme <one>Lactate Dehydrogenase</one> contains a <two>binding domain</two>. <three>What can this domain bind</three>? <one>NAD⁺</one>. URL: https://en.wikipedia.org/wiki/Lactate_dehydrogenase []
68
+ - <one>Cystein</one> kann zu <one>Cystin</one> <two>oxidiert</two> oder <two>reduziert</two> werden? <one>Oxidiert</one>. []
69
+ - Sind <one>biologische Membranen</one> <two>asymmetrisch</two>? <one>Ja</one>. []
70
+ - Verwende eine <one>andere Bezeichnung</one> für den <two>Mechanismus der Energiekopplung</two>. A: <one>Chemieosmose</one>. URL: https://de.wikipedia.org/wiki/Chemiosmotische_Kopplung []
71
+ - Die <one>Essigsäure</one> <two>liegt oft im Gleichgewicht mit welchem Ion</two>? Mit dem <one>Acetat-Ion</one> - präziser formuliert: dem <two>Acetat-Anion</two>. URL: https://de.wikipedia.org/wiki/Acetate []
72
+ - <one>Biotin</one> wird auch <two>Vitamin H</two> genannt. Wieso der Buchstabe H? <one>H</one> ... für <two>Haut</two>, im Jahr <three>1898</three>, als es von Steinitz entdeckt wurde. []
73
+ - Give an example for an <one>iron storage protein</one>. A: <one>Ferritin</one>. URL: https://de.wikipedia.org/wiki/Ferritin []
74
+ - Eine <one>Carboxamidgruppe</one> <two>besteht aus welchen Komponenten</two>? A: <one>-C=O-NH₂</one>. URL: https://de.qwe.wiki/wiki/Carboxamide []
75
+ - <one>Lipide</one> <two>sind aus welchen</two> <three>zwei Komponenten</three> aufgebaut? (1) <one>Fettsäuren</one>, die über eine <one>Esterbindung</one> verknüpft sind, und (2) <one>Glycerin</one>
76
+ - <one>Vitamin B1</one> beziehungsweise ein Derivat hiervon <two>kann</two> <three>in welchem Coenzym</three> <four>gefunden werden</four>? In <one>TPP</one>. URL: https://en.wikipedia.org/wiki/Thiamine_pyrophosphate []
77
+ - <one>Welche Alkohol</one> kann in <two>Riboflavin</two> gefunden werden und <three>wieviele C Atome hat dieser Alkohol</three>? Den <one>C5-Alkohol</one> <two>Ribitol</two>. URL: https://de.wikipedia.org/wiki/Ribit []
78
+ - Wieviele <one>ATP</one> Moleküle können aus einer <two>C16 Fettsäure</two> <three>gewonnen werden</three>? <one>108 ATP</one>. []
79
+ - Die <one>Hydroxylierung von Prolin</one> <two>führt zu ...</two>? <one>4-Hydroxyprolin</one>. URL: https://de.wikipedia.org/wiki/Hydroxyprolin []
80
+ - <one>Cosubstrate</one> sind ... mit ihrem Enzym verbunden. A: transient (<two>vorübergehend</two>).
81
+ - <one>How</one> are <two>the molecules called</two> that <three>help other molecules cross a cell membrane</three>? These are the so-called <one>transport proteins</one>.
82
+ - 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 []
83
+ - Nenne <one>zwei Beispiele</one> für <two>Homopolysaccharide</two>. A: (1) <one>Cellulose</one> (2) <one>Glykogen</one>
84
+ - Beeinflussen <one>Salze</one> das <two>Löslichkeitsverhalten von Proteinen</two>? <one>Ja</one> - <two>sogar erheblich</two>. URL: https://de.wikipedia.org/wiki/Aussalzen []
85
+ - <one>Mit welchem Enzym</one> arbeitete <two>Daniel Koshland</two> als er die <three>induced fit Three</three> erstellte? Mit der <one>Hexokinase</one>. URL: https://de.wikipedia.org/wiki/Hexokinase []
86
+ - Ein <one>Hemiacetal</one>, <two>als funktionelle Gruppe</two>, besitzt <three>wieviele Sauerstoff-Atome</three>? <one>2</one>. URL: https://en.wikipedia.org/wiki/Hemiacetal []
87
+ - <one>Wie</one> können <two>GPI-verankerte Proteine</two> <three>nachgewiesen werden</three>? Mit Hilfe einer <one>Phospholipase</one>, die <two>inositolhaltige Phospholipide</two> spalten kann.
88
+ - In der Biochemie: was meinen wir mit einer <one>QAE-Gruppe</one>? <one>QAE</one> bezeichnet eine <two>Quartäre Aminoethyl-Gruppe</two>. URL: https://de.wikipedia.org/wiki/Quart%C3%A4re_Ammoniumverbindungen
89
+ - Die <one>Bindung</one> zwischen der <two>Hydroxygruppe von Glycerin</two> und einer <two>Fettsäure</two> <three>bezeichnet man als ... </three>? <one>Ester</one> / <one>Esterbindung</one>. []
90
+ - Provide another, more interesting word for the <one>Caspases</one>. A: <one>Executioner proteins</one>. URL: https://en.wikipedia.org/wiki/Caspase []
91
+ - <one>Cellulose</one> <two>besteht aus ... </two>? Einem <one>linearen Polymer aus Glucoseeinheiten</one>. URL: https://de.wikipedia.org/wiki/Cellulose []
92
+ - Was für ein <one>Shuttle-System</one> kann <two>in Mitochondrien</two> <three>gefunden werden</three>? <one>Malat-Aspartat Shuttle</one>. URL: https://de.wikipedia.org/wiki/Malat-Aspartat-Shuttle []
93
+ - <one>Nicotinamid dinucleotide</one> <two>ähnelt welchem DNA-Nukleotid</two>? <one>Adenin</one>. []
94
+ - Can <one>water</one> <two>act as a</two> <three>nucleophile</three>? <one>Yes</one>. []
95
+ - Die <one>Dinitrogenase Reduktase</one> besitzt <two>n Untereinheiten</two>? <one>2</one>. URL: https://de.wikipedia.org/wiki/Nitrogenase#Struktur_und_Eigenschaften []
96
+ - Give <one>an example for</one> <two>an almost pure cellulose</two>. A: <one>Cotton</one>. URL: https://en.wikipedia.org/wiki/Cotton
97
+ - Wie können <one>allosterisch regulierte Enzyme</one> <two>in einem Diagramm erkannt werden</two>? <one>Allosterisch regulierte Enzyme</one> zeigen eine <two>sigmoide Sättigungskurve</two>. []
98
+ - Bei der <one>ATP-Synthase</one> gibt es die <two>O-Konformation</two>, <three>O</three> für <three>Open</three>. <four>Wieso wurde dieser Name gewählt</four>? <one>O</one> bedeutet hier einfach: <two>Freisetzung von ATP</two>. []
99
+ - <one>Hämoglobin</one> zeigt eine sigmoidale Bindungskurve und Myoglobin zeigt eine ... Bindungskurve. A: <one>hyperbole Bindungskurve</one>.
100
+ - The <one>ribonucleotide reductase</one> of E. coli, but also mammals, <two>contains which metal in its center</two>? <one>Iron</one> (<two>di-iron center</two>). []
101
+ - Anderer Begriff für <one>Stärke</one>? <one>Polymerisierte Glucose</one>. URL: https://de.wikipedia.org/wiki/St%C3%A4rke []
102
+ - Bei der Krankheit <one>PKU</one>: <two>welches Enzym ist hierbei defekt</two>? Die <one>Phenylalaninhydroxylase</one>. (Mnemonic: Beide beginnen mit dem Buchstaben <two>P</two>) URL: https://de.wikipedia.org/wiki/Phenylalaninhydroxylase []
103
+ - Ursache für <one>Albinismus</one>? <one>Ausfall</one> - <two>beziehungsweise ein Mangel</two> - des <three>Enzyms</three> <four>Tyrosinase</four>. URL: https://en.wikipedia.org/wiki/Tyrosinase []
104
+ - Welche <one>drei</one> <two>Strukturproteine</two> können in <three>Bindewegebe</three> <four>vorgefunden werden</four>? (1) <one>Elastin</one> (2) <one>Kollagen</one> (3) <one>Retikulin</one>
105
+ - Wie werden die spezialisierten Enzyme für den <one>Kollagenabbau</one> genannt? Dies sind die <one>Kollagenasen</one>. URL: https://de.wikipedia.org/wiki/Kollagenasen []
106
+ - Was ist <one>das wichtigste Steroid</one> <two>in Tieren</two>? <one>Cholesterin</one>. URL: https://de.wikipedia.org/wiki/Cholesterin []
107
+ - <one>Wieviel Prozent</one> der <two>dry mass</two> einer Zelle ist mit der <three>Biosynthesis of proteins</three> beschäftigt? 1/3, also etwa <one>33%</one>. []
108
+ - <one>Enzyme</one> <two>mit fest gebundenem Metallion als Co-Faktor</two> <three>werden als ... bezeichnet</three>. A: <one>Metalloenzyme</one>. URL: https://de.wikipedia.org/wiki/Cofaktor_(Biochemie) []
109
+ - The <one>26S-Proteasom</one> contains the <two>20S core subunit</two>. <three>How many rings does this 20S core subunit have</three>? <one>4</one>. []
110
+ - Wie kann <one>künstlich der Abbau eines Proteins</one> <two>erschwert werden</two>? Durch <one>Anheften einer Acetylgruppe</one> (<two>-C=O-CH₃</two>) <one>am Aminoende</one>.
111
+ - <one>Welcher Gerinnungsfaktor</one> ist jeweils bei <two>Hämophilie B</two> und bei <two>Hämophilie A</two> <three>defekt</three>? A: (1) <one>Hämophilie A</one>: Gerinnungsfaktor Faktor <two>VIII</two> (<peru>8</peru>) (2) <one>Hämophilie B</one>: Gerinnungsfaktor Faktor <two>IX</two> (<three>9</three>)
112
+ - Nenne ein bekanntes, <one>automatisiertes Verfahren</one> zur <two>Synthese von Peptiden</two>. A: Die <one>Merrifield-Synthese</one>. URL: https://de.wikipedia.org/wiki/Merrifield-Synthese []
113
+ - Ist <one>Troponin C</one> ist <two>ein Calciumsensor</two>? <one>Ja</one>. Troponin C besitzt vier Bindungsstellen für Calcium.
114
+ - Der <one>Mensch</one> <two>verbraucht am Tag</two> wieviel <three>ATP</three>? <one>50 kg ATP</one>. []
115
+ - Name a <one>cathepsin-inhibitor</one>. A: <one>Antipain</one>. URL: https://www.ncbi.nlm.nih.gov/pubmed/24673125 []
116
+ - <one>Wo</one> im menschlichen Körper mag <two>Hydroxyprolin</two> gefunden werden? In <one>Kollagen</one>. URL: https://de.wikipedia.org/wiki/Hydroxyprolin []
117
+ - <one>Wovon</one> hängt die <two>Halbwertszeit cytoplasmatischer Proteine</two> ab? Von der Aminosäure am <one>Aminoterminus</one> des Proteins. []
118
+ - <one>Myoglobin</one> besitzt <two>wieviele Alpha-Helices</two>? <one>8</one>. URL: https://de.wikipedia.org/wiki/Myoglobin []
119
+ - <one>Warum</one> ist die <two>Mevalonsäure</two> in der Biochemie wichtig? Die Mevalonsäure ist für die <one>Biosynthese von</one> <two>Cholesterin</two> wichtig. URL: https://de.wikipedia.org/wiki/Cholesterin
120
+ - <one>Wieso</one> wird in der Biochemie, im Labor, <two>2-Mercaptoethanol</two> verwendet? Zum <one>Aufbrechen</one>/<one>Auflösen der Disulfidbrücken</one>. []
121
+ - Which <one>two bond types</one> <two>can be found in</two> an <three>ATP molecule</three>? (1) an <one>ester bond</one> (2) an <one>anhydride bond</one> []
122
+ - <one>Welchen Cofaktor</one> <two>benötigt</two> die <three>Lactat-Dehydrogenase</three>? <one>NADH</one>. URL: https://de.wikipedia.org/wiki/L-Lactatdehydrogenase []
123
+ - Are <one>ABC transporters</one> <two>membrane-bound</two>? <one>Yes</one>. URL: https://en.wikipedia.org/wiki/ABC_transporter []
124
+ - Das <one>Disaccharid</one> <two>Saccharose</two> <three>besteht aus ...</three>? A: <one>Glucose</one> und <one>Fructose</one> (<two>GluFu</two>). []
125
+ - Welche <one>drei Formen</one> kann die <two>ATP-Synthase</two> vorweisen? (1) <one>O-Form</one>: <two>O</two> für <three>Open</three> (2) <one>L-Form</one>: <two>L</two> für <three>Loose</three> (3) <one>T-Form</one>: <two>T</two> für <three>Tight</three> []
126
+ - <one>Wo</one> wurden <two>Leukotriene</two> <three>erstmals entdeckt</three>? In den <one>Leukozyten</one>. URL: https://de.wikipedia.org/wiki/Leukotriene []
127
+ - Das <one>Disaccharid</one> <two>Maltose</two> <three>besteht aus welchen Zuckern</three>? A: <one>2x Glucose</one>. URL: https://de.wikipedia.org/wiki/Maltose []
128
+ - <one>Welche Vitamine</one> sind <two>Steroide</two>? A: <one>Vitamin</one> <two>D</two>. (Merkschema: Steroi_<three>D</three>_e). []
129
+ - <one>Calcium</one> besitzt zumindest <two>zwei wichtige Rollen im menschlichen System</two>. <three>Welche zwei Rollen sind dies</three>? A: (1) <one>Intrazelluläres Signalmolekül</one> (2) <one>Knochenbildner</one> []
130
+ - Die <one>Carboanhydrase</one> nimmt <two>CO₂</two> und <two>Wasser</two> auf, und erzeugt dafür was? <one>HCO3⁻</one> und <one>H⁺</one>.
131
+ - Sind <one>Calcium-Ionen</one> <two>an der Muskelkontraktion beteiligt</two>? <one>Ja</one>. []
132
+ - Nenne <one>ein Beispiel</one> für einen <two>aktivierten Glucosedonor</two>. A: Die <one>UDP-Glucose</one>. URL: https://de.wikipedia.org/wiki/UDP-Glucose []
133
+ - <one>Output</one> der <two>G-Proteine</two>? <one>GDP</one>. URL: https://en.wikipedia.org/wiki/Guanosine_diphosphate []
134
+ - Gegeben sei ein Protein mit <one>9 Lysinresten</one> und <one>7 Argininresten</one>. <two>Was passiert wenn wir dieses Protein mit</two> <three>Trypsin</three> <two>behandeln</two>? Man erhält so höchstwahrscheinlich <one>17 Peptidfragmente</one>. []
135
+ - <one>Imidazol</one> <two>besitzt wieviele Stickstoff-Atome</two>? <one>3</one>. URL: https://en.wikipedia.org/wiki/Imidazole
136
+ - <one>Upon formation of a disaccharide</one>, <two>what exactly is lost in this process</two>? One <one>H₂O molecule</one>. []
137
+ - Zum <one>Aufbau der Cellulose</one> <two>wird was benötigt</two>, <three>als Grundsubstanz</three>? <one>Glucose</one>. URL: https://de.wikipedia.org/wiki/Cellulose []
138
+ - <one>Warum</one> können wichtige Proteine nicht <two>frei</two> <three>evolvieren</three>? A: Da <one>Proteine</one> bestimmte, <two>wichtige Aufgaben in der Zelle zu erfüllen haben</two>. []
139
+ - Gegeben ist <one>Amylopektin</one> und <one>Amylose</one>. Eines davon ist verzweigt, eines davon unverzweigt. <two>Wie merke ich mir welches was ist</two>? (<one>MNEMO</one>) Das kürzere (<two>Amylose</two>) ist frei, geradlinig und somit unverzweigt. Das längere (<three>Amylopektin</three>) hingegen ist kompliziert, länger, und somit verzweigt.
140
+ - If the <one>concentration of</one> <two>beta-hydroxybutyrate</two> <three>increases</three>, what can be concluded from this? That a <one>ketosis</one> <two>may be happening right now</two>. URL: https://en.wikipedia.org/wiki/Ketosis
141
+ - <one>Wie</one> wird der <two>organische Bestandteil der Hämgruppe</two> genannt? <one>Protoporphyrin</one>. URL: https://en.wikipedia.org/wiki/Protoporphyrin_IX []
142
+ - <one>Kupfer</one> <two>ist Bestandteil des</two> <three>Häm...</three>? <one>Hämocyanin</one>. URL: https://de.wikipedia.org/wiki/H%C3%A4mocyanin []
143
+ - Anderer Begriff für den <one>Verbrauch von ATP</one>? <one>ATP-Hydrolyse</one>. URL: https://en.wikipedia.org/wiki/ATP_hydrolysis []
144
+ - Welchen <one>Cofaktor</one> benötigt die <two>Alkohol-Dehydrogenase</two>? <one>NAD⁺</one>. URL: https://de.wikipedia.org/wiki/Alkoholdehydrogenase []
145
+ - <one>Absorbieren Proteine</one> im Bereich des <two>sichtbaren Lichts</two> (<three>von 400 bis 800 nm</three>)? <one>Nein</one>. []
146
+ - Die <one>ATPase</one> besitzt <two>drei verschiedene Konformationen</two>. <three>Wie geht die zyklische Reihenfolge hierzu</three>? <one>O → L → T</one>. []
147
+ - Die Ausgangsverbindung der <one>Flavine</one> ist ... ? <one>Riboflavin</one>. (Mnemonic: Riboflavin enthält das Wort <two>flavin</two>.) URL: https://de.wikipedia.org/wiki/Riboflavin []
148
+ - Nenne ein Beispiel für ein <one>Phosphoprotein</one>. A: <one>Kappa-Casein</one>. URL: https://en.wikipedia.org/wiki/K-casein []
149
+ - Was ist <one>das größte, bekannte Protein</one> und <two>wieviele Aminosäuren besitzt es</two>? <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 []
150
+ - <one>Pyridoxalphosphat</one> ist <two>die aktive Form welchen Vitamins</two>? <one>Vitamin B6</one>. URL: https://en.wikipedia.org/wiki/Vitamin_B6 []
151
+ - Was findet man vor allem im <one>braunen Fettgewebe</one> vor allem (<two>zellulär betrachtet</two>)? Viele <one>Mitochondrien</one>. []
152
+ - <one>Inosin</one> <two>entsteht aus ... </two>? <one>Hypoxanthin</one>. URL: https://de.wikipedia.org/wiki/Hypoxanthin []
153
+ - Nenne ein <one>Proteoglykan</one>, das mit dem Buchstaben <two>H</two> beginnt. A: <one>Heparin</one> - <two>ein Vielfachzucker</two>. URL: https://de.wikipedia.org/wiki/Heparin []
154
+ - Was war das erste <one>Aminoglykosid-Antibiotikum</one> das im Jahre <two>1944</two> <three>entdeckt wurde</three>? <one>Streptomycin</one>. URL: https://en.wikipedia.org/wiki/Streptomycin []
155
+ - Die <one>Eikosanoide</one> <two>leiten sich von welcher Säure ab</two>? <one>Eikosanoide</one> <two>leiten sich von der</two> <three>Arachidonsäure</three> ab. URL: https://de.wikipedia.org/wiki/Arachidons%C3%A4ure []
156
+ - 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 []
157
+ - Spielen <one>Ketonkörper</one> <two>beim diabetischen Koma</two> <three>eine wichtige Rolle</three>? <one>Ja</one>. URL: https://de.wikipedia.org/wiki/Ketok%C3%B6rper []
158
+ - Welche <one>Enzyme</one> erzeugen aus <two>GTP</two> das <three>cGMP</three>? Die <one>Guanylatcyclasen</one>, auch <one>Guanylylcyclasen</one> genannt, unter Abspaltung eines Phosphatrestes. URL: https://de.wikipedia.org/wiki/Guanylylcyclasen
159
+ - Wie heißen die <one>Salze der Harnsäure</one>? Die <one>Salze der Harnsäure</one> sind die <two>Urate</two>. URL: https://flexikon.doccheck.com/de/Urat []
160
+ - Give an example for a <one>subproteome</one>. A: All <one>proteins</one> that can be found, for example, in a <two>lysosome</two>. URL: https://link.springer.com/referenceworkentry/10.1007%2F3-540-29623-9_8833
161
+ - <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 []
162
+ - <one>Wie</one> sind <two>die monomeren Bausteine in</two> <three>Cellulose</three> miteinander <four>verknüpft</four>? <one>Beta-1,4-glykosidisch</one>. URL: https://en.wikipedia.org/wiki/Cellulose []
163
+ - <one>Mercaptoethanol</one> besitzt <two>wieviele C Atome</two>? <one>2</one>. URL: https://en.wikipedia.org/wiki/2-Mercaptoethanol []
164
+ - Kommen <one>Proteoglykane</one> <two>in der extrazellulären Matrix</two> vor? <one>Ja</one>. URL: https://de.wikipedia.org/wiki/Proteoglykane []
165
+ - Can <one>ABC transporters</one> be found <two>in fungi</two>? <one>Yes</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2752038/ []
166
+ - Nenne <one>ein konkretes Beispiel</one> für eine <two>Hämoglobinopathie</two>. A: Die <one>Sichelzellenanämie</one>. URL: https://de.wikipedia.org/wiki/Sichelzellenan%C3%A4mie []
167
+ - <one>H-Caldesmon</one> <two>ist ein sehr flexibles Protein</two> das <three>nur in glatten Muskelzellen vorkommt</three>. <four>Wie lange, in n nm, ist dieses Protein</four>? Etwa <one>75 nm</one> lang.
168
+ - <one>Pyruvat</one> kann in <one>Lactat</one> konvertiert werden über das Enzym <two>Lactat-Dehydrogenase</two>. <three>Welches Molekül wird hier noch gebraucht</three>? <one>NADH</one>. URL: https://de.wikipedia.org/wiki/L-Lactatdehydrogenase []
169
+ - <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>). []
170
+ - <one>Womit</one> kann <two>ein Enzym</two> <three>gesättigt</three> werden? Mit <one>seinem Substrat</one>. []
171
+ - <one>Verträglichkeitsgrenze von Histamin</one> <two>für den Menschen</two>, <three>in n mg</three>? <one>10 mg</one> - also <two>ziemlich wenig</two>. URL: https://de.wikipedia.org/wiki/Histamin []
172
+ - Nenne jeweils <one>ein Beispiel für</one> eine <two>Aldohexose</two> und eine <two>Ketohexose</two>. A: (1) Die <one>Glucose</one> ist eine <two>Aldohexose</two>. (2) Die <one>Fruktose</one> ist eine <two>Ketohexose</two>. []
173
+ - <one>Woher</one> kommt die <two>Energie</two> für den <three>Transport von Proteinen in den Zellkern</three>? Aus <one>GTP</one>. []
174
+ - Wie ist <one>Pyridoxal-5-phosphat</one> (<two>PLP</two>) <three>mit dem Derivat von Pyridoxin</three> (Vitamin B6) strukturell verbunden? Über eine <one>Schiffsche Base</one> (<one>Imin</one>), kovalent. []
175
+ - Die <one>Cholesterinbiosythese</one> <two>beim Menschen</two> <three>beginnt wo im Körper</three>? In der <one>Leber</one>. URL: https://de.wikipedia.org/wiki/Cholesterinbiosynthese
176
+ - Gegeben sei ein <one>ATP Molekül</one>: was kann man zu <two>Alpha</two> und <two>Beta Phosphat</two> in diesem ATP Molkülek, in-vivo, festhalten? <one>In-vivo</one> liegen <two>ATP Moleküle</two> immer <one>mit Mg²⁺ cheliert</one> vor (<three>chelated</three>).
177
+ - Die Vorläufersubstanz von <one>Anthranilat</one> <two>in der Biosynthese von Tryptophan</two> ist ...? <one>Chorismat</one>. URL: https://de.wikipedia.org/wiki/Chorismins%C3%A4ure []
178
+ - Nenne <one>ein Protein</one>, das <two>als</two> <three>Calcium-Sensor</three> <two>fungieren kann</two>. A: <one>Calmodulin</one>. URL: https://de.wikipedia.org/wiki/Calmodulin []
179
+ - <one>Einfache Vergiftung</one> von <two>freiem Häm</two> durch ...? Durch <one>CO</one> (<two>Kohlenmonoxid</two>). URL: https://de.wikipedia.org/wiki/Kohlenmonoxid []
180
+ - Andere Bezeichnung für <one>grobe Trennung</one> <two>von Proteinen</two>? <one>Fraktionierung</one>. URL: https://de.wikipedia.org/wiki/Ammoniumsulfat-F%C3%A4llung []
181
+ - <one>CoA</one> <two>contains which very important residue</two>? <two>CoA</two> contains a <one>pantothenic acid residue</one>. URL: https://en.wikipedia.org/wiki/Coenzyme_A []
182
+ - <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 []
183
+ - <one>Calmodulin</one> <two>kann was genau binden</two>? <one>4x Ca²⁺</one>. URL: https://de.wikipedia.org/wiki/Calmodulin []
184
+ - <one>Welchen Nachteil</one> hat <two>Homoserin</two> beim <three>Einbau in Proteine</three>? A: <one>Homoserin</one> kann spontan zu einem <two>Fünferring</two> zu reagieren. URL: https://de.wikipedia.org/wiki/Homoserin
185
+ - Welche <one>chirale Konfiguration</one> besitzen die <two>Zucker</two>? Es sind allesamt <one>D-Zucker</one>, im Gegensatz zu den <two>L-Aminosäuren</two> (Yin/Yang).
186
+ - <one>Caldesmon</one> <two>in der glatten Muskulatur</two> ist relativ analog zu welchem anderen Protein? <one>Troponin C</one>.
187
+ - In der Biochemie: was ist der <one>RQ</one> und was beschreibt er? <one>RQ</one> ist der <two>respiratorische Quotient</two>. Er beschreibt <three>das Verhältnis</three> von <four>produziertem CO₂</four> zu <four>verbrauchtem Sauerstoff</four>.
188
+ - Was bedeutet <one>Microheterogeneity</one> in der Biochemie? <one>Nicht alle Glykoproteine sind modifiziert</one>, da die Enzyme hierzu nur limitiert vorhanden sind.
189
+ - 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.
190
+ - Give an example for a <one>Flavoprotein</one>. A: <one>Succinate dehydrogenase</one>. URL: https://en.wikipedia.org/wiki/Succinate_dehydrogenase
191
+ - In general: what is meant with the term <one>proteoglycans</one>? These are <mediumseagreen>long carbohydrate molecules</mediumseagreen> attached to <one>short proteins</one>.
192
+ - What does a <one>scavenger receptor</one> recognize? A scavenger receptor recognizes modified <one>low-density lipoprotein</one> (<royalblue>LDL</royalblue>).
193
+ - <one>Wo</one> finden wir eine <two>katalytische Triade</two> 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>.
194
+ - <one>Wo</one> finden <two>künstliche Ampholytgemische</two> in der Biochemie Anwendung? Bei der <one>isoelektrischen Fokussierung</one>.
195
+ - Was ist <one>das Endprodukt des Cholin-Abbaus</one>? Die Aminosäure <one>Glycin</one>.
196
+ - 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>.
197
+ - Was meinen wir mit einer <one>glykosidischen Bindung</one>? Dies ist <one>die Verknüpfung zweier Zucker, unter Wasserabspaltung</one>.
198
+ - Mnemonic um <one>Acetyl-CoA</one> zu zeichnen? Acetylgruppe + S + CoA Anteil.
199
+ - Was besagt das <one>Levinthalsche Paradoxon</one>? <two>Proteine</two> falten sich über einen <one>teilweise vordefinierten Faltungsweg</one>. URL: https://en.wikipedia.org/wiki/Levinthal's_paradox
200
+ - 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.
201
+ - Formel einer <one>imino group</one>? <one>=NH-</one> (genauer: <two>C=NH</two>) URL: https://www.dictionary.com/browse/imino-group
202
+ - 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: https://www.spektrum.de/lexikon/biologie/phosphorylgruppe/51288
203
+ - Was bedeutet <one>Hydrolyse</one> wortwörtlich? <one>Wasserspaltung</one>: also <two>die Spaltung einer (bio)chemischen Verbindung durch Reaktion mit Wasser</two>.
204
+ - Was ist eine <one>katalytische Triade</one> in der Biochemie? Dies ist eine spezielle Anordnung von <one>drei Aminosäuren</one>, die im aktiven Zentrum von Enzymen zu finden ist.
205
+ - 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>.
206
+ - Definiere den Begriff <one>Hydrolyse</one>. A: <two>Aufbrechen einer Bindung</two> unter <one>Addition eines Wassermoleküls</one>.
207
+ - 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.
208
+ - 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.
209
+ - 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>.
210
+ - Warum wird die <one>glatte Muskulatur</one> so genannt? Unter dem Elektronenmikroskop erscheint diese Muskulatur „glatt“: es fehlt das charakteristische Sarcomerstreifenmuster.
211
+ - Eine <one>Skelettmuskelfaser</one> <two>hat einen Durchmesser von etwa ... </two>? Etwa <one>50 mm</one>.
212
+ - Aus biochemischer Sicht benötigt die Photosynthese welche drei Voraussetzungen" für ihren Betrieb? (1) CO2 (2) H2O (3) Licht
213
+ - Erkläre: <one>die Funktion des Protonengradienten</one> ist die ATP-Bildung in der ATP-Synthase. A: <one>Nein</one>. <two>Der Protonengradient führt lediglich zu der Freisetzung von ATP von der Synthase</two>.
214
+ - Was sind eigentlich <one>Übergangszustandsanaloga</one>? Hierbei handelt es sich um <one>Enzyminhibitoren</one>.
215
+ - <one>Molecular weight of Titin</one>, <two>in Dalton</two>? About <one>3.000.000 Dalton</one> (<two>3 million Dalton</two>).
216
+ - Welche Variante des Kollagens kann quervernetzt werden? Nur <one>Tropokollagen</one>.
217
+ - <one>Wo</one> spielt Caldesmon eine Rolle? Dieses Protein übernimmt eine regulatorische Rolle bei der Kontraktion der glatten Muskulatur.
218
+ - Der <one>Na⁺-Glucose-Transporter</one> <two>verschiebt mit jedem Glucosemolekül</two> <three>wieviele</three> <four>Na⁺-Ionen</four> in die Darmepithelzelle? <one>Zwei</one>.
219
+ - Why the name <one>heat shock proteins</one>? Because <one>their rate of synthesis</one> <two>increases</two> <one>at elevated temperature</one>.
220
+ - Gibt es <one>cGMP</one>? <one>Ja</one> - dies ist <two>zyklisches Guanosinmonophoshat</two>.
221
+ - Das Molekül <one>Acetyl-CoA</one> <two>ähnelt welchem Nukleotid am meisten</two>? Dem <one>Adenin</one>. URL: https://de.wikipedia.org/wiki/Coenzym_A#Acetyl-CoA
222
+ - <one>Wie entsteht</one> <two>S-Adenosylmethionin</two> - also die beiden Input-Moleküle nennen sowie das relevante Enzym? Das beteiligte Enzym ist die <one>Methionine Adenosyltransferase</one>. Sie katalysiert die Reaktion zwischen <two>ATP</two> und <two>Methionin</two>. URL: https://en.wikipedia.org/wiki/S-adenosylmethionine_synthetase_enzyme
223
+ - Die <one>Liganden</one> für <two>Calnexin</two> und <two>Calreticulin</two> sind ...? <one>Glykoproteine</one> die Glc1Man9GlcNAc2 N-linked glycans haben.
224
+ - Nenne <one>drei verschiedene</one> <two>ATPase Typen</two>. A: (1) <one>F-Typ-ATPasen</one> (2) <one>P-Typ-ATPasen</one> (3) <one>V-Typ-ATPasen</one>
225
+ - <one>Komplex V</one> ist <two>die ATP-Synthase</two>. <three>Wie aber heißt Komplex IV</three>? <one>Cytochrom-Oxidase</one>. URL: https://de.wikipedia.org/wiki/Cytochrom-c-Oxidase
226
+ - <one>Womit</one> beginnt die <two>enzymatische Katalyse</two>? A: Mit der <one>Substratbindung</one>. URL: https://edoc.hu-berlin.de/handle/18452/18397?show=full
227
+ - Nenne <one>ein Beispiel</one> für eine <two>elektrozyklische Reaktion</two> in der Biochemie. A: Der <one>Prephenatweg</one>, ausgehend von Chorismat, zur Synthese von Phenylalanin und Tyrosin.
228
+ - In der Biochemie: <one>was gilt</one> bei einem <two>Gleichgewicht</two>? Die <one>realen Konzentrationen</one> <two>ändern sich nicht mehr</two>.
229
+ - Nenne <one>drei Komponenten</one> eines <two>Phosphoglycerids</two>. A: (1) <one>Cholin</one> (2) <one>Phosphat</one> (3) <one>Glycerol</one>
230
+ - The enzyme <one>PEP Carboxykinase</one> creates <two>CO₂</two>, <two>GDP</two> (from GTP) and ... <three>which other substance</three>? <one>Phosphoenolpyruvate</one>.
231
+ - Name <one>four categories</one> <two>to classify proteins into functional components</two>. A: (1) <one>enzymes</one> (2) <one>structural proteins</one> (3) <one>regulatory proteins</one> (4) transport proteins
232
+ - Wenn wir zwei <one>Farnesyl-pyrophosphate</one> Kopf-an-Kopf anlagern, <two>entsteht welche Substanz</two>? <one>Squalen</one>. (Mnemonic: <two>zwei Farne rund um die Qualle</two>)
233
+ - <one>Wie wirken</one> die <two>Makrolides</two>? Makrolide binden an eine Region der <one>23S RNA</one> in der <two>grossen ribosomalen Unterheinheit</two> und blockieren so den <three>exit Tunnel</three>.
234
+ - Biochemisch gesehen: <one>wie wirken</one> <two>Herzglykoside</two>? <one>Herzglykoside</one> <two>hemmen</two> 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.
235
+ - Nenne <one>zwei Beispiele</one> für ein <two>gemischtes Anhydrid</two> aus der Biochemie. A: (1) <one>Carbonsäure</one> (2) <one>Phosphosäure</one>
236
+ - Gegeben sei <one>Cytosin</one>. Nun applizieren wir <two>nitrous acid</two>. Das Resultat davon ist ... ? Es entsteht <one>Uracil</one>. URL: https://en.wikipedia.org/wiki/Nitrous_acid
237
+ - Wofür steht die Abkürzung <one>NOESY</one> in der Proteinbiochemie? <one>Nuclear Overhauser Spectroscopy</one>. URL: https://en.wikipedia.org/wiki/Nuclear_Overhauser_effect
238
+ - When we call a protein <one>'promiscuous'</one>, <two>what is meant with that</two>? That <one>this protein has associations and interactions with many different factors</one>, <two>typically other proteins or RNAs</two>.
239
+ - <one>Protein specificity</one> <two>depends upon ... </two>? <one>protein structure</one>.
240
+ - <one>Who</one> is <two>the most important cellular regulator of</two> <three>AMP</three>? <one>AMPK</one>: <two>AMP-activated protein kinase</two>.
241
+ - <one>Wie</one> könnte man, auf natürliche Art und Weise, <two>global</two> den Proteinabbau erschweren? Durch <one>anaerobe Bedingungen</one> - also <two>durch Entzug von ATP</two>.
242
+ - In der Biochemie wird <one>DTT</one> (<two>Dithiothreitol</two>) verwendet, unter einem anderen Namen. <three>Welchem</three>? <one>Clelands-Reagenz</one>. URL: https://en.wikipedia.org/wiki/Dithiothreitol
243
+ - <one>Hemicellulose</one> <two>ist ein Polymer aus</two>? (1) <one>Pentosen</one> (2) <one>Hexosen</one>
244
+ - <one>Wie lang</one> (von-bis) sind die <one>PEST-Sequenzen</one>? <one>PEST-Sequenzen</one> sind <two>10-60 Aminosäuren</two> lang.
245
+ - Nenne jeweils die langen Namen von Vitamin <one>B1</one>, <one>B2</one>, <one>B6</one> und <one>B12</one>. A: (1) <one>B1</one> <two>Thiamin</two> (2) B2 Riboflavin (3) B6 Pyridoxin (4) <one>B12</one> <two>Cobolamin</two>
246
+ - Nenne <one>die zwei allgemeinen Gruppen</one> an <two>Exopeptidasen</two>. A: (1) <one>Aminopeptidasen</one> (2) <one>Carboxypeptidasen</one>
247
+ - Nenne ein <one>Elektronen-Carrier Molekül</one>. A: <one>NAD⁺</one>. URL: https://en.wikipedia.org/wiki/Nicotinamide_adenine_dinucleotide
248
+ - In einem <one>Phosphoanhyrid</one> finden wir welche Atome (mit genauer Summenformel)? <one>P₂O₅</one>.
249
+ - <one>Proteoglycans</one> are categorized by which <two>two attributes</two>? (1) their <one>relative size</one> (for instance: <two>large</two> versus <two>small</two>) (2) the nature of their glycosaminoglycan chains
250
+ - Enzymtyp <one>Tyrosinase</one>. <two>Welche biologische Rolle spielt dieses Enzym</two>? 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 der <three>Melanin Synthese</three>.
251
+ - 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 <one>monomeric units</one> bestehen. Ein Beispiel wäre die <two>Hyaluronsäure</two>. URL: https://de.wikipedia.org/wiki/Hyalurons%C3%A4ure
252
+ - Aside from the <one>Omega-Loop</one>, name <two>three secondary structures of proteins</two>. A: (1) <one>Alpha Helix</one> (2) <one>Beta Sheets</one> (3) <one>Beta Turns</one>
253
+ - Nenne die drei großen Klassen von <one>ligandengesteuerten Zelloberflächenrezeptoren</one>. A: (1) <one>Transmittergesteuerte Ionenkanäle</one> (2) <one>G-Protein-gekoppelte Rezeptoren</one> (3) <one>Enzymgekoppelte Rezeptoren</one>
254
+ - <one>Where</one> does the <two>malate-aspartate shuttle</two> happen? It is a system for translocating electrons across <one>the semipermeable inner membrane of the mitochondrion</one>.
255
+ - Wie nennen wir die <one>zyklisierte Form der Glucose</one>? <one>Glucopyranose</one>. URL: https://pubchem.ncbi.nlm.nih.gov/compound/D-Glucose
256
+ - <one>Polysaccharide</one> können manchmal auch als <two>Proteoglykane</two> 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.
257
+ - <one>Phosphopantetheine</one> hat an einem Ende eine <three>Phosphorgruppe</three>, und am anderen Ende eine ... ? <one>Sulfhydrylgruppe</one> (<two>SH</two>).
258
+ - Was ist eine <one>Carbamoylgruppe</one>? A: Dies ist die Atomgruppierung <one>-CO-NH₂</one>. URL: https://www.rsc.org/publishing/journals/prospect/ontology.asp?id=CHEBI:23004&MSID=b808625g
259
+ - Wie nennen wir die aktivierte Form von <one>Ribosephosphat</one>? <one>PRPP</one>: <two>Phosphoribosyl pyrosphosphate</two>
260
+ - Input, Output der <one>Pyrophosphatase</one>? (1) <one>Input</one>: <two>Pyrophosphate P-P</two> (2) <one>Output</one>: <two>2x Phosphate</two>
261
+ - Was ist <one>Carbamoylierung</one>? <one>Carbamoylierung</one> bezeichnet das Anheften einer <two>-CO-NH₂</two> Gruppe. URL: https://de.wikipedia.org/wiki/Carbamoylgruppe
262
+ - Nenne <one>vier Protease-Typen</one>. A: (1) <one>Serinproteasen</one> (2) <one>Zinkproteasen</one> (3) <one>Thiolproteasen</one> (4) <one>Aspartatproteasen</one>
263
+ - Nenne ein Strukturisomer zu <one>Dihydroxyaceton</one>. A: <one>D-Glycerinaldehyd</one>, eine <two>Aldose</two>, ist ein Strukturisomer.
264
+ - <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
265
+ - Name a peculiar feature of the <one>D amino acids</one> in bacteria. A: They are <one>enzymatically produced</one> <two>rather</two> than by <one>ribosomal synthesis</one>.
266
+ - Die <one>Glyzerinkomponente der Neutralfette</one> stammen aus ... ? <one>Glycerinaldehyd-3-Phosphat</one>. URL: https://de.wikipedia.org/wiki/Glycerinaldehyd-3-phosphat
267
+ - What is <one>Geranylgeranylation</one>? <one>Geranylgeranylation</one> is <two>a post-translational modification of proteins</two> 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
268
+ - In der Proteinbiochemie: nenne ein konkretes Beispiel für eine <one>kovalente Katalyse</one>. A: Die <one>Decarboxylierung von Acetoacetat</one>.
269
+ - Formel von <one>Thiosulfat</one>? A: <one>S₂O₃</one><two>²⁻</two> URL: https://de.wikipedia.org/wiki/Thiosulfate
270
+ - Nenne <one>drei Proteasen</one>, die mit den Buchstaben <two>A</two>, <two>C</two> und <two>M</two> beginnen. A: (1) <one>Aspartatproteasen</one> (2) <one>Cysteinproteasen</one> (3) <one>Metalloproteasen</one>
271
+ - 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.
272
+ - Was ist eine <one>Desaminierung</one>? Die <one>chemische Abspaltung einer Aminogruppe</one>, als Ammonium-Ion (<two>NH₄⁺</two>) oder Ammoniak. URL: https://de.wikipedia.org/wiki/Desaminierung
273
+ - Welches <one>Metall</one> enthält die <two>Nitrat-Reduktase</two>? <one>Molybdän</one>. URL: https://en.wikipedia.org/wiki/Nitrate_reductase_(NADH)
274
+ - Anderer Begriff für <one>G-Proteins</one>? <one>7 TM Receptors</one>. URL: https://en.wikipedia.org/wiki/G_protein-coupled_receptor
275
+ - Anderer Name für <one>Phytat</one>? <one>Inositol Hexaphosphate</one>.
276
+ - <one>Citrullin</one> kondensiert mit ... zu <two>Argininosuccinat</two>, im <three>Harnstoffzyklus</three>? Mit <one>Aspartat</one>. URL: https://de.wikipedia.org/wiki/Harnstoffzyklus#Kaskade_im_Cytosol
277
+ - Anderer Begriff für <one>Methotrexat</one>? <one>Amethopterin</one>. URL: https://de.wikipedia.org/wiki/Methotrexat
278
+ - Warum der Name <one>Polyketid</one>? Da <one>in einem Polyketid</one> <two>jedes 2. Kohlenstoffatom</two> eine <three>Ketogruppe</three> trägt. URL: https://de.wikipedia.org/wiki/Polyketide
279
+ - 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>.
280
+ - <one>cis-Retinal</one> ist wie an <two>Rhodopsin</two> gebunden? Über eine <one>-C=NH Bindung</one>. URL: https://de.wikipedia.org/wiki/Rhodopsin
281
+ - 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 <three>may act as a signal for protein degradation</three>. URL: https://en.wikipedia.org/wiki/PEST_sequence
282
+ - <one>Biotin</one> kann <two>CO₂</two> akzeptieren, benötigt hierzu jedoch welchen Cofaktor? <one>Acetyl-CoA</one>. URL: https://de.wikipedia.org/wiki/Biotin
283
+ - Was ist das <one>Grundgerüst</one> des späteren Pyrimidins? <one>Carbamoylaspartat</one>. URL: https://de.wikipedia.org/wiki/Pyrimidine#Biosynthese
284
+ - Die <one>Ascorbinsäure</one> besitzt <two>wieviele C Atome</two>? <one>6</one>. URL: https://de.wikipedia.org/wiki/Ascorbins%C3%A4ure
285
+ - Sind <one>Radikale</one> in der Biologie häufig? Nein, sie sind <two>sehr selten</two>, da sie <one>sofort aufgefangen werden</one>.
286
+ - Wieviele <one>OH Gruppen</one> hat <two>Neopterin</two>? <one>3</one>. URL: https://de.wikipedia.org/wiki/Neopterin
287
+ - 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) URL: https://de.wikipedia.org/wiki/Amine#Terti%C3%A4re_Amine
288
+ - 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
289
+ - 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>grooves</two> getrennt sind.
290
+ - <two>Wann</two> wurde <one>Neopterin</one> erstmals (aus dem Harn) isoliert? <one>1889</one>. URL: https://de.wikipedia.org/wiki/Neopterin
291
+ - Was ist die <one>prosthetische Gruppe der Transketolase</one>? <one>Thiaminpyrophosphat</one> (<one>Thiamin-pyro-phosphat</one>; <two>TPP</two>). URL: https://de.wikipedia.org/wiki/Transketolase
292
+ - What are <one>Carboxypeptidases</one>? These are <one>Exopeptidases</one> that cleave only from the <two>C-terminus</two>.
293
+ - 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
294
+ - Wie nennen wir die <one>Ringform der Ribose</one>? <one>Beta-Furanose</one>. URL: https://en.wikipedia.org/wiki/Furanose
295
+ - Enzymtyp <one>MBD4</one>? <one>MBD4</one> ist eine <two>DNA-Glycosylase</two>. URL: https://en.wikipedia.org/wiki/MBD4
296
+ - <two>Wann</two> 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
297
+ - Wie sieht <one>Guanidinium</one> aus? A: <one>1x C</one> und <one>3x NH₂</one>, die an dieses C-Atom gebunden sind. URL: https://i.imgur.com/ozV24mT.jpg
298
+ - What drives the <one>synthesis of ATP</one>? The <two>energy stored</two> in the <one>proton gradient</one>. URL: https://www.nature.com/scitable/content/ne0000/ne0000/ne0000/ne0000/14706672/U3CP4-2_RespiratoryChainCo_ksm_1_2.jpg
299
+ - Die Strukturformel von <one>Sulfonamid</one> ist ... ? A: <one>-SO₂-NH-R-</one> URL: https://de.wikipedia.org/wiki/Sulfonamide
300
+ - <two>Wo</two> 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>.
301
+ - 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
302
+ - 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>.
303
+ - Give another name for <one>protein topologies</one>. A: <one>Arrangements of Proteins</one>.
304
+ - 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
305
+ - Aus Sicht der Biochemie: warum ist <one>Blei</one> giftig? <one>Blei</one> - wie <one>auch andere Schwermetalle</one> - attackiert die <mediumseagreen>stabilisierenden Disulfidbrücken der Proteine</mediumseagreen>. Dies erklärt die Giftigkeit von Blei.
306
+ - <one>Where</one> could <two>glucuronic acid</two> be found, for instance? In <one>urine</one>. URL: https://en.wikipedia.org/wiki/Glucuronic_acid
307
+ - Was macht <one>Plasmin</one>? <one>Plasmin</one> baut <two>Fibrin</two> ab. URL: https://de.wikipedia.org/wiki/Plasmin
308
+ - 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.
309
+ - 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
310
+ - 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
311
+ - Nenne ein Beispiel für ein <one>kondensiertes Ringsystem</one> in der Zelle. A: <one>Purin-Nukleotide</one>.
312
+ - <one>AMP</one> + <two>AMP-Desaminase</two> ergibt ... ? <one>IMP</one>. URL: https://de.wikipedia.org/wiki/Inosinmonophosphat
313
+ - If <one>residue T172</one> of the AMPK Alpha-subunit is <three>phosphorylated</three>, what happens to <two>AMPK</two>? AMPK will <one>become activated</one>. URL: https://en.wikipedia.org/wiki/AMP-activated_protein_kinase
314
+ - Welcher <one>chemische Bindungstyp</one> ist bei <two>Glucose</two> zu finden? Die <one>kovalente Bindung</one>. URL: https://de.wikipedia.org/wiki/Kovalente_Bindung
315
+ - 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
316
+ - Nenne ein <one>Derivat von Shikimat</one>. A: <one>Chorismat</one>. URL: https://en.wikipedia.org/wiki/Chorismic_acid
317
+ - What is the <one>smallest carbohydrate</one>? <one>Glyceraldehyde</one> (<two>C₃H₆O₃</two>). URL: https://en.wikipedia.org/wiki/Glyceraldehyde
318
+ - Nenne eine wichtige Vorläufersubstanz zu <one>Anthranilate</one>. A: <one>Chorismate</one>. URL: https://en.wikipedia.org/wiki/Chorismic_acid
319
+ - Nenne eine <one>Speicherform des Phosphats</one>. A: <one>Phytat</one>. URL: https://de.wikipedia.org/wiki/Phytins%C3%A4ure
320
+ - Andere Bezeichung für <one>Lecithin</one>? <one>Phosphatidyl</one><two>c</two><one>holin</one>. URL: https://en.wikipedia.org/wiki/Lecithin
321
+ - Input + Output der <one>Aspartase</one>? (1) <one>Aspartat</one> (2) <one>Fumarat</one>
322
+ - Nenne <one>drei Beispiele verschiedener Serinproteasen</one> (ausgenommen <two>Chymotrypsin</two>). A: (1) <one>Elastase</one> (2) <one>Subtilisin</one> (3) <one>Trypsin</one>
323
+ - Andere Bezeichnung für die <one>Lipolyse</one>? <one>Fettabbau</one>. URL: https://de.wikipedia.org/wiki/Lipolyse
324
+ - <two>Wo</two> findet (intrazellulär) die <one>Glykosylierung der Proteine</one> statt? (1) Im <one>Golgi-Komplex</one> (2) Im <one>Lumen des endoplasmatischen Retikulums</one>
325
+ - <one>Alkohol</one> + <one>Carbonsäure</one> ergibt? Einen <one>Ester</one>. URL: https://de.wikipedia.org/wiki/Ester
326
+ - Name one inhibitor of <one>TP synthases</one>. A: <one>Cyanides</one>. URL: https://en.wikipedia.org/wiki/Cyanide
327
+ - Name one of the most <one>famous polysaccharides for animals</one>. A: <one>Amylose</one>. URL: https://en.wikipedia.org/wiki/Amylose
328
+ - Was findet man bei <one>Kollagenketten</one> innen? <one>Glycin</one>.
329
+ - 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
330
+ - Wie nennen wir <one>biochemisch aktiviertes Isopren</one>? <two>IPP</two>: <one>Isopentenyl-Pyrophosphat</one>. URL: https://en.wikipedia.org/wiki/Isopentenyl_pyrophosphate
331
+ - Andere Bezeichnung für ein <one>Lösungsmittel</one>? <one>Solvens</one>. URL: https://de.wikipedia.org/wiki/L%C3%B6sungsmittel
332
+ - 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
333
+ - <one>Phototropismus</one> wird, intern, woduch vermittelt? Durch das <one>Cryptochrom-System</one>. URL: https://en.wikipedia.org/wiki/Cryptochrome
334
+ - <one>Wieviele Domänen</one> besitzt die <two>NAD-Dehydrogenase</two>? Nenne die langen Namen. A: <one>Zwei Domänen</one>. Diese sind die <two>Dinucleotide binding domain</two> sowie die <two>Substrate binding domain</two>, dazwischen ist eine hinge Domäne.
335
+ - <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
336
+ - Give a specific example for an <one>intein</one>. A: The <one>RecA protein</one>. URL: https://en.wikipedia.org/wiki/RecA
337
+ - Übertragen <one>Lichtsammelkomplexe</one> Elektronen von Antennenpigmenten auf das Reaktionszentrum bei der Photosynthese? <one>Nein</one> - <two>nur Energie</two> <three>wird weitergegeben</three>.
338
+ - Beim <one>splicing</one> gibt es ein Adenosin als <three>Verzweigungsstelle</three>. <two>Wo</two> liegt diese Verzweigungsstelle in etwa? <two>20-40 Nukleotide stromaufwärts</two> der <one>3' Spleißstelle</one>.
339
+ - <one>Keratin</one> and <one>Collagen</one> have different <two>handedness</two>. <three>Name them</three>. 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.
340
+ - Nenne <one>zwei</one> <two>Proteingruppen</two>, die häufig <three>Oligosaccharidstrukturen</three> auf der Oberfläche aufweisen. A: (1) <one>Membranproteine</one> (2) <one>sekretorische Proteine</one>
341
+ - In der Biochemie: was ist die <one>Kinetik</one>? Die <one>Kinetik</one> charakterisiert die <two>Geschwindigkeit einer Reaktion</two>.
342
+ - Nenne <one>drei Serinproteasen</one> und <two>gib weiters an wo genau diese spalten</two>. A: (1) <one>Chymotrypsin</one>: spaltet nach <two>grossen, hydrophoben Resten</two> (2) <one>Elastase</one>: spaltet nach <two>kleinen, neutralen Resten</two> (3) <one>Trypsin</one>: spaltet nach <two>positiven Resten</two>
343
+ - <one>Wieso</one> benötigen <two>tierische Zellen</two> die <three>Dihydrofolat-Reduktase</three>? Um den Cofaktor <one>Folsäure</one> zu synthetisieren. URL: https://de.wikipedia.org/wiki/Fols%C3%A4ure
344
+ - Is <one>mitochondrial ATP synthesis</one> <two>an independent process</two>? No, not at all! It <one>requires a coupled electron flow through the respiratory chain</one>.
345
+ - <one>Hemicellulose</one> <two>ist ein Polysaccharid</two>. <three>Nenne mindestens drei verschiedene Saccharide die man darin finden kann</three>. A: <<one>XAG</one>> <two>Xylose</two>, <two>Arabinose</two>, <two>Galactose</two>.
346
+ - Nenne <one>vier Enzyme</one> die wichtig sind für den <two>Chitinabbau</two>. A: (1) <one>Endo-Chitinase</one> (2) <one>Exo-Chitinase</one> (3) <one>Chitobiase</one> (4) <one>Deacetylase</one>
347
+ - <one>Wie</one> können wir beweisen das der <two>F1 Anteil der ATP Synthase</two> katalytisch aktiv ist? Wenn wir den F1 Anteil isolieren, dann besitzen dessen Untereinheiten weiterhin eine <one>ATPase-Aktivität</one>.
348
+ - Was ist <one>Gs</one> und <one>Gi</one> in der <two>Signaltransduktion</two>? (1) <one>Gs</one> ist ein <two>stimulatorisches G-Protein</two> (2) <one>Gi</one> ist ein <two>inhibitorisches G-Protein</two>
349
+ - Nenne <one>fünf verschiedene Beispiele</one> für <two>reduzierende Zucker</two>. A: (1) <one>Fructose</one> (2) <one>Glucose</one> (3) <one>Galactose</one> (4) <one>Maltose</one> (5) <one>Lactose</one>
350
+ - Nenne <one>drei Wege des Proteintransportes</one>. A: (1) <one>Gated Transport</one> (2) <one>Transmembrantransport</one> (3) <one>Vesikeltransport</one>
351
+ - Beim <one>Splicing-Vorgang</one>: <two>wer</two> <three>initiiert die Attacke</three>? Das <one>2' OH von Adenin</one> greift die 5' Stelle des stromaufwärts gelegenen Introns an.
352
+ - <one>5-Methylcytosin</one> kann zu <one>Thymin</one> deaminieren, also ein <two>NH₃</two> verlieren. <three>Was brauchen wir aber noch, und warum</three>? Ein <one>H₂O Molekül</one>, das uns das <two>O</two> liefert.
353
+ - <one>Why</one> do cells require <two>folic acid</two>? <one>Folic acid</one> is used as <two>a coenzyme in the synthesis of nucleic acids</two>. URL: https://en.wikipedia.org/wiki/Folate#DNA_production
354
+ - <one>How</one> do <two>antifreeze proteins</two> work, in general? They <one>prevent the growth of ice crystals</one>.
355
+ - Kinder mit <one>starker PKU</one> haben oft blondes Haar und reduzierte Körperpigmente. <two>Wieso</two>? 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.
356
+ - <one>Was genau</one> stellt <two>das distale Histidin im Hämoglobin</two> zur Verfügung? Eine <one>Wasserstoffbrücke</one>. URL: https://nds.wikipedia.org/wiki/H%C3%A4moglobin
357
+ - Aus <one>welchen zwei Komponenten</one> besteht ein <two>Hemiacetal</two>? Aus dem Anteil eines <one>Aldehyd-Restes</one> sowie eines <one>Alkohol-Restes</one>.
358
+ - <two>Wo</two> vor allem finden wir das <one>Beta-Alpha-Beta Motif</one> häufig? Fast immer <one>bei parallelen Beta-Sheets</one>.
359
+ - Das menschliche <one>Retinol-Bindeprotein</one> hat eine <two>Beta-Fass-Struktur</two>. <three>Diese Struktur besteht woraus</three>? Dieses Beta-Fass besteht aus <one>acht auf - und absteigenden Beta-Strängen</one>.
360
+ - In der Proteinbiochemie, bei einem <one>twisted open sheet</one>: <two>wie lässt sich das aktive Zentrum vorhersagen</two>? Anhand der <one>Topological Switch Points</one>.
361
+ - Name <one>two ways</one> for a cell to <two>maintain a reducing atmosphere</two>. A: (1) a <one>high ratio of NADPH to NADP⁺</one> (2) a <one>high ratio of reduced to oxidized glutathione</one>
362
+ - <one>Why</one> is it important for us to know whether a protein has many <two>hydrophobic</two> or <two>hydrophilic</two> side chains? So that we can understand and predict, up to a certain degree, <one>how proteins fold up three-dimensionally</one>.
363
+ - Nenne <one>zwei funktionelle Gruppen</one> mit <two>hoher Nucleophilie</two> in den Proteinen. A: (1) die <one>Amino-Gruppe</one> von <two>Lysin</two> (2) die <one>Imidazol-Gruppe</one> des <two>Histidin</two>
364
+ - Die <one>Fettsäuresynthese</one> ist <two>eine Kondensationsreaktion zwischen ... </two>? <one>Acetyl-ACP</one> und <one>Malonyl-ACP</one> (ACP heisst <two>Acyl Carrier Protein</two>). URL: https://en.wikipedia.org/wiki/Histone_acetyltransferase
365
+ - From a <one>biochemical point of view</one>: <two>why can't humans make use of purines and pyrimidines more</two>? They lack the enzyme <one>urate oxidase</one>, which means that they can not convert <one>uric acid</one> (<three>Harnsäure</three>). URL: https://en.wikipedia.org/wiki/Urate_oxidase
366
+ - <two>Unterschied</two> im Abbau von <one>Purinen</one> und <one>Pyrimidinen</one>? (1) Der <one>Abbau von Purin</one> führt zu <two>potenziell toxischen Produkten</two>. (2) Der <one>Abbau von Pyrimidin</one> führt zu <two>ungiftigen Zwischenprodukten</two>.
367
+ - Name <one>two enzymes</one> of the <two>salvage pathway</two>. A: (1) <one>APPT</one>: <two>Adenine phosphoribosyltransferase</two> (2) <one>HGPRT</one>: <two>Hypoxanthine-guanine phosphoribosyltransferase</two> (<one>HGPRT</one>)
368
+ - In protein structure we can find the <one>greek key motif</one>. <two>How does this look</two>? 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.
369
+ - Eine Zelle kann das Aldehyd <one>Allysin</one> synthetisieren. <two>Welches Enzym bewerkstelligt dies und benutzt welches Ausgangsprodukt hierfür</two>? Das Enzym ist die <one>Lysyl-Oxidase</one>. Dieses Enzym desaminiert Lysin - das Ausgangsprodukt - und stellt so das Aldehyd <two>Allysin</two> her.
370
+ - <one>Woraus</one> besteht das <two>Beta-Haarnadelschleifen Motiv</two>? Aus <one>zwei Beta-Strängen</one>.
371
+ - <one>Welches Enzym</one> ist an der Umwandlung von <two>Harnstoff</two> in <two>Ammonium</two> beteiligt? Die <one>Urease</one>. URL: https://en.wikipedia.org/wiki/Urease
372
+ - Chemisch betrachtet sind <one>Peptide</one> was (nur ein Wort verwenden)? <one>Säureamide</one>. URL: https://de.wikipedia.org/wiki/Carbons%C3%A4ureamide
373
+ - Andere Bezeichnung für <one>zwei Carbonsäuren</one>? <one>Anhydrid</one>. URL: https://de.wikipedia.org/wiki/Anhydride
374
+ - Provide another word for the term <one>Rotamer</one>. A: <one>Conformational isomerism</one>. URL: https://en.wikipedia.org/wiki/Conformational_isomerism
375
+ - Wenn <one>cAMP</one> <two>abgebaut wird</two>, <three>entsteht ...</three>? <one>5'-AMP</one>. URL: https://en.wikipedia.org/wiki/Adenosine_monophosphate
376
+ - <one>Wirbeltiere</one> besitzen relativ viele verschiedene <two>Kollagentypen</two>. <three>Wie viele, in etwa</three>? <one>28</one>.
377
+ - What do the <one>serine proteases</one> <two>catalyze in general</two>? <one>Serine proteases</one> <two>catalyze the hydrolysis of peptide bonds</two>. URL: https://en.wikipedia.org/wiki/Serine_protease
378
+ - <one>Das mitochondriale Porin</one> wird auch als <two>VDAC</two> bezeichnet. <three>Wofür steht diese Abkürzung</three>? <one>Voltage dependent anion channel</one>.
379
+ - <one>Welche zelluläre Rolle</one> erfüllt <two>S-Adenosyl Methionin</two> (<three>SAM</three>)? <two>SAM</two> ist involviert beim <one>Transfer von Methylgruppen</one>.
380
+ - Als <one>„Bausteine des Lebens“</one> fungieren <two>welche vier Hauptklassen von Biomolekülen</two>? (1) <one>Kohlenhydrate</one> (2) <one>Nucleinsäuren</one> (3) <one>Proteine</one> (4) <one>Lipide</one>
381
+ - Wie wird <one>Biotin</one> genannt das <two>ein CO₂-Molekül trägt</two>? <one>N-Carboxybiotin</one>. URL: https://pubs.acs.org/doi/10.1021/ja00312a105
382
+ - <one>Cholin</one> <two>besitzt n C Atome</two>? <one>5</one>.
383
+ - Verwende eine andere Bezeichnung für einen <one>irreversiblen Inhibitor</one>. A: <one>Suizid-Substrat</one>.
384
+ - Welche <one>zwei Typen an homologen Proteinen</one> <two>können allgemein unterschieden werden</two>? (1) <one>orthologe Proteine</one> (2) <one>paraloge Proteine</one>
385
+ - <one>Vor allem welche Zellen im menschlichen Körper</one> <two>verwenden viele Lipasen</two>? Die <one>Adiopocyten</one>. URL: https://de.wikipedia.org/wiki/Adipozyt
386
+ - In a biochemistry laboratory: <one>why</one> may <two>beta-mercaptoethanol</two> <three>be employed</three>? <one>Beta-mercaptoethanol</one> is used in order to <two>disrupt disulfide bonds</two> - and thus <three>denature a protein</three>.
387
+ - Warum benötigen <one>Erythrocyten</one> <two>große Mengen an NADPH</two>? Um <one>Glutathion</one> <two>zu regenerieren</two>.
388
+ - Der <one>Natriumgradient</one> <two>erlaubt auch den ... </two>? <one>Glucoseimport</one>.
389
+ - Ist <one>GLUT1</one> <two>ein Uniporter</two>? <one>Ja</one>. URL: https://de.wikipedia.org/wiki/GLUT-1
390
+ - Der <one>muskarinische Acetylcholin-Rezeptor</one> ist <two>ein G-Protein-gekoppelter Rezeptor</two> <three>mit n Untertypen</three>. A: <one>5</one> (<one>fünf</one>).
391
+ - Definiere eine <one>Esterbindung</one> <two>ausgehend von den daran beteiligten funktionellen Gruppen</two>. A: Eine Esterbindung ist eine Bindung zwischen einer <one>Hydroxygruppe</one> und einer <one>Carboxygruppe</one> (<two>hydroxyl</two> + <two>oxoacid</two>).
392
+ - <one>Wo</one> mögen wir <two>Buttersäure</two> in einem natürlichen Umfeld sehen? In <one>Schweiß</one>. URL: https://de.wikipedia.org/wiki/Schwei%C3%9F#Schwitzen_beim_Menschen
393
+ - Is <one>the synthesis of a polypeptide</one> <two>an endergonic process</two>? <one>Yes</one>, of course.
394
+ - If <one>a protein</one> <two>is to be destined to transition to the lysosomes</two>, <three>which tag is added</three>? <one>Mannose-6-phosphate</one>.
395
+ - Was ist <one>der entscheidendene Baustein des Cholesterins</one>? <one>Isopentenylpyrophosphat</one> (<two>IPP</two>). URL: https://de.wikipedia.org/wiki/Isopentenylpyrophosphat
396
+ - <one>Benötigt</one> <two>die Reduktion von oxidiertem Glutathion</two> <three>NADPH</three>? <one>Ja</one>.
397
+ - In der <one>Biosynthese</one> von <two>Chorismate</two> zu <two>Anthranilate</two> <three>wirkt welches Enzym</three>? Die <one>Anthranilate synthase</one>. URL: https://en.wikipedia.org/wiki/Anthranilate_synthase
398
+ - Der <one>Vorläufer</one> von <two>Steroiden</two>, <two>Carotinoiden</two> und den <two>Gibberrellinen</two> ist ... ? <one>Isoprenoid</one>. URL: https://www.britannica.com/science/isoprenoid
399
+ - <one>Welchen Zweck</one> erfüllt die <two>Phytyl-Seitenkette</two> von Chlorophyll? <one>Verankerung in der Membran</one>.
400
+ - Was erzeugt der <one>reduktive Acetyl-CoA-Weg</one>? <one>Acetat</one>. URL: https://de.wikipedia.org/wiki/Reduktiver_Acetyl-CoA-Weg
401
+ - Liegen <one>lysosomale Enzyme</one> <two>glykolysiert vor</two>? <one>Ja</one>.
402
+ - <one>Which two products</one> <two>are generated from</two> <three>Rubisco's Oxygenase</three> activity? (1) <one>2-phosphoglycolate</one> (2) <one>3-phosphoglycerate</one> URL: https://en.wikipedia.org/wiki/Photorespiration
403
+ - <one>Which two types</one> of <two>ATP-Formation</two> exist? (1) <one>oxidative phosphorylation</one> (2) <one>substrate phosphorylation</one>
404
+ - Nenne einen <one>irreversibler Hemmer der Thymidylate-Synthase</one>. A: <one>Fluoruracil</one> (<two>Fluor-uracil</two>) - genauer <three>5-fluorouracil</three> (<two>5-FU</two>). URL: https://en.wikipedia.org/wiki/Thymidylate_synthase#Using_TS_as_a_drug_target
405
+ - <one>Welches sind</one> <two>die wichtigsten</two> <three>Homoglykane</three> (vier nennen)? (1) das <one>Glykogen</one> der <two>Tiere</two> (2) <one>Stärke</one> aus <two>Pflanzen</two> (3) <one>Zellulose</one> aus <two>Pflanzen</two> (4) <one>Chitin</one> als Gerüstsubstanz bei <two>Arthropoda</two> und <two>Pilzen</two>
406
+ - <one>Wo</one> <two>im menschlichen Körper</two> könnte <three>Glykophorin</three> gefunden werden? In der <one>Erythrozytenmembran</one>.
407
+ - Wenn eine <one>Biomembran</one> viele kurzkettige und ungesättigte Fettsäuren besitzt, was wissen wir dann? Diese Membran ist <one>extrem fluid</one>.
408
+ - Nenne <one>ein Beispiel</one> für <two>ein biologisches Makromolekül</two>. A: <one>Proteine</one>.
409
+ - Die <one>Transaminasen</one> benötigen welchen <two>Coenzym</two>? <one>Transaminasen</one> benötigen als Coenzym <two>Pyridoxal-5-phosphat</two>. URL: https://de.wikipedia.org/wiki/Pyridoxalphosphat
410
+ - <one>Ganglioside</one> tragen eine positive oder eine negative Ladung? Eine <one>negative Ladung</one>, <two>aufgrund der Sialinsäurereste</two>.
411
+ - Sind <one>Neutralfette</one> <two>Speichersubstanzen</two>? <one>Ja</one>. URL: https://de.wikipedia.org/wiki/Fette
412
+ - Das <one>gefäßerweiternde Hormon</one> <two>Bradykinin</two> <three>besitzt</three>, als Oligopeptid, <three>wieviele Aminosäuren</three>? <one>9</one>. URL: https://de.wikipedia.org/wiki/Bradykinin
413
+ - <one>Senkt</one> <two>ein niedriger pH-Wert</two> die Affinität von Hämoglobin zu Sauerstoff? <one>Ja</one>.
414
+ - Just about <one>the most important pump in animal cells</one> is the ... ? The <one>sodium-potassium pump</one>.
415
+ - Die <one>kontraktile Grundeinheit des Muskels</one> ist ... ? das <one>Sarkomer</one>. URL: https://de.wikipedia.org/wiki/Sarkomer
416
+ - Das <one>meistsynthetisierte Biomolekül</one> <two>ist ... </two>? <one>Cellulose</one>. URL: https://de.wikipedia.org/wiki/Cellulose
417
+ - <one>Andere Bezeichnung</one> für <two>einen niedrigen Blutzucker</two> (im Menschen). A: <one>Hypoglykämie</one>. URL: https://de.wikipedia.org/wiki/Hypoglyk%C3%A4mie
418
+ - Ist der <one>GLUT1-Transporter</one> <two>Insulinunabhängig</two>? <one>Ja</one>.
419
+ - Nenne ein Beispiel für ein <one>Homopolysaccharid</one>. A: <one>Cellulose</one>. URL: https://de.wikipedia.org/wiki/Cellulose
420
+ - What are <one>conjugated proteins</one>? <one>Conjugated proteins</one> are <two>proteins that are linked to molecules of other types</two>.
421
+ - Wird die <one>α-Aminogruppe der Aminosäuren</one> <two>in den Harnstoffzyklus eingeschleust</two>? <one>Ja</one>.
422
+ - How are the enzymes called that can synthesize <one>Polyketides</one>? <one>Polyketide synthases</one>. URL: https://en.wikipedia.org/wiki/Polyketide_synthase
423
+ - Der <one>'Rohstoff'</one> <two>für Taurin</two> ist ... ? Die Aminosäure <one>Cystein</one>. Taurin ist eine <two>Aminoethansulfonsäure</two> (schwefelhaltige Säure). URL: https://de.wikipedia.org/wiki/Taurin
424
+ - <one>Hemmstoffe</one> <two>gegen die HMG-CoA-Reduktase</two> werden als ... bezeichnet. A: <one>Statine</one> - also <two>Cholesterin- und LDL-Senker</two>.
425
+ - Der <one>pH-Wert</one> <two>des menschlichen Blutplasmas</two> <three>liegt bei etwa ... </three>? <one>7.40</one>
426
+ - Wir können <one>PD10-Säulchen</one> verwenden, die ein <two>Sephadex-Gelfiltrationsharz</two> besitzen. <three>Bis zu welcher Größe trennt man hier</three>? Moleküle die <one>größer als 5 kDa</one> sind.
427
+ - Kann <one>eine tierische Zelle</one> <two>ein Peptid aus D-Aminosäuren</two> <three>abbauen</three>? <one>Nein</one> - <two>die Enzyme für den Abbau erkennen diese Aminosäuren nicht</two>.
428
+ - The peptide sequence <one>Val-Lys-Glu-Met-Ser-Trp-Arg-Ala</one> is digested with <two>chymotrypsin</two>. <three>What will be the result of this procedure</three>? <one>Val-Lys-Glu-Met-Ser-Trp</one><two> | </two><one>Arg-Ala</one>
429
+ - <one>Chitin</one> <two>ist ein Polymer</two>, der aus welchen Untereinheiten zusammengesetzt ist? Aus <one>N-Acetylglucosamin</one>. URL: https://de.wikipedia.org/wiki/Chitin
430
+ - <one>Pyrophosphat</one> <two>besitzt wieviele P-Atome</two>? <one>Zwei</one>. URL: https://de.wikipedia.org/wiki/Diphosphate
431
+ - Wichtig für seine Rolle als <one>zellulärer Redoxpuffer</one> ist - chemisch betrachtet - <two>in Glutathion</two> <three>welche Gruppe</three>? Die <one>-SH Gruppe</one> <two>von Cystein</two>.
432
+ - Im <one>ATP-Molekül</one> <two>bei den drei Phosphatresten</two>: <three>welche zwei Bindungstypen können wir bei ihnen finden</three>? (1) Eine <one>Esterbindung</one> <two>beim Alpha-Teil</two> (2) zwei <one>Anhydridbindungen</one> <two>beim Beta und Gamma-Teil</two>
433
+ - <one>Welches Protein</one> <two>erkennt die für den Kern bestimmten Proteine</two>? Der Rezeptor <one>Importin</one>.
434
+ - Bei den <one>Aminotransferasen</one>: <two>wer</two> ist <three>der häufigste</three> <four>Akzeptor der Aminogruppe</four>? <one>Alpha-Ketoglutarat</one>. URL: https://de.wikipedia.org/wiki/%CE%91-Ketoglutars%C3%A4ure
435
+ - Name the <one>trisaccharide of</one> <two>glucose</two>. A: <one>Maltotriose</one>. URL: https://en.wikipedia.org/wiki/Maltotriose
436
+ - Nenne <one>eine Funktion des glatten ERs</one> <two>im Muskel</two>. A: Es dient hier als <one>Calcium-Speicher</one>: das <two>sarkoplasmatische Retikulum</two>.
437
+ - Die <one>prosthetische Gruppe von Myoglobin</one> ist ... ? <one>Häm</one>.
438
+ - Nenne <one>ein Beispiel</one> für eine <two>Zinkprotease</two>. A: Die <one>Carboxypeptidase A</one>. URL: https://en.wikipedia.org/wiki/Carboxypeptidase_A
439
+ - Besitzt die <one>Kollagenhelix</one> <two>interne Wasserstoffbrücken</two>? A: <one>Nein</one>.
440
+ - <one>Photorespiration</one> <two>arises from ...</two>? From <one>RuBisCO's</one> <two>oxygenase</two> <one>activity</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3244903/
441
+ - Enthalten <one>Lipoproteine</one> <two>in der Schale</two> <three>verschiedene Apolipoproteine</three>? <one>Ja</one>.
442
+ - <one>Acetylcholin</one> wirkt an welchen zwei Typen von Cholinorezeptoren? (1) <one>nikotinischen Acetylcholinrezeptoren</one> (2) <one>muskarinischen Acetylcholinrezeptoren</one>
443
+ - Eine <one>Peptidbindung</one> kann mit Hilfe von ... gespalten werden (Hinweis: hier ist nicht ein Enzym gemeint). A: <one>Wasser</one>.
444
+ - <one>Chaperone</one> <two>binden bevorzugt an welche Bereiche in einer Polypeptidkette</two>? An die <one>hydrophoben Aminosäuren</one>.
445
+ - Wirkt <one>Acetylcholin</one> als <two>Neurotransmitter</two>? <one>Ja</one>.
446
+ - Hemmen <one>Statine</one> <two>die Cholesterinsynthese</two>? <one>Ja</one>.
447
+ - Das Sterol <one>Cholesterol</one> <two>kommt wo vor</two>? In den <one>Membranen tierischer Zellen</one>. URL: https://de.wikipedia.org/wiki/Cholesterin
448
+ - Das Protein <one>Dcp2</one>: die Abkürzung <two>Dcp</two> <three>steht für ... </three>? <one>Decapping</one>.
449
+ - Im Blutgruppensystem gibt es die <one>H-Substanz</one>. <two>Woraus besteht diese</two>? Aus den drei Komponenten <one>FAG</one>: (1) <two>Fukose</two> (2) <two>Acetyl-Glucosamin</two> (3) <two>Galaktose</two>
450
+ - Andere Bezeichnung für <one>aktives Isopren</one>? <one>Isopentenylpyrophosphat</one>. URL: https://de.wikipedia.org/wiki/Isopentenylpyrophosphat
451
+ - <one>Phosphogylceride</one> <two>können mit Alkoholen verestert werden</two>. <three>Nenne fünf davon, in alphabetischer Reihenfolge</three>. A: (Merkslogan: <one>CEGIS</one>) (1) <two>Phosphatidyl</two><three>C</three><four>holin</four> (<five>Lecithin</five>) (2) <two>Phosphatidyl</two><three>E</three><four>thanolamin</four> (3) <two>Phosphatidyl</two><three>G</three><four>lycerin</four> (4) <two>Phosphatidyl</two><three>I</three><four>nositol</four> (5) <two>Phosphatidyl</two><three>S</three><four>erin</four>
452
+ - Bei dem <one>Nicotinamidadenindinucleotiden</one>: <two>wo</two> erfolgt die Reduktion beziehungsweise Oxidation von NAD(P)/H? Am <one>Nicotinamid</one>.
453
+ - Nenne <one>zwei Zwecke</one> die <two>Triacylglycerin</two> <three>im menschlichen Körper erfüllt</three>. A: (1) <one>Fettspeicher</one> (2) <one>Wärmepolster</one>
454
+ - In einem Protein: <one>wo</one> können die Aminosäuren <two>Asparagin</two> und <two>Glutamin</two> gefunden werden? Diese Aminosäuren sind <one>sehr polar</one>, daher finden wir sie sehr <two>häufig an Proteinoberflächen</two>.
455
+ - Nenne <one>zwei Beispiele</one> für <two>Faserproteine des Menschen</two>. A: (1) <one>Kollagen</one> (2) <one>Myosin</one>
456
+ - Die <one>Phosphofructokinase</one> <two>wandelt welches Substrat in welches Produkt um</two>? Die <one>Phosphofructokinase</one> akzeptiert <two>Fructose-6-Phosphat</two> und erzeugt <two>Fructose-1,6-bisphosphat</two>. URL: https://en.wikipedia.org/wiki/Phosphofructokinase
457
+ - Ein <one>Thioester</one> <two>besitzt welche funktionelle Gruppe</two>? <one>-C=O-S Gruppe</one>.
458
+ - Was genau sind <one>Lipoproteine</one> und <two>wo</two> mag man diese zellulär gesehen finden? <one>Lipoproteine</one> sind <two>Assoziation von Lipiden mit Proteinen</two>, <three>zum Beispiel in Membranen</three>.
459
+ - <one>Wieviele</one> <two>antiparallele Beta-Stränge</two> können in <three>Porin</three> gefunden werden? <one>16</one>.
460
+ - <one>Aus wieviel verschiedenen Proteinen</one> besteht die <two>Propionyl-CoA-Carboxylase</two>? A: Aus <one>zwei</one>, der Alpha Untereinheit und <two>Beta Untereinheit</two>.
461
+ - Nenne <one>ein Beispiel</one> für eine <two>Metallionenkatalyse</two> in der Biochemie. A: Die <one>Carboxypeptidase A</one>. URL: https://en.wikipedia.org/wiki/Carboxypeptidase_A
462
+ - The act of <one>Ubiquitination</one> <two>is carried out in three main steps</two>. How are these called, in <three>one-word form</three> for each step? (1) <one>activation</one> (2) <one>conjugation</one> (3) <one>ligation</one>
463
+ - <one>Titin</one> <two>besitzt maximal wieviele Aminosäurereste</two>, in der <three>größten Isoform</three>? <one>~33.000</one>.
464
+ - Nenne <one>eine gemeinsame Aktivität</one> von <two>Actin</two> und <two>Myosin</two>. A: Die <one>ATP-Hydrolyse</one>.
465
+ - <one>Von welchem Molekül</one> erhält die <two>Carbamylphosphat-Synthase</two> ihr erstes <three>Stickstoffatom</three>? Vom <one>Harnstoff</one>.
466
+ - Das Wort Protein stammt von <one>proteios</one>, das wiederum was bedeutet? <one>Erstrangig</one>. URL: https://link.springer.com/chapter/10.1007/978-3-540-73804-6_2
467
+ - Nenne ein <one>Lysinderivat</one>. A: <one>5-Hydroxylysin</one>. URL: https://de.wikipedia.org/wiki/Hydroxylysin
468
+ - The <one>AMPK</one> (<two>AMP-activated protein kinase</two>) <three>contains how many subunits</three>? <one>Three</one> - it is thus <two>a heterotrimeric protein complex</two>.
469
+ - What would be <one>a better name</one> <two>for the ATP synthase</two>? <one>F₁F₀ ATP synthase</one>. URL: https://en.wikipedia.org/wiki/ATP_synthase
470
+ - <one>Glucosamin</one> ist ein Baustein in manchen <two>Polysacchariden</two>. <three>Nenne zwei davon</three>. A: (1) <one>Chitin</one> (2) <one>Chitosan</one>
471
+ - <one>Inosinic acid</one> <two>contains ...</two>? The <one>purine</one> <two>hypoxanthine</two>. URL: https://en.wikipedia.org/wiki/Hypoxanthine
472
+ - <one>Bromcyan</one> <two>spaltet wo</two>? An <one>Methionin</one> (<one>M</one>). URL: https://de.wikipedia.org/wiki/Bromcyan
473
+ - <one>PMSF</one> (<two>Phenylmethanesulfonyl fluoride</two>) <three>is an inhibitor</three>. <four>What can it inhibit</four>? <one>PMSF</one> <two>can inhibit serine proteases</two>. (Mnemonic: <three>S</three> in PMSF ... <three>Serine</three>.) URL: https://en.wikipedia.org/wiki/PMSF
474
+ - What does <one>myostatin</one> mean, literally? (1) <one>myo</one> means <two>muscle</two>. (2) <one>statin</one> means <two>stop</two>.
475
+ - <one>Durch welche Reaktion</one> werden <two>Disulfidbrücken</two> gebildet? Durch die <one>Oxidation</one> <two>von zwei</two> <three>Mercaptofunktionen</three>.
476
+ - Was ist eine <one>Alpha-Ketosäure</one>? Dies ist <one>ein Kohlenstoffgerüst einer Aminosäure</one>, <two>bei der die Aminogruppe entfernt wurde</two>. URL: https://de.wikipedia.org/wiki/Ketos%C3%A4uren#%CE%B1-Ketos%C3%A4uren
477
+ - <one>Wann</one> wird die <two>AMPK</two> <three>aktiv</three>? Die <one>AMP-aktivierte Kinase AMPK</one> wird dann aktiv, wenn <two>AMP</two> in einer Zelle <three>akkumuliert</three>.
478
+ - <one>Wohin</one> schauen <two>die Reste einer Aminosäure</two> <three>in einer Alpha-Helix</three>? Die Reste einer Aminosäure in einer Alpha-Helix zeigen alle <one>nach außen</one>.
479
+ - <one>When</one> is a <two>G-protein inactive</two>? When its <one>Alpha subunit</one> has <two>bound GDP</two>. URL: https://en.wikipedia.org/wiki/G_protein
480
+ - Nenne <one>zwei Methoden</one> wie wir <two>reversible Enzyminhibitoren</two> <three>aus einer Lösung entfernen können</three>. A: (1) <one>Dialyse</one> (2) <one>Gelfiltration</one>
481
+ - Nenne <one>zwei verschiedene Substanzen</one>, die die <two>Chlortetracyclinsynthese</two> <three>unterdrücken können</three>. A: (1) <one>Glucose</one> (2) <one>Phosphat</one>
482
+ - Die <one>Aromatase</one> <two>gehört zu welcher Familie</two>? Zur <one>CYP-Familie</one>. URL: https://de.wikipedia.org/wiki/Aromatase
483
+ - In any given protein: <one>where</one> can <two>find disulfide bonds</two> <three>NOT</three> be found? <one>Disulfide bridges</one> require an <two>oxidative environment</two> - and are thus <three>not found in intracellular proteins</three>.
484
+ - <one>Cyclophilin</one> <two>hilft bei welchem zellulären Vorgang</two>? Beim <one>Faltungsvorgang von Proteinen</one>. URL: https://en.wikipedia.org/wiki/Cyclophilin
485
+ - <one>Welche eigentliche Funktion</one> hat <two>Avidin</two>? <one>Avidin</one> <two>wirkt vermutlich inhibitorisch auf das Bakterienwachstum</two> und mag so als <three>Abwehrmechanismus</three> dienen.
486
+ - Wie werden die Untereinheiten der <one>gap junctions</one> genannt? <one>Connexin-Untereinheiten</one>, 6 Stück davon. URL: https://en.wikipedia.org/wiki/Connexin
487
+ - Die <one>NMR</one> geschieht für <two>Proteine mit einer maximalen Größe von ...</two>? <one>30 kDa</one>. URL: https://de.wikipedia.org/wiki/Kernspinresonanzspektroskopie
488
+ - <one>Chymotrypsin</one> besitzt <two>n Dilsufidbrücken</two>? <one>5</one>. URL: https://en.wikipedia.org/wiki/Chymotrypsin
489
+ - Provide another name for the <one>Monooxygenases</one>. A: <one>Mixed function oxidases</one>. URL: https://en.wikipedia.org/wiki/Monooxygenase
490
+ - Was ist ein <one>Orthophosphat</one>? <two>Gib auch dessen Ladung an</two>. A: Ein <one>Orthophosphat</one> ist ein Phosphat-Atom mit <two>4 gekoppelten O-Atomen</two>; also ein <two>PO₄</two><three>³⁻</three> Ion. URL: https://en.wikipedia.org/wiki/Phosphoric_acids_and_phosphates#Orthophosphate
491
+ - Andere Bezeichnung für <one>Supersekundärstruktur</one>? <one>Motiv</one>.
492
+ - <one>Was genau</one> heißt <two>Hydrolyse</two>? <one>Abbau durch Wasser</one>. URL: https://de.wikipedia.org/wiki/Hydrolyse
493
+ - Nenne <one>die drei Typen</one> der <two>reversiblen Hemmung</two>. A: (1) <one>kompetitive Hemmung</one> (2) <one>unkompetitive Hemmung</one> (3) <one>nichtkompetitive Hemmung</one>
494
+ - Ein <one>Thioester</one> besitzt was für einen charakteristischen <two>Rest</two>? <one>-C=O-S</one>. URL: https://de.wikipedia.org/wiki/Thioester
495
+ - <one>Aldehyde Ribose</one> <two>can change into which structure</two> in equilibrium? <one>Beta-Furanose</one>. URL: https://de.wikipedia.org/wiki/Furanosen
496
+ - Beim <one>trp-Operon</one> <two>in E. coli</two>: <three>was ist das Startmolekül in der Biosynthese von Tryptophan</three>? <one>Chorismic acid</one>. URL: https://en.wikipedia.org/wiki/Chorismic_acid
497
+ - <one>Welche zwei chemischen Elemente</one> benötigt die <two>Aconitase</two>? (1) <one>Eisen</one> (2) <one>Schwefel</one>
498
+ - <one>Wieso</one> kann ein Mensch mit <two>Cyanid</two> <three>vergiftet werden</three>? <one>Cyanid</one> hemmt das Enzym <two>Cytochrom-c-Oxidase</two> <three>in der Atmungskette</three>.
499
+ - Nenne <one>zwei</one> wichtige, <two>eukaryote Adhäsionsproteine</two>. A: (1) <one>Fibronectin</one> (2) <one>Laminin</one>
500
+ - Wie können wir <one>Geschwindigkeitskonstanten</one> von <one>Gleichgewichtskonstanten</one> <two>unterscheiden</two>? (1) <one>Gleichgewichtskonstanten</one> werden mit <two>GROßEM K</two> (englisch: <three>equilibrium constant</three>) angeschrieben. (2) <one>Geschwindigkeitskonstanten</one> hingegen mit einem <two>kleinem k</two> (englisch: <three>rate constant</three>) geschrieben.
501
+ - <one>Tropomyosin</one> <two>contains how many strands</two>? <one>Two</one>. URL: https://en.wikipedia.org/wiki/Tropomyosin
502
+ - <one>Welche Person</one> prägte im Jahre <two>1837</two> den Begriff <three>Katalyse</three>? <one>Berzelius</one>. URL: https://en.wikipedia.org/wiki/J%C3%B6ns_Jacob_Berzelius
503
+ - Nenne <one>zwei</one> <two>Lektin-Vertreter</two>. A: (1) <one>Concanavalin A</one> (<two>ConA</two>) (2) <one>Phythämagglutinin</one> (<two>PHA</two>)
504
+ - Nenne ein konkretes Beispiel, wo wir Menschen <one>Glykoproteine</one> brauchen. A: Für die <one>Blutgruppentypen</one>. URL: https://de.wikipedia.org/wiki/Blutgruppe
505
+ - <one>Welche Ladung</one> tragen <two>Histone</two>? <one>+</one> (<two>positive Ladung</two>).
506
+ - Nenne die <one>drei Enzyme der Glykolyse</one> die <two>metabolisch irreversibel</two> wirken. A: (1) <one>Pyruvat-Kinase</one> (2) <one>Phosphofructokinase 1</one> (3) <one>Hexokinase</one>
507
+ - <one>Triglyceride</one> <two>bauen auf welcher Grundstruktur auf</two>? Auf <one>Glycerol</one>. URL: https://de.wikipedia.org/wiki/Glycerin
508
+ - Chemisch betrachtet: was ist ein <one>Halbacetal</one>? Eine <one>Halbacetal</one> ist <two>eine Verbindung aus</two> <three>Aldehyd</three> und <three>Alkohol</three>.
509
+ - Give <one>an example for</one> <two>a covalent bond in proteins</two>. A: The <one>disulfide bridge</one>. URL: https://en.wikibooks.org/wiki/Structural_Biochemistry/Chemical_Bonding/_Disulfide_bonds
510
+ - <one>Warum</one> ist das <two>Phloem</two> <three>für die Blattläuse ein Problem</three>? Das <two>Phloem</two> enthält <one>wenig Aminosäuren</one>. <three>Blattläuse können 10 der Aminosäuren nicht synthetisieren!</three>
511
+ - <one>Durchmesser</one> der <two>F1-Kugel</two> der <three>ATP Synthase</three>? <one>8.5 nm</one>.
512
+ - Vorstufe in der <one>Collagen biosynthesis</one>? <one>Procollagen</one>.
513
+ - <one>Wo</one>, <two>zum Beispiel</two>, findet man die <three>EF-Helix</three>? Bei <one>Troponin C</one>.
514
+ - In der Biochemie: was bedeutet <one>t1</one>/<one>2</one>? <one>Halbwertszeit eines Proteins</one>.
515
+ - Die <one>MMP-Proteine</one> <two>gehören zur Familie ... </two>? Der <one>Matrix-Metalloproteinase-Familie</one>. URL: https://en.wikipedia.org/wiki/Matrix_metallopeptidase
516
+ - Im Zuge der <one>Biosynthese von Kollagen</one>: <two>was kommt nach dem</two> <three>Prokollagen</three>? Das <one>Tropokollagen</one>. URL: https://de.wikipedia.org/wiki/Kollagene#Biosynthese
517
+ - How would we <one>draw</one>, in shorthand notation, the <two>Isopeptide</two> bond <three>for Ubiquitin</three>? <one>-C=O-NH-Lysine</one><two>-Target Protein</two>
518
+ - Which <one>ion</one> <two>is used by</two> <three>Rubisco</three>? <one>Mg</one><two>²⁺</two>.
519
+ - Nenne <one>ein konkretes Beispiel</one> für einen <two>Entkoppler</two> in der Biochemie. A: <one>2,4-Dinitrophenol</one> (<two>DNP</two>). URL: https://en.wikipedia.org/wiki/2,4-Dinitrophenol
520
+ - Was heiß <one>MNase</one> und <two>was kann die MNase</two>? <one>MNase</one> heißt <two>micrococcal nuclease</two>. <three>Dieses Enzym kann DNA schneiden</three>. URL: https://www.neb.com/products/m0247-micrococcal-nuclease
521
+ - Die <one>Phospholipase A2</one> generiert <two>Lysophospholipide</two>, <three>die welche Eigenschaft vorweisen</three>? Diese <one>Lysophospholipide</one> können die <two>Zellmembran lysieren</two>.
522
+ - In der Zelle: <one>welches Molekül</one> ist der wichtigste Überträger von <two>Acylgruppen</two>? <one>Coenzym A</one>. URL: https://de.wikipedia.org/wiki/Coenzym_A
523
+ - In der Biochemie, was sind <one>Entkoppler</one>? Nenne hierzu ein Beispiel. A: Dies sind <one>Substanzen die den Protonengradient unterbrechen und somit die ATP Bildung verhindern</one>, indem die Permeabilität der inneren mitochondrialen Membran erhöht wird. <two>2,4-Dinitrophenol</two> ist ein Beispiel.
524
+ - We can produce <one>Arginine</one>, based on <one>Ornithine</one>. <two>Which substance can be found between these two substances</two>, <three>in the biosynthetic pathway</three>? <one>Citrulline</one>.
525
+ - Die <one>direkte Amidierung von Glutamat</one> <two>liefert ...</two>? <one>Glutamin</one>.
526
+ - <one>lacZ</one>, <one>lacY</one> und <one>lacA</one> <two>kodieren jeweils für ... </two>? 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>
527
+ - Name the <one>two different</one> <two>carbonyl groups</two>. A: (1) <one>aldehyde</one> (2) <one>ketone</one>
528
+ - <one>Wo</one> kann <two>konventionelles Myosin</two> <three>gefunden werden</three>? In <one>Muskelfasern</one>. URL: https://de.wikipedia.org/wiki/Muskelfaser#Faserarten
529
+ - Name <one>two</one> normal tissues or cell types that convert <two>glucose</two> to <two>lactate</two> <three>even under aerobic conditions</three>. A: (1) <one>retina</one> (2) <one>erythrocytes</one>
530
+ - <one>Wie</one> erfolgt <two>die Oxidation der Fettsäure</two> <three>in eukaryoten Zellen</three>? Durch <one>β-Oxidation</one> in den <two>Mitochondrien</two>, bei der jeweils <three>zwei C-Atome</three> abgespalten werden. URL: https://en.wikipedia.org/wiki/Beta_oxidation
531
+ - Der <one>pkA Wert von Histidin</one> <two>liegt bei ... </two>? Bei etwa <one>6</one>.
532
+ - <one>Wo</one> wird <two>4-Hydroxyprolin</two> benötigt? In <one>Bindegewebsproteinen</one>, <two>wie zum Beispiel in Kollagen</two>. Die Bildung von Kollagen benötigt Ascorbinsäure.
533
+ - Die <one>Proteinkinase A</one> <two>besitzt wieviele Untereinheiten</two>? <one>4</one>. URL: https://de.wikipedia.org/wiki/Proteinkinase_A
534
+ - <one>Inositoltrisphosphat</one> besitzt <two>wieviele C Atome</two>? <one>6</one>. URL: https://en.wikipedia.org/wiki/Inositol_trisphosphate
535
+ - Die <one>Aspartate Beta-Semialdehyde</one> <two>kann nicht zyklisieren</two>. <three>Warum nicht</three>? Da es zu einer <one>zu hohen Ringspannung</one> kommen würde.
536
+ - In der Biochemie: nenne <one>zwei Typen</one> von <two>kinetischen Mechanismen</two>. A: (1) <one>Ping-Pong Mechanismen</one> (2) <one>Sequentielle Mechanismen</one>
537
+ - <one>Welches Enzym</one> interkonvertiert <two>Glycerinaldehyd-3-phosphat</two> und <two>Dihydroxyacetone</two>? Die <one>Triosephosphat-Isomerase</one>. URL: https://en.wikipedia.org/wiki/Triosephosphate_isomerase
538
+ - In der Biochemie: <one>wo</one> kann generell ein <two>Oxyanionen-Loch</two> gefunden werdne? In <one>Serinproteasen</one>. URL: https://de.wikipedia.org/wiki/Serinproteasen
539
+ - <one>Der menschliche Körper</one> <two>kann nur welche Form von Eisen resorbieren</two>? Nur <one>zweiwertiges Eisen</one> (<two>Fe²⁺</two>).
540
+ - <one>Wozu</one> können <two>Herzglykoside</two> (URL: https://de.wikipedia.org/wiki/Herzglykoside) eingesetzt werden? (1) zur <one>Therapie von Herzinsuffizienz</one> (2) gegen <one>Vorhofflimmern</one>
541
+ - <one>Der menschliche Körper</one> <two>produziert täglich</two> <three>n Erythrozyten</three>? Etwa <one>200 Millionen Erythrozyten</one>.
542
+ - Anderer Begriff für die <one>aktive Form des Vitamin B2</one>? <one>Riboflavin</one>. (Anmerkung: Riboflavin dient als Vorstufe für FAD. Daher ist Riboflavin chemisch mit FAD relativ stark verwandt.) URL: https://de.wikipedia.org/wiki/Riboflavin
543
+ - Es gibt vier <one>charged</one> Aminosäuren. <two>Nenne diese mit Hilfe eines Merkslogan</one>. A: DEKR (Deker) <one>D, E, K, R</one>.
544
+ - Für die <one>Hämsynthese</one> benötigt die Zelle nicht nur die Aminosäure <two>Glycin</two>, sondern auch <three>das im Citrazyklus gewonnene ... </three>? A: <one>Succinyl-CoA</one>.
545
+ - <one>Ribonuclease A catalysis</one> <two>is an example for ...</two>? <one>Acid base catalysis</one>.
546
+ - In der Biochemie: <one>wieso</one> wird <two>Ammoniumsulfat</two> verwendet? <one>Ammoniumsulfat</one> wird verwendet zum <two>Aussalzen von Proteinen</two> - die <three>Ammoniumsulfat-Fällung</three>.
547
+ - In der <one>Enzymkinetik</one>, bei den Formeln: was passiert mit <two>[ES]</two>? <one>[ES]</one> wird zu <two>[E]</two> und <two>[P]</two>.
548
+ - Name <one>the two different</one> <two>groups of polysaccharides</two>. A: (1) <one>homopolysaccharides</one> (2) <one>heteropolysaccharides</one>
549
+ - Die Zelle kann eine <one>Keto-Gruppe</one> in eine <two>Methylengruppe</two> konvertieren. <three>Welcher Cofaktor wird hierzu benötigt</three>? <one>NADPH</one>. URL: https://de.wikipedia.org/wiki/Nicotinamidadenindinukleotidphosphat
550
+ - <one>Leptin</one> <two>ist was für ein Typ</two>? <one>Leptin</one> ist ein <two>Peptidhormon</two>. URL: https://de.wikipedia.org/wiki/Leptin
551
+ - <one>Wann</one> wurde der Begriff <two>Biochemie</two> <three>erstmals verwendet</three>? Im Jahre <one>1858</one>, von <two>Vinzenz von Kletzinsky</two>. URL: https://www.biographien.ac.at/oebl/oebl_K/Kletzinsky_Vinzenz_1826_1882.xml
552
+ - <one>Mitochondria</one> <two>inhale which substance</two>? <one>Pyruvic acid</one> (<two>CH₃-CO-COOH</two>), which is a <two>ketone</two>. The carboxylate (<one>COO⁻</one>) anione of pyruvic acid ist pyruvate (<one>CH₃-CO-COO⁻</one>).
553
+ - Mit welchem <one>Verfahren</one> <two>kann eine Proteinlösung getrocknet werden, unter Beibehaltung der biologischen Aktivität</two>? <one>Gefriertrocknung</one> = <two>Lyophylisation</two> (<two>Lyophilisierung</two>). URL: https://de.wikipedia.org/wiki/Gefriertrocknung
554
+ - Ein <one>Thioester</one> <two>besitzt wieviele (und welche) Atome</two>? <one>3</one> - <two>C</two>, <two>S</two> und <two>O</two>. Genauer: <three>-C=O-S</three> URL: https://de.wikipedia.org/wiki/Thioester
555
+ - <one>Ornithin</one> <two>wird über den Harnstoffzyklus</two> <three>in ... umgewandelt</three>? <one>Arginin</one>. URL: https://de.wikipedia.org/wiki/Ornithin
556
+ - Nenne <one>drei Beispiele</one> für <two>Rezeptor-Tyrosinkinasen</two>. A: (1) <one>Insulinrezeptor-Typ</one> (2) <one>EGF-Rezeptor-Typ</one> (3) <one>NGF-Rezeptor-Typ</one>
557
+ - For <one>group I intron splicing</one>: <two>which component</two> <three>is very important</three>? A <one>guanosine</one> nucleotide.
558
+ - Nenne <one>zwei</one> <two>Hemmer der Phosphodiesterase</two>. A: (1) <one>Coffein</one> (2) <one>Theophyllin</one>
559
+ - The <one>ribofuranose</one> has <two>n puckered conformations</two>? <one>4</one>. URL: https://en.wikipedia.org/wiki/Ribose
560
+ - <one>Lysin</one> <two>kann aus welcher Substanz chemisch hergestellt werden</two>, die mit dem Buchstaben <three>A</three> beginnt? <one>Aminocaprolacton</one>. (<two>Aminoca-pro-lacton</two>) URL: https://en.wikipedia.org/wiki/Aminocaproic_acid
561
+ - What is a <one>Ketose</one> and <two>what example could be given for one</two>? A <one>Ketose</one> is <two>a sugar containing at the least one ketone group per molecule</two>. <three>Fructose</three> is an example of a Ketose. URL: https://en.wikipedia.org/wiki/Ketose
562
+ - <one>Andere Bezeichnung</one> für <two>Proteine die das ER passieren</two>? <one>Sekretorische Proteine</one>.
563
+ - Nenne eine <one>Nachweismethode für Östrogene</one>. A: <one>Mäuse-Uterus-Test</one>.
564
+ - <one>Wo</one> könnte man <two>Xylitol</two> finden? In <one>Kaugummis</one>. URL: https://de.wikipedia.org/wiki/Xylit
565
+ - In <one>Dolicholphosphat</one> können <two>n Isopreneinheiten</two> gefunden werden? <one>20</one>. URL: https://flexikon.doccheck.com/de/Dolicholphosphat
566
+ - Wieviele <one>Esterbindungen</one> können in einem typischen <two>Triacylglycerin</two> gefunden werden? <one>3</one>.
567
+ - A <one>furanose</one> is <two>a carbohydrate</two> that has a ring system, consisting of how many members? A <one>furanose</one> is <two>a five-membered ring system</two>.
568
+ - Nenne die <one>drei endständigen Gruppen</one> von <two>Isopren</two> (ausgenommen <three>-H</three>). A: (1) <one>-CH₂</one> (2) <one>-CH₂</one> (3) <one>-CH₃</one>
569
+ - <one>Der menschliche Körper</one> <two>synthetisiert täglich n g Protein</two>? Mehr als <one>300g Protein</one>.
570
+ - <one>Glyphosat</one> <two>inhibiert was genau in der Zelle</two>? Die <one>EPSP Synthase</one>. Das <two>Glyphosatmolekül</two> <three>bindet an das aktive Zentrum der EPSP</three>. URL: https://en.wikipedia.org/wiki/EPSP_synthase
571
+ - Nenne <one>zwei Klassifizierungen</one> von <two>Proteasen</two>. A: (1) <one>Exopeptidasen</one> (2) <one>Endopeptidasen</one>
572
+ - <one>Maltose</one> und <one>Saccharose</one> sind <two>Disaccharide</two> <three>mit unterschiedlichen glykosidischen Bindungen</three>. <four>Welchen</four>? A: (1) <one>Maltose</one> ist <two>1,4 glykosidisch</two> (2) <one>Saccharose</one> ist <two>1,2 glykosidisch</two>
573
+ - Nenne <one>ein Beispiel</one> für ein <two>geranylgeranyliertes Protein</two>. A: Die <one>GTPase</one> <two>Rho</two>. URL: https://de.wikipedia.org/wiki/Rho-GTPase
574
+ - Der <one>Komplex I</one> <two>der Atmungskette</two> <three>nimmt Elektronen von ... </three>? <one>NADH</one>.
575
+ - Which <one>three components</one> can be found in a <two>buffer system</two>? (1) <one>liquid</one> (2) <one>weak acid</one> (3) <one>conjugate base</one>
576
+ - Die Ladung von <one>ATP</one> ist ... ? <one>Vierfach negativ geladen</one>. URL: https://i.imgur.com/bFAAI7R.png
577
+ - Name <one>two sex hormones</one> <two>that are steroids</two>, <three>in mankind</three>. A: (1) <one>estradiol</one> (2) <one>testosterone</one>
578
+ - Anderes Wort für die <one>Lactase</one>? <one>Beta-Galactosidase</one>. URL: https://de.wikipedia.org/wiki/Lactase
579
+ - Bei der <one>künstlichen DNA-Synthese</one> ist <two>welche Gruppe chemisch geschützt</two>? Das <one>5'-Ende</one>. URL: https://upload.wikimedia.org/wikipedia/commons/thumb/f/f2/Nukleotid_num.svg/1200px-Nukleotid_num.svg.png
580
+ - Die <one>kontraktile Einheit eines Muskels</one> besteht aus welchen <two>vier Komponenten</two>, <three>molekularbiologisch betrachtet</three>? (1) <one>Aktin</one> (2) <one>Myosin</one> (3) <one>Tropomyosin</one> (4) <one>Troponin</one>
581
+ - Nenne ein Beispiel für ein <one>Ceramid</one>. A: <one>Sphingomyelin</one>. (Mnemonic: <two>M ... CeraMid ... SphingoMyelin</two>) URL: https://en.wikipedia.org/wiki/Sphingomyelin
582
+ - <one>Wie</one> werden <two>Disaccharide</two> <three>gebildet</three>? Durch die <one>Verknüpfung</one> (<two>= eine glykosidische Bindung</two>) <three>zweier Monosaccharide</three>.
583
+ - <one>Concanavalin A</one> <two>ist was für ein Typ</two>? <one>Concanavalin A</one> ist ein <two>Lektin</two>. URL: https://de.wikipedia.org/wiki/Concanavalin_A
584
+ - Nenne <one>ein Beispiel</one> für eine <two>Omega-3-Fettsäure</two>. A: Die <one>Eicosapentaensäure</one> (<two>Ei-co-sa-penta-en-säure</two>). URL: https://de.wikipedia.org/wiki/Eicosapentaens%C3%A4ure
585
+ - Nenne die <one>drei funktionellen Gruppen</one> der <two>Protocatechusäure</two>. A: (1) <one>-COOH</one> (2) <one>-OH</one> (3) <one>-OH</one> URL: https://de.wikipedia.org/wiki/Protocatechus%C3%A4ure
586
+ - Name <one>a compound</one> that is very often used to <two>salt out</two> proteins. A: <one>Ammonium sulfate</one> <two>(NH₄)₂SO₄</two>.
587
+ - Schlagwort zu <one>p21</one>? <one>Zellzyklus-Arrest</one>. URL: https://en.wikipedia.org/wiki/P21
588
+ - <one>Kollagen</one> hat, <two>im menschlichen Organismus</two>, einen Anteil von n % an der <three>Gesamtproteinmenge</three>? Ungefähr <one>25%</one>.
589
+ - Provide <one>one specific example</one> for a <two>glycerolipid</two>. A: <one>DAG</one>: <two>Diacylglycerol</two> URL: https://de.wikipedia.org/wiki/1,2-Diacylglycerine
590
+ - Besitzen <one>bakterielle Zellwände</one> <two>Cholesterin</two>? <one>Nein</one>.
591
+ - <one>ATP</one> besitzt wieviele <two>phosphoanhydride bonds</two>? <one>Zwei</one>.
592
+ - <one>Gallensäuren</one> <two>gehören zu welcher Gruppe</two>? Zu der Gruppe der <one>Steroide</one>. URL: https://de.wikipedia.org/wiki/Gallens%C3%A4uren
593
+ - Was macht die <one>Methionin-Aminopeptidase</one>? Dieses Enzym entfernt <one>entständiges, N-terminales Methionin</one> einer Polypeptidkette. URL: https://en.wikipedia.org/wiki/METAP2#Function
594
+ - Wer ist der wichtigste <one>Überträger von Acylgruppen</one> in der Zelle? <one>Coenzym A</one>.
595
+ - Nenne <one>zwei Enzyme</one>, die <two>Chitin abbauen</two>. A: (1) <one>Chitinase</one> (2) <one>Chitobiase</one>
596
+ - <one>Fructose</one> <two>kommt natürlich in Zuckerpolymeren</two> <three>als ... vor</three>? <one>Furanose</one>. URL: https://en.wikipedia.org/wiki/Furanose
597
+ - <one>Wo jeweils</one> kann <two>AMP</two> respektive <two>dAMP</two> <three>gefunden werden</three>? (1) <one>AMP</one>: in <two>RNA</two> (2) <one>dAMP</one>: in <two>DNA</two>
598
+ - In the <one>liver</one>: <two>acetyl-CoA</two> <three>has to be converted to ... </three>? <one>Ketone bodies</one>. URL: https://en.wikipedia.org/wiki/Ketone_bodies
599
+ - Wie werden <one>Codons</one> genannt, die <two>für die gleiche Aminosäure kodieren</two>? <one>Synonyme Codons</one>. URL: https://www.ncbi.nlm.nih.gov/pubmed/28292534
600
+ - Die <one>Geschwindigkeit einer enzymatischen Reaktion</one> <two>ist vor allem wovon abhängig</two>? Von der <one>Konzentration des Ausgangssubtrates</one>.
601
+ - What does the abbreviation <one>HATs</one> stand for in Biochemistry/Gene Expression? <one>Histone acetyltransferases</one>. URL: https://en.wikipedia.org/wiki/Histone_acetyltransferase
602
+ - Nenne ein Protein, das <one>an Akinfilamente bindet</one> und mit dem Buchstaben <two>N</two> beginnt. A: <one>Nebulin</one>. URL: https://en.wikipedia.org/wiki/Nebulin
603
+ - Nenne <one>die drei wichtigsten Substanzen</one> die im <two>Salvage-Pathway</two> <three>entstehen können</three>. A: (1) <one>AMP</one> (2) <one>IMP</one> (3) <one>GMP</one>
604
+ - Wie können wir <one>Zuckerreste</one> im Labor darstellen? Mit Hilfe der <one>Lektinfärbung</one>.
605
+ - Bei <one>Troponin</one>, in der <two>Troponin I</two> Untereinheit: <three>was kann diese Untereinheit binden</three>? <one>Actin</one>.
606
+ - <one>Welches</one> <two>Alkaloid</two> kann in <three>Betelpalmen-Nüssen</three> gefunden werden? <one>Arecolin</one>. URL: https://en.wikipedia.org/wiki/Arecoline
607
+ - <one>TPP</one> (<two>Thiaminpyrophosphat</two>) <three>ist mit welchem Vitamin verwandt</three>? Mit <one>Vitamin B1</one>. URL: https://de.wikipedia.org/wiki/Thiaminpyrophosphat
608
+ - <one>Where</one> could <two>4-hydroxyproline</two> <three>be found</three>? In <one>plant cell walls</one>. URL: https://en.wikipedia.org/wiki/Hydroxyproline#Plants
609
+ - <one>What serves</one> as the <two>ATP-Buffer in muscle tissue</two>? (1) <one>creatine</one> (2) <one>creatine-phosphate</one> (both have a <two>high energy P-bond</two>.)
610
+ - Nenne einen wichtigen Constraint der <one>Glykogensynthese</one>. A: Die <one>Glykogensynthese</one> erfordert einen <two>Primer</two> - eine <three>Polysaccharidkette</three>, mit mindestens vier Einheiten.
611
+ - In Biochemistry: name <one>two major classes of proteins</one>. A: (1) <one>catalytic proteins</one> (2) <one>structural proteins</one>
612
+ - Was heißt <one>UDP-Glucose</one> ausgeschrieben? <one>Uridindiphosphatglucose</one>. URL: https://de.wikipedia.org/wiki/Uridindiphosphat
613
+ - <one>Why</one> does <two>a human cell</two> require <three>carnitine</three>? <one>Carnitine</one> is used by the body to <two>transport fatty acids into the mitochondria</two>, <three>for subsequent breakdown</three>.
614
+ - Das <one>Trisaccharid</one> <two>Raffinose</two> besteht aus <three>welchen drei Monosacchariden</three>? <one>GluFruGal</one> (Mnemonic: Raff... ff... die raffinierte Fructose) (1) <two>Glukose</two> (2) <two>Fructose</two> (3) <two>Galaktose</two>
615
+ - <one>Wozu</one> wird der <two>Lowry-Test</two> in der Biochemie <three>verwendet</three>? Zur <one>Protein-Konzentrations-Bestimmung</one>. URL: https://de.wikipedia.org/wiki/Lowry-Test
616
+ - <one>Why</one> was the name <two>F1</two> given for the ATP Synthase? This is derived from <one>Fraction 1</one>.
617
+ - Wird die <one>Carboxylierung von Acetyl-CoA</one> von einem <two>biotinhaltigem Enzym</two> <three>katalysiert</three>? <one>Ja</one>.
618
+ - Wieviele <one>Fettsäuren</one> kann ein <two>Glycerin</two> <three>aufnehmen</three>? <one>3</one>.
619
+ - <one>Glucuronsäure</one> <two>entsteht aus Glucose</two> <three>durch Oxidation an welchem C-Atom</three>? <one>C-Atom Position 6</one>.
620
+ - Um Proteine zu fällen wird oft ein <one>Salz</one> verwendet. <two>Welches meistens</two>? <one>Ammoniumsulfat</one>. Summenformel: <two>(NH₄)₂SO₄</two> URL: https://de.wikipedia.org/wiki/Ammoniumsulfat
621
+ - Was genau machen die <one>Topoisomerasen</one>? Diese Enzyme verändern die <one>Topologie der DNA</one>. URL: https://de.wikipedia.org/wiki/Topoisomerase
622
+ - Beim Abbau von <one>S-Adenosylmethionin</one> entsteht auch ... ? <one>Homocystein</one>. URL: https://de.wikipedia.org/wiki/S-Adenosylmethionin
623
+ - How is the movement of <one>Myosin II molecules</one> called? <one>Power Stroke</one>. URL: https://pubmed.ncbi.nlm.nih.gov/11810692/
624
+ - <one>Eine eukaryote Zelle</one> <two>besitzt</two>, in etwa, <two>wieviele</two> <three>Proteasome</three>? Etwa <one>30.000</one>.
625
+ - Bei der <one>spezifischen Säurekatalyse</one> <two>wird eine schwache Säure benötigt</two>? <one>Nein</one> - hier wird eine <two>starke Säure</two> benötigt.
626
+ - In der Biochemie: <one>welche Substanz genau</one> wird <two>aktives Methyl</two> genannt? <one>S-Adenosyl-L-Methionin</one>. URL: https://en.wikipedia.org/wiki/S-Adenosyl_methionine
627
+ - Besitzen <one>Ester</one> immer eine <two>-O-Brücke</two>? <one>Nein</one>. <two>Thioester</two> haben ein <three>-S- Atom</three> als Brücke. URL: https://de.wikipedia.org/wiki/Ester
628
+ - <one>Woher</one> stammt der <two>Zucker</two>, <three>der am häufigsten in der Natur gefunden werden kann</three>? Dieser Zucker stammt <one>aus Pflanzen</one>.
629
+ - <one>Andere Bezeichnung</one> für ein <two>Lineweaver Burk Diagramm</two>? <one>Doppeltreziprokes Diagramm</one>.
630
+ - Sind <one>parallele</one> oder <one>antiparallele</one> <two>Beta-Faltblätter</two> <three>stabiler</three>? <one>Antiparallele</one>.
631
+ - Nenne <one>drei verschiedene Vertreter</one> der <two>Glucane</two>. A: (1) <one>Stärke</one> (2) <one>Glykogen</one> (3) <one>Cellulose</one>
632
+ - <one>Troponin</one> <two>besteht aus</two> <three>wievielen Untereinheiten</three>? Aus <one>drei</one>. URL: https://de.wikipedia.org/wiki/Troponine
633
+ - Nenne <one>zwei Aspekte</one>, bei denen <two>freie Radikale</two> <three>zum Einatz kommen</three> <four>im menschlichen Körper</four>. A: (1) im <one>Immunsystem</one> (2) zur <one>Regulation des Blutdruck</one>
634
+ - In der Biochemie: nenne <one>ein Beispiel</one> für ein <two>Enolphosphat</two>. A: <one>PEP</one>: <two>Phosphoenolpyruvat</two> URL: https://en.wikipedia.org/wiki/Phosphoenolpyruvic_acid
635
+ - Provide <one>an example for</one> a <two>protein storage function</two> <three>in the human body</three>. A: An example is <one>hemoglobin</one>, which can, effectively, <two>store oxygen in the blood</two>. URL: https://en.wikipedia.org/wiki/Hemoglobin
636
+ - <one>In welchem Jahr</one> wurde das <two>Schlüssel-Schloss-Prinzip</two> <three>von Emil Fischer vorgeschlagen</three>? Im Jahre <one>1894</one>. URL: https://de.wikipedia.org/wiki/Schl%C3%BCssel-Schloss-Prinzip
637
+ - Besitzt <one>Aktin</one> eine <two>ATPase-Aktivität</two>? <one>Ja</one>.
638
+ - Allgemein verwenden <one>Carboxylasen</one> <two>welchen Cofaktor</two>? <one>Biotin</one> (auch <two>Vitamin H</two> genannt).
639
+ - Define the term <one>Intein</one>. A: <one>Inteins</one> are <two>proteins</two> with a <three>self-splicing activity</three>. URL: https://en.wikipedia.org/wiki/Intein
640
+ - Gibt es einen markanten <one>Unterschied</one> zwischen dem <two>26S-Proteasom</two> <three>in Eukaryoten und in Prokaryoten</three>? <one>Ja</one> - dem <two>prokaryotischen Proteasom fehlen die beiden 19S-Untereinheiten</two>.
641
+ - Nenne <one>drei verschiedene</one> <two>Rezeptor-Tyrosinkinasen Typen</two>. A: (1) <one>Insulinrezeptor-Typ</one> (2) <one>EGF-Rezeptor-Typ</one> (3) <one>NGF-Rezeptor-Typ</one>
642
+ - <one>Wann</one> wurde die <two>Peptidbindung</two> in Proteinen <three>entdeckt</three>? Im Jahre <one>1902</one> (von <two>Emil Fischer</two>).
643
+ - <one>EGF</one> ist <two>ein Vertreter der ...-Familie</two>? <one>Tyrosin-Kinase-Familie</one>.
644
+ - The <one>Janus Kinases</one> <two>have which activity exactly</two>? <one>Janus Kinases</one> have a <two>tyrosine kinase activity</two>. URL: https://en.wikipedia.org/wiki/Janus_kinase
645
+ - In <one>Glucosamin</one> können <two>wieviele N-Atome</two> gefunden werden? <one>1</one>. URL: https://de.wikipedia.org/wiki/Glucosamin
646
+ - <one>Wofür</one> mag eine Zelle <two>Succinat</two> benötigen? Für die <one>Synthese von Porphyrinen</one>. URL: https://de.wikipedia.org/wiki/Succinate
647
+ - Die <one>Transaminierung</one> erfolgt oft von <two>Alpha-Ketoglutarat</two> auf ...? <one>Glutamat</one>.
648
+ - What is the <one>deamination product</one> of <two>adenine</two>? <one>Hypoxanthine</one>. URL: https://en.wikipedia.org/wiki/Hypoxanthine
649
+ - Nenne <one>ein Beispiel für Proteine</one>, die <two>nicht sequenzspezifisch an DNA binden können</two>. A: <one>Histone</one>.
650
+ - <one>Unterschied</one> zwischen den <two>Monooxygenasen</two> und den <two>Dioxygenasen</two>? (1) <one>Monooxygenasen</one> übertragen nur <two>ein Sauerstoffmolekül</two> auf ein Substrat. (2) <one>Dioxygenasen</one> hingegen übertragen <two>beide Sauerstoffatome</two> auf ein Substrat.
651
+ - Nenne ein Protein, das auf <one>mechanische Spannung</one> reagieren kann. A: Das Protein <one>Elastin</one>. URL: https://de.wikipedia.org/wiki/Elastin
652
+ - <one>Wo</one> (mit <two>%</two>, in Summe also <two>100%</two>) findet die <three>Glukoneogenese</three> <four>im menschlichen Körper</four> statt? (1) <one>90%</one> <two>in der Leber</two> (2) <one>10%</one> <two>in der Nierenrinde</two>
653
+ - Besitzen <one>Kollagenfasern</one> <two>eine größere Reißfestigkeit als</two> <three>Stahl</three>? <one>Ja</one>.
654
+ - <one>Laktose</one> <two>besteht aus (genau)</two>? <one>D-Glukose</one> und <one>D-Galaktose</one>.
655
+ - Nenne ein <one>biologisches Molekül</one> (ausser Aminosäuren) das ein <two>asymmetrisches center</two> besitzt. A: <one>Malat</one>, <two>ein C4-Körper</two>. URL: https://de.wikipedia.org/wiki/Malate
656
+ - Weisen <one>Proteinkristalle</one> <two>biologische Aktivität</two> auf? <one>Ja</one>, <two>einige zumindest</two>.
657
+ - In <one>which other protein</one> may we find <two>Phosphopantetheine</two>? <one>Phosphopantetheine</one> is <two>the essential prosthetic group of</two> the <three>acyl carrier protein</three> (<four>ACP</four>). URL: https://en.wikipedia.org/wiki/Acyl_carrier_protein
658
+ - <one>Luciferase</one> <two>activity at ... nm</two>? <one>562 nm</one>. URL: https://de.wikipedia.org/wiki/Luciferasen
659
+ - The <one>growing tip</one> <two>found in polypeptides</two> <three>is ...</three>? A: <one>NH₃⁺</one> (the amino group); within the cell this is <one>NH₃+</one>, thus positively charged.
660
+ - <one>Wo</one>, zum Beispiel, kann <two>Desmosin</two> gefunden werden? <one>Desmosin</one> kann im <two>Faserprotein</two> <three>Elastin</three> gefunden werden. URL: https://de.wikipedia.org/wiki/Desmosin
661
+ - <one>Essenzielle Aminosäuren</one> <two>sind vergleichbar mit</two> <three>welch anderer Substanzklasse, die für den Menschen wichtig ist</three>? <one>Vitaminen</one> - <two>diese müssen ebenso über die Nahrung aufgenommen werden, so wie auch essenzielle Aminosäuren</two>.
662
+ - <one>Aus welchen Untereinheiten</one> besteht das <two>26S-Proteasom</two> <three>in Eukaryoten</three>? Aus einer <one>20S-Untereinheit</one> und zwei <one>19S-Untereinheiten</one>. Die 19S-Untereinheiten sind an den Enden befindlich. URL: https://en.wikipedia.org/wiki/Proteasome
663
+ - How can <one>phosphate</one> be <two>chemically bonded to organic compounds</two>? (1) by <one>ester bonds</one> (2) by <one>anhydride bonds</one>
664
+ - <one>Aminozucker</one> besitzen <two>... anstelle von Hydroxylgruppen</two>. A: <one>Aminogruppen</one>.
665
+ - Die <one>Cytochrome</one> sind <two>Proteine</two>, die <three>was genau in ihrem Zentrum besitzen</three>? Ein <one>Eisen (Fe) Atom</one>. Cytochrome besitzen eine <two>Häm-Gruppe</two>. URL: https://de.wikipedia.org/wiki/Cytochrome
666
+ - Nenne <one>zwei Formen</one> der <two>Lyse von Zellen</two> im Labor. A: (1) <one>mechanisch</one> (2) <one>enzymatisch</one>
667
+ - The <one>F1 portion</one> of the <two>ATP synthase</two> <three>is located where</three>? It is <one>inside the matrix</one> <two>of the mitochondria</two>.
668
+ - The <one>biosynthesis of IMP</one> <two>requires n steps</two>? <one>11</one>.
669
+ - <one>Welche Person</one> stellte im Jahre <two>1930</two> die <three>Theorie des Übergangszustandes</three> auf? <one>Henry Eyring</one>. URL: https://en.wikipedia.org/wiki/Henry_Eyring_(chemist)
670
+ - <one>Wie viele Moleküle aktivierter Essigsäure</one> sind zur <two>Bildung von einem Molekül aktiven Isoprens</two> erforderlich? <one>3</one>. (Merkhilfe: Isopren hat 5 C-Atome; Essigsäure hat 2 C-Atome).
671
+ - What is <one>HUPO</one>? The <one>Human Proteome Organization</one>. URL: https://en.wikipedia.org/wiki/Human_Proteome_Organization
672
+ - <one>Wo</one> im <two>Ramachandran-Diagramm</two> können <three>Beta-Stränge</three> gefunden werden? <one>Links oben</one>, <two>zwischen +110 und +180</two>.
673
+ - <one>When</one> were <two>amines</two> discovered (+/- 5 years approximation is sufficient)? In the year <one>1849</one>. URL: https://en.wikipedia.org/wiki/Amine
674
+ - <one>Hydrophobic surfaces</one> <two>exclude ... </two>? <one>Water</one>.
675
+ - <one>Fuel gauge</one> <two>for the cell</two>? <one>AMPK</one>. URL: https://en.wikipedia.org/wiki/AMP-activated_protein_kinase
676
+ - Was genau ist ein <one>Peptidhormon</one>? Dies ist <one>ein Hormon</one>, das <two>chemisch betrachtet ein Peptid ist</two>, welches aus mehreren (<three>3-191</three>) Aminosäuren aufgebaut ist.
677
+ - Ist <one>Pyruvat</one> eine <two>Alpha-Ketocarbonsäure</two>? <one>Ja</one>.
678
+ - Aus der <one>Arachidonsäure</one> <two>werden welche Botenstoffe gebildet</two>? Zum Beispiel die <one>Eikosanoide</one> (<two>Arachidonsäure → Eikosanoide</two>). URL: https://de.wikipedia.org/wiki/Eicosanoide
679
+ - Name a <one>classical respiratory chain inhibitor</one> that is very well known. A: <one>Cyanide</one>. URL: https://en.wikipedia.org/wiki/Cyanide
680
+ - <one>Protamine</one> sind <two>stark basisch</two> <three>oder</three> <two>stark saure Proteine</two>? <one>Protamine</one> sind <two>stark basische Proteine</two>. URL: https://en.wikipedia.org/wiki/Protamine
681
+ - Im <one>menschlichen Körper</one>: <two>wann</two> ist die <three>Lactat-Dehydrogenase</three> besonders wichtig? Bei <one>limitierter Sauerstoffverfügbarkeit</one>. URL: https://de.wikipedia.org/wiki/L-Lactatdehydrogenase
682
+ - Wo mag <one>Myosin II</one> gefunden werden? In der <one>Skelettmuskulatur</one>. URL: https://en.wikipedia.org/wiki/Myosin#Myosin_II
683
+ - Das <one>SDS-Molekül</one> besitzt <two>n C Atome</two> <three>in seinem Schwanzteil</three>? <one>12</one>. URL: https://en.wikipedia.org/wiki/Sodium_dodecyl_sulfate
684
+ - Wird <one>Saccharin</one> <two>im menschlichen Körper</two> <three>metabolisiert</three>? <one>Nein</one>.
685
+ - <one>Welche Proteingruppe</one> verrichtet <two>Arbeit</two>? <one>Motorproteine</one>. URL: https://de.wikipedia.org/wiki/Motorprotein
686
+ - <one>Proteases</one> are <two>typically grouped into</two> <three>four major classes</three>, <four>based on their active site residues</four>. <five>Name them</five>. A: <one>Mnemonic: MASC them!</one> (1) <two>m</two><three>etalloproteases</three> (2) <two>a</two><three>spartic proteases</three> (3) <two>s</two><three>erine proteases</three> (4) <two>c</two><three>ysteine proteases</three>
687
+ - Bei der <one>Phospholipiddoppelschicht</one> gibt es <two>Transversaldiffusion</two> und <two>Lateraldiffusion</two>. <three>Wie unterscheiden sich die beiden voneinander, qualitativ betrachtet</three>? (1) Die <one>Transversaldiffusion</one> ist sehr <two>langsam</two>. (2) Die <one>Lateraldiffusion</one> hingegen ist eher <two>schnell</two>.
688
+ - <one>Wofür genau</one> steht die Abkürzung <two>RuBisCO</two>? <one>Ribulose-1,5-bisphosphate carboxylase</one>/<one>oxygenase</one>. URL: https://de.wikipedia.org/wiki/RuBisCO
689
+ - Die <one>Nucleophilie einer Substanz</one> <two>hängt eng ... womit zusammen</two>? Mit ihrer <one>Basizität</one>. URL: https://de.wikipedia.org/wiki/Basizit%C3%A4t
690
+ - Nenne <one>drei Disacharide</one>. A: (<one>L,M,S</one>) <one>Laktose</one>, <one>Maltose</one>, <one>Saccharose</one>.
691
+ - Nenne <one>ein Antibiotikum</one>, das einen <two>Pseudoaminosäurearm</two> besitzt. A: Das <one>Puromycin</one>. URL: https://de.wikipedia.org/wiki/Puromycin
692
+ - Was haben <one>Biotin</one> und <one>RUBISCO</one> <two>gemeinsam</two>? Beide können <one>CO₂</one> binden.
693
+ - <one>Wo</one> <two>im menschlichen Körper</two> kann besonders viel des Enzyms <three>Glucokinase</three> gefunden werden? In der <one>Leber</one>.
694
+ - Das <one>Gegenteil</one> einer <two>Azidose</two> ist ... ? Die <one>Alkalose</one>. URL: https://de.wikipedia.org/wiki/Alkalose
695
+ - Was ist <one>die Hauptkomponente von biologischen Zellen</one>? <one>Wasser</one>.
696
+ - <one>Wo</one> im menschlichen Körper könnte <two>5-Hydroxylysin</two> gefunden werden? Zum Beispiel <one>in Kollagen</one>. URL: https://de.wikipedia.org/wiki/Kollagene
697
+ - The protein <one>Fos</one> <two>usually binds to ... </two>? The protein <one>Jun</one>. URL: https://en.wikipedia.org/wiki/C-jun
698
+ - What was <one>the first discovered epigenetic mark</one>? <one>DNA methylation</one>. URL: https://en.wikipedia.org/wiki/DNA_methylation
699
+ - 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 <three>pUC Vektoren</three> dar.
700
+ - Was genau bedeutet <one>Desoxymyoglobin</one> in der Biochemie? Dies ist <one>Myoglobin</one> <two>an dem kein molekular Sauerstoff gebunden ist</two>.
701
+ - Der <one>oxidative Ligninabbau</one> <two>benötigt was</two>? <one>H₂O₂</one>. URL: https://de.wikipedia.org/wiki/Wasserstoffperoxid
702
+ - Bei den <one>Monosacchariden</one>, also bei den Einfachzuckern: wie nennen wir das <two>C1 Atom</two> noch? <one>Aldehydgruppe</one>. URL: https://de.wikipedia.org/wiki/Aldehyde
703
+ - 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
704
+ - <one>Welche Gruppe</one> kann bei den <two>Thiolen</two> gefunden werden? Eine <one>Sulfhydrylgruppe</one>. URL: https://de.wikipedia.org/wiki/Thiole
705
+ - Die <one>Hexokinase</one> <two>wird innerhalb der Zelle</two> <three>wodurch inhibiert</three>? Durch einen <two>Überschuss ihres Produktes</two>: <one>Glucose-6-phosphat</one>. URL: https://de.wikipedia.org/wiki/Hexokinase
706
+ - Nenne einen <one>Hemmstoff von Biotin</one>. A: <one>Avidin</one>. URL: https://de.wikipedia.org/wiki/Avidin
707
+ - Die Substanzen <one>Kreatinphosphat</one>, <one>Phosphoenolpyruvat</one> und <one>Carbamoylphosphat</one> haben alle <two>mehr Energie gespeichert als ATP</two>. Welche dieser drei Substanzen hat mit <three>-62.0</three> kJ/mol die <four>meiste innere Energie</four>? <one>Phosphoenolpyruvat</one> (<two>PEP</two>).
708
+ - Was für eine Domäne enthält <one>Irisin</one>? <one>Irisin</one> enthält eine <two>Fibronectin III Domäne</two>. URL: https://de.wikipedia.org/wiki/Irisin
709
+ - 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
710
+ - <one>Wann</one> ist ein Protein <two>am schlechtesten löslich</two>? Wenn es an seinem <one>isoelektrischen Punkt</one> vorliegt.
711
+ - Nenne <one>ein Beispiel</one> für eine <two>energiearme Säureamidbindung</two> aus dem Bereich der Biochemie. A: Die <one>Peptidbindung</one>. URL: https://de.wikipedia.org/wiki/Peptidbindung
712
+ - <one>Wo genau</one> werden <two>Ketonkörper</two> produziert? In den <one>Mitochondrien der Leberzellen</one>. URL: https://de.wikipedia.org/wiki/Ketok%C3%B6rper
713
+ - Wie geht die <one>Gibbs-Helmholtz-Gleichung</one>? <one>Delta G = Delta H - T * Delta S</one>. <two>T bezeichnet hierbei die Temperatur</two>. URL: https://en.wikipedia.org/wiki/Gibbs%E2%80%93Helmholtz_equation
714
+ - <one>Andere Bezeichnung</one> für <two>Detergenzien</two>? <one>Oberflächenaktive Substanzen</one>.
715
+ - Nenne <one>zwei verschiedene Enzyme</one> die <two>RNA-Primer</two> <three>entfernen können</three>. A: (1) <one>DNA-Polymerase I</one> (2) <one>RNase H</one>
716
+ - <one>Welche Proteine</one> bestehen vor allem aus <two>Beta-Faltblatt Motiven</two>? A: <one>Fettsäurebindende Proteine</one>.
717
+ - Das <one>Schlüsselenzym</one> bei <two>der Kontrolle des Stickstoffs in der Zelle</two> ist ... ? Die <one>Glutamin-Synthetase</one> ist das Schlüsselenzym. URL: https://en.wikipedia.org/wiki/Glutamine_synthetase
718
+ - <one>Welche</one> <two>zwei Typen an Cofaktoren</two> existieren? (1) <one>Essenzielle Ionen</one> (2) <one>Coenzyme</one>
719
+ - <one>Wirkung von</one> <two>Leu-Enkephalin</two> auf den menschlichen Körper? <one>Schmerzlindernd</one> - <two>Leu-Enkephalin</two> ist ein <three>endogenes Opiat</three>. URL: https://en.wikipedia.org/wiki/Leu-enkephalin
720
+ - <one>Inosine</one> <two>can pair with ...</two>? (1) <one>U</one> (2) <one>C</one> (3) <one>A</one>
721
+ - <one>Alpha-Ketoglutarat</one> besitzt <two>wieviele C Atome</two>? <one>5</one>. URL: https://de.wikipedia.org/wiki/%CE%91-Ketoglutars%C3%A4ure
722
+ - Nenne <one>zwei</one> <two>Macrolid-Vertreter</two>. A: (1) <one>Erythromycin</one> (2) <one>Zithromax</one>
723
+ - Wird <one>Stärke</one> zu <two>Disaccharid</two> <three>abgebaut</three>, <four>entsteht ... </four>? A: <one>Maltose</one> <two>+</two> <one>Isomaltose</one>.
724
+ - Nenne <one>ein Beispiel für ein</one> <two>GPI-verankertes Protein</two>. A: Die <one>Acetylcholinesterase</one>. URL: https://de.wikipedia.org/wiki/Acetylcholinesterase
725
+ - Was machen die <one>Decarboxylasen</one>? <one>Decarboxylasen</one> sind Enzyme, die -COOH abbauen können und dabei <two>die Abspaltung von CO₂ katalysieren können</two>. CO₂ ist somit ein <three>Endprodukt</three> dabei. URL: https://de.wikipedia.org/wiki/Decarboxylasen
726
+ - Give another word for a <one>Riboflavin group</one>. A: <one>Vitamin B2</one> group. URL: https://en.wikipedia.org/wiki/Riboflavin
727
+ - Ein <one>biologischer Stoffwechselweg</one> ist <two>womit in der Chemie äquivalent</two>? Mit einem <one>Syntheseweg</one> <two>in der organischen Chemie</two>.
728
+ - Was wird umgangssprachlich mit <one>Acyl-tRNA</one> gemeint? Dies bezeichnet eine <one>mit einer Aminosäure beladene tRNA</one>.
729
+ - Andere Bezeichnung für <one>Phosphatidylcholin</one>? <one>Lecithin</one>. URL: https://de.wikipedia.org/wiki/Lecithine
730
+ - <one>Energiegewinn</one> <two>pro Mol ATP</two>? <one>30.5 kJ</one> / <one>mol ATP</one>.
731
+ - What is the <one>C range</one> for <two>fatty acids</two> (<three>min-max</three>)? <one>4-36</one>. URL: https://en.wikipedia.org/wiki/Fatty_acid
732
+ - <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
733
+ - Nenne <one>ein Beispiel</one> für ein <two>mitochondriales Transmembranprotein</two>. A: <one>Porin</one>. URL: https://en.wikipedia.org/wiki/Porin_(protein)
734
+ - <one>Mannose</one> <two>besitzt n Sauerstoff-Atome</two>? <one>6</one>; <two>Mannose besitzt auch 6 C-Atome</two>. URL: https://de.wikipedia.org/wiki/Mannose
735
+ - <one>Andere Bezeichnung</one> <two>für die</two> <three>ATPase</three>? <one>Complex V</one>. URL: https://en.wikipedia.org/wiki/ATP_synthase
736
+ - Die <one>Serin-Hydroxymethyltransferase</one> konvertiert <two>Serin</two> zu ... ? Zu <two>Glycin</two> (<one>Serin → Glycin</one>). URL: https://en.wikipedia.org/wiki/Serine_hydroxymethyltransferase
737
+ - <one>Andere Bezeichnung für</one> die <two>Proteases</two>? <one>Proteinases</one>. URL: https://en.wikipedia.org/wiki/Protease
738
+ - <one>Citric acid</one> <two>contains</two> <three>how many carboxylic acid groups</three>? <one>3</one>. URL: https://en.wikipedia.org/wiki/Citric_acid
739
+ - <one>Wann</one> mag es zu einer <two>vermehrten Sekretion von Wachstumshormonen</two> kommen? Bei manchen <one>Tumoren der Hypophyse</one>. URL: https://www.neurochirurgie-tuebingen.de/de/spezialgebiete/hypophysenchirurgie/tumoren-der-hypophyse/
740
+ - 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
741
+ - <one>Wo</one> in einer eukaroyten Zelle mag <two>3-Methylhistidin</two> gefunden werden? In <one>Histonen</one>. URL: https://en.wikipedia.org/wiki/3-Methylhistidine
742
+ - Es gibt den sogenannten <one>GPI-Anker</one> in der Biochemie / Zellbiologie. Wofür steht die Abkürzung <two>GPI</two>? <one>Glykosyl</one>-<one>phosphatidyl</one>-<one>inositol</one>-<two>Anker</two>. URL: https://de.wikipedia.org/wiki/GPI-Anker
743
+ - 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
744
+ - Andere Bezeichnung für ein <one>Glycosid</one>? <one>Zuckeracetal</one>. URL: https://de.wikipedia.org/wiki/Halbacetale
745
+ - Was erzeugt der <one>Pyruvat-Dehydrogenase-Komplex</one>? <one>Acetyl-CoA</one>. URL: https://de.wikipedia.org/wiki/Pyruvatdehydrogenase-Komplex
746
+ - <one>Wann</one> vor allem <two>bildet der menschliche Körper</two> <three>Ketonkörper</three>? Bei einem <one>länger anhaltenden Nahrungsmangel</one> (<two>Fasten</two>).
747
+ - Was genau muss mit <one>Adenin</one> geschehen damit wir <one>Inosin</one> erhalten? Das <one>C6 Atom</one> von <two>Adenin</two> muss <three>desaminiert</three> werden.
748
+ - Was sind <one>Elaioplasten</one>? <one>Pflanzliche Speicherorganellen</one> für <two>Öl</two>. URL: https://en.wikipedia.org/wiki/Elaioplast
749
+ - Warum sind die <one>Vitamine D</one> eigentlich <two>keine echten Vitamine</two>? Da sie <one>im menschlichen Organismus</one> <two>vollständig synthetisiert werden können</two>.
750
+ - Die <one>Steroide</one> <two>leiten sich wovon ab</two>? Von den <one>Sterinen</one>. URL: https://de.wikipedia.org/wiki/Sterine
751
+ - <one>Imidazol</one> besitzt <two>wieviele N-Atome</two>? <one>2</one>. URL: https://www2.chemie.uni-erlangen.de/projects/vsc/chemie-mediziner-neu/heterocyclen/bilder/imidazol.gif
752
+ - <one>Oligosaccharidreste</one> <two>können posttranslational angeheftet werden</two>. <three>Welche und wie</three>? (1) <one>N-Glykosidisch</one> auf <two>Asparagin</two> (2) <one>O-Glykosidisch</one> auf <two>Serin</two> oder <two>Threonin</two>
753
+ - Die meisten <one>Doppelbindungen</one> sind in <two>cis</two> oder in <two>trans</two> Form? A: <one>cis</one>.
754
+ - Wofür steht die Abkürzung <one>T-Tubuli</one>? <one>Transverale Tubuli</one>. URL: https://flexikon.doccheck.com/de/Transversaltubulus
755
+ - <one>Andere Bezeichnung für</one> <two>Serotonin</two>? A: <one>5-Hydroxytryptamine</one>. URL: https://en.wikipedia.org/wiki/Serotonin
756
+ - <one>Wo</one> kann die Substanz <two>Ornithin</two> gefunden werden, <three>zwecks physischer Isolierung</three>? <one>Ornithin</one> ist ein <two>Ausscheidungsprodukt von Vögeln</two> - somit finden wir dies dort.
757
+ - In Biochemistry: <one>psi bonds</one> <two>can be seen where</two>? <one>C-C</one><two>-PSI</two> (Mnemo: <three>See-See-Psi</three>).
758
+ - <one>Normal hemoglobin</one> <two>will last</two> <three>n days</three>? <one>120 days</one>.
759
+ - Wofür steht die Abkürzung <one>AMPK</one> in der Biochemie? <one>AMP-aktivierte Proteinkinase</one>. URL: https://de.wikipedia.org/wiki/AMP-aktivierte_Proteinkinase
760
+ - Die <one>Cohn-Fraktionierung</one> setzt für die <two>fraktionierte Ausfällung</two> <three>welche Substanz ein</three>? <one>Ethanol</one>. URL: https://www.spektrum.de/lexikon/biologie/cohn-fraktionierung/14814
761
+ - <one>Welches</one> <two>biogene Amin</two> <three>mag stark toxisch wirken</three>? <one>Histamin</one>. URL: https://de.wikipedia.org/wiki/Histamin
762
+ - <one>Welche Substanz</one> kann leicht in <two>Citronensäure</two> umgewandelt werden? <one>Calciumcitrat</one> (<two>Calciumcitrat</two> → <two>Citronensäure</two>; Mnemonic: 2x C).
763
+ - In short: <one>how</one> to <two>create a</two> <three>toxoid</three>? Treat a <one>toxin</one> with <one>formaldehyde</one>. URL: https://en.wikipedia.org/wiki/Toxoid
764
+ - <one>Welchen eigentlichen Zweck</one> erfüllt <two>Urin</two> im menschlichen Körper? <one>Ausscheiden von Stickstoff</one>. URL: https://de.wikipedia.org/wiki/Urin#Entstehung
765
+ - <one>Histamin</one> <two>wird gemeinsam mit ...</two> <three>gespeichert</three>? Mit <one>Heparin</one>. (Mnemonic: H...H <two>Histamin-Heparin</two>)
766
+ - Die <one>Saccharose</one> <two>kann gespalten werden in</two> <three>welche Einfachzucker</three>? (1) <one>Glucose</one> (2) <one>Fruktose</one>
767
+ - 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
768
+ - <one>Andere Bezeichnung</one> für <two>aktivierte Essigsäure</two>? <one>Acetyl-Coenzym A</one>. URL: https://en.wikipedia.org/wiki/Acetyl-CoA
769
+ - 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
770
+ - <one>Fumarat</one> und <one>Malat</one>. Welches davon ist <two>cis</two>, welches davon ist <two>trans</two>? (1) <one>Malat</one> ist <two>cis</two>. (2) <one>Fumarat</one> ist <two>trans</two>.
771
+ - <one>ATP</one> <two>komplexiert mit ...</two>? <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
772
+ - Die <one>Prolyl-Hydroxylase</one> <two>benötigt ...</two> <three>zur Regeneration</three>. A: <one>Vitamin C</one> (<two>Ascorbinsäure</two>). URL: https://de.wikipedia.org/wiki/Prolyl-4-Hydroxylase
773
+ - <one>Cathin</one> <two>ist verwandt mit ...</two>? <one>Serotonin</one>. URL: https://de.wikipedia.org/wiki/Cathin
774
+ - Die <one>Cellobiohydrolase I</one> besitzt einen <two>CBD Teil</two>. <three>Was heißt CBD</three>? <one>Cellulose Binding Domain</one>. URL: https://en.wikipedia.org/wiki/Carbohydrate-binding_module
775
+ - Länge von <one>Kollagen</one>, <two>in nm</two>? <one>300 nm</one>. URL: https://de.wikipedia.org/wiki/Kollagene
776
+ - Was macht die <one>Phenylalanin-Hydroxylase</one>? <one>F→Y</one>. Die <two>Phenylalanin-Hydroxylase</two> konvertiert effektiv <three>Phenylalanin</three> (<four>F</four>) zu <three>Tyrosin</three> (<four>Y</four>). URL: https://en.wikipedia.org/wiki/Phenylalanine_hydroxylase
777
+ - Nenne <one>zwei Beispiele</one> für <two>Steroidherzglycoside</two>. A: (1) <one>Digoxin</one> (2) <one>Digitoxin</one>
778
+ - <one>Zwei Thiolgruppen</one> können was ...? A: Eine <one>Disulfidbrücke</one> <two>ausbilden</two>.
779
+ - <one>Wyosine</one>, das <two>in der tRNA vorkommen kann</two>, <three>ähnelt welcher Base</three>? <one>Guanosine</one>. URL: https://de.wikipedia.org/wiki/Wyosin
780
+ - <one>Warum</one> müssen Menschen <two>Folsäure</two> <three>mit der Nahrung aufnehmen</three>? Da Menschen das <one>PABA Zwischenprodukt</one> <two>nicht synthetisieren können</two>.
781
+ - What do <one>mice</one> show who have their <two>AQP2-Gene</two> <three>removed</three>? <one>These mice</one> will show an <two>increased urine output</two>.
782
+ - Die Aminosäure <one>Alanin</one> <two>wird woraus synthetisiert</two>? <one>Pyruvat</one> ist der <two>Aminogruppenakzeptor</two>; <three>Alanin wird dabei gebildet</three>.
783
+ - The molecule <one>FMN</one> <two>can carry what exactly</two>? <one>FMN</one> can <two>carry hydrogen atoms</two>. URL: https://en.wikipedia.org/wiki/Flavin_mononucleotide
784
+ - Was heißt <one>GPI-Anker</one>? <one>Glykosyl-phosphatidyl-inositol-Anker</one>. URL: https://de.wikipedia.org/wiki/GPI-Anker
785
+ - Nenne ein Protein in der Zelle, das <one>Ca²⁺</one> binden kann. A: <one>Calmodulin</one>. URL: https://de.wikipedia.org/wiki/Calmodulin
786
+ - Das <one>Avidin-Protein</one> <two>stammt ursprünglich aus ... </two>? Aus <one>Hühnereiern</one>. URL: https://de.wikipedia.org/wiki/Avidin
787
+ - <one>Trypsin</one> <two>is produced as an inactive proenzyme</two>, called <three>trypsinogen</three>. It is <four>activated via an endopeptidase</four> which chops off five amino acids from ... which Terminus? From the <one>N-terminal tail</one>. URL: https://en.wikipedia.org/wiki/Trypsinogen
788
+ - Andere Bezeichnung für <one>Proteinabbau</one>? <one>Proteolyse</one>. URL: https://de.wikipedia.org/wiki/Proteolyse
789
+ - <one>Wie</one> werden meistens <two>Proteine</two> <three>gefällt</three>? Mit Hilfe von <one>Salzen</one> - und zwar meistens <two>Ammoniumsulfat</two> (<three>(NH₄)₂SO₄</three>). URL: https://de.wikipedia.org/wiki/Ammoniumsulfat
790
+ - <one>Spurenelemente</one>, <two>die von biologischen Organismen genutzt werden</two>, <three>sind ... (bezogen auf das Periodensystem)</three>? A: <one>Metalle</one>. URL: https://de.wikipedia.org/wiki/Spurenelement
791
+ - Andere, ebenso deutsche, Bezeichnung für die <one>Biochemie</one>? <one>Chemie der Biomoleküle</one>.
792
+ - Im <one>Phosphoransferasesystem</one>: <two>woher</two> stammt das <three>P</three>? Von <one>PEP</one>. URL: https://de.wikipedia.org/wiki/Phosphotransferasesystem
793
+ - <one>Glykogen</one> <two>kann schnell umgewandelt werden in ... </two>? <one>Glucose-1-Phosphat</one>. URL: https://de.wikipedia.org/wiki/Glucose-1-phosphat
794
+ - <one>Somatostatin</one> besteht aus <two>wie vielen Aminosäuren</two>? <one>14</one>. URL: https://de.wikipedia.org/wiki/Somatostatin
795
+ - Was ist <one>das häufigste Protein der</one> <two>Erythrocyten-Membran</two>? Das <one>Glykophorin</one>. URL: https://de.wikipedia.org/wiki/Glykophorine
796
+ - In der Biochemie: <one>welchen Arten</one> an <two>Spaltungsreaktionen</two> <three>können unterschieden werden</three>? (1) <one>homolytische Spaltung</one> (2) <one>heterolytische Spaltung</one>
797
+ - Ist <one>Phosphoenolpyruvat</one> <two>energiereicher als</two> <three>ATP</three>? <one>Ja</one>.
798
+ - Die <one>Xylulose</one> besitzt <two>wieviele C-Atome</two>? <one>5</one> - die Xylulose ist eine Pentose. URL: https://de.wikipedia.org/wiki/Xylulose
799
+ - Nenne <one>ein Beispiel in der Zelle</one> für ein Molekül, in dem sogenannte <two>destruction boxes</two> gefunden werden können. A: In den <one>Cyclinen</one>. URL: https://www.ncbi.nlm.nih.gov/pmc/articles/PMC1170895/
800
+ - <one>Täglicher Glucosebedarf des Gehirns</one> <two>bei Erwachsenen</two>, <three>in Gramm</three>? <one>120 g</one> / <one>Tag</one>.
801
+ - Nenne einen berühmten <two>Vertreter</two> aus der Gruppe der <one>HMG-CoA-Reduktase-Inhibitoren</one>. A: Die Klasse der <one>Statine</one>. URL: https://de.wikipedia.org/wiki/Statin
802
+ - <one>Which component</one> of the <two>ATP Synthase</two> <three>is bound to the membrane</three>? The <one>F0</one> component.
803
+ - Wieviele <one>endständige -OH Gruppen</one> besitzt <two>Cholesterin</two>? <one>1</one>. URL: https://de.wikipedia.org/wiki/Cholesterin
804
+ - Nenne einen <one>direkten Vorläufer von Cholesterin</one>. A: <one>Lanosterin</one>. URL: https://de.wikipedia.org/wiki/Lanosterin
805
+ - Where will we rarely find <one>disulfide bridges</one>? In <one>intracellular proteins</one>.
806
+ - Allgemein formuliert: <one>Wie</one> entstehen <two>biogene Amine</two>? Durch <one>Decarboxylierungsreaktionen aus den Aminosäuren</one>. URL: https://de.wikipedia.org/wiki/Biogene_Amine
807
+ - <one>Titin</one> <two>besteht aus wievielen Aminosäuren</two>? <one>26_900 Aminosäuren</one>. URL: https://de.wikipedia.org/wiki/Titin
808
+ - Im Alltag: <one>wie entsteht die Substanz</one> <two>Malondialdehyd</two>? Durch <one>Erhitzen von rotem Fleisch</one>.
809
+ - 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
810
+ - Andere Bezeichnung für den <one>isoelektrischen Punkt</one>? Der <one>Neutralpunkt</one>. URL: https://de.wikipedia.org/wiki/Neutralpunkt
811
+ - <one>Omega-Schleifen</one> besitzen, <two>im Gegensatz zu Alpha-Helix und Beta-Faltblätter</two>, was nicht? Eine <one>regelmässige Struktur</one>. URL: https://en.wikipedia.org/wiki/Omega_loop
812
+ - Nenne <one>zwei</one> <two>Hormone</two> die die <three>Blutglukosekonzentration</three> regulieren. A: (1) <one>Insulin</one> (2) <one>Glucagon</one>
813
+ - Ein <one>Orthophosphat</one> besitzt wieviele <two>P-Atome</two>? <one>1</one> - die Summenformel von Orthophosphat ist <two>PO₄³⁻</two>. URL: https://www.sciencedirect.com/topics/engineering/orthophosphate
814
+ - <one>Die aktive Stelle</one> der meisten <two>Carboanhydrasen</two> <three>enthält was für ein</three> <three>Ion</three>? <one>Carboanhydrasen</one> <two>besitzen in ihrem Zentrum ein</two> <three>Zink-Ion</three>. URL: https://de.wikipedia.org/wiki/%CE%91-Carboanhydrasen
815
+ - Was enthält <one>geriebener Meerrettich</one>? <one>Peroxidase</one>. URL: https://de.wikipedia.org/wiki/Peroxidasen
816
+ - Wie ist die Tendenz von <one>Glucose</one> <two>zur Ringbildung</two>? <one>Glucose</one> hat eine <two>starke Tendenz zur Ringbildung</two>.
817
+ - Was sind <one>Zymogene</one>? <one>Zymogene</one> sind <two>inaktive Enzymvorstufen</two>. URL: https://de.wikipedia.org/wiki/Zymogen
818
+ - Bei der <one>schematischen Darstellung der Beta-Faltblätter</one>: <two>wohin</two> <three>zeigt die Spitze des Pfeiles</three>? A: In Richtung des <one>carboxyterminales Ende</one>.
819
+ - <one>Imidazol</one> besitzt <two>n N Atome</two> und <two>n C Atome</two>? <one>3x C</one>, <one>2x N</one>. <two>Imidazol</two> ist ein <three>zyklisches Molekül</three>. URL: https://de.wikipedia.org/wiki/Imidazol
820
+ - 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
821
+ - Kurzformel für <one>inorganic pyrophosphate</one>? <one>PPi</one>. URL: https://en.wikipedia.org/wiki/Pyrophosphate
822
+ - Wie ist ein <one>Dalton</one> definiert? <one>1 Da = 1</one>/<one>12</one> der Masse des <two>Kohlenstoffisotops</two>. URL: https://flexikon.doccheck.com/de/Dalton
823
+ - Bei Säugern: <one>das häufigste Protein in deren Körpern</one> ist ... ? <one>Kollagen</one>. URL: https://de.wikipedia.org/wiki/Kollagen
824
+ - Nenne <one>drei bekannte</one> <two>Disaccharide</two>. A: (1) <one>Lactose</one> (2) <one>Maltose</one> (3) <one>Saccharose</one>
825
+ - Eine <one>Wasserstoffbrücke</one> <two>besteht aus welchen zwei Komponenten</two>? Aus einem <one>Wasserstoffdonor</one> und einem <one>Wasserstoffakzeptor</one>.
826
+ - <one>In welchem Bereich</one> funktionieren <two>Puffer</two> <three>am besten</three>? A: In der Nähe des <one>pKS Wertes ihres Säurebestandteils</one>.
827
+ - Nenne <one>vier Produkte</one> die ausgehend von <two>Pyruvat</two> hergestellt werden können. A: Mnemonic: <one>LEAF</one> (1) <two>Lactat</two> (2) <two>Ethanol</two> (3) <two>Acetat</two> (4) <two>Formiat</two>
828
+ - We want to see <one>a protein with quaternary structure</one>. <two>Name the most important requirement of that</two>. A: <one>This protein</one> <two>must have more than one polypeptide</two>.
829
+ - <one>Wann</one> wurde das <two>ATP Molekül</two> entdeckt? Im Jahre <one>1929</one>.
830
+ - Im <one>ATP-Molekül</one>: <two>welcher Bindungstyp</two> kann zwischen dem <three>Adenosin</three> und der <three>Triphosphatgruppe</three> gefunden werden? Eine <one>Esterbindung</one>. URL: https://de.wikipedia.org/wiki/Adenosintriphosphat
831
+ - <one>Myosin</one> <two>has a catalytic site sequence consisting of</two> <three>n aminoacids</three>? <one>Seven aminoacids</one> (<two>7</two>): <three>Gly-Glu-Ser-Gly-Ala-Gly-Lys-Thr</three>
832
+ - Are <one>all amides</one> <two>carboxamides</two>? <one>No</one>. URL: https://en.wikipedia.org/wiki/Carboxamide
833
+ - <one>Hydrophobic amino acids</one> <two>may be subdivided into</two> which <three>two general groups</three>? (1) <one>aliphatic</one> (2) <one>aromatic rings</one>
834
+ - <one>Von welchem Ende aus</one> erfolgt der <two>Edman-Abbau</two>? Vom <one>N-Terminus</one>. URL: https://de.wikipedia.org/wiki/Edman-Abbau
835
+ - Was geschieht mit <one>Purinen</one> im <two>human digestive system</two>? <one>Purine</one> werden in <two>uric acid</two> (= <three>Harnsäure</three>) konvertiert. URL: https://en.wikipedia.org/wiki/Uric_acid
836
+ - Nenne die <one>kurze Isoform von p53</one>. A: <one>p44</one>. URL: https://www.ncbi.nlm.nih.gov/pubmed/24341977
837
+ - Andere Bezeichnung für eine <one>Diphosphatgruppe</one>? <one>Pyrophosphat</one>. URL: https://de.wikipedia.org/wiki/Diphosphate
838
+ - Das <one>Lysozym</one> besitzt <two>n Aminosäuren</two>? <one>129</one>. URL: https://de.wikipedia.org/wiki/Lysozym
839
+ - Die <one>simultane Translokation</one> von <two>Natrium</two> und <two>Glucose</two> in eine Zelle nennt man ...? <one>Kotransport</one>. URL: https://en.wikipedia.org/wiki/Cotransporter
840
+ - <one>Welches Protein</one> verleiht dem <two>Bindegewebe</two> <three>Flexibilität</three>? <one>Elastin</one>. URL: https://de.wikipedia.org/wiki/Elastin
841
+ - Das Enzym <one>Hydrogenase</one> verwendet was als <two>Substrat</two> was genau? <one>H₂</one>. URL: https://de.wikipedia.org/wiki/Hydrogenase
842
+ - Was ist <one>Cathepsin</one>? <one>Cathepsin</one> ist eine <two>Protease</two> - genauer: eine Protease, die normalerweise in den Lysosomen gefunden wird, also eine <two>lysosomale Protease</two>. <three>Ein niedriger pH-Wert aktiviert diese Protease</three>. URL: https://en.wikipedia.org/wiki/Cathepsin
843
+ - Was muss geschehen damit <one>ATP</one> konkret entsteht? Auf <one>ADP</one> <two>muss eine Phosphorgruppe übertragen werden</two>; es muss also <three>phosphoryliert</three> werden.
844
+ - Wie werden <one>die inneren Verdauungsorganellen der Zelle</one> genannt? <one>Lysosome</one>. URL: https://de.wikipedia.org/wiki/Lysosom
845
+ - Nenne einen <one>Abbauweg</one> für <two>D-Galaktose</two>. A: Der <one>Leloir Abbauweg</one>. URL: https://en.wikipedia.org/wiki/Leloir_pathway
846
+ - Nenne einen <one>Antagonisten zu</one> <two>Morphin</two>. A: Der <one>Opiod-Antagonist</one> <two>Naloxon</two>. URL: https://de.wikipedia.org/wiki/Naloxon
847
+ - <one>Chitin</one> ist ein Polysaccharid, das aus <two>Glucose-Monomeren</two> besteht. <three>Welche Besonderheit hat es in seiner chemischen Struktur</three>? <one>Chitin</one> besitzt <two>'nitrogen-containing carbonyl groups'</two>.
848
+ - Nenne einen wichtigen <one>Methylgruppenüberträger</one> <two>in der Biochemie</two>. A: <one>S-Adenosylmethionin</one>. URL: https://de.wikipedia.org/wiki/S-Adenosylmethionin
849
+ - Definiere den Begriff <one>Racemat</one>. A: Ein <one>Racemat</one> ist <two>eine 1:1 Mischung zweier Enantiomere</two>. URL: https://de.wikipedia.org/wiki/Racemat
850
+ - <one>Wie</one> kann die <two>Phospholipase A2</two> <three>gehemmt werden</three>? Mit Hilfe von <one>Cortisol</one>. URL: https://de.wikipedia.org/wiki/Phospholipase_A2
851
+ - Nenne ein <one>automatisiertes Verfahren zur Synthese von Peptiden</one>. A: Die <one>Merrifield-Synthese</one>. URL: https://de.wikipedia.org/wiki/Merrifield-Synthese
852
+ - <one>Aus welchen zwei Komponenten</one> wird <two>S-Adenosylmethionin</two> <three>gebildet</three>? (1) <one>ATP</one> (2) <one>Methionin</one>
853
+ - Nenne <one>ein Beispiel</one> für eine <two>Thiolprotease</two>. A: <one>Papain</one>. URL: https://de.wikipedia.org/wiki/Papain
854
+ - What are <one>Glucans</one>? <one>Glucans</one> are <two>polymers of glucose</two> (more accurately: <three>D-Glucose</three>). URL: https://en.wikipedia.org/wiki/Glucan
855
+ - Wie wird die <one>oxidierte Form des Hämoglobins</one> genannt? <one>Methämoglobin</one>. URL: https://de.wikipedia.org/wiki/Meth%C3%A4moglobin
856
+ - Kann der Mensch <one>Acetyl-CoA</one> in <two>Pyruvat</two> überführen? <one>Nein</one>.
857
+ - What is the <one>most common protein</one> <two>in the human body</two>? <one>Collagen</one>. URL: https://en.wikipedia.org/wiki/Collagen
858
+ - Wie groß, in <one>kDa</one>, sind die <two>Aquaporine</two>? <one>24 kDa</one>. URL: https://en.wikipedia.org/wiki/Aquaporin
859
+ - The enzyme <one>pyruvate carboxylase</one> <two>has what kind of prosthetic group</two>? The <one>pyruvate carboxylase</one> contains <two>a biotin prosthetic group</two>. URL: https://en.wikipedia.org/wiki/Biotin
860
+ - Bei einer <one>reversed-phase Matrix</one> verwenden wir <two>Kieselgel</two>. <three>Womit ist dieses Kieselgel beschichtet</three>? Mit <one>Alkylketten</one>. URL: https://www.analytik.ethz.ch/vorlesungen/biopharm/Trennmethoden/AnalytischeChemie_Skript_3_LC.pdf
861
+ - The <one>steroid core structure</one> <two>includes how many carbon atoms</two>? <one>17</one>. (Mnemonic: <one>A-B-C-D-17</one>). URL: https://i.imgur.com/uK7KAF1.png
862
+ - Englisches Wort für <one>Adrenalin</one>? <one>Epinephrine</one>. URL: https://en.wikipedia.org/wiki/Epinephrine
863
+ - <one>Welche Eigenschaft</one> <two>'hat'</two> <three>ein denaturiertes Protein</three>? Ein <one>denaturiertes Protein</one> ist <two>biologisch inaktiv</two>.
864
+ - Nenne <one>einen ungewöhnlichen Inhibitor</one> der <two>Phosphodiesterase 5</two>. A: <one>Viagra</one> (<mediumturquoise>sildenafil</mediumturquoise>) URL: https://www.drugs.com/viagra.html
865
+ - Es gibt <one>Lektine</one> vom <two>C-Typ</two>. Was hat das <three>C</three> hier zu bedeuten? Das C steht für <one>Calcium-abhängig</one>. URL: https://flexikon.doccheck.com/de/C-Typ-Lektin-Rezeptor
866
+ - Nenne <one>ein Homolog zu</one> <two>Calnexin</two>. A: <one>Calreticulin</one>. URL: https://de.wikipedia.org/wiki/Calreticulin
867
+ - <one>Disulfide Bridges</one> <two>are what type of bond</two>? <one>Disulfide bonds</one> are <two>covalent bonds</two>. URL: https://en.wikipedia.org/wiki/Disulfide
868
+ - <one>Welche Lebewesen</one> besitzen vor allem <two>Stanole</two>? Die <one>Pflanzen</one> - <two>Stanole</two> sind <three>pflanzliche Sterine</three>. URL: https://www.webmd.com/cholesterol-management/sterols-stanols-what-know
869
+ - In der Biochemie: kann es mehr als einen <one>isoelektrischen Punkt</one> geben? <one>Nein</one>.
870
+ - Das wichtigste, <one>proteolytische Enzym im Magen des Menschen</one> ist ... ? <one>Pepsin</one>. URL: https://de.wikipedia.org/wiki/Pepsin
871
+ - <one>Cholesterin</one> besitzt <two>wieviele C Atome</two>? <one>27</one>. URL: https://de.wikipedia.org/wiki/Cholesterin
872
+ - Die <one>Guanidino-Gruppe</one> besitzt wieviele <two>H-Atome</two> (nur in ihrer Gruppe selbst)? Die <one>Guanidino-Gruppe</one> besitzt <one>5 H Atome</one>. URL: https://en.wikipedia.org/wiki/Guanidine
873
+ - Nenne einen <one>Cofaktor</one> der <two>H</two> (ein <three>Wasserstoffatom</three>) akzeptiert. A: <one>NAD⁺</one>. URL: https://de.wikipedia.org/wiki/Nicotinamidadenindinukleotid
874
+ - Der <one>Aminoalkohol</one> <two>Sphingosin</two> besitzt <three>wieviele C-Atome</three>? <one>18</one>. URL: https://de.wikipedia.org/wiki/Sphingosin
875
+ - In der Biochemie: <one>was bindet</one> die <two>Rossmann fold</two>? Dieses Motiv bindet <one>Nukleotide</one> - vor allem den <two>Kofaktor NAD</two>. URL: https://en.wikipedia.org/wiki/Rossmann_fold
876
+ - Nenne <one>ein Beispiel</one> für ein <two>Dipeptid</two>. A: <one>Aspartam</one>. Aspartam besteht aus <two>aspartic acid</two>, also <royalblue>D</royalblue>, und <two>phenylalanine</two>, also <royalblue>F</royalblue> - in Summe <royalblue>DF</royalblue>.) URL: https://de.wikipedia.org/wiki/Aspartam
877
+ - Chemisch betrachtet ist <one>N-Acetylglucosamin</one> ... ? <one>N-Acetylglucosamin</one> ist ein <two>Aminozucker</two>. URL: https://en.wikipedia.org/wiki/N-Acetylglucosamine
878
+ - <one>Sessel-</one> oder <one>Wannenform</one>. Welche dieser beiden Formen ist <three>energiereicher</three>? Die <one>Wannenform</one> <two>ist energiereicher</two>. (Mnemonic: Die Wanne ist viel grösser als der Sessel.) URL: https://de.wikipedia.org/wiki/Konformation
879
+ - Die <one>Ketoseform der Ribose</one> <two>heißt ...</two>? A: <one>Ribulose</one>. URL: https://de.wikipedia.org/wiki/Ribulose
880
+ - Was ist <one>der biologische Zweck</one> hinter der <two>Geranylgeranylierung</two>? Einem <one>Protein die</one> <two>Membranverankerung</two> <one>zu ermöglichen</one>.
881
+ - The <one>ubiquitin protein</one> has a prominent set of <two>which aminoacid</two>? <one>Ubiquitin</one> contains <two>7 lysine residues</two> (<three>7 lysines</three>).
882
+ - Nenne einen <one>Zuckeralkohol</one>, der mit dem Buchstaben <two>I</two> beginnt. A: <one>Inositol</one>. URL: https://de.wikipedia.org/wiki/Inosit
883
+ - Wieviele <one>C-Atome</one> besitzt <two>Laktat</two>? <one>3</one>. URL: https://de.wikipedia.org/wiki/Lactate
884
+ - Definiere den Begriff <one>Gruppentranslokation</one>. A: <one>Gruppentranslokation</one> ist ein <two>Transportvorgang</two>, <three>bei dem die aufgenommene Substanz chemisch verändert wird</three>, <four>im Zuge dieses Aufnahmeprozesses</four>. URL: https://de.wikipedia.org/wiki/Gruppentranslokation
885
+ - Das <one>ATP-Molekül</one> <two>hat was für einen Zucker</two>? <one>Ribose</one>. URL: https://de.wikipedia.org/wiki/Adenosintriphosphat
886
+ - Nenne <one>zwei Enzyme</one>, die <two>Oxalacetat</two> <three>herstellen können</three>. A: <one>Zwei Carboxylasen</one>, und zwar: (1) <two>Pyruvat-Carboxylase</two>: in <three>Hefen</three> (2) <two>PEP-Carboxylase</two>: in <three>Bakterien</three>
887
+ - <one>Andere Bezeichnung</one> für die Substanz <two>Heroin</two>? <one>Diacetylmorphin</one>. URL: https://de.wikipedia.org/wiki/Heroin
888
+ - Was geschieht mit <one>Milchsäure</one> <two>im Magen</two>? <one>Milchsäure</one> im Magen reagiert mit <two>Calcium</two> zu <two>Calciumlactat</two>. (<three>Lactat + Calcium = Calciumlactat</three>)
889
+ - Die <one>thermodynamischen Hauptsätze</one> <two>unterscheiden ganz klar zwischen</two> <three>welchen zwei Eigenschaften</three>? A: Einem <one>System</one> und dessen <one>Umgebung</one>.
890
+ - <one>Was entsteht</one> wenn <two>Pyruvat</two> <three>transaminiert wird</three>? <one>Alanin</one>. URL: https://de.wikipedia.org/wiki/Alanin
891
+ - Is <one>Phosphatidylinositol</one> an <two>amphiphile</two>? <one>Yes</one> - it has a <two>polar</two> and a <two>>non-polar region</two>.
892
+ - <one>Harnsäure</one> <two>ähnelt welch zellulärem Molekül</two>? 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
893
+ - <one>Wo</one> genau finden wir <two>Methylation</two> <three>bei Proteinen</three>? An (1) <one>Lysinen</one>, und (2) <one>Argininen</one>.
894
+ - Nenne <one>ein Protein</one>, in dem eine <two>Allysin-Verknüpfung</two> gefunden werden kann. A: <one>Elastin</one>. (Mnemonic: <two>El..Al</two>) URL: https://de.wikipedia.org/wiki/Elastin
895
+ - <one>Größter Glucosebedarf</one> <two>im menschlichen Körper</two>? Das <one>Gehirn</one> <two>benötigt am meisten Glucose</two>.
896
+ - Die <one>Aktivität eines Enzyms</one> <two>wird worin angegeben</two> (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
897
+ - <one>Welcher Zucker</one> <two>kann in ATP gefunden werden</two>? Die <one>Ribose</one>.
898
+ - <one>Wo</one> <two>in der Zelle</two> finden wir die <three>protein disulfide isomerase</three>? Im <one>ER Lumen</one>. URL: https://en.wikipedia.org/wiki/Protein_disulfide-isomerase
899
+ - <one>Deamination of 5-Methylcytosine</one> <two>generates what</two>? <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
900
+ - Im menschlichen Körper: nenne ein <one>Reservoir energiereicher Phosphorylgruppen</one>. A: <one>Kreatinphosphat</one>. URL: https://de.wikipedia.org/wiki/Kreatin
901
+ - Give another expression for <one>vinegar</one>. A: <one>Acetic acid</one>. URL: https://en.wikipedia.org/wiki/Vinegar
902
+ - Give the biochemical name of <one>Alkapton</one>. A: <one>Homogentisic acid</one>. URL: https://en.wikipedia.org/wiki/Homogentisic_acid
903
+ - <one>Mit welchem Gesetz</one> können <two>elektrostatische Wechselwirkungen</two> beschrieben werden? A: Mit Hilfe des <one>Coulomb-Gesetz</one>. URL: https://de.wikipedia.org/wiki/Coulombsches_Gesetz
904
+ - Die meisten Proteine sind <one>globuläre Proteine</one>. Welch weitere <two>Proteintyp</two> ist sehr gut bekannt? Es gibt auch <one>Faserproteine</one>. URL: https://www.spektrum.de/lexikon/biochemie/faserproteine/2119
905
+ - <one>Warum</one> wirkt <two>Koffein</two> <three>so stark</three>? <one>Koffein</one> ähnelt dem <two>Adenosin-Molekül</two>. URL: https://de.wikipedia.org/wiki/Coffein
906
+ - Welche <one>Enzymklasse</one> dominiert in den <two>Lysosomen</two>? Die <one>Hydrolasen</one>. URL: https://de.wikipedia.org/wiki/Hydrolase
907
+ - Nenne einen <one>C3-Körper</one> der an der <two>Biosynthese von Fettsäuren</two> <three>beteiligt ist</three>, <four>nicht jedoch an deren Abbau</four>. A: <one>Malonyl-CoA</one>. URL: https://de.wikipedia.org/wiki/Malonyl-CoA
908
+ - Ein <one>Ether</one> ist <two>eine Verbindung zweier ... </two>? <one>Alkohole</one>. (Praktisch eine beschwipste Liebesunion.)
909
+ - <one>Was entsteht</one> <two>bei einer Reaktion</two> von <three>Morphin</three> mit <three>Essigsäure</three>? <one>Diacetylmorphin</one> - also <two>Heroin</two>. URL: https://de.wikipedia.org/wiki/Heroin
910
+ - In einer <one>rechtsgängigen Alpha-Helix</one>: <two>wieviele Reste</two> kann man <three>pro Windung</three> erkennen? <one>3.6 Reste pro Windung</one>.
911
+ - Die <one>Ausgangssubstanz</one> für die <two>Histamine</two> ist ... ? <one>Histidin</one>. URL: https://de.wikipedia.org/wiki/Histamin
912
+ - <one>G-Proteine</one> <two>weisen welche Aktivität auf</two>? Eine <one>GTPase-Aktivität</one>. URL: https://de.wikipedia.org/wiki/G-Proteine
913
+ - <one>Wieviele</one> <two>Fe</two>/<two>S-Zentren</two> hat <three>Komplex I</three> <four>der Atmungskette</four>? <one>8</one>.
914
+ - <one>Compare</one>, roughly, the <two>fatty acids content</two> of <three>adult insects to larva</three>, in mg (start-point to end-point. A: From <one>20mg</one> down to <one>7mg</one>.
915
+ - Nenne zwei <one>Orte</one> wo <two>Alpha-Keratin</two> gefunden werden kann. A: (1) <one>Haare</one> (2) <one>Nägel</one>
916
+ - <one>Glucosamin</one> <two>ist fast ident zu welchem anderen Molekül</two>? Zu <one>Galactosamin</one>. URL: https://de.wikipedia.org/wiki/Galactosamin
917
+ - Was heißt eigentlich <one>Calmodulin</one>? <one>CALcium MODULated proteIN</one>. URL: https://en.wikipedia.org/wiki/Calmodulin
918
+ - <one>Welche Substanz</one> entsteht wenn <two>Arginin</two> desaminiert wird? Es entsteht hierbei <one>Citrullin</one>. URL: https://de.wikipedia.org/wiki/Citrullin
919
+ - Was ist die <one>C₃₀</one> Vorstufe von <two>Cholesterin</two>? Das <one>Squalen</one> (Summenformel: <two>C₃₀H₅₀</two>. URL: https://de.wikipedia.org/wiki/Squalen
920
+ - Erfolgt bei der <one>Transaminierung</one> eine <two>Netto-Desaminierung</two>? <one>Nein</one>. URL: https://de.wikipedia.org/wiki/Transaminierung
921
+ - Name <one>an enzyme</one> that uses <two>Ni²⁺</two> <three>as a cofactor</three>. A: The <one>Urease</one>. URL: https://de.wikipedia.org/wiki/Urease
922
+ - <one>Aminozucker</one> erhalten <two>ihre Aminogruppe</two> von ... ? <one>Glutamin</one> (<one>Mnemonic</one>: Amin...Glutamin). URL: https://de.wikipedia.org/wiki/Aminozucker
923
+ - <one>Saccharose</one> versus <one>Fructose</one>: <two>wer von diesen beiden Molekülen ist süßer</two>? Die <one>Fructose</one> ist <two>viel süßer</two>.
924
+ - Welchen <one>Cofaktor</one> besitzen die <two>Carboxylasen</two>? <one>Biotin</one>. URL: https://de.wikipedia.org/wiki/Biotin
925
+ - 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>
926
+ - Ist <one>Harnstoff</one> <two>wasserlöslich</two>? <one>Ja</one> - sogar <two>sehr gut</two>. URL: https://de.wikipedia.org/wiki/Harnstoff
927
+ - Bei einer <one>Esterbildung</one>: was geht <two>verloren</two>? <one>Wasser</one>. URL: https://de.wikipedia.org/wiki/Veresterung
928
+ - Besitzt <one>ATP</one> eine <two>N-glycosidische Bindung</two>? <one>Ja</one>. URL: https://en.wikipedia.org/wiki/Adenosine_triphosphate#/media/File:Adenosintriphosphat_protoniert.svg
929
+ - <one>Saccharose</one> besteht aus ... ? <one>Fructose</one> + <one>Glucose</one>. URL: https://de.wikipedia.org/wiki/Saccharose
930
+ - Nenne <one>ein Beispiel für einen</one> <two>natürlichen Polyenfarbstoff</two>. A: <one>β-Carotin</one>. URL: https://de.wikipedia.org/wiki/Carotine#Nat.C3.BCrliches_Vorkommen
931
+ - <one>Shikimat</one> besitzt eine - oder mehrere - OH-Gruppe(n). <two>Wieviele genau</two>? <one>3</one>. URL: https://de.wikipedia.org/wiki/Shikimis%C3%A4ure
932
+ - <one>Fumarat</one> <two>besitzt wieviele C Atome</two>? <one>4</one>. URL: https://de.wikipedia.org/wiki/Fumars%C3%A4ure
933
+ - Nenne ein konkretes Beispiel für einen <one>Aminoalkohol</one>. A: <one>Sphingosin</one>. URL: https://de.wikipedia.org/wiki/Sphingosin
934
+ - <one>AMP</one> <two>stimuliert vor allem die Aktivität von ... </two>? <one>Proteinkinasen</one>. URL: https://de.wikipedia.org/wiki/Proteinkinasen
935
+ - Formel des <one>Phosphation</one>? <one>PO₄</one><two>³⁻</two>. URL: https://en.wikipedia.org/wiki/Phosphate
936
+ - The, correctly named, initially synthesized <one>purine derivative</one> is called how? <one>IMP</one>: <two>inosine monophosphate</two>. URL: https://en.wikipedia.org/wiki/Inosinic_acid
937
+ - Nenne ein <one>Protein</one>, das auf <two>mechanische Spannung</two> <three>reagieren kann</three>. A: <one>Elastin</one>. URL: https://de.wikipedia.org/wiki/Elastin
938
+ - Nenne einen Vertreter der <one>Mineralcorticoide</one>. A: <one>Aldosteron</one>. URL: https://de.wikipedia.org/wiki/Aldosteron
939
+ - <one>Xylose</one> contains <two>n C atoms</two>? <one>5</one>. URL: https://de.wikipedia.org/wiki/Xylose
940
+ - Nenne <one>die wichtigste Komponente des SRP</one>. A: Die <one>7SL RNA</one>. URL: https://de.wikipedia.org/wiki/7SL-RNA
941
+ - Bei <one>allosterisch regulierten Enzymen</one> gibt es die <two>R Form</two> und die <two>T Form</two>. <three>Was heißt dies jeweils</three>? (1) <one>R</one> ... <two>relaxed</two> (2) <one>T</one> ... <two>tense</two>
942
+ - <one>Ureic acid</one> ist, <two>chemisch betrachtet</two>, <three>was für eine Substanz</three>? <two>Ureic acid</two> ist eigentlich ein <one>Purin</one>. URL: http://www.chm.bris.ac.uk/motm/uric-acid/uric-acid.gif
943
+ - <one>CD4</one> besitzt wieviele <two>extracellular domains</two>? <one>4</one> - leicht zu merken. \o/
944
+ - 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
945
+ - <one>How</one> can the <two>Alpha Helix</two> structure be maintained? Through <one>internal H Bonding</one>.
946
+ - Was finden wir in einer <one>Fettzelle</one>? Ein <one>Fetttröpfchen</one>, <two>das fast die ganze Zelle ausfüllt</two>. URL: https://de.wikipedia.org/wiki/Adipozyt
947
+ - Ist <one>Hämoglobin</one> oder <one>Lysozym</one> <two>kleiner</two>? <one>Lysozym</one> <two>ist kleiner</two> - es <three>besitzt auch weniger Aminosäuren als Hämoglobin</three>.
948
+ - Erster Schritt bei der <one>Proteinreinigung</one>? A: Erstellung eines <one>Homogenisats</one>. URL: https://en.wikipedia.org/wiki/Homogenization_%28biology%29
949
+ - What is the <one>archetypical example</one> of <two>a serine protease</two>. A: <one>Trypsine</one>. URL: https://en.wikipedia.org/wiki/Trypsine
950
+ - <one>Carbamoylphosphat</one> erhält seine <two>Phosphatgruppe</two> von ...? <one>ATP</one>. URL: https://de.wikipedia.org/wiki/Carbamoylphosphat
951
+ - Der Begriff <one>Vitamin E</one> <two>umfasst welche Strukturen</two>? <one>Tocopherol</one>. URL: https://de.wikipedia.org/wiki/Tocopherol
952
+ - <one>Wann</one> wurde entdeckt, das <two>organischer Harnstoff</two> aus <three>nichtlebenden Komponenten</three> hergestellt werden kann? Im Jahre <one>1828</one>. URL: https://de.wikipedia.org/wiki/Friedrich_W%C3%B6hler#Leistungen
953
+ - Der <one>Hauptbestandteil von Haaren</one> (genau) <two>ist ... </two>? A: <one>Alpha-Keratin</one>. URL: https://en.wikipedia.org/wiki/Alpha-keratin
954
+ - The <one>most abundant protein</one> <two>in the human body</two> <three>is ... </three>? <one>Collagen</one>. URL: https://en.wikipedia.org/wiki/Collagen
955
+ - <one>Retinal</one> <two>interacts with a</two> <three>... fragment</three>? <one>Lysine Fragment</one>. URL: https://en.wikipedia.org/wiki/Retinal
956
+ - <one>How many ATP molecules</one> does <two>one ATP synthase</two> <three>produce per second</three>? <one>400</one>.
957
+ - <one>Wo</one>, zum Beispiel, kann <two>Palmitinsäuremyricylester</two> <three>gefunden werden</three>? In <one>Bienenwachs</one>. URL: https://de.wikipedia.org/wiki/Bienenwachs#Aufbau_und_Eigenschaften
958
+ - <one>Wie</one> werden <two>harte Keratine</two> <three>stabilisiert</three>? Die Peptidketten enthalten zahlreiche <two>Cystein-Reste</two>, die eine <one>Quervernetzung über Disulfidbindungen</one> erlauben, und somit die Festigkeit erhöhen.
959
+ - Definiere/Zeichne eine <one>Carbonylgruppe</one>. A: Eine <one>Carbonylgruppe</one> ist eine <one>-C=O Gruppe</one>. URL: https://de.wikipedia.org/wiki/Carbonylgruppe
960
+ - <one>Peptides</one> contain <two>n free Alpha-amino groups</two>? <one>1</one>.
961
+ - Die molekulare Größe von <one>Ubiquitin</one> beträgt ... ? <one>8.5 kDa</one>. URL: https://de.wikipedia.org/wiki/Ubiquitin
962
+ - Das <one>häufigstes Protein auf der Erde</one> (total, in Tonnen Gewicht) <two>ist ... </two>? A: <one>RUBISCO</one>. URL: https://de.wikipedia.org/wiki/RuBisCO
963
+ - <one>SDS-coated proteins</one> <two>carry which charge</two>? <one>SDS-coated proteins</one> will <two>carry a negative charge</two>.
964
+ - Nenne ein Beispiel für ein <one>Heterotetramer</one>, <two>das für multizelluläre Lebewesen sehr wichtig ist</two>, ja, <three>lebensnotwendig</three>. A: <one>Hämoglobin</one>. URL: https://de.wikipedia.org/wiki/H%C3%A4moglobin
965
+ - <one>Wo</one> findet man ein <two>Säureamid</two> in der Biochemie? Die <one>Peptidbindung von Proteinen</one> <two>ist vom Typ eines Säureamid</two>.
966
+ - <one>Welche Person</one> stellte die Theorie des <two>induced fit</two> auf? <one>Daniel Koshland</one>. URL: https://en.wikipedia.org/wiki/Daniel_E._Koshland_Jr.
967
+ - Nenne <one>ein Beispiel</one> für eine bestimmte <two>gekoppelte Reaktion</two> in Lebewesen. A: Die <one>Hydrolyse von ATP</one> (<two>ATP-Hydrolyse</two>).
968
+ - 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 <two>eine Mikrofibrille</two> - also ein Verhältnis von <three>4:1</three>).
969
+ - 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>.
970
+ - <one>Hämoglobin</one> besitzt <two>wieviele Untereinheiten</two>? <one>4</one>. URL: https://de.wikipedia.org/wiki/H%C3%A4moglobin
971
+ - <one>Somatostatin</one> <two>besteht aus wievielen Aminosäuren</two>? <one>14</one>. URL: https://de.wikipedia.org/wiki/Somatostatin
972
+ - How <one>expensive</one>, via specific numbers, is the <two>Lon-Protease</two> <three>in E. coli</three>? <one>2 ATP per peptide bond cleaved</one>. URL: https://en.wikipedia.org/wiki/Lon_protease_family
973
+ - <one>Woraus</one> besteht das <two>26S-Proteasom</two> <three>in Eukaryoten</three>? Aus <one>drei Untereinheiten</one> - und zwar einer <two>20S-</two> und zwei <two>19S-Untereinheiten</two>. URL: https://de.wikipedia.org/wiki/Proteasom#Struktur
974
+ - Nenne ein Beispiel für <one>eine Pflanze</one>, die für ihre <two>Herzglykoside</two> <three>berühmt ist</three>. A: <one>Digitalis purpurea</one>. URL: https://de.wikipedia.org/wiki/Roter_Fingerhut
975
+ - Welche <one>Superfamilie</one> kann in <two>Alpha-Keratin</two> gefunden werden? Die Familie der <one>coiled-coil Proteine</one>. URL: https://en.wikipedia.org/wiki/Coiled_coil
976
+ - <one>NAD⁺</one> und <one>NADP⁺</one> sind was ...? A: <one>Wasserstoffatomcarrier</one>.
977
+ - Nenne <one>ein Protein</one>, das als <two>molekulare Feder</two> agieren kann. A: <one>Elastin</one>. URL: https://en.wikipedia.org/wiki/Elastin
978
+ - Anderes, englisches Wort für <one>Carbohydrates</one>? <one>Sugars</one>. URL: https://en.wikipedia.org/wiki/Sugar
979
+ - 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
980
+ - Nenne <one>drei</one> <two>Proteoglycan-Beispiele</two>. A: (1) <one>Aggrecan</one> (2) <one>Neurocan</one> (3) <one>Versican</one>
981
+ - Nenne eine <one>chemische Untergruppe</one>, als Teil des <two>Pyruvat</two>-Moleküls. A: <one>Acetat</one> (<two>-CH₃-C=O</two>).
982
+ - <one>Was geschieht</one> wenn <two>Zuckermoleküle</two> mit einer <three>Säure</three> <four>verestert werden</four>? Diese Zuckermoleküle werden dadurch <one>aktiviert</one>.
983
+ - In der <one>Atmungskette der Mitochondrien</one> wandern die Elektronen durch die Atmungskette. <two>Worauf werden die Elektronen am Ende der Atmungskette übertragen</two>? Sie werden auf <one>molekularen Sauerstoff (O₂)</one> übertragen.
984
+ - Nenne einen guten, allgemeinen <one>Wasserstoffdonor</one> in der Biochemie. A: <one>NH-Gruppen</one>.
985
+ - Nenne ein <one>Zuckerderivat</one> das als <two>Strukturpolysaccharid</two> fungiert. A: <one>Chitin</one>. URL: https://de.wikipedia.org/wiki/Chitin
986
+ - Nenne die zwei wichtigsten Eigenschaften von <one>Wachsen</one>. A: (1) ihre <one>Fähigkeit Wasser abzustossen</one> (2) ihre <one>feste Konsistenz</one>
987
+ - <one>Mit welchem Vitamin</one> ist <two>TPP</two> (<three>Thiaminpyrophosphat</three>) verwandt? Mit <one>Vitamin B1</one>. URL: https://en.wikipedia.org/wiki/Thiamine
988
+ - <one>Pyruvat</one> kann in <two>Acetaldehyd</two> konvertiert werden. <three>Was verliert es dabei</three>? <one>-CO₂</one>. URL: https://de.wikipedia.org/wiki/Acetaldehyd
989
+ - 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.
990
+ - In der Biochemie: was muss mit dem <one>Substrat</one> geschehen <two>damit wir ein umgesetztes Produkt erhalten</two>? Das <one>Substrat</one> muss <two>verspannt</two> werden um aktiviert werden zu können - also <mediumturquoise>in einen instabilen Übergangszustand</mediumturquoise> überführt werden.
991
+ - Bei der <one>Ubiquitinierung</one> wird das aktivierte Ubiquitin von E2 auf die <two>Epsilon-Aminogruppe</two> eines zuvor gebundenen Proteins. <three>Was entsteht dabei</three>? Eine <one>Isopeptidbindung</one>. URL: https://de.wikipedia.org/wiki/Isopeptidbindung
992
+ - Give another word for an <one>amide linkage</one>. A: <one>Peptide Bond</one>. URL: https://en.wikipedia.org/wiki/Peptide_bond
993
+ - <one>Dihydroxyacetonphosphat</one> versus <one>Glycerinaldehyd-3-phosphat</one>: <two>welches dieser beiden Moleküle ist stabiler</two>? <one>Dihydroxyacetonphosphat</one> <two>ist stabiler</two>. URL: https://de.wikipedia.org/wiki/Dihydroxyacetonphosphat
994
+ - <one>Warum</one> machen <two>Endorphine</two> <three>nicht süchtig</three>? Da <one>Endorphine</one> <two>von Enzymen abgebaut werden</two>. URL: https://de.wikipedia.org/wiki/Endorphine
995
+ - Andere Bezeichnung für den <one>ATP-Verbrauch</one>? <one>ATP Hydrolyse</one>. URL: https://de.wikipedia.org/wiki/Adenosintriphosphat
996
+ - Im menschlichen Körper: <one>wo</one> wird <two>Laktat</two> abgebaut? In der <one>Leber</one>.
997
+ - <one>Protein structure</one> in an <two>immunoglobuline molecule</two>? There are <one>beta sheets everywhere</one>.
998
+ - Nenne einen <one>Aminozucker</one>. A: <one>Glucosamin</one>. URL: https://de.wikipedia.org/wiki/Glucosamin
999
+ - <one>Where</one> does <two>formation of the disulfide bridges</two> occur, <three>in eukaryotes</three>? Within the <one>lumen of the endoplasmic reticulum</one> - in other words, in the <one>ER lumen</one>.
1000
+ - <one>Welche Person</one> hat das Wort <two>Protein</two> geprägt? <one>Jacob Berzelius</one>. URL: https://en.wikipedia.org/wiki/J%C3%B6ns_Jacob_Berzelius
1001
+ - The E. coli protease <one>Lon</one> requires <two>n ATP molecules</two> <three>for every peptide bond cleaved</three>? <one>2 ATP molecules</one> <two>per cleaved peptide bond are necessary</two>.
1002
+ - Nenne ein <one>Prolinderivat</one>. A: <one>4-Hydroxyprolin</one>. (Mnemonic: Hydro... tetro ... tetra ... 4) URL: https://www.spektrum.de/lexikon/ernaehrung/4-hydroxyprolin/4167
1003
+ - Bei der <one>Ubiquitinierung</one>: <two>woher stammt die Energie</two> <three>beim ersten Schritt</three> des <four>Enzyms E1</four>? Aus <one>ATP</one>.
1004
+ - Die <one>Salze und Ester</one> <two>welcher Substanz</two> werden als <three>Pyruvat</three> bezeichnet? <one>Brenztraubensäure</one>. URL: https://de.wikipedia.org/wiki/Brenztraubens%C3%A4ure
1005
+ - Was geschieht wenn <one>Fructane</one> <two>im menschlichen Darm</two> <three>verdaut werden</three>? Gar nichts. <two>Fructane</two> <one>passieren den Magen und Dünndarm unverändert</one>.
1006
+ - 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
1007
+ - Nenne <one>zwei Beispiele</one> für <two>ungewöhnliche Didesoxyzucker</two> die mit <three>C</three> respektive <three>T</three> im Namen beginnen. A: (1) <one>Colitose</one> (2) <one>Tyvelose</one>
1008
+ - <one>Phosphopantetheine</one> is an essential prosthetic group of ... <two>which protein</two>? 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>).